blob: b0b7de6875ab7da90367d650769ab24c868314ca [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/sysdev.h>
26#include <linux/interrupt.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000027#include <linux/amba/bus.h>
28#include <linux/amba/clcd.h>
Russell Kingbbeddc42009-07-05 22:43:01 +010029#include <linux/amba/pl061.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010030#include <linux/amba/mmci.h>
Linus Walleijef6f4b12010-07-14 23:59:27 +010031#include <linux/amba/pl022.h>
Russell Kingfced80c2008-09-06 12:10:45 +010032#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/gfp.h>
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010034#include <linux/clkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/irq.h>
38#include <asm/leds.h>
Russell Kingb720f732005-06-29 15:15:54 +010039#include <asm/hardware/arm_timer.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000040#include <asm/hardware/icst.h>
Russell Kingfa0fe482006-01-13 21:30:48 +000041#include <asm/hardware/vic.h>
Russell Kingdc5bc8f2006-07-10 16:33:54 +010042#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/mach/arch.h>
45#include <asm/mach/flash.h>
46#include <asm/mach/irq.h>
47#include <asm/mach/time.h>
48#include <asm/mach/map.h>
Russell Kinga285edc2010-01-14 19:59:37 +000049#include <mach/hardware.h>
50#include <mach/platform.h>
Rob Herring8a9618f2010-10-06 16:18:08 +010051#include <asm/hardware/timer-sp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Russell King3414ba82011-01-18 20:12:10 +000053#include <plat/clcd.h>
Russell Kingc41b16f2011-01-19 15:32:15 +000054#include <plat/fpga-irq.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
Russell Kingc41b16f2011-01-19 15:32:15 +000068static struct fpga_irq_data sic_irq = {
69 .base = VA_SIC_BASE,
70 .irq_start = IRQ_SIC_START,
71 .chip.name = "SIC",
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#if 1
75#define IRQ_MMCI0A IRQ_VICSOURCE22
76#define IRQ_AACI IRQ_VICSOURCE24
77#define IRQ_ETH IRQ_VICSOURCE25
78#define PIC_MASK 0xFFD00000
79#else
80#define IRQ_MMCI0A IRQ_SIC_MMCI0A
81#define IRQ_AACI IRQ_SIC_AACI
82#define IRQ_ETH IRQ_SIC_ETH
83#define PIC_MASK 0
84#endif
85
86void __init versatile_init_irq(void)
87{
Ben Dooksc07f87f2009-03-24 15:30:07 +000088 vic_init(VA_VIC_BASE, IRQ_VIC_START, ~0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 writel(~0, VA_SIC_BASE + SIC_IRQ_ENABLE_CLEAR);
91
Russell Kingc41b16f2011-01-19 15:32:15 +000092 fpga_irq_init(IRQ_VICSOURCE31, ~PIC_MASK, &sic_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /*
95 * Interrupts on secondary controller from 0 to 8 are routed to
96 * source 31 on PIC.
97 * Interrupts from 21 to 31 are routed directly to the VIC on
98 * the corresponding number on primary controller. This is controlled
99 * by setting PIC_ENABLEx.
100 */
101 writel(PIC_MASK, VA_SIC_BASE + SIC_INT_PIC_ENABLE);
102}
103
104static struct map_desc versatile_io_desc[] __initdata = {
Deepak Saxena13115212005-10-28 15:19:06 +0100105 {
106 .virtual = IO_ADDRESS(VERSATILE_SYS_BASE),
107 .pfn = __phys_to_pfn(VERSATILE_SYS_BASE),
108 .length = SZ_4K,
109 .type = MT_DEVICE
110 }, {
111 .virtual = IO_ADDRESS(VERSATILE_SIC_BASE),
112 .pfn = __phys_to_pfn(VERSATILE_SIC_BASE),
113 .length = SZ_4K,
114 .type = MT_DEVICE
115 }, {
116 .virtual = IO_ADDRESS(VERSATILE_VIC_BASE),
117 .pfn = __phys_to_pfn(VERSATILE_VIC_BASE),
118 .length = SZ_4K,
119 .type = MT_DEVICE
120 }, {
121 .virtual = IO_ADDRESS(VERSATILE_SCTL_BASE),
122 .pfn = __phys_to_pfn(VERSATILE_SCTL_BASE),
123 .length = SZ_4K * 9,
124 .type = MT_DEVICE
125 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#ifdef CONFIG_MACH_VERSATILE_AB
Deepak Saxena13115212005-10-28 15:19:06 +0100127 {
128 .virtual = IO_ADDRESS(VERSATILE_GPIO0_BASE),
129 .pfn = __phys_to_pfn(VERSATILE_GPIO0_BASE),
130 .length = SZ_4K,
131 .type = MT_DEVICE
132 }, {
133 .virtual = IO_ADDRESS(VERSATILE_IB2_BASE),
134 .pfn = __phys_to_pfn(VERSATILE_IB2_BASE),
135 .length = SZ_64M,
136 .type = MT_DEVICE
137 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif
139#ifdef CONFIG_DEBUG_LL
Deepak Saxena13115212005-10-28 15:19:06 +0100140 {
141 .virtual = IO_ADDRESS(VERSATILE_UART0_BASE),
142 .pfn = __phys_to_pfn(VERSATILE_UART0_BASE),
143 .length = SZ_4K,
144 .type = MT_DEVICE
145 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#endif
Catalin Marinasc0da0852005-06-20 18:51:06 +0100147#ifdef CONFIG_PCI
Deepak Saxena13115212005-10-28 15:19:06 +0100148 {
149 .virtual = IO_ADDRESS(VERSATILE_PCI_CORE_BASE),
150 .pfn = __phys_to_pfn(VERSATILE_PCI_CORE_BASE),
151 .length = SZ_4K,
152 .type = MT_DEVICE
153 }, {
Al Viro399ad772006-10-11 17:22:34 +0100154 .virtual = (unsigned long)VERSATILE_PCI_VIRT_BASE,
Deepak Saxena13115212005-10-28 15:19:06 +0100155 .pfn = __phys_to_pfn(VERSATILE_PCI_BASE),
156 .length = VERSATILE_PCI_BASE_SIZE,
157 .type = MT_DEVICE
158 }, {
Al Viro399ad772006-10-11 17:22:34 +0100159 .virtual = (unsigned long)VERSATILE_PCI_CFG_VIRT_BASE,
Deepak Saxena13115212005-10-28 15:19:06 +0100160 .pfn = __phys_to_pfn(VERSATILE_PCI_CFG_BASE),
161 .length = VERSATILE_PCI_CFG_BASE_SIZE,
162 .type = MT_DEVICE
163 },
Catalin Marinasc0da0852005-06-20 18:51:06 +0100164#if 0
Deepak Saxena13115212005-10-28 15:19:06 +0100165 {
166 .virtual = VERSATILE_PCI_VIRT_MEM_BASE0,
167 .pfn = __phys_to_pfn(VERSATILE_PCI_MEM_BASE0),
168 .length = SZ_16M,
169 .type = MT_DEVICE
170 }, {
171 .virtual = VERSATILE_PCI_VIRT_MEM_BASE1,
172 .pfn = __phys_to_pfn(VERSATILE_PCI_MEM_BASE1),
173 .length = SZ_16M,
174 .type = MT_DEVICE
175 }, {
176 .virtual = VERSATILE_PCI_VIRT_MEM_BASE2,
177 .pfn = __phys_to_pfn(VERSATILE_PCI_MEM_BASE2),
178 .length = SZ_16M,
179 .type = MT_DEVICE
180 },
Catalin Marinasc0da0852005-06-20 18:51:06 +0100181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#endif
183};
184
185void __init versatile_map_io(void)
186{
187 iotable_init(versatile_io_desc, ARRAY_SIZE(versatile_io_desc));
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Al Viro2ad4f862005-09-29 00:09:02 +0100191#define VERSATILE_FLASHCTRL (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_FLASH_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193static int versatile_flash_init(void)
194{
195 u32 val;
196
197 val = __raw_readl(VERSATILE_FLASHCTRL);
198 val &= ~VERSATILE_FLASHPROG_FLVPPEN;
199 __raw_writel(val, VERSATILE_FLASHCTRL);
200
201 return 0;
202}
203
204static void versatile_flash_exit(void)
205{
206 u32 val;
207
208 val = __raw_readl(VERSATILE_FLASHCTRL);
209 val &= ~VERSATILE_FLASHPROG_FLVPPEN;
210 __raw_writel(val, VERSATILE_FLASHCTRL);
211}
212
213static void versatile_flash_set_vpp(int on)
214{
215 u32 val;
216
217 val = __raw_readl(VERSATILE_FLASHCTRL);
218 if (on)
219 val |= VERSATILE_FLASHPROG_FLVPPEN;
220 else
221 val &= ~VERSATILE_FLASHPROG_FLVPPEN;
222 __raw_writel(val, VERSATILE_FLASHCTRL);
223}
224
225static struct flash_platform_data versatile_flash_data = {
226 .map_name = "cfi_probe",
227 .width = 4,
228 .init = versatile_flash_init,
229 .exit = versatile_flash_exit,
230 .set_vpp = versatile_flash_set_vpp,
231};
232
233static struct resource versatile_flash_resource = {
234 .start = VERSATILE_FLASH_BASE,
Yoav Steinberga0c5a642006-08-13 14:17:12 +0100235 .end = VERSATILE_FLASH_BASE + VERSATILE_FLASH_SIZE - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 .flags = IORESOURCE_MEM,
237};
238
239static struct platform_device versatile_flash_device = {
240 .name = "armflash",
241 .id = 0,
242 .dev = {
243 .platform_data = &versatile_flash_data,
244 },
245 .num_resources = 1,
246 .resource = &versatile_flash_resource,
247};
248
249static struct resource smc91x_resources[] = {
250 [0] = {
251 .start = VERSATILE_ETH_BASE,
252 .end = VERSATILE_ETH_BASE + SZ_64K - 1,
253 .flags = IORESOURCE_MEM,
254 },
255 [1] = {
256 .start = IRQ_ETH,
257 .end = IRQ_ETH,
258 .flags = IORESOURCE_IRQ,
259 },
260};
261
262static struct platform_device smc91x_device = {
263 .name = "smc91x",
264 .id = 0,
265 .num_resources = ARRAY_SIZE(smc91x_resources),
266 .resource = smc91x_resources,
267};
268
Russell King6b65cd72006-12-10 21:21:32 +0100269static struct resource versatile_i2c_resource = {
270 .start = VERSATILE_I2C_BASE,
271 .end = VERSATILE_I2C_BASE + SZ_4K - 1,
272 .flags = IORESOURCE_MEM,
273};
274
275static struct platform_device versatile_i2c_device = {
276 .name = "versatile-i2c",
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100277 .id = 0,
Russell King6b65cd72006-12-10 21:21:32 +0100278 .num_resources = 1,
279 .resource = &versatile_i2c_resource,
280};
281
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100282static struct i2c_board_info versatile_i2c_board_info[] = {
283 {
Russell King64e8be62009-07-18 15:51:55 +0100284 I2C_BOARD_INFO("ds1338", 0xd0 >> 1),
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100285 },
286};
287
288static int __init versatile_i2c_init(void)
289{
290 return i2c_register_board_info(0, versatile_i2c_board_info,
291 ARRAY_SIZE(versatile_i2c_board_info));
292}
293arch_initcall(versatile_i2c_init);
294
Al Viro2ad4f862005-09-29 00:09:02 +0100295#define VERSATILE_SYSMCI (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_MCI_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297unsigned int mmc_status(struct device *dev)
298{
299 struct amba_device *adev = container_of(dev, struct amba_device, dev);
300 u32 mask;
301
302 if (adev->res.start == VERSATILE_MMCI0_BASE)
303 mask = 1;
304 else
305 mask = 2;
306
307 return readl(VERSATILE_SYSMCI) & mask;
308}
309
Linus Walleij6ef297f2009-09-22 14:29:36 +0100310static struct mmci_platform_data mmc0_plat_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
312 .status = mmc_status,
Russell King7fb2bbf2009-07-09 15:15:12 +0100313 .gpio_wp = -1,
314 .gpio_cd = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Grant Likelye2823262011-03-30 00:02:29 -0600317static struct resource char_lcd_resources[] = {
Linus Walleijd161edf2010-07-17 12:34:25 +0100318 {
319 .start = VERSATILE_CHAR_LCD_BASE,
320 .end = (VERSATILE_CHAR_LCD_BASE + SZ_4K - 1),
321 .flags = IORESOURCE_MEM,
322 },
323};
324
325static struct platform_device char_lcd_device = {
326 .name = "arm-charlcd",
327 .id = -1,
328 .num_resources = ARRAY_SIZE(char_lcd_resources),
329 .resource = char_lcd_resources,
330};
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/*
333 * Clock handling
334 */
Russell King39c0cb02010-01-16 16:27:28 +0000335static const struct icst_params versatile_oscvco_params = {
Russell King64fceb12010-01-16 17:28:44 +0000336 .ref = 24000000,
Russell King4de2edb2010-01-16 18:08:47 +0000337 .vco_max = ICST307_VCO_MAX,
Russell Kinge73a46a2010-01-16 19:49:39 +0000338 .vco_min = ICST307_VCO_MIN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 .vd_min = 4 + 8,
340 .vd_max = 511 + 8,
341 .rd_min = 1 + 2,
342 .rd_max = 127 + 2,
Russell King232eaf72010-01-16 19:46:19 +0000343 .s2div = icst307_s2div,
344 .idx2s = icst307_idx2s,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345};
346
Russell King39c0cb02010-01-16 16:27:28 +0000347static void versatile_oscvco_set(struct clk *clk, struct icst_vco vco)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Russell Kingd1914c72010-01-14 20:09:34 +0000349 void __iomem *sys_lock = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LOCK_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 u32 val;
351
Russell Kingd1914c72010-01-14 20:09:34 +0000352 val = readl(clk->vcoreg) & ~0x7ffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 val |= vco.v | (vco.r << 9) | (vco.s << 16);
354
355 writel(0xa05f, sys_lock);
Russell Kingd1914c72010-01-14 20:09:34 +0000356 writel(val, clk->vcoreg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 writel(0, sys_lock);
358}
359
Russell King9bf5b2e2010-03-01 16:18:39 +0000360static const struct clk_ops osc4_clk_ops = {
361 .round = icst_clk_round,
362 .set = icst_clk_set,
Russell King71a06da2008-11-08 20:13:53 +0000363 .setvco = versatile_oscvco_set,
364};
365
Russell King9bf5b2e2010-03-01 16:18:39 +0000366static struct clk osc4_clk = {
367 .ops = &osc4_clk_ops,
368 .params = &versatile_oscvco_params,
369};
370
Russell King71a06da2008-11-08 20:13:53 +0000371/*
372 * These are fixed clocks.
373 */
374static struct clk ref24_clk = {
375 .rate = 24000000,
376};
377
Russell King7ff550d2011-05-12 13:31:48 +0100378static struct clk sp804_clk = {
379 .rate = 1000000,
380};
381
Russell King3126c7b2010-07-15 11:01:17 +0100382static struct clk dummy_apb_pclk;
383
Rabin Vincent982db662009-05-18 17:29:30 +0100384static struct clk_lookup lookups[] = {
Russell King3126c7b2010-07-15 11:01:17 +0100385 { /* AMBA bus clock */
386 .con_id = "apb_pclk",
387 .clk = &dummy_apb_pclk,
388 }, { /* UART0 */
Russell King71a06da2008-11-08 20:13:53 +0000389 .dev_id = "dev:f1",
390 .clk = &ref24_clk,
391 }, { /* UART1 */
392 .dev_id = "dev:f2",
393 .clk = &ref24_clk,
394 }, { /* UART2 */
395 .dev_id = "dev:f3",
396 .clk = &ref24_clk,
397 }, { /* UART3 */
398 .dev_id = "fpga:09",
399 .clk = &ref24_clk,
400 }, { /* KMI0 */
401 .dev_id = "fpga:06",
402 .clk = &ref24_clk,
403 }, { /* KMI1 */
404 .dev_id = "fpga:07",
405 .clk = &ref24_clk,
406 }, { /* MMC0 */
407 .dev_id = "fpga:05",
408 .clk = &ref24_clk,
409 }, { /* MMC1 */
410 .dev_id = "fpga:0b",
411 .clk = &ref24_clk,
Linus Walleijef6f4b12010-07-14 23:59:27 +0100412 }, { /* SSP */
413 .dev_id = "dev:f4",
414 .clk = &ref24_clk,
Russell King71a06da2008-11-08 20:13:53 +0000415 }, { /* CLCD */
416 .dev_id = "dev:20",
417 .clk = &osc4_clk,
Russell King7ff550d2011-05-12 13:31:48 +0100418 }, { /* SP804 timers */
419 .dev_id = "sp804",
420 .clk = &sp804_clk,
421 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422};
423
424/*
425 * CLCD support.
426 */
427#define SYS_CLCD_MODE_MASK (3 << 0)
428#define SYS_CLCD_MODE_888 (0 << 0)
429#define SYS_CLCD_MODE_5551 (1 << 0)
430#define SYS_CLCD_MODE_565_RLSB (2 << 0)
431#define SYS_CLCD_MODE_565_BLSB (3 << 0)
432#define SYS_CLCD_NLCDIOON (1 << 2)
433#define SYS_CLCD_VDDPOSSWITCH (1 << 3)
434#define SYS_CLCD_PWR3V5SWITCH (1 << 4)
435#define SYS_CLCD_ID_MASK (0x1f << 8)
436#define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8)
437#define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
438#define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8)
439#define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8)
440#define SYS_CLCD_ID_VGA (0x1f << 8)
441
Russell King3414ba82011-01-18 20:12:10 +0000442static bool is_sanyo_2_5_lcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444/*
445 * Disable all display connectors on the interface module.
446 */
447static void versatile_clcd_disable(struct clcd_fb *fb)
448{
Al Viro2ad4f862005-09-29 00:09:02 +0100449 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 u32 val;
451
452 val = readl(sys_clcd);
453 val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
454 writel(val, sys_clcd);
455
456#ifdef CONFIG_MACH_VERSATILE_AB
457 /*
458 * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light off
459 */
Russell King3414ba82011-01-18 20:12:10 +0000460 if (machine_is_versatile_ab() && is_sanyo_2_5_lcd) {
Al Viro2ad4f862005-09-29 00:09:02 +0100461 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 unsigned long ctrl;
463
464 ctrl = readl(versatile_ib2_ctrl);
465 ctrl &= ~0x01;
466 writel(ctrl, versatile_ib2_ctrl);
467 }
468#endif
469}
470
471/*
472 * Enable the relevant connector on the interface module.
473 */
474static void versatile_clcd_enable(struct clcd_fb *fb)
475{
Russell King9728c1b2011-01-19 23:29:12 +0000476 struct fb_var_screeninfo *var = &fb->fb.var;
Al Viro2ad4f862005-09-29 00:09:02 +0100477 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 u32 val;
479
480 val = readl(sys_clcd);
481 val &= ~SYS_CLCD_MODE_MASK;
482
Russell King9728c1b2011-01-19 23:29:12 +0000483 switch (var->green.length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 case 5:
485 val |= SYS_CLCD_MODE_5551;
486 break;
487 case 6:
Russell King9728c1b2011-01-19 23:29:12 +0000488 if (var->red.offset == 0)
489 val |= SYS_CLCD_MODE_565_RLSB;
490 else
491 val |= SYS_CLCD_MODE_565_BLSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493 case 8:
494 val |= SYS_CLCD_MODE_888;
495 break;
496 }
497
498 /*
499 * Set the MUX
500 */
501 writel(val, sys_clcd);
502
503 /*
504 * And now enable the PSUs
505 */
506 val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
507 writel(val, sys_clcd);
508
509#ifdef CONFIG_MACH_VERSATILE_AB
510 /*
511 * If the LCD is Sanyo 2x5 in on the IB2 board, turn the back-light on
512 */
Russell King3414ba82011-01-18 20:12:10 +0000513 if (machine_is_versatile_ab() && is_sanyo_2_5_lcd) {
Al Viro2ad4f862005-09-29 00:09:02 +0100514 void __iomem *versatile_ib2_ctrl = __io_address(VERSATILE_IB2_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 unsigned long ctrl;
516
517 ctrl = readl(versatile_ib2_ctrl);
518 ctrl |= 0x01;
519 writel(ctrl, versatile_ib2_ctrl);
520 }
521#endif
522}
523
Russell King3414ba82011-01-18 20:12:10 +0000524/*
525 * Detect which LCD panel is connected, and return the appropriate
526 * clcd_panel structure. Note: we do not have any information on
527 * the required timings for the 8.4in panel, so we presently assume
528 * VGA timings.
529 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530static int versatile_clcd_setup(struct clcd_fb *fb)
531{
Russell King3414ba82011-01-18 20:12:10 +0000532 void __iomem *sys_clcd = __io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_CLCD_OFFSET;
533 const char *panel_name;
534 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Russell King3414ba82011-01-18 20:12:10 +0000536 is_sanyo_2_5_lcd = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Russell King3414ba82011-01-18 20:12:10 +0000538 val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
539 if (val == SYS_CLCD_ID_SANYO_3_8)
540 panel_name = "Sanyo TM38QV67A02A";
541 else if (val == SYS_CLCD_ID_SANYO_2_5) {
542 panel_name = "Sanyo QVGA Portrait";
543 is_sanyo_2_5_lcd = true;
544 } else if (val == SYS_CLCD_ID_EPSON_2_2)
545 panel_name = "Epson L2F50113T00";
546 else if (val == SYS_CLCD_ID_VGA)
547 panel_name = "VGA";
548 else {
549 printk(KERN_ERR "CLCD: unknown LCD panel ID 0x%08x, using VGA\n",
550 val);
551 panel_name = "VGA";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
Russell King3414ba82011-01-18 20:12:10 +0000554 fb->panel = versatile_clcd_get_panel(panel_name);
555 if (!fb->panel)
556 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Russell King3414ba82011-01-18 20:12:10 +0000558 return versatile_clcd_setup_dma(fb, SZ_1M);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Russell King9728c1b2011-01-19 23:29:12 +0000561static void versatile_clcd_decode(struct clcd_fb *fb, struct clcd_regs *regs)
562{
563 clcdfb_decode(fb, regs);
564
565 /* Always clear BGR for RGB565: we do the routing externally */
566 if (fb->fb.var.green.length == 6)
567 regs->cntl &= ~CNTL_BGR;
568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570static struct clcd_board clcd_plat_data = {
571 .name = "Versatile",
Russell King3414ba82011-01-18 20:12:10 +0000572 .caps = CLCD_CAP_5551 | CLCD_CAP_565 | CLCD_CAP_888,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 .check = clcdfb_check,
Russell King9728c1b2011-01-19 23:29:12 +0000574 .decode = versatile_clcd_decode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 .disable = versatile_clcd_disable,
576 .enable = versatile_clcd_enable,
577 .setup = versatile_clcd_setup,
Russell King3414ba82011-01-18 20:12:10 +0000578 .mmap = versatile_clcd_mmap_dma,
579 .remove = versatile_clcd_remove_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580};
581
Russell Kingbbeddc42009-07-05 22:43:01 +0100582static struct pl061_platform_data gpio0_plat_data = {
583 .gpio_base = 0,
584 .irq_base = IRQ_GPIO0_START,
585};
586
587static struct pl061_platform_data gpio1_plat_data = {
588 .gpio_base = 8,
589 .irq_base = IRQ_GPIO1_START,
590};
591
Linus Walleijef6f4b12010-07-14 23:59:27 +0100592static struct pl022_ssp_controller ssp0_plat_data = {
593 .bus_id = 0,
594 .enable_dma = 0,
595 .num_chipselect = 1,
596};
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598#define AACI_IRQ { IRQ_AACI, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599#define MMCI0_IRQ { IRQ_MMCI0A,IRQ_SIC_MMCI0B }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600#define KMI0_IRQ { IRQ_SIC_KMI0, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601#define KMI1_IRQ { IRQ_SIC_KMI1, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603/*
604 * These devices are connected directly to the multi-layer AHB switch
605 */
606#define SMC_IRQ { NO_IRQ, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#define MPMC_IRQ { NO_IRQ, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608#define CLCD_IRQ { IRQ_CLCDINT, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609#define DMAC_IRQ { IRQ_DMAINT, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611/*
612 * These devices are connected via the core APB bridge
613 */
614#define SCTL_IRQ { NO_IRQ, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615#define WATCHDOG_IRQ { IRQ_WDOGINT, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#define GPIO0_IRQ { IRQ_GPIOINT0, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617#define GPIO1_IRQ { IRQ_GPIOINT1, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#define RTC_IRQ { IRQ_RTCINT, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620/*
621 * These devices are connected via the DMA APB bridge
622 */
623#define SCI_IRQ { IRQ_SCIINT, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624#define UART0_IRQ { IRQ_UARTINT0, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625#define UART1_IRQ { IRQ_UARTINT1, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626#define UART2_IRQ { IRQ_UARTINT2, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627#define SSP_IRQ { IRQ_SSPINT, NO_IRQ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629/* FPGA Primecells */
630AMBA_DEVICE(aaci, "fpga:04", AACI, NULL);
631AMBA_DEVICE(mmc0, "fpga:05", MMCI0, &mmc0_plat_data);
632AMBA_DEVICE(kmi0, "fpga:06", KMI0, NULL);
633AMBA_DEVICE(kmi1, "fpga:07", KMI1, NULL);
634
635/* DevChip Primecells */
636AMBA_DEVICE(smc, "dev:00", SMC, NULL);
637AMBA_DEVICE(mpmc, "dev:10", MPMC, NULL);
638AMBA_DEVICE(clcd, "dev:20", CLCD, &clcd_plat_data);
639AMBA_DEVICE(dmac, "dev:30", DMAC, NULL);
640AMBA_DEVICE(sctl, "dev:e0", SCTL, NULL);
641AMBA_DEVICE(wdog, "dev:e1", WATCHDOG, NULL);
Russell Kingbbeddc42009-07-05 22:43:01 +0100642AMBA_DEVICE(gpio0, "dev:e4", GPIO0, &gpio0_plat_data);
643AMBA_DEVICE(gpio1, "dev:e5", GPIO1, &gpio1_plat_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644AMBA_DEVICE(rtc, "dev:e8", RTC, NULL);
645AMBA_DEVICE(sci0, "dev:f0", SCI, NULL);
646AMBA_DEVICE(uart0, "dev:f1", UART0, NULL);
647AMBA_DEVICE(uart1, "dev:f2", UART1, NULL);
648AMBA_DEVICE(uart2, "dev:f3", UART2, NULL);
Linus Walleijef6f4b12010-07-14 23:59:27 +0100649AMBA_DEVICE(ssp0, "dev:f4", SSP, &ssp0_plat_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651static struct amba_device *amba_devs[] __initdata = {
652 &dmac_device,
653 &uart0_device,
654 &uart1_device,
655 &uart2_device,
656 &smc_device,
657 &mpmc_device,
658 &clcd_device,
659 &sctl_device,
660 &wdog_device,
661 &gpio0_device,
662 &gpio1_device,
663 &rtc_device,
664 &sci0_device,
665 &ssp0_device,
666 &aaci_device,
667 &mmc0_device,
668 &kmi0_device,
669 &kmi1_device,
670};
671
672#ifdef CONFIG_LEDS
Al Viro2ad4f862005-09-29 00:09:02 +0100673#define VA_LEDS_BASE (__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LED_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675static void versatile_leds_event(led_event_t ledevt)
676{
677 unsigned long flags;
678 u32 val;
679
680 local_irq_save(flags);
681 val = readl(VA_LEDS_BASE);
682
683 switch (ledevt) {
684 case led_idle_start:
685 val = val & ~VERSATILE_SYS_LED0;
686 break;
687
688 case led_idle_end:
689 val = val | VERSATILE_SYS_LED0;
690 break;
691
692 case led_timer:
693 val = val ^ VERSATILE_SYS_LED1;
694 break;
695
696 case led_halted:
697 val = 0;
698 break;
699
700 default:
701 break;
702 }
703
704 writel(val, VA_LEDS_BASE);
705 local_irq_restore(flags);
706}
707#endif /* CONFIG_LEDS */
708
Russell Kingad3bb192011-01-11 12:55:38 +0000709/* Early initializations */
710void __init versatile_init_early(void)
711{
712 void __iomem *sys = __io_address(VERSATILE_SYS_BASE);
713
714 osc4_clk.vcoreg = sys + VERSATILE_SYS_OSCCLCD_OFFSET;
715 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
716
717 versatile_sched_clock_init(sys + VERSATILE_SYS_24MHz_OFFSET, 24000000);
718}
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720void __init versatile_init(void)
721{
722 int i;
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 platform_device_register(&versatile_flash_device);
Russell King6b65cd72006-12-10 21:21:32 +0100725 platform_device_register(&versatile_i2c_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 platform_device_register(&smc91x_device);
Linus Walleijd161edf2010-07-17 12:34:25 +0100727 platform_device_register(&char_lcd_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
730 struct amba_device *d = amba_devs[i];
731 amba_device_register(d, &iomem_resource);
732 }
733
734#ifdef CONFIG_LEDS
735 leds_event = versatile_leds_event;
736#endif
737}
738
739/*
740 * Where is the timer (VA)?
741 */
Al Viro2ad4f862005-09-29 00:09:02 +0100742#define TIMER0_VA_BASE __io_address(VERSATILE_TIMER0_1_BASE)
743#define TIMER1_VA_BASE (__io_address(VERSATILE_TIMER0_1_BASE) + 0x20)
744#define TIMER2_VA_BASE __io_address(VERSATILE_TIMER2_3_BASE)
745#define TIMER3_VA_BASE (__io_address(VERSATILE_TIMER2_3_BASE) + 0x20)
Kevin Hilmanb49c87c2007-03-08 20:25:13 +0100746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747/*
748 * Set up timer interrupt, and return the current time in seconds.
749 */
750static void __init versatile_timer_init(void)
751{
Russell Kingb720f732005-06-29 15:15:54 +0100752 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /*
755 * set clock frequency:
756 * VERSATILE_REFCLK is 32KHz
757 * VERSATILE_TIMCLK is 1MHz
758 */
Al Viro2ad4f862005-09-29 00:09:02 +0100759 val = readl(__io_address(VERSATILE_SCTL_BASE));
Russell Kingb720f732005-06-29 15:15:54 +0100760 writel((VERSATILE_TIMCLK << VERSATILE_TIMER1_EnSel) |
761 (VERSATILE_TIMCLK << VERSATILE_TIMER2_EnSel) |
762 (VERSATILE_TIMCLK << VERSATILE_TIMER3_EnSel) |
763 (VERSATILE_TIMCLK << VERSATILE_TIMER4_EnSel) | val,
Al Viro2ad4f862005-09-29 00:09:02 +0100764 __io_address(VERSATILE_SCTL_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /*
767 * Initialise to a known state (all timers off)
768 */
Russell Kingb720f732005-06-29 15:15:54 +0100769 writel(0, TIMER0_VA_BASE + TIMER_CTRL);
770 writel(0, TIMER1_VA_BASE + TIMER_CTRL);
771 writel(0, TIMER2_VA_BASE + TIMER_CTRL);
772 writel(0, TIMER3_VA_BASE + TIMER_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Russell Kingfb593cf2011-05-12 12:08:23 +0100774 sp804_clocksource_init(TIMER3_VA_BASE, "timer3");
Russell Kinge3887712010-01-14 13:30:16 +0000775 sp804_clockevents_init(TIMER0_VA_BASE, IRQ_TIMERINT0_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
778struct sys_timer versatile_timer = {
779 .init = versatile_timer_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780};
Kevin Hilmanb49c87c2007-03-08 20:25:13 +0100781