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

Hello,
The following changes since commit c7d35bef255dedb3ec3856982f042dde514676b0:
am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers (2012-10-25 11:31:38 -0700)
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
for you to fetch changes up to a956bdcb3ff759f753e3f0c5e40e58f4c3056e22:
am335x: add initial AM335x IDK board support (2012-11-02 10:04:04 -0700)
---------------------------------------------------------------- Andrew Bradford (4): am33xx: Enable UART{1,2,3,4,5} clocks am33xx: Enable UART{1,2,3,4,5} pin-mux serial: ns16550: Enable COM5 and COM6 am335x_evm: Enable use of UART{1,2,3,4,5}
Koen Kooi (1): am335x: add mux config for DDR3 version of beaglebone
Matthias Fuchs (1): am335x: add initial AM335x IDK board support
Pali Rohár (4): arm bootm: Allow to pass board specified atags Add power bus message definitions in twl4030.h cfb_console: Add support for some ANSI terminal escape codes New board support: Nokia RX-51 aka N900
Raphael Assenat (1): eco5pk: Add new board and default config
Tom Rini (1): omap3: Rework board.c for !CONFIG_SYS_L2CACHE_OFF
MAINTAINERS | 8 + README | 4 + arch/arm/cpu/armv7/am33xx/clock.c | 35 ++ arch/arm/cpu/armv7/omap3/board.c | 28 +- arch/arm/include/asm/setup.h | 5 + arch/arm/lib/bootm.c | 4 + board/8dtech/eco5pk/Makefile | 43 +++ board/8dtech/eco5pk/eco5pk.c | 61 ++++ board/8dtech/eco5pk/eco5pk.h | 404 ++++++++++++++++++++++ board/nokia/rx51/Makefile | 46 +++ board/nokia/rx51/lowlevel_init.S | 209 ++++++++++++ board/nokia/rx51/rx51.c | 677 +++++++++++++++++++++++++++++++++++++ board/nokia/rx51/rx51.h | 389 +++++++++++++++++++++ board/nokia/rx51/tag_omap.h | 311 +++++++++++++++++ board/ti/am335x/board.c | 24 +- board/ti/am335x/board.h | 5 + board/ti/am335x/mux.c | 80 +++++ boards.cfg | 9 +- doc/README.nokia_rx51 | 104 ++++++ drivers/serial/serial_ns16550.c | 36 +- drivers/video/cfb_console.c | 328 +++++++++++++++++- include/configs/am335x_evm.h | 12 +- include/configs/eco5pk.h | 81 +++++ include/configs/nokia_rx51.h | 452 +++++++++++++++++++++++++ include/twl4030.h | 98 ++++++ 25 files changed, 3421 insertions(+), 32 deletions(-) create mode 100644 board/8dtech/eco5pk/Makefile create mode 100644 board/8dtech/eco5pk/eco5pk.c create mode 100644 board/8dtech/eco5pk/eco5pk.h create mode 100644 board/nokia/rx51/Makefile create mode 100644 board/nokia/rx51/lowlevel_init.S create mode 100644 board/nokia/rx51/rx51.c create mode 100644 board/nokia/rx51/rx51.h create mode 100644 board/nokia/rx51/tag_omap.h create mode 100644 doc/README.nokia_rx51 create mode 100644 include/configs/eco5pk.h create mode 100644 include/configs/nokia_rx51.h
Thanks!

Hi Tom,
On Fri, 2 Nov 2012 10:08:22 -0700, Tom Rini trini@ti.com wrote:
Hello,
The following changes since commit c7d35bef255dedb3ec3856982f042dde514676b0:
am33xx/ddr_defs.h: rename DDR2/DDR3 defines to their actual part numbers (2012-10-25 11:31:38 -0700)
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
for you to fetch changes up to a956bdcb3ff759f753e3f0c5e40e58f4c3056e22:
am335x: add initial AM335x IDK board support (2012-11-02 10:04:04 -0700)
Andrew Bradford (4): am33xx: Enable UART{1,2,3,4,5} clocks am33xx: Enable UART{1,2,3,4,5} pin-mux serial: ns16550: Enable COM5 and COM6 am335x_evm: Enable use of UART{1,2,3,4,5}
Koen Kooi (1): am335x: add mux config for DDR3 version of beaglebone
Matthias Fuchs (1): am335x: add initial AM335x IDK board support
Pali Rohár (4): arm bootm: Allow to pass board specified atags Add power bus message definitions in twl4030.h cfb_console: Add support for some ANSI terminal escape codes New board support: Nokia RX-51 aka N900
Raphael Assenat (1): eco5pk: Add new board and default config
Tom Rini (1): omap3: Rework board.c for !CONFIG_SYS_L2CACHE_OFF
MAINTAINERS | 8 + README | 4 + arch/arm/cpu/armv7/am33xx/clock.c | 35 ++ arch/arm/cpu/armv7/omap3/board.c | 28 +- arch/arm/include/asm/setup.h | 5 + arch/arm/lib/bootm.c | 4 + board/8dtech/eco5pk/Makefile | 43 +++ board/8dtech/eco5pk/eco5pk.c | 61 ++++ board/8dtech/eco5pk/eco5pk.h | 404 ++++++++++++++++++++++ board/nokia/rx51/Makefile | 46 +++ board/nokia/rx51/lowlevel_init.S | 209 ++++++++++++ board/nokia/rx51/rx51.c | 677 +++++++++++++++++++++++++++++++++++++ board/nokia/rx51/rx51.h | 389 +++++++++++++++++++++ board/nokia/rx51/tag_omap.h | 311 +++++++++++++++++ board/ti/am335x/board.c | 24 +- board/ti/am335x/board.h | 5 + board/ti/am335x/mux.c | 80 +++++ boards.cfg | 9 +- doc/README.nokia_rx51 | 104 ++++++ drivers/serial/serial_ns16550.c | 36 +- drivers/video/cfb_console.c | 328 +++++++++++++++++- include/configs/am335x_evm.h | 12 +- include/configs/eco5pk.h | 81 +++++ include/configs/nokia_rx51.h | 452 +++++++++++++++++++++++++ include/twl4030.h | 98 ++++++ 25 files changed, 3421 insertions(+), 32 deletions(-) create mode 100644 board/8dtech/eco5pk/Makefile create mode 100644 board/8dtech/eco5pk/eco5pk.c create mode 100644 board/8dtech/eco5pk/eco5pk.h create mode 100644 board/nokia/rx51/Makefile create mode 100644 board/nokia/rx51/lowlevel_init.S create mode 100644 board/nokia/rx51/rx51.c create mode 100644 board/nokia/rx51/rx51.h create mode 100644 board/nokia/rx51/tag_omap.h create mode 100644 doc/README.nokia_rx51 create mode 100644 include/configs/eco5pk.h create mode 100644 include/configs/nokia_rx51.h
Thanks!
Applied to u-boot-arm/master, thanks!
Amicalement,
participants (2)
-
Albert ARIBAUD
-
Tom Rini