3 * OMAP SRAM detection and management
5 * Copyright (C) 2005 Nokia Corporation
6 * Written by Tony Lindgren <tony@atomide.com>
8 * Copyright (C) 2009-2012 Texas Instruments
9 * Added OMAP4/5 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
21 #include <asm/fncpy.h>
23 #include <asm/cacheflush.h>
25 #include <asm/mach/map.h>
29 #include "prm2xxx_3xxx.h"
33 #define OMAP2_SRAM_PUB_PA (OMAP2_SRAM_PA + 0xf800)
34 #define OMAP3_SRAM_PUB_PA (OMAP3_SRAM_PA + 0x8000)
35 #ifdef CONFIG_OMAP4_ERRATA_I688
36 #define OMAP4_SRAM_PUB_PA OMAP4_SRAM_PA
38 #define OMAP4_SRAM_PUB_PA (OMAP4_SRAM_PA + 0x4000)
40 #define OMAP5_SRAM_PA 0x40300000
42 #define SRAM_BOOTLOADER_SZ 0x00
44 #define OMAP24XX_VA_REQINFOPERM0 OMAP2_L3_IO_ADDRESS(0x68005048)
45 #define OMAP24XX_VA_READPERM0 OMAP2_L3_IO_ADDRESS(0x68005050)
46 #define OMAP24XX_VA_WRITEPERM0 OMAP2_L3_IO_ADDRESS(0x68005058)
48 #define OMAP34XX_VA_REQINFOPERM0 OMAP2_L3_IO_ADDRESS(0x68012848)
49 #define OMAP34XX_VA_READPERM0 OMAP2_L3_IO_ADDRESS(0x68012850)
50 #define OMAP34XX_VA_WRITEPERM0 OMAP2_L3_IO_ADDRESS(0x68012858)
51 #define OMAP34XX_VA_ADDR_MATCH2 OMAP2_L3_IO_ADDRESS(0x68012880)
52 #define OMAP34XX_VA_SMS_RG_ATT0 OMAP2_L3_IO_ADDRESS(0x6C000048)
54 #define GP_DEVICE 0x300
56 #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1)))
58 static unsigned long omap_sram_start
;
59 static unsigned long omap_sram_skip
;
60 static unsigned long omap_sram_size
;
63 * Depending on the target RAMFS firewall setup, the public usable amount of
64 * SRAM varies. The default accessible size for all device types is 2k. A GP
65 * device allows ARM11 but not other initiators for full size. This
66 * functionality seems ok until some nice security API happens.
68 static int is_sram_locked(void)
70 if (OMAP2_DEVICE_TYPE_GP
== omap_type()) {
71 /* RAMFW: R/W access to all initiators for all qualifier sets */
72 if (cpu_is_omap242x()) {
73 __raw_writel(0xFF, OMAP24XX_VA_REQINFOPERM0
); /* all q-vects */
74 __raw_writel(0xCFDE, OMAP24XX_VA_READPERM0
); /* all i-read */
75 __raw_writel(0xCFDE, OMAP24XX_VA_WRITEPERM0
); /* all i-write */
77 if (cpu_is_omap34xx()) {
78 __raw_writel(0xFFFF, OMAP34XX_VA_REQINFOPERM0
); /* all q-vects */
79 __raw_writel(0xFFFF, OMAP34XX_VA_READPERM0
); /* all i-read */
80 __raw_writel(0xFFFF, OMAP34XX_VA_WRITEPERM0
); /* all i-write */
81 __raw_writel(0x0, OMAP34XX_VA_ADDR_MATCH2
);
82 __raw_writel(0xFFFFFFFF, OMAP34XX_VA_SMS_RG_ATT0
);
86 return 1; /* assume locked with no PPA or security driver */
90 * The amount of SRAM depends on the core type.
91 * Note that we cannot try to test for SRAM here because writes
92 * to secure SRAM will hang the system. Also the SRAM is not
93 * yet mapped at this point.
95 static void __init
omap_detect_sram(void)
97 omap_sram_skip
= SRAM_BOOTLOADER_SZ
;
98 if (is_sram_locked()) {
99 if (cpu_is_omap34xx()) {
100 omap_sram_start
= OMAP3_SRAM_PUB_PA
;
101 if ((omap_type() == OMAP2_DEVICE_TYPE_EMU
) ||
102 (omap_type() == OMAP2_DEVICE_TYPE_SEC
)) {
103 omap_sram_size
= 0x7000; /* 28K */
104 omap_sram_skip
+= SZ_16K
;
106 omap_sram_size
= 0x8000; /* 32K */
108 } else if (cpu_is_omap44xx()) {
109 omap_sram_start
= OMAP4_SRAM_PUB_PA
;
110 omap_sram_size
= 0xa000; /* 40K */
111 } else if (soc_is_omap54xx()) {
112 omap_sram_start
= OMAP5_SRAM_PA
;
113 omap_sram_size
= SZ_128K
; /* 128KB */
115 omap_sram_start
= OMAP2_SRAM_PUB_PA
;
116 omap_sram_size
= 0x800; /* 2K */
119 if (soc_is_am33xx()) {
120 omap_sram_start
= AM33XX_SRAM_PA
;
121 omap_sram_size
= 0x10000; /* 64K */
122 } else if (cpu_is_omap34xx()) {
123 omap_sram_start
= OMAP3_SRAM_PA
;
124 omap_sram_size
= 0x10000; /* 64K */
125 } else if (cpu_is_omap44xx()) {
126 omap_sram_start
= OMAP4_SRAM_PA
;
127 omap_sram_size
= 0xe000; /* 56K */
128 } else if (soc_is_omap54xx()) {
129 omap_sram_start
= OMAP5_SRAM_PA
;
130 omap_sram_size
= SZ_128K
; /* 128KB */
132 omap_sram_start
= OMAP2_SRAM_PA
;
133 if (cpu_is_omap242x())
134 omap_sram_size
= 0xa0000; /* 640K */
135 else if (cpu_is_omap243x())
136 omap_sram_size
= 0x10000; /* 64K */
142 * Note that we cannot use ioremap for SRAM, as clock init needs SRAM early.
144 static void __init
omap2_map_sram(void)
148 #ifdef CONFIG_OMAP4_ERRATA_I688
149 if (cpu_is_omap44xx()) {
150 omap_sram_start
+= PAGE_SIZE
;
151 omap_sram_size
-= SZ_16K
;
154 if (cpu_is_omap34xx()) {
156 * SRAM must be marked as non-cached on OMAP3 since the
157 * CORE DPLL M2 divider change code (in SRAM) runs with the
158 * SDRAM controller disabled, and if it is marked cached,
159 * the ARM may attempt to write cache lines back to SDRAM
160 * which will cause the system to hang.
165 omap_map_sram(omap_sram_start
, omap_sram_size
,
166 omap_sram_skip
, cached
);
169 static void (*_omap2_sram_ddr_init
)(u32
*slow_dll_ctrl
, u32 fast_dll_ctrl
,
170 u32 base_cs
, u32 force_unlock
);
172 void omap2_sram_ddr_init(u32
*slow_dll_ctrl
, u32 fast_dll_ctrl
,
173 u32 base_cs
, u32 force_unlock
)
175 BUG_ON(!_omap2_sram_ddr_init
);
176 _omap2_sram_ddr_init(slow_dll_ctrl
, fast_dll_ctrl
,
177 base_cs
, force_unlock
);
180 static void (*_omap2_sram_reprogram_sdrc
)(u32 perf_level
, u32 dll_val
,
183 void omap2_sram_reprogram_sdrc(u32 perf_level
, u32 dll_val
, u32 mem_type
)
185 BUG_ON(!_omap2_sram_reprogram_sdrc
);
186 _omap2_sram_reprogram_sdrc(perf_level
, dll_val
, mem_type
);
189 static u32 (*_omap2_set_prcm
)(u32 dpll_ctrl_val
, u32 sdrc_rfr_val
, int bypass
);
191 u32
omap2_set_prcm(u32 dpll_ctrl_val
, u32 sdrc_rfr_val
, int bypass
)
193 BUG_ON(!_omap2_set_prcm
);
194 return _omap2_set_prcm(dpll_ctrl_val
, sdrc_rfr_val
, bypass
);
197 #ifdef CONFIG_SOC_OMAP2420
198 static int __init
omap242x_sram_init(void)
200 _omap2_sram_ddr_init
= omap_sram_push(omap242x_sram_ddr_init
,
201 omap242x_sram_ddr_init_sz
);
203 _omap2_sram_reprogram_sdrc
= omap_sram_push(omap242x_sram_reprogram_sdrc
,
204 omap242x_sram_reprogram_sdrc_sz
);
206 _omap2_set_prcm
= omap_sram_push(omap242x_sram_set_prcm
,
207 omap242x_sram_set_prcm_sz
);
212 static inline int omap242x_sram_init(void)
218 #ifdef CONFIG_SOC_OMAP2430
219 static int __init
omap243x_sram_init(void)
221 _omap2_sram_ddr_init
= omap_sram_push(omap243x_sram_ddr_init
,
222 omap243x_sram_ddr_init_sz
);
224 _omap2_sram_reprogram_sdrc
= omap_sram_push(omap243x_sram_reprogram_sdrc
,
225 omap243x_sram_reprogram_sdrc_sz
);
227 _omap2_set_prcm
= omap_sram_push(omap243x_sram_set_prcm
,
228 omap243x_sram_set_prcm_sz
);
233 static inline int omap243x_sram_init(void)
239 #ifdef CONFIG_ARCH_OMAP3
241 static u32 (*_omap3_sram_configure_core_dpll
)(
242 u32 m2
, u32 unlock_dll
, u32 f
, u32 inc
,
243 u32 sdrc_rfr_ctrl_0
, u32 sdrc_actim_ctrl_a_0
,
244 u32 sdrc_actim_ctrl_b_0
, u32 sdrc_mr_0
,
245 u32 sdrc_rfr_ctrl_1
, u32 sdrc_actim_ctrl_a_1
,
246 u32 sdrc_actim_ctrl_b_1
, u32 sdrc_mr_1
);
248 u32
omap3_configure_core_dpll(u32 m2
, u32 unlock_dll
, u32 f
, u32 inc
,
249 u32 sdrc_rfr_ctrl_0
, u32 sdrc_actim_ctrl_a_0
,
250 u32 sdrc_actim_ctrl_b_0
, u32 sdrc_mr_0
,
251 u32 sdrc_rfr_ctrl_1
, u32 sdrc_actim_ctrl_a_1
,
252 u32 sdrc_actim_ctrl_b_1
, u32 sdrc_mr_1
)
254 BUG_ON(!_omap3_sram_configure_core_dpll
);
255 return _omap3_sram_configure_core_dpll(
256 m2
, unlock_dll
, f
, inc
,
257 sdrc_rfr_ctrl_0
, sdrc_actim_ctrl_a_0
,
258 sdrc_actim_ctrl_b_0
, sdrc_mr_0
,
259 sdrc_rfr_ctrl_1
, sdrc_actim_ctrl_a_1
,
260 sdrc_actim_ctrl_b_1
, sdrc_mr_1
);
263 void omap3_sram_restore_context(void)
267 _omap3_sram_configure_core_dpll
=
268 omap_sram_push(omap3_sram_configure_core_dpll
,
269 omap3_sram_configure_core_dpll_sz
);
270 omap_push_sram_idle();
273 static inline int omap34xx_sram_init(void)
275 omap3_sram_restore_context();
279 static inline int omap34xx_sram_init(void)
283 #endif /* CONFIG_ARCH_OMAP3 */
285 static inline int am33xx_sram_init(void)
290 int __init
omap_sram_init(void)
295 if (cpu_is_omap242x())
296 omap242x_sram_init();
297 else if (cpu_is_omap2430())
298 omap243x_sram_init();
299 else if (soc_is_am33xx())
301 else if (cpu_is_omap34xx())
302 omap34xx_sram_init();