1. 07 9月, 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. 21 3月, 2008 1 次提交
    • Y
      LWMON5: POST RTC fix · b73a19e1
      Yuri Tikhonov 提交于
      Modify the RTC API to provide one a status for the time reported by
      the rtc_get() function:
        0 - a reliable time is guaranteed,
      < 0 - a reliable time isn't guaranteed (power fault, clock issues,
            and so on).
      
      The RTC chip drivers are responsible for providing this info if the
      corresponding chip supports such functionality. If not - always
      report that the time is reliable.
      
      The POST RTC test was modified to detect the RTC faults utilizing
      this new rtc_get() feature.
      Signed-off-by: NYuri Tikhonov <yur@emcraft.com>
      b73a19e1
  4. 29 2月, 2008 1 次提交
  5. 25 2月, 2008 1 次提交
    • M
      [new uImage] Add dual format uImage support framework · d5934ad7
      Marian Balakowicz 提交于
      This patch adds framework for dual format images. Format detection is added
      and the bootm controll flow is updated to include cases for new FIT format
      uImages.
      
      When the legacy (image_header based) format is detected appropriate
      legacy specific handling is invoked. For the new (FIT based) format uImages
      dual boot framework has a minial support, that will only print out a
      corresponding debug messages. Implementation of the FIT specific handling will
      be added in following patches.
      Signed-off-by: NMarian Balakowicz <m8@semihalf.com>
      d5934ad7
  6. 07 2月, 2008 1 次提交
  7. 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
  8. 13 10月, 2005 1 次提交
  9. 21 1月, 2004 1 次提交
    • W
      * The PS/2 mux on the BMS2003 board needs 450 ms after power on · c837dcb1
      wdenk 提交于
        before we can access it; add delay in case we are faster (with no
        CF card inserted)
      
      * Cleanup of some init functions
      
      * Make sure SCC Ethernet is always stopped by the time we boot Linux
        to avoid Linux crashes by early packets coming in.
      
      * Accelerate flash accesses on LWMON board by using buffered writes
      c837dcb1
  10. 28 6月, 2003 1 次提交
    • W
      * Code cleanup: · 8bde7f77
      wdenk 提交于
        - remove trailing white space, trailing empty lines, C++ comments, etc.
        - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
      
      * Patches by Kenneth Johansson, 25 Jun 2003:
        - major rework of command structure
          (work done mostly by Michal Cendrowski and Joakim Kristiansen)
      8bde7f77
  11. 20 5月, 2003 1 次提交
    • W
      * Patch by David Updegraff, 22 Apr 2003: · 7f70e853
      wdenk 提交于
        update for CrayL1 board
      
      * Patch by Pantelis Antoniou, 21 Apr 2003:
        add boot support for ARTOS (a proprietary OS)
      
      * Patch by Steven Scholz, 11 Apr 2003:
        Add support for RTC DS1338
      
      * Patch by Rod Boyce, 24 Jan 2003:
        Fix counting of extended partitions in diskboot command
      7f70e853
  12. 03 11月, 2002 1 次提交