blob: 6072eaa5e66acf81f080d72374fbfd1dfbe7382c [file] [log] [blame]
Saeed Bishara651c74c2008-06-22 22:45:06 +02001/*
2 * arch/arm/mach-kirkwood/common.c
3 *
4 * Core functions for Marvell Kirkwood SoCs
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/platform_device.h>
14#include <linux/serial_8250.h>
15#include <linux/mbus.h>
16#include <linux/mv643xx_eth.h>
Martin Michlmayr6574e002009-03-23 19:13:21 +010017#include <linux/mv643xx_i2c.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020018#include <linux/ata_platform.h>
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -040019#include <linux/mtd/nand.h>
Lennert Buytenhek18365d12008-08-09 15:38:18 +020020#include <linux/spi/orion_spi.h>
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +020021#include <net/dsa.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020022#include <asm/page.h>
23#include <asm/timex.h>
24#include <asm/mach/map.h>
25#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/kirkwood.h>
Nicolas Pitrefdd8b072009-04-22 20:08:17 +010027#include <mach/bridge-regs.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020028#include <plat/cache-feroceon-l2.h>
29#include <plat/ehci-orion.h>
Nicolas Pitre8235ee02009-02-14 03:15:55 -050030#include <plat/mvsdio.h>
Saeed Bishara09c0ed22008-06-23 04:26:07 -110031#include <plat/mv_xor.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020032#include <plat/orion_nand.h>
Nicolas Pitre3b937a72009-06-01 13:56:02 -040033#include <plat/orion_wdt.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020034#include <plat/time.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020035#include "common.h"
36
37/*****************************************************************************
38 * I/O Address Mapping
39 ****************************************************************************/
40static struct map_desc kirkwood_io_desc[] __initdata = {
41 {
42 .virtual = KIRKWOOD_PCIE_IO_VIRT_BASE,
43 .pfn = __phys_to_pfn(KIRKWOOD_PCIE_IO_PHYS_BASE),
44 .length = KIRKWOOD_PCIE_IO_SIZE,
45 .type = MT_DEVICE,
46 }, {
47 .virtual = KIRKWOOD_REGS_VIRT_BASE,
48 .pfn = __phys_to_pfn(KIRKWOOD_REGS_PHYS_BASE),
49 .length = KIRKWOOD_REGS_SIZE,
50 .type = MT_DEVICE,
51 },
52};
53
54void __init kirkwood_map_io(void)
55{
56 iotable_init(kirkwood_io_desc, ARRAY_SIZE(kirkwood_io_desc));
57}
58
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +020059/*
60 * Default clock control bits. Any bit _not_ set in this variable
61 * will be cleared from the hardware after platform devices have been
62 * registered. Some reserved bits must be set to 1.
63 */
64unsigned int kirkwood_clk_ctrl = CGC_DUNIT | CGC_RESERVED;
65
Saeed Bishara651c74c2008-06-22 22:45:06 +020066
67/*****************************************************************************
68 * EHCI
69 ****************************************************************************/
70static struct orion_ehci_data kirkwood_ehci_data = {
71 .dram = &kirkwood_mbus_dram_info,
Ronen Shitritfb6f5522008-09-17 10:08:05 +030072 .phy_version = EHCI_PHY_NA,
Saeed Bishara651c74c2008-06-22 22:45:06 +020073};
74
75static u64 ehci_dmamask = 0xffffffffUL;
76
77
78/*****************************************************************************
79 * EHCI0
80 ****************************************************************************/
81static struct resource kirkwood_ehci_resources[] = {
82 {
83 .start = USB_PHYS_BASE,
84 .end = USB_PHYS_BASE + 0x0fff,
85 .flags = IORESOURCE_MEM,
86 }, {
87 .start = IRQ_KIRKWOOD_USB,
88 .end = IRQ_KIRKWOOD_USB,
89 .flags = IORESOURCE_IRQ,
90 },
91};
92
93static struct platform_device kirkwood_ehci = {
94 .name = "orion-ehci",
95 .id = 0,
96 .dev = {
97 .dma_mask = &ehci_dmamask,
98 .coherent_dma_mask = 0xffffffff,
99 .platform_data = &kirkwood_ehci_data,
100 },
101 .resource = kirkwood_ehci_resources,
102 .num_resources = ARRAY_SIZE(kirkwood_ehci_resources),
103};
104
105void __init kirkwood_ehci_init(void)
106{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200107 kirkwood_clk_ctrl |= CGC_USB0;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200108 platform_device_register(&kirkwood_ehci);
109}
110
111
112/*****************************************************************************
113 * GE00
114 ****************************************************************************/
115struct mv643xx_eth_shared_platform_data kirkwood_ge00_shared_data = {
Saeed Bishara651c74c2008-06-22 22:45:06 +0200116 .dram = &kirkwood_mbus_dram_info,
117};
118
119static struct resource kirkwood_ge00_shared_resources[] = {
120 {
121 .name = "ge00 base",
122 .start = GE00_PHYS_BASE + 0x2000,
123 .end = GE00_PHYS_BASE + 0x3fff,
124 .flags = IORESOURCE_MEM,
Lennert Buytenhek144f8142008-08-26 16:04:05 +0200125 }, {
126 .name = "ge00 err irq",
127 .start = IRQ_KIRKWOOD_GE00_ERR,
128 .end = IRQ_KIRKWOOD_GE00_ERR,
129 .flags = IORESOURCE_IRQ,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200130 },
131};
132
133static struct platform_device kirkwood_ge00_shared = {
134 .name = MV643XX_ETH_SHARED_NAME,
135 .id = 0,
136 .dev = {
137 .platform_data = &kirkwood_ge00_shared_data,
138 },
Lennert Buytenhek144f8142008-08-26 16:04:05 +0200139 .num_resources = ARRAY_SIZE(kirkwood_ge00_shared_resources),
Saeed Bishara651c74c2008-06-22 22:45:06 +0200140 .resource = kirkwood_ge00_shared_resources,
141};
142
143static struct resource kirkwood_ge00_resources[] = {
144 {
145 .name = "ge00 irq",
146 .start = IRQ_KIRKWOOD_GE00_SUM,
147 .end = IRQ_KIRKWOOD_GE00_SUM,
148 .flags = IORESOURCE_IRQ,
149 },
150};
151
152static struct platform_device kirkwood_ge00 = {
153 .name = MV643XX_ETH_NAME,
154 .id = 0,
155 .num_resources = 1,
156 .resource = kirkwood_ge00_resources,
Nicolas Pitrea49a0182009-05-22 16:53:40 -0400157 .dev = {
158 .coherent_dma_mask = 0xffffffff,
159 },
Saeed Bishara651c74c2008-06-22 22:45:06 +0200160};
161
162void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data)
163{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200164 kirkwood_clk_ctrl |= CGC_GE0;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200165 eth_data->shared = &kirkwood_ge00_shared;
166 kirkwood_ge00.dev.platform_data = eth_data;
167
168 platform_device_register(&kirkwood_ge00_shared);
169 platform_device_register(&kirkwood_ge00);
170}
171
172
173/*****************************************************************************
Ronen Shitritd15fb9e2008-10-19 23:10:14 +0200174 * GE01
175 ****************************************************************************/
176struct mv643xx_eth_shared_platform_data kirkwood_ge01_shared_data = {
177 .dram = &kirkwood_mbus_dram_info,
178 .shared_smi = &kirkwood_ge00_shared,
179};
180
181static struct resource kirkwood_ge01_shared_resources[] = {
182 {
183 .name = "ge01 base",
184 .start = GE01_PHYS_BASE + 0x2000,
185 .end = GE01_PHYS_BASE + 0x3fff,
186 .flags = IORESOURCE_MEM,
187 }, {
188 .name = "ge01 err irq",
189 .start = IRQ_KIRKWOOD_GE01_ERR,
190 .end = IRQ_KIRKWOOD_GE01_ERR,
191 .flags = IORESOURCE_IRQ,
192 },
193};
194
195static struct platform_device kirkwood_ge01_shared = {
196 .name = MV643XX_ETH_SHARED_NAME,
197 .id = 1,
198 .dev = {
199 .platform_data = &kirkwood_ge01_shared_data,
200 },
201 .num_resources = ARRAY_SIZE(kirkwood_ge01_shared_resources),
202 .resource = kirkwood_ge01_shared_resources,
203};
204
205static struct resource kirkwood_ge01_resources[] = {
206 {
207 .name = "ge01 irq",
208 .start = IRQ_KIRKWOOD_GE01_SUM,
209 .end = IRQ_KIRKWOOD_GE01_SUM,
210 .flags = IORESOURCE_IRQ,
211 },
212};
213
214static struct platform_device kirkwood_ge01 = {
215 .name = MV643XX_ETH_NAME,
216 .id = 1,
217 .num_resources = 1,
218 .resource = kirkwood_ge01_resources,
Nicolas Pitrea49a0182009-05-22 16:53:40 -0400219 .dev = {
220 .coherent_dma_mask = 0xffffffff,
221 },
Ronen Shitritd15fb9e2008-10-19 23:10:14 +0200222};
223
224void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data)
225{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200226 kirkwood_clk_ctrl |= CGC_GE1;
Ronen Shitritd15fb9e2008-10-19 23:10:14 +0200227 eth_data->shared = &kirkwood_ge01_shared;
228 kirkwood_ge01.dev.platform_data = eth_data;
229
230 platform_device_register(&kirkwood_ge01_shared);
231 platform_device_register(&kirkwood_ge01);
232}
233
234
235/*****************************************************************************
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200236 * Ethernet switch
237 ****************************************************************************/
238static struct resource kirkwood_switch_resources[] = {
239 {
240 .start = 0,
241 .end = 0,
242 .flags = IORESOURCE_IRQ,
243 },
244};
245
246static struct platform_device kirkwood_switch_device = {
247 .name = "dsa",
248 .id = 0,
249 .num_resources = 0,
250 .resource = kirkwood_switch_resources,
251};
252
253void __init kirkwood_ge00_switch_init(struct dsa_platform_data *d, int irq)
254{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000255 int i;
256
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200257 if (irq != NO_IRQ) {
258 kirkwood_switch_resources[0].start = irq;
259 kirkwood_switch_resources[0].end = irq;
260 kirkwood_switch_device.num_resources = 1;
261 }
262
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200263 d->netdev = &kirkwood_ge00.dev;
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000264 for (i = 0; i < d->nr_chips; i++)
265 d->chip[i].mii_bus = &kirkwood_ge00_shared.dev;
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200266 kirkwood_switch_device.dev.platform_data = d;
267
268 platform_device_register(&kirkwood_switch_device);
269}
270
271
272/*****************************************************************************
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400273 * NAND flash
274 ****************************************************************************/
275static struct resource kirkwood_nand_resource = {
276 .flags = IORESOURCE_MEM,
277 .start = KIRKWOOD_NAND_MEM_PHYS_BASE,
278 .end = KIRKWOOD_NAND_MEM_PHYS_BASE +
279 KIRKWOOD_NAND_MEM_SIZE - 1,
280};
281
282static struct orion_nand_data kirkwood_nand_data = {
283 .cle = 0,
284 .ale = 1,
285 .width = 8,
286};
287
288static struct platform_device kirkwood_nand_flash = {
289 .name = "orion_nand",
290 .id = -1,
291 .dev = {
292 .platform_data = &kirkwood_nand_data,
293 },
294 .resource = &kirkwood_nand_resource,
295 .num_resources = 1,
296};
297
298void __init kirkwood_nand_init(struct mtd_partition *parts, int nr_parts,
299 int chip_delay)
300{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200301 kirkwood_clk_ctrl |= CGC_RUNIT;
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400302 kirkwood_nand_data.parts = parts;
303 kirkwood_nand_data.nr_parts = nr_parts;
304 kirkwood_nand_data.chip_delay = chip_delay;
305 platform_device_register(&kirkwood_nand_flash);
306}
307
Ben Dooks010937e2010-04-20 10:26:19 +0100308void __init kirkwood_nand_init_rnb(struct mtd_partition *parts, int nr_parts,
309 int (*dev_ready)(struct mtd_info *))
310{
311 kirkwood_clk_ctrl |= CGC_RUNIT;
312 kirkwood_nand_data.parts = parts;
313 kirkwood_nand_data.nr_parts = nr_parts;
314 kirkwood_nand_data.dev_ready = dev_ready;
315 platform_device_register(&kirkwood_nand_flash);
316}
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400317
318/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200319 * SoC RTC
320 ****************************************************************************/
321static struct resource kirkwood_rtc_resource = {
322 .start = RTC_PHYS_BASE,
323 .end = RTC_PHYS_BASE + SZ_16 - 1,
324 .flags = IORESOURCE_MEM,
325};
326
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500327static void __init kirkwood_rtc_init(void)
Saeed Bishara651c74c2008-06-22 22:45:06 +0200328{
329 platform_device_register_simple("rtc-mv", -1, &kirkwood_rtc_resource, 1);
330}
331
332
333/*****************************************************************************
334 * SATA
335 ****************************************************************************/
336static struct resource kirkwood_sata_resources[] = {
337 {
338 .name = "sata base",
339 .start = SATA_PHYS_BASE,
340 .end = SATA_PHYS_BASE + 0x5000 - 1,
341 .flags = IORESOURCE_MEM,
342 }, {
343 .name = "sata irq",
344 .start = IRQ_KIRKWOOD_SATA,
345 .end = IRQ_KIRKWOOD_SATA,
346 .flags = IORESOURCE_IRQ,
347 },
348};
349
350static struct platform_device kirkwood_sata = {
351 .name = "sata_mv",
352 .id = 0,
353 .dev = {
354 .coherent_dma_mask = 0xffffffff,
355 },
356 .num_resources = ARRAY_SIZE(kirkwood_sata_resources),
357 .resource = kirkwood_sata_resources,
358};
359
360void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data)
361{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200362 kirkwood_clk_ctrl |= CGC_SATA0;
363 if (sata_data->n_ports > 1)
364 kirkwood_clk_ctrl |= CGC_SATA1;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200365 sata_data->dram = &kirkwood_mbus_dram_info;
366 kirkwood_sata.dev.platform_data = sata_data;
367 platform_device_register(&kirkwood_sata);
368}
369
370
371/*****************************************************************************
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500372 * SD/SDIO/MMC
373 ****************************************************************************/
374static struct resource mvsdio_resources[] = {
375 [0] = {
376 .start = SDIO_PHYS_BASE,
377 .end = SDIO_PHYS_BASE + SZ_1K - 1,
378 .flags = IORESOURCE_MEM,
379 },
380 [1] = {
381 .start = IRQ_KIRKWOOD_SDIO,
382 .end = IRQ_KIRKWOOD_SDIO,
383 .flags = IORESOURCE_IRQ,
384 },
385};
386
387static u64 mvsdio_dmamask = 0xffffffffUL;
388
389static struct platform_device kirkwood_sdio = {
390 .name = "mvsdio",
391 .id = -1,
392 .dev = {
393 .dma_mask = &mvsdio_dmamask,
394 .coherent_dma_mask = 0xffffffff,
395 },
396 .num_resources = ARRAY_SIZE(mvsdio_resources),
397 .resource = mvsdio_resources,
398};
399
400void __init kirkwood_sdio_init(struct mvsdio_platform_data *mvsdio_data)
401{
402 u32 dev, rev;
403
404 kirkwood_pcie_id(&dev, &rev);
405 if (rev == 0) /* catch all Kirkwood Z0's */
406 mvsdio_data->clock = 100000000;
407 else
408 mvsdio_data->clock = 200000000;
409 mvsdio_data->dram = &kirkwood_mbus_dram_info;
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200410 kirkwood_clk_ctrl |= CGC_SDIO;
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500411 kirkwood_sdio.dev.platform_data = mvsdio_data;
412 platform_device_register(&kirkwood_sdio);
413}
414
415
416/*****************************************************************************
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200417 * SPI
418 ****************************************************************************/
419static struct orion_spi_info kirkwood_spi_plat_data = {
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200420};
421
422static struct resource kirkwood_spi_resources[] = {
423 {
424 .start = SPI_PHYS_BASE,
425 .end = SPI_PHYS_BASE + SZ_512 - 1,
426 .flags = IORESOURCE_MEM,
427 },
428};
429
430static struct platform_device kirkwood_spi = {
431 .name = "orion_spi",
432 .id = 0,
433 .resource = kirkwood_spi_resources,
434 .dev = {
435 .platform_data = &kirkwood_spi_plat_data,
436 },
437 .num_resources = ARRAY_SIZE(kirkwood_spi_resources),
438};
439
440void __init kirkwood_spi_init()
441{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200442 kirkwood_clk_ctrl |= CGC_RUNIT;
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200443 platform_device_register(&kirkwood_spi);
444}
445
446
447/*****************************************************************************
Martin Michlmayr6574e002009-03-23 19:13:21 +0100448 * I2C
449 ****************************************************************************/
450static struct mv64xxx_i2c_pdata kirkwood_i2c_pdata = {
451 .freq_m = 8, /* assumes 166 MHz TCLK */
452 .freq_n = 3,
453 .timeout = 1000, /* Default timeout of 1 second */
454};
455
456static struct resource kirkwood_i2c_resources[] = {
457 {
Martin Michlmayr6574e002009-03-23 19:13:21 +0100458 .start = I2C_PHYS_BASE,
459 .end = I2C_PHYS_BASE + 0x1f,
460 .flags = IORESOURCE_MEM,
461 }, {
Martin Michlmayr6574e002009-03-23 19:13:21 +0100462 .start = IRQ_KIRKWOOD_TWSI,
463 .end = IRQ_KIRKWOOD_TWSI,
464 .flags = IORESOURCE_IRQ,
465 },
466};
467
468static struct platform_device kirkwood_i2c = {
469 .name = MV64XXX_I2C_CTLR_NAME,
470 .id = 0,
471 .num_resources = ARRAY_SIZE(kirkwood_i2c_resources),
472 .resource = kirkwood_i2c_resources,
473 .dev = {
474 .platform_data = &kirkwood_i2c_pdata,
475 },
476};
477
478void __init kirkwood_i2c_init(void)
479{
480 platform_device_register(&kirkwood_i2c);
481}
482
483
484/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200485 * UART0
486 ****************************************************************************/
487static struct plat_serial8250_port kirkwood_uart0_data[] = {
488 {
489 .mapbase = UART0_PHYS_BASE,
490 .membase = (char *)UART0_VIRT_BASE,
491 .irq = IRQ_KIRKWOOD_UART_0,
492 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
493 .iotype = UPIO_MEM,
494 .regshift = 2,
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200495 .uartclk = 0,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200496 }, {
497 },
498};
499
500static struct resource kirkwood_uart0_resources[] = {
501 {
502 .start = UART0_PHYS_BASE,
503 .end = UART0_PHYS_BASE + 0xff,
504 .flags = IORESOURCE_MEM,
505 }, {
506 .start = IRQ_KIRKWOOD_UART_0,
507 .end = IRQ_KIRKWOOD_UART_0,
508 .flags = IORESOURCE_IRQ,
509 },
510};
511
512static struct platform_device kirkwood_uart0 = {
513 .name = "serial8250",
514 .id = 0,
515 .dev = {
516 .platform_data = kirkwood_uart0_data,
517 },
518 .resource = kirkwood_uart0_resources,
519 .num_resources = ARRAY_SIZE(kirkwood_uart0_resources),
520};
521
522void __init kirkwood_uart0_init(void)
523{
524 platform_device_register(&kirkwood_uart0);
525}
526
527
528/*****************************************************************************
529 * UART1
530 ****************************************************************************/
531static struct plat_serial8250_port kirkwood_uart1_data[] = {
532 {
533 .mapbase = UART1_PHYS_BASE,
534 .membase = (char *)UART1_VIRT_BASE,
535 .irq = IRQ_KIRKWOOD_UART_1,
536 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
537 .iotype = UPIO_MEM,
538 .regshift = 2,
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200539 .uartclk = 0,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200540 }, {
541 },
542};
543
544static struct resource kirkwood_uart1_resources[] = {
545 {
546 .start = UART1_PHYS_BASE,
547 .end = UART1_PHYS_BASE + 0xff,
548 .flags = IORESOURCE_MEM,
549 }, {
550 .start = IRQ_KIRKWOOD_UART_1,
551 .end = IRQ_KIRKWOOD_UART_1,
552 .flags = IORESOURCE_IRQ,
553 },
554};
555
556static struct platform_device kirkwood_uart1 = {
557 .name = "serial8250",
558 .id = 1,
559 .dev = {
560 .platform_data = kirkwood_uart1_data,
561 },
562 .resource = kirkwood_uart1_resources,
563 .num_resources = ARRAY_SIZE(kirkwood_uart1_resources),
564};
565
566void __init kirkwood_uart1_init(void)
567{
568 platform_device_register(&kirkwood_uart1);
569}
570
571
572/*****************************************************************************
Nicolas Pitreae5c8c82009-06-03 15:24:36 -0400573 * Cryptographic Engines and Security Accelerator (CESA)
574 ****************************************************************************/
575
576static struct resource kirkwood_crypto_res[] = {
577 {
578 .name = "regs",
579 .start = CRYPTO_PHYS_BASE,
580 .end = CRYPTO_PHYS_BASE + 0xffff,
581 .flags = IORESOURCE_MEM,
582 }, {
583 .name = "sram",
584 .start = KIRKWOOD_SRAM_PHYS_BASE,
585 .end = KIRKWOOD_SRAM_PHYS_BASE + KIRKWOOD_SRAM_SIZE - 1,
586 .flags = IORESOURCE_MEM,
587 }, {
588 .name = "crypto interrupt",
589 .start = IRQ_KIRKWOOD_CRYPTO,
590 .end = IRQ_KIRKWOOD_CRYPTO,
591 .flags = IORESOURCE_IRQ,
592 },
593};
594
595static struct platform_device kirkwood_crypto_device = {
596 .name = "mv_crypto",
597 .id = -1,
598 .num_resources = ARRAY_SIZE(kirkwood_crypto_res),
599 .resource = kirkwood_crypto_res,
600};
601
602void __init kirkwood_crypto_init(void)
603{
604 kirkwood_clk_ctrl |= CGC_CRYPTO;
605 platform_device_register(&kirkwood_crypto_device);
606}
607
608
609/*****************************************************************************
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100610 * XOR
611 ****************************************************************************/
612static struct mv_xor_platform_shared_data kirkwood_xor_shared_data = {
613 .dram = &kirkwood_mbus_dram_info,
614};
615
Yang Hongyang284901a2009-04-06 19:01:15 -0700616static u64 kirkwood_xor_dmamask = DMA_BIT_MASK(32);
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100617
618
619/*****************************************************************************
620 * XOR0
621 ****************************************************************************/
622static struct resource kirkwood_xor0_shared_resources[] = {
623 {
624 .name = "xor 0 low",
625 .start = XOR0_PHYS_BASE,
626 .end = XOR0_PHYS_BASE + 0xff,
627 .flags = IORESOURCE_MEM,
628 }, {
629 .name = "xor 0 high",
630 .start = XOR0_HIGH_PHYS_BASE,
631 .end = XOR0_HIGH_PHYS_BASE + 0xff,
632 .flags = IORESOURCE_MEM,
633 },
634};
635
636static struct platform_device kirkwood_xor0_shared = {
637 .name = MV_XOR_SHARED_NAME,
638 .id = 0,
639 .dev = {
640 .platform_data = &kirkwood_xor_shared_data,
641 },
642 .num_resources = ARRAY_SIZE(kirkwood_xor0_shared_resources),
643 .resource = kirkwood_xor0_shared_resources,
644};
645
646static struct resource kirkwood_xor00_resources[] = {
647 [0] = {
648 .start = IRQ_KIRKWOOD_XOR_00,
649 .end = IRQ_KIRKWOOD_XOR_00,
650 .flags = IORESOURCE_IRQ,
651 },
652};
653
654static struct mv_xor_platform_data kirkwood_xor00_data = {
655 .shared = &kirkwood_xor0_shared,
656 .hw_id = 0,
657 .pool_size = PAGE_SIZE,
658};
659
660static struct platform_device kirkwood_xor00_channel = {
661 .name = MV_XOR_NAME,
662 .id = 0,
663 .num_resources = ARRAY_SIZE(kirkwood_xor00_resources),
664 .resource = kirkwood_xor00_resources,
665 .dev = {
666 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700667 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800668 .platform_data = &kirkwood_xor00_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100669 },
670};
671
672static struct resource kirkwood_xor01_resources[] = {
673 [0] = {
674 .start = IRQ_KIRKWOOD_XOR_01,
675 .end = IRQ_KIRKWOOD_XOR_01,
676 .flags = IORESOURCE_IRQ,
677 },
678};
679
680static struct mv_xor_platform_data kirkwood_xor01_data = {
681 .shared = &kirkwood_xor0_shared,
682 .hw_id = 1,
683 .pool_size = PAGE_SIZE,
684};
685
686static struct platform_device kirkwood_xor01_channel = {
687 .name = MV_XOR_NAME,
688 .id = 1,
689 .num_resources = ARRAY_SIZE(kirkwood_xor01_resources),
690 .resource = kirkwood_xor01_resources,
691 .dev = {
692 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700693 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800694 .platform_data = &kirkwood_xor01_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100695 },
696};
697
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500698static void __init kirkwood_xor0_init(void)
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100699{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200700 kirkwood_clk_ctrl |= CGC_XOR0;
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100701 platform_device_register(&kirkwood_xor0_shared);
702
703 /*
704 * two engines can't do memset simultaneously, this limitation
705 * satisfied by removing memset support from one of the engines.
706 */
707 dma_cap_set(DMA_MEMCPY, kirkwood_xor00_data.cap_mask);
708 dma_cap_set(DMA_XOR, kirkwood_xor00_data.cap_mask);
709 platform_device_register(&kirkwood_xor00_channel);
710
711 dma_cap_set(DMA_MEMCPY, kirkwood_xor01_data.cap_mask);
712 dma_cap_set(DMA_MEMSET, kirkwood_xor01_data.cap_mask);
713 dma_cap_set(DMA_XOR, kirkwood_xor01_data.cap_mask);
714 platform_device_register(&kirkwood_xor01_channel);
715}
716
717
718/*****************************************************************************
719 * XOR1
720 ****************************************************************************/
721static struct resource kirkwood_xor1_shared_resources[] = {
722 {
723 .name = "xor 1 low",
724 .start = XOR1_PHYS_BASE,
725 .end = XOR1_PHYS_BASE + 0xff,
726 .flags = IORESOURCE_MEM,
727 }, {
728 .name = "xor 1 high",
729 .start = XOR1_HIGH_PHYS_BASE,
730 .end = XOR1_HIGH_PHYS_BASE + 0xff,
731 .flags = IORESOURCE_MEM,
732 },
733};
734
735static struct platform_device kirkwood_xor1_shared = {
736 .name = MV_XOR_SHARED_NAME,
737 .id = 1,
738 .dev = {
739 .platform_data = &kirkwood_xor_shared_data,
740 },
741 .num_resources = ARRAY_SIZE(kirkwood_xor1_shared_resources),
742 .resource = kirkwood_xor1_shared_resources,
743};
744
745static struct resource kirkwood_xor10_resources[] = {
746 [0] = {
747 .start = IRQ_KIRKWOOD_XOR_10,
748 .end = IRQ_KIRKWOOD_XOR_10,
749 .flags = IORESOURCE_IRQ,
750 },
751};
752
753static struct mv_xor_platform_data kirkwood_xor10_data = {
754 .shared = &kirkwood_xor1_shared,
755 .hw_id = 0,
756 .pool_size = PAGE_SIZE,
757};
758
759static struct platform_device kirkwood_xor10_channel = {
760 .name = MV_XOR_NAME,
761 .id = 2,
762 .num_resources = ARRAY_SIZE(kirkwood_xor10_resources),
763 .resource = kirkwood_xor10_resources,
764 .dev = {
765 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700766 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800767 .platform_data = &kirkwood_xor10_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100768 },
769};
770
771static struct resource kirkwood_xor11_resources[] = {
772 [0] = {
773 .start = IRQ_KIRKWOOD_XOR_11,
774 .end = IRQ_KIRKWOOD_XOR_11,
775 .flags = IORESOURCE_IRQ,
776 },
777};
778
779static struct mv_xor_platform_data kirkwood_xor11_data = {
780 .shared = &kirkwood_xor1_shared,
781 .hw_id = 1,
782 .pool_size = PAGE_SIZE,
783};
784
785static struct platform_device kirkwood_xor11_channel = {
786 .name = MV_XOR_NAME,
787 .id = 3,
788 .num_resources = ARRAY_SIZE(kirkwood_xor11_resources),
789 .resource = kirkwood_xor11_resources,
790 .dev = {
791 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700792 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800793 .platform_data = &kirkwood_xor11_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100794 },
795};
796
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500797static void __init kirkwood_xor1_init(void)
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100798{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200799 kirkwood_clk_ctrl |= CGC_XOR1;
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100800 platform_device_register(&kirkwood_xor1_shared);
801
802 /*
803 * two engines can't do memset simultaneously, this limitation
804 * satisfied by removing memset support from one of the engines.
805 */
806 dma_cap_set(DMA_MEMCPY, kirkwood_xor10_data.cap_mask);
807 dma_cap_set(DMA_XOR, kirkwood_xor10_data.cap_mask);
808 platform_device_register(&kirkwood_xor10_channel);
809
810 dma_cap_set(DMA_MEMCPY, kirkwood_xor11_data.cap_mask);
811 dma_cap_set(DMA_MEMSET, kirkwood_xor11_data.cap_mask);
812 dma_cap_set(DMA_XOR, kirkwood_xor11_data.cap_mask);
813 platform_device_register(&kirkwood_xor11_channel);
814}
815
816
817/*****************************************************************************
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200818 * Watchdog
819 ****************************************************************************/
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400820static struct orion_wdt_platform_data kirkwood_wdt_data = {
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200821 .tclk = 0,
822};
823
824static struct platform_device kirkwood_wdt_device = {
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400825 .name = "orion_wdt",
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200826 .id = -1,
827 .dev = {
828 .platform_data = &kirkwood_wdt_data,
829 },
830 .num_resources = 0,
831};
832
833static void __init kirkwood_wdt_init(void)
834{
835 kirkwood_wdt_data.tclk = kirkwood_tclk;
836 platform_device_register(&kirkwood_wdt_device);
837}
838
839
840/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200841 * Time handling
842 ****************************************************************************/
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200843int kirkwood_tclk;
844
845int __init kirkwood_find_tclk(void)
846{
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300847 u32 dev, rev;
848
849 kirkwood_pcie_id(&dev, &rev);
Siddarth Goreaec1bad2009-06-09 14:41:02 +0530850 if (dev == MV88F6281_DEV_ID && (rev == MV88F6281_REV_A0 ||
851 rev == MV88F6281_REV_A1))
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300852 return 200000000;
853
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200854 return 166666667;
855}
856
Li Jie6de95c12009-11-05 07:29:54 -0800857static void __init kirkwood_timer_init(void)
Saeed Bishara651c74c2008-06-22 22:45:06 +0200858{
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200859 kirkwood_tclk = kirkwood_find_tclk();
860 orion_time_init(IRQ_KIRKWOOD_BRIDGE, kirkwood_tclk);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200861}
862
863struct sys_timer kirkwood_timer = {
864 .init = kirkwood_timer_init,
865};
866
867
868/*****************************************************************************
869 * General
870 ****************************************************************************/
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300871/*
872 * Identify device ID and revision.
873 */
Saeed Bishara651c74c2008-06-22 22:45:06 +0200874static char * __init kirkwood_id(void)
875{
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300876 u32 dev, rev;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200877
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300878 kirkwood_pcie_id(&dev, &rev);
879
880 if (dev == MV88F6281_DEV_ID) {
881 if (rev == MV88F6281_REV_Z0)
882 return "MV88F6281-Z0";
883 else if (rev == MV88F6281_REV_A0)
884 return "MV88F6281-A0";
Siddarth Goreaec1bad2009-06-09 14:41:02 +0530885 else if (rev == MV88F6281_REV_A1)
886 return "MV88F6281-A1";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300887 else
888 return "MV88F6281-Rev-Unsupported";
889 } else if (dev == MV88F6192_DEV_ID) {
890 if (rev == MV88F6192_REV_Z0)
891 return "MV88F6192-Z0";
892 else if (rev == MV88F6192_REV_A0)
893 return "MV88F6192-A0";
894 else
895 return "MV88F6192-Rev-Unsupported";
896 } else if (dev == MV88F6180_DEV_ID) {
897 if (rev == MV88F6180_REV_A0)
898 return "MV88F6180-Rev-A0";
899 else
900 return "MV88F6180-Rev-Unsupported";
901 } else {
902 return "Device-Unknown";
903 }
Saeed Bishara651c74c2008-06-22 22:45:06 +0200904}
905
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300906static void __init kirkwood_l2_init(void)
Saeed Bishara13387602008-06-23 01:05:08 -1100907{
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300908#ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
909 writel(readl(L2_CONFIG_REG) | L2_WRITETHROUGH, L2_CONFIG_REG);
910 feroceon_l2_init(1);
911#else
912 writel(readl(L2_CONFIG_REG) & ~L2_WRITETHROUGH, L2_CONFIG_REG);
913 feroceon_l2_init(0);
914#endif
Saeed Bishara13387602008-06-23 01:05:08 -1100915}
916
Saeed Bishara651c74c2008-06-22 22:45:06 +0200917void __init kirkwood_init(void)
918{
919 printk(KERN_INFO "Kirkwood: %s, TCLK=%d.\n",
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200920 kirkwood_id(), kirkwood_tclk);
921 kirkwood_ge00_shared_data.t_clk = kirkwood_tclk;
Nicolas Pitre13731d12009-01-06 23:02:08 +0100922 kirkwood_ge01_shared_data.t_clk = kirkwood_tclk;
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200923 kirkwood_spi_plat_data.tclk = kirkwood_tclk;
924 kirkwood_uart0_data[0].uartclk = kirkwood_tclk;
925 kirkwood_uart1_data[0].uartclk = kirkwood_tclk;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200926
Lennert Buytenhek2bf30102009-11-12 20:31:14 +0100927 /*
928 * Disable propagation of mbus errors to the CPU local bus,
929 * as this causes mbus errors (which can occur for example
930 * for PCI aborts) to throw CPU aborts, which we're not set
931 * up to deal with.
932 */
933 writel(readl(CPU_CONFIG) & ~CPU_CONFIG_ERROR_PROP, CPU_CONFIG);
934
Saeed Bishara651c74c2008-06-22 22:45:06 +0200935 kirkwood_setup_cpu_mbus();
936
937#ifdef CONFIG_CACHE_FEROCEON_L2
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300938 kirkwood_l2_init();
Saeed Bishara651c74c2008-06-22 22:45:06 +0200939#endif
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500940
941 /* internal devices that every board has */
942 kirkwood_rtc_init();
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200943 kirkwood_wdt_init();
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500944 kirkwood_xor0_init();
945 kirkwood_xor1_init();
Nicolas Pitreae5c8c82009-06-03 15:24:36 -0400946 kirkwood_crypto_init();
Saeed Bishara651c74c2008-06-22 22:45:06 +0200947}
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200948
949static int __init kirkwood_clock_gate(void)
950{
951 unsigned int curr = readl(CLOCK_GATING_CTRL);
952
953 printk(KERN_DEBUG "Gating clock of unused units\n");
954 printk(KERN_DEBUG "before: 0x%08x\n", curr);
955
956 /* Make sure those units are accessible */
957 writel(curr | CGC_SATA0 | CGC_SATA1 | CGC_PEX0, CLOCK_GATING_CTRL);
958
959 /* For SATA: first shutdown the phy */
960 if (!(kirkwood_clk_ctrl & CGC_SATA0)) {
961 /* Disable PLL and IVREF */
962 writel(readl(SATA0_PHY_MODE_2) & ~0xf, SATA0_PHY_MODE_2);
963 /* Disable PHY */
964 writel(readl(SATA0_IF_CTRL) | 0x200, SATA0_IF_CTRL);
965 }
966 if (!(kirkwood_clk_ctrl & CGC_SATA1)) {
967 /* Disable PLL and IVREF */
968 writel(readl(SATA1_PHY_MODE_2) & ~0xf, SATA1_PHY_MODE_2);
969 /* Disable PHY */
970 writel(readl(SATA1_IF_CTRL) | 0x200, SATA1_IF_CTRL);
971 }
972
973 /* For PCIe: first shutdown the phy */
974 if (!(kirkwood_clk_ctrl & CGC_PEX0)) {
975 writel(readl(PCIE_LINK_CTRL) | 0x10, PCIE_LINK_CTRL);
976 while (1)
977 if (readl(PCIE_STATUS) & 0x1)
978 break;
979 writel(readl(PCIE_LINK_CTRL) & ~0x10, PCIE_LINK_CTRL);
980 }
981
982 /* Now gate clock the required units */
983 writel(kirkwood_clk_ctrl, CLOCK_GATING_CTRL);
984 printk(KERN_DEBUG " after: 0x%08x\n", readl(CLOCK_GATING_CTRL));
985
986 return 0;
987}
988late_initcall(kirkwood_clock_gate);