1. 10 7月, 2012 1 次提交
  2. 07 7月, 2012 1 次提交
    • S
      Makefile: Add u-boot.spr build target (SPEAr) · 94aebe6c
      Stefan Roese 提交于
      On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. Both images are
      created using mkimage (crc etc), so that the ROM bootloader can check
      its integrity. Padding needs to be done to the SPL image (with
      mkimage header) and not the binary. Otherwise the resulting image
      which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
      The resulting image containing both U-Boot images is called u-boot.spr.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Amit Virdi <amit.virdi@st.com>
      Cc: Vipin Kumar <vipin.kumar@st.com>
      94aebe6c
  3. 25 5月, 2012 1 次提交
  4. 15 5月, 2012 1 次提交
  5. 25 4月, 2012 1 次提交
  6. 22 4月, 2012 1 次提交
  7. 19 4月, 2012 1 次提交
  8. 17 4月, 2012 1 次提交
  9. 31 3月, 2012 1 次提交
  10. 30 3月, 2012 2 次提交
  11. 27 3月, 2012 2 次提交
  12. 07 3月, 2012 2 次提交
  13. 12 2月, 2012 2 次提交
  14. 16 1月, 2012 1 次提交
  15. 24 12月, 2011 2 次提交
  16. 22 12月, 2011 1 次提交
  17. 21 12月, 2011 1 次提交
  18. 19 12月, 2011 1 次提交
  19. 12 12月, 2011 1 次提交
  20. 11 12月, 2011 4 次提交
  21. 10 12月, 2011 2 次提交
    • J
      i.mx: introduce the armv7/imx-common folder · 18936ee2
      Jason Liu 提交于
      In order to support the coming MX6 platform and to reducde
      the duplicated code, we had better move some common files
      or functions to the imx-common folder for sharing.
      
      This patch does the following:
      - move speed.c file from armv7/mx5/speed.c to armv7/imx-common/speed.c
      - move armv7/mx5/timer.c to armv7/imx-common/timer.c, no any new feature
        added but just fix the checkpatch errors in the old file and remove
        the CONFIG_SYS_MX5_CLK32 reference in the file
      - create one new file cpu.c file to store the common function with i.mx5/6
      Signed-off-by: NJason Liu <jason.hui@linaro.org>
      Cc:Stefano Babic <sbabic@denx.de>
      Acked-by: NStefano Babic <sbabic@denx.de>
      18936ee2
    • C
      S5PC2XX: Rename S5pc2XX to exynos · 393cb361
      Chander Kashyap 提交于
      As per new naming convention for Samsung SoC's, all Cortex-A9 and Cortex-A15
      based SoC's will be classified under the name Exynos. Cortex-A9 and Cortex-A15
      based SoC's will be sub-classified as Exynos4 and Exynos5 respectively.
      
      In order to better adapt and reuse code across various upcoming Samsung Exynos
      based boards, all uses of s5pc210 prefix/suffix/directory-names are renamed in
      this patch. s5pc210 is renamed as exynos4210 and S5PC210/s5pc210 suffix/prefix
      are renamed as exynos4/EXYNOS4.
      Signed-off-by: NChander Kashyap <chander.kashyap@linaro.org>
      Signed-off-by: NMinkyu Kang <mk7.kang@samsung.com>
      393cb361
  22. 07 12月, 2011 2 次提交
    • V
      Introduce generic TPM support in u-boot · 5e124724
      Vadim Bendebury 提交于
      TPM (Trusted Platform Module) is an integrated circuit and
      software platform that provides computer manufacturers with the
      core components of a subsystem used to assure authenticity,
      integrity and confidentiality.
      
      This driver supports version 1.2 of the TCG (Trusted Computing
      Group) specifications.
      
      The TCG specification defines several so called localities in a
      TPM chip, to be controlled by different software layers. When
      used on a typical x86 platform during the firmware phase, only
      locality 0 can be accessed by the CPU, so this driver even while
      supporting the locality concept presumes that only locality zero
      is used.
      
      This implementation is loosely based on the article "Writing a
      TPM Device Driver" published on http://ptgmedia.pearsoncmg.com
      
      Compiling this driver with DEBUG defined will generate trace of
      all accesses to TMP registers.
      
      This driver has been tested and is being used in three different
      functional ChromeOS machines (Pinetrail and Sandy Bridge Intel
      chipsets) all using the same Infineon SLB 9635 TT 1.2 device.
      
      A u-boot cli command allowing access to the TPM was also
      implemented and is being submitted as a second patch.
      
      Change-Id: I22a33c3e5b2e20eec9557a7621bd463b30389d73
      Signed-off-by: NVadim Bendebury <vbendeb@chromium.org>
      CC: Wolfgang Denk <wd@denx.de>
      5e124724
    • A
      Add a "tidy" build option · 734329f9
      Andy Fleming 提交于
      It is sometimes desireable to clean up the byproducts of the build
      process without removing the executable results. "make clean" is
      close, but leaves the build directory with a large number of
      *.depend* files. This new build option invokes make clean, and then
      removes the depend files.
      Signed-off-by: NAndy Fleming <afleming@freescale.com>
      734329f9
  23. 06 12月, 2011 1 次提交
  24. 22 11月, 2011 1 次提交
  25. 19 11月, 2011 1 次提交
    • A
      Makefile: Add the missing dependency for spl target · bd25fdba
      Aneesh V 提交于
      Wolfgang's patch for build time improvement is bringing
      out issues due to missing dependencies in the top-level
      Makefile. I get errors such as the below while building
      with many threads.
      
      make[1]: /home/a0393566local/u-boot-denx/tools/mkimage: Command not found
      
      This also allows one to do:
      $ make spl/u-boot-spl.bin
      if you want to build only spl
      
      Cc: Wolfgang Denk <wd@denx.de>
      Signed-off-by: NAneesh V <aneesh@ti.com>
      bd25fdba
  26. 16 11月, 2011 2 次提交
  27. 12 11月, 2011 1 次提交
  28. 11 11月, 2011 1 次提交
  29. 07 11月, 2011 1 次提交