[U-Boot] Pull request: u-boot-ti
Albert ARIBAUD
albert.u.boot at aribaud.net
Tue Nov 5 14:40:12 CET 2013
Hi Tom,
On Mon, 4 Nov 2013 09:22:54 -0500, Tom Rini <trini at ti.com> wrote:
> Hello,
>
> The following changes since commit 304db0b38cfb04cfdb05a740d5ef27da06ea98ea:
>
> arm: Remove IXP425 boards pdnb3 and scpu (2013-10-17 09:28:08 +0200)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to f6723794fd8f3362c4f3b5d0f36607a6a6f107b2:
>
> TI:omap5: Add rdaddr, use consistent loadaddr values (2013-11-01 15:56:00 -0400)
>
> ----------------------------------------------------------------
> Andreas Bießmann (10):
> tricorder: update flash partitioning
> tricorder: use generic provided loadaddr
> tricorder: add configuration for a flashcard u-boot
> tricorder: add cmdline history
> tricorder: add mtdparts to environment
> tricorder: add tricordereeprom command
> tricorder: panic() on unknown board
> tricorder: add led support
> tricorder: read kernel directly from NAND
> tricorder: support 256MiB SDRAM on revision > D
>
> Heiko Schocher (2):
> nand, davinci: add special UBL ecc position
> arm, da85x: update for the ipam390 board
>
> Igor Grinberg (2):
> cm-t35: move the eeprom code to common place
> cm-t35: move the display code to common place
>
> Javier Martinez Canillas (2):
> ARM: IGEP0033: rename config file to am335x_igep0033.h
> OMAP3: igep00x0: rename config file to omap3_igep00x0.h
>
> Lokesh Vutla (1):
> ARM: OMAP4: Convert to ti_armv7_common.h
>
> Minal Shah (1):
> dra7xx_evm: Enabled UART-boot mode and add dra7xx_evm_uart3 build
>
> Nikita Kiryanov (3):
> cm_t35: reduce default bootdelay to 3 seconds
> cm_t35: turn on GPIO commands
> cm_t35: update lcd predefines
>
> SRICHARAN R (1):
> ARM: OMAP5: DDR3: Change io settings
>
> Thomas Weber (3):
> tricorder: remove lcdmode from bootargs
> tricorder: Make u-boot faster
> tricorder: switch to alternative memtest
>
> Tom Rini (7):
> drivers/rtc/davinci.c: Reference DAVINCI_RTC_BASE more directly
> am33xx, davinci: Create and use <asm/davinci_rtc.h>
> bootcount_davinci: Switch to scratch register #2
> TI:am33xx: Add bootcount support to ti_am335x_common.h
> am335x: Enable CONFIG_OMAP_WATCHDOG support
> TI:armv7: Change CONFIG_SYS_SPL_ARGS_ADDR to a higher address
> TI:omap5: Add rdaddr, use consistent loadaddr values
>
> arch/arm/cpu/armv7/am33xx/board.c | 7 +-
> arch/arm/cpu/armv7/omap-common/boot-common.c | 4 +
> arch/arm/include/asm/arch-am33xx/cpu.h | 9 -
> arch/arm/include/asm/arch-davinci/hardware.h | 38 ---
> arch/arm/include/asm/arch-omap5/omap.h | 4 +-
> arch/arm/include/asm/arch-omap5/spl.h | 1 +
> arch/arm/include/asm/davinci_rtc.h | 52 ++++
> board/Barix/ipam390/ipam390-ais-uart.cfg | 2 +-
> board/Barix/ipam390/ipam390.c | 29 +--
> board/compulab/cm_t35/Makefile | 3 -
> board/compulab/cm_t35/cm_t35.c | 7 +-
> board/compulab/common/Makefile | 36 +++
> board/compulab/{cm_t35 => common}/eeprom.c | 51 ++--
> board/compulab/{cm_t35 => common}/eeprom.h | 8 +-
> .../{cm_t35/display.c => common/omap3_display.c} | 8 +-
> board/corscience/tricorder/Makefile | 2 +-
> board/corscience/tricorder/led.c | 80 +++++++
> board/corscience/tricorder/tricorder-eeprom.c | 251 ++++++++++++++++++++
> board/corscience/tricorder/tricorder-eeprom.h | 41 ++++
> board/corscience/tricorder/tricorder.c | 126 +++++++++-
> board/corscience/tricorder/tricorder.h | 4 +-
> board/enbw/enbw_cmc/enbw_cmc.c | 1 +
> board/ti/am335x/board.c | 6 +
> boards.cfg | 16 +-
> drivers/bootcount/Makefile | 1 +
> drivers/bootcount/bootcount_davinci.c | 13 +-
> drivers/mtd/nand/davinci_nand.c | 12 +
> drivers/rtc/davinci.c | 8 +-
> include/configs/{igep0033.h => am335x_igep0033.h} | 0
> include/configs/cm_t35.h | 3 +-
> include/configs/dra7xx_evm.h | 9 +-
> include/configs/ipam390.h | 35 ++-
> include/configs/{igep00x0.h => omap3_igep00x0.h} | 0
> include/configs/omap4_common.h | 188 +++------------
> include/configs/omap4_panda.h | 2 -
> include/configs/omap4_sdp4430.h | 2 -
> include/configs/omap5_common.h | 7 +-
> include/configs/ti_am335x_common.h | 14 ++
> include/configs/ti_armv7_common.h | 2 +-
> include/configs/tricorder.h | 155 +++++++++---
> 40 files changed, 876 insertions(+), 361 deletions(-)
> create mode 100644 arch/arm/include/asm/davinci_rtc.h
> create mode 100644 board/compulab/common/Makefile
> rename board/compulab/{cm_t35 => common}/eeprom.c (60%)
> rename board/compulab/{cm_t35 => common}/eeprom.h (62%)
> rename board/compulab/{cm_t35/display.c => common/omap3_display.c} (97%)
> create mode 100644 board/corscience/tricorder/led.c
> create mode 100644 board/corscience/tricorder/tricorder-eeprom.c
> create mode 100644 board/corscience/tricorder/tricorder-eeprom.h
> rename include/configs/{igep0033.h => am335x_igep0033.h} (100%)
> rename include/configs/{igep00x0.h => omap3_igep00x0.h} (100%)
>
> Thanks!
>
Applied to u-boot-arm/master, thanks!
Amicalement,
--
Albert.
More information about the U-Boot
mailing list