aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/dm355.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-davinci/dm355.c')
-rw-r--r--arch/arm/mach-davinci/dm355.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c
index 893d5ba21d5f..baaaf328de2e 100644
--- a/arch/arm/mach-davinci/dm355.c
+++ b/arch/arm/mach-davinci/dm355.c
@@ -613,6 +613,13 @@ static struct map_desc dm355_io_desc[] = {
613 .length = IO_SIZE, 613 .length = IO_SIZE,
614 .type = MT_DEVICE 614 .type = MT_DEVICE
615 }, 615 },
616 {
617 .virtual = SRAM_VIRT,
618 .pfn = __phys_to_pfn(0x00010000),
619 .length = SZ_32K,
620 /* MT_MEMORY_NONCACHED requires supersection alignment */
621 .type = MT_DEVICE,
622 },
616}; 623};
617 624
618/* Contents of JTAG ID register used to identify exact cpu type */ 625/* Contents of JTAG ID register used to identify exact cpu type */
@@ -702,6 +709,8 @@ static struct davinci_soc_info davinci_soc_info_dm355 = {
702 .gpio_num = 104, 709 .gpio_num = 104,
703 .gpio_irq = IRQ_DM355_GPIOBNK0, 710 .gpio_irq = IRQ_DM355_GPIOBNK0,
704 .serial_dev = &dm355_serial_device, 711 .serial_dev = &dm355_serial_device,
712 .sram_dma = 0x00010000,
713 .sram_len = SZ_32K,
705}; 714};
706 715
707void __init dm355_init(void) 716void __init dm355_init(void)