
Hi,
In this patchset I tried to put everything from the discussion in http://lists.denx.de/pipermail/u-boot/2012-January/115212.html
Although this is the first version of this patchset, the version number is v5 since Sughosh's patches were already v4.
Regards, Christian
Christian Riesch (5): arm, davinci: Add lowlevel_init for SoCs other than DM644X arm, arm926ejs: Do cpu critical inits only for boards that require it arm, arm926ejs: Do not clear the V bit on DA850 SoCs arm, arm926ejs: Enable icache only if CONFIG_SYS_ICACHE_OFF is not defined arm, davinci: Add support for the Calimain board from OMICRON electronics
Sughosh Ganu (2): arm, arm926ejs: Flush the data cache before disabling it Changes to move hawkboard to the new spl infrastructure
MAINTAINERS | 5 + arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c | 24 +- arch/arm/cpu/arm926ejs/davinci/lowlevel_init.S | 4 + arch/arm/cpu/arm926ejs/davinci/spl.c | 4 +- arch/arm/cpu/arm926ejs/start.S | 26 +- arch/arm/include/asm/arch-davinci/da850_lowlevel.h | 9 + board/davinci/da8xxevm/da850evm.c | 4 +- board/davinci/da8xxevm/hawkboard.c | 23 ++ board/davinci/da8xxevm/hawkboard_nand_spl.c | 115 ------- .../{u-boot-spl.lds => u-boot-spl-da850evm.lds} | 0 .../davinci/da8xxevm/u-boot-spl-hawk.lds | 22 +- board/enbw/enbw_cmc/enbw_cmc.c | 13 +- board/omicron/calimain/Makefile | 45 +++ board/omicron/calimain/calimain.c | 188 ++++++++++ boards.cfg | 2 +- doc/README.hawkboard | 43 ++-- include/configs/calimain.h | 362 ++++++++++++++++++++ include/configs/cam_enc_4xx.h | 6 - include/configs/da850evm.h | 6 +- include/configs/enbw_cmc.h | 5 +- include/configs/hawkboard.h | 23 +- nand_spl/board/davinci/da8xxevm/Makefile | 155 --------- 22 files changed, 738 insertions(+), 346 deletions(-) delete mode 100644 board/davinci/da8xxevm/hawkboard_nand_spl.c rename board/davinci/da8xxevm/{u-boot-spl.lds => u-boot-spl-da850evm.lds} (100%) rename nand_spl/board/davinci/da8xxevm/u-boot.lds => board/davinci/da8xxevm/u-boot-spl-hawk.lds (86%) create mode 100644 board/omicron/calimain/Makefile create mode 100644 board/omicron/calimain/calimain.c create mode 100644 include/configs/calimain.h delete mode 100644 nand_spl/board/davinci/da8xxevm/Makefile