blob: de64ba0ddb956822a27e0b4b7c77f2d04e45e699 [file] [log] [blame]
Colin Tuckley1b504bb2009-05-30 13:56:12 +01001/*
2 * arch/arm/mach-realview/realview_pbx.c
3 *
4 * Copyright (C) 2009 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 version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/init.h>
22#include <linux/platform_device.h>
Kay Sieversedbaa602011-12-21 16:26:03 -080023#include <linux/device.h>
Colin Tuckley1b504bb2009-05-30 13:56:12 +010024#include <linux/amba/bus.h>
Russell Kingeb7fffa2009-07-05 22:41:31 +010025#include <linux/amba/pl061.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010026#include <linux/amba/mmci.h>
Linus Walleijd6ada862010-07-14 23:58:38 +010027#include <linux/amba/pl022.h>
Colin Tuckley1b504bb2009-05-30 13:56:12 +010028#include <linux/io.h>
Linus Walleijf9a6aa42012-08-06 18:32:08 +020029#include <linux/platform_data/clk-realview.h>
Colin Tuckley1b504bb2009-05-30 13:56:12 +010030
31#include <asm/irq.h>
32#include <asm/leds.h>
33#include <asm/mach-types.h>
Will Deaconf417cba2010-04-15 10:16:26 +010034#include <asm/pmu.h>
Catalin Marinasc3c21742009-06-19 11:28:48 +010035#include <asm/smp_twd.h>
Catalin Marinascc9897d2010-06-21 15:12:40 +010036#include <asm/pgtable.h>
Colin Tuckley1b504bb2009-05-30 13:56:12 +010037#include <asm/hardware/gic.h>
38#include <asm/hardware/cache-l2x0.h>
39
40#include <asm/mach/arch.h>
41#include <asm/mach/map.h>
Colin Tuckley1b504bb2009-05-30 13:56:12 +010042#include <asm/mach/time.h>
43
44#include <mach/hardware.h>
45#include <mach/board-pbx.h>
46#include <mach/irqs.h>
47
48#include "core.h"
49
50static struct map_desc realview_pbx_io_desc[] __initdata = {
51 {
52 .virtual = IO_ADDRESS(REALVIEW_SYS_BASE),
53 .pfn = __phys_to_pfn(REALVIEW_SYS_BASE),
54 .length = SZ_4K,
55 .type = MT_DEVICE,
56 }, {
57 .virtual = IO_ADDRESS(REALVIEW_PBX_GIC_CPU_BASE),
58 .pfn = __phys_to_pfn(REALVIEW_PBX_GIC_CPU_BASE),
59 .length = SZ_4K,
60 .type = MT_DEVICE,
61 }, {
62 .virtual = IO_ADDRESS(REALVIEW_PBX_GIC_DIST_BASE),
63 .pfn = __phys_to_pfn(REALVIEW_PBX_GIC_DIST_BASE),
64 .length = SZ_4K,
65 .type = MT_DEVICE,
66 }, {
67 .virtual = IO_ADDRESS(REALVIEW_SCTL_BASE),
68 .pfn = __phys_to_pfn(REALVIEW_SCTL_BASE),
69 .length = SZ_4K,
70 .type = MT_DEVICE,
71 }, {
72 .virtual = IO_ADDRESS(REALVIEW_PBX_TIMER0_1_BASE),
73 .pfn = __phys_to_pfn(REALVIEW_PBX_TIMER0_1_BASE),
74 .length = SZ_4K,
75 .type = MT_DEVICE,
76 }, {
77 .virtual = IO_ADDRESS(REALVIEW_PBX_TIMER2_3_BASE),
78 .pfn = __phys_to_pfn(REALVIEW_PBX_TIMER2_3_BASE),
79 .length = SZ_4K,
80 .type = MT_DEVICE,
81 },
82#ifdef CONFIG_PCI
83 {
84 .virtual = PCIX_UNIT_BASE,
85 .pfn = __phys_to_pfn(REALVIEW_PBX_PCI_BASE),
86 .length = REALVIEW_PBX_PCI_BASE_SIZE,
87 .type = MT_DEVICE,
88 },
89#endif
90#ifdef CONFIG_DEBUG_LL
91 {
92 .virtual = IO_ADDRESS(REALVIEW_PBX_UART0_BASE),
93 .pfn = __phys_to_pfn(REALVIEW_PBX_UART0_BASE),
94 .length = SZ_4K,
95 .type = MT_DEVICE,
96 },
97#endif
98};
99
100static struct map_desc realview_local_io_desc[] __initdata = {
101 {
Rob Herring9ceceb62011-09-29 16:22:02 -0500102 .virtual = IO_ADDRESS(REALVIEW_PBX_TILE_SCU_BASE),
103 .pfn = __phys_to_pfn(REALVIEW_PBX_TILE_SCU_BASE),
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100104 .length = SZ_4K,
105 .type = MT_DEVICE,
106 }, {
107 .virtual = IO_ADDRESS(REALVIEW_PBX_TILE_GIC_DIST_BASE),
108 .pfn = __phys_to_pfn(REALVIEW_PBX_TILE_GIC_DIST_BASE),
109 .length = SZ_4K,
110 .type = MT_DEVICE,
111 }, {
112 .virtual = IO_ADDRESS(REALVIEW_PBX_TILE_L220_BASE),
113 .pfn = __phys_to_pfn(REALVIEW_PBX_TILE_L220_BASE),
114 .length = SZ_8K,
115 .type = MT_DEVICE,
116 }
117};
118
119static void __init realview_pbx_map_io(void)
120{
121 iotable_init(realview_pbx_io_desc, ARRAY_SIZE(realview_pbx_io_desc));
122 if (core_tile_pbx11mp() || core_tile_pbxa9mp())
123 iotable_init(realview_local_io_desc, ARRAY_SIZE(realview_local_io_desc));
124}
125
Russell Kingeb7fffa2009-07-05 22:41:31 +0100126static struct pl061_platform_data gpio0_plat_data = {
127 .gpio_base = 0,
Russell Kingeb7fffa2009-07-05 22:41:31 +0100128};
129
130static struct pl061_platform_data gpio1_plat_data = {
131 .gpio_base = 8,
Russell Kingeb7fffa2009-07-05 22:41:31 +0100132};
133
134static struct pl061_platform_data gpio2_plat_data = {
135 .gpio_base = 16,
Russell Kingeb7fffa2009-07-05 22:41:31 +0100136};
137
Linus Walleijd6ada862010-07-14 23:58:38 +0100138static struct pl022_ssp_controller ssp0_plat_data = {
139 .bus_id = 0,
140 .enable_dma = 0,
141 .num_chipselect = 1,
142};
143
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100144/*
145 * RealView PBXCore AMBA devices
146 */
147
Russell King0dada612011-12-18 11:40:46 +0000148#define GPIO2_IRQ { IRQ_PBX_GPIO2 }
149#define GPIO3_IRQ { IRQ_PBX_GPIO3 }
150#define AACI_IRQ { IRQ_PBX_AACI }
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100151#define MMCI0_IRQ { IRQ_PBX_MMCI0A, IRQ_PBX_MMCI0B }
Russell King0dada612011-12-18 11:40:46 +0000152#define KMI0_IRQ { IRQ_PBX_KMI0 }
153#define KMI1_IRQ { IRQ_PBX_KMI1 }
154#define PBX_SMC_IRQ { }
155#define MPMC_IRQ { }
156#define PBX_CLCD_IRQ { IRQ_PBX_CLCD }
157#define DMAC_IRQ { IRQ_PBX_DMAC }
158#define SCTL_IRQ { }
159#define PBX_WATCHDOG_IRQ { IRQ_PBX_WATCHDOG }
160#define PBX_GPIO0_IRQ { IRQ_PBX_GPIO0 }
161#define GPIO1_IRQ { IRQ_PBX_GPIO1 }
162#define PBX_RTC_IRQ { IRQ_PBX_RTC }
163#define SCI_IRQ { IRQ_PBX_SCI }
164#define PBX_UART0_IRQ { IRQ_PBX_UART0 }
165#define PBX_UART1_IRQ { IRQ_PBX_UART1 }
166#define PBX_UART2_IRQ { IRQ_PBX_UART2 }
167#define PBX_UART3_IRQ { IRQ_PBX_UART3 }
168#define PBX_SSP_IRQ { IRQ_PBX_SSP }
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100169
170/* FPGA Primecells */
Russell King91993402011-12-18 13:38:49 +0000171APB_DEVICE(aaci, "fpga:aaci", AACI, NULL);
172APB_DEVICE(mmc0, "fpga:mmc0", MMCI0, &realview_mmc0_plat_data);
173APB_DEVICE(kmi0, "fpga:kmi0", KMI0, NULL);
174APB_DEVICE(kmi1, "fpga:kmi1", KMI1, NULL);
175APB_DEVICE(uart3, "fpga:uart3", PBX_UART3, NULL);
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100176
177/* DevChip Primecells */
Russell King91993402011-12-18 13:38:49 +0000178AHB_DEVICE(smc, "dev:smc", PBX_SMC, NULL);
179AHB_DEVICE(sctl, "dev:sctl", SCTL, NULL);
180APB_DEVICE(wdog, "dev:wdog", PBX_WATCHDOG, NULL);
181APB_DEVICE(gpio0, "dev:gpio0", PBX_GPIO0, &gpio0_plat_data);
182APB_DEVICE(gpio1, "dev:gpio1", GPIO1, &gpio1_plat_data);
183APB_DEVICE(gpio2, "dev:gpio2", GPIO2, &gpio2_plat_data);
184APB_DEVICE(rtc, "dev:rtc", PBX_RTC, NULL);
185APB_DEVICE(sci0, "dev:sci0", SCI, NULL);
186APB_DEVICE(uart0, "dev:uart0", PBX_UART0, NULL);
187APB_DEVICE(uart1, "dev:uart1", PBX_UART1, NULL);
188APB_DEVICE(uart2, "dev:uart2", PBX_UART2, NULL);
189APB_DEVICE(ssp0, "dev:ssp0", PBX_SSP, &ssp0_plat_data);
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100190
191/* Primecells on the NEC ISSP chip */
Russell King91993402011-12-18 13:38:49 +0000192AHB_DEVICE(clcd, "issp:clcd", PBX_CLCD, &clcd_plat_data);
193AHB_DEVICE(dmac, "issp:dmac", DMAC, NULL);
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100194
195static struct amba_device *amba_devs[] __initdata = {
196 &dmac_device,
197 &uart0_device,
198 &uart1_device,
199 &uart2_device,
200 &uart3_device,
201 &smc_device,
202 &clcd_device,
203 &sctl_device,
204 &wdog_device,
205 &gpio0_device,
206 &gpio1_device,
207 &gpio2_device,
208 &rtc_device,
209 &sci0_device,
210 &ssp0_device,
211 &aaci_device,
212 &mmc0_device,
213 &kmi0_device,
214 &kmi1_device,
215};
216
217/*
218 * RealView PB-X platform devices
219 */
220static struct resource realview_pbx_flash_resources[] = {
221 [0] = {
222 .start = REALVIEW_PBX_FLASH0_BASE,
223 .end = REALVIEW_PBX_FLASH0_BASE + REALVIEW_PBX_FLASH0_SIZE - 1,
224 .flags = IORESOURCE_MEM,
225 },
226 [1] = {
227 .start = REALVIEW_PBX_FLASH1_BASE,
228 .end = REALVIEW_PBX_FLASH1_BASE + REALVIEW_PBX_FLASH1_SIZE - 1,
229 .flags = IORESOURCE_MEM,
230 },
231};
232
233static struct resource realview_pbx_smsc911x_resources[] = {
234 [0] = {
235 .start = REALVIEW_PBX_ETH_BASE,
236 .end = REALVIEW_PBX_ETH_BASE + SZ_64K - 1,
237 .flags = IORESOURCE_MEM,
238 },
239 [1] = {
240 .start = IRQ_PBX_ETH,
241 .end = IRQ_PBX_ETH,
242 .flags = IORESOURCE_IRQ,
243 },
244};
245
246static struct resource realview_pbx_isp1761_resources[] = {
247 [0] = {
248 .start = REALVIEW_PBX_USB_BASE,
249 .end = REALVIEW_PBX_USB_BASE + SZ_128K - 1,
250 .flags = IORESOURCE_MEM,
251 },
252 [1] = {
253 .start = IRQ_PBX_USB,
254 .end = IRQ_PBX_USB,
255 .flags = IORESOURCE_IRQ,
256 },
257};
258
Will Deaconf417cba2010-04-15 10:16:26 +0100259static struct resource pmu_resources[] = {
260 [0] = {
261 .start = IRQ_PBX_PMU_CPU0,
262 .end = IRQ_PBX_PMU_CPU0,
263 .flags = IORESOURCE_IRQ,
264 },
265 [1] = {
266 .start = IRQ_PBX_PMU_CPU1,
267 .end = IRQ_PBX_PMU_CPU1,
268 .flags = IORESOURCE_IRQ,
269 },
270 [2] = {
271 .start = IRQ_PBX_PMU_CPU2,
272 .end = IRQ_PBX_PMU_CPU2,
273 .flags = IORESOURCE_IRQ,
274 },
275 [3] = {
276 .start = IRQ_PBX_PMU_CPU3,
277 .end = IRQ_PBX_PMU_CPU3,
278 .flags = IORESOURCE_IRQ,
279 },
280};
281
282static struct platform_device pmu_device = {
283 .name = "arm-pmu",
284 .id = ARM_PMU_DEVICE_CPU,
285 .num_resources = ARRAY_SIZE(pmu_resources),
286 .resource = pmu_resources,
287};
288
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100289static void __init gic_init_irq(void)
290{
291 /* ARM PBX on-board GIC */
292 if (core_tile_pbx11mp() || core_tile_pbxa9mp()) {
Russell Kingb580b892010-12-04 15:55:14 +0000293 gic_init(0, 29, __io_address(REALVIEW_PBX_TILE_GIC_DIST_BASE),
294 __io_address(REALVIEW_PBX_TILE_GIC_CPU_BASE));
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100295 } else {
Russell Kingb580b892010-12-04 15:55:14 +0000296 gic_init(0, IRQ_PBX_GIC_START,
297 __io_address(REALVIEW_PBX_GIC_DIST_BASE),
298 __io_address(REALVIEW_PBX_GIC_CPU_BASE));
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100299 }
300}
301
Marc Zyngier7c380f22011-08-04 11:57:04 +0100302#ifdef CONFIG_HAVE_ARM_TWD
303static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
304 REALVIEW_PBX_TILE_TWD_BASE,
305 IRQ_LOCALTIMER);
306
307static void __init realview_pbx_twd_init(void)
308{
309 int err = twd_local_timer_register(&twd_local_timer);
310 if (err)
311 pr_err("twd_local_timer_register failed %d\n", err);
312}
313#else
314#define realview_pbx_twd_init() do { } while(0)
315#endif
316
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100317static void __init realview_pbx_timer_init(void)
318{
319 timer0_va_base = __io_address(REALVIEW_PBX_TIMER0_1_BASE);
320 timer1_va_base = __io_address(REALVIEW_PBX_TIMER0_1_BASE) + 0x20;
321 timer2_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE);
322 timer3_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE) + 0x20;
323
Linus Walleijf9a6aa42012-08-06 18:32:08 +0200324 realview_clk_init(__io_address(REALVIEW_SYS_BASE), false);
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100325 realview_timer_init(IRQ_PBX_TIMER0_1);
Marc Zyngier7c380f22011-08-04 11:57:04 +0100326 realview_pbx_twd_init();
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100327}
328
329static struct sys_timer realview_pbx_timer = {
330 .init = realview_pbx_timer_init,
331};
332
Russell King0744a3e2010-12-20 10:37:50 +0000333static void realview_pbx_fixup(struct tag *tags, char **from,
334 struct meminfo *meminfo)
Catalin Marinasc97c5aa2009-11-04 12:19:05 +0000335{
336#ifdef CONFIG_SPARSEMEM
337 /*
338 * Memory configuration with SPARSEMEM enabled on RealView PBX (see
339 * asm/mach/memory.h for more information).
340 */
341 meminfo->bank[0].start = 0;
342 meminfo->bank[0].size = SZ_256M;
343 meminfo->bank[1].start = 0x20000000;
344 meminfo->bank[1].size = SZ_512M;
345 meminfo->bank[2].start = 0x80000000;
346 meminfo->bank[2].size = SZ_256M;
347 meminfo->nr_banks = 3;
348#else
Russell King0744a3e2010-12-20 10:37:50 +0000349 realview_fixup(tags, from, meminfo);
Catalin Marinasc97c5aa2009-11-04 12:19:05 +0000350#endif
351}
352
Russell King47cacdd42011-11-03 14:00:13 +0000353static void realview_pbx_restart(char mode, const char *cmd)
Colin Tuckley4c9f8be2010-01-11 11:09:15 +0100354{
355 void __iomem *reset_ctrl = __io_address(REALVIEW_SYS_RESETCTL);
356 void __iomem *lock_ctrl = __io_address(REALVIEW_SYS_LOCK);
357
358 /*
359 * To reset, we hit the on-board reset register
360 * in the system FPGA
361 */
362 __raw_writel(REALVIEW_SYS_LOCK_VAL, lock_ctrl);
Colin Tuckleydf2e6152010-01-29 12:52:55 +0100363 __raw_writel(0x00F0, reset_ctrl);
364 __raw_writel(0x00F4, reset_ctrl);
Russell King47cacdd42011-11-03 14:00:13 +0000365 dsb();
Colin Tuckley4c9f8be2010-01-11 11:09:15 +0100366}
367
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100368static void __init realview_pbx_init(void)
369{
370 int i;
371
372#ifdef CONFIG_CACHE_L2X0
373 if (core_tile_pbxa9mp()) {
374 void __iomem *l2x0_base =
375 __io_address(REALVIEW_PBX_TILE_L220_BASE);
376
377 /* set RAM latencies to 1 cycle for eASIC */
378 writel(0, l2x0_base + L2X0_TAG_LATENCY_CTRL);
379 writel(0, l2x0_base + L2X0_DATA_LATENCY_CTRL);
380
381 /* 16KB way size, 8-way associativity, parity disabled
382 * Bits: .. 0 0 0 0 1 00 1 0 1 001 0 000 0 .... .... .... */
383 l2x0_init(l2x0_base, 0x02520000, 0xc0000fff);
Will Deaconf417cba2010-04-15 10:16:26 +0100384 platform_device_register(&pmu_device);
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100385 }
386#endif
387
388 realview_flash_register(realview_pbx_flash_resources,
389 ARRAY_SIZE(realview_pbx_flash_resources));
390 realview_eth_register(NULL, realview_pbx_smsc911x_resources);
391 platform_device_register(&realview_i2c_device);
392 platform_device_register(&realview_cf_device);
393 realview_usb_register(realview_pbx_isp1761_resources);
394
395 for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
396 struct amba_device *d = amba_devs[i];
397 amba_device_register(d, &iomem_resource);
398 }
399
400#ifdef CONFIG_LEDS
401 leds_event = realview_leds_event;
402#endif
403}
404
405MACHINE_START(REALVIEW_PBX, "ARM-RealView PBX")
406 /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
Nicolas Pitre9ddea572011-07-05 22:38:16 -0400407 .atag_offset = 0x100,
Catalin Marinasc97c5aa2009-11-04 12:19:05 +0000408 .fixup = realview_pbx_fixup,
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100409 .map_io = realview_pbx_map_io,
Russell King631e55f2011-01-11 13:05:01 +0000410 .init_early = realview_init_early,
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100411 .init_irq = gic_init_irq,
412 .timer = &realview_pbx_timer,
Marc Zyngier1b99d9c2011-09-06 10:23:45 +0100413 .handle_irq = gic_handle_irq,
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100414 .init_machine = realview_pbx_init,
Nicolas Pitre00e91252011-07-05 22:28:09 -0400415#ifdef CONFIG_ZONE_DMA
416 .dma_zone_size = SZ_256M,
417#endif
Russell King47cacdd42011-11-03 14:00:13 +0000418 .restart = realview_pbx_restart,
Colin Tuckley1b504bb2009-05-30 13:56:12 +0100419MACHINE_END