aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-omap2/io.c')
-rw-r--r--arch/arm/mach-omap2/io.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c
index a0728c33e5d9..59458642e9eb 100644
--- a/arch/arm/mach-omap2/io.c
+++ b/arch/arm/mach-omap2/io.c
@@ -40,9 +40,21 @@ static struct map_desc omap2_io_desc[] __initdata = {
40 .type = MT_DEVICE 40 .type = MT_DEVICE
41 }, 41 },
42 { 42 {
43 .virtual = L4_24XX_VIRT, 43 .virtual = DSP_MEM_24XX_VIRT,
44 .pfn = __phys_to_pfn(L4_24XX_PHYS), 44 .pfn = __phys_to_pfn(DSP_MEM_24XX_PHYS),
45 .length = L4_24XX_SIZE, 45 .length = DSP_MEM_24XX_SIZE,
46 .type = MT_DEVICE
47 },
48 {
49 .virtual = DSP_IPI_24XX_VIRT,
50 .pfn = __phys_to_pfn(DSP_IPI_24XX_PHYS),
51 .length = DSP_IPI_24XX_SIZE,
52 .type = MT_DEVICE
53 },
54 {
55 .virtual = DSP_MMU_24XX_VIRT,
56 .pfn = __phys_to_pfn(DSP_MMU_24XX_PHYS),
57 .length = DSP_MMU_24XX_SIZE,
46 .type = MT_DEVICE 58 .type = MT_DEVICE
47 } 59 }
48}; 60};