blob: 49ac384d2814b46b749684d4a8a0563859327f09 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-versatile/core.c
3 *
4 * Copyright (C) 1999 - 2003 ARM Limited
5 * Copyright (C) 2000 Deep Blue Solutions Ltd
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
22#include <linux/device.h>
23#include <linux/dma-mapping.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010024#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/interrupt.h>
Grant Likely3ba72222011-07-26 03:19:06 -060026#include <linux/irqdomain.h>
27#include <linux/of_address.h>
28#include <linux/of_platform.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000029#include <linux/amba/bus.h>
30#include <linux/amba/clcd.h>
Russell Kingbbeddc42009-07-05 22:43:01 +010031#include <linux/amba/pl061.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010032#include <linux/amba/mmci.h>
Linus Walleijef6f4b12010-07-14 23:59:27 +010033#include <linux/amba/pl022.h>
Russell Kingfced80c2008-09-06 12:10:45 +010034#include <linux/io.h>
Rob Herring9e47b8b2013-01-07 09:45:59 -060035#include <linux/irqchip/arm-vic.h>
Linus Walleij2389d502012-10-31 22:04:31 +010036#include <linux/irqchip/versatile-fpga.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/gfp.h>
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010038#include <linux/clkdev.h>
Marc Zyngier68c0e382011-05-18 10:51:50 +010039#include <linux/mtd/physmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/irq.h>
Russell Kingb720f732005-06-29 15:15:54 +010042#include <asm/hardware/arm_timer.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000043#include <asm/hardware/icst.h>
Russell Kingdc5bc8f2006-07-10 16:33:54 +010044#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/mach/arch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/mach/irq.h>
48#include <asm/mach/time.h>
49#include <asm/mach/map.h>
Russell Kinga285edc2010-01-14 19:59:37 +000050#include <mach/hardware.h>
51#include <mach/platform.h>
Rob Herring8a9618f2010-10-06 16:18:08 +010052#include <asm/hardware/timer-sp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Russell King3414ba82011-01-18 20:12:10 +000054#include <plat/clcd.h>
Russell King1da0c892010-12-15 21:56:47 +000055#include <plat/sched_clock.h>
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include "core.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
60 * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
61 * is the (PA >> 12).
62 *
63 * Setup a VA for the Versatile Vectored Interrupt Controller.
64 */
Al Viro2ad4f862005-09-29 00:09:02 +010065#define VA_VIC_BASE __io_address(VERSATILE_VIC_BASE)
66#define VA_SIC_BASE __io_address(VERSATILE_SIC_BASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#if 1
69#define IRQ_MMCI0A IRQ_VICSOURCE22
70#define IRQ_AACI IRQ_VICSOURCE24
71#define IRQ_ETH IRQ_VICSOURCE25
72#define PIC_MASK 0xFFD00000
73#else
74#define IRQ_MMCI0A IRQ_SIC_MMCI0A
75#define IRQ_AACI IRQ_SIC_AACI
76#define IRQ_ETH IRQ_SIC_ETH
77#define PIC_MASK 0
78#endif
79
Grant Likely3ba72222011-07-26 03:19:06 -060080/* Lookup table for finding a DT node that represents the vic instance */
81static const struct of_device_id vic_of_match[] __initconst = {
82 { .compatible = "arm,versatile-vic", },
83 {}
84};
85
86static const struct of_device_id sic_of_match[] __initconst = {
87 { .compatible = "arm,versatile-sic", },
88 {}
89};
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091void __init versatile_init_irq(void)
92{
Grant Likely75294952012-02-14 14:06:57 -070093 struct device_node *np;
94
95 np = of_find_matching_node_by_address(NULL, vic_of_match,
96 VERSATILE_VIC_BASE);
97 __vic_init(VA_VIC_BASE, IRQ_VIC_START, ~0, 0, np);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 writel(~0, VA_SIC_BASE + SIC_IRQ_ENABLE_CLEAR);
100
Linus Walleij3108e6a2012-04-28 14:33:47 +0100101 np = of_find_matching_node_by_address(NULL, sic_of_match,
102 VERSATILE_SIC_BASE);
103
104 fpga_irq_init(VA_SIC_BASE, "SIC", IRQ_SIC_START,
105 IRQ_VICSOURCE31, ~PIC_MASK, np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 /*
108 * Interrupts on secondary controller from 0 to 8 are routed to
109 * source 31 on PIC.
110 * Interrupts from 21 to 31 are routed directly to the VIC on
111 * the corresponding number on primary controller. This is controlled
112 * by setting PIC_ENABLEx.
113 */
114 writel(PIC_MASK, VA_SIC_BASE + SIC_INT_PIC_ENABLE);
115}
116
117static struct map_desc versatile_io_desc[] __initdata = {
Deepak Saxena13115212005-10-28 15:19:06 +0100118 {
119 .virtual = IO_ADDRESS(VERSATILE_SYS_BASE),
120 .pfn = __phys_to_pfn(VERSATILE_SYS_BASE),
121 .length = SZ_4K,
122 .type = MT_DEVICE
123 }, {
124 .virtual = IO_ADDRESS(VERSATILE_SIC_BASE),
125 .pfn = __phys_to_pfn(VERSATILE_SIC_BASE),
126 .length = SZ_4K,
127 .type = MT_DEVICE
128 }, {
129 .virtual = IO_ADDRESS(VERSATILE_VIC_BASE),
130 .pfn = __phys_to_pfn(VERSATILE_VIC_BASE),
131 .length = SZ_4K,
132 .type = MT_DEVICE
133 }, {
134 .virtual = IO_ADDRESS(VERSATILE_SCTL_BASE),
135 .pfn = __phys_to_pfn(VERSATILE_SCTL_BASE),
136 .length = SZ_4K * 9,
137 .type = MT_DEVICE
138 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#ifdef CONFIG_MACH_VERSATILE_AB
Deepak Saxena13115212005-10-28 15:19:06 +0100140 {
Deepak Saxena13115212005-10-28 15:19:06 +0100141 .virtual = IO_ADDRESS(VERSATILE_IB2_BASE),
142 .pfn = __phys_to_pfn(VERSATILE_IB2_BASE),
143 .length = SZ_64M,
144 .type = MT_DEVICE
145 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#endif
147#ifdef CONFIG_DEBUG_LL
Deepak Saxena13115212005-10-28 15:19:06 +0100148 {
149 .virtual = IO_ADDRESS(VERSATILE_UART0_BASE),
150 .pfn = __phys_to_pfn(VERSATILE_UART0_BASE),
151 .length = SZ_4K,
152 .type = MT_DEVICE
153 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#endif
Catalin Marinasc0da0852005-06-20 18:51:06 +0100155#ifdef CONFIG_PCI
Deepak Saxena13115212005-10-28 15:19:06 +0100156 {
157 .virtual = IO_ADDRESS(VERSATILE_PCI_CORE_BASE),
158 .pfn = __phys_to_pfn(VERSATILE_PCI_CORE_BASE),
159 .length = SZ_4K,
160 .type = MT_DEVICE
161 }, {
Al Viro399ad772006-10-11 17:22:34 +0100162 .virtual = (unsigned long)VERSATILE_PCI_VIRT_BASE,
Deepak Saxena13115212005-10-28 15:19:06 +0100163 .pfn = __phys_to_pfn(VERSATILE_PCI_BASE),
164 .length = VERSATILE_PCI_BASE_SIZE,
165 .type = MT_DEVICE
166 }, {
Al Viro399ad772006-10-11 17:22:34 +0100167 .virtual = (unsigned long)VERSATILE_PCI_CFG_VIRT_BASE,
Deepak Saxena13115212005-10-28 15:19:06 +0100168 .pfn = __phys_to_pfn(VERSATILE_PCI_CFG_BASE),
169 .length = VERSATILE_PCI_CFG_BASE_SIZE,
170 .type = MT_DEVICE
Deepak Saxena13115212005-10-28 15:19:06 +0100171 },
Catalin Marinasc0da0852005-06-20 18:51:06 +0100172#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
175void __init versatile_map_io(void)
176{
177 iotable_init(versatile_io_desc, ARRAY_SIZE(versatile_io_desc));
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Al Viro2ad4f862005-09-29 00:09:02 +0100181#define VERSATILE_FLASHCTRL (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_FLASH_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Marc Zyngier667f3902011-05-18 10:51:55 +0100183static void versatile_flash_set_vpp(struct platform_device *pdev, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 u32 val;
186
187 val = __raw_readl(VERSATILE_FLASHCTRL);
188 if (on)
189 val |= VERSATILE_FLASHPROG_FLVPPEN;
190 else
191 val &= ~VERSATILE_FLASHPROG_FLVPPEN;
192 __raw_writel(val, VERSATILE_FLASHCTRL);
193}
194
Marc Zyngier68c0e382011-05-18 10:51:50 +0100195static struct physmap_flash_data versatile_flash_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 .width = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .set_vpp = versatile_flash_set_vpp,
198};
199
200static struct resource versatile_flash_resource = {
201 .start = VERSATILE_FLASH_BASE,
Yoav Steinberga0c5a642006-08-13 14:17:12 +0100202 .end = VERSATILE_FLASH_BASE + VERSATILE_FLASH_SIZE - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .flags = IORESOURCE_MEM,
204};
205
206static struct platform_device versatile_flash_device = {
Marc Zyngier68c0e382011-05-18 10:51:50 +0100207 .name = "physmap-flash",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .id = 0,
209 .dev = {
210 .platform_data = &versatile_flash_data,
211 },
212 .num_resources = 1,
213 .resource = &versatile_flash_resource,
214};
215
216static struct resource smc91x_resources[] = {
217 [0] = {
218 .start = VERSATILE_ETH_BASE,
219 .end = VERSATILE_ETH_BASE + SZ_64K - 1,
220 .flags = IORESOURCE_MEM,
221 },
222 [1] = {
223 .start = IRQ_ETH,
224 .end = IRQ_ETH,
225 .flags = IORESOURCE_IRQ,
226 },
227};
228
229static struct platform_device smc91x_device = {
230 .name = "smc91x",
231 .id = 0,
232 .num_resources = ARRAY_SIZE(smc91x_resources),
233 .resource = smc91x_resources,
234};
235
Russell King6b65cd72006-12-10 21:21:32 +0100236static struct resource versatile_i2c_resource = {
237 .start = VERSATILE_I2C_BASE,
238 .end = VERSATILE_I2C_BASE + SZ_4K - 1,
239 .flags = IORESOURCE_MEM,
240};
241
242static struct platform_device versatile_i2c_device = {
243 .name = "versatile-i2c",
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100244 .id = 0,
Russell King6b65cd72006-12-10 21:21:32 +0100245 .num_resources = 1,
246 .resource = &versatile_i2c_resource,
247};
248
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100249static struct i2c_board_info versatile_i2c_board_info[] = {
250 {
Russell King64e8be62009-07-18 15:51:55 +0100251 I2C_BOARD_INFO("ds1338", 0xd0 >> 1),
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100252 },
253};
254
255static int __init versatile_i2c_init(void)
256{
257 return i2c_register_board_info(0, versatile_i2c_board_info,
258 ARRAY_SIZE(versatile_i2c_board_info));
259}
260arch_initcall(versatile_i2c_init);
261
Al Viro2ad4f862005-09-29 00:09:02 +0100262#define VERSATILE_SYSMCI (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_MCI_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264unsigned int mmc_status(struct device *dev)
265{
266 struct amba_device *adev = container_of(dev, struct amba_device, dev);
267 u32 mask;
268
269 if (adev->res.start == VERSATILE_MMCI0_BASE)
270 mask = 1;
271 else
272 mask = 2;
273
274 return readl(VERSATILE_SYSMCI) & mask;
275}
276
Linus Walleij6ef297f2009-09-22 14:29:36 +0100277static struct mmci_platform_data mmc0_plat_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
279 .status = mmc_status,
Russell King7fb2bbf2009-07-09 15:15:12 +0100280 .gpio_wp = -1,
281 .gpio_cd = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282};
283
Grant Likelye2823262011-03-30 00:02:29 -0600284static struct resource char_lcd_resources[] = {
Linus Walleijd161edf2010-07-17 12:34:25 +0100285 {
286 .start = VERSATILE_CHAR_LCD_BASE,
287 .end = (VERSATILE_CHAR_LCD_BASE + SZ_4K - 1),
288 .flags = IORESOURCE_MEM,
289 },
290};
291
292static struct platform_device char_lcd_device = {
293 .name = "arm-charlcd",
294 .id = -1,
295 .num_resources = ARRAY_SIZE(char_lcd_resources),
296 .resource = char_lcd_resources,
297};
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/*
300 * Clock handling
301 */
Russell King39c0cb02010-01-16 16:27:28 +0000302static const struct icst_params versatile_oscvco_params = {
Russell King64fceb12010-01-16 17:28:44 +0000303 .ref = 24000000,
Russell King4de2edb2010-01-16 18:08:47 +0000304 .vco_max = ICST307_VCO_MAX,
Russell Kinge73a46a2010-01-16 19:49:39 +0000305 .vco_min = ICST307_VCO_MIN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .vd_min = 4 + 8,
307 .vd_max = 511 + 8,
308 .rd_min = 1 + 2,
309 .rd_max = 127 + 2,
Russell King232eaf72010-01-16 19:46:19 +0000310 .s2div = icst307_s2div,
311 .idx2s = icst307_idx2s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312};
313
Russell King39c0cb02010-01-16 16:27:28 +0000314static void versatile_oscvco_set(struct clk *clk, struct icst_vco vco)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Russell Kingd1914c72010-01-14 20:09:34 +0000316 void __iomem *sys_lock = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LOCK_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 u32 val;
318
Russell Kingd1914c72010-01-14 20:09:34 +0000319 val = readl(clk->vcoreg) & ~0x7ffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 val |= vco.v | (vco.r << 9) | (vco.s << 16);
321
322 writel(0xa05f, sys_lock);
Russell Kingd1914c72010-01-14 20:09:34 +0000323 writel(val, clk->vcoreg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 writel(0, sys_lock);
325}
326
Russell King9bf5b2e2010-03-01 16:18:39 +0000327static const struct clk_ops osc4_clk_ops = {
328 .round = icst_clk_round,
329 .set = icst_clk_set,
Russell King71a06da2008-11-08 20:13:53 +0000330 .setvco = versatile_oscvco_set,
331};
332
Russell King9bf5b2e2010-03-01 16:18:39 +0000333static struct clk osc4_clk = {
334 .ops = &osc4_clk_ops,
335 .params = &versatile_oscvco_params,
336};
337
Russell King71a06da2008-11-08 20:13:53 +0000338/*
339 * These are fixed clocks.
340 */
341static struct clk ref24_clk = {
342 .rate = 24000000,
343};
344
Russell King7ff550d2011-05-12 13:31:48 +0100345static struct clk sp804_clk = {
346 .rate = 1000000,
347};
348
Russell King3126c7b2010-07-15 11:01:17 +0100349static struct clk dummy_apb_pclk;
350
Rabin Vincent982db662009-05-18 17:29:30 +0100351static struct clk_lookup lookups[] = {
Russell King3126c7b2010-07-15 11:01:17 +0100352 { /* AMBA bus clock */
353 .con_id = "apb_pclk",
354 .clk = &dummy_apb_pclk,
355 }, { /* UART0 */
Russell King71a06da2008-11-08 20:13:53 +0000356 .dev_id = "dev:f1",
357 .clk = &ref24_clk,
358 }, { /* UART1 */
359 .dev_id = "dev:f2",
360 .clk = &ref24_clk,
361 }, { /* UART2 */
362 .dev_id = "dev:f3",
363 .clk = &ref24_clk,
364 }, { /* UART3 */
365 .dev_id = "fpga:09",
366 .clk = &ref24_clk,
367 }, { /* KMI0 */
368 .dev_id = "fpga:06",
369 .clk = &ref24_clk,
370 }, { /* KMI1 */
371 .dev_id = "fpga:07",
372 .clk = &ref24_clk,
373 }, { /* MMC0 */
374 .dev_id = "fpga:05",
375 .clk = &ref24_clk,
376 }, { /* MMC1 */
377 .dev_id = "fpga:0b",
378 .clk = &ref24_clk,
Linus Walleijef6f4b12010-07-14 23:59:27 +0100379 }, { /* SSP */
380 .dev_id = "dev:f4",
381 .clk = &ref24_clk,
Russell King71a06da2008-11-08 20:13:53 +0000382 }, { /* CLCD */
383 .dev_id = "dev:20",
384 .clk = &osc4_clk,
Russell King7ff550d2011-05-12 13:31:48 +0100385 }, { /* SP804 timers */
386 .dev_id = "sp804",
387 .clk = &sp804_clk,
388 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389};
390
391/*
392 * CLCD support.
393 */
394#define SYS_CLCD_MODE_MASK (3 << 0)
395#define SYS_CLCD_MODE_888 (0 << 0)
396#define SYS_CLCD_MODE_5551 (1 << 0)
397#define SYS_CLCD_MODE_565_RLSB (2 << 0)
398#define SYS_CLCD_MODE_565_BLSB (3 << 0)
399#define SYS_CLCD_NLCDIOON (1 << 2)
400#define SYS_CLCD_VDDPOSSWITCH (1 << 3)
401#define SYS_CLCD_PWR3V5SWITCH (1 << 4)
402#define SYS_CLCD_ID_MASK (0x1f << 8)
403#define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8)
404#define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
405#define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8)
406#define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8)
407#define SYS_CLCD_ID_VGA (0x1f << 8)
408
Russell King3414ba82011-01-18 20:12:10 +0000409static bool is_sanyo_2_5_lcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411/*
412 * Disable all display connectors on the interface module.
413 */
414static void versatile_clcd_disable(struct clcd_fb *fb)
415{
Al Viro2ad4f862005-09-29 00:09:02 +0100416 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 u32 val;
418
419 val = readl(sys_clcd);
420 val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
421 writel(val, sys_clcd);
422
423#ifdef CONFIG_MACH_VERSATILE_AB
424 /*
425 * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light off
426 */
Russell King3414ba82011-01-18 20:12:10 +0000427 if (machine_is_versatile_ab() && is_sanyo_2_5_lcd) {
Al Viro2ad4f862005-09-29 00:09:02 +0100428 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 unsigned long ctrl;
430
431 ctrl = readl(versatile_ib2_ctrl);
432 ctrl &= ~0x01;
433 writel(ctrl, versatile_ib2_ctrl);
434 }
435#endif
436}
437
438/*
439 * Enable the relevant connector on the interface module.
440 */
441static void versatile_clcd_enable(struct clcd_fb *fb)
442{
Russell King9728c1b2011-01-19 23:29:12 +0000443 struct fb_var_screeninfo *var = &fb->fb.var;
Al Viro2ad4f862005-09-29 00:09:02 +0100444 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 u32 val;
446
447 val = readl(sys_clcd);
448 val &= ~SYS_CLCD_MODE_MASK;
449
Russell King9728c1b2011-01-19 23:29:12 +0000450 switch (var->green.length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 case 5:
452 val |= SYS_CLCD_MODE_5551;
453 break;
454 case 6:
Russell King9728c1b2011-01-19 23:29:12 +0000455 if (var->red.offset == 0)
456 val |= SYS_CLCD_MODE_565_RLSB;
457 else
458 val |= SYS_CLCD_MODE_565_BLSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
460 case 8:
461 val |= SYS_CLCD_MODE_888;
462 break;
463 }
464
465 /*
466 * Set the MUX
467 */
468 writel(val, sys_clcd);
469
470 /*
471 * And now enable the PSUs
472 */
473 val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
474 writel(val, sys_clcd);
475
476#ifdef CONFIG_MACH_VERSATILE_AB
477 /*
478 * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light on
479 */
Russell King3414ba82011-01-18 20:12:10 +0000480 if (machine_is_versatile_ab() && is_sanyo_2_5_lcd) {
Al Viro2ad4f862005-09-29 00:09:02 +0100481 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 unsigned long ctrl;
483
484 ctrl = readl(versatile_ib2_ctrl);
485 ctrl |= 0x01;
486 writel(ctrl, versatile_ib2_ctrl);
487 }
488#endif
489}
490
Russell King3414ba82011-01-18 20:12:10 +0000491/*
492 * Detect which LCD panel is connected, and return the appropriate
493 * clcd_panel structure. Note: we do not have any information on
494 * the required timings for the 8.4in panel, so we presently assume
495 * VGA timings.
496 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static int versatile_clcd_setup(struct clcd_fb *fb)
498{
Russell King3414ba82011-01-18 20:12:10 +0000499 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
500 const char *panel_name;
501 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Russell King3414ba82011-01-18 20:12:10 +0000503 is_sanyo_2_5_lcd = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Russell King3414ba82011-01-18 20:12:10 +0000505 val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
506 if (val == SYS_CLCD_ID_SANYO_3_8)
507 panel_name = "Sanyo TM38QV67A02A";
508 else if (val == SYS_CLCD_ID_SANYO_2_5) {
509 panel_name = "Sanyo QVGA Portrait";
510 is_sanyo_2_5_lcd = true;
511 } else if (val == SYS_CLCD_ID_EPSON_2_2)
512 panel_name = "Epson L2F50113T00";
513 else if (val == SYS_CLCD_ID_VGA)
514 panel_name = "VGA";
515 else {
516 printk(KERN_ERR "CLCD: unknown LCD panel ID 0x%08x, using VGA\n",
517 val);
518 panel_name = "VGA";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520
Russell King3414ba82011-01-18 20:12:10 +0000521 fb->panel = versatile_clcd_get_panel(panel_name);
522 if (!fb->panel)
523 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Russell King3414ba82011-01-18 20:12:10 +0000525 return versatile_clcd_setup_dma(fb, SZ_1M);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Russell King9728c1b2011-01-19 23:29:12 +0000528static void versatile_clcd_decode(struct clcd_fb *fb, struct clcd_regs *regs)
529{
530 clcdfb_decode(fb, regs);
531
532 /* Always clear BGR for RGB565: we do the routing externally */
533 if (fb->fb.var.green.length == 6)
534 regs->cntl &= ~CNTL_BGR;
535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537static struct clcd_board clcd_plat_data = {
538 .name = "Versatile",
Russell King3414ba82011-01-18 20:12:10 +0000539 .caps = CLCD_CAP_5551 | CLCD_CAP_565 | CLCD_CAP_888,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 .check = clcdfb_check,
Russell King9728c1b2011-01-19 23:29:12 +0000541 .decode = versatile_clcd_decode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 .disable = versatile_clcd_disable,
543 .enable = versatile_clcd_enable,
544 .setup = versatile_clcd_setup,
Russell King3414ba82011-01-18 20:12:10 +0000545 .mmap = versatile_clcd_mmap_dma,
546 .remove = versatile_clcd_remove_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547};
548
Russell Kingbbeddc42009-07-05 22:43:01 +0100549static struct pl061_platform_data gpio0_plat_data = {
550 .gpio_base = 0,
551 .irq_base = IRQ_GPIO0_START,
552};
553
554static struct pl061_platform_data gpio1_plat_data = {
555 .gpio_base = 8,
556 .irq_base = IRQ_GPIO1_START,
557};
558
Linus Walleijef6f4b12010-07-14 23:59:27 +0100559static struct pl022_ssp_controller ssp0_plat_data = {
560 .bus_id = 0,
561 .enable_dma = 0,
562 .num_chipselect = 1,
563};
564
Russell King0dada612011-12-18 11:40:46 +0000565#define AACI_IRQ { IRQ_AACI }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566#define MMCI0_IRQ { IRQ_MMCI0A,IRQ_SIC_MMCI0B }
Russell King0dada612011-12-18 11:40:46 +0000567#define KMI0_IRQ { IRQ_SIC_KMI0 }
568#define KMI1_IRQ { IRQ_SIC_KMI1 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570/*
571 * These devices are connected directly to the multi-layer AHB switch
572 */
Russell King0dada612011-12-18 11:40:46 +0000573#define SMC_IRQ { }
574#define MPMC_IRQ { }
575#define CLCD_IRQ { IRQ_CLCDINT }
576#define DMAC_IRQ { IRQ_DMAINT }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578/*
579 * These devices are connected via the core APB bridge
580 */
Russell King0dada612011-12-18 11:40:46 +0000581#define SCTL_IRQ { }
582#define WATCHDOG_IRQ { IRQ_WDOGINT }
583#define GPIO0_IRQ { IRQ_GPIOINT0 }
584#define GPIO1_IRQ { IRQ_GPIOINT1 }
585#define RTC_IRQ { IRQ_RTCINT }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587/*
588 * These devices are connected via the DMA APB bridge
589 */
Russell King0dada612011-12-18 11:40:46 +0000590#define SCI_IRQ { IRQ_SCIINT }
591#define UART0_IRQ { IRQ_UARTINT0 }
592#define UART1_IRQ { IRQ_UARTINT1 }
593#define UART2_IRQ { IRQ_UARTINT2 }
594#define SSP_IRQ { IRQ_SSPINT }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596/* FPGA Primecells */
Russell King8f5088b2011-12-18 12:21:09 +0000597APB_DEVICE(aaci, "fpga:04", AACI, NULL);
598APB_DEVICE(mmc0, "fpga:05", MMCI0, &mmc0_plat_data);
599APB_DEVICE(kmi0, "fpga:06", KMI0, NULL);
600APB_DEVICE(kmi1, "fpga:07", KMI1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602/* DevChip Primecells */
Russell King8f5088b2011-12-18 12:21:09 +0000603AHB_DEVICE(smc, "dev:00", SMC, NULL);
604AHB_DEVICE(mpmc, "dev:10", MPMC, NULL);
605AHB_DEVICE(clcd, "dev:20", CLCD, &clcd_plat_data);
606AHB_DEVICE(dmac, "dev:30", DMAC, NULL);
607APB_DEVICE(sctl, "dev:e0", SCTL, NULL);
608APB_DEVICE(wdog, "dev:e1", WATCHDOG, NULL);
609APB_DEVICE(gpio0, "dev:e4", GPIO0, &gpio0_plat_data);
610APB_DEVICE(gpio1, "dev:e5", GPIO1, &gpio1_plat_data);
611APB_DEVICE(rtc, "dev:e8", RTC, NULL);
612APB_DEVICE(sci0, "dev:f0", SCI, NULL);
613APB_DEVICE(uart0, "dev:f1", UART0, NULL);
614APB_DEVICE(uart1, "dev:f2", UART1, NULL);
615APB_DEVICE(uart2, "dev:f3", UART2, NULL);
616APB_DEVICE(ssp0, "dev:f4", SSP, &ssp0_plat_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618static struct amba_device *amba_devs[] __initdata = {
619 &dmac_device,
620 &uart0_device,
621 &uart1_device,
622 &uart2_device,
623 &smc_device,
624 &mpmc_device,
625 &clcd_device,
626 &sctl_device,
627 &wdog_device,
628 &gpio0_device,
629 &gpio1_device,
630 &rtc_device,
631 &sci0_device,
632 &ssp0_device,
633 &aaci_device,
634 &mmc0_device,
635 &kmi0_device,
636 &kmi1_device,
637};
638
Grant Likely3ba72222011-07-26 03:19:06 -0600639#ifdef CONFIG_OF
640/*
641 * Lookup table for attaching a specific name and platform_data pointer to
642 * devices as they get created by of_platform_populate(). Ideally this table
643 * would not exist, but the current clock implementation depends on some devices
644 * having a specific name.
645 */
646struct of_dev_auxdata versatile_auxdata_lookup[] __initdata = {
Linus Walleijd12379a2012-04-18 22:27:28 +0100647 OF_DEV_AUXDATA("arm,primecell", VERSATILE_MMCI0_BASE, "fpga:05", &mmc0_plat_data),
Grant Likely3ba72222011-07-26 03:19:06 -0600648 OF_DEV_AUXDATA("arm,primecell", VERSATILE_KMI0_BASE, "fpga:06", NULL),
649 OF_DEV_AUXDATA("arm,primecell", VERSATILE_KMI1_BASE, "fpga:07", NULL),
650 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART3_BASE, "fpga:09", NULL),
Linus Walleijd12379a2012-04-18 22:27:28 +0100651 /* FIXME: this is buggy, the platform data is needed for this MMC instance too */
Grant Likely3ba72222011-07-26 03:19:06 -0600652 OF_DEV_AUXDATA("arm,primecell", VERSATILE_MMCI1_BASE, "fpga:0b", NULL),
653
654 OF_DEV_AUXDATA("arm,primecell", VERSATILE_CLCD_BASE, "dev:20", &clcd_plat_data),
655 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART0_BASE, "dev:f1", NULL),
656 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART1_BASE, "dev:f2", NULL),
657 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART2_BASE, "dev:f3", NULL),
Linus Walleijd12379a2012-04-18 22:27:28 +0100658 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SSP_BASE, "dev:f4", &ssp0_plat_data),
Grant Likely3ba72222011-07-26 03:19:06 -0600659
660#if 0
661 /*
662 * These entries are unnecessary because no clocks referencing
663 * them. I've left them in for now as place holders in case
664 * any of them need to be added back, but they should be
665 * removed before actually committing this patch. --gcl
666 */
667 OF_DEV_AUXDATA("arm,primecell", VERSATILE_AACI_BASE, "fpga:04", NULL),
668 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SCI1_BASE, "fpga:0a", NULL),
669 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SMC_BASE, "dev:00", NULL),
670 OF_DEV_AUXDATA("arm,primecell", VERSATILE_MPMC_BASE, "dev:10", NULL),
671 OF_DEV_AUXDATA("arm,primecell", VERSATILE_DMAC_BASE, "dev:30", NULL),
672
673 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SCTL_BASE, "dev:e0", NULL),
674 OF_DEV_AUXDATA("arm,primecell", VERSATILE_WATCHDOG_BASE, "dev:e1", NULL),
675 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO0_BASE, "dev:e4", NULL),
676 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO1_BASE, "dev:e5", NULL),
677 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO2_BASE, "dev:e6", NULL),
678 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO3_BASE, "dev:e7", NULL),
679 OF_DEV_AUXDATA("arm,primecell", VERSATILE_RTC_BASE, "dev:e8", NULL),
680 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SCI_BASE, "dev:f0", NULL),
681#endif
682 {}
683};
684#endif
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#ifdef CONFIG_LEDS
Al Viro2ad4f862005-09-29 00:09:02 +0100687#define VA_LEDS_BASE (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LED_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689static void versatile_leds_event(led_event_t ledevt)
690{
691 unsigned long flags;
692 u32 val;
693
694 local_irq_save(flags);
695 val = readl(VA_LEDS_BASE);
696
697 switch (ledevt) {
698 case led_idle_start:
699 val = val & ~VERSATILE_SYS_LED0;
700 break;
701
702 case led_idle_end:
703 val = val | VERSATILE_SYS_LED0;
704 break;
705
706 case led_timer:
707 val = val ^ VERSATILE_SYS_LED1;
708 break;
709
710 case led_halted:
711 val = 0;
712 break;
713
714 default:
715 break;
716 }
717
718 writel(val, VA_LEDS_BASE);
719 local_irq_restore(flags);
720}
721#endif /* CONFIG_LEDS */
722
Russell Kingb56a7c62011-11-03 11:43:08 +0000723void versatile_restart(char mode, const char *cmd)
724{
725 void __iomem *sys = __io_address(VERSATILE_SYS_BASE);
726 u32 val;
727
728 val = __raw_readl(sys + VERSATILE_SYS_RESETCTL_OFFSET);
729 val |= 0x105;
730
731 __raw_writel(0xa05f, sys + VERSATILE_SYS_LOCK_OFFSET);
732 __raw_writel(val, sys + VERSATILE_SYS_RESETCTL_OFFSET);
733 __raw_writel(0, sys + VERSATILE_SYS_LOCK_OFFSET);
734}
735
Russell Kingad3bb192011-01-11 12:55:38 +0000736/* Early initializations */
737void __init versatile_init_early(void)
738{
739 void __iomem *sys = __io_address(VERSATILE_SYS_BASE);
740
741 osc4_clk.vcoreg = sys + VERSATILE_SYS_OSCCLCD_OFFSET;
742 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
743
744 versatile_sched_clock_init(sys + VERSATILE_SYS_24MHz_OFFSET, 24000000);
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747void __init versatile_init(void)
748{
749 int i;
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 platform_device_register(&versatile_flash_device);
Russell King6b65cd72006-12-10 21:21:32 +0100752 platform_device_register(&versatile_i2c_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 platform_device_register(&smc91x_device);
Linus Walleijd161edf2010-07-17 12:34:25 +0100754 platform_device_register(&char_lcd_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
757 struct amba_device *d = amba_devs[i];
758 amba_device_register(d, &iomem_resource);
759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762/*
763 * Where is the timer (VA)?
764 */
Al Viro2ad4f862005-09-29 00:09:02 +0100765#define TIMER0_VA_BASE __io_address(VERSATILE_TIMER0_1_BASE)
766#define TIMER1_VA_BASE (__io_address(VERSATILE_TIMER0_1_BASE) + 0x20)
767#define TIMER2_VA_BASE __io_address(VERSATILE_TIMER2_3_BASE)
768#define TIMER3_VA_BASE (__io_address(VERSATILE_TIMER2_3_BASE) + 0x20)
Kevin Hilmanb49c87c2007-03-08 20:25:13 +0100769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770/*
771 * Set up timer interrupt, and return the current time in seconds.
772 */
773static void __init versatile_timer_init(void)
774{
Russell Kingb720f732005-06-29 15:15:54 +0100775 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 /*
778 * set clock frequency:
779 * VERSATILE_REFCLK is 32KHz
780 * VERSATILE_TIMCLK is 1MHz
781 */
Al Viro2ad4f862005-09-29 00:09:02 +0100782 val = readl(__io_address(VERSATILE_SCTL_BASE));
Russell Kingb720f732005-06-29 15:15:54 +0100783 writel((VERSATILE_TIMCLK << VERSATILE_TIMER1_EnSel) |
784 (VERSATILE_TIMCLK << VERSATILE_TIMER2_EnSel) |
785 (VERSATILE_TIMCLK << VERSATILE_TIMER3_EnSel) |
786 (VERSATILE_TIMCLK << VERSATILE_TIMER4_EnSel) | val,
Al Viro2ad4f862005-09-29 00:09:02 +0100787 __io_address(VERSATILE_SCTL_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 /*
790 * Initialise to a known state (all timers off)
791 */
Russell Kingb720f732005-06-29 15:15:54 +0100792 writel(0, TIMER0_VA_BASE + TIMER_CTRL);
793 writel(0, TIMER1_VA_BASE + TIMER_CTRL);
794 writel(0, TIMER2_VA_BASE + TIMER_CTRL);
795 writel(0, TIMER3_VA_BASE + TIMER_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Russell Kingfb593cf2011-05-12 12:08:23 +0100797 sp804_clocksource_init(TIMER3_VA_BASE, "timer3");
Russell King57cc4f72011-05-12 15:31:13 +0100798 sp804_clockevents_init(TIMER0_VA_BASE, IRQ_TIMERINT0_1, "timer0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801struct sys_timer versatile_timer = {
802 .init = versatile_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803};
Kevin Hilmanb49c87c2007-03-08 20:25:13 +0100804