aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/dm646x.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-04-30 20:35:48 -0400
committerKevin Hilman <khilman@deeprootsystems.com>2009-05-28 18:18:12 -0400
commit0d04eb47054f685b23033ed6ceadfb20db77c5b3 (patch)
tree3a3de44b01ac71a80f970ddf80f8d1ca28c3e2f6 /arch/arm/mach-davinci/dm646x.c
parentb79dbdefd2be0980c58b5e36fdc23eb14a7caab4 (diff)
davinci: soc-specific SRAM setup
Package on-chip SRAM. It's always accessible from the ARM, so set up a standardized virtual address mapping into a 128 KiB area that's reserved for platform use. In some cases (dm6467) the physical addresses used for EDMA are not the same as the ones used by the ARM ... so record that info separately in the SOC data, for chips (unlike the OMAP-L137) where SRAM may be used with EDMA. Other blocks of SRAM, such as the ETB buffer or DSP L1/L2 RAM, may be unused/available on some system. They are ignored here. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm646x.c')
-rw-r--r--arch/arm/mach-davinci/dm646x.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c
index 12189c737a3b..334f0711e0f5 100644
--- a/arch/arm/mach-davinci/dm646x.c
+++ b/arch/arm/mach-davinci/dm646x.c
@@ -518,6 +518,13 @@ static struct map_desc dm646x_io_desc[] = {
518 .length = IO_SIZE, 518 .length = IO_SIZE,
519 .type = MT_DEVICE 519 .type = MT_DEVICE
520 }, 520 },
521 {
522 .virtual = SRAM_VIRT,
523 .pfn = __phys_to_pfn(0x00010000),
524 .length = SZ_32K,
525 /* MT_MEMORY_NONCACHED requires supersection alignment */
526 .type = MT_DEVICE,
527 },
521}; 528};
522 529
523/* Contents of JTAG ID register used to identify exact cpu type */ 530/* Contents of JTAG ID register used to identify exact cpu type */
@@ -608,6 +615,8 @@ static struct davinci_soc_info davinci_soc_info_dm646x = {
608 .gpio_irq = IRQ_DM646X_GPIOBNK0, 615 .gpio_irq = IRQ_DM646X_GPIOBNK0,
609 .serial_dev = &dm646x_serial_device, 616 .serial_dev = &dm646x_serial_device,
610 .emac_pdata = &dm646x_emac_pdata, 617 .emac_pdata = &dm646x_emac_pdata,
618 .sram_dma = 0x10010000,
619 .sram_len = SZ_32K,
611}; 620};
612 621
613void __init dm646x_init(void) 622void __init dm646x_init(void)