1. 23 8月, 2012 2 次提交
  2. 12 2月, 2012 1 次提交
  3. 07 12月, 2011 5 次提交
  4. 01 10月, 2011 1 次提交
  5. 30 9月, 2011 2 次提交
  6. 10 9月, 2011 1 次提交
  7. 05 8月, 2011 1 次提交
  8. 26 7月, 2011 1 次提交
  9. 12 7月, 2011 1 次提交
  10. 26 5月, 2011 1 次提交
  11. 28 4月, 2011 3 次提交
  12. 16 4月, 2011 1 次提交
  13. 01 4月, 2011 1 次提交
  14. 28 3月, 2011 2 次提交
  15. 23 3月, 2011 1 次提交
  16. 21 2月, 2011 1 次提交
  17. 14 1月, 2011 1 次提交
  18. 18 12月, 2010 1 次提交
  19. 17 12月, 2010 2 次提交
    • S
      powerpc/nand spl: link libgcc · 97a85b22
      Scott Wood 提交于
      Recent GCC (4.4+) performs out-of-line epilogues in some cases, when
      optimizing for size.  It causes a link error for _restgpr_30_x (and similar)
      if libgcc is not linked.
      
      It actually increases size with very small binaries, due to the fixed size
      of the out-of-line code, and not having any functions that actually need to
      restore more than 2 or 3 registers.  But I don't see a way to turn it off,
      other than asking GCC to optimize for speed -- which may also increase
      size for some boards.
      Signed-off-by: NScott Wood <scottwood@freescale.com>
      Acked-by: NKim Phillips <kim.phillips@freescale.com>
      Acked-by: NWolfgang Denk <wd@denx.de>
      97a85b22
    • S
      powerpc/nand spl: link libgcc · 767589a7
      Scott Wood 提交于
      Recent GCC (4.4+) performs out-of-line epilogues in some cases, when
      optimizing for size.  It causes a link error for _restgpr_30_x (and similar)
      if libgcc is not linked.
      
      It actually increases size with very small binaries, due to the fixed size
      of the out-of-line code, and not having any functions that actually need to
      restore more than 2 or 3 registers.  But I don't see a way to turn it off,
      other than asking GCC to optimize for speed -- which may also increase
      size for some boards.
      Signed-off-by: NScott Wood <scottwood@freescale.com>
      Acked-by: NKim Phillips <kim.phillips@freescale.com>
      Acked-by: NWolfgang Denk <wd@denx.de>
      767589a7
  20. 09 12月, 2010 3 次提交
    • S
      Davinci 8xx: Move common functions to share code · a2f2eb76
      Stefano Babic 提交于
      As more Davinci 8xx board can be added, move common code
      to be shared between boards.
      
       * rebased ontop of Sugosh's patches
       * moving the HAWKBOARD_KICK{0,1}_UNLOCK defines to
         arch/arm/include/asm/arch-davinci/davinci_misc.h from to
         arch/arm/include/asm/arch-davinci/da8xx_common.h
       * don't define dram functions in PRELOADER
       * move sync_env_enetaddr into existing EMAC ifdef
       * use misc.c in hawkboard nand_spl
      Signed-off-by: NBen Gardiner <bengardiner@nanometrics.ca>
      Signed-off-by: NStefano Babic <sbabic@denx.de>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      a2f2eb76
    • S
      Add board support for hawkboard · dfddb5e6
      Sughosh Ganu 提交于
      The patch adds basic board support for TI's OMAP-L138 based
      Hawkboard. This board is pretty similar to the da850 EVM. Support for
      nand and network access is added in this version.
      
      The following bootup procedure is used.
      
      At reset, the Rom Boot Loader(RBL), initialises the ddr and the nand
      controllers and copies the second stage bootloader(nand_spl) to
      RAM. The secondary bootloader then copies u-boot from a predefined
      location in the nand flash to the RAM, and passes control to the
      u-boot image.
      
      Three config options are supported
      * hawkboard_config - Used to create the u-boot.bin. Tftp the
       u-boot.bin image to the RAM from u-boot, and flash to the nand flash
       at address 0xe0000.
      
      * hawkboard_nand_config - Used to generate the secondary
       bootloader(nand_spl) image. This creates an elf file u-boot-spl
       under nand_spl/. Create an AIS signed image using this file, and
       flash it to the nand flash at address 0x20000. The ais file should
       fit in one block.
      
      * hawkboard_uart_config - This is same as the first image, but with
       the TEXT_BASE as expected by the RBL(0xc1080000). Create the AIS
      Signed-off-by: NSughosh Ganu <urwithsughosh@gmail.com>
      Signed-off-by: NBen Gardiner <bengardiner@nanometrics.ca>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      dfddb5e6
    • S
      Remove board_init_f function from nand_boot.c · 3258dcae
      Sughosh Ganu 提交于
      Remove the board_init_f function from nand_spl/nand_boot.c. This
       function is to be defined by all boards using the nand_spl
       functionality in their individual board directory.
      
       Currently this function was being used by the smdk6400 board. Added
       the board specific function definition.
      Signed-off-by: NSughosh Ganu <urwithsughosh@gmail.com>
      Acked-by: NScott Wood <scottwood@freescale.com>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      3258dcae
  21. 01 12月, 2010 2 次提交
    • S
      Davinci 8xx: Move common functions to share code · 6d1c649f
      Stefano Babic 提交于
      As more Davinci 8xx board can be added, move common code
      to be shared between boards.
      
       * rebased ontop of Sugosh's patches
       * moving the HAWKBOARD_KICK{0,1}_UNLOCK defines to
         arch/arm/include/asm/arch-davinci/davinci_misc.h from to
         arch/arm/include/asm/arch-davinci/da8xx_common.h
       * don't define dram functions in PRELOADER
       * move sync_env_enetaddr into existing EMAC ifdef
       * use misc.c in hawkboard nand_spl
      Signed-off-by: NBen Gardiner <bengardiner@nanometrics.ca>
      Signed-off-by: NStefano Babic <sbabic@denx.de>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      6d1c649f
    • S
      Add board support for hawkboard · 48571ff0
      Sughosh Ganu 提交于
      The patch adds basic board support for TI's OMAP-L138 based
      Hawkboard. This board is pretty similar to the da850 EVM. Support for
      nand and network access is added in this version.
      
      The following bootup procedure is used.
      
      At reset, the Rom Boot Loader(RBL), initialises the ddr and the nand
      controllers and copies the second stage bootloader(nand_spl) to
      RAM. The secondary bootloader then copies u-boot from a predefined
      location in the nand flash to the RAM, and passes control to the
      u-boot image.
      
      Three config options are supported
      * hawkboard_config - Used to create the u-boot.bin. Tftp the
       u-boot.bin image to the RAM from u-boot, and flash to the nand flash
       at address 0xe0000.
      
      * hawkboard_nand_config - Used to generate the secondary
       bootloader(nand_spl) image. This creates an elf file u-boot-spl
       under nand_spl/. Create an AIS signed image using this file, and
       flash it to the nand flash at address 0x20000. The ais file should
       fit in one block.
      
      * hawkboard_uart_config - This is same as the first image, but with
       the TEXT_BASE as expected by the RBL(0xc1080000). Create the AIS
      Signed-off-by: NSughosh Ganu <urwithsughosh@gmail.com>
      Signed-off-by: NBen Gardiner <bengardiner@nanometrics.ca>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      48571ff0
  22. 29 11月, 2010 1 次提交
  23. 28 11月, 2010 3 次提交
    • W
      83xx: Cleanup for partial linking and --gc-sections · ff2311ab
      Wolfgang Denk 提交于
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Kim Phillips <kim.phillips@freescale.com>
      Cc: Haiying Wang <r54964@freescale.com>
      ff2311ab
    • W
      ppc4xx: Cleanup for partial linking and --gc-sections · ee8028b7
      Wolfgang Denk 提交于
      This commit adapts 4xx boards for partial linking with --gc-sections.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      Cc: Tirumala Marri <tmarri@apm.com>
      Cc: David Updegraff <dave@cray.com>
      Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
      Cc: Dirk Eibach <eibach@gdsys.de>
      Cc: Larry Johnson <lrj@acm.org>
      Cc: Peter De Schrijver <p2@mind.be>
      Cc: Niklaus Giger <niklaus.giger@netstal.com>
      Cc: Daniel Poirot <dan.poirot@windriver.com>
      Acked-by: NStefan Roese <sr@denx.de>
      ee8028b7
    • S
      83xx: Fix NAND_SPL link address · f1c574d4
      Scott Wood 提交于
      Apply the same fix for 83xx as was done for 85xx in commit
      96196a1f.
      
      Without this, NAND SPLs are built with the text base intended for the main
      image, resulting in a broken, very large u-boot-nand.bin.
      
      The block of defines for NAND boot is moved closer to where
      CONFIG_SYS_TEXT_BASE is defined.  We can't directly use
      CONFIG_SYS_NAND_U_BOOT_DST in the definition of CONFIG_SYS_TEXT_BASE because
      autoconf.mk will include the literal text "CONFIG_SYS_NAND_U_BOOT_DST",
      but at least keep them close and point out that they're supposed to be
      the same.
      Signed-off-by: NScott Wood <scottwood@freescale.com>
      f1c574d4
  24. 18 11月, 2010 1 次提交
  25. 12 11月, 2010 1 次提交