blob: a0ead0ae23d64387e0dee144f81537be00475ac9 [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
Sudeep Holla0b7402d2015-05-18 16:29:40 +010038#include <clocksource/timer-sp804.h>
Arnd Bergmann6d407a62015-11-25 17:32:22 +010039#include "hardware.h"
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000040#include <asm/irq.h>
Colin Tuckley68c3d932008-11-10 14:10:11 +000041#include <asm/mach-types.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
Arnd Bergmann6d407a62015-11-25 17:32:22 +010048#include "platform.h"
Catalin Marinasee8c9572009-05-30 14:00:17 +010049
Russell King1da0c892010-12-15 21:56:47 +000050#include <plat/sched_clock.h>
51
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000052#include "core.h"
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000053
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000054#define REALVIEW_FLASHCTRL (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_FLASH_OFFSET)
55
Marc Zyngier667f3902011-05-18 10:51:55 +010056static void realview_flash_set_vpp(struct platform_device *pdev, int on)
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000057{
58 u32 val;
59
60 val = __raw_readl(REALVIEW_FLASHCTRL);
61 if (on)
62 val |= REALVIEW_FLASHPROG_FLVPPEN;
63 else
64 val &= ~REALVIEW_FLASHPROG_FLVPPEN;
65 __raw_writel(val, REALVIEW_FLASHCTRL);
66}
67
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010068static struct physmap_flash_data realview_flash_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000069 .width = 4,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000070 .set_vpp = realview_flash_set_vpp,
71};
72
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000073struct platform_device realview_flash_device = {
Marc Zyngierb8b87ae2011-05-18 10:51:49 +010074 .name = "physmap-flash",
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000075 .id = 0,
76 .dev = {
77 .platform_data = &realview_flash_data,
78 },
Catalin Marinas8ad68bb2005-10-31 14:25:02 +000079};
80
Catalin Marinasa44ddfd2008-04-18 22:43:10 +010081int realview_flash_register(struct resource *res, u32 num)
82{
83 realview_flash_device.resource = res;
84 realview_flash_device.num_resources = num;
85 return platform_device_register(&realview_flash_device);
86}
87
Steve Glendinningc5142e82009-01-20 13:23:30 +000088static struct smsc911x_platform_config smsc911x_config = {
89 .flags = SMSC911X_USE_32BIT,
90 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH,
91 .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
92 .phy_interface = PHY_INTERFACE_MODE_MII,
Catalin Marinas0a5b2f62008-12-01 14:54:59 +000093};
94
Arnd Bergmannb70661c2015-02-25 16:31:57 +010095static struct smc91x_platdata smc91x_platdata = {
Russell King2fb04fd2016-08-27 17:33:03 +010096 .flags = SMC91X_USE_8BIT | SMC91X_USE_16BIT | SMC91X_USE_32BIT |
97 SMC91X_NOWAIT,
Arnd Bergmannb70661c2015-02-25 16:31:57 +010098};
99
Catalin Marinas0a381332008-12-01 14:54:58 +0000100static struct platform_device realview_eth_device = {
Steve Glendinningc5142e82009-01-20 13:23:30 +0000101 .name = "smsc911x",
Catalin Marinas0a381332008-12-01 14:54:58 +0000102 .id = 0,
103 .num_resources = 2,
104};
105
106int realview_eth_register(const char *name, struct resource *res)
107{
108 if (name)
109 realview_eth_device.name = name;
110 realview_eth_device.resource = res;
Steve Glendinningc5142e82009-01-20 13:23:30 +0000111 if (strcmp(realview_eth_device.name, "smsc911x") == 0)
112 realview_eth_device.dev.platform_data = &smsc911x_config;
Arnd Bergmannb70661c2015-02-25 16:31:57 +0100113 else
114 realview_eth_device.dev.platform_data = &smc91x_platdata;
Catalin Marinas0a381332008-12-01 14:54:58 +0000115
116 return platform_device_register(&realview_eth_device);
117}
118
Catalin Marinas7db21712009-02-12 16:00:21 +0100119struct platform_device realview_usb_device = {
120 .name = "isp1760",
121 .num_resources = 2,
122};
123
124int realview_usb_register(struct resource *res)
125{
126 realview_usb_device.resource = res;
127 return platform_device_register(&realview_usb_device);
128}
129
Catalin Marinas6be62ba2009-02-12 15:59:21 +0100130static struct pata_platform_info pata_platform_data = {
131 .ioport_shift = 1,
132};
133
134static struct resource pata_resources[] = {
135 [0] = {
136 .start = REALVIEW_CF_BASE,
137 .end = REALVIEW_CF_BASE + 0xff,
138 .flags = IORESOURCE_MEM,
139 },
140 [1] = {
141 .start = REALVIEW_CF_BASE + 0x100,
142 .end = REALVIEW_CF_BASE + SZ_4K - 1,
143 .flags = IORESOURCE_MEM,
144 },
145};
146
147struct platform_device realview_cf_device = {
148 .name = "pata_platform",
149 .id = -1,
150 .num_resources = ARRAY_SIZE(pata_resources),
151 .resource = pata_resources,
152 .dev = {
153 .platform_data = &pata_platform_data,
154 },
155};
156
Linus Walleije4ecf2b2014-02-27 14:29:22 +0100157static struct resource realview_leds_resources[] = {
158 {
159 .start = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET,
160 .end = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET + 4,
161 .flags = IORESOURCE_MEM,
162 },
163};
164
165struct platform_device realview_leds_device = {
166 .name = "versatile-leds",
167 .id = -1,
168 .num_resources = ARRAY_SIZE(realview_leds_resources),
169 .resource = realview_leds_resources,
170};
171
Russell King6b65cd72006-12-10 21:21:32 +0100172static struct resource realview_i2c_resource = {
173 .start = REALVIEW_I2C_BASE,
174 .end = REALVIEW_I2C_BASE + SZ_4K - 1,
175 .flags = IORESOURCE_MEM,
176};
177
178struct platform_device realview_i2c_device = {
179 .name = "versatile-i2c",
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100180 .id = 0,
Russell King6b65cd72006-12-10 21:21:32 +0100181 .num_resources = 1,
182 .resource = &realview_i2c_resource,
183};
184
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100185static struct i2c_board_info realview_i2c_board_info[] = {
186 {
Russell King64e8be62009-07-18 15:51:55 +0100187 I2C_BOARD_INFO("ds1338", 0xd0 >> 1),
Catalin Marinas533ad5e2009-02-12 15:58:20 +0100188 },
189};
190
191static int __init realview_i2c_init(void)
192{
193 return i2c_register_board_info(0, realview_i2c_board_info,
194 ARRAY_SIZE(realview_i2c_board_info));
195}
196arch_initcall(realview_i2c_init);
197
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000198#define REALVIEW_SYSMCI (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_MCI_OFFSET)
199
Russell King98b09792009-07-09 15:17:41 +0100200/*
201 * This is only used if GPIOLIB support is disabled
202 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000203static unsigned int realview_mmc_status(struct device *dev)
204{
205 struct amba_device *adev = container_of(dev, struct amba_device, dev);
206 u32 mask;
207
Linus Walleij48f1d5a2010-07-02 10:24:03 +0100208 if (machine_is_realview_pb1176()) {
209 static bool inserted = false;
210
211 /*
212 * The PB1176 does not have the status register,
213 * assume it is inserted at startup, then invert
214 * for each call so card insertion/removal will
215 * be detected anyway. This will not be called if
216 * GPIO on PL061 is active, which is the proper
217 * way to do this on the PB1176.
218 */
219 inserted = !inserted;
220 return inserted ? 0 : 1;
221 }
222
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000223 if (adev->res.start == REALVIEW_MMCI0_BASE)
224 mask = 1;
225 else
226 mask = 2;
227
Russell King74bc8092010-07-29 15:58:59 +0100228 return readl(REALVIEW_SYSMCI) & mask;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000229}
230
Linus Walleij6ef297f2009-09-22 14:29:36 +0100231struct mmci_platform_data realview_mmc0_plat_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000232 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
233 .status = realview_mmc_status,
Russell King98b09792009-07-09 15:17:41 +0100234 .gpio_wp = 17,
235 .gpio_cd = 16,
Rabin Vincent29719442010-08-09 12:54:43 +0100236 .cd_invert = true,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000237};
238
Linus Walleij6ef297f2009-09-22 14:29:36 +0100239struct mmci_platform_data realview_mmc1_plat_data = {
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000240 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
241 .status = realview_mmc_status,
Russell King98b09792009-07-09 15:17:41 +0100242 .gpio_wp = 19,
243 .gpio_cd = 18,
Rabin Vincent29719442010-08-09 12:54:43 +0100244 .cd_invert = true,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000245};
246
Russell King631e55f2011-01-11 13:05:01 +0000247void __init realview_init_early(void)
Russell Kingcf30fb42008-11-08 20:05:55 +0000248{
Russell King631e55f2011-01-11 13:05:01 +0000249 void __iomem *sys = __io_address(REALVIEW_SYS_BASE);
250
Russell King631e55f2011-01-11 13:05:01 +0000251 versatile_sched_clock_init(sys + REALVIEW_SYS_24MHz_OFFSET, 24000000);
Russell Kingcf30fb42008-11-08 20:05:55 +0000252}
Russell Kingcf30fb42008-11-08 20:05:55 +0000253
254/*
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000255 * CLCD support.
256 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000257#define SYS_CLCD_NLCDIOON (1 << 2)
258#define SYS_CLCD_VDDPOSSWITCH (1 << 3)
259#define SYS_CLCD_PWR3V5SWITCH (1 << 4)
260#define SYS_CLCD_ID_MASK (0x1f << 8)
261#define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8)
262#define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8)
263#define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8)
264#define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8)
265#define SYS_CLCD_ID_VGA (0x1f << 8)
266
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000267/*
268 * Disable all display connectors on the interface module.
269 */
270static void realview_clcd_disable(struct clcd_fb *fb)
271{
272 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
273 u32 val;
274
275 val = readl(sys_clcd);
276 val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
277 writel(val, sys_clcd);
278}
279
280/*
281 * Enable the relevant connector on the interface module.
282 */
283static void realview_clcd_enable(struct clcd_fb *fb)
284{
285 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
286 u32 val;
287
Catalin Marinas9e7714d2006-03-16 14:10:20 +0000288 /*
289 * Enable the PSUs
290 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000291 val = readl(sys_clcd);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000292 val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH;
293 writel(val, sys_clcd);
294}
295
Russell King3cb5ee42011-01-18 20:13:20 +0000296/*
297 * Detect which LCD panel is connected, and return the appropriate
298 * clcd_panel structure. Note: we do not have any information on
299 * the required timings for the 8.4in panel, so we presently assume
300 * VGA timings.
301 */
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000302static int realview_clcd_setup(struct clcd_fb *fb)
303{
Russell King3cb5ee42011-01-18 20:13:20 +0000304 void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET;
305 const char *panel_name, *vga_panel_name;
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000306 unsigned long framesize;
Russell King3cb5ee42011-01-18 20:13:20 +0000307 u32 val;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000308
Russell King3cb5ee42011-01-18 20:13:20 +0000309 if (machine_is_realview_eb()) {
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000310 /* VGA, 16bpp */
311 framesize = 640 * 480 * 2;
Russell King3cb5ee42011-01-18 20:13:20 +0000312 vga_panel_name = "VGA";
313 } else {
Colin Tuckleyc34a1022008-11-10 14:10:12 +0000314 /* XVGA, 16bpp */
315 framesize = 1024 * 768 * 2;
Russell King3cb5ee42011-01-18 20:13:20 +0000316 vga_panel_name = "XVGA";
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000317 }
318
Russell King3cb5ee42011-01-18 20:13:20 +0000319 val = readl(sys_clcd) & SYS_CLCD_ID_MASK;
320 if (val == SYS_CLCD_ID_SANYO_3_8)
321 panel_name = "Sanyo TM38QV67A02A";
322 else if (val == SYS_CLCD_ID_SANYO_2_5)
323 panel_name = "Sanyo QVGA Portrait";
324 else if (val == SYS_CLCD_ID_EPSON_2_2)
325 panel_name = "Epson L2F50113T00";
326 else if (val == SYS_CLCD_ID_VGA)
327 panel_name = vga_panel_name;
328 else {
329 pr_err("CLCD: unknown LCD panel ID 0x%08x, using VGA\n", val);
330 panel_name = vga_panel_name;
331 }
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000332
Russell King3cb5ee42011-01-18 20:13:20 +0000333 fb->panel = versatile_clcd_get_panel(panel_name);
334 if (!fb->panel)
335 return -EINVAL;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000336
Russell King3cb5ee42011-01-18 20:13:20 +0000337 return versatile_clcd_setup_dma(fb, framesize);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000338}
339
340struct clcd_board clcd_plat_data = {
341 .name = "RealView",
Russell King3cb5ee42011-01-18 20:13:20 +0000342 .caps = CLCD_CAP_ALL,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000343 .check = clcdfb_check,
344 .decode = clcdfb_decode,
345 .disable = realview_clcd_disable,
346 .enable = realview_clcd_enable,
347 .setup = realview_clcd_setup,
Russell King3cb5ee42011-01-18 20:13:20 +0000348 .mmap = versatile_clcd_mmap_dma,
349 .remove = versatile_clcd_remove_dma,
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000350};
351
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000352/*
353 * Where is the timer (VA)?
354 */
Catalin Marinas80192732008-04-18 22:43:11 +0100355void __iomem *timer0_va_base;
356void __iomem *timer1_va_base;
357void __iomem *timer2_va_base;
358void __iomem *timer3_va_base;
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000359
360/*
Catalin Marinasa8655e82008-02-04 17:30:57 +0100361 * Set up the clock source and clock events devices
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000362 */
Catalin Marinas8cc4c542008-02-04 17:43:02 +0100363void __init realview_timer_init(unsigned int timer_irq)
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000364{
365 u32 val;
366
367 /*
368 * set clock frequency:
369 * REALVIEW_REFCLK is 32KHz
370 * REALVIEW_TIMCLK is 1MHz
371 */
372 val = readl(__io_address(REALVIEW_SCTL_BASE));
373 writel((REALVIEW_TIMCLK << REALVIEW_TIMER1_EnSel) |
374 (REALVIEW_TIMCLK << REALVIEW_TIMER2_EnSel) |
375 (REALVIEW_TIMCLK << REALVIEW_TIMER3_EnSel) |
376 (REALVIEW_TIMCLK << REALVIEW_TIMER4_EnSel) | val,
377 __io_address(REALVIEW_SCTL_BASE));
378
379 /*
380 * Initialise to a known state (all timers off)
381 */
Sudeep Holla1e5f0512015-05-18 16:29:04 +0100382 sp804_timer_disable(timer0_va_base);
383 sp804_timer_disable(timer1_va_base);
384 sp804_timer_disable(timer2_va_base);
385 sp804_timer_disable(timer3_va_base);
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000386
Russell Kingfb593cf2011-05-12 12:08:23 +0100387 sp804_clocksource_init(timer3_va_base, "timer3");
Russell King57cc4f72011-05-12 15:31:13 +0100388 sp804_clockevents_init(timer0_va_base, timer_irq, "timer0");
Catalin Marinas8ad68bb2005-10-31 14:25:02 +0000389}
Catalin Marinas5b39d152009-11-04 12:19:04 +0000390
391/*
392 * Setup the memory banks.
393 */
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100394void realview_fixup(struct tag *tags, char **from)
Catalin Marinas5b39d152009-11-04 12:19:04 +0000395{
396 /*
397 * Most RealView platforms have 512MB contiguous RAM at 0x70000000.
398 * Half of this is mirrored at 0.
399 */
400#ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100401 memblock_add(0x70000000, SZ_512M);
Catalin Marinas5b39d152009-11-04 12:19:04 +0000402#else
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100403 memblock_add(0, SZ_256M);
Catalin Marinas5b39d152009-11-04 12:19:04 +0000404#endif
405}