blob: 6f5fb466a27325c74fa0ba54137e42f576b661b1 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/gfp.h>
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010036#include <linux/clkdev.h>
Marc Zyngier68c0e382011-05-18 10:51:50 +010037#include <linux/mtd/physmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/irq.h>
40#include <asm/leds.h>
Russell Kingb720f732005-06-29 15:15:54 +010041#include <asm/hardware/arm_timer.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000042#include <asm/hardware/icst.h>
Russell Kingfa0fe482006-01-13 21:30:48 +000043#include <asm/hardware/vic.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 Kingc41b16f2011-01-19 15:32:15 +000055#include <plat/fpga-irq.h>
Russell King1da0c892010-12-15 21:56:47 +000056#include <plat/sched_clock.h>
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include "core.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*
61 * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
62 * is the (PA >> 12).
63 *
64 * Setup a VA for the Versatile Vectored Interrupt Controller.
65 */
Al Viro2ad4f862005-09-29 00:09:02 +010066#define VA_VIC_BASE __io_address(VERSATILE_VIC_BASE)
67#define VA_SIC_BASE __io_address(VERSATILE_SIC_BASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#if 1
70#define IRQ_MMCI0A IRQ_VICSOURCE22
71#define IRQ_AACI IRQ_VICSOURCE24
72#define IRQ_ETH IRQ_VICSOURCE25
73#define PIC_MASK 0xFFD00000
74#else
75#define IRQ_MMCI0A IRQ_SIC_MMCI0A
76#define IRQ_AACI IRQ_SIC_AACI
77#define IRQ_ETH IRQ_SIC_ETH
78#define PIC_MASK 0
79#endif
80
Grant Likely3ba72222011-07-26 03:19:06 -060081/* Lookup table for finding a DT node that represents the vic instance */
82static const struct of_device_id vic_of_match[] __initconst = {
83 { .compatible = "arm,versatile-vic", },
84 {}
85};
86
87static const struct of_device_id sic_of_match[] __initconst = {
88 { .compatible = "arm,versatile-sic", },
89 {}
90};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092void __init versatile_init_irq(void)
93{
Grant Likely75294952012-02-14 14:06:57 -070094 struct device_node *np;
95
96 np = of_find_matching_node_by_address(NULL, vic_of_match,
97 VERSATILE_VIC_BASE);
98 __vic_init(VA_VIC_BASE, IRQ_VIC_START, ~0, 0, np);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 writel(~0, VA_SIC_BASE + SIC_IRQ_ENABLE_CLEAR);
101
Linus Walleij3108e6a2012-04-28 14:33:47 +0100102 np = of_find_matching_node_by_address(NULL, sic_of_match,
103 VERSATILE_SIC_BASE);
104
105 fpga_irq_init(VA_SIC_BASE, "SIC", IRQ_SIC_START,
106 IRQ_VICSOURCE31, ~PIC_MASK, np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 /*
109 * Interrupts on secondary controller from 0 to 8 are routed to
110 * source 31 on PIC.
111 * Interrupts from 21 to 31 are routed directly to the VIC on
112 * the corresponding number on primary controller. This is controlled
113 * by setting PIC_ENABLEx.
114 */
115 writel(PIC_MASK, VA_SIC_BASE + SIC_INT_PIC_ENABLE);
116}
117
118static struct map_desc versatile_io_desc[] __initdata = {
Deepak Saxena13115212005-10-28 15:19:06 +0100119 {
120 .virtual = IO_ADDRESS(VERSATILE_SYS_BASE),
121 .pfn = __phys_to_pfn(VERSATILE_SYS_BASE),
122 .length = SZ_4K,
123 .type = MT_DEVICE
124 }, {
125 .virtual = IO_ADDRESS(VERSATILE_SIC_BASE),
126 .pfn = __phys_to_pfn(VERSATILE_SIC_BASE),
127 .length = SZ_4K,
128 .type = MT_DEVICE
129 }, {
130 .virtual = IO_ADDRESS(VERSATILE_VIC_BASE),
131 .pfn = __phys_to_pfn(VERSATILE_VIC_BASE),
132 .length = SZ_4K,
133 .type = MT_DEVICE
134 }, {
135 .virtual = IO_ADDRESS(VERSATILE_SCTL_BASE),
136 .pfn = __phys_to_pfn(VERSATILE_SCTL_BASE),
137 .length = SZ_4K * 9,
138 .type = MT_DEVICE
139 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#ifdef CONFIG_MACH_VERSATILE_AB
Deepak Saxena13115212005-10-28 15:19:06 +0100141 {
Deepak Saxena13115212005-10-28 15:19:06 +0100142 .virtual = IO_ADDRESS(VERSATILE_IB2_BASE),
143 .pfn = __phys_to_pfn(VERSATILE_IB2_BASE),
144 .length = SZ_64M,
145 .type = MT_DEVICE
146 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#endif
148#ifdef CONFIG_DEBUG_LL
Deepak Saxena13115212005-10-28 15:19:06 +0100149 {
150 .virtual = IO_ADDRESS(VERSATILE_UART0_BASE),
151 .pfn = __phys_to_pfn(VERSATILE_UART0_BASE),
152 .length = SZ_4K,
153 .type = MT_DEVICE
154 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#endif
Catalin Marinasc0da0852005-06-20 18:51:06 +0100156#ifdef CONFIG_PCI
Deepak Saxena13115212005-10-28 15:19:06 +0100157 {
158 .virtual = IO_ADDRESS(VERSATILE_PCI_CORE_BASE),
159 .pfn = __phys_to_pfn(VERSATILE_PCI_CORE_BASE),
160 .length = SZ_4K,
161 .type = MT_DEVICE
162 }, {
Al Viro399ad772006-10-11 17:22:34 +0100163 .virtual = (unsigned long)VERSATILE_PCI_VIRT_BASE,
Deepak Saxena13115212005-10-28 15:19:06 +0100164 .pfn = __phys_to_pfn(VERSATILE_PCI_BASE),
165 .length = VERSATILE_PCI_BASE_SIZE,
166 .type = MT_DEVICE
167 }, {
Al Viro399ad772006-10-11 17:22:34 +0100168 .virtual = (unsigned long)VERSATILE_PCI_CFG_VIRT_BASE,
Deepak Saxena13115212005-10-28 15:19:06 +0100169 .pfn = __phys_to_pfn(VERSATILE_PCI_CFG_BASE),
170 .length = VERSATILE_PCI_CFG_BASE_SIZE,
171 .type = MT_DEVICE
172 },
Catalin Marinasc0da0852005-06-20 18:51:06 +0100173#if 0
Deepak Saxena13115212005-10-28 15:19:06 +0100174 {
175 .virtual = VERSATILE_PCI_VIRT_MEM_BASE0,
176 .pfn = __phys_to_pfn(VERSATILE_PCI_MEM_BASE0),
177 .length = SZ_16M,
178 .type = MT_DEVICE
179 }, {
180 .virtual = VERSATILE_PCI_VIRT_MEM_BASE1,
181 .pfn = __phys_to_pfn(VERSATILE_PCI_MEM_BASE1),
182 .length = SZ_16M,
183 .type = MT_DEVICE
184 }, {
185 .virtual = VERSATILE_PCI_VIRT_MEM_BASE2,
186 .pfn = __phys_to_pfn(VERSATILE_PCI_MEM_BASE2),
187 .length = SZ_16M,
188 .type = MT_DEVICE
189 },
Catalin Marinasc0da0852005-06-20 18:51:06 +0100190#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#endif
192};
193
194void __init versatile_map_io(void)
195{
196 iotable_init(versatile_io_desc, ARRAY_SIZE(versatile_io_desc));
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Al Viro2ad4f862005-09-29 00:09:02 +0100200#define VERSATILE_FLASHCTRL (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_FLASH_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Marc Zyngier667f3902011-05-18 10:51:55 +0100202static void versatile_flash_set_vpp(struct platform_device *pdev, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 u32 val;
205
206 val = __raw_readl(VERSATILE_FLASHCTRL);
207 if (on)
208 val |= VERSATILE_FLASHPROG_FLVPPEN;
209 else
210 val &= ~VERSATILE_FLASHPROG_FLVPPEN;
211 __raw_writel(val, VERSATILE_FLASHCTRL);
212}
213
Marc Zyngier68c0e382011-05-18 10:51:50 +0100214static struct physmap_flash_data versatile_flash_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .width = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .set_vpp = versatile_flash_set_vpp,
217};
218
219static struct resource versatile_flash_resource = {
220 .start = VERSATILE_FLASH_BASE,
Yoav Steinberga0c5a642006-08-13 14:17:12 +0100221 .end = VERSATILE_FLASH_BASE + VERSATILE_FLASH_SIZE - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .flags = IORESOURCE_MEM,
223};
224
225static struct platform_device versatile_flash_device = {
Marc Zyngier68c0e382011-05-18 10:51:50 +0100226 .name = "physmap-flash",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .id = 0,
228 .dev = {
229 .platform_data = &versatile_flash_data,
230 },
231 .num_resources = 1,
232 .resource = &versatile_flash_resource,
233};
234
235static struct resource smc91x_resources[] = {
236 [0] = {
237 .start = VERSATILE_ETH_BASE,
238 .end = VERSATILE_ETH_BASE + SZ_64K - 1,
239 .flags = IORESOURCE_MEM,
240 },
241 [1] = {
242 .start = IRQ_ETH,
243 .end = IRQ_ETH,
244 .flags = IORESOURCE_IRQ,
245 },
246};
247
248static struct platform_device smc91x_device = {
249 .name = "smc91x",
250 .id = 0,
251 .num_resources = ARRAY_SIZE(smc91x_resources),
252 .resource = smc91x_resources,
253};
254
Russell King6b65cd72006-12-10 21:21:32 +0100255static struct resource versatile_i2c_resource = {
256 .start = VERSATILE_I2C_BASE,
257 .end = VERSATILE_I2C_BASE + SZ_4K - 1,
258 .flags = IORESOURCE_MEM,
259};
260
261static struct platform_device versatile_i2c_device = {
262 .name = "versatile-i2c",
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100263 .id = 0,
Russell King6b65cd72006-12-10 21:21:32 +0100264 .num_resources = 1,
265 .resource = &versatile_i2c_resource,
266};
267
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100268static struct i2c_board_info versatile_i2c_board_info[] = {
269 {
Russell King64e8be62009-07-18 15:51:55 +0100270 I2C_BOARD_INFO("ds1338", 0xd0 >> 1),
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100271 },
272};
273
274static int __init versatile_i2c_init(void)
275{
276 return i2c_register_board_info(0, versatile_i2c_board_info,
277 ARRAY_SIZE(versatile_i2c_board_info));
278}
279arch_initcall(versatile_i2c_init);
280
Al Viro2ad4f862005-09-29 00:09:02 +0100281#define VERSATILE_SYSMCI (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_MCI_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283unsigned int mmc_status(struct device *dev)
284{
285 struct amba_device *adev = container_of(dev, struct amba_device, dev);
286 u32 mask;
287
288 if (adev->res.start == VERSATILE_MMCI0_BASE)
289 mask = 1;
290 else
291 mask = 2;
292
293 return readl(VERSATILE_SYSMCI) & mask;
294}
295
Linus Walleij6ef297f2009-09-22 14:29:36 +0100296static struct mmci_platform_data mmc0_plat_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
298 .status = mmc_status,
Russell King7fb2bbf2009-07-09 15:15:12 +0100299 .gpio_wp = -1,
300 .gpio_cd = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Grant Likelye2823262011-03-30 00:02:29 -0600303static struct resource char_lcd_resources[] = {
Linus Walleijd161edf2010-07-17 12:34:25 +0100304 {
305 .start = VERSATILE_CHAR_LCD_BASE,
306 .end = (VERSATILE_CHAR_LCD_BASE + SZ_4K - 1),
307 .flags = IORESOURCE_MEM,
308 },
309};
310
311static struct platform_device char_lcd_device = {
312 .name = "arm-charlcd",
313 .id = -1,
314 .num_resources = ARRAY_SIZE(char_lcd_resources),
315 .resource = char_lcd_resources,
316};
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/*
319 * Clock handling
320 */
Russell King39c0cb02010-01-16 16:27:28 +0000321static const struct icst_params versatile_oscvco_params = {
Russell King64fceb12010-01-16 17:28:44 +0000322 .ref = 24000000,
Russell King4de2edb2010-01-16 18:08:47 +0000323 .vco_max = ICST307_VCO_MAX,
Russell Kinge73a46a2010-01-16 19:49:39 +0000324 .vco_min = ICST307_VCO_MIN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 .vd_min = 4 + 8,
326 .vd_max = 511 + 8,
327 .rd_min = 1 + 2,
328 .rd_max = 127 + 2,
Russell King232eaf72010-01-16 19:46:19 +0000329 .s2div = icst307_s2div,
330 .idx2s = icst307_idx2s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331};
332
Russell King39c0cb02010-01-16 16:27:28 +0000333static void versatile_oscvco_set(struct clk *clk, struct icst_vco vco)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Russell Kingd1914c72010-01-14 20:09:34 +0000335 void __iomem *sys_lock = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LOCK_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 u32 val;
337
Russell Kingd1914c72010-01-14 20:09:34 +0000338 val = readl(clk->vcoreg) & ~0x7ffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 val |= vco.v | (vco.r << 9) | (vco.s << 16);
340
341 writel(0xa05f, sys_lock);
Russell Kingd1914c72010-01-14 20:09:34 +0000342 writel(val, clk->vcoreg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 writel(0, sys_lock);
344}
345
Russell King9bf5b2e2010-03-01 16:18:39 +0000346static const struct clk_ops osc4_clk_ops = {
347 .round = icst_clk_round,
348 .set = icst_clk_set,
Russell King71a06da2008-11-08 20:13:53 +0000349 .setvco = versatile_oscvco_set,
350};
351
Russell King9bf5b2e2010-03-01 16:18:39 +0000352static struct clk osc4_clk = {
353 .ops = &osc4_clk_ops,
354 .params = &versatile_oscvco_params,
355};
356
Russell King71a06da2008-11-08 20:13:53 +0000357/*
358 * These are fixed clocks.
359 */
360static struct clk ref24_clk = {
361 .rate = 24000000,
362};
363
Russell King7ff550d2011-05-12 13:31:48 +0100364static struct clk sp804_clk = {
365 .rate = 1000000,
366};
367
Russell King3126c7b2010-07-15 11:01:17 +0100368static struct clk dummy_apb_pclk;
369
Rabin Vincent982db662009-05-18 17:29:30 +0100370static struct clk_lookup lookups[] = {
Russell King3126c7b2010-07-15 11:01:17 +0100371 { /* AMBA bus clock */
372 .con_id = "apb_pclk",
373 .clk = &dummy_apb_pclk,
374 }, { /* UART0 */
Russell King71a06da2008-11-08 20:13:53 +0000375 .dev_id = "dev:f1",
376 .clk = &ref24_clk,
377 }, { /* UART1 */
378 .dev_id = "dev:f2",
379 .clk = &ref24_clk,
380 }, { /* UART2 */
381 .dev_id = "dev:f3",
382 .clk = &ref24_clk,
383 }, { /* UART3 */
384 .dev_id = "fpga:09",
385 .clk = &ref24_clk,
386 }, { /* KMI0 */
387 .dev_id = "fpga:06",
388 .clk = &ref24_clk,
389 }, { /* KMI1 */
390 .dev_id = "fpga:07",
391 .clk = &ref24_clk,
392 }, { /* MMC0 */
393 .dev_id = "fpga:05",
394 .clk = &ref24_clk,
395 }, { /* MMC1 */
396 .dev_id = "fpga:0b",
397 .clk = &ref24_clk,
Linus Walleijef6f4b12010-07-14 23:59:27 +0100398 }, { /* SSP */
399 .dev_id = "dev:f4",
400 .clk = &ref24_clk,
Russell King71a06da2008-11-08 20:13:53 +0000401 }, { /* CLCD */
402 .dev_id = "dev:20",
403 .clk = &osc4_clk,
Russell King7ff550d2011-05-12 13:31:48 +0100404 }, { /* SP804 timers */
405 .dev_id = "sp804",
406 .clk = &sp804_clk,
407 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408};
409
410/*
411 * CLCD support.
412 */
413#define SYS_CLCD_MODE_MASK (3 << 0)
414#define SYS_CLCD_MODE_888 (0 << 0)
415#define SYS_CLCD_MODE_5551 (1 << 0)
416#define SYS_CLCD_MODE_565_RLSB (2 << 0)
417#define SYS_CLCD_MODE_565_BLSB (3 << 0)
418#define SYS_CLCD_NLCDIOON (1 << 2)
419#define SYS_CLCD_VDDPOSSWITCH (1 << 3)
420#define SYS_CLCD_PWR3V5SWITCH (1 << 4)
421#define SYS_CLCD_ID_MASK (0x1f << 8)
422#define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8)
423#define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
424#define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8)
425#define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8)
426#define SYS_CLCD_ID_VGA (0x1f << 8)
427
Russell King3414ba82011-01-18 20:12:10 +0000428static bool is_sanyo_2_5_lcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430/*
431 * Disable all display connectors on the interface module.
432 */
433static void versatile_clcd_disable(struct clcd_fb *fb)
434{
Al Viro2ad4f862005-09-29 00:09:02 +0100435 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 u32 val;
437
438 val = readl(sys_clcd);
439 val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
440 writel(val, sys_clcd);
441
442#ifdef CONFIG_MACH_VERSATILE_AB
443 /*
444 * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light off
445 */
Russell King3414ba82011-01-18 20:12:10 +0000446 if (machine_is_versatile_ab() && is_sanyo_2_5_lcd) {
Al Viro2ad4f862005-09-29 00:09:02 +0100447 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 unsigned long ctrl;
449
450 ctrl = readl(versatile_ib2_ctrl);
451 ctrl &= ~0x01;
452 writel(ctrl, versatile_ib2_ctrl);
453 }
454#endif
455}
456
457/*
458 * Enable the relevant connector on the interface module.
459 */
460static void versatile_clcd_enable(struct clcd_fb *fb)
461{
Russell King9728c1b2011-01-19 23:29:12 +0000462 struct fb_var_screeninfo *var = &fb->fb.var;
Al Viro2ad4f862005-09-29 00:09:02 +0100463 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 u32 val;
465
466 val = readl(sys_clcd);
467 val &= ~SYS_CLCD_MODE_MASK;
468
Russell King9728c1b2011-01-19 23:29:12 +0000469 switch (var->green.length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 case 5:
471 val |= SYS_CLCD_MODE_5551;
472 break;
473 case 6:
Russell King9728c1b2011-01-19 23:29:12 +0000474 if (var->red.offset == 0)
475 val |= SYS_CLCD_MODE_565_RLSB;
476 else
477 val |= SYS_CLCD_MODE_565_BLSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 case 8:
480 val |= SYS_CLCD_MODE_888;
481 break;
482 }
483
484 /*
485 * Set the MUX
486 */
487 writel(val, sys_clcd);
488
489 /*
490 * And now enable the PSUs
491 */
492 val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
493 writel(val, sys_clcd);
494
495#ifdef CONFIG_MACH_VERSATILE_AB
496 /*
497 * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light on
498 */
Russell King3414ba82011-01-18 20:12:10 +0000499 if (machine_is_versatile_ab() && is_sanyo_2_5_lcd) {
Al Viro2ad4f862005-09-29 00:09:02 +0100500 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 unsigned long ctrl;
502
503 ctrl = readl(versatile_ib2_ctrl);
504 ctrl |= 0x01;
505 writel(ctrl, versatile_ib2_ctrl);
506 }
507#endif
508}
509
Russell King3414ba82011-01-18 20:12:10 +0000510/*
511 * Detect which LCD panel is connected, and return the appropriate
512 * clcd_panel structure. Note: we do not have any information on
513 * the required timings for the 8.4in panel, so we presently assume
514 * VGA timings.
515 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516static int versatile_clcd_setup(struct clcd_fb *fb)
517{
Russell King3414ba82011-01-18 20:12:10 +0000518 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
519 const char *panel_name;
520 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Russell King3414ba82011-01-18 20:12:10 +0000522 is_sanyo_2_5_lcd = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Russell King3414ba82011-01-18 20:12:10 +0000524 val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
525 if (val == SYS_CLCD_ID_SANYO_3_8)
526 panel_name = "Sanyo TM38QV67A02A";
527 else if (val == SYS_CLCD_ID_SANYO_2_5) {
528 panel_name = "Sanyo QVGA Portrait";
529 is_sanyo_2_5_lcd = true;
530 } else if (val == SYS_CLCD_ID_EPSON_2_2)
531 panel_name = "Epson L2F50113T00";
532 else if (val == SYS_CLCD_ID_VGA)
533 panel_name = "VGA";
534 else {
535 printk(KERN_ERR "CLCD: unknown LCD panel ID 0x%08x, using VGA\n",
536 val);
537 panel_name = "VGA";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539
Russell King3414ba82011-01-18 20:12:10 +0000540 fb->panel = versatile_clcd_get_panel(panel_name);
541 if (!fb->panel)
542 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Russell King3414ba82011-01-18 20:12:10 +0000544 return versatile_clcd_setup_dma(fb, SZ_1M);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Russell King9728c1b2011-01-19 23:29:12 +0000547static void versatile_clcd_decode(struct clcd_fb *fb, struct clcd_regs *regs)
548{
549 clcdfb_decode(fb, regs);
550
551 /* Always clear BGR for RGB565: we do the routing externally */
552 if (fb->fb.var.green.length == 6)
553 regs->cntl &= ~CNTL_BGR;
554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556static struct clcd_board clcd_plat_data = {
557 .name = "Versatile",
Russell King3414ba82011-01-18 20:12:10 +0000558 .caps = CLCD_CAP_5551 | CLCD_CAP_565 | CLCD_CAP_888,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 .check = clcdfb_check,
Russell King9728c1b2011-01-19 23:29:12 +0000560 .decode = versatile_clcd_decode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 .disable = versatile_clcd_disable,
562 .enable = versatile_clcd_enable,
563 .setup = versatile_clcd_setup,
Russell King3414ba82011-01-18 20:12:10 +0000564 .mmap = versatile_clcd_mmap_dma,
565 .remove = versatile_clcd_remove_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566};
567
Russell Kingbbeddc42009-07-05 22:43:01 +0100568static struct pl061_platform_data gpio0_plat_data = {
569 .gpio_base = 0,
570 .irq_base = IRQ_GPIO0_START,
571};
572
573static struct pl061_platform_data gpio1_plat_data = {
574 .gpio_base = 8,
575 .irq_base = IRQ_GPIO1_START,
576};
577
Linus Walleijef6f4b12010-07-14 23:59:27 +0100578static struct pl022_ssp_controller ssp0_plat_data = {
579 .bus_id = 0,
580 .enable_dma = 0,
581 .num_chipselect = 1,
582};
583
Russell King0dada612011-12-18 11:40:46 +0000584#define AACI_IRQ { IRQ_AACI }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#define MMCI0_IRQ { IRQ_MMCI0A,IRQ_SIC_MMCI0B }
Russell King0dada612011-12-18 11:40:46 +0000586#define KMI0_IRQ { IRQ_SIC_KMI0 }
587#define KMI1_IRQ { IRQ_SIC_KMI1 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589/*
590 * These devices are connected directly to the multi-layer AHB switch
591 */
Russell King0dada612011-12-18 11:40:46 +0000592#define SMC_IRQ { }
593#define MPMC_IRQ { }
594#define CLCD_IRQ { IRQ_CLCDINT }
595#define DMAC_IRQ { IRQ_DMAINT }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597/*
598 * These devices are connected via the core APB bridge
599 */
Russell King0dada612011-12-18 11:40:46 +0000600#define SCTL_IRQ { }
601#define WATCHDOG_IRQ { IRQ_WDOGINT }
602#define GPIO0_IRQ { IRQ_GPIOINT0 }
603#define GPIO1_IRQ { IRQ_GPIOINT1 }
604#define RTC_IRQ { IRQ_RTCINT }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606/*
607 * These devices are connected via the DMA APB bridge
608 */
Russell King0dada612011-12-18 11:40:46 +0000609#define SCI_IRQ { IRQ_SCIINT }
610#define UART0_IRQ { IRQ_UARTINT0 }
611#define UART1_IRQ { IRQ_UARTINT1 }
612#define UART2_IRQ { IRQ_UARTINT2 }
613#define SSP_IRQ { IRQ_SSPINT }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615/* FPGA Primecells */
Russell King8f5088b2011-12-18 12:21:09 +0000616APB_DEVICE(aaci, "fpga:04", AACI, NULL);
617APB_DEVICE(mmc0, "fpga:05", MMCI0, &mmc0_plat_data);
618APB_DEVICE(kmi0, "fpga:06", KMI0, NULL);
619APB_DEVICE(kmi1, "fpga:07", KMI1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621/* DevChip Primecells */
Russell King8f5088b2011-12-18 12:21:09 +0000622AHB_DEVICE(smc, "dev:00", SMC, NULL);
623AHB_DEVICE(mpmc, "dev:10", MPMC, NULL);
624AHB_DEVICE(clcd, "dev:20", CLCD, &clcd_plat_data);
625AHB_DEVICE(dmac, "dev:30", DMAC, NULL);
626APB_DEVICE(sctl, "dev:e0", SCTL, NULL);
627APB_DEVICE(wdog, "dev:e1", WATCHDOG, NULL);
628APB_DEVICE(gpio0, "dev:e4", GPIO0, &gpio0_plat_data);
629APB_DEVICE(gpio1, "dev:e5", GPIO1, &gpio1_plat_data);
630APB_DEVICE(rtc, "dev:e8", RTC, NULL);
631APB_DEVICE(sci0, "dev:f0", SCI, NULL);
632APB_DEVICE(uart0, "dev:f1", UART0, NULL);
633APB_DEVICE(uart1, "dev:f2", UART1, NULL);
634APB_DEVICE(uart2, "dev:f3", UART2, NULL);
635APB_DEVICE(ssp0, "dev:f4", SSP, &ssp0_plat_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637static struct amba_device *amba_devs[] __initdata = {
638 &dmac_device,
639 &uart0_device,
640 &uart1_device,
641 &uart2_device,
642 &smc_device,
643 &mpmc_device,
644 &clcd_device,
645 &sctl_device,
646 &wdog_device,
647 &gpio0_device,
648 &gpio1_device,
649 &rtc_device,
650 &sci0_device,
651 &ssp0_device,
652 &aaci_device,
653 &mmc0_device,
654 &kmi0_device,
655 &kmi1_device,
656};
657
Grant Likely3ba72222011-07-26 03:19:06 -0600658#ifdef CONFIG_OF
659/*
660 * Lookup table for attaching a specific name and platform_data pointer to
661 * devices as they get created by of_platform_populate(). Ideally this table
662 * would not exist, but the current clock implementation depends on some devices
663 * having a specific name.
664 */
665struct of_dev_auxdata versatile_auxdata_lookup[] __initdata = {
666 OF_DEV_AUXDATA("arm,primecell", VERSATILE_MMCI0_BASE, "fpga:05", NULL),
667 OF_DEV_AUXDATA("arm,primecell", VERSATILE_KMI0_BASE, "fpga:06", NULL),
668 OF_DEV_AUXDATA("arm,primecell", VERSATILE_KMI1_BASE, "fpga:07", NULL),
669 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART3_BASE, "fpga:09", NULL),
670 OF_DEV_AUXDATA("arm,primecell", VERSATILE_MMCI1_BASE, "fpga:0b", NULL),
671
672 OF_DEV_AUXDATA("arm,primecell", VERSATILE_CLCD_BASE, "dev:20", &clcd_plat_data),
673 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART0_BASE, "dev:f1", NULL),
674 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART1_BASE, "dev:f2", NULL),
675 OF_DEV_AUXDATA("arm,primecell", VERSATILE_UART2_BASE, "dev:f3", NULL),
676 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SSP_BASE, "dev:f4", NULL),
677
678#if 0
679 /*
680 * These entries are unnecessary because no clocks referencing
681 * them. I've left them in for now as place holders in case
682 * any of them need to be added back, but they should be
683 * removed before actually committing this patch. --gcl
684 */
685 OF_DEV_AUXDATA("arm,primecell", VERSATILE_AACI_BASE, "fpga:04", NULL),
686 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SCI1_BASE, "fpga:0a", NULL),
687 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SMC_BASE, "dev:00", NULL),
688 OF_DEV_AUXDATA("arm,primecell", VERSATILE_MPMC_BASE, "dev:10", NULL),
689 OF_DEV_AUXDATA("arm,primecell", VERSATILE_DMAC_BASE, "dev:30", NULL),
690
691 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SCTL_BASE, "dev:e0", NULL),
692 OF_DEV_AUXDATA("arm,primecell", VERSATILE_WATCHDOG_BASE, "dev:e1", NULL),
693 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO0_BASE, "dev:e4", NULL),
694 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO1_BASE, "dev:e5", NULL),
695 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO2_BASE, "dev:e6", NULL),
696 OF_DEV_AUXDATA("arm,primecell", VERSATILE_GPIO3_BASE, "dev:e7", NULL),
697 OF_DEV_AUXDATA("arm,primecell", VERSATILE_RTC_BASE, "dev:e8", NULL),
698 OF_DEV_AUXDATA("arm,primecell", VERSATILE_SCI_BASE, "dev:f0", NULL),
699#endif
700 {}
701};
702#endif
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704#ifdef CONFIG_LEDS
Al Viro2ad4f862005-09-29 00:09:02 +0100705#define VA_LEDS_BASE (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LED_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707static void versatile_leds_event(led_event_t ledevt)
708{
709 unsigned long flags;
710 u32 val;
711
712 local_irq_save(flags);
713 val = readl(VA_LEDS_BASE);
714
715 switch (ledevt) {
716 case led_idle_start:
717 val = val & ~VERSATILE_SYS_LED0;
718 break;
719
720 case led_idle_end:
721 val = val | VERSATILE_SYS_LED0;
722 break;
723
724 case led_timer:
725 val = val ^ VERSATILE_SYS_LED1;
726 break;
727
728 case led_halted:
729 val = 0;
730 break;
731
732 default:
733 break;
734 }
735
736 writel(val, VA_LEDS_BASE);
737 local_irq_restore(flags);
738}
739#endif /* CONFIG_LEDS */
740
Russell Kingb56a7c62011-11-03 11:43:08 +0000741void versatile_restart(char mode, const char *cmd)
742{
743 void __iomem *sys = __io_address(VERSATILE_SYS_BASE);
744 u32 val;
745
746 val = __raw_readl(sys + VERSATILE_SYS_RESETCTL_OFFSET);
747 val |= 0x105;
748
749 __raw_writel(0xa05f, sys + VERSATILE_SYS_LOCK_OFFSET);
750 __raw_writel(val, sys + VERSATILE_SYS_RESETCTL_OFFSET);
751 __raw_writel(0, sys + VERSATILE_SYS_LOCK_OFFSET);
752}
753
Russell Kingad3bb192011-01-11 12:55:38 +0000754/* Early initializations */
755void __init versatile_init_early(void)
756{
757 void __iomem *sys = __io_address(VERSATILE_SYS_BASE);
758
759 osc4_clk.vcoreg = sys + VERSATILE_SYS_OSCCLCD_OFFSET;
760 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
761
762 versatile_sched_clock_init(sys + VERSATILE_SYS_24MHz_OFFSET, 24000000);
763}
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765void __init versatile_init(void)
766{
767 int i;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 platform_device_register(&versatile_flash_device);
Russell King6b65cd72006-12-10 21:21:32 +0100770 platform_device_register(&versatile_i2c_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 platform_device_register(&smc91x_device);
Linus Walleijd161edf2010-07-17 12:34:25 +0100772 platform_device_register(&char_lcd_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
775 struct amba_device *d = amba_devs[i];
776 amba_device_register(d, &iomem_resource);
777 }
778
779#ifdef CONFIG_LEDS
780 leds_event = versatile_leds_event;
781#endif
782}
783
784/*
785 * Where is the timer (VA)?
786 */
Al Viro2ad4f862005-09-29 00:09:02 +0100787#define TIMER0_VA_BASE __io_address(VERSATILE_TIMER0_1_BASE)
788#define TIMER1_VA_BASE (__io_address(VERSATILE_TIMER0_1_BASE) + 0x20)
789#define TIMER2_VA_BASE __io_address(VERSATILE_TIMER2_3_BASE)
790#define TIMER3_VA_BASE (__io_address(VERSATILE_TIMER2_3_BASE) + 0x20)
Kevin Hilmanb49c87c2007-03-08 20:25:13 +0100791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792/*
793 * Set up timer interrupt, and return the current time in seconds.
794 */
795static void __init versatile_timer_init(void)
796{
Russell Kingb720f732005-06-29 15:15:54 +0100797 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /*
800 * set clock frequency:
801 * VERSATILE_REFCLK is 32KHz
802 * VERSATILE_TIMCLK is 1MHz
803 */
Al Viro2ad4f862005-09-29 00:09:02 +0100804 val = readl(__io_address(VERSATILE_SCTL_BASE));
Russell Kingb720f732005-06-29 15:15:54 +0100805 writel((VERSATILE_TIMCLK << VERSATILE_TIMER1_EnSel) |
806 (VERSATILE_TIMCLK << VERSATILE_TIMER2_EnSel) |
807 (VERSATILE_TIMCLK << VERSATILE_TIMER3_EnSel) |
808 (VERSATILE_TIMCLK << VERSATILE_TIMER4_EnSel) | val,
Al Viro2ad4f862005-09-29 00:09:02 +0100809 __io_address(VERSATILE_SCTL_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /*
812 * Initialise to a known state (all timers off)
813 */
Russell Kingb720f732005-06-29 15:15:54 +0100814 writel(0, TIMER0_VA_BASE + TIMER_CTRL);
815 writel(0, TIMER1_VA_BASE + TIMER_CTRL);
816 writel(0, TIMER2_VA_BASE + TIMER_CTRL);
817 writel(0, TIMER3_VA_BASE + TIMER_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Russell Kingfb593cf2011-05-12 12:08:23 +0100819 sp804_clocksource_init(TIMER3_VA_BASE, "timer3");
Russell King57cc4f72011-05-12 15:31:13 +0100820 sp804_clockevents_init(TIMER0_VA_BASE, IRQ_TIMERINT0_1, "timer0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823struct sys_timer versatile_timer = {
824 .init = versatile_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825};
Kevin Hilmanb49c87c2007-03-08 20:25:13 +0100826