mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
OMAP: GPIO: Make omap_gpio_show_rev bank specific
Otherwise GPIO init on 16xx may try to access uninitialized GPIO bank as the MPUIO bank does not have a revision register. Acked-by: Kevin Hilman <khilman@deeprootsystems.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
2fae7fbed0
commit
9a748053f5
@ -1694,16 +1694,16 @@ static struct clk * gpio5_fck;
|
||||
static struct clk *gpio_iclks[OMAP34XX_NR_GPIOS];
|
||||
#endif
|
||||
|
||||
static void __init omap_gpio_show_rev(void)
|
||||
static void __init omap_gpio_show_rev(struct gpio_bank *bank)
|
||||
{
|
||||
u32 rev;
|
||||
|
||||
if (cpu_is_omap16xx())
|
||||
rev = __raw_readw(gpio_bank[1].base + OMAP1610_GPIO_REVISION);
|
||||
if (cpu_is_omap16xx() && !(bank->method != METHOD_MPUIO))
|
||||
rev = __raw_readw(bank->base + OMAP1610_GPIO_REVISION);
|
||||
else if (cpu_is_omap24xx() || cpu_is_omap34xx())
|
||||
rev = __raw_readl(gpio_bank[0].base + OMAP24XX_GPIO_REVISION);
|
||||
rev = __raw_readl(bank->base + OMAP24XX_GPIO_REVISION);
|
||||
else if (cpu_is_omap44xx())
|
||||
rev = __raw_readl(gpio_bank[0].base + OMAP4_GPIO_REVISION);
|
||||
rev = __raw_readl(bank->base + OMAP4_GPIO_REVISION);
|
||||
else
|
||||
return;
|
||||
|
||||
@ -1963,7 +1963,7 @@ static int __init _omap_gpio_init(void)
|
||||
}
|
||||
}
|
||||
|
||||
omap_gpio_show_rev();
|
||||
omap_gpio_show_rev(bank);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user