blob: c309593abdb223e9c9499c0469f080344ea40fd7 [file] [log] [blame]
Catalin Marinas8ad68bb2005-10-31 14:25:02 +00001/*
2 * linux/arch/arm/mach-realview/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 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000021#include <linux/init.h>
Russell King1be72282005-10-31 16:57:06 +000022#include <linux/platform_device.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000023#include <linux/dma-mapping.h>
Kay Sieversedbaa602011-12-21 16:26:03 -080024#include <linux/device.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000025#include <linux/interrupt.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000026#include <linux/amba/bus.h>
27#include <linux/amba/clcd.h>
Linus Walleij11c32d72014-05-22 23:25:14 +020028#include <linux/platform_data/video-clcd-versatile.h>
Russell Kingfced80c2008-09-06 12:10:45 +010029#include <linux/io.h>
Steve Glendinningc5142e82009-01-20 13:23:30 +000030#include <linux/smsc911x.h>
Arnd Bergmannb70661c2015-02-25 16:31:57 +010031#include <linux/smc91x.h>
Catalin Marinas6be62ba2009-02-12 15:59:21 +010032#include <linux/ata_platform.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010033#include <linux/amba/mmci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/gfp.h>
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010035#include <linux/mtd/physmap.h>
Laura Abbott1c2f87c2014-04-13 22:54:58 +010036#include <linux/memblock.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000037
Russell Kinga09e64f2008-08-05 16:14:15 +010038#include <mach/hardware.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000039#include <asm/irq.h>
Colin Tuckley68c3d932008-11-10 14:10:11 +000040#include <asm/mach-types.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000041#include <asm/hardware/arm_timer.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000042#include <asm/hardware/icst.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000043
44#include <asm/mach/arch.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000045#include <asm/mach/irq.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000046#include <asm/mach/map.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000047
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000048
Catalin Marinasee8c9572009-05-30 14:00:17 +010049#include <mach/platform.h>
50#include <mach/irqs.h>
Rob Herring8a9618f2010-10-06 16:18:08 +010051#include <asm/hardware/timer-sp.h>
Catalin Marinasee8c9572009-05-30 14:00:17 +010052
Russell King1da0c892010-12-15 21:56:47 +000053#include <plat/sched_clock.h>
54
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000055#include "core.h"
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000056
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000057#define REALVIEW_FLASHCTRL (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_FLASH_OFFSET)
58
Marc Zyngier667f3902011-05-18 10:51:55 +010059static void realview_flash_set_vpp(struct platform_device *pdev, int on)
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000060{
61 u32 val;
62
63 val = __raw_readl(REALVIEW_FLASHCTRL);
64 if (on)
65 val |= REALVIEW_FLASHPROG_FLVPPEN;
66 else
67 val &= ~REALVIEW_FLASHPROG_FLVPPEN;
68 __raw_writel(val, REALVIEW_FLASHCTRL);
69}
70
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010071static struct physmap_flash_data realview_flash_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000072 .width = 4,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000073 .set_vpp = realview_flash_set_vpp,
74};
75
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000076struct platform_device realview_flash_device = {
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010077 .name = "physmap-flash",
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000078 .id = 0,
79 .dev = {
80 .platform_data = &realview_flash_data,
81 },
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000082};
83
Catalin Marinasa44ddfd2008-04-18 22:43:10 +010084int realview_flash_register(struct resource *res, u32 num)
85{
86 realview_flash_device.resource = res;
87 realview_flash_device.num_resources = num;
88 return platform_device_register(&realview_flash_device);
89}
90
Steve Glendinningc5142e82009-01-20 13:23:30 +000091static struct smsc911x_platform_config smsc911x_config = {
92 .flags = SMSC911X_USE_32BIT,
93 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH,
94 .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
95 .phy_interface = PHY_INTERFACE_MODE_MII,
Catalin Marinas0a5b2f62008-12-01 14:54:59 +000096};
97
Arnd Bergmannb70661c2015-02-25 16:31:57 +010098static struct smc91x_platdata smc91x_platdata = {
99 .flags = SMC91X_USE_32BIT | SMC91X_NOWAIT,
100};
101
Catalin Marinas0a381332008-12-01 14:54:58 +0000102static struct platform_device realview_eth_device = {
Steve Glendinningc5142e82009-01-20 13:23:30 +0000103 .name = "smsc911x",
Catalin Marinas0a381332008-12-01 14:54:58 +0000104 .id = 0,
105 .num_resources = 2,
106};
107
108int realview_eth_register(const char *name, struct resource *res)
109{
110 if (name)
111 realview_eth_device.name = name;
112 realview_eth_device.resource = res;
Steve Glendinningc5142e82009-01-20 13:23:30 +0000113 if (strcmp(realview_eth_device.name, "smsc911x") == 0)
114 realview_eth_device.dev.platform_data = &smsc911x_config;
Arnd Bergmannb70661c2015-02-25 16:31:57 +0100115 else
116 realview_eth_device.dev.platform_data = &smc91x_platdata;
Catalin Marinas0a381332008-12-01 14:54:58 +0000117
118 return platform_device_register(&realview_eth_device);
119}
120
Catalin Marinas7db21712009-02-12 16:00:21 +0100121struct platform_device realview_usb_device = {
122 .name = "isp1760",
123 .num_resources = 2,
124};
125
126int realview_usb_register(struct resource *res)
127{
128 realview_usb_device.resource = res;
129 return platform_device_register(&realview_usb_device);
130}
131
Catalin Marinas6be62ba2009-02-12 15:59:21 +0100132static struct pata_platform_info pata_platform_data = {
133 .ioport_shift = 1,
134};
135
136static struct resource pata_resources[] = {
137 [0] = {
138 .start = REALVIEW_CF_BASE,
139 .end = REALVIEW_CF_BASE + 0xff,
140 .flags = IORESOURCE_MEM,
141 },
142 [1] = {
143 .start = REALVIEW_CF_BASE + 0x100,
144 .end = REALVIEW_CF_BASE + SZ_4K - 1,
145 .flags = IORESOURCE_MEM,
146 },
147};
148
149struct platform_device realview_cf_device = {
150 .name = "pata_platform",
151 .id = -1,
152 .num_resources = ARRAY_SIZE(pata_resources),
153 .resource = pata_resources,
154 .dev = {
155 .platform_data = &pata_platform_data,
156 },
157};
158
Linus Walleije4ecf2b2014-02-27 14:29:22 +0100159static struct resource realview_leds_resources[] = {
160 {
161 .start = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET,
162 .end = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET + 4,
163 .flags = IORESOURCE_MEM,
164 },
165};
166
167struct platform_device realview_leds_device = {
168 .name = "versatile-leds",
169 .id = -1,
170 .num_resources = ARRAY_SIZE(realview_leds_resources),
171 .resource = realview_leds_resources,
172};
173
Russell King6b65cd72006-12-10 21:21:32 +0100174static struct resource realview_i2c_resource = {
175 .start = REALVIEW_I2C_BASE,
176 .end = REALVIEW_I2C_BASE + SZ_4K - 1,
177 .flags = IORESOURCE_MEM,
178};
179
180struct platform_device realview_i2c_device = {
181 .name = "versatile-i2c",
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100182 .id = 0,
Russell King6b65cd72006-12-10 21:21:32 +0100183 .num_resources = 1,
184 .resource = &realview_i2c_resource,
185};
186
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100187static struct i2c_board_info realview_i2c_board_info[] = {
188 {
Russell King64e8be62009-07-18 15:51:55 +0100189 I2C_BOARD_INFO("ds1338", 0xd0 >> 1),
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100190 },
191};
192
193static int __init realview_i2c_init(void)
194{
195 return i2c_register_board_info(0, realview_i2c_board_info,
196 ARRAY_SIZE(realview_i2c_board_info));
197}
198arch_initcall(realview_i2c_init);
199
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000200#define REALVIEW_SYSMCI (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_MCI_OFFSET)
201
Russell King98b09792009-07-09 15:17:41 +0100202/*
203 * This is only used if GPIOLIB support is disabled
204 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000205static unsigned int realview_mmc_status(struct device *dev)
206{
207 struct amba_device *adev = container_of(dev, struct amba_device, dev);
208 u32 mask;
209
Linus Walleij48f1d5a2010-07-02 10:24:03 +0100210 if (machine_is_realview_pb1176()) {
211 static bool inserted = false;
212
213 /*
214 * The PB1176 does not have the status register,
215 * assume it is inserted at startup, then invert
216 * for each call so card insertion/removal will
217 * be detected anyway. This will not be called if
218 * GPIO on PL061 is active, which is the proper
219 * way to do this on the PB1176.
220 */
221 inserted = !inserted;
222 return inserted ? 0 : 1;
223 }
224
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000225 if (adev->res.start == REALVIEW_MMCI0_BASE)
226 mask = 1;
227 else
228 mask = 2;
229
Russell King74bc8092010-07-29 15:58:59 +0100230 return readl(REALVIEW_SYSMCI) & mask;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000231}
232
Linus Walleij6ef297f2009-09-22 14:29:36 +0100233struct mmci_platform_data realview_mmc0_plat_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000234 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
235 .status = realview_mmc_status,
Russell King98b09792009-07-09 15:17:41 +0100236 .gpio_wp = 17,
237 .gpio_cd = 16,
Rabin Vincent29719442010-08-09 12:54:43 +0100238 .cd_invert = true,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000239};
240
Linus Walleij6ef297f2009-09-22 14:29:36 +0100241struct mmci_platform_data realview_mmc1_plat_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000242 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
243 .status = realview_mmc_status,
Russell King98b09792009-07-09 15:17:41 +0100244 .gpio_wp = 19,
245 .gpio_cd = 18,
Rabin Vincent29719442010-08-09 12:54:43 +0100246 .cd_invert = true,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000247};
248
Russell King631e55f2011-01-11 13:05:01 +0000249void __init realview_init_early(void)
Russell Kingcf30fb42008-11-08 20:05:55 +0000250{
Russell King631e55f2011-01-11 13:05:01 +0000251 void __iomem *sys = __io_address(REALVIEW_SYS_BASE);
252
Russell King631e55f2011-01-11 13:05:01 +0000253 versatile_sched_clock_init(sys + REALVIEW_SYS_24MHz_OFFSET, 24000000);
Russell Kingcf30fb42008-11-08 20:05:55 +0000254}
Russell Kingcf30fb42008-11-08 20:05:55 +0000255
256/*
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000257 * CLCD support.
258 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000259#define SYS_CLCD_NLCDIOON (1 << 2)
260#define SYS_CLCD_VDDPOSSWITCH (1 << 3)
261#define SYS_CLCD_PWR3V5SWITCH (1 << 4)
262#define SYS_CLCD_ID_MASK (0x1f << 8)
263#define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8)
264#define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
265#define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8)
266#define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8)
267#define SYS_CLCD_ID_VGA (0x1f << 8)
268
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000269/*
270 * Disable all display connectors on the interface module.
271 */
272static void realview_clcd_disable(struct clcd_fb *fb)
273{
274 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
275 u32 val;
276
277 val = readl(sys_clcd);
278 val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
279 writel(val, sys_clcd);
280}
281
282/*
283 * Enable the relevant connector on the interface module.
284 */
285static void realview_clcd_enable(struct clcd_fb *fb)
286{
287 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
288 u32 val;
289
Catalin Marinas9e7714d2006-03-16 14:10:20 +0000290 /*
291 * Enable the PSUs
292 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000293 val = readl(sys_clcd);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000294 val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
295 writel(val, sys_clcd);
296}
297
Russell King3cb5ee42011-01-18 20:13:20 +0000298/*
299 * Detect which LCD panel is connected, and return the appropriate
300 * clcd_panel structure. Note: we do not have any information on
301 * the required timings for the 8.4in panel, so we presently assume
302 * VGA timings.
303 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000304static int realview_clcd_setup(struct clcd_fb *fb)
305{
Russell King3cb5ee42011-01-18 20:13:20 +0000306 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
307 const char *panel_name, *vga_panel_name;
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000308 unsigned long framesize;
Russell King3cb5ee42011-01-18 20:13:20 +0000309 u32 val;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000310
Russell King3cb5ee42011-01-18 20:13:20 +0000311 if (machine_is_realview_eb()) {
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000312 /* VGA, 16bpp */
313 framesize = 640 * 480 * 2;
Russell King3cb5ee42011-01-18 20:13:20 +0000314 vga_panel_name = "VGA";
315 } else {
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000316 /* XVGA, 16bpp */
317 framesize = 1024 * 768 * 2;
Russell King3cb5ee42011-01-18 20:13:20 +0000318 vga_panel_name = "XVGA";
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000319 }
320
Russell King3cb5ee42011-01-18 20:13:20 +0000321 val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
322 if (val == SYS_CLCD_ID_SANYO_3_8)
323 panel_name = "Sanyo TM38QV67A02A";
324 else if (val == SYS_CLCD_ID_SANYO_2_5)
325 panel_name = "Sanyo QVGA Portrait";
326 else if (val == SYS_CLCD_ID_EPSON_2_2)
327 panel_name = "Epson L2F50113T00";
328 else if (val == SYS_CLCD_ID_VGA)
329 panel_name = vga_panel_name;
330 else {
331 pr_err("CLCD: unknown LCD panel ID 0x%08x, using VGA\n", val);
332 panel_name = vga_panel_name;
333 }
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000334
Russell King3cb5ee42011-01-18 20:13:20 +0000335 fb->panel = versatile_clcd_get_panel(panel_name);
336 if (!fb->panel)
337 return -EINVAL;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000338
Russell King3cb5ee42011-01-18 20:13:20 +0000339 return versatile_clcd_setup_dma(fb, framesize);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000340}
341
342struct clcd_board clcd_plat_data = {
343 .name = "RealView",
Russell King3cb5ee42011-01-18 20:13:20 +0000344 .caps = CLCD_CAP_ALL,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000345 .check = clcdfb_check,
346 .decode = clcdfb_decode,
347 .disable = realview_clcd_disable,
348 .enable = realview_clcd_enable,
349 .setup = realview_clcd_setup,
Russell King3cb5ee42011-01-18 20:13:20 +0000350 .mmap = versatile_clcd_mmap_dma,
351 .remove = versatile_clcd_remove_dma,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000352};
353
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000354/*
355 * Where is the timer (VA)?
356 */
Catalin Marinas80192732008-04-18 22:43:11 +0100357void __iomem *timer0_va_base;
358void __iomem *timer1_va_base;
359void __iomem *timer2_va_base;
360void __iomem *timer3_va_base;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000361
362/*
Catalin Marinasa8655e82008-02-04 17:30:57 +0100363 * Set up the clock source and clock events devices
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000364 */
Catalin Marinas8cc4c542008-02-04 17:43:02 +0100365void __init realview_timer_init(unsigned int timer_irq)
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000366{
367 u32 val;
368
369 /*
370 * set clock frequency:
371 * REALVIEW_REFCLK is 32KHz
372 * REALVIEW_TIMCLK is 1MHz
373 */
374 val = readl(__io_address(REALVIEW_SCTL_BASE));
375 writel((REALVIEW_TIMCLK << REALVIEW_TIMER1_EnSel) |
376 (REALVIEW_TIMCLK << REALVIEW_TIMER2_EnSel) |
377 (REALVIEW_TIMCLK << REALVIEW_TIMER3_EnSel) |
378 (REALVIEW_TIMCLK << REALVIEW_TIMER4_EnSel) | val,
379 __io_address(REALVIEW_SCTL_BASE));
380
381 /*
382 * Initialise to a known state (all timers off)
383 */
Catalin Marinas80192732008-04-18 22:43:11 +0100384 writel(0, timer0_va_base + TIMER_CTRL);
385 writel(0, timer1_va_base + TIMER_CTRL);
386 writel(0, timer2_va_base + TIMER_CTRL);
387 writel(0, timer3_va_base + TIMER_CTRL);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000388
Russell Kingfb593cf2011-05-12 12:08:23 +0100389 sp804_clocksource_init(timer3_va_base, "timer3");
Russell King57cc4f72011-05-12 15:31:13 +0100390 sp804_clockevents_init(timer0_va_base, timer_irq, "timer0");
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000391}
Catalin Marinas5b39d152009-11-04 12:19:04 +0000392
393/*
394 * Setup the memory banks.
395 */
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100396void realview_fixup(struct tag *tags, char **from)
Catalin Marinas5b39d152009-11-04 12:19:04 +0000397{
398 /*
399 * Most RealView platforms have 512MB contiguous RAM at 0x70000000.
400 * Half of this is mirrored at 0.
401 */
402#ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100403 memblock_add(0x70000000, SZ_512M);
Catalin Marinas5b39d152009-11-04 12:19:04 +0000404#else
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100405 memblock_add(0, SZ_256M);
Catalin Marinas5b39d152009-11-04 12:19:04 +0000406#endif
407}