From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aneesh V Date: Mon, 18 Jul 2011 19:02:11 +0530 Subject: [U-Boot] [PATCH v 0/5] arm: omap4: omap4460 support In-Reply-To: <1310833538-14438-1-git-send-email-aneesh@ti.com> References: <1310833538-14438-1-git-send-email-aneesh@ti.com> Message-ID: <4E2435DB.4070205@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Saturday 16 July 2011 09:55 PM, Aneesh V wrote: > OMAP4460 is the latest addition to the OMAP4 family. > OMAP4460 has dual core Cortex-A9 CPUs that can be clocked upto > 1.5 GHz > > The memory architecture has been improved to provide better > performance and there several other minor improvements in various > modules. Forgot to mention that this series depends on the OMAP4 spl series [1] and the SPL framework series [2] [1] http://marc.info/?l=u-boot&m=131082102506002&w=2 [2] http://marc.info/?l=u-boot&m=131056990001719&w=2 br, Aneesh > > Aneesh V (5): > omap4: add omap4460 revision detection > omap4: sdram init changes for omap4460 > omap: reuse omap3 gpio support in omap4 > omap4: support TPS programming > omap4: clock init support for omap4460 > > arch/arm/cpu/armv7/omap-common/Makefile | 1 + > arch/arm/cpu/armv7/{omap3 => omap-common}/gpio.c | 41 +++---- > arch/arm/cpu/armv7/omap3/Makefile | 1 - > arch/arm/cpu/armv7/omap3/board.c | 12 ++ > arch/arm/cpu/armv7/omap4/board.c | 19 +++ > arch/arm/cpu/armv7/omap4/clocks.c | 128 +++++++++++++++++++--- > arch/arm/cpu/armv7/omap4/emif.c | 39 ++++--- > arch/arm/include/asm/arch-omap3/cpu.h | 26 +++++ > arch/arm/include/asm/arch-omap3/gpio.h | 86 --------------- > arch/arm/include/asm/arch-omap4/clocks.h | 28 +++++- > arch/arm/include/asm/arch-omap4/cpu.h | 26 +++++ > arch/arm/include/asm/arch-omap4/emif.h | 10 ++- > arch/arm/include/asm/arch-omap4/mux_omap4.h | 1 + > arch/arm/include/asm/arch-omap4/omap4.h | 9 ++ > arch/arm/include/asm/armv7.h | 1 + > 15 files changed, 281 insertions(+), 147 deletions(-) > rename arch/arm/cpu/armv7/{omap3 => omap-common}/gpio.c (76%) > delete mode 100644 arch/arm/include/asm/arch-omap3/gpio.h >