blob: 960b8dd78c4498f935fb841a510bb38736d09d4e [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>
Russell Kingfced80c2008-09-06 12:10:45 +010028#include <linux/io.h>
Steve Glendinningc5142e82009-01-20 13:23:30 +000029#include <linux/smsc911x.h>
Catalin Marinas6be62ba2009-02-12 15:59:21 +010030#include <linux/ata_platform.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010031#include <linux/amba/mmci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/gfp.h>
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010033#include <linux/mtd/physmap.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000034
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/hardware.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000036#include <asm/irq.h>
Colin Tuckley68c3d932008-11-10 14:10:11 +000037#include <asm/mach-types.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000038#include <asm/hardware/arm_timer.h>
Russell Kingc5a0adb2010-01-16 20:16:10 +000039#include <asm/hardware/icst.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000040
41#include <asm/mach/arch.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000042#include <asm/mach/irq.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000043#include <asm/mach/map.h>
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000044
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000045
Catalin Marinasee8c9572009-05-30 14:00:17 +010046#include <mach/platform.h>
47#include <mach/irqs.h>
Rob Herring8a9618f2010-10-06 16:18:08 +010048#include <asm/hardware/timer-sp.h>
Catalin Marinasee8c9572009-05-30 14:00:17 +010049
Russell King3cb5ee42011-01-18 20:13:20 +000050#include <plat/clcd.h>
Russell King1da0c892010-12-15 21:56:47 +000051#include <plat/sched_clock.h>
52
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000053#include "core.h"
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000054
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000055#define REALVIEW_FLASHCTRL (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_FLASH_OFFSET)
56
Marc Zyngier667f3902011-05-18 10:51:55 +010057static void realview_flash_set_vpp(struct platform_device *pdev, int on)
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000058{
59 u32 val;
60
61 val = __raw_readl(REALVIEW_FLASHCTRL);
62 if (on)
63 val |= REALVIEW_FLASHPROG_FLVPPEN;
64 else
65 val &= ~REALVIEW_FLASHPROG_FLVPPEN;
66 __raw_writel(val, REALVIEW_FLASHCTRL);
67}
68
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010069static struct physmap_flash_data realview_flash_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000070 .width = 4,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000071 .set_vpp = realview_flash_set_vpp,
72};
73
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000074struct platform_device realview_flash_device = {
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010075 .name = "physmap-flash",
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000076 .id = 0,
77 .dev = {
78 .platform_data = &realview_flash_data,
79 },
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000080};
81
Catalin Marinasa44ddfd2008-04-18 22:43:10 +010082int realview_flash_register(struct resource *res, u32 num)
83{
84 realview_flash_device.resource = res;
85 realview_flash_device.num_resources = num;
86 return platform_device_register(&realview_flash_device);
87}
88
Steve Glendinningc5142e82009-01-20 13:23:30 +000089static struct smsc911x_platform_config smsc911x_config = {
90 .flags = SMSC911X_USE_32BIT,
91 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH,
92 .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
93 .phy_interface = PHY_INTERFACE_MODE_MII,
Catalin Marinas0a5b2f62008-12-01 14:54:59 +000094};
95
Catalin Marinas0a381332008-12-01 14:54:58 +000096static struct platform_device realview_eth_device = {
Steve Glendinningc5142e82009-01-20 13:23:30 +000097 .name = "smsc911x",
Catalin Marinas0a381332008-12-01 14:54:58 +000098 .id = 0,
99 .num_resources = 2,
100};
101
102int realview_eth_register(const char *name, struct resource *res)
103{
104 if (name)
105 realview_eth_device.name = name;
106 realview_eth_device.resource = res;
Steve Glendinningc5142e82009-01-20 13:23:30 +0000107 if (strcmp(realview_eth_device.name, "smsc911x") == 0)
108 realview_eth_device.dev.platform_data = &smsc911x_config;
Catalin Marinas0a381332008-12-01 14:54:58 +0000109
110 return platform_device_register(&realview_eth_device);
111}
112
Catalin Marinas7db21712009-02-12 16:00:21 +0100113struct platform_device realview_usb_device = {
114 .name = "isp1760",
115 .num_resources = 2,
116};
117
118int realview_usb_register(struct resource *res)
119{
120 realview_usb_device.resource = res;
121 return platform_device_register(&realview_usb_device);
122}
123
Catalin Marinas6be62ba2009-02-12 15:59:21 +0100124static struct pata_platform_info pata_platform_data = {
125 .ioport_shift = 1,
126};
127
128static struct resource pata_resources[] = {
129 [0] = {
130 .start = REALVIEW_CF_BASE,
131 .end = REALVIEW_CF_BASE + 0xff,
132 .flags = IORESOURCE_MEM,
133 },
134 [1] = {
135 .start = REALVIEW_CF_BASE + 0x100,
136 .end = REALVIEW_CF_BASE + SZ_4K - 1,
137 .flags = IORESOURCE_MEM,
138 },
139};
140
141struct platform_device realview_cf_device = {
142 .name = "pata_platform",
143 .id = -1,
144 .num_resources = ARRAY_SIZE(pata_resources),
145 .resource = pata_resources,
146 .dev = {
147 .platform_data = &pata_platform_data,
148 },
149};
150
Linus Walleije4ecf2b2014-02-27 14:29:22 +0100151static struct resource realview_leds_resources[] = {
152 {
153 .start = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET,
154 .end = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET + 4,
155 .flags = IORESOURCE_MEM,
156 },
157};
158
159struct platform_device realview_leds_device = {
160 .name = "versatile-leds",
161 .id = -1,
162 .num_resources = ARRAY_SIZE(realview_leds_resources),
163 .resource = realview_leds_resources,
164};
165
Russell King6b65cd72006-12-10 21:21:32 +0100166static struct resource realview_i2c_resource = {
167 .start = REALVIEW_I2C_BASE,
168 .end = REALVIEW_I2C_BASE + SZ_4K - 1,
169 .flags = IORESOURCE_MEM,
170};
171
172struct platform_device realview_i2c_device = {
173 .name = "versatile-i2c",
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100174 .id = 0,
Russell King6b65cd72006-12-10 21:21:32 +0100175 .num_resources = 1,
176 .resource = &realview_i2c_resource,
177};
178
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100179static struct i2c_board_info realview_i2c_board_info[] = {
180 {
Russell King64e8be62009-07-18 15:51:55 +0100181 I2C_BOARD_INFO("ds1338", 0xd0 >> 1),
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100182 },
183};
184
185static int __init realview_i2c_init(void)
186{
187 return i2c_register_board_info(0, realview_i2c_board_info,
188 ARRAY_SIZE(realview_i2c_board_info));
189}
190arch_initcall(realview_i2c_init);
191
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000192#define REALVIEW_SYSMCI (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_MCI_OFFSET)
193
Russell King98b09792009-07-09 15:17:41 +0100194/*
195 * This is only used if GPIOLIB support is disabled
196 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000197static unsigned int realview_mmc_status(struct device *dev)
198{
199 struct amba_device *adev = container_of(dev, struct amba_device, dev);
200 u32 mask;
201
Linus Walleij48f1d5a2010-07-02 10:24:03 +0100202 if (machine_is_realview_pb1176()) {
203 static bool inserted = false;
204
205 /*
206 * The PB1176 does not have the status register,
207 * assume it is inserted at startup, then invert
208 * for each call so card insertion/removal will
209 * be detected anyway. This will not be called if
210 * GPIO on PL061 is active, which is the proper
211 * way to do this on the PB1176.
212 */
213 inserted = !inserted;
214 return inserted ? 0 : 1;
215 }
216
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000217 if (adev->res.start == REALVIEW_MMCI0_BASE)
218 mask = 1;
219 else
220 mask = 2;
221
Russell King74bc8092010-07-29 15:58:59 +0100222 return readl(REALVIEW_SYSMCI) & mask;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000223}
224
Linus Walleij6ef297f2009-09-22 14:29:36 +0100225struct mmci_platform_data realview_mmc0_plat_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000226 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
227 .status = realview_mmc_status,
Russell King98b09792009-07-09 15:17:41 +0100228 .gpio_wp = 17,
229 .gpio_cd = 16,
Rabin Vincent29719442010-08-09 12:54:43 +0100230 .cd_invert = true,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000231};
232
Linus Walleij6ef297f2009-09-22 14:29:36 +0100233struct mmci_platform_data realview_mmc1_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 = 19,
237 .gpio_cd = 18,
Rabin Vincent29719442010-08-09 12:54:43 +0100238 .cd_invert = true,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000239};
240
Russell King631e55f2011-01-11 13:05:01 +0000241void __init realview_init_early(void)
Russell Kingcf30fb42008-11-08 20:05:55 +0000242{
Russell King631e55f2011-01-11 13:05:01 +0000243 void __iomem *sys = __io_address(REALVIEW_SYS_BASE);
244
Russell King631e55f2011-01-11 13:05:01 +0000245 versatile_sched_clock_init(sys + REALVIEW_SYS_24MHz_OFFSET, 24000000);
Russell Kingcf30fb42008-11-08 20:05:55 +0000246}
Russell Kingcf30fb42008-11-08 20:05:55 +0000247
248/*
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000249 * CLCD support.
250 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000251#define SYS_CLCD_NLCDIOON (1 << 2)
252#define SYS_CLCD_VDDPOSSWITCH (1 << 3)
253#define SYS_CLCD_PWR3V5SWITCH (1 << 4)
254#define SYS_CLCD_ID_MASK (0x1f << 8)
255#define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8)
256#define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
257#define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8)
258#define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8)
259#define SYS_CLCD_ID_VGA (0x1f << 8)
260
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000261/*
262 * Disable all display connectors on the interface module.
263 */
264static void realview_clcd_disable(struct clcd_fb *fb)
265{
266 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
267 u32 val;
268
269 val = readl(sys_clcd);
270 val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
271 writel(val, sys_clcd);
272}
273
274/*
275 * Enable the relevant connector on the interface module.
276 */
277static void realview_clcd_enable(struct clcd_fb *fb)
278{
279 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
280 u32 val;
281
Catalin Marinas9e7714d2006-03-16 14:10:20 +0000282 /*
283 * Enable the PSUs
284 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000285 val = readl(sys_clcd);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000286 val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
287 writel(val, sys_clcd);
288}
289
Russell King3cb5ee42011-01-18 20:13:20 +0000290/*
291 * Detect which LCD panel is connected, and return the appropriate
292 * clcd_panel structure. Note: we do not have any information on
293 * the required timings for the 8.4in panel, so we presently assume
294 * VGA timings.
295 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000296static int realview_clcd_setup(struct clcd_fb *fb)
297{
Russell King3cb5ee42011-01-18 20:13:20 +0000298 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
299 const char *panel_name, *vga_panel_name;
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000300 unsigned long framesize;
Russell King3cb5ee42011-01-18 20:13:20 +0000301 u32 val;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000302
Russell King3cb5ee42011-01-18 20:13:20 +0000303 if (machine_is_realview_eb()) {
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000304 /* VGA, 16bpp */
305 framesize = 640 * 480 * 2;
Russell King3cb5ee42011-01-18 20:13:20 +0000306 vga_panel_name = "VGA";
307 } else {
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000308 /* XVGA, 16bpp */
309 framesize = 1024 * 768 * 2;
Russell King3cb5ee42011-01-18 20:13:20 +0000310 vga_panel_name = "XVGA";
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000311 }
312
Russell King3cb5ee42011-01-18 20:13:20 +0000313 val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
314 if (val == SYS_CLCD_ID_SANYO_3_8)
315 panel_name = "Sanyo TM38QV67A02A";
316 else if (val == SYS_CLCD_ID_SANYO_2_5)
317 panel_name = "Sanyo QVGA Portrait";
318 else if (val == SYS_CLCD_ID_EPSON_2_2)
319 panel_name = "Epson L2F50113T00";
320 else if (val == SYS_CLCD_ID_VGA)
321 panel_name = vga_panel_name;
322 else {
323 pr_err("CLCD: unknown LCD panel ID 0x%08x, using VGA\n", val);
324 panel_name = vga_panel_name;
325 }
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000326
Russell King3cb5ee42011-01-18 20:13:20 +0000327 fb->panel = versatile_clcd_get_panel(panel_name);
328 if (!fb->panel)
329 return -EINVAL;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000330
Russell King3cb5ee42011-01-18 20:13:20 +0000331 return versatile_clcd_setup_dma(fb, framesize);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000332}
333
334struct clcd_board clcd_plat_data = {
335 .name = "RealView",
Russell King3cb5ee42011-01-18 20:13:20 +0000336 .caps = CLCD_CAP_ALL,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000337 .check = clcdfb_check,
338 .decode = clcdfb_decode,
339 .disable = realview_clcd_disable,
340 .enable = realview_clcd_enable,
341 .setup = realview_clcd_setup,
Russell King3cb5ee42011-01-18 20:13:20 +0000342 .mmap = versatile_clcd_mmap_dma,
343 .remove = versatile_clcd_remove_dma,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000344};
345
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000346/*
347 * Where is the timer (VA)?
348 */
Catalin Marinas80192732008-04-18 22:43:11 +0100349void __iomem *timer0_va_base;
350void __iomem *timer1_va_base;
351void __iomem *timer2_va_base;
352void __iomem *timer3_va_base;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000353
354/*
Catalin Marinasa8655e82008-02-04 17:30:57 +0100355 * Set up the clock source and clock events devices
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000356 */
Catalin Marinas8cc4c542008-02-04 17:43:02 +0100357void __init realview_timer_init(unsigned int timer_irq)
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000358{
359 u32 val;
360
361 /*
362 * set clock frequency:
363 * REALVIEW_REFCLK is 32KHz
364 * REALVIEW_TIMCLK is 1MHz
365 */
366 val = readl(__io_address(REALVIEW_SCTL_BASE));
367 writel((REALVIEW_TIMCLK << REALVIEW_TIMER1_EnSel) |
368 (REALVIEW_TIMCLK << REALVIEW_TIMER2_EnSel) |
369 (REALVIEW_TIMCLK << REALVIEW_TIMER3_EnSel) |
370 (REALVIEW_TIMCLK << REALVIEW_TIMER4_EnSel) | val,
371 __io_address(REALVIEW_SCTL_BASE));
372
373 /*
374 * Initialise to a known state (all timers off)
375 */
Catalin Marinas80192732008-04-18 22:43:11 +0100376 writel(0, timer0_va_base + TIMER_CTRL);
377 writel(0, timer1_va_base + TIMER_CTRL);
378 writel(0, timer2_va_base + TIMER_CTRL);
379 writel(0, timer3_va_base + TIMER_CTRL);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000380
Russell Kingfb593cf2011-05-12 12:08:23 +0100381 sp804_clocksource_init(timer3_va_base, "timer3");
Russell King57cc4f72011-05-12 15:31:13 +0100382 sp804_clockevents_init(timer0_va_base, timer_irq, "timer0");
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000383}
Catalin Marinas5b39d152009-11-04 12:19:04 +0000384
385/*
386 * Setup the memory banks.
387 */
Russell King0744a3e2010-12-20 10:37:50 +0000388void realview_fixup(struct tag *tags, char **from, struct meminfo *meminfo)
Catalin Marinas5b39d152009-11-04 12:19:04 +0000389{
390 /*
391 * Most RealView platforms have 512MB contiguous RAM at 0x70000000.
392 * Half of this is mirrored at 0.
393 */
394#ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET
395 meminfo->bank[0].start = 0x70000000;
396 meminfo->bank[0].size = SZ_512M;
397 meminfo->nr_banks = 1;
398#else
399 meminfo->bank[0].start = 0;
400 meminfo->bank[0].size = SZ_256M;
401 meminfo->nr_banks = 1;
402#endif
403}