Commit 070a73d4 authored by Olav Kongas's avatar Olav Kongas Committed by Tony Lindgren

[PATCH] ARM: OMAP: [PATCH] IO mappings for omap16xx chips

Here comes the updated patch, extending the mapping for all
16xx omap chips and combining the identical mapping for
5912.

Patch modified to test for 16xx only. Also renamed omap1610_io_desc
to omap16xx_io_desc.
parent 300d8fdd
...@@ -44,12 +44,7 @@ static struct map_desc omap1510_io_desc[] __initdata = { ...@@ -44,12 +44,7 @@ static struct map_desc omap1510_io_desc[] __initdata = {
#endif #endif
#if defined(CONFIG_ARCH_OMAP16XX) #if defined(CONFIG_ARCH_OMAP16XX)
static struct map_desc omap1610_io_desc[] __initdata = { static struct map_desc omap16xx_io_desc[] __initdata = {
{ OMAP16XX_DSP_BASE, OMAP16XX_DSP_START, OMAP16XX_DSP_SIZE, MT_DEVICE },
{ OMAP16XX_DSPREG_BASE, OMAP16XX_DSPREG_START, OMAP16XX_DSPREG_SIZE, MT_DEVICE },
};
static struct map_desc omap5912_io_desc[] __initdata = {
{ OMAP16XX_DSP_BASE, OMAP16XX_DSP_START, OMAP16XX_DSP_SIZE, MT_DEVICE }, { OMAP16XX_DSP_BASE, OMAP16XX_DSP_START, OMAP16XX_DSP_SIZE, MT_DEVICE },
{ OMAP16XX_DSPREG_BASE, OMAP16XX_DSPREG_START, OMAP16XX_DSPREG_SIZE, MT_DEVICE }, { OMAP16XX_DSPREG_BASE, OMAP16XX_DSPREG_START, OMAP16XX_DSPREG_SIZE, MT_DEVICE },
}; };
...@@ -77,11 +72,8 @@ static void __init _omap_map_io(void) ...@@ -77,11 +72,8 @@ static void __init _omap_map_io(void)
} }
#endif #endif
#if defined(CONFIG_ARCH_OMAP16XX) #if defined(CONFIG_ARCH_OMAP16XX)
if (cpu_is_omap1610() || cpu_is_omap1710()) { if (cpu_is_omap16xx()) {
iotable_init(omap1610_io_desc, ARRAY_SIZE(omap1610_io_desc)); iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc));
}
if (cpu_is_omap5912()) {
iotable_init(omap5912_io_desc, ARRAY_SIZE(omap5912_io_desc));
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment