1. 10 5月, 2013 11 次提交
    • S
      ARM: OMAP: Cleanup boot parameters usage · 4a0eb757
      SRICHARAN R 提交于
      The boot parameters are read from individual variables
      assigned for each of them. This been corrected and now
      they are stored as a part of the global data 'gd'
      structure. So read them from 'gd' instead.
      Signed-off-by: NSricharan R <r.sricharan@ti.com>
      [trini: Add igep0033 hunk]
      Signed-off-by: NTom Rini <trini@ti.com>
      4a0eb757
    • E
      davinci: handle CONFIG_SYS_CLE_MASK and CONFIG_SYS_ALE_MASK · 34fa0706
      Eric Benard 提交于
      these variables are curently defined in several config files but the
      driver doesn't use them and defaults to hardcoded values in
      nand_defs.h
      
      It's interesting to be able to change this hardcoded valude when the
      hardware is not using the default adress signals to drive ALE and CLE
      and two configuration defines already exist for this purpose so use
      them.
      Signed-off-by: NEric Bénard <eric@eukrea.com>
      34fa0706
    • I
      cm-t35: update config file · 0b800a6b
      Igor Grinberg 提交于
      Several minor updates to the cm-t35 config file.
      Signed-off-by: NIgor Grinberg <grinberg@compulab.co.il>
      Tested-by: NNikita Kiryanov <nikita@compulab.co.il>
      0b800a6b
    • D
      ARM: Panda: Add flag to allow runtime enviroment varibale mods · 584506be
      Dan Murphy 提交于
      Add the flag to allow runtime enviroment variable modifications.
      This is being added so that the board-name can be modified at runtime
      to indicate either a panda(4430) or a panda-es(4460)
      Signed-off-by: NDan Murphy <dmurphy@ti.com>
      584506be
    • D
      ARM:Panda:Fix device tree loading for the panda-es · 34f667bb
      Dan Murphy 提交于
      Fix the device tree loading for panda(4430) and panda-es(4460)
      
      Modify the board name if a 4460 panda or panda-es is detected
      at run time.
      In the findfdt add a check for the panda-es board name and load
      the panda-es device tree blob.
      Signed-off-by: NDan Murphy <dmurphy@ti.com>
      34f667bb
    • L
      ARM: OMAP5: Fix warm reset with USB cable connected · 0b1b60c7
      Lokesh Vutla 提交于
      Warm reset on OMAP5 freezes when USB cable is connected.
      Fix requires PRM_RSTTIME.RSTTIME1 to be programmed
      with the time for which reset should be held low for the
      voltages and the oscillator to reach stable state.
      
      There are 3 parameters to be considered for calculating
      the time, which are mostly board and PMIC dependent.
      -1- Time taken by the Oscillator to shut + restart
      -2- PMIC OTP times
      -3- Voltage rail ramp times, which inturn depends on the
      PMIC slew rate and value of the voltage ramp needed.
      
      In order to keep the code in u-boot simple, have a way
      for boards to specify a pre computed time directly using
      the 'CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC'
      option. If boards fail to specify the time, use a default
      as specified by 'CONFIG_DEFAULT_OMAP_RESET_TIME_MAX_USEC' instead.
      Using the default value translates into some ~22ms and should work in
      all cases.
      However in order to avoid this large delay hiding other bugs,
      its recommended that all boards look at their respective data
      sheets and specify a pre computed and optimal value using
      'CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC'
      
      In order to help future board additions to compute this
      config option value, add a README at doc/README.omap-reset-time
      which explains how to compute the value. Also update the toplevel
      README with the additional option and pointers to
      doc/README.omap-reset-time.
      Signed-off-by: NLokesh Vutla <lokeshvutla@ti.com>
      [rnayak@ti.com: Updated changelog and added the README]
      Signed-off-by: NRajendra Nayak <rnayak@ti.com>
      0b1b60c7
    • M
      Remove duplicate / unused #defines on AM335x boards · 15191c91
      Mark Jackson 提交于
      As part of a review of a recent patch to add a new AM335x board, Tom
      found several duplicate and/or unused #defines.
      
      This patch simply removes them.
      
      The two affected configs have been recompiled to check nothing was
      broken (from a compilation point of view !!)
      Reported-by: NTom Rini <trini@ti.com>
      Signed-off-by: NMark Jackson <mpfj-list@mimc.co.uk>
      15191c91
    • T
      omap5_common: Add optargs variable for kernel command line args · 85b7ac45
      Tom Rini 提交于
      Add 'optargs' variable to be set to additional kernel arguments, similar
      to omap3*/am3* usage.
      
      Cc: Sricharan R <r.sricharan@ti.com>
      Signed-off-by: NTom Rini <trini@ti.com>
      85b7ac45
    • E
      ARM: Add support for IGEP COM AQUILA/CYGNUS · 5f5c1d13
      Enric Balletbo i Serra 提交于
      The IGEP COM AQUILA and CYGNUS are industrial processors modules with
      following highlights:
      
        o AM3352/AM3354 Texas Instruments processor
        o Cortex-A8 ARM CPU
        o 3.3 volts Inputs / Outputs use industrial
        o 256 MB DDR3 SDRAM / 128 Megabytes FLASH
        o MicroSD card reader on-board
        o Ethernet controller on-board
        o JTAG debug connector available
        o Designed for industrial range purposes
      Signed-off-by: NEnric Balletbo i Serra <eballetbo@iseebcn.com>
      5f5c1d13
    • N
      twl6035: rename to palmas · cb199102
      Nishanth Menon 提交于
      TPS659038/TWL6035/TWL6037 all belong to palmas family of TI PMICs
      Rename twl6035 to palmas to allow reuse across multiple current and
      future platforms
      
      As part of this change, change the CONFIG_TWL6035_POWER to
      CONFIG_PALMAS_POWER and update usage of header file accordingly.
      Signed-off-by: NNishanth Menon <nm@ti.com>
      cb199102
    • M
      ti814x_evm: enable CPSW support · cd87464d
      Matt Porter 提交于
      Adds CPSW support to the TI814X EVM configured with
      an ET1011C PHY in GMII mode.
      Signed-off-by: NMatt Porter <mporter@ti.com>
      Reviewed-by: NTom Rini <trini@ti.com>
      cd87464d
  2. 30 4月, 2013 5 次提交
  3. 17 4月, 2013 1 次提交
  4. 16 4月, 2013 6 次提交
  5. 14 4月, 2013 4 次提交
  6. 13 4月, 2013 8 次提交
  7. 12 4月, 2013 5 次提交