blob: 6f94b4e7b18ded89cf6e50f2504690a061b46f2b [file] [log] [blame]
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -07001/*
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>
Colin Crosscd8ce152012-10-18 12:20:08 +030017#include <linux/irq.h>
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070018#include <linux/platform_device.h>
Santosh Shilimkar137d1052011-06-25 18:04:31 -070019#include <linux/memblock.h>
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070020#include <linux/of_irq.h>
21#include <linux/of_platform.h>
22#include <linux/export.h>
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070023
24#include <asm/hardware/gic.h>
25#include <asm/hardware/cache-l2x0.h>
Santosh Shilimkar137d1052011-06-25 18:04:31 -070026#include <asm/mach/map.h>
Russell King716a3dc2012-01-13 15:00:51 +000027#include <asm/memblock.h>
Colin Crosscd8ce152012-10-18 12:20:08 +030028#include <asm/smp_twd.h>
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070029
Santosh Shilimkar137d1052011-06-25 18:04:31 -070030#include <plat/sram.h>
Santosh Shilimkar2ec1fc42012-02-02 19:33:55 +053031#include <plat/omap-secure.h>
Balaji T K1ee47b02012-04-25 17:27:46 +053032#include <plat/mmc.h>
Tony Lindgren741e3a82011-05-17 03:51:26 -070033
Tony Lindgren732231a2012-09-20 11:41:16 -070034#include "omap-wakeupgen.h"
Tony Lindgren4e653312011-11-10 22:45:17 +010035
Tony Lindgrendbc04162012-08-31 10:59:07 -070036#include "soc.h"
Tony Lindgren4e653312011-11-10 22:45:17 +010037#include "common.h"
Balaji T K1ee47b02012-04-25 17:27:46 +053038#include "hsmmc.h"
Santosh Shilimkar501f0c72011-01-01 19:56:04 +053039#include "omap4-sar-layout.h"
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070040
41#ifdef CONFIG_CACHE_L2X0
Santosh Shilimkar02afe8a2011-03-03 18:03:25 +053042static void __iomem *l2cache_base;
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070043#endif
44
Santosh Shilimkar501f0c72011-01-01 19:56:04 +053045static void __iomem *sar_ram_base;
Santosh Shilimkarff999b82012-10-18 12:20:05 +030046static void __iomem *gic_dist_base_addr;
Colin Crosscd8ce152012-10-18 12:20:08 +030047static void __iomem *twd_base;
48
49#define IRQ_LOCALTIMER 29
Santosh Shilimkar501f0c72011-01-01 19:56:04 +053050
Santosh Shilimkar137d1052011-06-25 18:04:31 -070051#ifdef CONFIG_OMAP4_ERRATA_I688
52/* Used to implement memory barrier on DRAM path */
53#define OMAP4_DRAM_BARRIER_VA 0xfe600000
54
55void __iomem *dram_sync, *sram_sync;
56
Santosh Shilimkar2ec1fc42012-02-02 19:33:55 +053057static phys_addr_t paddr;
58static u32 size;
59
Santosh Shilimkar137d1052011-06-25 18:04:31 -070060void omap_bus_sync(void)
61{
62 if (dram_sync && sram_sync) {
63 writel_relaxed(readl_relaxed(dram_sync), dram_sync);
64 writel_relaxed(readl_relaxed(sram_sync), sram_sync);
65 isb();
66 }
67}
R Sricharancc4ad902012-03-02 16:31:18 +053068EXPORT_SYMBOL(omap_bus_sync);
Santosh Shilimkar137d1052011-06-25 18:04:31 -070069
Santosh Shilimkar2ec1fc42012-02-02 19:33:55 +053070/* Steal one page physical memory for barrier implementation */
71int __init omap_barrier_reserve_memblock(void)
Santosh Shilimkar137d1052011-06-25 18:04:31 -070072{
Santosh Shilimkar137d1052011-06-25 18:04:31 -070073
74 size = ALIGN(PAGE_SIZE, SZ_1M);
Russell King716a3dc2012-01-13 15:00:51 +000075 paddr = arm_memblock_steal(size, SZ_1M);
76
Santosh Shilimkar2ec1fc42012-02-02 19:33:55 +053077 return 0;
78}
79
80void __init omap_barriers_init(void)
81{
82 struct map_desc dram_io_desc[1];
83
Santosh Shilimkar137d1052011-06-25 18:04:31 -070084 dram_io_desc[0].virtual = OMAP4_DRAM_BARRIER_VA;
85 dram_io_desc[0].pfn = __phys_to_pfn(paddr);
86 dram_io_desc[0].length = size;
87 dram_io_desc[0].type = MT_MEMORY_SO;
88 iotable_init(dram_io_desc, ARRAY_SIZE(dram_io_desc));
89 dram_sync = (void __iomem *) dram_io_desc[0].virtual;
90 sram_sync = (void __iomem *) OMAP4_SRAM_VA;
91
92 pr_info("OMAP4: Map 0x%08llx to 0x%08lx for dram barrier\n",
93 (long long) paddr, dram_io_desc[0].virtual);
94
Santosh Shilimkar137d1052011-06-25 18:04:31 -070095}
Santosh Shilimkar2ec1fc42012-02-02 19:33:55 +053096#else
97void __init omap_barriers_init(void)
98{}
Santosh Shilimkar137d1052011-06-25 18:04:31 -070099#endif
100
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700101void __init gic_init_irq(void)
102{
Marc Zyngierab65be22011-11-15 17:22:45 +0000103 void __iomem *omap_irq_base;
Marc Zyngierab65be22011-11-15 17:22:45 +0000104
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700105 /* Static mapping, never released */
106 gic_dist_base_addr = ioremap(OMAP44XX_GIC_DIST_BASE, SZ_4K);
107 BUG_ON(!gic_dist_base_addr);
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700108
Colin Crosscd8ce152012-10-18 12:20:08 +0300109 twd_base = ioremap(OMAP44XX_LOCAL_TWD_BASE, SZ_4K);
110 BUG_ON(!twd_base);
111
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700112 /* Static mapping, never released */
Tony Lindgren741e3a82011-05-17 03:51:26 -0700113 omap_irq_base = ioremap(OMAP44XX_GIC_CPU_BASE, SZ_512);
114 BUG_ON(!omap_irq_base);
Russell Kingb580b892010-12-04 15:55:14 +0000115
Santosh Shilimkarfcf6efa2010-06-16 22:19:47 +0530116 omap_wakeupgen_init();
117
Tony Lindgren741e3a82011-05-17 03:51:26 -0700118 gic_init(0, 29, gic_dist_base_addr, omap_irq_base);
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700119}
120
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300121void gic_dist_disable(void)
122{
123 if (gic_dist_base_addr)
124 __raw_writel(0x0, gic_dist_base_addr + GIC_DIST_CTRL);
125}
126
Colin Crosscd8ce152012-10-18 12:20:08 +0300127bool gic_dist_disabled(void)
128{
129 return !(__raw_readl(gic_dist_base_addr + GIC_DIST_CTRL) & 0x1);
130}
131
132void gic_timer_retrigger(void)
133{
134 u32 twd_int = __raw_readl(twd_base + TWD_TIMER_INTSTAT);
135 u32 gic_int = __raw_readl(gic_dist_base_addr + GIC_DIST_PENDING_SET);
136 u32 twd_ctrl = __raw_readl(twd_base + TWD_TIMER_CONTROL);
137
138 if (twd_int && !(gic_int & BIT(IRQ_LOCALTIMER))) {
139 /*
140 * The local timer interrupt got lost while the distributor was
141 * disabled. Ack the pending interrupt, and retrigger it.
142 */
143 pr_warn("%s: lost localtimer interrupt\n", __func__);
144 __raw_writel(1, twd_base + TWD_TIMER_INTSTAT);
145 if (!(twd_ctrl & TWD_TIMER_CONTROL_PERIODIC)) {
146 __raw_writel(1, twd_base + TWD_TIMER_COUNTER);
147 twd_ctrl |= TWD_TIMER_CONTROL_ENABLE;
148 __raw_writel(twd_ctrl, twd_base + TWD_TIMER_CONTROL);
149 }
150 }
151}
152
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700153#ifdef CONFIG_CACHE_L2X0
Santosh Shilimkar4e803c42010-07-31 21:40:10 +0530154
Santosh Shilimkar02afe8a2011-03-03 18:03:25 +0530155void __iomem *omap4_get_l2cache_base(void)
156{
157 return l2cache_base;
158}
159
Santosh Shilimkar4e803c42010-07-31 21:40:10 +0530160static void omap4_l2x0_disable(void)
161{
162 /* Disable PL310 L2 Cache controller */
163 omap_smc1(0x102, 0x0);
164}
165
Santosh Shilimkar4bdb1572011-02-22 10:00:44 +0100166static void omap4_l2x0_set_debug(unsigned long val)
167{
168 /* Program PL310 L2 Cache controller debug register */
169 omap_smc1(0x100, val);
170}
171
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700172static int __init omap_l2_cache_init(void)
173{
Santosh Shilimkar1773e602010-11-19 23:01:03 +0530174 u32 aux_ctrl = 0;
175
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700176 /*
177 * To avoid code running on other OMAPs in
178 * multi-omap builds
179 */
180 if (!cpu_is_omap44xx())
181 return -ENODEV;
182
183 /* Static mapping, never released */
184 l2cache_base = ioremap(OMAP44XX_L2CACHE_BASE, SZ_4K);
Santosh Shilimkar0db18032011-03-03 17:36:52 +0530185 if (WARN_ON(!l2cache_base))
186 return -ENOMEM;
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700187
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700188 /*
Santosh Shilimkara777b722010-09-16 18:44:47 +0530189 * 16-way associativity, parity disabled
190 * Way size - 32KB (es1.0)
191 * Way size - 64KB (es2.0 +)
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700192 */
Santosh Shilimkar1773e602010-11-19 23:01:03 +0530193 aux_ctrl = ((1 << L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT) |
194 (0x1 << 25) |
195 (0x1 << L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT) |
196 (0x1 << L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT));
197
Mans Rullgard11e02642010-11-19 23:01:04 +0530198 if (omap_rev() == OMAP4430_REV_ES1_0) {
Santosh Shilimkar1773e602010-11-19 23:01:03 +0530199 aux_ctrl |= 0x2 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT;
Mans Rullgard11e02642010-11-19 23:01:04 +0530200 } else {
201 aux_ctrl |= ((0x3 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT) |
Santosh Shilimkarb0f20ff2010-11-19 23:01:05 +0530202 (1 << L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT) |
Mans Rullgard11e02642010-11-19 23:01:04 +0530203 (1 << L2X0_AUX_CTRL_DATA_PREFETCH_SHIFT) |
Santosh Shilimkarb89cd712010-11-19 23:01:06 +0530204 (1 << L2X0_AUX_CTRL_INSTR_PREFETCH_SHIFT) |
205 (1 << L2X0_AUX_CTRL_EARLY_BRESP_SHIFT));
Mans Rullgard11e02642010-11-19 23:01:04 +0530206 }
207 if (omap_rev() != OMAP4430_REV_ES1_0)
208 omap_smc1(0x109, aux_ctrl);
209
210 /* Enable PL310 L2 Cache controller */
211 omap_smc1(0x102, 0x1);
Santosh Shilimkar1773e602010-11-19 23:01:03 +0530212
Santosh Shilimkar926fd452012-07-04 17:57:34 +0530213 if (of_have_populated_dt())
214 l2x0_of_init(aux_ctrl, L2X0_AUX_CTRL_MASK);
215 else
216 l2x0_init(l2cache_base, aux_ctrl, L2X0_AUX_CTRL_MASK);
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700217
Santosh Shilimkar4e803c42010-07-31 21:40:10 +0530218 /*
219 * Override default outer_cache.disable with a OMAP4
220 * specific one
221 */
222 outer_cache.disable = omap4_l2x0_disable;
Santosh Shilimkar4bdb1572011-02-22 10:00:44 +0100223 outer_cache.set_debug = omap4_l2x0_set_debug;
Santosh Shilimkar4e803c42010-07-31 21:40:10 +0530224
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700225 return 0;
226}
227early_initcall(omap_l2_cache_init);
228#endif
Santosh Shilimkar501f0c72011-01-01 19:56:04 +0530229
230void __iomem *omap4_get_sar_ram_base(void)
231{
232 return sar_ram_base;
233}
234
235/*
236 * SAR RAM used to save and restore the HW
237 * context in low power modes
238 */
239static int __init omap4_sar_ram_init(void)
240{
241 /*
242 * To avoid code running on other OMAPs in
243 * multi-omap builds
244 */
245 if (!cpu_is_omap44xx())
246 return -ENOMEM;
247
248 /* Static mapping, never released */
249 sar_ram_base = ioremap(OMAP44XX_SAR_RAM_BASE, SZ_16K);
250 if (WARN_ON(!sar_ram_base))
251 return -ENOMEM;
252
253 return 0;
254}
255early_initcall(omap4_sar_ram_init);
Balaji T K1ee47b02012-04-25 17:27:46 +0530256
R Sricharanc4082d42012-06-05 16:31:06 +0530257static struct of_device_id irq_match[] __initdata = {
258 { .compatible = "arm,cortex-a9-gic", .data = gic_of_init, },
R Sricharan0c1b6fa2012-05-09 23:34:56 +0530259 { .compatible = "arm,cortex-a15-gic", .data = gic_of_init, },
R Sricharanc4082d42012-06-05 16:31:06 +0530260 { }
261};
262
263void __init omap_gic_of_init(void)
264{
265 omap_wakeupgen_init();
266 of_irq_init(irq_match);
267}
268
Balaji T K1ee47b02012-04-25 17:27:46 +0530269#if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
270static int omap4_twl6030_hsmmc_late_init(struct device *dev)
271{
272 int irq = 0;
273 struct platform_device *pdev = container_of(dev,
274 struct platform_device, dev);
275 struct omap_mmc_platform_data *pdata = dev->platform_data;
276
277 /* Setting MMC1 Card detect Irq */
278 if (pdev->id == 0) {
279 irq = twl6030_mmc_card_detect_config();
280 if (irq < 0) {
281 dev_err(dev, "%s: Error card detect config(%d)\n",
282 __func__, irq);
283 return irq;
284 }
285 pdata->slots[0].card_detect_irq = irq;
286 pdata->slots[0].card_detect = twl6030_mmc_card_detect;
287 }
288 return 0;
289}
290
291static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
292{
293 struct omap_mmc_platform_data *pdata;
294
295 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
296 if (!dev) {
297 pr_err("Failed %s\n", __func__);
298 return;
299 }
300 pdata = dev->platform_data;
301 pdata->init = omap4_twl6030_hsmmc_late_init;
302}
303
304int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
305{
306 struct omap2_hsmmc_info *c;
307
308 omap_hsmmc_init(controllers);
309 for (c = controllers; c->mmc; c++) {
310 /* pdev can be null if CONFIG_MMC_OMAP_HS is not set */
311 if (!c->pdev)
312 continue;
313 omap4_twl6030_hsmmc_set_late_init(&c->pdev->dev);
314 }
315
316 return 0;
317}
318#else
319int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
320{
321 return 0;
322}
323#endif