From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Shilimkar, Santosh" Subject: RE: linux-omap git tree updated to v2.6.32-rc1, important changes, please read Date: Tue, 29 Sep 2009 16:24:13 +0530 Message-ID: References: <20090928190404.GE18957@atomide.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT Return-path: Received: from arroyo.ext.ti.com ([192.94.94.40]:39170 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752324AbZI2KyO convert rfc822-to-8bit (ORCPT ); Tue, 29 Sep 2009 06:54:14 -0400 In-Reply-To: <20090928190404.GE18957@atomide.com> Content-Language: en-US Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Tony Lindgren Cc: "linux-omap@vger.kernel.org" Tony, > -----Original Message----- > From: linux-omap-owner@vger.kernel.org [mailto:linux-omap- > owner@vger.kernel.org] On Behalf Of Tony Lindgren > Sent: Tuesday, September 29, 2009 12:34 AM > To: linux-omap@vger.kernel.org > Subject: linux-omap git tree updated to v2.6.32-rc1, important changes, > please read > > Hi all, > > I've updated our linux-omap tree to v2.6.32-rc1. I've also > added a branch omap-2.6.31 for the old code. > > This time I also nuked the remaining omap legacy code we > still had lurking around :) The commits at the end of this > mail describe what I did first as commits, then I merged > everything to be the same as the mainline v2.6.32-rc1. > > So currently the linux-omap master branch is: > > v2.6.32-rc1 + omap-fixes + ehci + cbus > > The new model is that I'll be resetting the linux-omap master > branch to mainline at each -rc, then merge in our various > upstream queues back in again. > > Please note that "Remove omap extra version in Makefile" > commit means that you now need to set the ARCH and CROSS_COMPILE > for your compiler. > > The good news is that now you can pull in the linux-omap master > branch into any Linux kernel tree without messing up the other > architectures. > > Also note that "Remove DEBUG_LL hack to printk" means that > in order to get DEBUG_LL working, you need to patch printk.c > yourself. You can find the patch in the omap-debug branch. > > As always, if something important got thrown out, please > send patches against the mainline tree to patch back in > the missing functionality! Thanks for fixing the OMAP4 compilation issues. We need below patch to make the kernel boot on OMAP4430 on the latest LO master. >>From d9a22d9f7b68b99aa9607bdab377d998dfe82acd Mon Sep 17 00:00:00 2001 From: Santosh Shilimkar Date: Tue, 29 Sep 2009 16:10:46 +0530 Subject: [PATCH] ARM: OMAP4: Allow omap_serial_early_init() for OMAP4430 board This patch enables omap_serial_early_init() function for OMAP4430 SDP. Without this the bootup would throw opps in omap_serial_init(). Additionally the patch removed the merge issue for the UART4. Signed-off-by: Santosh Shilimkar --- arch/arm/mach-omap2/board-4430sdp.c | 4 ++-- arch/arm/mach-omap2/io.c | 2 ++ arch/arm/mach-omap2/serial.c | 10 ---------- 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c index eb37c40..609a5a4 100644 --- a/arch/arm/mach-omap2/board-4430sdp.c +++ b/arch/arm/mach-omap2/board-4430sdp.c @@ -58,6 +58,8 @@ static void __init gic_init_irq(void) static void __init omap_4430sdp_init_irq(void) { + omap_board_config = sdp4430_config; + omap_board_config_size = ARRAY_SIZE(sdp4430_config); omap2_init_common_hw(NULL, NULL); #ifdef CONFIG_OMAP_32K_TIMER omap2_gp_clockevent_set_gptimer(1); @@ -70,8 +72,6 @@ static void __init omap_4430sdp_init_irq(void) static void __init omap_4430sdp_init(void) { platform_add_devices(sdp4430_devices, ARRAY_SIZE(sdp4430_devices)); - omap_board_config = sdp4430_config; - omap_board_config_size = ARRAY_SIZE(sdp4430_config); omap_serial_init(); } diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index e3a3bad..56be87d 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c @@ -302,7 +302,9 @@ void __init omap2_init_common_hw(struct omap_sdrc_params *sdrc_cs0, pwrdm_init(powerdomains_omap); clkdm_init(clockdomains_omap, clkdm_pwrdm_autodeps); omap2_clk_init(); +#endif omap_serial_early_init(); +#ifndef CONFIG_ARCH_OMAP4 omap_hwmod_late_init(); omap_pm_if_init(); omap2_sdrc_init(sdrc_cs0, sdrc_cs1); diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index ae21868..54dfeb5 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c @@ -109,16 +109,6 @@ static struct plat_serial8250_port serial_platform_data2[] = { .regshift = 2, .uartclk = OMAP24XX_BASE_BAUD * 16, }, { -#ifdef CONFIG_ARCH_OMAP4 - .membase = OMAP2_IO_ADDRESS(OMAP_UART4_BASE), - .mapbase = OMAP_UART4_BASE, - .irq = 70, - .flags = UPF_BOOT_AUTOCONF, - .iotype = UPIO_MEM, - .regshift = 2, - .uartclk = OMAP24XX_BASE_BAUD * 16, - }, { -#endif .flags = 0 } }; -- 1.5.4.7 Regards, Santosh