diff options
author | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2009-10-19 17:25:57 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-10-19 17:25:57 -0700 |
commit | f5d2d659450f8e68675124b879e7de82600b77ba (patch) | |
tree | 199f30ee76b270c758df4d72e712e0d04ef45883 /arch/arm/mach-omap2/io.c | |
parent | b4224b236b0325ae678fa6b70bd3798dbd93a475 (diff) | |
download | blackbird-obmc-linux-f5d2d659450f8e68675124b879e7de82600b77ba.tar.gz blackbird-obmc-linux-f5d2d659450f8e68675124b879e7de82600b77ba.zip |
omap: Add OMAP4 L3 and L4 peripherals.
This patch adds few necessary peripherals for OMAP4.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/io.c')
-rw-r--r-- | arch/arm/mach-omap2/io.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index e3a3bad1d84f..fc629532db62 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c @@ -203,6 +203,24 @@ static struct map_desc omap44xx_io_desc[] __initdata = { .type = MT_DEVICE, }, { + .virtual = OMAP44XX_EMIF1_VIRT, + .pfn = __phys_to_pfn(OMAP44XX_EMIF1_PHYS), + .length = OMAP44XX_EMIF1_SIZE, + .type = MT_DEVICE, + }, + { + .virtual = OMAP44XX_EMIF2_VIRT, + .pfn = __phys_to_pfn(OMAP44XX_EMIF2_PHYS), + .length = OMAP44XX_EMIF2_SIZE, + .type = MT_DEVICE, + }, + { + .virtual = OMAP44XX_DMM_VIRT, + .pfn = __phys_to_pfn(OMAP44XX_DMM_PHYS), + .length = OMAP44XX_DMM_SIZE, + .type = MT_DEVICE, + }, + { .virtual = L4_PER_44XX_VIRT, .pfn = __phys_to_pfn(L4_PER_44XX_PHYS), .length = L4_PER_44XX_SIZE, |