2 * OMAP4 specific common source file.
4 * Copyright (C) 2010 Texas Instruments, Inc.
6 * Santosh Shilimkar <santosh.shilimkar@ti.com>
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.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
17 #include <linux/irq.h>
18 #include <linux/platform_device.h>
19 #include <linux/memblock.h>
20 #include <linux/of_irq.h>
21 #include <linux/of_platform.h>
22 #include <linux/export.h>
24 #include <asm/hardware/gic.h>
25 #include <asm/hardware/cache-l2x0.h>
26 #include <asm/mach/map.h>
27 #include <asm/memblock.h>
28 #include <asm/smp_twd.h>
30 #include "omap-wakeupgen.h"
36 #include "prminst44xx.h"
37 #include "prcm_mpu44xx.h"
38 #include "omap4-sar-layout.h"
39 #include "omap-secure.h"
42 #ifdef CONFIG_CACHE_L2X0
43 static void __iomem
*l2cache_base
;
46 static void __iomem
*sar_ram_base
;
47 static void __iomem
*gic_dist_base_addr
;
48 static void __iomem
*twd_base
;
50 #define IRQ_LOCALTIMER 29
52 #ifdef CONFIG_OMAP4_ERRATA_I688
53 /* Used to implement memory barrier on DRAM path */
54 #define OMAP4_DRAM_BARRIER_VA 0xfe600000
56 void __iomem
*dram_sync
, *sram_sync
;
58 static phys_addr_t paddr
;
61 void omap_bus_sync(void)
63 if (dram_sync
&& sram_sync
) {
64 writel_relaxed(readl_relaxed(dram_sync
), dram_sync
);
65 writel_relaxed(readl_relaxed(sram_sync
), sram_sync
);
69 EXPORT_SYMBOL(omap_bus_sync
);
71 /* Steal one page physical memory for barrier implementation */
72 int __init
omap_barrier_reserve_memblock(void)
75 size
= ALIGN(PAGE_SIZE
, SZ_1M
);
76 paddr
= arm_memblock_steal(size
, SZ_1M
);
81 void __init
omap_barriers_init(void)
83 struct map_desc dram_io_desc
[1];
85 dram_io_desc
[0].virtual = OMAP4_DRAM_BARRIER_VA
;
86 dram_io_desc
[0].pfn
= __phys_to_pfn(paddr
);
87 dram_io_desc
[0].length
= size
;
88 dram_io_desc
[0].type
= MT_MEMORY_SO
;
89 iotable_init(dram_io_desc
, ARRAY_SIZE(dram_io_desc
));
90 dram_sync
= (void __iomem
*) dram_io_desc
[0].virtual;
91 sram_sync
= (void __iomem
*) OMAP4_SRAM_VA
;
93 pr_info("OMAP4: Map 0x%08llx to 0x%08lx for dram barrier\n",
94 (long long) paddr
, dram_io_desc
[0].virtual);
98 void __init
omap_barriers_init(void)
102 void __init
gic_init_irq(void)
104 void __iomem
*omap_irq_base
;
106 /* Static mapping, never released */
107 gic_dist_base_addr
= ioremap(OMAP44XX_GIC_DIST_BASE
, SZ_4K
);
108 BUG_ON(!gic_dist_base_addr
);
110 twd_base
= ioremap(OMAP44XX_LOCAL_TWD_BASE
, SZ_4K
);
113 /* Static mapping, never released */
114 omap_irq_base
= ioremap(OMAP44XX_GIC_CPU_BASE
, SZ_512
);
115 BUG_ON(!omap_irq_base
);
117 omap_wakeupgen_init();
119 gic_init(0, 29, gic_dist_base_addr
, omap_irq_base
);
122 void gic_dist_disable(void)
124 if (gic_dist_base_addr
)
125 __raw_writel(0x0, gic_dist_base_addr
+ GIC_DIST_CTRL
);
128 bool gic_dist_disabled(void)
130 return !(__raw_readl(gic_dist_base_addr
+ GIC_DIST_CTRL
) & 0x1);
133 void gic_timer_retrigger(void)
135 u32 twd_int
= __raw_readl(twd_base
+ TWD_TIMER_INTSTAT
);
136 u32 gic_int
= __raw_readl(gic_dist_base_addr
+ GIC_DIST_PENDING_SET
);
137 u32 twd_ctrl
= __raw_readl(twd_base
+ TWD_TIMER_CONTROL
);
139 if (twd_int
&& !(gic_int
& BIT(IRQ_LOCALTIMER
))) {
141 * The local timer interrupt got lost while the distributor was
142 * disabled. Ack the pending interrupt, and retrigger it.
144 pr_warn("%s: lost localtimer interrupt\n", __func__
);
145 __raw_writel(1, twd_base
+ TWD_TIMER_INTSTAT
);
146 if (!(twd_ctrl
& TWD_TIMER_CONTROL_PERIODIC
)) {
147 __raw_writel(1, twd_base
+ TWD_TIMER_COUNTER
);
148 twd_ctrl
|= TWD_TIMER_CONTROL_ENABLE
;
149 __raw_writel(twd_ctrl
, twd_base
+ TWD_TIMER_CONTROL
);
154 #ifdef CONFIG_CACHE_L2X0
156 void __iomem
*omap4_get_l2cache_base(void)
161 static void omap4_l2x0_disable(void)
163 /* Disable PL310 L2 Cache controller */
164 omap_smc1(0x102, 0x0);
167 static void omap4_l2x0_set_debug(unsigned long val
)
169 /* Program PL310 L2 Cache controller debug register */
170 omap_smc1(0x100, val
);
173 static int __init
omap_l2_cache_init(void)
178 * To avoid code running on other OMAPs in
181 if (!cpu_is_omap44xx())
184 /* Static mapping, never released */
185 l2cache_base
= ioremap(OMAP44XX_L2CACHE_BASE
, SZ_4K
);
186 if (WARN_ON(!l2cache_base
))
190 * 16-way associativity, parity disabled
191 * Way size - 32KB (es1.0)
192 * Way size - 64KB (es2.0 +)
194 aux_ctrl
= ((1 << L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT
) |
196 (0x1 << L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT
) |
197 (0x1 << L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT
));
199 if (omap_rev() == OMAP4430_REV_ES1_0
) {
200 aux_ctrl
|= 0x2 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT
;
202 aux_ctrl
|= ((0x3 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT
) |
203 (1 << L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT
) |
204 (1 << L2X0_AUX_CTRL_DATA_PREFETCH_SHIFT
) |
205 (1 << L2X0_AUX_CTRL_INSTR_PREFETCH_SHIFT
) |
206 (1 << L2X0_AUX_CTRL_EARLY_BRESP_SHIFT
));
208 if (omap_rev() != OMAP4430_REV_ES1_0
)
209 omap_smc1(0x109, aux_ctrl
);
211 /* Enable PL310 L2 Cache controller */
212 omap_smc1(0x102, 0x1);
214 if (of_have_populated_dt())
215 l2x0_of_init(aux_ctrl
, L2X0_AUX_CTRL_MASK
);
217 l2x0_init(l2cache_base
, aux_ctrl
, L2X0_AUX_CTRL_MASK
);
220 * Override default outer_cache.disable with a OMAP4
223 outer_cache
.disable
= omap4_l2x0_disable
;
224 outer_cache
.set_debug
= omap4_l2x0_set_debug
;
228 early_initcall(omap_l2_cache_init
);
231 void __iomem
*omap4_get_sar_ram_base(void)
237 * SAR RAM used to save and restore the HW
238 * context in low power modes
240 static int __init
omap4_sar_ram_init(void)
243 * To avoid code running on other OMAPs in
246 if (!cpu_is_omap44xx())
249 /* Static mapping, never released */
250 sar_ram_base
= ioremap(OMAP44XX_SAR_RAM_BASE
, SZ_16K
);
251 if (WARN_ON(!sar_ram_base
))
256 early_initcall(omap4_sar_ram_init
);
258 static struct of_device_id irq_match
[] __initdata
= {
259 { .compatible
= "arm,cortex-a9-gic", .data
= gic_of_init
, },
260 { .compatible
= "arm,cortex-a15-gic", .data
= gic_of_init
, },
264 void __init
omap_gic_of_init(void)
266 omap_wakeupgen_init();
267 of_irq_init(irq_match
);
270 #if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
271 static int omap4_twl6030_hsmmc_late_init(struct device
*dev
)
274 struct platform_device
*pdev
= container_of(dev
,
275 struct platform_device
, dev
);
276 struct omap_mmc_platform_data
*pdata
= dev
->platform_data
;
278 /* Setting MMC1 Card detect Irq */
280 irq
= twl6030_mmc_card_detect_config();
282 dev_err(dev
, "%s: Error card detect config(%d)\n",
286 pdata
->slots
[0].card_detect_irq
= irq
;
287 pdata
->slots
[0].card_detect
= twl6030_mmc_card_detect
;
292 static __init
void omap4_twl6030_hsmmc_set_late_init(struct device
*dev
)
294 struct omap_mmc_platform_data
*pdata
;
296 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
298 pr_err("Failed %s\n", __func__
);
301 pdata
= dev
->platform_data
;
302 pdata
->init
= omap4_twl6030_hsmmc_late_init
;
305 int __init
omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info
*controllers
)
307 struct omap2_hsmmc_info
*c
;
309 omap_hsmmc_init(controllers
);
310 for (c
= controllers
; c
->mmc
; c
++) {
311 /* pdev can be null if CONFIG_MMC_OMAP_HS is not set */
314 omap4_twl6030_hsmmc_set_late_init(&c
->pdev
->dev
);
320 int __init
omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info
*controllers
)
327 * omap44xx_restart - trigger a software restart of the SoC
328 * @mode: the "reboot mode", see arch/arm/kernel/{setup,process}.c
329 * @cmd: passed from the userspace program rebooting the system (if provided)
331 * Resets the SoC. For @cmd, see the 'reboot' syscall in
332 * kernel/sys.c. No return value.
334 void omap44xx_restart(char mode
, const char *cmd
)
336 /* XXX Should save 'cmd' into scratchpad for use after reboot */
337 omap4_prminst_global_warm_sw_reset(); /* never returns */