Skip to content
This project is mirrored from https://github.com/u-boot/u-boot.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Aug 09, 2010
    • Heiko Schocher's avatar
      net ppc: fix ethernet device names with spaces · 48690d80
      Heiko Schocher authored
      
      
      since commit 1384f3bb ethernet names
      with spaces drop a
      
      Warning: eth device name has a space!
      
      message. This patch fix it for:
      
      - "FEC ETHERNET" devices found on
        mpc512x, mpc5xxx, mpc8xx and mpc8220 boards.
        renamed to "FEC".
      - "SCC ETHERNET" devices found on
        mpc8xx, mpc82xx based boards. Renamed to "SCC".
      - "HDLC ETHERNET" devices found on mpc8xx boards
        Renamed to "HDLC"
      - "FCC ETHERNET" devices found on mpc8260 and mpc85xx based
        boards. Renamed to "FCC"
      
      Tested on the kup4k board.
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
      48690d80
  2. Aug 03, 2010
    • Wolfgang Denk's avatar
      Rename getenv_r() into getenv_f() · cdb74977
      Wolfgang Denk authored
      
      
      While running from flash, i. e. before relocation, we have only a
      limited C runtime environment without writable data segment. In this
      phase, some configurations (for example with environment in EEPROM)
      must not use the normal getenv(), but a special function.  This
      function had been called getenv_r(), with the idea that the "_r"
      suffix would mean the same as in the _r_eentrant versions of some of
      the C library functions (for example getdate vs. getdate_r, getgrent
      vs. getgrent_r, etc.).
      
      Unfortunately this was a misleading name, as in U-Boot the "_r"
      generally means "running from RAM", i. e. _after_ relocation.
      
      To avoid confusion, rename into getenv_f() [as "running from flash"]
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      Acked-by: default avatarDetlev Zundel <dzu@denx.de>
      cdb74977
  3. Jul 22, 2010
  4. Jun 13, 2010
  5. May 28, 2010
  6. May 03, 2010
  7. Apr 21, 2010
  8. Apr 19, 2010
    • Richard Retanubun's avatar
      fsl_i2c: Added a callpoint for i2c_board_late_init · 26a33504
      Richard Retanubun authored
      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
  9. Apr 13, 2010
  10. Apr 08, 2010
  11. Mar 21, 2010
  12. Feb 01, 2010
  13. Jan 26, 2010
  14. Jan 17, 2010
    • Heiko Schocher's avatar
      cmd_eeprom: I2C updates · 548738b4
      Heiko Schocher authored
      
      
      - 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: default avatarHeiko Schocher <hs@denx.de>
      548738b4
  15. Dec 08, 2009
  16. Dec 07, 2009
  17. Dec 05, 2009
  18. Dec 02, 2009
  19. Oct 27, 2009
  20. Oct 18, 2009
    • Mike Frysinger's avatar
      env: only build env_embedded and envcrc when needed · 6dab6add
      Mike Frysinger authored
      
      
      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: default avatarMike Frysinger <vapier@gentoo.org>
      6dab6add
  21. Oct 03, 2009
  22. Sep 24, 2009
  23. Sep 22, 2009
  24. Sep 06, 2009
    • Eric Millbrandt's avatar
      Reset i2c slave devices during init on mpc5xxx cpus · 5da71efa
      Eric Millbrandt authored
      
      
      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: default avatarEric Millbrandt <emillbrandt@dekaresearch.com>
      5da71efa
  25. Sep 02, 2009
  26. Aug 25, 2009
  27. Jul 23, 2009
  28. Jul 17, 2009
Loading