1. 03 7月, 2008 2 次提交
  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. 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
  4. 18 4月, 2008 1 次提交
  5. 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
  6. 01 11月, 2007 1 次提交
    • S
      ppc4xx: Rework of 4xx serial driver (2) · 882ae412
      Stefan Roese 提交于
      Change all linker scripts to reference the changed driver name 4xx_uart.o.
      
      Note: In most cased all these explicit referencing of these object files
      in the linker scripts is not neccessary. Only for manually embedded
      environment into the U-Boot image, which is not done is most cases.
      Signed-off-by: NStefan Roese <sr@denx.de>
      882ae412
  7. 25 6月, 2007 1 次提交
  8. 20 2月, 2007 1 次提交
    • S
      [PATCH] PPC4xx: Add support for multiple I2C busses · 79b2d0bb
      Stefan Roese 提交于
      This patch adds support for multiple I2C busses on the PPC4xx
      platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
      to make use of this feature.
      
      It also merges the 405 and 440 i2c header files into one common
      file 4xx_i2c.h.
      
      Also the 4xx i2c reset procedure is reworked since I experienced
      some problems with the first access on the 440SPe Katmai board.
      Signed-off-by: NStefan Roese <sr@denx.de>
      79b2d0bb
  9. 09 10月, 2006 1 次提交
  10. 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
  11. 01 4月, 2006 1 次提交
  12. 12 12月, 2005 1 次提交
  13. 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
  14. 13 10月, 2005 1 次提交
  15. 25 9月, 2005 1 次提交
  16. 31 8月, 2005 1 次提交
  17. 17 8月, 2005 1 次提交
  18. 15 8月, 2005 2 次提交