1. 13 5月, 2015 1 次提交
  2. 09 4月, 2015 2 次提交
  3. 20 11月, 2014 1 次提交
  4. 29 3月, 2014 1 次提交
    • M
      kbuild: move asm-offsets.c from SoC directory to arch/$(ARCH)/lib · 254d68b6
      Masahiro Yamada 提交于
      U-Boot has supported two kinds of asm-offsets.h.
      
      One is generic for all architectures and its source is located at
      ./lib/asm-offsets.c.
      
      The other is SoC specific and its source is under SoC directory.
      The problem here is that only boards with SoC directory can use
      the asm-offsets infrastructure.
      Putting asm-offsets.c right under CPU directory does not work.
      
      Now a new demand is coming. PowerPC folks want to use asm-offsets.
      But no PowerPC boards have SoC directory.
      
      It seems inconsistent that some boards add asm-offsets.c to SoC
      directoreis and some to CPU directories.
      It looks more reasonable to put asm-offsets.c under arch/$(ARCH)/lib.
      
      This commit merges asm-offsets.c under SoC directories into
      arch/$(ARCH)/lib/asm-offsets.c.
      
      By the way, I doubt the necessity of some entries in asm-offsets.c.
      I am leaving refactoring to the board maintainers.
      Please check "TODO" in the comment blocks in
      arch/{arm,nds32}/lib/asm-offsets.c.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      Cc: Yuantian Tang <Yuantian.Tang@freescale.com>
      254d68b6
  5. 03 1月, 2014 1 次提交
  6. 01 11月, 2013 3 次提交
  7. 17 10月, 2013 1 次提交
  8. 15 10月, 2013 1 次提交
  9. 27 8月, 2013 1 次提交
  10. 24 7月, 2013 1 次提交
  11. 05 5月, 2013 2 次提交
  12. 26 4月, 2013 1 次提交
  13. 12 4月, 2013 1 次提交
  14. 19 11月, 2012 2 次提交
  15. 26 10月, 2012 1 次提交
    • S
      MX5: fix warning in clock.c · 01968b96
      Stefano Babic 提交于
      Patch fix warnings compiling with ELDK-4.2:
      
      clock.c: In function 'get_standard_pll_sel_clk':
      clock.c:341: warning: 'freq' may be used uninitialized in this function
      
      Reported-by : Marek Vasut <marex@denx.de>
      Signed-off-by: NStefano Babic <sbabic@denx.de>
      01968b96
  16. 18 10月, 2012 3 次提交
    • F
      mx5: Add workaround for ARM erratum ID 468414 · c4fe17f6
      Fabio Estevam 提交于
      Add the software workaround for ARM erratum ID 468414.
      
      According to mx53/mx51 errata document:
      
      "ENGcm11133 - ARM: NEON load data can be incorrectly forwarded to a
      subsequent request
      
      Description:
      
      Under very specific set of conditions, data from a Neon load request can be incorrectly forwarded
      to a subsequent, unrelated memory request.
      The conditions are as follows:
      • Neon loads and stores must be in use
      • Neon L1 caching must be disabled
      • Trustzone must be configured and in use
      • The secure memory address space and the non-secure memory address space both use the same
      physical addresses, either as an alias or the same memory location or for separate memory
      locations
      The issue is reported by ARM, erratum ID 468414, Category 2"
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      c4fe17f6
    • F
      mx5: lowlevel_init.S: Fix PLL settings for mx53 · 782b0288
      Fabio Estevam 提交于
      Currently PLL2 is not explicitely configured for mx53 and it runs at 333MHz.
      
      Since PLL2 is the parent clock for DDR2, IPU, VPU, we should set it at 400MHz
      instead.
      
      Without doing so, it is not possible to use a 2.6.35 FSL kernel and display HDMI
      at 1080p because the IPU clock cannot reach the requested frequency.
      
      Set PLL2 to 400MHz, so that 1080p can be played and the DDR2 can run at its
      maximum frequency.
      
      Also, setup the other PLL's as done in FSL U-boot and re-arrange the code a little
      bit to allow easier comparison with the original clock setup from FSL U-boot.
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      782b0288
    • F
      mx5: lowlevel_init.S: Split init_clock macro · 758c3449
      Fabio Estevam 提交于
      init_clock is currently shared between mx51 and mx53 and it contains lots of
      ifdef's which makes it really hard to follow the code.
      
      Split the init_clock between mx51 and mx53 to allow easier readability.
      
      No functional changes are made.
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      758c3449
  17. 16 10月, 2012 16 次提交
  18. 01 9月, 2012 1 次提交