]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mach-kirkwood/common.c
Merge commit 'v2.6.34-rc6' into core/locking
[mirror_ubuntu-artful-kernel.git] / arch / arm / mach-kirkwood / common.c
CommitLineData
651c74c7
SB
1/*
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>
6574e001 17#include <linux/mv643xx_i2c.h>
651c74c7 18#include <linux/ata_platform.h>
fb7b2d3f 19#include <linux/mtd/nand.h>
18365d18 20#include <linux/spi/orion_spi.h>
dcf1cece 21#include <net/dsa.h>
651c74c7
SB
22#include <asm/page.h>
23#include <asm/timex.h>
24#include <asm/mach/map.h>
25#include <asm/mach/time.h>
a09e64fb 26#include <mach/kirkwood.h>
fdd8b079 27#include <mach/bridge-regs.h>
6f088f1d
LB
28#include <plat/cache-feroceon-l2.h>
29#include <plat/ehci-orion.h>
8235ee00 30#include <plat/mvsdio.h>
09c0ed2e 31#include <plat/mv_xor.h>
6f088f1d 32#include <plat/orion_nand.h>
3b937a7d 33#include <plat/orion_wdt.h>
6f088f1d 34#include <plat/time.h>
651c74c7
SB
35#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
e8b2b7ba
RK
59/*
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
651c74c7
SB
66
67/*****************************************************************************
68 * EHCI
69 ****************************************************************************/
70static struct orion_ehci_data kirkwood_ehci_data = {
71 .dram = &kirkwood_mbus_dram_info,
fb6f5529 72 .phy_version = EHCI_PHY_NA,
651c74c7
SB
73};
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{
e8b2b7ba 107 kirkwood_clk_ctrl |= CGC_USB0;
651c74c7
SB
108 platform_device_register(&kirkwood_ehci);
109}
110
111
112/*****************************************************************************
113 * GE00
114 ****************************************************************************/
115struct mv643xx_eth_shared_platform_data kirkwood_ge00_shared_data = {
651c74c7
SB
116 .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,
144f814a
LB
125 }, {
126 .name = "ge00 err irq",
127 .start = IRQ_KIRKWOOD_GE00_ERR,
128 .end = IRQ_KIRKWOOD_GE00_ERR,
129 .flags = IORESOURCE_IRQ,
651c74c7
SB
130 },
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 },
144f814a 139 .num_resources = ARRAY_SIZE(kirkwood_ge00_shared_resources),
651c74c7
SB
140 .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,
a49a018a
NP
157 .dev = {
158 .coherent_dma_mask = 0xffffffff,
159 },
651c74c7
SB
160};
161
162void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data)
163{
e8b2b7ba 164 kirkwood_clk_ctrl |= CGC_GE0;
651c74c7
SB
165 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
d15fb9ef
RS
173/*****************************************************************************
174 * 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,
a49a018a
NP
219 .dev = {
220 .coherent_dma_mask = 0xffffffff,
221 },
d15fb9ef
RS
222};
223
224void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data)
225{
e8b2b7ba 226 kirkwood_clk_ctrl |= CGC_GE1;
d15fb9ef
RS
227 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
dcf1cece
LB
235/*****************************************************************************
236 * 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{
e84665c9
LB
255 int i;
256
dcf1cece
LB
257 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
dcf1cece 263 d->netdev = &kirkwood_ge00.dev;
e84665c9
LB
264 for (i = 0; i < d->nr_chips; i++)
265 d->chip[i].mii_bus = &kirkwood_ge00_shared.dev;
dcf1cece
LB
266 kirkwood_switch_device.dev.platform_data = d;
267
268 platform_device_register(&kirkwood_switch_device);
269}
270
271
fb7b2d3f
NP
272/*****************************************************************************
273 * 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{
e8b2b7ba 301 kirkwood_clk_ctrl |= CGC_RUNIT;
fb7b2d3f
NP
302 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
308
651c74c7
SB
309/*****************************************************************************
310 * SoC RTC
311 ****************************************************************************/
312static struct resource kirkwood_rtc_resource = {
313 .start = RTC_PHYS_BASE,
314 .end = RTC_PHYS_BASE + SZ_16 - 1,
315 .flags = IORESOURCE_MEM,
316};
317
5b99d534 318static void __init kirkwood_rtc_init(void)
651c74c7
SB
319{
320 platform_device_register_simple("rtc-mv", -1, &kirkwood_rtc_resource, 1);
321}
322
323
324/*****************************************************************************
325 * SATA
326 ****************************************************************************/
327static struct resource kirkwood_sata_resources[] = {
328 {
329 .name = "sata base",
330 .start = SATA_PHYS_BASE,
331 .end = SATA_PHYS_BASE + 0x5000 - 1,
332 .flags = IORESOURCE_MEM,
333 }, {
334 .name = "sata irq",
335 .start = IRQ_KIRKWOOD_SATA,
336 .end = IRQ_KIRKWOOD_SATA,
337 .flags = IORESOURCE_IRQ,
338 },
339};
340
341static struct platform_device kirkwood_sata = {
342 .name = "sata_mv",
343 .id = 0,
344 .dev = {
345 .coherent_dma_mask = 0xffffffff,
346 },
347 .num_resources = ARRAY_SIZE(kirkwood_sata_resources),
348 .resource = kirkwood_sata_resources,
349};
350
351void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data)
352{
e8b2b7ba
RK
353 kirkwood_clk_ctrl |= CGC_SATA0;
354 if (sata_data->n_ports > 1)
355 kirkwood_clk_ctrl |= CGC_SATA1;
651c74c7
SB
356 sata_data->dram = &kirkwood_mbus_dram_info;
357 kirkwood_sata.dev.platform_data = sata_data;
358 platform_device_register(&kirkwood_sata);
359}
360
361
8235ee00
NP
362/*****************************************************************************
363 * SD/SDIO/MMC
364 ****************************************************************************/
365static struct resource mvsdio_resources[] = {
366 [0] = {
367 .start = SDIO_PHYS_BASE,
368 .end = SDIO_PHYS_BASE + SZ_1K - 1,
369 .flags = IORESOURCE_MEM,
370 },
371 [1] = {
372 .start = IRQ_KIRKWOOD_SDIO,
373 .end = IRQ_KIRKWOOD_SDIO,
374 .flags = IORESOURCE_IRQ,
375 },
376};
377
378static u64 mvsdio_dmamask = 0xffffffffUL;
379
380static struct platform_device kirkwood_sdio = {
381 .name = "mvsdio",
382 .id = -1,
383 .dev = {
384 .dma_mask = &mvsdio_dmamask,
385 .coherent_dma_mask = 0xffffffff,
386 },
387 .num_resources = ARRAY_SIZE(mvsdio_resources),
388 .resource = mvsdio_resources,
389};
390
391void __init kirkwood_sdio_init(struct mvsdio_platform_data *mvsdio_data)
392{
393 u32 dev, rev;
394
395 kirkwood_pcie_id(&dev, &rev);
396 if (rev == 0) /* catch all Kirkwood Z0's */
397 mvsdio_data->clock = 100000000;
398 else
399 mvsdio_data->clock = 200000000;
400 mvsdio_data->dram = &kirkwood_mbus_dram_info;
e8b2b7ba 401 kirkwood_clk_ctrl |= CGC_SDIO;
8235ee00
NP
402 kirkwood_sdio.dev.platform_data = mvsdio_data;
403 platform_device_register(&kirkwood_sdio);
404}
405
406
18365d18
LB
407/*****************************************************************************
408 * SPI
409 ****************************************************************************/
410static struct orion_spi_info kirkwood_spi_plat_data = {
18365d18
LB
411};
412
413static struct resource kirkwood_spi_resources[] = {
414 {
415 .start = SPI_PHYS_BASE,
416 .end = SPI_PHYS_BASE + SZ_512 - 1,
417 .flags = IORESOURCE_MEM,
418 },
419};
420
421static struct platform_device kirkwood_spi = {
422 .name = "orion_spi",
423 .id = 0,
424 .resource = kirkwood_spi_resources,
425 .dev = {
426 .platform_data = &kirkwood_spi_plat_data,
427 },
428 .num_resources = ARRAY_SIZE(kirkwood_spi_resources),
429};
430
431void __init kirkwood_spi_init()
432{
e8b2b7ba 433 kirkwood_clk_ctrl |= CGC_RUNIT;
18365d18
LB
434 platform_device_register(&kirkwood_spi);
435}
436
437
6574e001
MM
438/*****************************************************************************
439 * I2C
440 ****************************************************************************/
441static struct mv64xxx_i2c_pdata kirkwood_i2c_pdata = {
442 .freq_m = 8, /* assumes 166 MHz TCLK */
443 .freq_n = 3,
444 .timeout = 1000, /* Default timeout of 1 second */
445};
446
447static struct resource kirkwood_i2c_resources[] = {
448 {
6574e001
MM
449 .start = I2C_PHYS_BASE,
450 .end = I2C_PHYS_BASE + 0x1f,
451 .flags = IORESOURCE_MEM,
452 }, {
6574e001
MM
453 .start = IRQ_KIRKWOOD_TWSI,
454 .end = IRQ_KIRKWOOD_TWSI,
455 .flags = IORESOURCE_IRQ,
456 },
457};
458
459static struct platform_device kirkwood_i2c = {
460 .name = MV64XXX_I2C_CTLR_NAME,
461 .id = 0,
462 .num_resources = ARRAY_SIZE(kirkwood_i2c_resources),
463 .resource = kirkwood_i2c_resources,
464 .dev = {
465 .platform_data = &kirkwood_i2c_pdata,
466 },
467};
468
469void __init kirkwood_i2c_init(void)
470{
471 platform_device_register(&kirkwood_i2c);
472}
473
474
651c74c7
SB
475/*****************************************************************************
476 * UART0
477 ****************************************************************************/
478static struct plat_serial8250_port kirkwood_uart0_data[] = {
479 {
480 .mapbase = UART0_PHYS_BASE,
481 .membase = (char *)UART0_VIRT_BASE,
482 .irq = IRQ_KIRKWOOD_UART_0,
483 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
484 .iotype = UPIO_MEM,
485 .regshift = 2,
79d4dd77 486 .uartclk = 0,
651c74c7
SB
487 }, {
488 },
489};
490
491static struct resource kirkwood_uart0_resources[] = {
492 {
493 .start = UART0_PHYS_BASE,
494 .end = UART0_PHYS_BASE + 0xff,
495 .flags = IORESOURCE_MEM,
496 }, {
497 .start = IRQ_KIRKWOOD_UART_0,
498 .end = IRQ_KIRKWOOD_UART_0,
499 .flags = IORESOURCE_IRQ,
500 },
501};
502
503static struct platform_device kirkwood_uart0 = {
504 .name = "serial8250",
505 .id = 0,
506 .dev = {
507 .platform_data = kirkwood_uart0_data,
508 },
509 .resource = kirkwood_uart0_resources,
510 .num_resources = ARRAY_SIZE(kirkwood_uart0_resources),
511};
512
513void __init kirkwood_uart0_init(void)
514{
515 platform_device_register(&kirkwood_uart0);
516}
517
518
519/*****************************************************************************
520 * UART1
521 ****************************************************************************/
522static struct plat_serial8250_port kirkwood_uart1_data[] = {
523 {
524 .mapbase = UART1_PHYS_BASE,
525 .membase = (char *)UART1_VIRT_BASE,
526 .irq = IRQ_KIRKWOOD_UART_1,
527 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
528 .iotype = UPIO_MEM,
529 .regshift = 2,
79d4dd77 530 .uartclk = 0,
651c74c7
SB
531 }, {
532 },
533};
534
535static struct resource kirkwood_uart1_resources[] = {
536 {
537 .start = UART1_PHYS_BASE,
538 .end = UART1_PHYS_BASE + 0xff,
539 .flags = IORESOURCE_MEM,
540 }, {
541 .start = IRQ_KIRKWOOD_UART_1,
542 .end = IRQ_KIRKWOOD_UART_1,
543 .flags = IORESOURCE_IRQ,
544 },
545};
546
547static struct platform_device kirkwood_uart1 = {
548 .name = "serial8250",
549 .id = 1,
550 .dev = {
551 .platform_data = kirkwood_uart1_data,
552 },
553 .resource = kirkwood_uart1_resources,
554 .num_resources = ARRAY_SIZE(kirkwood_uart1_resources),
555};
556
557void __init kirkwood_uart1_init(void)
558{
559 platform_device_register(&kirkwood_uart1);
560}
561
562
ae5c8c83
NP
563/*****************************************************************************
564 * Cryptographic Engines and Security Accelerator (CESA)
565 ****************************************************************************/
566
567static struct resource kirkwood_crypto_res[] = {
568 {
569 .name = "regs",
570 .start = CRYPTO_PHYS_BASE,
571 .end = CRYPTO_PHYS_BASE + 0xffff,
572 .flags = IORESOURCE_MEM,
573 }, {
574 .name = "sram",
575 .start = KIRKWOOD_SRAM_PHYS_BASE,
576 .end = KIRKWOOD_SRAM_PHYS_BASE + KIRKWOOD_SRAM_SIZE - 1,
577 .flags = IORESOURCE_MEM,
578 }, {
579 .name = "crypto interrupt",
580 .start = IRQ_KIRKWOOD_CRYPTO,
581 .end = IRQ_KIRKWOOD_CRYPTO,
582 .flags = IORESOURCE_IRQ,
583 },
584};
585
586static struct platform_device kirkwood_crypto_device = {
587 .name = "mv_crypto",
588 .id = -1,
589 .num_resources = ARRAY_SIZE(kirkwood_crypto_res),
590 .resource = kirkwood_crypto_res,
591};
592
593void __init kirkwood_crypto_init(void)
594{
595 kirkwood_clk_ctrl |= CGC_CRYPTO;
596 platform_device_register(&kirkwood_crypto_device);
597}
598
599
09c0ed2e
SB
600/*****************************************************************************
601 * XOR
602 ****************************************************************************/
603static struct mv_xor_platform_shared_data kirkwood_xor_shared_data = {
604 .dram = &kirkwood_mbus_dram_info,
605};
606
284901a9 607static u64 kirkwood_xor_dmamask = DMA_BIT_MASK(32);
09c0ed2e
SB
608
609
610/*****************************************************************************
611 * XOR0
612 ****************************************************************************/
613static struct resource kirkwood_xor0_shared_resources[] = {
614 {
615 .name = "xor 0 low",
616 .start = XOR0_PHYS_BASE,
617 .end = XOR0_PHYS_BASE + 0xff,
618 .flags = IORESOURCE_MEM,
619 }, {
620 .name = "xor 0 high",
621 .start = XOR0_HIGH_PHYS_BASE,
622 .end = XOR0_HIGH_PHYS_BASE + 0xff,
623 .flags = IORESOURCE_MEM,
624 },
625};
626
627static struct platform_device kirkwood_xor0_shared = {
628 .name = MV_XOR_SHARED_NAME,
629 .id = 0,
630 .dev = {
631 .platform_data = &kirkwood_xor_shared_data,
632 },
633 .num_resources = ARRAY_SIZE(kirkwood_xor0_shared_resources),
634 .resource = kirkwood_xor0_shared_resources,
635};
636
637static struct resource kirkwood_xor00_resources[] = {
638 [0] = {
639 .start = IRQ_KIRKWOOD_XOR_00,
640 .end = IRQ_KIRKWOOD_XOR_00,
641 .flags = IORESOURCE_IRQ,
642 },
643};
644
645static struct mv_xor_platform_data kirkwood_xor00_data = {
646 .shared = &kirkwood_xor0_shared,
647 .hw_id = 0,
648 .pool_size = PAGE_SIZE,
649};
650
651static struct platform_device kirkwood_xor00_channel = {
652 .name = MV_XOR_NAME,
653 .id = 0,
654 .num_resources = ARRAY_SIZE(kirkwood_xor00_resources),
655 .resource = kirkwood_xor00_resources,
656 .dev = {
657 .dma_mask = &kirkwood_xor_dmamask,
6a35528a 658 .coherent_dma_mask = DMA_BIT_MASK(64),
3e3e65fc 659 .platform_data = &kirkwood_xor00_data,
09c0ed2e
SB
660 },
661};
662
663static struct resource kirkwood_xor01_resources[] = {
664 [0] = {
665 .start = IRQ_KIRKWOOD_XOR_01,
666 .end = IRQ_KIRKWOOD_XOR_01,
667 .flags = IORESOURCE_IRQ,
668 },
669};
670
671static struct mv_xor_platform_data kirkwood_xor01_data = {
672 .shared = &kirkwood_xor0_shared,
673 .hw_id = 1,
674 .pool_size = PAGE_SIZE,
675};
676
677static struct platform_device kirkwood_xor01_channel = {
678 .name = MV_XOR_NAME,
679 .id = 1,
680 .num_resources = ARRAY_SIZE(kirkwood_xor01_resources),
681 .resource = kirkwood_xor01_resources,
682 .dev = {
683 .dma_mask = &kirkwood_xor_dmamask,
6a35528a 684 .coherent_dma_mask = DMA_BIT_MASK(64),
3e3e65fc 685 .platform_data = &kirkwood_xor01_data,
09c0ed2e
SB
686 },
687};
688
5b99d534 689static void __init kirkwood_xor0_init(void)
09c0ed2e 690{
e8b2b7ba 691 kirkwood_clk_ctrl |= CGC_XOR0;
09c0ed2e
SB
692 platform_device_register(&kirkwood_xor0_shared);
693
694 /*
695 * two engines can't do memset simultaneously, this limitation
696 * satisfied by removing memset support from one of the engines.
697 */
698 dma_cap_set(DMA_MEMCPY, kirkwood_xor00_data.cap_mask);
699 dma_cap_set(DMA_XOR, kirkwood_xor00_data.cap_mask);
700 platform_device_register(&kirkwood_xor00_channel);
701
702 dma_cap_set(DMA_MEMCPY, kirkwood_xor01_data.cap_mask);
703 dma_cap_set(DMA_MEMSET, kirkwood_xor01_data.cap_mask);
704 dma_cap_set(DMA_XOR, kirkwood_xor01_data.cap_mask);
705 platform_device_register(&kirkwood_xor01_channel);
706}
707
708
709/*****************************************************************************
710 * XOR1
711 ****************************************************************************/
712static struct resource kirkwood_xor1_shared_resources[] = {
713 {
714 .name = "xor 1 low",
715 .start = XOR1_PHYS_BASE,
716 .end = XOR1_PHYS_BASE + 0xff,
717 .flags = IORESOURCE_MEM,
718 }, {
719 .name = "xor 1 high",
720 .start = XOR1_HIGH_PHYS_BASE,
721 .end = XOR1_HIGH_PHYS_BASE + 0xff,
722 .flags = IORESOURCE_MEM,
723 },
724};
725
726static struct platform_device kirkwood_xor1_shared = {
727 .name = MV_XOR_SHARED_NAME,
728 .id = 1,
729 .dev = {
730 .platform_data = &kirkwood_xor_shared_data,
731 },
732 .num_resources = ARRAY_SIZE(kirkwood_xor1_shared_resources),
733 .resource = kirkwood_xor1_shared_resources,
734};
735
736static struct resource kirkwood_xor10_resources[] = {
737 [0] = {
738 .start = IRQ_KIRKWOOD_XOR_10,
739 .end = IRQ_KIRKWOOD_XOR_10,
740 .flags = IORESOURCE_IRQ,
741 },
742};
743
744static struct mv_xor_platform_data kirkwood_xor10_data = {
745 .shared = &kirkwood_xor1_shared,
746 .hw_id = 0,
747 .pool_size = PAGE_SIZE,
748};
749
750static struct platform_device kirkwood_xor10_channel = {
751 .name = MV_XOR_NAME,
752 .id = 2,
753 .num_resources = ARRAY_SIZE(kirkwood_xor10_resources),
754 .resource = kirkwood_xor10_resources,
755 .dev = {
756 .dma_mask = &kirkwood_xor_dmamask,
6a35528a 757 .coherent_dma_mask = DMA_BIT_MASK(64),
3e3e65fc 758 .platform_data = &kirkwood_xor10_data,
09c0ed2e
SB
759 },
760};
761
762static struct resource kirkwood_xor11_resources[] = {
763 [0] = {
764 .start = IRQ_KIRKWOOD_XOR_11,
765 .end = IRQ_KIRKWOOD_XOR_11,
766 .flags = IORESOURCE_IRQ,
767 },
768};
769
770static struct mv_xor_platform_data kirkwood_xor11_data = {
771 .shared = &kirkwood_xor1_shared,
772 .hw_id = 1,
773 .pool_size = PAGE_SIZE,
774};
775
776static struct platform_device kirkwood_xor11_channel = {
777 .name = MV_XOR_NAME,
778 .id = 3,
779 .num_resources = ARRAY_SIZE(kirkwood_xor11_resources),
780 .resource = kirkwood_xor11_resources,
781 .dev = {
782 .dma_mask = &kirkwood_xor_dmamask,
6a35528a 783 .coherent_dma_mask = DMA_BIT_MASK(64),
3e3e65fc 784 .platform_data = &kirkwood_xor11_data,
09c0ed2e
SB
785 },
786};
787
5b99d534 788static void __init kirkwood_xor1_init(void)
09c0ed2e 789{
e8b2b7ba 790 kirkwood_clk_ctrl |= CGC_XOR1;
09c0ed2e
SB
791 platform_device_register(&kirkwood_xor1_shared);
792
793 /*
794 * two engines can't do memset simultaneously, this limitation
795 * satisfied by removing memset support from one of the engines.
796 */
797 dma_cap_set(DMA_MEMCPY, kirkwood_xor10_data.cap_mask);
798 dma_cap_set(DMA_XOR, kirkwood_xor10_data.cap_mask);
799 platform_device_register(&kirkwood_xor10_channel);
800
801 dma_cap_set(DMA_MEMCPY, kirkwood_xor11_data.cap_mask);
802 dma_cap_set(DMA_MEMSET, kirkwood_xor11_data.cap_mask);
803 dma_cap_set(DMA_XOR, kirkwood_xor11_data.cap_mask);
804 platform_device_register(&kirkwood_xor11_channel);
805}
806
807
054bd3f0
TR
808/*****************************************************************************
809 * Watchdog
810 ****************************************************************************/
3b937a7d 811static struct orion_wdt_platform_data kirkwood_wdt_data = {
054bd3f0
TR
812 .tclk = 0,
813};
814
815static struct platform_device kirkwood_wdt_device = {
3b937a7d 816 .name = "orion_wdt",
054bd3f0
TR
817 .id = -1,
818 .dev = {
819 .platform_data = &kirkwood_wdt_data,
820 },
821 .num_resources = 0,
822};
823
824static void __init kirkwood_wdt_init(void)
825{
826 kirkwood_wdt_data.tclk = kirkwood_tclk;
827 platform_device_register(&kirkwood_wdt_device);
828}
829
830
651c74c7
SB
831/*****************************************************************************
832 * Time handling
833 ****************************************************************************/
79d4dd77
RS
834int kirkwood_tclk;
835
836int __init kirkwood_find_tclk(void)
837{
b2b3dc2f
RS
838 u32 dev, rev;
839
840 kirkwood_pcie_id(&dev, &rev);
aec1bad3
SG
841 if (dev == MV88F6281_DEV_ID && (rev == MV88F6281_REV_A0 ||
842 rev == MV88F6281_REV_A1))
b2b3dc2f
RS
843 return 200000000;
844
79d4dd77
RS
845 return 166666667;
846}
847
6de95c19 848static void __init kirkwood_timer_init(void)
651c74c7 849{
79d4dd77
RS
850 kirkwood_tclk = kirkwood_find_tclk();
851 orion_time_init(IRQ_KIRKWOOD_BRIDGE, kirkwood_tclk);
651c74c7
SB
852}
853
854struct sys_timer kirkwood_timer = {
855 .init = kirkwood_timer_init,
856};
857
858
859/*****************************************************************************
860 * General
861 ****************************************************************************/
b2b3dc2f
RS
862/*
863 * Identify device ID and revision.
864 */
651c74c7
SB
865static char * __init kirkwood_id(void)
866{
b2b3dc2f
RS
867 u32 dev, rev;
868
869 kirkwood_pcie_id(&dev, &rev);
870
871 if (dev == MV88F6281_DEV_ID) {
872 if (rev == MV88F6281_REV_Z0)
873 return "MV88F6281-Z0";
874 else if (rev == MV88F6281_REV_A0)
875 return "MV88F6281-A0";
aec1bad3
SG
876 else if (rev == MV88F6281_REV_A1)
877 return "MV88F6281-A1";
b2b3dc2f
RS
878 else
879 return "MV88F6281-Rev-Unsupported";
880 } else if (dev == MV88F6192_DEV_ID) {
881 if (rev == MV88F6192_REV_Z0)
882 return "MV88F6192-Z0";
883 else if (rev == MV88F6192_REV_A0)
884 return "MV88F6192-A0";
885 else
886 return "MV88F6192-Rev-Unsupported";
887 } else if (dev == MV88F6180_DEV_ID) {
888 if (rev == MV88F6180_REV_A0)
889 return "MV88F6180-Rev-A0";
890 else
891 return "MV88F6180-Rev-Unsupported";
892 } else {
893 return "Device-Unknown";
651c74c7 894 }
651c74c7
SB
895}
896
4360bb41 897static void __init kirkwood_l2_init(void)
13387603 898{
4360bb41
RS
899#ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
900 writel(readl(L2_CONFIG_REG) | L2_WRITETHROUGH, L2_CONFIG_REG);
901 feroceon_l2_init(1);
902#else
903 writel(readl(L2_CONFIG_REG) & ~L2_WRITETHROUGH, L2_CONFIG_REG);
904 feroceon_l2_init(0);
905#endif
13387603
SB
906}
907
651c74c7
SB
908void __init kirkwood_init(void)
909{
910 printk(KERN_INFO "Kirkwood: %s, TCLK=%d.\n",
79d4dd77
RS
911 kirkwood_id(), kirkwood_tclk);
912 kirkwood_ge00_shared_data.t_clk = kirkwood_tclk;
13731d1a 913 kirkwood_ge01_shared_data.t_clk = kirkwood_tclk;
79d4dd77
RS
914 kirkwood_spi_plat_data.tclk = kirkwood_tclk;
915 kirkwood_uart0_data[0].uartclk = kirkwood_tclk;
916 kirkwood_uart1_data[0].uartclk = kirkwood_tclk;
651c74c7 917
2bf30108
LB
918 /*
919 * Disable propagation of mbus errors to the CPU local bus,
920 * as this causes mbus errors (which can occur for example
921 * for PCI aborts) to throw CPU aborts, which we're not set
922 * up to deal with.
923 */
924 writel(readl(CPU_CONFIG) & ~CPU_CONFIG_ERROR_PROP, CPU_CONFIG);
925
651c74c7
SB
926 kirkwood_setup_cpu_mbus();
927
928#ifdef CONFIG_CACHE_FEROCEON_L2
4360bb41 929 kirkwood_l2_init();
651c74c7 930#endif
5b99d534
NP
931
932 /* internal devices that every board has */
933 kirkwood_rtc_init();
054bd3f0 934 kirkwood_wdt_init();
5b99d534
NP
935 kirkwood_xor0_init();
936 kirkwood_xor1_init();
ae5c8c83 937 kirkwood_crypto_init();
651c74c7 938}
e8b2b7ba
RK
939
940static int __init kirkwood_clock_gate(void)
941{
942 unsigned int curr = readl(CLOCK_GATING_CTRL);
943
944 printk(KERN_DEBUG "Gating clock of unused units\n");
945 printk(KERN_DEBUG "before: 0x%08x\n", curr);
946
947 /* Make sure those units are accessible */
948 writel(curr | CGC_SATA0 | CGC_SATA1 | CGC_PEX0, CLOCK_GATING_CTRL);
949
950 /* For SATA: first shutdown the phy */
951 if (!(kirkwood_clk_ctrl & CGC_SATA0)) {
952 /* Disable PLL and IVREF */
953 writel(readl(SATA0_PHY_MODE_2) & ~0xf, SATA0_PHY_MODE_2);
954 /* Disable PHY */
955 writel(readl(SATA0_IF_CTRL) | 0x200, SATA0_IF_CTRL);
956 }
957 if (!(kirkwood_clk_ctrl & CGC_SATA1)) {
958 /* Disable PLL and IVREF */
959 writel(readl(SATA1_PHY_MODE_2) & ~0xf, SATA1_PHY_MODE_2);
960 /* Disable PHY */
961 writel(readl(SATA1_IF_CTRL) | 0x200, SATA1_IF_CTRL);
962 }
963
964 /* For PCIe: first shutdown the phy */
965 if (!(kirkwood_clk_ctrl & CGC_PEX0)) {
966 writel(readl(PCIE_LINK_CTRL) | 0x10, PCIE_LINK_CTRL);
967 while (1)
968 if (readl(PCIE_STATUS) & 0x1)
969 break;
970 writel(readl(PCIE_LINK_CTRL) & ~0x10, PCIE_LINK_CTRL);
971 }
972
973 /* Now gate clock the required units */
974 writel(kirkwood_clk_ctrl, CLOCK_GATING_CTRL);
975 printk(KERN_DEBUG " after: 0x%08x\n", readl(CLOCK_GATING_CTRL));
976
977 return 0;
978}
979late_initcall(kirkwood_clock_gate);