1. 15 5月, 2012 1 次提交
    • J
      ARM:OMAP+:MMC: Add parameters to MMC init · bbbc1ae9
      Jonathan Solnit 提交于
      Add parameters to the OMAP MMC initialization function so the board can
      mask host capabilities and set the maximum clock frequency.  While the
      OMAP supports a certain set of MMC host capabilities, individual boards
      may be more restricted and the OMAP may need to be configured to match
      the board.  The PRG_SDMMC1_SPEEDCTRL bit in the OMAP3 is an example.
      Signed-off-by: NJonathan Solnit <jsolnit@gmail.com>
      bbbc1ae9
  2. 12 2月, 2012 2 次提交
  3. 20 12月, 2011 1 次提交
  4. 07 12月, 2011 1 次提交
    • A
      omap4460: fix TPS initialization · cd5847ac
      Aneesh V 提交于
      TPS power IC is controlled using a GPIO (gpio_wk7).
      This GPIO should be maintained at logic 1 always. As
      such an internal pull-up on this pin will do the job,
      driving the GPIO outuput is not needed. This will avoid
      the need of using GPIO library in SPL and also may
      save some power.
      Signed-off-by: NAneesh V <aneesh@ti.com>
      cd5847ac
  5. 16 11月, 2011 1 次提交
    • S
      omap5: Add minimal support for omap5430. · 508a58fa
      Sricharan 提交于
      This patch adds the minimal support for OMAP5. The platform and machine
      specific headers and sources updated for OMAP5430.
      
      OMAP5430 is Texas Instrument's SOC based on ARM Cortex-A15 SMP architecture.
      It's a dual core SOC with GIC used for interrupt handling and SCU for cache
      coherency.
      
      Also moved some part of code from the basic platform support that can be made
      common for OMAP4/5. Rest is kept out seperately. The same approach is followed
      for clocks and emif support in the subsequent patches.
      Signed-off-by: Nsricharan <r.sricharan@ti.com>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      508a58fa
  6. 28 10月, 2011 1 次提交
  7. 16 10月, 2011 1 次提交
  8. 13 9月, 2011 1 次提交
  9. 03 8月, 2011 2 次提交
    • A
      omap: add basic SPL support · bcae7211
      Aneesh V 提交于
      - Provide alternate implementations of board_init_f()
        board_init_r() for OMAP spl.
      - Provide linker script
      - Initialize global data
      - Add serial console support
      - Update CONFIG_SYS_TEXT_BASE to allow for SPL's bss and move
        it to board config header from config.mk
      Signed-off-by: NAneesh V <aneesh@ti.com>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      bcae7211
    • A
      omap4: cleanup pin mux data · 469ec1e3
      Aneesh V 提交于
      - separate mux settings into essential and non essential parts
      - essential part is board independent as of now(so move it
        to SoC directory). Will help in having single SPL for all
        boards.
      - Non-essential part(the pins not essential for u-boot to function)
        need to be phased out eventually.
      - Correct mux data by aligning to the latest settings in x-loader
      Signed-off-by: NAneesh V <aneesh@ti.com>
      Signed-off-by: NSandeep Paulraj <s-paulraj@ti.com>
      469ec1e3
  10. 18 11月, 2010 1 次提交
    • S
      Switch from archive libraries to partial linking · 6d8962e8
      Sebastien Carlier 提交于
      Before this commit, weak symbols were not overridden by non-weak symbols
      found in archive libraries when linking with recent versions of
      binutils.  As stated in the System V ABI, "the link editor does not
      extract archive members to resolve undefined weak symbols".
      
      This commit changes all Makefiles to use partial linking (ld -r) instead
      of creating library archives, which forces all symbols to participate in
      linking, allowing non-weak symbols to override weak symbols as intended.
      This approach is also used by Linux, from which the gmake function
      cmd_link_o_target (defined in config.mk and used in all Makefiles) is
      inspired.
      
      The name of each former library archive is preserved except for
      extensions which change from ".a" to ".o".  This commit updates
      references accordingly where needed, in particular in some linker
      scripts.
      
      This commit reveals board configurations that exclude some features but
      include source files that depend these disabled features in the build,
      resulting in undefined symbols.  Known such cases include:
      - disabling CMD_NET but not CMD_NFS;
      - enabling CONFIG_OF_LIBFDT but not CONFIG_QE.
      Signed-off-by: NSebastien Carlier <sebastien.carlier@gmail.com>
      6d8962e8
  11. 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
  12. 18 10月, 2010 2 次提交
  13. 29 9月, 2010 1 次提交
  14. 10 9月, 2010 1 次提交
  15. 09 9月, 2010 1 次提交
  16. 05 8月, 2010 1 次提交
  17. 16 7月, 2010 1 次提交
  18. 06 7月, 2010 1 次提交