> -----Original Message----- > From: Tony Lindgren [mailto:tony@xxxxxxxxxxx] > Sent: Tuesday, January 26, 2010 9:16 PM > To: Shilimkar, Santosh > Cc: linux-omap@xxxxxxxxxxxxxxx; Kevin Hilman > Subject: Re: [PATCH] OMAP2/3/4: ioremap address space > > * Santosh Shilimkar <santosh.shilimkar@xxxxxx> [100126 00:37]: > > This patch update the sdrc, prcm, tap and control module to > > allocate iospace dynamically > > > > Signed-off-by: Santosh Shilimkar <santosh.shilimkar@xxxxxx> > > CC: Kevin Hilman <khilman@xxxxxxxxxxxxxxxxxxx> > > CC: Tony Lindgren <tony@xxxxxxxxxxx> > > --- > > arch/arm/mach-omap2/control.c | 6 +++++- > > arch/arm/mach-omap2/id.c | 7 ++++++- > > arch/arm/mach-omap2/prcm.c | 16 +++++++++++++--- > > arch/arm/mach-omap2/sdrc.c | 11 +++++++++-- > > 4 files changed, 33 insertions(+), 7 deletions(-) > > > > diff --git a/arch/arm/mach-omap2/control.c b/arch/arm/mach-omap2/control.c > > index cdd1f35..43f8a33 100644 > > --- a/arch/arm/mach-omap2/control.c > > +++ b/arch/arm/mach-omap2/control.c > > @@ -140,7 +140,11 @@ static struct omap3_control_regs control_context; > > > > void __init omap2_set_globals_control(struct omap_globals *omap2_globals) > > { > > - omap2_ctrl_base = omap2_globals->ctrl; > > + /* Static mapping, never released */ > > + if (omap2_globals->ctrl) { > > + omap2_ctrl_base = ioremap(omap2_globals->ctrl, SZ_4K); > > + WARN_ON(!omap2_ctrl_base); > > + } > > } > > > > void __iomem *omap_ctrl_base_get(void) > > diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c > > index a091b53..fb5921b 100644 > > --- a/arch/arm/mach-omap2/id.c > > +++ b/arch/arm/mach-omap2/id.c > > @@ -407,7 +407,12 @@ void __init omap2_check_revision(void) > > void __init omap2_set_globals_tap(struct omap_globals *omap2_globals) > > { > > omap_revision = omap2_globals->class; > > - tap_base = omap2_globals->tap; > > + > > + /* Static mapping, never released */ > > + if (omap2_globals->tap) { > > + tap_base = ioremap(omap2_globals->tap, SZ_4K); > > + WARN_ON(!tap_base); > > + } > > > > if (cpu_is_omap34xx()) > > tap_prod_id = 0x0210; > > Nice clean-up. > > We need to check carefully that the cpu detection is done by the time > we do the ioremap.. Initially we only know the machine class such as > 34xx/24xx. Machine class is good enough to select the correct omap_global descriptor. Isn't it ? > We have at least cpu_is_omap2420 and cpu_is_omap2430 being used in io.c, > so all these mappings may not work properly. > > Also, we should merge this as one patch to keep the system booting > between the patches. Git bisect would be problem. We can merge them together. Regards, Santosh -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html