[U-Boot] Please pull u-boot-ti/master
Tom Rini
trini at ti.com
Sat May 24 01:52:11 CEST 2014
Hello,
The following changes since commit 05d134b084590684bcf4d832c0035952727b7cd9:
Merge remote-tracking branch 'u-boot/master' (2014-05-20 10:05:42 +0200)
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
for you to fetch changes up to 39338a30fab2ce7d80dfe0d457071573727f499f:
compulab: eeprom: enable any i2c driver (2014-05-23 19:40:39 -0400)
----------------------------------------------------------------
Ash Charles (9):
omap: overo: allow the use of a plain text env file instead boot scripts
OMAP3: overo: add command support for mtd and ubi
OMAP3: overo: eliminate hard-coded partition offsets
arm: omap3: Fix omap3_overo SPL boot hangup
Add Board Revision for Wireless chip
OMAP3: overo: add some Gumstix expansion boards
Allow overo to boot with device tree
omap3: overo: Use common configurations for Overo
omap4: duovero: Add Gumstix DuoVero machine.
Dmitry Lifshitz (3):
cm-t54: add cm-t54 board support
cm-t54: add EEPROM support and MAC address handling
cm-t54: add environment partition runtime detection
Heiko Schocher (1):
arm, am33xx: Enable CONFIG_SYS_GENERIC_BOARD for siemens boards
Igor Grinberg (1):
compulab: eeprom: add default eeprom address
Ilya Ledvich (1):
compulab: eeprom: enable any i2c driver
Keerthy (1):
ARM: DRA72x: volt: Update the pmic offsets
Lokesh Vutla (5):
ARM: DRA72x: Add Silicon ID support
ARM: DRA72x: clocks: Update the hwdata
ARM: DRA72x: Update EMIF data
ARM: DRA7xx: ctrl: Fix efuse register addresses
ARM: OMAP: Fix omap_sdram_size calculation
Peter A. Bigot (1):
OMAP3: overo: increase linux partition to 8 MiB
Sergey Alyoshin (1):
am33xx: report silicon revision instead of code
Tom Rini (1):
armv7:TI: Add <asm/ti-common/sys_proto.h> and migrate omap_hw_init_context
pekon gupta (3):
ARM: omap4: add platform specific info for GPMC and ELM controllers
ARM: omap5: add platform specific info for GPMC and ELM controllers
ARM: omap: merge GPMC initialization code for all platform
arch/arm/cpu/armv7/am33xx/Makefile | 1 -
arch/arm/cpu/armv7/am33xx/mem.c | 98 --------
arch/arm/cpu/armv7/am33xx/sys_info.c | 41 ++--
arch/arm/cpu/armv7/omap-common/Makefile | 4 -
arch/arm/cpu/armv7/omap-common/emif-common.c | 6 +-
arch/arm/cpu/armv7/omap-common/hwinit-common.c | 15 +-
arch/arm/cpu/armv7/omap-common/mem-common.c | 117 +++++++++-
arch/arm/cpu/armv7/omap3/Makefile | 1 -
arch/arm/cpu/armv7/omap5/hw_data.c | 40 ++++
arch/arm/cpu/armv7/omap5/hwinit.c | 3 +
arch/arm/cpu/armv7/omap5/prcm-regs.c | 8 +-
arch/arm/cpu/armv7/omap5/sdram.c | 19 +-
arch/arm/include/asm/arch-am33xx/sys_proto.h | 1 +
arch/arm/include/asm/arch-omap3/mem.h | 1 +
arch/arm/include/asm/arch-omap4/cpu.h | 5 +-
arch/arm/include/asm/arch-omap4/hardware.h | 26 +++
arch/arm/include/asm/arch-omap4/mem.h | 62 +++++
arch/arm/include/asm/arch-omap4/omap.h | 3 -
arch/arm/include/asm/arch-omap4/sys_proto.h | 51 +---
arch/arm/include/asm/arch-omap5/cpu.h | 5 +-
arch/arm/include/asm/arch-omap5/hardware.h | 26 +++
arch/arm/include/asm/arch-omap5/mem.h | 62 +++++
arch/arm/include/asm/arch-omap5/omap.h | 9 +-
arch/arm/include/asm/arch-omap5/sys_proto.h | 50 +---
arch/arm/include/asm/omap_common.h | 7 +-
arch/arm/include/asm/ti-common/sys_proto.h | 72 ++++++
board/compulab/cm_t54/Makefile | 10 +
board/compulab/cm_t54/cm_t54.c | 262 +++++++++++++++++++++
board/compulab/cm_t54/mux.c | 94 ++++++++
board/compulab/cm_t54/spl.c | 66 ++++++
board/compulab/common/Makefile | 2 +-
board/compulab/common/eeprom.c | 5 +
board/compulab/common/eeprom.h | 2 +-
board/gumstix/duovero/Makefile | 8 +
board/gumstix/duovero/duovero.c | 264 +++++++++++++++++++++
board/gumstix/duovero/duovero_mux_data.h | 199 ++++++++++++++++
board/overo/overo.c | 43 +++-
board/overo/overo.h | 17 ++
boards.cfg | 2 +
include/configs/cm_t54.h | 149 ++++++++++++
include/configs/duovero.h | 62 +++++
include/configs/omap3_overo.h | 296 ++++++++----------------
include/configs/siemens-am33x-common.h | 2 +
include/configs/ti_omap4_common.h | 9 +
44 files changed, 1757 insertions(+), 468 deletions(-)
delete mode 100644 arch/arm/cpu/armv7/am33xx/mem.c
create mode 100644 arch/arm/include/asm/arch-omap4/hardware.h
create mode 100644 arch/arm/include/asm/arch-omap4/mem.h
create mode 100644 arch/arm/include/asm/arch-omap5/hardware.h
create mode 100644 arch/arm/include/asm/arch-omap5/mem.h
create mode 100644 arch/arm/include/asm/ti-common/sys_proto.h
create mode 100644 board/compulab/cm_t54/Makefile
create mode 100644 board/compulab/cm_t54/cm_t54.c
create mode 100644 board/compulab/cm_t54/mux.c
create mode 100644 board/compulab/cm_t54/spl.c
create mode 100644 board/gumstix/duovero/Makefile
create mode 100644 board/gumstix/duovero/duovero.c
create mode 100644 board/gumstix/duovero/duovero_mux_data.h
create mode 100644 include/configs/cm_t54.h
create mode 100644 include/configs/duovero.h
--
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/20140523/2ad7672e/attachment.pgp>
More information about the U-Boot
mailing list