Re: [PATCH] ARM: OMAP2: use early init hook

2011-02-14 Thread Tony Lindgren
* Tony Lindgren [110124 12:16]: > * Russell King - ARM Linux [110123 09:47]: > > On Sun, Jan 23, 2011 at 05:13:44PM +, Russell King - ARM Linux wrote: > > > Move non-mapping and non-irq initialization code out of .map_io and > > > .init_irq respectively into the new init_early hook. > > > >

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-26 Thread Russell King - ARM Linux
On Wed, Jan 26, 2011 at 10:11:03AM +0100, Uwe Kleine-König wrote: > On Wed, Jan 26, 2011 at 08:52:40AM +, Russell King - ARM Linux wrote: > > On Wed, Jan 26, 2011 at 09:46:13AM +0100, Uwe Kleine-König wrote: > > > Will you care for imx (mach-{mx*,imx}), too, or should I fix them up? > > > > Do

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-26 Thread Poddar, Sourav
On Wed, Jan 26, 2011 at 12:58 AM, Tony Lindgren wrote: > * Poddar, Sourav [110125 07:45]: >> >> Just FYI, I observed similar results on OMAP4 for these patches. >> For OMAP2420, OMAP2430 and OMAP3430 SDPs, you can add my boot >> Tested-by: Sourav Poddar > > Thanks, just posted third patch to this

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-26 Thread Uwe Kleine-König
On Wed, Jan 26, 2011 at 08:52:40AM +, Russell King - ARM Linux wrote: > On Wed, Jan 26, 2011 at 09:46:13AM +0100, Uwe Kleine-König wrote: > > Will you care for imx (mach-{mx*,imx}), too, or should I fix them up? > > Does mx stuff do non-irq setup or non-map_io stuff in those callbacks? the map

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-26 Thread Russell King - ARM Linux
On Wed, Jan 26, 2011 at 09:46:13AM +0100, Uwe Kleine-König wrote: > Will you care for imx (mach-{mx*,imx}), too, or should I fix them up? Does mx stuff do non-irq setup or non-map_io stuff in those callbacks? -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-26 Thread Uwe Kleine-König
Hello Russell, On Sun, Jan 23, 2011 at 05:13:44PM +, Russell King - ARM Linux wrote: > Move non-mapping and non-irq initialization code out of .map_io and > .init_irq respectively into the new init_early hook. > > Signed-off-by: Russell King > --- > I think I've updated this patch correctly

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-25 Thread Tony Lindgren
* Poddar, Sourav [110125 07:45]: > > Just FYI, I observed similar results on OMAP4 for these patches. > For OMAP2420, OMAP2430 and OMAP3430 SDPs, you can add my boot > Tested-by: Sourav Poddar Thanks, just posted third patch to this thread that fixes things for omap4, care to give that a try too

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-25 Thread Tony Lindgren
* Tony Lindgren [110124 18:20]: > * Russell King - ARM Linux [110124 13:51]: > > On Mon, Jan 24, 2011 at 12:26:29PM -0800, Tony Lindgren wrote: > > > * Tony Lindgren [110124 12:16]: > > > > > > > > So far tested on zoom3 only, but the following gets it booting > > > > on top of your patch. > >

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-25 Thread Poddar, Sourav
On Tue, Jan 25, 2011 at 1:47 AM, Tony Lindgren wrote: > * Russell King - ARM Linux [110123 09:47]: >> On Sun, Jan 23, 2011 at 05:13:44PM +, Russell King - ARM Linux wrote: >> > Move non-mapping and non-irq initialization code out of .map_io and >> > .init_irq respectively into the new init_ea

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-24 Thread Tony Lindgren
* Russell King - ARM Linux [110124 13:51]: > On Mon, Jan 24, 2011 at 12:26:29PM -0800, Tony Lindgren wrote: > > * Tony Lindgren [110124 12:16]: > > > > > > So far tested on zoom3 only, but the following gets it booting > > > on top of your patch. > > > > Looks like there are some other patches

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-24 Thread Russell King - ARM Linux
On Mon, Jan 24, 2011 at 12:26:29PM -0800, Tony Lindgren wrote: > * Tony Lindgren [110124 12:16]: > > > > So far tested on zoom3 only, but the following gets it booting > > on top of your patch. > > Looks like there are some other patches needed too.. At least > omap4 still fails with these. >Fr

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-24 Thread Tony Lindgren
* Tony Lindgren [110124 12:16]: > > So far tested on zoom3 only, but the following gets it booting > on top of your patch. Looks like there are some other patches needed too.. At least omap4 still fails with these. Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-24 Thread Tony Lindgren
* Russell King - ARM Linux [110123 09:12]: > Move non-mapping and non-irq initialization code out of .map_io and > .init_irq respectively into the new init_early hook. Nice :) > Signed-off-by: Russell King > --- > I think I've updated this patch correctly for the new platforms merged > into ma

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-24 Thread Tony Lindgren
* Russell King - ARM Linux [110123 09:47]: > On Sun, Jan 23, 2011 at 05:13:44PM +, Russell King - ARM Linux wrote: > > Move non-mapping and non-irq initialization code out of .map_io and > > .init_irq respectively into the new init_early hook. > > > > Signed-off-by: Russell King > > --- > >

Re: [PATCH] ARM: OMAP2: use early init hook

2011-01-23 Thread Russell King - ARM Linux
On Sun, Jan 23, 2011 at 05:13:44PM +, Russell King - ARM Linux wrote: > Move non-mapping and non-irq initialization code out of .map_io and > .init_irq respectively into the new init_early hook. > > Signed-off-by: Russell King > --- > I think I've updated this patch correctly for the new plat

[PATCH] ARM: OMAP2: use early init hook

2011-01-23 Thread Russell King - ARM Linux
Move non-mapping and non-irq initialization code out of .map_io and .init_irq respectively into the new init_early hook. Signed-off-by: Russell King --- I think I've updated this patch correctly for the new platforms merged into mainline. Please ensure that new platforms merged after this patch