2 * arch/arm/mach-orion5x/common.c
4 * Core functions for Marvell Orion 5x SoCs
6 * Maintainer: Tzachi Perelstein <tzachi@marvell.com>
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/serial_8250.h>
17 #include <linux/mbus.h>
18 #include <linux/mv643xx_eth.h>
19 #include <linux/mv643xx_i2c.h>
20 #include <linux/ata_platform.h>
21 #include <linux/spi/orion_spi.h>
24 #include <asm/setup.h>
25 #include <asm/timex.h>
26 #include <asm/mach/arch.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/time.h>
29 #include <mach/hardware.h>
30 #include <mach/orion5x.h>
31 #include <plat/ehci-orion.h>
32 #include <plat/mv_xor.h>
33 #include <plat/orion_nand.h>
34 #include <plat/orion5x_wdt.h>
35 #include <plat/time.h>
38 /*****************************************************************************
40 ****************************************************************************/
41 static struct map_desc orion5x_io_desc
[] __initdata
= {
43 .virtual = ORION5X_REGS_VIRT_BASE
,
44 .pfn
= __phys_to_pfn(ORION5X_REGS_PHYS_BASE
),
45 .length
= ORION5X_REGS_SIZE
,
48 .virtual = ORION5X_PCIE_IO_VIRT_BASE
,
49 .pfn
= __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE
),
50 .length
= ORION5X_PCIE_IO_SIZE
,
53 .virtual = ORION5X_PCI_IO_VIRT_BASE
,
54 .pfn
= __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE
),
55 .length
= ORION5X_PCI_IO_SIZE
,
58 .virtual = ORION5X_PCIE_WA_VIRT_BASE
,
59 .pfn
= __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE
),
60 .length
= ORION5X_PCIE_WA_SIZE
,
65 void __init
orion5x_map_io(void)
67 iotable_init(orion5x_io_desc
, ARRAY_SIZE(orion5x_io_desc
));
71 /*****************************************************************************
73 ****************************************************************************/
74 static struct orion_ehci_data orion5x_ehci_data
= {
75 .dram
= &orion5x_mbus_dram_info
,
76 .phy_version
= EHCI_PHY_ORION
,
79 static u64 ehci_dmamask
= 0xffffffffUL
;
82 /*****************************************************************************
84 ****************************************************************************/
85 static struct resource orion5x_ehci0_resources
[] = {
87 .start
= ORION5X_USB0_PHYS_BASE
,
88 .end
= ORION5X_USB0_PHYS_BASE
+ SZ_4K
- 1,
89 .flags
= IORESOURCE_MEM
,
91 .start
= IRQ_ORION5X_USB0_CTRL
,
92 .end
= IRQ_ORION5X_USB0_CTRL
,
93 .flags
= IORESOURCE_IRQ
,
97 static struct platform_device orion5x_ehci0
= {
101 .dma_mask
= &ehci_dmamask
,
102 .coherent_dma_mask
= 0xffffffff,
103 .platform_data
= &orion5x_ehci_data
,
105 .resource
= orion5x_ehci0_resources
,
106 .num_resources
= ARRAY_SIZE(orion5x_ehci0_resources
),
109 void __init
orion5x_ehci0_init(void)
111 platform_device_register(&orion5x_ehci0
);
115 /*****************************************************************************
117 ****************************************************************************/
118 static struct resource orion5x_ehci1_resources
[] = {
120 .start
= ORION5X_USB1_PHYS_BASE
,
121 .end
= ORION5X_USB1_PHYS_BASE
+ SZ_4K
- 1,
122 .flags
= IORESOURCE_MEM
,
124 .start
= IRQ_ORION5X_USB1_CTRL
,
125 .end
= IRQ_ORION5X_USB1_CTRL
,
126 .flags
= IORESOURCE_IRQ
,
130 static struct platform_device orion5x_ehci1
= {
131 .name
= "orion-ehci",
134 .dma_mask
= &ehci_dmamask
,
135 .coherent_dma_mask
= 0xffffffff,
136 .platform_data
= &orion5x_ehci_data
,
138 .resource
= orion5x_ehci1_resources
,
139 .num_resources
= ARRAY_SIZE(orion5x_ehci1_resources
),
142 void __init
orion5x_ehci1_init(void)
144 platform_device_register(&orion5x_ehci1
);
148 /*****************************************************************************
150 ****************************************************************************/
151 struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data
= {
152 .dram
= &orion5x_mbus_dram_info
,
155 static struct resource orion5x_eth_shared_resources
[] = {
157 .start
= ORION5X_ETH_PHYS_BASE
+ 0x2000,
158 .end
= ORION5X_ETH_PHYS_BASE
+ 0x3fff,
159 .flags
= IORESOURCE_MEM
,
161 .start
= IRQ_ORION5X_ETH_ERR
,
162 .end
= IRQ_ORION5X_ETH_ERR
,
163 .flags
= IORESOURCE_IRQ
,
167 static struct platform_device orion5x_eth_shared
= {
168 .name
= MV643XX_ETH_SHARED_NAME
,
171 .platform_data
= &orion5x_eth_shared_data
,
173 .num_resources
= ARRAY_SIZE(orion5x_eth_shared_resources
),
174 .resource
= orion5x_eth_shared_resources
,
177 static struct resource orion5x_eth_resources
[] = {
180 .start
= IRQ_ORION5X_ETH_SUM
,
181 .end
= IRQ_ORION5X_ETH_SUM
,
182 .flags
= IORESOURCE_IRQ
,
186 static struct platform_device orion5x_eth
= {
187 .name
= MV643XX_ETH_NAME
,
190 .resource
= orion5x_eth_resources
,
193 void __init
orion5x_eth_init(struct mv643xx_eth_platform_data
*eth_data
)
195 eth_data
->shared
= &orion5x_eth_shared
;
196 orion5x_eth
.dev
.platform_data
= eth_data
;
198 platform_device_register(&orion5x_eth_shared
);
199 platform_device_register(&orion5x_eth
);
203 /*****************************************************************************
205 ****************************************************************************/
206 static struct resource orion5x_switch_resources
[] = {
210 .flags
= IORESOURCE_IRQ
,
214 static struct platform_device orion5x_switch_device
= {
218 .resource
= orion5x_switch_resources
,
221 void __init
orion5x_eth_switch_init(struct dsa_platform_data
*d
, int irq
)
226 orion5x_switch_resources
[0].start
= irq
;
227 orion5x_switch_resources
[0].end
= irq
;
228 orion5x_switch_device
.num_resources
= 1;
231 d
->netdev
= &orion5x_eth
.dev
;
232 for (i
= 0; i
< d
->nr_chips
; i
++)
233 d
->chip
[i
].mii_bus
= &orion5x_eth_shared
.dev
;
234 orion5x_switch_device
.dev
.platform_data
= d
;
236 platform_device_register(&orion5x_switch_device
);
240 /*****************************************************************************
242 ****************************************************************************/
243 static struct mv64xxx_i2c_pdata orion5x_i2c_pdata
= {
244 .freq_m
= 8, /* assumes 166 MHz TCLK */
246 .timeout
= 1000, /* Default timeout of 1 second */
249 static struct resource orion5x_i2c_resources
[] = {
252 .start
= I2C_PHYS_BASE
,
253 .end
= I2C_PHYS_BASE
+ 0x1f,
254 .flags
= IORESOURCE_MEM
,
257 .start
= IRQ_ORION5X_I2C
,
258 .end
= IRQ_ORION5X_I2C
,
259 .flags
= IORESOURCE_IRQ
,
263 static struct platform_device orion5x_i2c
= {
264 .name
= MV64XXX_I2C_CTLR_NAME
,
266 .num_resources
= ARRAY_SIZE(orion5x_i2c_resources
),
267 .resource
= orion5x_i2c_resources
,
269 .platform_data
= &orion5x_i2c_pdata
,
273 void __init
orion5x_i2c_init(void)
275 platform_device_register(&orion5x_i2c
);
279 /*****************************************************************************
281 ****************************************************************************/
282 static struct resource orion5x_sata_resources
[] = {
285 .start
= ORION5X_SATA_PHYS_BASE
,
286 .end
= ORION5X_SATA_PHYS_BASE
+ 0x5000 - 1,
287 .flags
= IORESOURCE_MEM
,
290 .start
= IRQ_ORION5X_SATA
,
291 .end
= IRQ_ORION5X_SATA
,
292 .flags
= IORESOURCE_IRQ
,
296 static struct platform_device orion5x_sata
= {
300 .coherent_dma_mask
= 0xffffffff,
302 .num_resources
= ARRAY_SIZE(orion5x_sata_resources
),
303 .resource
= orion5x_sata_resources
,
306 void __init
orion5x_sata_init(struct mv_sata_platform_data
*sata_data
)
308 sata_data
->dram
= &orion5x_mbus_dram_info
;
309 orion5x_sata
.dev
.platform_data
= sata_data
;
310 platform_device_register(&orion5x_sata
);
314 /*****************************************************************************
316 ****************************************************************************/
317 static struct orion_spi_info orion5x_spi_plat_data
= {
319 .enable_clock_fix
= 1,
322 static struct resource orion5x_spi_resources
[] = {
325 .start
= SPI_PHYS_BASE
,
326 .end
= SPI_PHYS_BASE
+ 0x1f,
327 .flags
= IORESOURCE_MEM
,
331 static struct platform_device orion5x_spi
= {
335 .platform_data
= &orion5x_spi_plat_data
,
337 .num_resources
= ARRAY_SIZE(orion5x_spi_resources
),
338 .resource
= orion5x_spi_resources
,
341 void __init
orion5x_spi_init()
343 platform_device_register(&orion5x_spi
);
347 /*****************************************************************************
349 ****************************************************************************/
350 static struct plat_serial8250_port orion5x_uart0_data
[] = {
352 .mapbase
= UART0_PHYS_BASE
,
353 .membase
= (char *)UART0_VIRT_BASE
,
354 .irq
= IRQ_ORION5X_UART0
,
355 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
363 static struct resource orion5x_uart0_resources
[] = {
365 .start
= UART0_PHYS_BASE
,
366 .end
= UART0_PHYS_BASE
+ 0xff,
367 .flags
= IORESOURCE_MEM
,
369 .start
= IRQ_ORION5X_UART0
,
370 .end
= IRQ_ORION5X_UART0
,
371 .flags
= IORESOURCE_IRQ
,
375 static struct platform_device orion5x_uart0
= {
376 .name
= "serial8250",
377 .id
= PLAT8250_DEV_PLATFORM
,
379 .platform_data
= orion5x_uart0_data
,
381 .resource
= orion5x_uart0_resources
,
382 .num_resources
= ARRAY_SIZE(orion5x_uart0_resources
),
385 void __init
orion5x_uart0_init(void)
387 platform_device_register(&orion5x_uart0
);
391 /*****************************************************************************
393 ****************************************************************************/
394 static struct plat_serial8250_port orion5x_uart1_data
[] = {
396 .mapbase
= UART1_PHYS_BASE
,
397 .membase
= (char *)UART1_VIRT_BASE
,
398 .irq
= IRQ_ORION5X_UART1
,
399 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
407 static struct resource orion5x_uart1_resources
[] = {
409 .start
= UART1_PHYS_BASE
,
410 .end
= UART1_PHYS_BASE
+ 0xff,
411 .flags
= IORESOURCE_MEM
,
413 .start
= IRQ_ORION5X_UART1
,
414 .end
= IRQ_ORION5X_UART1
,
415 .flags
= IORESOURCE_IRQ
,
419 static struct platform_device orion5x_uart1
= {
420 .name
= "serial8250",
421 .id
= PLAT8250_DEV_PLATFORM1
,
423 .platform_data
= orion5x_uart1_data
,
425 .resource
= orion5x_uart1_resources
,
426 .num_resources
= ARRAY_SIZE(orion5x_uart1_resources
),
429 void __init
orion5x_uart1_init(void)
431 platform_device_register(&orion5x_uart1
);
435 /*****************************************************************************
437 ****************************************************************************/
438 struct mv_xor_platform_shared_data orion5x_xor_shared_data
= {
439 .dram
= &orion5x_mbus_dram_info
,
442 static struct resource orion5x_xor_shared_resources
[] = {
445 .start
= ORION5X_XOR_PHYS_BASE
,
446 .end
= ORION5X_XOR_PHYS_BASE
+ 0xff,
447 .flags
= IORESOURCE_MEM
,
450 .start
= ORION5X_XOR_PHYS_BASE
+ 0x200,
451 .end
= ORION5X_XOR_PHYS_BASE
+ 0x2ff,
452 .flags
= IORESOURCE_MEM
,
456 static struct platform_device orion5x_xor_shared
= {
457 .name
= MV_XOR_SHARED_NAME
,
460 .platform_data
= &orion5x_xor_shared_data
,
462 .num_resources
= ARRAY_SIZE(orion5x_xor_shared_resources
),
463 .resource
= orion5x_xor_shared_resources
,
466 static u64 orion5x_xor_dmamask
= DMA_32BIT_MASK
;
468 static struct resource orion5x_xor0_resources
[] = {
470 .start
= IRQ_ORION5X_XOR0
,
471 .end
= IRQ_ORION5X_XOR0
,
472 .flags
= IORESOURCE_IRQ
,
476 static struct mv_xor_platform_data orion5x_xor0_data
= {
477 .shared
= &orion5x_xor_shared
,
479 .pool_size
= PAGE_SIZE
,
482 static struct platform_device orion5x_xor0_channel
= {
485 .num_resources
= ARRAY_SIZE(orion5x_xor0_resources
),
486 .resource
= orion5x_xor0_resources
,
488 .dma_mask
= &orion5x_xor_dmamask
,
489 .coherent_dma_mask
= DMA_64BIT_MASK
,
490 .platform_data
= (void *)&orion5x_xor0_data
,
494 static struct resource orion5x_xor1_resources
[] = {
496 .start
= IRQ_ORION5X_XOR1
,
497 .end
= IRQ_ORION5X_XOR1
,
498 .flags
= IORESOURCE_IRQ
,
502 static struct mv_xor_platform_data orion5x_xor1_data
= {
503 .shared
= &orion5x_xor_shared
,
505 .pool_size
= PAGE_SIZE
,
508 static struct platform_device orion5x_xor1_channel
= {
511 .num_resources
= ARRAY_SIZE(orion5x_xor1_resources
),
512 .resource
= orion5x_xor1_resources
,
514 .dma_mask
= &orion5x_xor_dmamask
,
515 .coherent_dma_mask
= DMA_64BIT_MASK
,
516 .platform_data
= (void *)&orion5x_xor1_data
,
520 void __init
orion5x_xor_init(void)
522 platform_device_register(&orion5x_xor_shared
);
525 * two engines can't do memset simultaneously, this limitation
526 * satisfied by removing memset support from one of the engines.
528 dma_cap_set(DMA_MEMCPY
, orion5x_xor0_data
.cap_mask
);
529 dma_cap_set(DMA_XOR
, orion5x_xor0_data
.cap_mask
);
530 platform_device_register(&orion5x_xor0_channel
);
532 dma_cap_set(DMA_MEMCPY
, orion5x_xor1_data
.cap_mask
);
533 dma_cap_set(DMA_MEMSET
, orion5x_xor1_data
.cap_mask
);
534 dma_cap_set(DMA_XOR
, orion5x_xor1_data
.cap_mask
);
535 platform_device_register(&orion5x_xor1_channel
);
539 /*****************************************************************************
541 ****************************************************************************/
542 static struct orion5x_wdt_platform_data orion5x_wdt_data
= {
546 static struct platform_device orion5x_wdt_device
= {
547 .name
= "orion5x_wdt",
550 .platform_data
= &orion5x_wdt_data
,
555 void __init
orion5x_wdt_init(void)
557 orion5x_wdt_data
.tclk
= orion5x_tclk
;
558 platform_device_register(&orion5x_wdt_device
);
562 /*****************************************************************************
564 ****************************************************************************/
567 int __init
orion5x_find_tclk(void)
571 orion5x_pcie_id(&dev
, &rev
);
572 if (dev
== MV88F6183_DEV_ID
&&
573 (readl(MPP_RESET_SAMPLE
) & 0x00000200) == 0)
579 static void orion5x_timer_init(void)
581 orion5x_tclk
= orion5x_find_tclk();
582 orion_time_init(IRQ_ORION5X_BRIDGE
, orion5x_tclk
);
585 struct sys_timer orion5x_timer
= {
586 .init
= orion5x_timer_init
,
590 /*****************************************************************************
592 ****************************************************************************/
594 * Identify device ID and rev from PCIe configuration header space '0'.
596 static void __init
orion5x_id(u32
*dev
, u32
*rev
, char **dev_name
)
598 orion5x_pcie_id(dev
, rev
);
600 if (*dev
== MV88F5281_DEV_ID
) {
601 if (*rev
== MV88F5281_REV_D2
) {
602 *dev_name
= "MV88F5281-D2";
603 } else if (*rev
== MV88F5281_REV_D1
) {
604 *dev_name
= "MV88F5281-D1";
605 } else if (*rev
== MV88F5281_REV_D0
) {
606 *dev_name
= "MV88F5281-D0";
608 *dev_name
= "MV88F5281-Rev-Unsupported";
610 } else if (*dev
== MV88F5182_DEV_ID
) {
611 if (*rev
== MV88F5182_REV_A2
) {
612 *dev_name
= "MV88F5182-A2";
614 *dev_name
= "MV88F5182-Rev-Unsupported";
616 } else if (*dev
== MV88F5181_DEV_ID
) {
617 if (*rev
== MV88F5181_REV_B1
) {
618 *dev_name
= "MV88F5181-Rev-B1";
619 } else if (*rev
== MV88F5181L_REV_A1
) {
620 *dev_name
= "MV88F5181L-Rev-A1";
622 *dev_name
= "MV88F5181(L)-Rev-Unsupported";
624 } else if (*dev
== MV88F6183_DEV_ID
) {
625 if (*rev
== MV88F6183_REV_B0
) {
626 *dev_name
= "MV88F6183-Rev-B0";
628 *dev_name
= "MV88F6183-Rev-Unsupported";
631 *dev_name
= "Device-Unknown";
635 void __init
orion5x_init(void)
640 orion5x_id(&dev
, &rev
, &dev_name
);
641 printk(KERN_INFO
"Orion ID: %s. TCLK=%d.\n", dev_name
, orion5x_tclk
);
643 orion5x_eth_shared_data
.t_clk
= orion5x_tclk
;
644 orion5x_spi_plat_data
.tclk
= orion5x_tclk
;
645 orion5x_uart0_data
[0].uartclk
= orion5x_tclk
;
646 orion5x_uart1_data
[0].uartclk
= orion5x_tclk
;
649 * Setup Orion address map
651 orion5x_setup_cpu_mbus_bridge();
654 * Don't issue "Wait for Interrupt" instruction if we are
655 * running on D0 5281 silicon.
657 if (dev
== MV88F5281_DEV_ID
&& rev
== MV88F5281_REV_D0
) {
658 printk(KERN_INFO
"Orion: Applying 5281 D0 WFI workaround.\n");
663 * Register watchdog driver
669 * Many orion-based systems have buggy bootloader implementations.
670 * This is a common fixup for bogus memory tags.
672 void __init
tag_fixup_mem32(struct machine_desc
*mdesc
, struct tag
*t
,
673 char **from
, struct meminfo
*meminfo
)
675 for (; t
->hdr
.size
; t
= tag_next(t
))
676 if (t
->hdr
.tag
== ATAG_MEM
&&
677 (!t
->u
.mem
.size
|| t
->u
.mem
.size
& ~PAGE_MASK
||
678 t
->u
.mem
.start
& ~PAGE_MASK
)) {
680 "Clearing invalid memory bank %dKB@0x%08x\n",
681 t
->u
.mem
.size
/ 1024, t
->u
.mem
.start
);