Hi Tom, On Wed, 28 Aug 2013 14:25:07 -0400, Tom Rini <tr...@ti.com> wrote:
> Hello, > > The following changes since commit 9ed887caecb9ecb0c68773a1870d143b9f28d3da: > > Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-08-17 > 18:24:13 +0200) > > are available in the git repository at: > > > git://git.denx.de/u-boot-ti.git master > > for you to fetch changes up to 901ce27c6f018992b7dd6c08d3c98cf217cc4c96: > > siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support (2013-08-28 > 12:01:30 -0400) > > ---------------------------------------------------------------- > Albert ARIBAUD (1): > arm: omap3: fix SRAM copy and execution sequence > > Heiko Schocher (6): > arm, am33xx: add defines for gmii_sel_register bits > arm, am335x: add some missing registers and defines for lcd and epwm > support > arm, spl: add watchdog library to SPL > arm, am335x: add watchdog support > video: add formike lcd panel init > arm, am335x: add support for 3 siemens boards > > Javier Martinez Canillas (1): > ARM: igep00x0.h: Enable raw initrd support > > Lubomir Popov (1): > ARM: OMAP4470: Add Elpida EDB8164B3PF memory configuration > > Oleksandr Tyshchenko (1): > sdp4430: Initialize board id using CONFIG_MACH_TYPE > > Taras Kondratiuk (3): > ARM: OMAP4470: Add OMAP4470 identification > ARM: OMAP4470: Add voltage and dpll data > ARM: OMAP4460: sdp: Limit TPS mux config to 4460 > > Tom Rini (13): > am33xx: Correct and expand comments on CONFIG_SPL_MAX_SIZE > TI:armv7: Move CONFIG_SPL_LIBDISK_SUPPORT to MMC section > omap5: Expand CONFIG_SPL_MAX_SIZE and comment upon > SRAM_SCRATCH_SPACE_ADDR > TI:am335x: Better comment and organize the networking related options > am335x_evm: Add comment by SPL SPI support > am335x_evm: Regroup USB options > TI:armv7: Re-order slightly the generic CONFIG options, expand related > comments > am335x_evm: Update README for customization > TI:am33xx: Move SPL YMODEM support to the per-board config > TI:omap5: Clarify comments about SPL and DDR timings in common config > omap5_uevm: Better comment why we have TCA642X and the reset time > dra7xx_evm: Re-order and comment the networking related config options > siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support > > MAINTAINERS | 5 + > arch/arm/cpu/armv7/omap3/clock.c | 6 +- > arch/arm/cpu/armv7/omap3/lowlevel_init.S | 8 +- > arch/arm/cpu/armv7/omap4/hw_data.c | 36 ++ > arch/arm/cpu/armv7/omap4/hwinit.c | 3 + > arch/arm/cpu/armv7/omap4/sdram_elpida.c | 41 +- > arch/arm/include/asm/arch-am33xx/cpu.h | 74 ++- > arch/arm/include/asm/arch-am33xx/hardware_am33xx.h | 7 + > arch/arm/include/asm/arch-am33xx/omap.h | 2 +- > arch/arm/include/asm/arch-omap3/clock.h | 2 - > arch/arm/include/asm/arch-omap4/clock.h | 7 +- > arch/arm/include/asm/arch-omap4/omap.h | 1 + > arch/arm/include/asm/arch-omap5/omap.h | 11 +- > arch/arm/include/asm/omap_common.h | 1 + > board/isee/igep0033/board.c | 6 +- > board/phytec/pcm051/board.c | 2 - > board/siemens/common/board.c | 171 +++++++ > board/siemens/common/factoryset.c | 284 +++++++++++ > board/siemens/common/factoryset.h | 27 ++ > board/siemens/dxr2/Makefile | 49 ++ > board/siemens/dxr2/board.c | 241 +++++++++ > board/siemens/dxr2/board.h | 69 +++ > board/siemens/dxr2/mux.c | 112 +++++ > board/siemens/pxm2/Makefile | 49 ++ > board/siemens/pxm2/board.c | 429 ++++++++++++++++ > board/siemens/pxm2/board.h | 22 + > board/siemens/pxm2/mux.c | 186 +++++++ > board/siemens/pxm2/pmic.h | 71 +++ > board/siemens/rut/Makefile | 49 ++ > board/siemens/rut/board.c | 432 +++++++++++++++++ > board/siemens/rut/board.h | 22 + > board/siemens/rut/mux.c | 347 +++++++++++++ > board/ti/am335x/README | 28 +- > board/ti/am335x/board.c | 6 +- > board/ti/sdp4430/sdp.c | 4 +- > boards.cfg | 3 + > doc/README.SPL | 2 +- > drivers/video/Makefile | 1 + > drivers/video/formike.c | 511 > ++++++++++++++++++++ > drivers/watchdog/Makefile | 1 + > drivers/watchdog/omap_wdt.c | 121 +++++ > include/configs/am335x_evm.h | 93 ++-- > include/configs/dra7xx_evm.h | 18 +- > include/configs/dxr2.h | 94 ++++ > include/configs/igep00x0.h | 1 + > include/configs/omap4_sdp4430.h | 1 + > include/configs/omap5_common.h | 19 +- > include/configs/omap5_uevm.h | 3 + > include/configs/pxm2.h | 153 ++++++ > include/configs/rut.h | 156 ++++++ > include/configs/siemens-am33x-common.h | 461 ++++++++++++++++++ > include/configs/ti_am335x_common.h | 22 +- > include/configs/ti_armv7_common.h | 26 +- > include/video.h | 4 + > spl/Makefile | 1 + > tools/logos/siemens.bmp | Bin 0 -> 25766 bytes > 56 files changed, 4387 insertions(+), 114 deletions(-) > create mode 100644 board/siemens/common/board.c > create mode 100644 board/siemens/common/factoryset.c > create mode 100644 board/siemens/common/factoryset.h > create mode 100644 board/siemens/dxr2/Makefile > create mode 100644 board/siemens/dxr2/board.c > create mode 100644 board/siemens/dxr2/board.h > create mode 100644 board/siemens/dxr2/mux.c > create mode 100644 board/siemens/pxm2/Makefile > create mode 100644 board/siemens/pxm2/board.c > create mode 100644 board/siemens/pxm2/board.h > create mode 100644 board/siemens/pxm2/mux.c > create mode 100644 board/siemens/pxm2/pmic.h > create mode 100644 board/siemens/rut/Makefile > create mode 100644 board/siemens/rut/board.c > create mode 100644 board/siemens/rut/board.h > create mode 100644 board/siemens/rut/mux.c > create mode 100644 drivers/video/formike.c > create mode 100644 drivers/watchdog/omap_wdt.c > create mode 100644 include/configs/dxr2.h > create mode 100644 include/configs/pxm2.h > create mode 100644 include/configs/rut.h > create mode 100644 include/configs/siemens-am33x-common.h > create mode 100644 tools/logos/siemens.bmp > Applied to u-boot-arm/master, thanks! Amicalement, -- Albert. _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot