Merge branch 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / arm / mach-omap2 / omap4-common.c
CommitLineData
fbc9be10
SS
1/*
2 * OMAP4 specific common source file.
3 *
4 * Copyright (C) 2010 Texas Instruments, Inc.
5 * Author:
6 * Santosh Shilimkar <santosh.shilimkar@ti.com>
7 *
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/kernel.h>
15#include <linux/init.h>
16#include <linux/io.h>
cd8ce159 17#include <linux/irq.h>
0529e315 18#include <linux/irqchip.h>
fbc9be10 19#include <linux/platform_device.h>
137d105d 20#include <linux/memblock.h>
7d7e1eba
TL
21#include <linux/of_irq.h>
22#include <linux/of_platform.h>
23#include <linux/export.h>
520f7bd7 24#include <linux/irqchip/arm-gic.h>
fbc9be10 25
fbc9be10 26#include <asm/hardware/cache-l2x0.h>
137d105d 27#include <asm/mach/map.h>
716a3dc2 28#include <asm/memblock.h>
cd8ce159 29#include <asm/smp_twd.h>
fbc9be10 30
732231a7 31#include "omap-wakeupgen.h"
dbc04161 32#include "soc.h"
b6a4226c 33#include "iomap.h"
4e65331c 34#include "common.h"
68f39e74 35#include "mmc.h"
1ee47b0a 36#include "hsmmc.h"
2f334a38 37#include "prminst44xx.h"
d9a16f9a 38#include "prcm_mpu44xx.h"
501f0c75 39#include "omap4-sar-layout.h"
f7a9b8a1 40#include "omap-secure.h"
bb772094 41#include "sram.h"
fbc9be10
SS
42
43#ifdef CONFIG_CACHE_L2X0
02afe8a7 44static void __iomem *l2cache_base;
fbc9be10
SS
45#endif
46
501f0c75 47static void __iomem *sar_ram_base;
ff999b8a 48static void __iomem *gic_dist_base_addr;
cd8ce159
CC
49static void __iomem *twd_base;
50
51#define IRQ_LOCALTIMER 29
501f0c75 52
137d105d
SS
53#ifdef CONFIG_OMAP4_ERRATA_I688
54/* Used to implement memory barrier on DRAM path */
55#define OMAP4_DRAM_BARRIER_VA 0xfe600000
56
57void __iomem *dram_sync, *sram_sync;
58
2ec1fc4e
SS
59static phys_addr_t paddr;
60static u32 size;
61
137d105d
SS
62void omap_bus_sync(void)
63{
64 if (dram_sync && sram_sync) {
65 writel_relaxed(readl_relaxed(dram_sync), dram_sync);
66 writel_relaxed(readl_relaxed(sram_sync), sram_sync);
67 isb();
68 }
69}
cc4ad907 70EXPORT_SYMBOL(omap_bus_sync);
137d105d 71
2ec1fc4e
SS
72/* Steal one page physical memory for barrier implementation */
73int __init omap_barrier_reserve_memblock(void)
137d105d 74{
137d105d
SS
75
76 size = ALIGN(PAGE_SIZE, SZ_1M);
716a3dc2
RK
77 paddr = arm_memblock_steal(size, SZ_1M);
78
2ec1fc4e
SS
79 return 0;
80}
81
82void __init omap_barriers_init(void)
83{
84 struct map_desc dram_io_desc[1];
85
137d105d
SS
86 dram_io_desc[0].virtual = OMAP4_DRAM_BARRIER_VA;
87 dram_io_desc[0].pfn = __phys_to_pfn(paddr);
88 dram_io_desc[0].length = size;
89 dram_io_desc[0].type = MT_MEMORY_SO;
90 iotable_init(dram_io_desc, ARRAY_SIZE(dram_io_desc));
91 dram_sync = (void __iomem *) dram_io_desc[0].virtual;
92 sram_sync = (void __iomem *) OMAP4_SRAM_VA;
93
94 pr_info("OMAP4: Map 0x%08llx to 0x%08lx for dram barrier\n",
95 (long long) paddr, dram_io_desc[0].virtual);
96
137d105d 97}
2ec1fc4e
SS
98#else
99void __init omap_barriers_init(void)
100{}
137d105d
SS
101#endif
102
fbc9be10
SS
103void __init gic_init_irq(void)
104{
ab65be26 105 void __iomem *omap_irq_base;
ab65be26 106
fbc9be10
SS
107 /* Static mapping, never released */
108 gic_dist_base_addr = ioremap(OMAP44XX_GIC_DIST_BASE, SZ_4K);
109 BUG_ON(!gic_dist_base_addr);
fbc9be10 110
cd8ce159
CC
111 twd_base = ioremap(OMAP44XX_LOCAL_TWD_BASE, SZ_4K);
112 BUG_ON(!twd_base);
113
fbc9be10 114 /* Static mapping, never released */
741e3a89
TL
115 omap_irq_base = ioremap(OMAP44XX_GIC_CPU_BASE, SZ_512);
116 BUG_ON(!omap_irq_base);
b580b899 117
fcf6efa3
SS
118 omap_wakeupgen_init();
119
741e3a89 120 gic_init(0, 29, gic_dist_base_addr, omap_irq_base);
fbc9be10
SS
121}
122
ff999b8a
SS
123void gic_dist_disable(void)
124{
125 if (gic_dist_base_addr)
126 __raw_writel(0x0, gic_dist_base_addr + GIC_DIST_CTRL);
127}
128
cd8ce159
CC
129bool gic_dist_disabled(void)
130{
131 return !(__raw_readl(gic_dist_base_addr + GIC_DIST_CTRL) & 0x1);
132}
133
134void gic_timer_retrigger(void)
135{
136 u32 twd_int = __raw_readl(twd_base + TWD_TIMER_INTSTAT);
137 u32 gic_int = __raw_readl(gic_dist_base_addr + GIC_DIST_PENDING_SET);
138 u32 twd_ctrl = __raw_readl(twd_base + TWD_TIMER_CONTROL);
139
140 if (twd_int && !(gic_int & BIT(IRQ_LOCALTIMER))) {
141 /*
142 * The local timer interrupt got lost while the distributor was
143 * disabled. Ack the pending interrupt, and retrigger it.
144 */
145 pr_warn("%s: lost localtimer interrupt\n", __func__);
146 __raw_writel(1, twd_base + TWD_TIMER_INTSTAT);
147 if (!(twd_ctrl & TWD_TIMER_CONTROL_PERIODIC)) {
148 __raw_writel(1, twd_base + TWD_TIMER_COUNTER);
149 twd_ctrl |= TWD_TIMER_CONTROL_ENABLE;
150 __raw_writel(twd_ctrl, twd_base + TWD_TIMER_CONTROL);
151 }
152 }
153}
154
fbc9be10 155#ifdef CONFIG_CACHE_L2X0
4e803c40 156
02afe8a7
SS
157void __iomem *omap4_get_l2cache_base(void)
158{
159 return l2cache_base;
160}
161
4e803c40
SS
162static void omap4_l2x0_disable(void)
163{
164 /* Disable PL310 L2 Cache controller */
165 omap_smc1(0x102, 0x0);
166}
167
4bdb1577
SS
168static void omap4_l2x0_set_debug(unsigned long val)
169{
170 /* Program PL310 L2 Cache controller debug register */
171 omap_smc1(0x100, val);
172}
173
fbc9be10
SS
174static int __init omap_l2_cache_init(void)
175{
1773e60a
SS
176 u32 aux_ctrl = 0;
177
fbc9be10
SS
178 /*
179 * To avoid code running on other OMAPs in
180 * multi-omap builds
181 */
182 if (!cpu_is_omap44xx())
183 return -ENODEV;
184
185 /* Static mapping, never released */
186 l2cache_base = ioremap(OMAP44XX_L2CACHE_BASE, SZ_4K);
0db1803e
SS
187 if (WARN_ON(!l2cache_base))
188 return -ENOMEM;
fbc9be10 189
fbc9be10 190 /*
a777b727
SS
191 * 16-way associativity, parity disabled
192 * Way size - 32KB (es1.0)
193 * Way size - 64KB (es2.0 +)
fbc9be10 194 */
1773e60a
SS
195 aux_ctrl = ((1 << L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT) |
196 (0x1 << 25) |
197 (0x1 << L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT) |
198 (0x1 << L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT));
199
11e02640 200 if (omap_rev() == OMAP4430_REV_ES1_0) {
1773e60a 201 aux_ctrl |= 0x2 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT;
11e02640
MR
202 } else {
203 aux_ctrl |= ((0x3 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT) |
b0f20ff9 204 (1 << L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT) |
11e02640 205 (1 << L2X0_AUX_CTRL_DATA_PREFETCH_SHIFT) |
b89cd71a
SS
206 (1 << L2X0_AUX_CTRL_INSTR_PREFETCH_SHIFT) |
207 (1 << L2X0_AUX_CTRL_EARLY_BRESP_SHIFT));
11e02640
MR
208 }
209 if (omap_rev() != OMAP4430_REV_ES1_0)
210 omap_smc1(0x109, aux_ctrl);
211
212 /* Enable PL310 L2 Cache controller */
213 omap_smc1(0x102, 0x1);
1773e60a 214
926fd45b
SS
215 if (of_have_populated_dt())
216 l2x0_of_init(aux_ctrl, L2X0_AUX_CTRL_MASK);
217 else
218 l2x0_init(l2cache_base, aux_ctrl, L2X0_AUX_CTRL_MASK);
fbc9be10 219
4e803c40
SS
220 /*
221 * Override default outer_cache.disable with a OMAP4
222 * specific one
223 */
224 outer_cache.disable = omap4_l2x0_disable;
4bdb1577 225 outer_cache.set_debug = omap4_l2x0_set_debug;
4e803c40 226
fbc9be10
SS
227 return 0;
228}
b76c8b19 229omap_early_initcall(omap_l2_cache_init);
fbc9be10 230#endif
501f0c75
SS
231
232void __iomem *omap4_get_sar_ram_base(void)
233{
234 return sar_ram_base;
235}
236
237/*
238 * SAR RAM used to save and restore the HW
239 * context in low power modes
240 */
241static int __init omap4_sar_ram_init(void)
242{
243 /*
244 * To avoid code running on other OMAPs in
245 * multi-omap builds
246 */
247 if (!cpu_is_omap44xx())
248 return -ENOMEM;
249
250 /* Static mapping, never released */
251 sar_ram_base = ioremap(OMAP44XX_SAR_RAM_BASE, SZ_16K);
252 if (WARN_ON(!sar_ram_base))
253 return -ENOMEM;
254
255 return 0;
256}
b76c8b19 257omap_early_initcall(omap4_sar_ram_init);
1ee47b0a 258
c4082d49
S
259void __init omap_gic_of_init(void)
260{
261 omap_wakeupgen_init();
0529e315 262 irqchip_init();
c4082d49
S
263}
264
1ee47b0a
B
265#if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
266static int omap4_twl6030_hsmmc_late_init(struct device *dev)
267{
268 int irq = 0;
269 struct platform_device *pdev = container_of(dev,
270 struct platform_device, dev);
271 struct omap_mmc_platform_data *pdata = dev->platform_data;
272
273 /* Setting MMC1 Card detect Irq */
274 if (pdev->id == 0) {
275 irq = twl6030_mmc_card_detect_config();
276 if (irq < 0) {
277 dev_err(dev, "%s: Error card detect config(%d)\n",
278 __func__, irq);
279 return irq;
280 }
281 pdata->slots[0].card_detect_irq = irq;
282 pdata->slots[0].card_detect = twl6030_mmc_card_detect;
283 }
284 return 0;
285}
286
287static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
288{
289 struct omap_mmc_platform_data *pdata;
290
291 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
292 if (!dev) {
293 pr_err("Failed %s\n", __func__);
294 return;
295 }
296 pdata = dev->platform_data;
297 pdata->init = omap4_twl6030_hsmmc_late_init;
298}
299
300int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
301{
302 struct omap2_hsmmc_info *c;
303
304 omap_hsmmc_init(controllers);
305 for (c = controllers; c->mmc; c++) {
306 /* pdev can be null if CONFIG_MMC_OMAP_HS is not set */
307 if (!c->pdev)
308 continue;
309 omap4_twl6030_hsmmc_set_late_init(&c->pdev->dev);
310 }
311
312 return 0;
313}
314#else
315int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
316{
317 return 0;
318}
319#endif
2f334a38
PW
320
321/**
322 * omap44xx_restart - trigger a software restart of the SoC
323 * @mode: the "reboot mode", see arch/arm/kernel/{setup,process}.c
324 * @cmd: passed from the userspace program rebooting the system (if provided)
325 *
326 * Resets the SoC. For @cmd, see the 'reboot' syscall in
327 * kernel/sys.c. No return value.
328 */
329void omap44xx_restart(char mode, const char *cmd)
330{
331 /* XXX Should save 'cmd' into scratchpad for use after reboot */
332 omap4_prminst_global_warm_sw_reset(); /* never returns */
333 while (1);
334}
335
This page took 0.192896 seconds and 5 git commands to generate.