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

Tom Rini trini at ti.com
Wed Nov 5 22:33:24 CET 2014


Hi me,

The following changes since commit d5325eff10922acb11c39efece6d5f24de5b1998:

  Merge git://www.denx.de/git/u-boot-sunxi (2014-11-05 07:23:32 -0500)

are available in the git repository at:


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

for you to fetch changes up to d23ee49b0bf1c21fdd3f19e8921cc5dc5d903fbf:

  omap3: cm-t3517: add LCD/DVI and splash support (2014-11-05 13:09:47 -0500)

----------------------------------------------------------------
Dileep Katta (1):
      Enable Android Fastboot support on am335x_evm board

Guillaume GARDET (2):
      ARM: TI: Enable raw initrd support
      ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h

Hao Zhang (2):
      board: k2l_evm: add network support
      net: phy: marvell: add errata w/a for 88E151* chips

Heiko Schocher (1):
      arm: am335x: net: pxm2: disable rgmii internal delay mode

Igor Grinberg (11):
      am335x: make get_board_rev() function weak
      compulab: refactor board revision handling
      omap3: cm-t35: move the USB hub reset code
      omap3: cm-t35: extract the splash code from board
      omap3: cm-t35: move the SMC911x code
      omap3: cm-t35: move get_board_serial() fallback
      omap: hsmmc: assume cd gpio is active low
      omap3: cm-t3517: add basic board support
      omap3: cm-t3517: add USB support
      omap3: cm-t3517: add Ethernet support
      omap3: cm-t3517: add LCD/DVI and splash support

Khoronzhuk, Ivan (9):
      ARM: keystone2: keysonte_nav: add support for K2L SoC
      net: keystone_serdes: add keystone K2L SoC support
      net: keystone_net: add Keystone2 K2L SoC support
      ks2_evm: readme: add k2l evm board information
      ks2_evm: configs: fix UBI volume name
      dma: keystone_nav: remove spurious qm_cfg verification
      keystone2: config: align names of images with MCSDK
      ks2_evm: config: enable fatload command
      ks2_evm: board: remove sprintf for simple string

Murali Karicheri (2):
      keystone2: change default boot mode to ubi
      keystone2: config: restructure handling of default env settings

Paul Kocialkowski (1):
      twl4030: More voltages on VAUX2 and VAUX3

Tom Rini (2):
      am335x_evm: Add NOR to Kconfig
      am335x_evm: Convert NOR_BOOT to Kconfig

 arch/arm/cpu/armv7/am33xx/sys_info.c               |    7 +-
 arch/arm/cpu/armv7/omap3/Kconfig                   |    4 +
 arch/arm/include/asm/arch-am33xx/sys_proto.h       |    2 -
 arch/arm/include/asm/arch-keystone/hardware-k2e.h  |    2 -
 arch/arm/include/asm/arch-keystone/hardware-k2hk.h |    2 -
 arch/arm/include/asm/arch-keystone/hardware-k2l.h  |    7 +
 arch/arm/include/asm/arch-keystone/hardware.h      |    4 +
 board/compulab/cm_t35/cm_t35.c                     |  157 +---------
 board/compulab/cm_t3517/Kconfig                    |   12 +
 board/compulab/cm_t3517/MAINTAINERS                |    6 +
 board/compulab/cm_t3517/Makefile                   |    9 +
 board/compulab/cm_t3517/cm_t3517.c                 |  231 ++++++++++++++
 board/compulab/cm_t3517/mux.c                      |  236 +++++++++++++++
 board/compulab/cm_t54/cm_t54.c                     |    7 +-
 board/compulab/common/Makefile                     |    7 +-
 board/compulab/common/common.c                     |   59 ++++
 board/compulab/common/common.h                     |   47 +++
 board/compulab/common/eeprom.c                     |   14 +-
 board/compulab/common/omap3_smc911x.c              |   93 ++++++
 board/compulab/common/splash.c                     |   72 +++++
 board/siemens/pxm2/board.c                         |    2 +-
 board/ti/am335x/Kconfig                            |   15 +
 board/ti/ks2_evm/README                            |   20 +-
 board/ti/ks2_evm/board.c                           |    7 +-
 board/ti/ks2_evm/board_k2l.c                       |   40 ++-
 configs/am335x_evm_nor_defconfig                   |    3 +-
 configs/am335x_evm_norboot_defconfig               |    3 +-
 configs/cm_t3517_defconfig                         |    4 +
 drivers/dma/keystone_nav.c                         |   12 -
 drivers/mmc/omap_hsmmc.c                           |    4 +-
 drivers/net/keystone_net.c                         |    7 +-
 drivers/net/phy/marvell.c                          |   51 +++-
 include/configs/am335x_evm.h                       |   16 +-
 include/configs/cm_t3517.h                         |  320 ++++++++++++++++++++
 include/configs/k2e_evm.h                          |   23 +-
 include/configs/k2hk_evm.h                         |   23 +-
 include/configs/k2l_evm.h                          |   22 +-
 include/configs/ks2_evm.h                          |   22 +-
 include/configs/omap3_igep00x0.h                   |    2 -
 include/configs/ti_armv7_common.h                  |    1 +
 include/twl4030.h                                  |    2 +
 41 files changed, 1334 insertions(+), 243 deletions(-)
 create mode 100644 board/compulab/cm_t3517/Kconfig
 create mode 100644 board/compulab/cm_t3517/MAINTAINERS
 create mode 100644 board/compulab/cm_t3517/Makefile
 create mode 100644 board/compulab/cm_t3517/cm_t3517.c
 create mode 100644 board/compulab/cm_t3517/mux.c
 create mode 100644 board/compulab/common/common.c
 create mode 100644 board/compulab/common/common.h
 create mode 100644 board/compulab/common/omap3_smc911x.c
 create mode 100644 board/compulab/common/splash.c
 create mode 100644 configs/cm_t3517_defconfig
 create mode 100644 include/configs/cm_t3517.h

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


More information about the U-Boot mailing list