blob: a3ef961e4a93335308e4bf914e9fb7dceb59f8d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-integrator/integrator_cp.c
3 *
4 * Copyright (C) 2003 Deep Blue Solutions Ltd
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License.
9 */
10#include <linux/types.h>
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/list.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010014#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Kay Sieversedbaa602011-12-21 16:26:03 -080017#include <linux/device.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000018#include <linux/amba/bus.h>
19#include <linux/amba/kmi.h>
20#include <linux/amba/clcd.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010021#include <linux/amba/mmci.h>
Russell Kingfced80c2008-09-06 12:10:45 +010022#include <linux/io.h>
Linus Walleij2389d502012-10-31 22:04:31 +010023#include <linux/irqchip/versatile-fpga.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/gfp.h>
Marc Zyngier046dfa02011-05-18 10:51:53 +010025#include <linux/mtd/physmap.h>
Linus Walleija6131632012-06-11 17:33:12 +020026#include <linux/platform_data/clk-integrator.h>
Linus Walleij4980f9b2012-09-06 09:08:24 +010027#include <linux/of_irq.h>
28#include <linux/of_address.h>
Linus Walleij4672cdd2012-09-06 09:08:47 +010029#include <linux/of_platform.h>
Linus Walleij64100a02012-11-02 01:20:43 +010030#include <linux/sys_soc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/hardware.h>
Russell Kinga285edc2010-01-14 19:59:37 +000033#include <mach/platform.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/setup.h>
35#include <asm/mach-types.h>
Russell King5a463342010-01-16 23:52:12 +000036#include <asm/hardware/arm_timer.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000037#include <asm/hardware/icst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Russell Kinga09e64f2008-08-05 16:14:15 +010039#include <mach/lm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/mach/arch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/mach/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/mach/map.h>
44#include <asm/mach/time.h>
45
Rob Herring8a9618f2010-10-06 16:18:08 +010046#include <asm/hardware/timer-sp.h>
Russell King5a463342010-01-16 23:52:12 +000047
Russell King9dfec4f2011-01-18 20:10:10 +000048#include <plat/clcd.h>
Russell Kingd77e2702011-01-22 11:37:54 +000049#include <plat/sched_clock.h>
Russell King9dfec4f2011-01-18 20:10:10 +000050
Linus Walleijbb4dbef2013-06-16 02:44:27 +020051#include "cm.h"
Russell King98c672c2010-05-22 18:18:57 +010052#include "common.h"
53
Linus Walleije6fae082012-11-04 21:03:02 +010054/* Base address to the CP controller */
55static void __iomem *intcp_con_base;
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define INTCP_PA_FLASH_BASE 0x24000000
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define INTCP_PA_CLCD_BASE 0xc0000000
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define INTCP_FLASHPROG 0x04
62#define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0)
63#define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1)
64
65/*
66 * Logical Physical
Linus Walleij608914b2014-01-24 14:04:28 +010067 * f1000000 10000000 Core module registers
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * f1300000 13000000 Counter/Timer
69 * f1400000 14000000 Interrupt controller
70 * f1600000 16000000 UART 0
71 * f1700000 17000000 UART 1
72 * f1a00000 1a000000 Debug LEDs
Russell Kingda7ba952010-01-17 19:59:58 +000073 * fc900000 c9000000 GPIO
74 * fca00000 ca000000 SIC
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
76
Arnd Bergmann060fd1b2013-02-14 13:50:57 +010077static struct map_desc intcp_io_desc[] __initdata __maybe_unused = {
Deepak Saxenac8d27292005-10-28 15:19:10 +010078 {
Linus Walleij608914b2014-01-24 14:04:28 +010079 .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE),
80 .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE),
81 .length = SZ_4K,
82 .type = MT_DEVICE
83 }, {
Deepak Saxenac8d27292005-10-28 15:19:10 +010084 .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE),
85 .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE),
86 .length = SZ_4K,
87 .type = MT_DEVICE
88 }, {
89 .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
90 .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
91 .length = SZ_4K,
92 .type = MT_DEVICE
93 }, {
94 .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
95 .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
96 .length = SZ_4K,
97 .type = MT_DEVICE
98 }, {
Deepak Saxenac8d27292005-10-28 15:19:10 +010099 .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
100 .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
101 .length = SZ_4K,
102 .type = MT_DEVICE
103 }, {
Russell Kingda7ba952010-01-17 19:59:58 +0000104 .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE),
105 .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE),
Deepak Saxenac8d27292005-10-28 15:19:10 +0100106 .length = SZ_4K,
107 .type = MT_DEVICE
108 }, {
Russell Kingda7ba952010-01-17 19:59:58 +0000109 .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE),
110 .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE),
Deepak Saxenac8d27292005-10-28 15:19:10 +0100111 .length = SZ_4K,
112 .type = MT_DEVICE
Deepak Saxenac8d27292005-10-28 15:19:10 +0100113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
116static void __init intcp_map_io(void)
117{
118 iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc));
119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 * Flash handling.
123 */
Marc Zyngier046dfa02011-05-18 10:51:53 +0100124static int intcp_flash_init(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 u32 val;
127
Linus Walleije6fae082012-11-04 21:03:02 +0100128 val = readl(intcp_con_base + INTCP_FLASHPROG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 val |= CINTEGRATOR_FLASHPROG_FLWREN;
Linus Walleije6fae082012-11-04 21:03:02 +0100130 writel(val, intcp_con_base + INTCP_FLASHPROG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 return 0;
133}
134
Marc Zyngier046dfa02011-05-18 10:51:53 +0100135static void intcp_flash_exit(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 u32 val;
138
Linus Walleije6fae082012-11-04 21:03:02 +0100139 val = readl(intcp_con_base + INTCP_FLASHPROG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN);
Linus Walleije6fae082012-11-04 21:03:02 +0100141 writel(val, intcp_con_base + INTCP_FLASHPROG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Marc Zyngier667f3902011-05-18 10:51:55 +0100144static void intcp_flash_set_vpp(struct platform_device *pdev, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 u32 val;
147
Linus Walleije6fae082012-11-04 21:03:02 +0100148 val = readl(intcp_con_base + INTCP_FLASHPROG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (on)
150 val |= CINTEGRATOR_FLASHPROG_FLVPPEN;
151 else
152 val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN;
Linus Walleije6fae082012-11-04 21:03:02 +0100153 writel(val, intcp_con_base + INTCP_FLASHPROG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Marc Zyngier046dfa02011-05-18 10:51:53 +0100156static struct physmap_flash_data intcp_flash_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 .width = 4,
158 .init = intcp_flash_init,
159 .exit = intcp_flash_exit,
160 .set_vpp = intcp_flash_set_vpp,
161};
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
164 * It seems that the card insertion interrupt remains active after
165 * we've acknowledged it. We therefore ignore the interrupt, and
166 * rely on reading it from the SIC. This also means that we must
167 * clear the latched interrupt.
168 */
169static unsigned int mmc_status(struct device *dev)
170{
Arnd Bergmannb7a3f8d2012-09-14 20:16:39 +0000171 unsigned int status = readl(__io_address(0xca000000 + 4));
Linus Walleije6fae082012-11-04 21:03:02 +0100172 writel(8, intcp_con_base + 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 return status & 8;
175}
176
Linus Walleij6ef297f2009-09-22 14:29:36 +0100177static struct mmci_platform_data mmc_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
179 .status = mmc_status,
Russell King7fb2bbf2009-07-09 15:15:12 +0100180 .gpio_wp = -1,
181 .gpio_cd = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
185 * CLCD support
186 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/*
188 * Ensure VGA is selected.
189 */
190static void cp_clcd_enable(struct clcd_fb *fb)
191{
Russell Kinge6b9c1f2011-01-22 11:02:10 +0000192 struct fb_var_screeninfo *var = &fb->fb.var;
Jonathan Austin30aeadd2013-08-29 18:41:11 +0100193 u32 val = CM_CTRL_STATIC1 | CM_CTRL_STATIC2
194 | CM_CTRL_LCDEN0 | CM_CTRL_LCDEN1;
Russell King4774e222005-04-30 23:32:38 +0100195
Russell Kinge6b9c1f2011-01-22 11:02:10 +0000196 if (var->bits_per_pixel <= 8 ||
197 (var->bits_per_pixel == 16 && var->green.length == 5))
198 /* Pseudocolor, RGB555, BGR555 */
199 val |= CM_CTRL_LCDMUXSEL_VGA555_TFT555;
Russell King4774e222005-04-30 23:32:38 +0100200 else if (fb->fb.var.bits_per_pixel <= 16)
Russell Kinge6b9c1f2011-01-22 11:02:10 +0000201 /* truecolor RGB565 */
202 val |= CM_CTRL_LCDMUXSEL_VGA565_TFT555;
Russell King4774e222005-04-30 23:32:38 +0100203 else
204 val = 0; /* no idea for this, don't trust the docs */
205
206 cm_control(CM_CTRL_LCDMUXSEL_MASK|
207 CM_CTRL_LCDEN0|
208 CM_CTRL_LCDEN1|
209 CM_CTRL_STATIC1|
210 CM_CTRL_STATIC2|
211 CM_CTRL_STATIC|
212 CM_CTRL_n24BITEN, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215static int cp_clcd_setup(struct clcd_fb *fb)
216{
Russell King9dfec4f2011-01-18 20:10:10 +0000217 fb->panel = versatile_clcd_get_panel("VGA");
218 if (!fb->panel)
219 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Russell King9dfec4f2011-01-18 20:10:10 +0000221 return versatile_clcd_setup_dma(fb, SZ_1M);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224static struct clcd_board clcd_data = {
225 .name = "Integrator/CP",
Russell King9dfec4f2011-01-18 20:10:10 +0000226 .caps = CLCD_CAP_5551 | CLCD_CAP_RGB565 | CLCD_CAP_888,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .check = clcdfb_check,
228 .decode = clcdfb_decode,
229 .enable = cp_clcd_enable,
230 .setup = cp_clcd_setup,
Russell King9dfec4f2011-01-18 20:10:10 +0000231 .mmap = versatile_clcd_mmap_dma,
232 .remove = versatile_clcd_remove_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Russell Kingd77e2702011-01-22 11:37:54 +0000235#define REFCOUNTER (__io_address(INTEGRATOR_HDR_BASE) + 0x28)
236
Russell Kingc735c982011-01-11 13:00:04 +0000237static void __init intcp_init_early(void)
238{
Russell Kingd77e2702011-01-22 11:37:54 +0000239#ifdef CONFIG_PLAT_VERSATILE_SCHED_CLOCK
240 versatile_sched_clock_init(REFCOUNTER, 24000000);
241#endif
Russell Kingc735c982011-01-11 13:00:04 +0000242}
243
Linus Walleij4980f9b2012-09-06 09:08:24 +0100244static const struct of_device_id fpga_irq_of_match[] __initconst = {
245 { .compatible = "arm,versatile-fpga-irq", .data = fpga_irq_of_init, },
246 { /* Sentinel */ }
247};
248
249static void __init intcp_init_irq_of(void)
250{
Linus Walleijbb4dbef2013-06-16 02:44:27 +0200251 cm_init();
Linus Walleij4980f9b2012-09-06 09:08:24 +0100252 of_irq_init(fpga_irq_of_match);
253 integrator_clk_init(true);
254}
255
Linus Walleij4672cdd2012-09-06 09:08:47 +0100256/*
257 * For the Device Tree, add in the UART, MMC and CLCD specifics as AUXDATA
258 * and enforce the bus names since these are used for clock lookups.
259 */
260static struct of_dev_auxdata intcp_auxdata_lookup[] __initdata = {
261 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_RTC_BASE,
262 "rtc", NULL),
263 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE,
Linus Walleij379df272012-11-17 19:24:23 +0100264 "uart0", NULL),
Linus Walleij4672cdd2012-09-06 09:08:47 +0100265 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE,
Linus Walleij379df272012-11-17 19:24:23 +0100266 "uart1", NULL),
Linus Walleij4672cdd2012-09-06 09:08:47 +0100267 OF_DEV_AUXDATA("arm,primecell", KMI0_BASE,
268 "kmi0", NULL),
269 OF_DEV_AUXDATA("arm,primecell", KMI1_BASE,
270 "kmi1", NULL),
271 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_MMC_BASE,
272 "mmci", &mmc_data),
273 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_AACI_BASE,
274 "aaci", &mmc_data),
275 OF_DEV_AUXDATA("arm,primecell", INTCP_PA_CLCD_BASE,
276 "clcd", &clcd_data),
Linus Walleij73efd532012-09-06 09:09:11 +0100277 OF_DEV_AUXDATA("cfi-flash", INTCP_PA_FLASH_BASE,
278 "physmap-flash", &intcp_flash_data),
Linus Walleij4672cdd2012-09-06 09:08:47 +0100279 { /* sentinel */ },
280};
281
Linus Walleijdf366802013-10-10 18:24:58 +0200282static const struct of_device_id intcp_syscon_match[] = {
283 { .compatible = "arm,integrator-cp-syscon"},
284 { },
285};
286
Linus Walleij4672cdd2012-09-06 09:08:47 +0100287static void __init intcp_init_of(void)
288{
Linus Walleij64100a02012-11-02 01:20:43 +0100289 struct device_node *root;
290 struct device_node *cpcon;
291 struct device *parent;
292 struct soc_device *soc_dev;
293 struct soc_device_attribute *soc_dev_attr;
294 u32 intcp_sc_id;
295 int err;
296
297 /* Here we create an SoC device for the root node */
298 root = of_find_node_by_path("/");
299 if (!root)
300 return;
Linus Walleijdf366802013-10-10 18:24:58 +0200301
302 cpcon = of_find_matching_node(root, intcp_syscon_match);
Linus Walleij64100a02012-11-02 01:20:43 +0100303 if (!cpcon)
304 return;
305
306 intcp_con_base = of_iomap(cpcon, 0);
307 if (!intcp_con_base)
308 return;
309
310 intcp_sc_id = readl(intcp_con_base);
311
312 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
313 if (!soc_dev_attr)
314 return;
315
316 err = of_property_read_string(root, "compatible",
317 &soc_dev_attr->soc_id);
318 if (err)
319 return;
320 err = of_property_read_string(root, "model", &soc_dev_attr->machine);
321 if (err)
322 return;
323 soc_dev_attr->family = "Integrator";
324 soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c",
325 'A' + (intcp_sc_id & 0x0f));
326
327 soc_dev = soc_device_register(soc_dev_attr);
Russell Kingb269b172013-02-24 10:42:27 +0000328 if (IS_ERR(soc_dev)) {
Linus Walleij64100a02012-11-02 01:20:43 +0100329 kfree(soc_dev_attr->revision);
330 kfree(soc_dev_attr);
331 return;
332 }
333
334 parent = soc_device_to_device(soc_dev);
Russell Kingb269b172013-02-24 10:42:27 +0000335 integrator_init_sysfs(parent, intcp_sc_id);
Linus Walleij64100a02012-11-02 01:20:43 +0100336 of_platform_populate(root, of_default_bus_match_table,
337 intcp_auxdata_lookup, parent);
Linus Walleij4672cdd2012-09-06 09:08:47 +0100338}
339
Linus Walleij4980f9b2012-09-06 09:08:24 +0100340static const char * intcp_dt_board_compat[] = {
341 "arm,integrator-cp",
342 NULL,
343};
344
345DT_MACHINE_START(INTEGRATOR_CP_DT, "ARM Integrator/CP (Device Tree)")
346 .reserve = integrator_reserve,
347 .map_io = intcp_map_io,
Linus Walleij4980f9b2012-09-06 09:08:24 +0100348 .init_early = intcp_init_early,
349 .init_irq = intcp_init_irq_of,
350 .handle_irq = fpga_handle_irq,
Linus Walleij4672cdd2012-09-06 09:08:47 +0100351 .init_machine = intcp_init_of,
Linus Walleij4980f9b2012-09-06 09:08:24 +0100352 .restart = integrator_restart,
353 .dt_compat = intcp_dt_board_compat,
354MACHINE_END