1. 28 5月, 2010 2 次提交
  2. 04 5月, 2010 1 次提交
  3. 22 4月, 2010 1 次提交
  4. 19 4月, 2010 1 次提交
    • R
      fsl_i2c: Added a callpoint for i2c_board_late_init · 26a33504
      Richard Retanubun 提交于
      This patch adds a callpoint in i2c_init that allows board specific
      i2c board initialization (typically for i2c bus reset) that is called
      after i2c_init operations, allowing the i2c_board_late_init function
      to use the pre-configured i2c bus speed and slave address.
      26a33504
  5. 13 4月, 2010 4 次提交
  6. 08 4月, 2010 1 次提交
  7. 22 3月, 2010 1 次提交
  8. 01 2月, 2010 1 次提交
  9. 27 1月, 2010 1 次提交
  10. 18 1月, 2010 1 次提交
    • H
      cmd_eeprom: I2C updates · 548738b4
      Heiko Schocher 提交于
      - CONFIG_ENV_EEPROM_IS_ON_I2C
        define this, if you have I2C and SPI activated, and your
        EEPROM, which holds the environment, is on the I2C bus.
      
      - CONFIG_I2C_ENV_EEPROM_BUS
        if you have an Environment on an EEPROM reached over
        I2C muxes, you can now define, how to reach this
        EEPROM.
      Signed-off-by: NHeiko Schocher <hs@denx.de>
      548738b4
  11. 09 12月, 2009 1 次提交
  12. 08 12月, 2009 1 次提交
  13. 05 12月, 2009 1 次提交
  14. 03 12月, 2009 1 次提交
  15. 28 10月, 2009 2 次提交
  16. 19 10月, 2009 1 次提交
    • M
      env: only build env_embedded and envcrc when needed · 6dab6add
      Mike Frysinger 提交于
      The env code is protected by the ENV_IS_EMBEDDED define, so attempting to
      compile the code when this isn't defined is pointless.  Now that the env
      headers have unified around CONFIG_ENV_IS_EMBEDDED, convert the build
      system to only build the env objects when this is enabled.  And now that
      the env code is conditionally compiled, we can drop the source code checks.
      
      For people who want to extract the environment manually, add a new option
      CONFIG_BUILD_ENVCRC that only enables the envcrc utility.
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      6dab6add
  17. 25 9月, 2009 1 次提交
  18. 23 9月, 2009 2 次提交
  19. 06 9月, 2009 1 次提交
    • E
      Reset i2c slave devices during init on mpc5xxx cpus · 5da71efa
      Eric Millbrandt 提交于
      Reset any i2c devices that may have been interrupted during a system reset.
      Normally this would be accomplished by clocking the line until SCL and SDA
      are released and then sending a start condtiion (From an Atmel datasheet).
      There is no direct access to the i2c pins so instead create start commands
      through the i2c interface.  Send a start command then delay for the SDA Hold
      time, repeat this by disabling/enabling the bus a total of 9 times.
      Signed-off-by: NEric Millbrandt <emillbrandt@dekaresearch.com>
      5da71efa
  20. 02 9月, 2009 1 次提交
  21. 25 8月, 2009 2 次提交
  22. 23 7月, 2009 1 次提交
  23. 17 7月, 2009 3 次提交
  24. 08 7月, 2009 1 次提交
  25. 21 6月, 2009 1 次提交
  26. 13 6月, 2009 3 次提交
  27. 04 4月, 2009 2 次提交
    • P
      Add support for building native win32 tools · 2f8d396b
      Peter Tyser 提交于
      Add support for compiling the host tools in the tools directory using
      the MinGW toolchain.  This produces executables which can be used on
      standard Windows computers without requiring cygwin.
      
      One must specify the MinGW compiler and strip utilities as if they
      were the host toolchain in order to build win32 executables, eg:
      
      make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      2f8d396b
    • W
      Add "source" command; prepare removal of "autoscr" command · 74de7aef
      Wolfgang Denk 提交于
      According to the doc/feature-removal-schedule.txt, the "autoscr"
      command will be replaced by the "source" command in approximately 6
      months from now.
      
      This patch prepares this change and starts a 6 month transition
      period as follows:
      
      - The new "source" command has been added, which implements exactly
        the same functionlaity as the old "autoscr" command before
      - The old "autoscr" command name is kept as an alias for compatibility
      - Command sequences, script files atc. have been adapted to use the
        new "source" command
      - Related environment variables ("autoscript", "autoscript_uname")
        have *not* been adapted yet; these will be renamed resp. removed in
        a separate patch when the support for the "autoscr" command get's
        finally dropped.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      74de7aef
  28. 21 3月, 2009 1 次提交