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

Tom,
To the best of my knowledge, the final version of patches for new boards were submitted after the merge window ended but the initial versions were submitted before the merge window ended. Also there are fixes for various compilation warnings. This pull request will result in 1 new compliation warning. This is due to SDP 3430 using a deprecated NET driver. I beleive it is being worked on by Nishanth. Any patch from him will be on top of the existing SDP 3430 support.
Thanks, Sandeep
The following changes since commit 5415337f0746123c75b28044ea487171b79a86a2: Simon Kagstrom (1): arm: Correct build with CONFIG_SYS_HUSH_PARSER set
are available in the git repository at:
git://git.denx.de/u-boot-ti master
David Brownell (1): TI OMAP3 SDP3430: Initial Support
Nishanth Menon (4): OMAP3: export enable_gpmc_cs_config to board files OMAP3: fix warnings when NAND/ONENAND is not used OMAP3: Fix SDRC init TI OMAP3: make gpmc_config as const
Sandeep Paulraj (13): TI DaVinci DM355: Fix Compilation warning for DM355 EVM TI DaVinci DM365: Fix Compilation warning for DM365 EVM TI DaVinci DM646x: Adding initial support for DM6467 EVM TI: DaVinci: DM355 Leopard board support TI DaVinci: Maintainer for DM355 and DM365 EVM TI: OMAP3: Remove SZ_xx references TI DaVinci DM355: Add Config option for 64 bit Support TI DaVinci DM365: Add Config option for 64 bit Support TI DaVinci DVEVM: Add Config option for 64 bit Support TI DaVinci Sonata: Add Config option for 64 bit Support TI DaVinci: DM355 Leopard: Fix compilation warning TI DaVinci: Fix DM6467 EVM Compilation Warning TI DaVinci: Adding Copyright for DM365 EVM
Steve Sakoman (2): TI: OMAP3: Refactors the SM911x driver OMAP3: Update Overo and Beagle environment
Tom Rix (1): Zoom2 Fix serial gpmc setup
MAINTAINERS | 8 + MAKEALL | 3 + Makefile | 9 + board/davinci/dm355evm/dm355evm.c | 4 +- board/davinci/dm355leopard/Makefile | 52 ++++ board/davinci/dm355leopard/config.mk | 6 + board/davinci/dm355leopard/dm355leopard.c | 98 +++++++ board/davinci/dm365evm/dm365evm.c | 5 +- board/davinci/dm6467evm/Makefile | 52 ++++ board/davinci/dm6467evm/config.mk | 2 + board/davinci/dm6467evm/dm6467evm.c | 31 +++ board/logicpd/zoom2/zoom2.c | 5 +- board/ti/sdp3430/Makefile | 49 ++++ board/ti/sdp3430/config.mk | 33 +++ board/ti/sdp3430/sdp.c | 204 ++++++++++++++ board/ti/sdp3430/sdp.h | 417 +++++++++++++++++++++++++++++ cpu/arm_cortexa8/omap3/mem.c | 21 +- cpu/arm_cortexa8/omap3/sys_info.c | 2 +- drivers/net/smc911x.c | 12 +- include/asm-arm/arch-davinci/hardware.h | 2 + include/asm-arm/arch-omap3/cpu.h | 1 + include/asm-arm/arch-omap3/mem.h | 8 +- include/asm-arm/arch-omap3/sys_proto.h | 2 + include/configs/davinci_dm355evm.h | 1 + include/configs/davinci_dm355leopard.h | 162 +++++++++++ include/configs/davinci_dm365evm.h | 2 + include/configs/davinci_dm6467evm.h | 132 +++++++++ include/configs/davinci_dvevm.h | 1 + include/configs/davinci_sonata.h | 1 + include/configs/devkit8000.h | 15 +- include/configs/omap3_beagle.h | 42 ++-- include/configs/omap3_evm.h | 15 +- include/configs/omap3_overo.h | 42 ++-- include/configs/omap3_pandora.h | 15 +- include/configs/omap3_sdp3430.h | 369 +++++++++++++++++++++++++ include/configs/omap3_zoom1.h | 15 +- include/configs/omap3_zoom2.h | 15 +- 37 files changed, 1754 insertions(+), 99 deletions(-) create mode 100644 board/davinci/dm355leopard/Makefile create mode 100644 board/davinci/dm355leopard/config.mk create mode 100644 board/davinci/dm355leopard/dm355leopard.c create mode 100644 board/davinci/dm6467evm/Makefile create mode 100644 board/davinci/dm6467evm/config.mk create mode 100644 board/davinci/dm6467evm/dm6467evm.c create mode 100644 board/ti/sdp3430/Makefile create mode 100644 board/ti/sdp3430/config.mk create mode 100644 board/ti/sdp3430/sdp.c create mode 100644 board/ti/sdp3430/sdp.h create mode 100644 include/configs/davinci_dm355leopard.h create mode 100644 include/configs/davinci_dm6467evm.h create mode 100644 include/configs/omap3_sdp3430.h

s-paulraj@ti.com wrote:
Tom,
To the best of my knowledge, the final version of patches for new boards were submitted after the merge window ended but the initial versions were submitted before the merge window ended. Also there are fixes for various compilation warnings. This pull request will result in 1 new compliation warning. This is due to SDP 3430 using a deprecated NET driver. I beleive it is being worked on by Nishanth. Any patch from him will be on top of the existing SDP 3430 support.
Thanks, Sandeep
I have pulled this into arm/master-sync. Please check to see that all you expect is there. Tom
The following changes since commit 5415337f0746123c75b28044ea487171b79a86a2: Simon Kagstrom (1): arm: Correct build with CONFIG_SYS_HUSH_PARSER set
are available in the git repository at:
git://git.denx.de/u-boot-ti master
David Brownell (1): TI OMAP3 SDP3430: Initial Support
Nishanth Menon (4): OMAP3: export enable_gpmc_cs_config to board files OMAP3: fix warnings when NAND/ONENAND is not used OMAP3: Fix SDRC init TI OMAP3: make gpmc_config as const
Sandeep Paulraj (13): TI DaVinci DM355: Fix Compilation warning for DM355 EVM TI DaVinci DM365: Fix Compilation warning for DM365 EVM TI DaVinci DM646x: Adding initial support for DM6467 EVM TI: DaVinci: DM355 Leopard board support TI DaVinci: Maintainer for DM355 and DM365 EVM TI: OMAP3: Remove SZ_xx references TI DaVinci DM355: Add Config option for 64 bit Support TI DaVinci DM365: Add Config option for 64 bit Support TI DaVinci DVEVM: Add Config option for 64 bit Support TI DaVinci Sonata: Add Config option for 64 bit Support TI DaVinci: DM355 Leopard: Fix compilation warning TI DaVinci: Fix DM6467 EVM Compilation Warning TI DaVinci: Adding Copyright for DM365 EVM
Steve Sakoman (2): TI: OMAP3: Refactors the SM911x driver OMAP3: Update Overo and Beagle environment
Tom Rix (1): Zoom2 Fix serial gpmc setup
MAINTAINERS | 8 + MAKEALL | 3 + Makefile | 9 + board/davinci/dm355evm/dm355evm.c | 4 +- board/davinci/dm355leopard/Makefile | 52 ++++ board/davinci/dm355leopard/config.mk | 6 + board/davinci/dm355leopard/dm355leopard.c | 98 +++++++ board/davinci/dm365evm/dm365evm.c | 5 +- board/davinci/dm6467evm/Makefile | 52 ++++ board/davinci/dm6467evm/config.mk | 2 + board/davinci/dm6467evm/dm6467evm.c | 31 +++ board/logicpd/zoom2/zoom2.c | 5 +- board/ti/sdp3430/Makefile | 49 ++++ board/ti/sdp3430/config.mk | 33 +++ board/ti/sdp3430/sdp.c | 204 ++++++++++++++ board/ti/sdp3430/sdp.h | 417 +++++++++++++++++++++++++++++ cpu/arm_cortexa8/omap3/mem.c | 21 +- cpu/arm_cortexa8/omap3/sys_info.c | 2 +- drivers/net/smc911x.c | 12 +- include/asm-arm/arch-davinci/hardware.h | 2 + include/asm-arm/arch-omap3/cpu.h | 1 + include/asm-arm/arch-omap3/mem.h | 8 +- include/asm-arm/arch-omap3/sys_proto.h | 2 + include/configs/davinci_dm355evm.h | 1 + include/configs/davinci_dm355leopard.h | 162 +++++++++++ include/configs/davinci_dm365evm.h | 2 + include/configs/davinci_dm6467evm.h | 132 +++++++++ include/configs/davinci_dvevm.h | 1 + include/configs/davinci_sonata.h | 1 + include/configs/devkit8000.h | 15 +- include/configs/omap3_beagle.h | 42 ++-- include/configs/omap3_evm.h | 15 +- include/configs/omap3_overo.h | 42 ++-- include/configs/omap3_pandora.h | 15 +- include/configs/omap3_sdp3430.h | 369 +++++++++++++++++++++++++ include/configs/omap3_zoom1.h | 15 +- include/configs/omap3_zoom2.h | 15 +- 37 files changed, 1754 insertions(+), 99 deletions(-) create mode 100644 board/davinci/dm355leopard/Makefile create mode 100644 board/davinci/dm355leopard/config.mk create mode 100644 board/davinci/dm355leopard/dm355leopard.c create mode 100644 board/davinci/dm6467evm/Makefile create mode 100644 board/davinci/dm6467evm/config.mk create mode 100644 board/davinci/dm6467evm/dm6467evm.c create mode 100644 board/ti/sdp3430/Makefile create mode 100644 board/ti/sdp3430/config.mk create mode 100644 board/ti/sdp3430/sdp.c create mode 100644 board/ti/sdp3430/sdp.h create mode 100644 include/configs/davinci_dm355leopard.h create mode 100644 include/configs/davinci_dm6467evm.h create mode 100644 include/configs/omap3_sdp3430.h

s-paulraj@ti.com wrote:
Tom,
To the best of my knowledge, the final version of patches for new boards were submitted after the merge window ended but the initial versions were submitted before the merge window ended. Also there are fixes for various compilation warnings. This pull request will result in 1 new compliation warning. This is due to SDP 3430 using a deprecated NET driver. I beleive it is being worked on by Nishanth. Any patch from him will be on top of the existing SDP 3430 support.
Thanks, Sandeep
I have pulled this into arm/master-sync. Please check to see that all you expect is there. Tom
All the commits seem to be present. But we have a problem
You became the author of SDP 3430 :-) http://git.denx.de/?p=u-boot/u-boot-arm.git;a=commit;h=16964de6e32df6c044083...
The author is David Brownell
Thanks, Sandeep

Paulraj, Sandeep wrote:
s-paulraj@ti.com wrote:
Tom,
To the best of my knowledge, the final version of patches for new boards were submitted after the merge window ended but the initial versions were submitted before the merge window ended. Also there are fixes for various compilation warnings. This pull request will result in 1 new compliation warning. This is due to SDP 3430 using a deprecated NET driver. I beleive it is being worked on by Nishanth. Any patch from him will be on top of the existing SDP 3430 support.
Thanks, Sandeep
I have pulled this into arm/master-sync. Please check to see that all you expect is there. Tom
All the commits seem to be present. But we have a problem
You became the author of SDP 3430 :-) http://git.denx.de/?p=u-boot/u-boot-arm.git;a=commit;h=16964de6e32df6c044083...
The author is David Brownell
Ugh! The only thing I did was to fix a merge conflict. Tom
Thanks, Sandeep
participants (3)
-
Paulraj, Sandeep
-
s-paulraj@ti.com
-
Tom