
The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502: Wolfgang Denk (1): Merge branch 'master' of /home/wd/git/u-boot/custodians
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
Grazvydas Ignotas (1): OMAP3: pandora: fix booting without serial attached
Nick Thompson (3): TI Davinci timer.c: Remove volatiles and memory mapped structures TI Davinci: add a pin multiplexer configuration API Add TI DA8xx support: DA8xx includes
Nishanth Menon (3): OMAP3:SDRC: Cleanup references to SDP OMAP3:SDRC: introduce DDR types OMAP3: Fix SDRC init
Sandeep Paulraj (1): TI DaVinci DM646x: Enable NAND on DM6467 EVM
Sekhar Nori (3): TI DA8xx: Add DA8xx cpu functions TI DA8xx: Add new directory for da830evm board TI DA8xx: Integrate DA830 EVM support into U-Boot
MAINTAINERS | 4 + MAKEALL | 1 + Makefile | 3 + board/davinci/common/misc.c | 48 ++++++- board/davinci/common/misc.h | 12 ++ board/davinci/da830evm/Makefile | 51 +++++++ board/davinci/da830evm/config.mk | 43 ++++++ board/davinci/da830evm/da830evm.c | 127 ++++++++++++++++ board/davinci/dm6467evm/dm6467evm.c | 11 ++ board/pandora/pandora.h | 3 +- cpu/arm926ejs/davinci/cpu.c | 50 ++++++- cpu/arm926ejs/davinci/psc.c | 43 +++++- cpu/arm926ejs/davinci/timer.c | 28 ++-- cpu/arm_cortexa8/omap3/mem.c | 5 +- cpu/arm_cortexa8/omap3/sys_info.c | 2 +- include/asm-arm/arch-davinci/hardware.h | 237 ++++++++++++++++++++++++++++++ include/asm-arm/arch-davinci/i2c_defs.h | 5 + include/asm-arm/arch-omap3/cpu.h | 1 + include/asm-arm/arch-omap3/mem.h | 98 +++++++++---- include/common.h | 3 + include/configs/da830evm.h | 243 +++++++++++++++++++++++++++++++ include/configs/devkit8000.h | 3 + include/configs/omap3_beagle.h | 3 + include/configs/omap3_evm.h | 3 + include/configs/omap3_overo.h | 3 + include/configs/omap3_pandora.h | 3 + include/configs/omap3_sdp3430.h | 3 + include/configs/omap3_zoom1.h | 3 + include/configs/omap3_zoom2.h | 3 + 29 files changed, 988 insertions(+), 54 deletions(-) create mode 100644 board/davinci/da830evm/Makefile create mode 100644 board/davinci/da830evm/config.mk create mode 100644 board/davinci/da830evm/da830evm.c create mode 100644 include/configs/da830evm.h