[U-Boot] [PATCH 0/3] Add Support for AM3517EVM with EMIF4

From: Vaibhav Hiremath hvaibhav@ti.com
AM3517 device is high-performance, industrial applications processor designed and developed keeping Software Compatible with OMAP3 Processors.
Differances :- =========== - The SDRC controller has been replaced with EMIF4. - Some new IP's got added like, CAN, VPFE, etc... - Removed ISP completely
This patch series adds support for AM3517EVM along with EMIF4 configuration.
Tested :- =========== - OMAP3 EVM (both NAND and MMC boot mode) - OMAP3 BEAGLE (MMC boot mode) - AM3517 EVM (both NAND and MMC boot mode)
Below are some of the useful links :- =========== AM3517 device is high-performance, industrial applications processor designed and developed keeping Software Compatible with OMAP3 Processors.
Below are some of the useful links -
Migration from OMAP35x to AM35x :- http://focus.ti.com/lit/an/sprab91/sprab91.pdf
Specs/TRM :- http://focus.ti.com/docs/prod/folders/print/am3517.html
EVM Link -: http://www.logicpd.com/products/development-kits/zoom-am3517-experimenter-ki...
Vaibhav Hiremath (3): OMAP3: Consolidate SDRC related operations AM35x: Add support for AM3517EVM AM35x: Add support for EMIF4
MAINTAINERS | 4 + Makefile | 3 + board/ti/am3517evm/Makefile | 47 ++++ board/ti/am3517evm/am3517evm.c | 76 ++++++ board/ti/am3517evm/am3517evm.h | 400 ++++++++++++++++++++++++++++++++ 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 | 160 +++++++++++++ cpu/arm_cortexa8/omap3/mem.c | 90 ------- cpu/arm_cortexa8/omap3/sdrc.c | 186 +++++++++++++++ cpu/arm_cortexa8/omap3/sys_info.c | 42 +---- include/asm-arm/arch-omap3/cpu.h | 26 ++ include/asm-arm/arch-omap3/emif4.h | 77 ++++++ 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 | 293 +++++++++++++++++++++++ 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 + 25 files changed, 1387 insertions(+), 166 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

-----Original Message----- From: Hiremath, Vaibhav Sent: Saturday, January 30, 2010 3:47 PM To: u-boot@lists.denx.de Cc: Paulraj, Sandeep; Tom.Rix@windriver.com; Hiremath, Vaibhav Subject: [PATCH 0/3] Add Support for AM3517EVM with EMIF4
From: Vaibhav Hiremath hvaibhav@ti.com
AM3517 device is high-performance, industrial applications processor designed and developed keeping Software Compatible with OMAP3 Processors.
Differances :-
- The SDRC controller has been replaced with EMIF4.
- Some new IP's got added like, CAN, VPFE, etc...
- Removed ISP completely
This patch series adds support for AM3517EVM along with EMIF4 configuration.
Tested :-
- OMAP3 EVM (both NAND and MMC boot mode)
- OMAP3 BEAGLE (MMC boot mode)
- AM3517 EVM (both NAND and MMC boot mode)
Below are some of the useful links :-
AM3517 device is high-performance, industrial applications processor designed and developed keeping Software Compatible with OMAP3 Processors.
Below are some of the useful links -
Migration from OMAP35x to AM35x :- http://focus.ti.com/lit/an/sprab91/sprab91.pdf
Specs/TRM :- http://focus.ti.com/docs/prod/folders/print/am3517.html
EVM Link -: http://www.logicpd.com/products/development-kits/zoom-am3517- experimenter-kit
Vaibhav Hiremath (3): OMAP3: Consolidate SDRC related operations AM35x: Add support for AM3517EVM AM35x: Add support for EMIF4
[Hiremath, Vaibhav] Sandeep,
Can you please merge these series of patches for next window?
Thanks, Vaibhav
MAINTAINERS | 4 + Makefile | 3 + board/ti/am3517evm/Makefile | 47 ++++ board/ti/am3517evm/am3517evm.c | 76 ++++++ board/ti/am3517evm/am3517evm.h | 400 ++++++++++++++++++++++++++++++++ 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 | 160 +++++++++++++ cpu/arm_cortexa8/omap3/mem.c | 90 ------- cpu/arm_cortexa8/omap3/sdrc.c | 186 +++++++++++++++ cpu/arm_cortexa8/omap3/sys_info.c | 42 +---- include/asm-arm/arch-omap3/cpu.h | 26 ++ include/asm-arm/arch-omap3/emif4.h | 77 ++++++ 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 | 293 +++++++++++++++++++++++ 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 + 25 files changed, 1387 insertions(+), 166 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

Hiremath, Vaibhav wrote:
-----Original Message----- From: Hiremath, Vaibhav Sent: Saturday, January 30, 2010 3:47 PM To: u-boot@lists.denx.de Cc: Paulraj, Sandeep; Tom.Rix@windriver.com; Hiremath, Vaibhav Subject: [PATCH 0/3] Add Support for AM3517EVM with EMIF4
From: Vaibhav Hiremath hvaibhav@ti.com
<snip>
[Hiremath, Vaibhav] Sandeep,
Can you please merge these series of patches for next window?
This patchset still needs to be reviewed. I will post my review this weekend. Tom

-----Original Message----- From: Tom [mailto:Tom.Rix@windriver.com] Sent: Wednesday, February 03, 2010 6:54 PM To: Hiremath, Vaibhav Cc: u-boot@lists.denx.de; Paulraj, Sandeep Subject: Re: [PATCH 0/3] Add Support for AM3517EVM with EMIF4
Hiremath, Vaibhav wrote:
-----Original Message----- From: Hiremath, Vaibhav Sent: Saturday, January 30, 2010 3:47 PM To: u-boot@lists.denx.de Cc: Paulraj, Sandeep; Tom.Rix@windriver.com; Hiremath, Vaibhav Subject: [PATCH 0/3] Add Support for AM3517EVM with EMIF4
From: Vaibhav Hiremath hvaibhav@ti.com
<snip>
[Hiremath, Vaibhav] Sandeep,
Can you please merge these series of patches for next window?
This patchset still needs to be reviewed. I will post my review this weekend.
[Hiremath, Vaibhav] Review comments are always welcomed. Since this is second version and we haven't had any comments last time. I requested to merge.
Looking forward for your comments.
Thanks, Vaibhav
Tom
participants (3)
-
Hiremath, Vaibhav
-
hvaibhav@ti.com
-
Tom