mmc: sdhci-acpi: Set MMC_CAP_CMD_DURING_TFR for Intel eMMC controllers
[deliverable/linux.git] / arch / arm / mach-realview / realview_eb.c
CommitLineData
8ad68bbf
CM
1/*
2 * linux/arch/arm/mach-realview/realview_eb.c
3 *
4 * Copyright (C) 2004 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 */
21
8ad68bbf 22#include <linux/init.h>
1be7228d 23#include <linux/platform_device.h>
edbaa603 24#include <linux/device.h>
a62c80e5 25#include <linux/amba/bus.h>
eb7fffa3 26#include <linux/amba/pl061.h>
6ef297f8 27#include <linux/amba/mmci.h>
d6ada860 28#include <linux/amba/pl022.h>
fced80c7 29#include <linux/io.h>
520f7bd7 30#include <linux/irqchip/arm-gic.h>
f9a6aa43 31#include <linux/platform_data/clk-realview.h>
7b6d864b 32#include <linux/reboot.h>
8ad68bbf 33
6d407a6e 34#include "hardware.h"
8ad68bbf 35#include <asm/irq.h>
8ad68bbf 36#include <asm/mach-types.h>
cc9897df 37#include <asm/pgtable.h>
7770bddb 38#include <asm/hardware/cache-l2x0.h>
7c380f27 39#include <asm/smp_twd.h>
cbed8388 40#include <asm/system_info.h>
2b749cb3 41#include <asm/outercache.h>
8ad68bbf
CM
42
43#include <asm/mach/arch.h>
44#include <asm/mach/map.h>
8cc4c548 45#include <asm/mach/time.h>
8ad68bbf 46
6d407a6e 47#include "board-eb.h"
38d2cfcc 48#include "irqs-eb.h"
8ad68bbf
CM
49
50#include "core.h"
8ad68bbf
CM
51
52static struct map_desc realview_eb_io_desc[] __initdata = {
1ffedce7
RK
53 {
54 .virtual = IO_ADDRESS(REALVIEW_SYS_BASE),
55 .pfn = __phys_to_pfn(REALVIEW_SYS_BASE),
56 .length = SZ_4K,
57 .type = MT_DEVICE,
58 }, {
073b6ff3
CM
59 .virtual = IO_ADDRESS(REALVIEW_EB_GIC_CPU_BASE),
60 .pfn = __phys_to_pfn(REALVIEW_EB_GIC_CPU_BASE),
1ffedce7
RK
61 .length = SZ_4K,
62 .type = MT_DEVICE,
63 }, {
073b6ff3
CM
64 .virtual = IO_ADDRESS(REALVIEW_EB_GIC_DIST_BASE),
65 .pfn = __phys_to_pfn(REALVIEW_EB_GIC_DIST_BASE),
1ffedce7
RK
66 .length = SZ_4K,
67 .type = MT_DEVICE,
68 }, {
69 .virtual = IO_ADDRESS(REALVIEW_SCTL_BASE),
70 .pfn = __phys_to_pfn(REALVIEW_SCTL_BASE),
71 .length = SZ_4K,
72 .type = MT_DEVICE,
73 }, {
80192735
CM
74 .virtual = IO_ADDRESS(REALVIEW_EB_TIMER0_1_BASE),
75 .pfn = __phys_to_pfn(REALVIEW_EB_TIMER0_1_BASE),
1ffedce7
RK
76 .length = SZ_4K,
77 .type = MT_DEVICE,
78 }, {
80192735
CM
79 .virtual = IO_ADDRESS(REALVIEW_EB_TIMER2_3_BASE),
80 .pfn = __phys_to_pfn(REALVIEW_EB_TIMER2_3_BASE),
1ffedce7
RK
81 .length = SZ_4K,
82 .type = MT_DEVICE,
83 },
8ad68bbf 84#ifdef CONFIG_DEBUG_LL
1ffedce7 85 {
9a386f06
CM
86 .virtual = IO_ADDRESS(REALVIEW_EB_UART0_BASE),
87 .pfn = __phys_to_pfn(REALVIEW_EB_UART0_BASE),
1ffedce7
RK
88 .length = SZ_4K,
89 .type = MT_DEVICE,
90 }
8ad68bbf
CM
91#endif
92};
93
7dd19e75
CM
94static struct map_desc realview_eb11mp_io_desc[] __initdata = {
95 {
34ae6c96
MZ
96 .virtual = IO_ADDRESS(REALVIEW_EB11MP_PRIV_MEM_BASE),
97 .pfn = __phys_to_pfn(REALVIEW_EB11MP_PRIV_MEM_BASE),
98 .length = REALVIEW_EB11MP_PRIV_MEM_SIZE,
7dd19e75
CM
99 .type = MT_DEVICE,
100 }, {
101 .virtual = IO_ADDRESS(REALVIEW_EB11MP_L220_BASE),
102 .pfn = __phys_to_pfn(REALVIEW_EB11MP_L220_BASE),
103 .length = SZ_8K,
104 .type = MT_DEVICE,
105 }
106};
107
8ad68bbf
CM
108static void __init realview_eb_map_io(void)
109{
110 iotable_init(realview_eb_io_desc, ARRAY_SIZE(realview_eb_io_desc));
4c3ea371 111 if (core_tile_eb11mp() || core_tile_a9mp())
7dd19e75 112 iotable_init(realview_eb11mp_io_desc, ARRAY_SIZE(realview_eb11mp_io_desc));
8ad68bbf
CM
113}
114
eb7fffa3
RK
115static struct pl061_platform_data gpio0_plat_data = {
116 .gpio_base = 0,
eb7fffa3
RK
117};
118
119static struct pl061_platform_data gpio1_plat_data = {
120 .gpio_base = 8,
eb7fffa3
RK
121};
122
123static struct pl061_platform_data gpio2_plat_data = {
124 .gpio_base = 16,
eb7fffa3
RK
125};
126
d6ada860
LW
127static struct pl022_ssp_controller ssp0_plat_data = {
128 .bus_id = 0,
129 .enable_dma = 0,
130 .num_chipselect = 1,
131};
132
0fc2a161
CM
133/*
134 * RealView EB AMBA devices
135 */
136
137/*
138 * These devices are connected via the core APB bridge
139 */
0dada61a
RK
140#define GPIO2_IRQ { IRQ_EB_GPIO2 }
141#define GPIO3_IRQ { IRQ_EB_GPIO3 }
0fc2a161 142
0dada61a 143#define AACI_IRQ { IRQ_EB_AACI }
0fc2a161 144#define MMCI0_IRQ { IRQ_EB_MMCI0A, IRQ_EB_MMCI0B }
0dada61a
RK
145#define KMI0_IRQ { IRQ_EB_KMI0 }
146#define KMI1_IRQ { IRQ_EB_KMI1 }
0fc2a161
CM
147
148/*
149 * These devices are connected directly to the multi-layer AHB switch
150 */
0dada61a
RK
151#define EB_SMC_IRQ { }
152#define MPMC_IRQ { }
153#define EB_CLCD_IRQ { IRQ_EB_CLCD }
154#define DMAC_IRQ { IRQ_EB_DMA }
0fc2a161
CM
155
156/*
157 * These devices are connected via the core APB bridge
158 */
0dada61a
RK
159#define SCTL_IRQ { }
160#define EB_WATCHDOG_IRQ { IRQ_EB_WDOG }
161#define EB_GPIO0_IRQ { IRQ_EB_GPIO0 }
162#define GPIO1_IRQ { IRQ_EB_GPIO1 }
163#define EB_RTC_IRQ { IRQ_EB_RTC }
0fc2a161
CM
164
165/*
166 * These devices are connected via the DMA APB bridge
167 */
0dada61a
RK
168#define SCI_IRQ { IRQ_EB_SCI }
169#define EB_UART0_IRQ { IRQ_EB_UART0 }
170#define EB_UART1_IRQ { IRQ_EB_UART1 }
171#define EB_UART2_IRQ { IRQ_EB_UART2 }
172#define EB_UART3_IRQ { IRQ_EB_UART3 }
173#define EB_SSP_IRQ { IRQ_EB_SSP }
0fc2a161 174
8ad68bbf 175/* FPGA Primecells */
9199340b
RK
176APB_DEVICE(aaci, "fpga:aaci", AACI, NULL);
177APB_DEVICE(mmc0, "fpga:mmc0", MMCI0, &realview_mmc0_plat_data);
178APB_DEVICE(kmi0, "fpga:kmi0", KMI0, NULL);
179APB_DEVICE(kmi1, "fpga:kmi1", KMI1, NULL);
180APB_DEVICE(uart3, "fpga:uart3", EB_UART3, NULL);
8ad68bbf
CM
181
182/* DevChip Primecells */
9199340b
RK
183AHB_DEVICE(smc, "dev:smc", EB_SMC, NULL);
184AHB_DEVICE(clcd, "dev:clcd", EB_CLCD, &clcd_plat_data);
185AHB_DEVICE(dmac, "dev:dmac", DMAC, NULL);
186AHB_DEVICE(sctl, "dev:sctl", SCTL, NULL);
187APB_DEVICE(wdog, "dev:wdog", EB_WATCHDOG, NULL);
188APB_DEVICE(gpio0, "dev:gpio0", EB_GPIO0, &gpio0_plat_data);
189APB_DEVICE(gpio1, "dev:gpio1", GPIO1, &gpio1_plat_data);
190APB_DEVICE(gpio2, "dev:gpio2", GPIO2, &gpio2_plat_data);
191APB_DEVICE(rtc, "dev:rtc", EB_RTC, NULL);
192APB_DEVICE(sci0, "dev:sci0", SCI, NULL);
193APB_DEVICE(uart0, "dev:uart0", EB_UART0, NULL);
194APB_DEVICE(uart1, "dev:uart1", EB_UART1, NULL);
195APB_DEVICE(uart2, "dev:uart2", EB_UART2, NULL);
196APB_DEVICE(ssp0, "dev:ssp0", EB_SSP, &ssp0_plat_data);
8ad68bbf
CM
197
198static struct amba_device *amba_devs[] __initdata = {
199 &dmac_device,
200 &uart0_device,
201 &uart1_device,
202 &uart2_device,
203 &uart3_device,
204 &smc_device,
205 &clcd_device,
206 &sctl_device,
207 &wdog_device,
208 &gpio0_device,
209 &gpio1_device,
210 &gpio2_device,
211 &rtc_device,
212 &sci0_device,
213 &ssp0_device,
214 &aaci_device,
215 &mmc0_device,
216 &kmi0_device,
217 &kmi1_device,
218};
219
0fc2a161
CM
220/*
221 * RealView EB platform devices
222 */
a44ddfd5
CM
223static struct resource realview_eb_flash_resource = {
224 .start = REALVIEW_EB_FLASH_BASE,
225 .end = REALVIEW_EB_FLASH_BASE + REALVIEW_EB_FLASH_SIZE - 1,
226 .flags = IORESOURCE_MEM,
227};
0fc2a161 228
be4f3c86 229static struct resource realview_eb_eth_resources[] = {
0fc2a161 230 [0] = {
393538e6
CM
231 .start = REALVIEW_EB_ETH_BASE,
232 .end = REALVIEW_EB_ETH_BASE + SZ_64K - 1,
0fc2a161
CM
233 .flags = IORESOURCE_MEM,
234 },
235 [1] = {
236 .start = IRQ_EB_ETH,
237 .end = IRQ_EB_ETH,
b70661c7 238 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
0fc2a161
CM
239 },
240};
241
be4f3c86
CM
242/*
243 * Detect and register the correct Ethernet device. RealView/EB rev D
244 * platforms use the newer SMSC LAN9118 Ethernet chip
245 */
246static int eth_device_register(void)
247{
393538e6 248 void __iomem *eth_addr = ioremap(REALVIEW_EB_ETH_BASE, SZ_4K);
0a381330 249 const char *name = NULL;
be4f3c86
CM
250 u32 idrev;
251
252 if (!eth_addr)
253 return -ENOMEM;
254
255 idrev = readl(eth_addr + 0x50);
0a381330
CM
256 if ((idrev & 0xFFFF0000) != 0x01180000)
257 /* SMSC LAN9118 not present, use LAN91C111 instead */
258 name = "smc91x";
be4f3c86
CM
259
260 iounmap(eth_addr);
0a381330 261 return realview_eth_register(name, realview_eb_eth_resources);
be4f3c86
CM
262}
263
7db21712
CM
264static struct resource realview_eb_isp1761_resources[] = {
265 [0] = {
266 .start = REALVIEW_EB_USB_BASE,
267 .end = REALVIEW_EB_USB_BASE + SZ_128K - 1,
268 .flags = IORESOURCE_MEM,
269 },
270 [1] = {
271 .start = IRQ_EB_USB,
272 .end = IRQ_EB_USB,
273 .flags = IORESOURCE_IRQ,
274 },
275};
276
f417cbad
WD
277static struct resource pmu_resources[] = {
278 [0] = {
279 .start = IRQ_EB11MP_PMU_CPU0,
280 .end = IRQ_EB11MP_PMU_CPU0,
281 .flags = IORESOURCE_IRQ,
282 },
283 [1] = {
284 .start = IRQ_EB11MP_PMU_CPU1,
285 .end = IRQ_EB11MP_PMU_CPU1,
286 .flags = IORESOURCE_IRQ,
287 },
288 [2] = {
289 .start = IRQ_EB11MP_PMU_CPU2,
290 .end = IRQ_EB11MP_PMU_CPU2,
291 .flags = IORESOURCE_IRQ,
292 },
293 [3] = {
294 .start = IRQ_EB11MP_PMU_CPU3,
295 .end = IRQ_EB11MP_PMU_CPU3,
296 .flags = IORESOURCE_IRQ,
297 },
298};
299
300static struct platform_device pmu_device = {
df3d17e0 301 .id = -1,
f417cbad
WD
302 .num_resources = ARRAY_SIZE(pmu_resources),
303 .resource = pmu_resources,
304};
305
d161edfb
LW
306static struct resource char_lcd_resources[] = {
307 {
308 .start = REALVIEW_CHAR_LCD_BASE,
309 .end = (REALVIEW_CHAR_LCD_BASE + SZ_4K - 1),
310 .flags = IORESOURCE_MEM,
311 },
312 {
313 .start = IRQ_EB_CHARLCD,
314 .end = IRQ_EB_CHARLCD,
315 .flags = IORESOURCE_IRQ,
316 },
317};
318
319static struct platform_device char_lcd_device = {
320 .name = "arm-charlcd",
321 .id = -1,
322 .num_resources = ARRAY_SIZE(char_lcd_resources),
323 .resource = char_lcd_resources,
324};
325
8ad68bbf
CM
326static void __init gic_init_irq(void)
327{
4c3ea371 328 if (core_tile_eb11mp() || core_tile_a9mp()) {
7dd19e75
CM
329 unsigned int pldctrl;
330
331 /* new irq mode */
332 writel(0x0000a05f, __io_address(REALVIEW_SYS_LOCK));
333 pldctrl = readl(__io_address(REALVIEW_SYS_BASE) + REALVIEW_EB11MP_SYS_PLD_CTRL1);
334 pldctrl |= 0x00800000;
335 writel(pldctrl, __io_address(REALVIEW_SYS_BASE) + REALVIEW_EB11MP_SYS_PLD_CTRL1);
336 writel(0x00000000, __io_address(REALVIEW_SYS_LOCK));
337
338 /* core tile GIC, primary */
b580b899 339 gic_init(0, 29, __io_address(REALVIEW_EB11MP_GIC_DIST_BASE),
ff2e27ae 340 __io_address(REALVIEW_EB11MP_GIC_CPU_BASE));
7dd19e75 341
41579f49 342#ifndef CONFIG_REALVIEW_EB_ARM11MP_REVB
7dd19e75 343 /* board GIC, secondary */
0efc48ec 344 gic_init(1, 96, __io_address(REALVIEW_EB_GIC_DIST_BASE),
b580b899 345 __io_address(REALVIEW_EB_GIC_CPU_BASE));
7dd19e75 346 gic_cascade_irq(1, IRQ_EB11MP_EB_IRQ1);
3edf22ab 347#endif
7dd19e75
CM
348 } else {
349 /* board GIC, primary */
b580b899 350 gic_init(0, 29, __io_address(REALVIEW_EB_GIC_DIST_BASE),
ff2e27ae 351 __io_address(REALVIEW_EB_GIC_CPU_BASE));
7dd19e75 352 }
8ad68bbf
CM
353}
354
0fc2a161
CM
355/*
356 * Fix up the IRQ numbers for the RealView EB/ARM11MPCore tile
357 */
358static void realview_eb11mp_fixup(void)
359{
360 /* AMBA devices */
361 dmac_device.irq[0] = IRQ_EB11MP_DMA;
362 uart0_device.irq[0] = IRQ_EB11MP_UART0;
363 uart1_device.irq[0] = IRQ_EB11MP_UART1;
364 uart2_device.irq[0] = IRQ_EB11MP_UART2;
365 uart3_device.irq[0] = IRQ_EB11MP_UART3;
366 clcd_device.irq[0] = IRQ_EB11MP_CLCD;
367 wdog_device.irq[0] = IRQ_EB11MP_WDOG;
368 gpio0_device.irq[0] = IRQ_EB11MP_GPIO0;
369 gpio1_device.irq[0] = IRQ_EB11MP_GPIO1;
370 gpio2_device.irq[0] = IRQ_EB11MP_GPIO2;
371 rtc_device.irq[0] = IRQ_EB11MP_RTC;
372 sci0_device.irq[0] = IRQ_EB11MP_SCI;
373 ssp0_device.irq[0] = IRQ_EB11MP_SSP;
374 aaci_device.irq[0] = IRQ_EB11MP_AACI;
375 mmc0_device.irq[0] = IRQ_EB11MP_MMCI0A;
376 mmc0_device.irq[1] = IRQ_EB11MP_MMCI0B;
377 kmi0_device.irq[0] = IRQ_EB11MP_KMI0;
378 kmi1_device.irq[0] = IRQ_EB11MP_KMI1;
379
380 /* platform devices */
be4f3c86
CM
381 realview_eb_eth_resources[1].start = IRQ_EB11MP_ETH;
382 realview_eb_eth_resources[1].end = IRQ_EB11MP_ETH;
7db21712
CM
383 realview_eb_isp1761_resources[1].start = IRQ_EB11MP_USB;
384 realview_eb_isp1761_resources[1].end = IRQ_EB11MP_USB;
0fc2a161 385}
0fc2a161 386
7c380f27
MZ
387#ifdef CONFIG_HAVE_ARM_TWD
388static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
389 REALVIEW_EB11MP_TWD_BASE,
390 IRQ_LOCALTIMER);
391
392static void __init realview_eb_twd_init(void)
393{
394 if (core_tile_eb11mp() || core_tile_a9mp()) {
395 int err = twd_local_timer_register(&twd_local_timer);
396 if (err)
397 pr_err("twd_local_timer_register failed %d\n", err);
398 }
399}
400#else
401#define realview_eb_twd_init() do { } while(0)
402#endif
403
8cc4c548
CM
404static void __init realview_eb_timer_init(void)
405{
406 unsigned int timer_irq;
407
80192735
CM
408 timer0_va_base = __io_address(REALVIEW_EB_TIMER0_1_BASE);
409 timer1_va_base = __io_address(REALVIEW_EB_TIMER0_1_BASE) + 0x20;
410 timer2_va_base = __io_address(REALVIEW_EB_TIMER2_3_BASE);
411 timer3_va_base = __io_address(REALVIEW_EB_TIMER2_3_BASE) + 0x20;
412
7c380f27 413 if (core_tile_eb11mp() || core_tile_a9mp())
8cc4c548 414 timer_irq = IRQ_EB11MP_TIMER0_1;
7c380f27 415 else
8cc4c548
CM
416 timer_irq = IRQ_EB_TIMER0_1;
417
f9a6aa43 418 realview_clk_init(__io_address(REALVIEW_SYS_BASE), false);
8cc4c548 419 realview_timer_init(timer_irq);
7c380f27 420 realview_eb_twd_init();
8cc4c548
CM
421}
422
7b6d864b 423static void realview_eb_restart(enum reboot_mode mode, const char *cmd)
4c9f8be7
CT
424{
425 void __iomem *reset_ctrl = __io_address(REALVIEW_SYS_RESETCTL);
426 void __iomem *lock_ctrl = __io_address(REALVIEW_SYS_LOCK);
427
428 /*
429 * To reset, we hit the on-board reset register
430 * in the system FPGA
431 */
432 __raw_writel(REALVIEW_SYS_LOCK_VAL, lock_ctrl);
433 if (core_tile_eb11mp())
434 __raw_writel(0x0008, reset_ctrl);
47cacdd4 435 dsb();
4c9f8be7
CT
436}
437
8ad68bbf
CM
438static void __init realview_eb_init(void)
439{
440 int i;
441
4c3ea371 442 if (core_tile_eb11mp() || core_tile_a9mp()) {
7dd19e75
CM
443 realview_eb11mp_fixup();
444
ba927951 445#ifdef CONFIG_CACHE_L2X0
39b53458
RK
446 /*
447 * The PL220 needs to be manually configured as the hardware
448 * doesn't report the correct sizes.
449 * 1MB (128KB/way), 8-way associativity, event monitor and
450 * parity enabled, ignore share bit, no force write allocate
451 * Bits: .... ...0 0111 1001 0000 .... .... ....
452 */
7dd19e75 453 l2x0_init(__io_address(REALVIEW_EB11MP_L220_BASE), 0x00790000, 0xfe000fff);
2b749cb3
AB
454
455 /*
456 * due to a bug in the l220 cache controller, we must not call
457 * the sync function. stub it out here instead!
458 */
459 outer_cache.sync = NULL;
ba927951 460#endif
cbed8388 461 pmu_device.name = core_tile_a9mp() ? "armv7-pmu" : "armv6-pmu";
f417cbad 462 platform_device_register(&pmu_device);
7dd19e75 463 }
0fc2a161 464
a44ddfd5 465 realview_flash_register(&realview_eb_flash_resource, 1);
6b65cd74 466 platform_device_register(&realview_i2c_device);
d161edfb 467 platform_device_register(&char_lcd_device);
e4ecf2bd 468 platform_device_register(&realview_leds_device);
be4f3c86 469 eth_device_register();
7db21712 470 realview_usb_register(realview_eb_isp1761_resources);
8ad68bbf
CM
471
472 for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
473 struct amba_device *d = amba_devs[i];
474 amba_device_register(d, &iomem_resource);
475 }
8ad68bbf
CM
476}
477
478MACHINE_START(REALVIEW_EB, "ARM-RealView EB")
479 /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
9ddea57e 480 .atag_offset = 0x100,
810883f0 481 .smp = smp_ops(realview_smp_ops),
5b39d154 482 .fixup = realview_fixup,
8ad68bbf 483 .map_io = realview_eb_map_io,
631e55f9 484 .init_early = realview_init_early,
8ad68bbf 485 .init_irq = gic_init_irq,
6bb27d73 486 .init_time = realview_eb_timer_init,
8ad68bbf 487 .init_machine = realview_eb_init,
00e9125e
NP
488#ifdef CONFIG_ZONE_DMA
489 .dma_zone_size = SZ_256M,
490#endif
47cacdd4 491 .restart = realview_eb_restart,
8ad68bbf 492MACHINE_END
This page took 0.913016 seconds and 5 git commands to generate.