1. 28 4月, 2011 2 次提交
  2. 28 3月, 2011 2 次提交
  3. 02 2月, 2011 1 次提交
  4. 14 12月, 2010 1 次提交
  5. 09 12月, 2010 5 次提交
  6. 18 11月, 2010 1 次提交
  7. 30 10月, 2010 2 次提交
  8. 27 10月, 2010 3 次提交
  9. 19 10月, 2010 1 次提交
    • W
      Rename TEXT_BASE into CONFIG_SYS_TEXT_BASE · 14d0a02a
      Wolfgang Denk 提交于
      The change is currently needed to be able to remove the board
      configuration scripting from the top level Makefile and replace it by
      a simple, table driven script.
      
      Moving this configuration setting into the "CONFIG_*" name space is
      also desirable because it is needed if we ever should move forward to
      a Kconfig driven configuration system.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      14d0a02a
  10. 13 10月, 2010 1 次提交
  11. 11 10月, 2010 1 次提交
  12. 20 9月, 2010 1 次提交
  13. 06 7月, 2010 1 次提交
  14. 23 6月, 2010 2 次提交
  15. 13 4月, 2010 1 次提交
  16. 28 10月, 2009 1 次提交
  17. 13 10月, 2009 1 次提交
    • T
      OMAP3 Move cache routine to cache.S · 7a2aa8b6
      Tom Rix 提交于
      v7_flush_dcache_all, because it depends on omap ROM code is not
      generic.  Rename the function to 'invalidate_dcache' and move it
      to the omap cpu directory.
      
      Collect the other omap cache routines l2_cache_enable and
      l2_cache_disable with invalide_dcache into cache.S.  This
      means removing the old cache.c file that contained l2_cache_enable
      and l2_cache_disable.
      
      The conversion from cache.c to cache.S was done most through
      disassembling the uboot binary.  The only significant change was
      to change the comparision for the return of get_cpu_rev from
      
         cmp	r0, #0
         beq	earlier_than_label
      
      Which was lost information to
      
         cmp	r0, #CPU_3XX_ES20
         blt	earlier_than_label
      
      The paths through the enable routine were verified by
      adding an infinite loop and seeing the hang.  Then
      removing the infinite loop and seeing it continue.
      
      The disable routine is similar enough that it was not
      tested with this method.
      
      Run tested by cold booting from nand on beagle and zoom1.
      Compile tested on MAKEALL arm.
      Signed-off-by: NTom Rix <Tom.Rix@windriver.com>
      7a2aa8b6
  18. 15 9月, 2009 1 次提交
    • T
      OMAP3 Move cache routine to cache.S · 7467599c
      Tom Rix 提交于
      v7_flush_dcache_all, because it depends on omap ROM code is not
      generic.  Rename the function to 'invalidate_dcache' and move it
      to the omap cpu directory.
      
      Collect the other omap cache routines l2_cache_enable and
      l2_cache_disable with invalide_dcache into cache.S.  This
      means removing the old cache.c file that contained l2_cache_enable
      and l2_cache_disable.
      
      The conversion from cache.c to cache.S was done most through
      disassembling the uboot binary.  The only significant change was
      to change the comparision for the return of get_cpu_rev from
      
         cmp	r0, #0
         beq	earlier_than_label
      
      Which was lost information to
      
         cmp	r0, #CPU_3XX_ES20
         blt	earlier_than_label
      
      The paths through the enable routine were verified by
      adding an infinite loop and seeing the hang.  Then
      removing the infinite loop and seeing it continue.
      
      The disable routine is similar enough that it was not
      tested with this method.
      
      Run tested by cold booting from nand on beagle and zoom1.
      Compile tested on MAKEALL arm.
      Signed-off-by: NTom Rix <Tom.Rix@windriver.com>
      7467599c
  19. 23 7月, 2009 1 次提交
  20. 16 5月, 2009 1 次提交
  21. 25 1月, 2009 1 次提交