1. 10 7月, 2008 8 次提交
  2. 08 7月, 2008 1 次提交
  3. 07 7月, 2008 6 次提交
  4. 05 7月, 2008 3 次提交
  5. 04 7月, 2008 5 次提交
  6. 03 7月, 2008 4 次提交
  7. 02 7月, 2008 2 次提交
  8. 29 6月, 2008 3 次提交
  9. 28 6月, 2008 1 次提交
  10. 20 6月, 2008 2 次提交
  11. 19 6月, 2008 2 次提交
  12. 13 6月, 2008 1 次提交
  13. 12 6月, 2008 2 次提交
    • S
      ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output · 212ed906
      Stefan Roese 提交于
      This patch disables the square wave output of the M41T62 RTC used on
      Canyonlands & Glacier. Here the explanation:
      
      The serial real-time clock part used in the design is an
      STMicro M41T62. This part has a full-time 32KHz square wave
      output that is connected to the TmrClk input to the
      processor. The default state for this square wave output is
      enabled so the output runs continuously when the board is
      powered normally and also from the battery. The TmrClk input
      to the processor goes to ground when the power is removed
      from the board/processor, and therefore the running square
      wave output is driving ground which drains the battery quickly.
      Signed-off-by: NStefan Roese <sr@denx.de>
      212ed906
    • 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