Commit 60cd02e1 authored by Sekhar Nori's avatar Sekhar Nori Committed by Kevin Hilman

davinci: da850/omap-l138: create static map for SRAM

Create static map for internal SRAM and populate SRAM base
and size in soc_info structure to allow SRAM allocation
functions from arch/arm/mach-davinci/sram.c to work.

On DA850 SRAM is used for suspend-to-RAM implementation
in places where DDR2 cannot be accessed as its clocks are
stopped.
Signed-off-by: default avatarSekhar Nori <nsekhar@ti.com>
Signed-off-by: default avatarKevin Hilman <khilman@deeprootsystems.com>
parent 7aad472b
...@@ -771,6 +771,12 @@ static struct map_desc da850_io_desc[] = { ...@@ -771,6 +771,12 @@ static struct map_desc da850_io_desc[] = {
.length = DA8XX_CP_INTC_SIZE, .length = DA8XX_CP_INTC_SIZE,
.type = MT_DEVICE .type = MT_DEVICE
}, },
{
.virtual = SRAM_VIRT,
.pfn = __phys_to_pfn(DA8XX_ARM_RAM_BASE),
.length = SZ_8K,
.type = MT_DEVICE
},
}; };
static void __iomem *da850_psc_bases[] = { static void __iomem *da850_psc_bases[] = {
...@@ -1044,6 +1050,8 @@ static struct davinci_soc_info davinci_soc_info_da850 = { ...@@ -1044,6 +1050,8 @@ static struct davinci_soc_info davinci_soc_info_da850 = {
.gpio_irq = IRQ_DA8XX_GPIO0, .gpio_irq = IRQ_DA8XX_GPIO0,
.serial_dev = &da8xx_serial_device, .serial_dev = &da8xx_serial_device,
.emac_pdata = &da8xx_emac_pdata, .emac_pdata = &da8xx_emac_pdata,
.sram_dma = DA8XX_ARM_RAM_BASE,
.sram_len = SZ_8K,
}; };
void __init da850_init(void) void __init da850_init(void)
......
...@@ -57,6 +57,7 @@ extern void __iomem *da8xx_syscfg1_base; ...@@ -57,6 +57,7 @@ extern void __iomem *da8xx_syscfg1_base;
#define DA8XX_AEMIF_CS3_BASE 0x62000000 #define DA8XX_AEMIF_CS3_BASE 0x62000000
#define DA8XX_AEMIF_CTL_BASE 0x68000000 #define DA8XX_AEMIF_CTL_BASE 0x68000000
#define DA8XX_DDR2_CTL_BASE 0xb0000000 #define DA8XX_DDR2_CTL_BASE 0xb0000000
#define DA8XX_ARM_RAM_BASE 0xffff0000
#define PINMUX0 0x00 #define PINMUX0 0x00
#define PINMUX1 0x04 #define PINMUX1 0x04
......
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