1. 03 7月, 2008 1 次提交
  2. 12 6月, 2008 1 次提交
    • B
      Change initdram() return type to phys_size_t · 9973e3c6
      Becky Bruce 提交于
      This patch changes the return type of initdram() from long int to phys_size_t.
      This is required for a couple of reasons: long int limits the amount of dram
      to 2GB, and u-boot in general is moving over to phys_size_t to represent the
      size of physical memory.  phys_size_t is defined as an unsigned long on almost
      all current platforms.
      
      This patch *only* changes the return type of the initdram function (in
      include/common.h, as well as in each board's implementation of initdram).  It
      does not actually modify the code inside the function on any of the platforms;
      platforms which wish to support more than 2GB of DRAM will need to modify
      their initdram() function code.
      
      Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
      MPC8641HPCN.
      Signed-off-by: NBecky Bruce <becky.bruce@freescale.com>
      9973e3c6
  3. 04 6月, 2008 1 次提交
  4. 21 5月, 2008 1 次提交
    • W
      Big white-space cleanup. · 53677ef1
      Wolfgang Denk 提交于
      This commit gets rid of a huge amount of silly white-space issues.
      Especially, all sequences of SPACEs followed by TAB characters get
      removed (unless they appear in print statements).
      
      Also remove all embedded "vim:" and "vi:" statements which hide
      indentation problems.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      53677ef1
  5. 18 4月, 2008 1 次提交
  6. 13 1月, 2008 1 次提交
    • W
      Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections · 64134f01
      Wolfgang Denk 提交于
      With recent toolchain versions, some boards would not build because
      or errors like this one (here for ocotea board when building with
      ELDK 4.2 beta):
      ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
      
      For many boards, the .bss section is big enough that it wraps around
      at the end of the address space (0xFFFFFFFF), so the problem will not
      be visible unless you use a 64 bit tool chain for development. On
      some boards however, changes to the code size (due to different
      optimizations) we bail out with section overlaps like above.
      
      The fix is to add the NOLOAD attribute to the .bss and .sbss
      sections, telling the linker that .bss does not consume any space in
      the image.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      64134f01
  7. 01 11月, 2007 1 次提交
  8. 31 7月, 2007 1 次提交
    • E
      ppc4xx: Update AMCC Bamboo 440EP support · d2f68006
      Eugene OBrien 提交于
      Changed storage type of cfg_simulate_spd_eeprom to const
      Changed storage type of gpio_tab to stack storage
      (Cannot access global data declarations in .bss until afer code relocation)
      
      Improved SDRAM tests to catch problems where data is not uniquely addressable
      (e.g. incorrectly programmed SDRAM row or columns)
      
      Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
      Fixed AM29LV320DT (OpCode Flash) sector map
      Signed-off-by: NEugene OBrien <eugene.obrien@advantechamt.com>
      Signed-off-by: NStefan Roese <sr@denx.de>
      d2f68006
  9. 25 6月, 2007 1 次提交
  10. 01 6月, 2007 2 次提交
  11. 29 4月, 2007 1 次提交
  12. 24 3月, 2007 1 次提交
  13. 09 10月, 2006 1 次提交
  14. 02 9月, 2006 1 次提交
    • M
      Add support for a saving build objects in a separate directory. · f9328639
      Marian Balakowicz 提交于
      Modifications are based on the linux kernel approach and
      support two use cases:
      
        1) Add O= to the make command line
        'make O=/tmp/build all'
      
        2) Set environement variable BUILD_DIR to point to the desired location
        'export BUILD_DIR=/tmp/build'
        'make'
      
      The second approach can also be used with a MAKEALL script
      'export BUILD_DIR=/tmp/build'
      './MAKEALL'
      
      Command line 'O=' setting overrides BUILD_DIR environent variable.
      
      When none of the above methods is used the local build is performed and
      the object files are placed in the source directory.
      f9328639
  15. 27 7月, 2006 1 次提交
  16. 04 7月, 2006 1 次提交
  17. 09 4月, 2006 1 次提交
  18. 06 3月, 2006 2 次提交
  19. 12 12月, 2005 1 次提交
  20. 30 11月, 2005 1 次提交
  21. 28 11月, 2005 1 次提交
    • S
      Changed PPC44x startup message (cpu info, speed...) to common style: · 3d9569b2
      Stefan Roese 提交于
      On PPC44x platforms, the startup message generated in "cpu.c" only
      comprised the ppc type and revision but not additional informations
      like speed etc. Those speed infos where printed in the board specific
      code. This new implementation now prints all CPU infos in the common
      cpu specific code. No board specific code is needed anymore and
      therefore removed from all current 44x implementations.
      
      Patch by Stefan Roese, 27 Nov 2005
      3d9569b2
  22. 15 11月, 2005 1 次提交
  23. 31 8月, 2005 1 次提交
  24. 17 8月, 2005 1 次提交
  25. 11 8月, 2005 1 次提交
  26. 06 8月, 2005 1 次提交
  27. 04 8月, 2005 1 次提交
  28. 01 8月, 2005 1 次提交