[U-Boot] Please pull u-boot-ti/master

Tom Rini trini at ti.com
Tue Jul 30 15:29:55 CEST 2013


Hello,

The following changes since commit 8b485ba12b0defa0c4ed3559789250238f8331a8:

  Merge branch 'u-boot/master' into u-boot-arm/master (2013-07-25 17:57:46 +0200)

are available in the git repository at:


  git://git.denx.de/u-boot-ti.git master

for you to fetch changes up to fdce7b633a1de24456226b18527cc7900c34282a:

  gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-30 09:21:42 -0400)

----------------------------------------------------------------
Andreas Bießmann (1):
      omap3/sys_info: fix printout of OMAP36XX L3 freqency

Christian Riesch (1):
      da850evm: Use clrbits function with correct endianess

Dan Murphy (2):
      gpio: tca642x: Add the tca642x gpio expander driver
      gpio: omap5-uevm: Configure the tca6424 gpio expander

Heiko Schocher (1):
      net, phy, cpsw: fix gigabit register access

Justin Waters (6):
      am335x_evm: Make NAND support modular
      am335x_evm: Add command line editing
      am335x_evm: Rework bootcmd to handle two MMC devs
      Add additional MLO images to .gitignore
      am335x_evm: Add support for eMMC environment
      am335x_evm: Add am335x_boneblack variant

Lokesh Vutla (1):
      ARM: DRA7xx: Lock DPLL_GMAC

Mugunthan V N (6):
      drivers: net: cpsw: remove hard coding bd ram for cpsw
      drivers: net: cpsw: Enable statistics for all port
      ARM: DRA7xx: Enable GMAC clock control
      ARM: DRA7xx: Add CPSW support to DRA7xx EVM
      ARM: DRA7xx: Add CPSW and MDIO pinmux support
      ARM: DRA7xx: Enable CPSW Ethernet support

Nishanth Menon (6):
      omap3_beagle: remove JFFS2 support.
      omap3_beagle: replace uImage.beagle with generic uImage
      beagleboard: remove RevB support for BeagleBoard Xm
      omap3_beagle: enable CMD_FS_GENERIC and simplify load of image/ramdisk
      omap3_beagle: support findfdt and loadfdt for devicetree support
      omap3_beagle: support booting from zImage and device tree as last option

Stefan Roese (1):
      arm: omap3: spl: Fix problem with 8bit NAND devices

Steve Kipisz (2):
      am335x_evm: Add support for the NOR module on the memory cape
      am335x_evm: Add support to boot from NOR.

Tom Rini (12):
      spl_mmc.c: Detect missing kernel image in RAW MMC
      README.falcon: Note how we determine if we can boot the OS or not
      am335x_evm: Correct DFU ALT settings for falcon mode
      am335x_evm: Update eMMC falcon mode locations
      am335x_evm: Correct CONFIG_CMD_SPL_WRITE_SIZE
      am335x_evm: Add basic README
      board/ti/am335x/README: Document NAND programming
      am335x_evm: Drop useless CONFIG_ENV_IS_NOWHERE
      am335x_evm: Update SPI_BOOT support, add MTDPARTS info
      am335x_evm: Rework board_is_foo() checks
      am33xx: Correct gpmc_cfg->irqstatus/enable
      board/ti/am335x/README: Document NOR programming

 .gitignore                                     |    2 +-
 arch/arm/cpu/armv7/am33xx/board.c              |    2 +-
 arch/arm/cpu/armv7/am33xx/emif4.c              |    6 +-
 arch/arm/cpu/armv7/am33xx/mem.c                |    8 +-
 arch/arm/cpu/armv7/omap-common/clocks-common.c |   18 ++
 arch/arm/cpu/armv7/omap3/mem.c                 |   12 +
 arch/arm/cpu/armv7/omap3/sys_info.c            |    6 +-
 arch/arm/cpu/armv7/omap5/hw_data.c             |   18 +-
 arch/arm/cpu/armv7/omap5/prcm-regs.c           |    7 +
 arch/arm/include/asm/arch-am33xx/mem.h         |    9 +
 arch/arm/include/asm/arch-omap5/cpu.h          |    6 +
 arch/arm/include/asm/arch-omap5/omap.h         |   26 ++
 arch/arm/include/asm/omap_common.h             |   10 +
 board/davinci/da8xxevm/da850evm.c              |   14 +-
 board/ti/am335x/Makefile                       |    2 +-
 board/ti/am335x/README                         |  160 ++++++++++++
 board/ti/am335x/board.c                        |  121 +++++----
 board/ti/am335x/board.h                        |   31 +++
 board/ti/am335x/mux.c                          |   65 ++++-
 board/ti/am335x/u-boot.lds                     |  117 +++++++++
 board/ti/beagle/beagle.c                       |   28 +-
 board/ti/beagle/beagle.h                       |    3 +-
 board/ti/dra7xx/evm.c                          |  150 ++++++++++-
 board/ti/dra7xx/mux_data.h                     |   14 +
 board/ti/omap5_uevm/evm.c                      |   22 ++
 board/ti/omap5_uevm/mux_data.h                 |    2 +
 board/ti/ti814x/evm.c                          |    1 +
 boards.cfg                                     |   17 +-
 common/spl/spl_mmc.c                           |    4 +
 doc/README.falcon                              |    2 +
 drivers/gpio/Makefile                          |    1 +
 drivers/gpio/tca642x.c                         |  333 ++++++++++++++++++++++++
 drivers/net/cpsw.c                             |    7 +-
 drivers/net/phy/phy.c                          |    6 +-
 include/configs/am335x_evm.h                   |  225 ++++++++++------
 include/configs/dra7xx_evm.h                   |   19 ++
 include/configs/omap3_beagle.h                 |   44 +++-
 include/configs/omap5_uevm.h                   |    5 +
 include/cpsw.h                                 |    1 +
 include/tca642x.h                              |   69 +++++
 40 files changed, 1387 insertions(+), 206 deletions(-)
 create mode 100644 board/ti/am335x/README
 create mode 100644 board/ti/am335x/u-boot.lds
 create mode 100644 drivers/gpio/tca642x.c
 create mode 100644 include/tca642x.h

Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130730/6a72316f/attachment.pgp>


More information about the U-Boot mailing list