
From: Sanjeev Premi premi@ti.com
This patch-set adds support for the AM3517EVM based on the AM35x processor from Texas Instruments. This required following changes: - Consolidating all SDRC related code in one file. - Adding support for EMIF4 interface - Basic code for supporting AM3517EVM
Vaibhav Hiremath (3): omap3: Consolidate SDRC related operations AM35x: Add support for AM3517EVM AM35x: Add support for EMIF4
Makefile | 3 + board/ti/am3517evm/Makefile | 47 ++++ board/ti/am3517evm/am3517evm.c | 76 ++++++ board/ti/am3517evm/am3517evm.h | 398 ++++++++++++++++++++++++++++++++ board/ti/am3517evm/config.mk | 29 +++ cpu/arm_cortexa8/omap3/Makefile | 6 + cpu/arm_cortexa8/omap3/board.c | 34 +--- cpu/arm_cortexa8/omap3/emif4.c | 161 +++++++++++++ cpu/arm_cortexa8/omap3/mem.c | 70 ------ cpu/arm_cortexa8/omap3/sdrc.c | 169 ++++++++++++++ cpu/arm_cortexa8/omap3/sys_info.c | 42 +---- include/asm-arm/arch-omap3/cpu.h | 26 ++ include/asm-arm/arch-omap3/emif4.h | 76 ++++++ include/asm-arm/arch-omap3/mem.h | 24 ++ include/asm-arm/arch-omap3/mux.h | 35 +++ include/asm-arm/arch-omap3/sys_proto.h | 7 +- include/configs/am3517_evm.h | 294 +++++++++++++++++++++++ include/configs/omap3_beagle.h | 2 + include/configs/omap3_evm.h | 2 + include/configs/omap3_overo.h | 2 + include/configs/omap3_pandora.h | 2 + include/configs/omap3_sdp3430.h | 2 + include/configs/omap3_zoom1.h | 2 + include/configs/omap3_zoom2.h | 2 + 24 files changed, 1365 insertions(+), 146 deletions(-) create mode 100644 board/ti/am3517evm/Makefile create mode 100644 board/ti/am3517evm/am3517evm.c create mode 100644 board/ti/am3517evm/am3517evm.h create mode 100644 board/ti/am3517evm/config.mk create mode 100644 cpu/arm_cortexa8/omap3/emif4.c create mode 100644 cpu/arm_cortexa8/omap3/sdrc.c create mode 100644 include/asm-arm/arch-omap3/emif4.h create mode 100644 include/configs/am3517_evm.h