blob: aebd06faf2cfd4c6c59c622b538e04696aa058d2 [file] [log] [blame]
Tony Lindgren92105bb2005-09-07 17:20:26 +01001/*
2 * linux/arch/arm/plat-omap/sram.c
3 *
4 * OMAP SRAM detection and management
5 *
6 * Copyright (C) 2005 Nokia Corporation
7 * Written by Tony Lindgren <tony@atomide.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/config.h>
15#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/init.h>
18
Tony Lindgren53d9cc72006-02-08 22:06:45 +000019#include <asm/tlb.h>
Tony Lindgren92105bb2005-09-07 17:20:26 +010020#include <asm/io.h>
21#include <asm/cacheflush.h>
22
Tony Lindgren670c1042006-04-02 17:46:25 +010023#include <asm/mach/map.h>
24
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000025#include <asm/arch/sram.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010026#include <asm/arch/board.h>
Tony Lindgren92105bb2005-09-07 17:20:26 +010027
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000028#define OMAP1_SRAM_PA 0x20000000
29#define OMAP1_SRAM_VA 0xd0000000
30#define OMAP2_SRAM_PA 0x40200000
Tony Lindgren670c1042006-04-02 17:46:25 +010031#define OMAP2_SRAM_PUB_PA 0x4020f800
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000032#define OMAP2_SRAM_VA 0xd0000000
Tony Lindgren670c1042006-04-02 17:46:25 +010033#define OMAP2_SRAM_PUB_VA 0xd0000800
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000034
Tony Lindgren670c1042006-04-02 17:46:25 +010035#if defined(CONFIG_ARCH_OMAP24XX)
36#define SRAM_BOOTLOADER_SZ 0x00
37#else
Tony Lindgren92105bb2005-09-07 17:20:26 +010038#define SRAM_BOOTLOADER_SZ 0x80
Tony Lindgren670c1042006-04-02 17:46:25 +010039#endif
40
41#define VA_REQINFOPERM0 IO_ADDRESS(0x68005048)
42#define VA_READPERM0 IO_ADDRESS(0x68005050)
43#define VA_WRITEPERM0 IO_ADDRESS(0x68005058)
44#define VA_CONTROL_STAT IO_ADDRESS(0x480002F8)
45#define GP_DEVICE 0x300
46#define TYPE_MASK 0x700
47
48#define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1)))
Tony Lindgren92105bb2005-09-07 17:20:26 +010049
50static unsigned long omap_sram_base;
51static unsigned long omap_sram_size;
52static unsigned long omap_sram_ceil;
53
Tony Lindgren670c1042006-04-02 17:46:25 +010054unsigned long omap_fb_sram_start;
55unsigned long omap_fb_sram_size;
56
57/* Depending on the target RAMFS firewall setup, the public usable amount of
58 * SRAM varies. The default accessable size for all device types is 2k. A GP
59 * device allows ARM11 but not other initators for full size. This
60 * functionality seems ok until some nice security API happens.
61 */
62static int is_sram_locked(void)
63{
64 int type = 0;
65
66 if (cpu_is_omap242x())
67 type = __raw_readl(VA_CONTROL_STAT) & TYPE_MASK;
68
69 if (type == GP_DEVICE) {
70 /* RAMFW: R/W access to all initators for all qualifier sets */
71 if (cpu_is_omap242x()) {
72 __raw_writel(0xFF, VA_REQINFOPERM0); /* all q-vects */
73 __raw_writel(0xCFDE, VA_READPERM0); /* all i-read */
74 __raw_writel(0xCFDE, VA_WRITEPERM0); /* all i-write */
75 }
76 return 0;
77 } else
78 return 1; /* assume locked with no PPA or security driver */
79}
80
81void get_fb_sram_conf(unsigned long start_avail, unsigned size_avail,
82 unsigned long *start, unsigned long *size)
83{
84 const struct omap_fbmem_config *fbmem_conf;
85
86 fbmem_conf = omap_get_config(OMAP_TAG_FBMEM, struct omap_fbmem_config);
87 if (fbmem_conf != NULL) {
88 *start = fbmem_conf->fb_sram_start;
89 *size = fbmem_conf->fb_sram_size;
90 } else {
91 *size = 0;
92 *start = 0;
93 }
94
95 if (*size && (
96 *start < start_avail ||
97 *start + *size > start_avail + size_avail)) {
98 printk(KERN_ERR "invalid FB SRAM configuration\n");
99 *start = start_avail;
100 *size = size_avail;
101 }
102
103 if (*size)
104 pr_info("Reserving %lu bytes SRAM for frame buffer\n", *size);
105}
106
Tony Lindgren92105bb2005-09-07 17:20:26 +0100107/*
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000108 * The amount of SRAM depends on the core type.
Tony Lindgren92105bb2005-09-07 17:20:26 +0100109 * Note that we cannot try to test for SRAM here because writes
110 * to secure SRAM will hang the system. Also the SRAM is not
111 * yet mapped at this point.
112 */
113void __init omap_detect_sram(void)
114{
Tony Lindgren670c1042006-04-02 17:46:25 +0100115 unsigned long sram_start;
116
117 if (cpu_is_omap24xx()) {
118 if (is_sram_locked()) {
119 omap_sram_base = OMAP2_SRAM_PUB_VA;
120 sram_start = OMAP2_SRAM_PUB_PA;
121 omap_sram_size = 0x800; /* 2K */
122 } else {
123 omap_sram_base = OMAP2_SRAM_VA;
124 sram_start = OMAP2_SRAM_PA;
125 if (cpu_is_omap242x())
126 omap_sram_size = 0xa0000; /* 640K */
127 else if (cpu_is_omap243x())
128 omap_sram_size = 0x10000; /* 64K */
129 }
130 } else {
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000131 omap_sram_base = OMAP1_SRAM_VA;
Tony Lindgren670c1042006-04-02 17:46:25 +0100132 sram_start = OMAP1_SRAM_PA;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100133
Tony Lindgren670c1042006-04-02 17:46:25 +0100134 if (cpu_is_omap730())
135 omap_sram_size = 0x32000; /* 200K */
136 else if (cpu_is_omap15xx())
137 omap_sram_size = 0x30000; /* 192K */
138 else if (cpu_is_omap1610() || cpu_is_omap1621() ||
139 cpu_is_omap1710())
140 omap_sram_size = 0x4000; /* 16K */
141 else if (cpu_is_omap1611())
142 omap_sram_size = 0x3e800; /* 250K */
143 else {
144 printk(KERN_ERR "Could not detect SRAM size\n");
145 omap_sram_size = 0x4000;
146 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100147 }
Tony Lindgren670c1042006-04-02 17:46:25 +0100148 get_fb_sram_conf(sram_start + SRAM_BOOTLOADER_SZ,
149 omap_sram_size - SRAM_BOOTLOADER_SZ,
150 &omap_fb_sram_start, &omap_fb_sram_size);
151 if (omap_fb_sram_size)
152 omap_sram_size -= sram_start + omap_sram_size -
153 omap_fb_sram_start;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100154 omap_sram_ceil = omap_sram_base + omap_sram_size;
155}
156
157static struct map_desc omap_sram_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +0100158 { /* .length gets filled in at runtime */
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000159 .virtual = OMAP1_SRAM_VA,
160 .pfn = __phys_to_pfn(OMAP1_SRAM_PA),
Tony Lindgrence2deca2006-06-26 16:16:24 -0700161 .type = MT_MEMORY
Deepak Saxena9fe133b2005-10-28 15:19:00 +0100162 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100163};
164
165/*
Tony Lindgrence2deca2006-06-26 16:16:24 -0700166 * Note that we cannot use ioremap for SRAM, as clock init needs SRAM early.
Tony Lindgren92105bb2005-09-07 17:20:26 +0100167 */
168void __init omap_map_sram(void)
169{
Tony Lindgren670c1042006-04-02 17:46:25 +0100170 unsigned long base;
171
Tony Lindgren92105bb2005-09-07 17:20:26 +0100172 if (omap_sram_size == 0)
173 return;
174
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000175 if (cpu_is_omap24xx()) {
176 omap_sram_io_desc[0].virtual = OMAP2_SRAM_VA;
Tony Lindgren670c1042006-04-02 17:46:25 +0100177
178 if (is_sram_locked())
179 base = OMAP2_SRAM_PUB_PA;
180 else
181 base = OMAP2_SRAM_PA;
182 base = ROUND_DOWN(base, PAGE_SIZE);
183 omap_sram_io_desc[0].pfn = __phys_to_pfn(base);
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000184 }
185
Tony Lindgrence2deca2006-06-26 16:16:24 -0700186 omap_sram_io_desc[0].length = 1024 * 1024; /* Use section desc */
Tony Lindgren92105bb2005-09-07 17:20:26 +0100187 iotable_init(omap_sram_io_desc, ARRAY_SIZE(omap_sram_io_desc));
188
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000189 printk(KERN_INFO "SRAM: Mapped pa 0x%08lx to va 0x%08lx size: 0x%lx\n",
Tony Lindgren670c1042006-04-02 17:46:25 +0100190 __pfn_to_phys(omap_sram_io_desc[0].pfn),
191 omap_sram_io_desc[0].virtual,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000192 omap_sram_io_desc[0].length);
193
Tony Lindgren92105bb2005-09-07 17:20:26 +0100194 /*
Tony Lindgren53d9cc72006-02-08 22:06:45 +0000195 * Normally devicemaps_init() would flush caches and tlb after
196 * mdesc->map_io(), but since we're called from map_io(), we
197 * must do it here.
198 */
199 local_flush_tlb_all();
200 flush_cache_all();
201
202 /*
Tony Lindgren92105bb2005-09-07 17:20:26 +0100203 * Looks like we need to preserve some bootloader code at the
204 * beginning of SRAM for jumping to flash for reboot to work...
205 */
206 memset((void *)omap_sram_base + SRAM_BOOTLOADER_SZ, 0,
207 omap_sram_size - SRAM_BOOTLOADER_SZ);
208}
209
Tony Lindgren92105bb2005-09-07 17:20:26 +0100210void * omap_sram_push(void * start, unsigned long size)
211{
212 if (size > (omap_sram_ceil - (omap_sram_base + SRAM_BOOTLOADER_SZ))) {
213 printk(KERN_ERR "Not enough space in SRAM\n");
214 return NULL;
215 }
Tony Lindgren670c1042006-04-02 17:46:25 +0100216
Tony Lindgren92105bb2005-09-07 17:20:26 +0100217 omap_sram_ceil -= size;
Tony Lindgren670c1042006-04-02 17:46:25 +0100218 omap_sram_ceil = ROUND_DOWN(omap_sram_ceil, sizeof(void *));
Tony Lindgren92105bb2005-09-07 17:20:26 +0100219 memcpy((void *)omap_sram_ceil, start, size);
220
221 return (void *)omap_sram_ceil;
222}
223
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000224static void omap_sram_error(void)
225{
226 panic("Uninitialized SRAM function\n");
227}
228
229#ifdef CONFIG_ARCH_OMAP1
230
231static void (*_omap_sram_reprogram_clock)(u32 dpllctl, u32 ckctl);
232
233void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl)
234{
235 if (!_omap_sram_reprogram_clock)
236 omap_sram_error();
237
238 return _omap_sram_reprogram_clock(dpllctl, ckctl);
239}
240
241int __init omap1_sram_init(void)
242{
243 _omap_sram_reprogram_clock = omap_sram_push(sram_reprogram_clock,
244 sram_reprogram_clock_sz);
245
246 return 0;
247}
248
249#else
250#define omap1_sram_init() do {} while (0)
251#endif
252
253#ifdef CONFIG_ARCH_OMAP2
254
255static void (*_omap2_sram_ddr_init)(u32 *slow_dll_ctrl, u32 fast_dll_ctrl,
256 u32 base_cs, u32 force_unlock);
257
258void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl,
259 u32 base_cs, u32 force_unlock)
260{
261 if (!_omap2_sram_ddr_init)
262 omap_sram_error();
263
264 return _omap2_sram_ddr_init(slow_dll_ctrl, fast_dll_ctrl,
265 base_cs, force_unlock);
266}
267
268static void (*_omap2_sram_reprogram_sdrc)(u32 perf_level, u32 dll_val,
269 u32 mem_type);
270
271void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, u32 mem_type)
272{
273 if (!_omap2_sram_reprogram_sdrc)
274 omap_sram_error();
275
276 return _omap2_sram_reprogram_sdrc(perf_level, dll_val, mem_type);
277}
278
279static u32 (*_omap2_set_prcm)(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass);
280
281u32 omap2_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass)
282{
283 if (!_omap2_set_prcm)
284 omap_sram_error();
285
286 return _omap2_set_prcm(dpll_ctrl_val, sdrc_rfr_val, bypass);
287}
288
289int __init omap2_sram_init(void)
290{
291 _omap2_sram_ddr_init = omap_sram_push(sram_ddr_init, sram_ddr_init_sz);
292
293 _omap2_sram_reprogram_sdrc = omap_sram_push(sram_reprogram_sdrc,
294 sram_reprogram_sdrc_sz);
295 _omap2_set_prcm = omap_sram_push(sram_set_prcm, sram_set_prcm_sz);
296
297 return 0;
298}
299#else
300#define omap2_sram_init() do {} while (0)
301#endif
302
303int __init omap_sram_init(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100304{
305 omap_detect_sram();
306 omap_map_sram();
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000307
308 if (!cpu_is_omap24xx())
309 omap1_sram_init();
310 else
311 omap2_sram_init();
312
313 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100314}