blob: e8d42e8cb46585f9f1cf5abcc18ae928b37a4b1b [file] [log] [blame]
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -04001/*
2 * arch/arm/mach-orion5x/common.c
3 *
4 * Core functions for Marvell Orion 5x SoCs
5 *
6 * Maintainer: Tzachi Perelstein <tzachi@marvell.com>
7 *
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.
11 */
12
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>
Lennert Buytenhekd323ade2008-08-29 06:55:06 +020021#include <linux/spi/orion_spi.h>
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +020022#include <net/dsa.h>
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040023#include <asm/page.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>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
30#include <mach/orion5x.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020031#include <plat/ehci-orion.h>
Saeed Bishara1d5a1a62008-06-16 23:25:12 -110032#include <plat/mv_xor.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020033#include <plat/orion_nand.h>
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080034#include <plat/orion5x_wdt.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020035#include <plat/time.h>
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040036#include "common.h"
37
38/*****************************************************************************
39 * I/O Address Mapping
40 ****************************************************************************/
41static struct map_desc orion5x_io_desc[] __initdata = {
42 {
43 .virtual = ORION5X_REGS_VIRT_BASE,
44 .pfn = __phys_to_pfn(ORION5X_REGS_PHYS_BASE),
45 .length = ORION5X_REGS_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020046 .type = MT_DEVICE,
47 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040048 .virtual = ORION5X_PCIE_IO_VIRT_BASE,
49 .pfn = __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE),
50 .length = ORION5X_PCIE_IO_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020051 .type = MT_DEVICE,
52 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040053 .virtual = ORION5X_PCI_IO_VIRT_BASE,
54 .pfn = __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE),
55 .length = ORION5X_PCI_IO_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020056 .type = MT_DEVICE,
57 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040058 .virtual = ORION5X_PCIE_WA_VIRT_BASE,
59 .pfn = __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE),
60 .length = ORION5X_PCIE_WA_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020061 .type = MT_DEVICE,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040062 },
63};
64
65void __init orion5x_map_io(void)
66{
67 iotable_init(orion5x_io_desc, ARRAY_SIZE(orion5x_io_desc));
68}
69
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020070
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040071/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020072 * EHCI
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040073 ****************************************************************************/
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020074static struct orion_ehci_data orion5x_ehci_data = {
75 .dram = &orion5x_mbus_dram_info,
Ronen Shitritfb6f5522008-09-17 10:08:05 +030076 .phy_version = EHCI_PHY_ORION,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040077};
78
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020079static u64 ehci_dmamask = 0xffffffffUL;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040080
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040081
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020082/*****************************************************************************
83 * EHCI0
84 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040085static struct resource orion5x_ehci0_resources[] = {
86 {
87 .start = ORION5X_USB0_PHYS_BASE,
Lennert Buytenhek994cab82008-04-25 16:30:21 -040088 .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040089 .flags = IORESOURCE_MEM,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020090 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040091 .start = IRQ_ORION5X_USB0_CTRL,
92 .end = IRQ_ORION5X_USB0_CTRL,
93 .flags = IORESOURCE_IRQ,
94 },
95};
96
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040097static struct platform_device orion5x_ehci0 = {
98 .name = "orion-ehci",
99 .id = 0,
100 .dev = {
101 .dma_mask = &ehci_dmamask,
102 .coherent_dma_mask = 0xffffffff,
103 .platform_data = &orion5x_ehci_data,
104 },
105 .resource = orion5x_ehci0_resources,
106 .num_resources = ARRAY_SIZE(orion5x_ehci0_resources),
107};
108
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200109void __init orion5x_ehci0_init(void)
110{
111 platform_device_register(&orion5x_ehci0);
112}
113
114
115/*****************************************************************************
116 * EHCI1
117 ****************************************************************************/
118static struct resource orion5x_ehci1_resources[] = {
119 {
120 .start = ORION5X_USB1_PHYS_BASE,
121 .end = ORION5X_USB1_PHYS_BASE + SZ_4K - 1,
122 .flags = IORESOURCE_MEM,
123 }, {
124 .start = IRQ_ORION5X_USB1_CTRL,
125 .end = IRQ_ORION5X_USB1_CTRL,
126 .flags = IORESOURCE_IRQ,
127 },
128};
129
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400130static struct platform_device orion5x_ehci1 = {
131 .name = "orion-ehci",
132 .id = 1,
133 .dev = {
134 .dma_mask = &ehci_dmamask,
135 .coherent_dma_mask = 0xffffffff,
136 .platform_data = &orion5x_ehci_data,
137 },
138 .resource = orion5x_ehci1_resources,
139 .num_resources = ARRAY_SIZE(orion5x_ehci1_resources),
140};
141
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200142void __init orion5x_ehci1_init(void)
143{
144 platform_device_register(&orion5x_ehci1);
145}
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400146
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200147
148/*****************************************************************************
149 * GigE
150 ****************************************************************************/
Lennert Buytenhekd236f5a2008-04-26 14:48:11 -0400151struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = {
152 .dram = &orion5x_mbus_dram_info,
153};
154
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400155static struct resource orion5x_eth_shared_resources[] = {
156 {
157 .start = ORION5X_ETH_PHYS_BASE + 0x2000,
158 .end = ORION5X_ETH_PHYS_BASE + 0x3fff,
159 .flags = IORESOURCE_MEM,
Lennert Buytenhekeeff6d82008-08-26 16:01:21 +0200160 }, {
161 .start = IRQ_ORION5X_ETH_ERR,
162 .end = IRQ_ORION5X_ETH_ERR,
163 .flags = IORESOURCE_IRQ,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400164 },
165};
166
167static struct platform_device orion5x_eth_shared = {
168 .name = MV643XX_ETH_SHARED_NAME,
169 .id = 0,
Lennert Buytenhekd236f5a2008-04-26 14:48:11 -0400170 .dev = {
171 .platform_data = &orion5x_eth_shared_data,
172 },
Lennert Buytenhekeeff6d82008-08-26 16:01:21 +0200173 .num_resources = ARRAY_SIZE(orion5x_eth_shared_resources),
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400174 .resource = orion5x_eth_shared_resources,
175};
176
177static struct resource orion5x_eth_resources[] = {
178 {
179 .name = "eth irq",
180 .start = IRQ_ORION5X_ETH_SUM,
181 .end = IRQ_ORION5X_ETH_SUM,
182 .flags = IORESOURCE_IRQ,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200183 },
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400184};
185
186static struct platform_device orion5x_eth = {
187 .name = MV643XX_ETH_NAME,
188 .id = 0,
189 .num_resources = 1,
190 .resource = orion5x_eth_resources,
191};
192
193void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data)
194{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200195 eth_data->shared = &orion5x_eth_shared;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400196 orion5x_eth.dev.platform_data = eth_data;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200197
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400198 platform_device_register(&orion5x_eth_shared);
199 platform_device_register(&orion5x_eth);
200}
201
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400202
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200203/*****************************************************************************
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200204 * Ethernet switch
205 ****************************************************************************/
206static struct resource orion5x_switch_resources[] = {
207 {
208 .start = 0,
209 .end = 0,
210 .flags = IORESOURCE_IRQ,
211 },
212};
213
214static struct platform_device orion5x_switch_device = {
215 .name = "dsa",
216 .id = 0,
217 .num_resources = 0,
218 .resource = orion5x_switch_resources,
219};
220
221void __init orion5x_eth_switch_init(struct dsa_platform_data *d, int irq)
222{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000223 int i;
224
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200225 if (irq != NO_IRQ) {
226 orion5x_switch_resources[0].start = irq;
227 orion5x_switch_resources[0].end = irq;
228 orion5x_switch_device.num_resources = 1;
229 }
230
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200231 d->netdev = &orion5x_eth.dev;
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000232 for (i = 0; i < d->nr_chips; i++)
233 d->chip[i].mii_bus = &orion5x_eth_shared.dev;
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200234 orion5x_switch_device.dev.platform_data = d;
235
236 platform_device_register(&orion5x_switch_device);
237}
238
239
240/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200241 * I2C
242 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400243static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = {
244 .freq_m = 8, /* assumes 166 MHz TCLK */
245 .freq_n = 3,
246 .timeout = 1000, /* Default timeout of 1 second */
247};
248
249static struct resource orion5x_i2c_resources[] = {
250 {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200251 .name = "i2c base",
252 .start = I2C_PHYS_BASE,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200253 .end = I2C_PHYS_BASE + 0x1f,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200254 .flags = IORESOURCE_MEM,
255 }, {
256 .name = "i2c irq",
257 .start = IRQ_ORION5X_I2C,
258 .end = IRQ_ORION5X_I2C,
259 .flags = IORESOURCE_IRQ,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400260 },
261};
262
263static struct platform_device orion5x_i2c = {
264 .name = MV64XXX_I2C_CTLR_NAME,
265 .id = 0,
266 .num_resources = ARRAY_SIZE(orion5x_i2c_resources),
267 .resource = orion5x_i2c_resources,
268 .dev = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200269 .platform_data = &orion5x_i2c_pdata,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400270 },
271};
272
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200273void __init orion5x_i2c_init(void)
274{
275 platform_device_register(&orion5x_i2c);
276}
277
278
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400279/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200280 * SATA
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400281 ****************************************************************************/
282static struct resource orion5x_sata_resources[] = {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400283 {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200284 .name = "sata base",
285 .start = ORION5X_SATA_PHYS_BASE,
286 .end = ORION5X_SATA_PHYS_BASE + 0x5000 - 1,
287 .flags = IORESOURCE_MEM,
288 }, {
289 .name = "sata irq",
290 .start = IRQ_ORION5X_SATA,
291 .end = IRQ_ORION5X_SATA,
292 .flags = IORESOURCE_IRQ,
293 },
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400294};
295
296static struct platform_device orion5x_sata = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200297 .name = "sata_mv",
298 .id = 0,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400299 .dev = {
300 .coherent_dma_mask = 0xffffffff,
301 },
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200302 .num_resources = ARRAY_SIZE(orion5x_sata_resources),
303 .resource = orion5x_sata_resources,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400304};
305
306void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data)
307{
308 sata_data->dram = &orion5x_mbus_dram_info;
309 orion5x_sata.dev.platform_data = sata_data;
310 platform_device_register(&orion5x_sata);
311}
312
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200313
314/*****************************************************************************
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200315 * SPI
316 ****************************************************************************/
317static struct orion_spi_info orion5x_spi_plat_data = {
Nicolas Pitrec0e19362008-10-19 14:18:25 -0400318 .tclk = 0,
319 .enable_clock_fix = 1,
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200320};
321
322static struct resource orion5x_spi_resources[] = {
323 {
324 .name = "spi base",
325 .start = SPI_PHYS_BASE,
326 .end = SPI_PHYS_BASE + 0x1f,
327 .flags = IORESOURCE_MEM,
328 },
329};
330
331static struct platform_device orion5x_spi = {
332 .name = "orion_spi",
333 .id = 0,
334 .dev = {
335 .platform_data = &orion5x_spi_plat_data,
336 },
337 .num_resources = ARRAY_SIZE(orion5x_spi_resources),
338 .resource = orion5x_spi_resources,
339};
340
341void __init orion5x_spi_init()
342{
343 platform_device_register(&orion5x_spi);
344}
345
346
347/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200348 * UART0
349 ****************************************************************************/
350static struct plat_serial8250_port orion5x_uart0_data[] = {
351 {
352 .mapbase = UART0_PHYS_BASE,
353 .membase = (char *)UART0_VIRT_BASE,
354 .irq = IRQ_ORION5X_UART0,
355 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
356 .iotype = UPIO_MEM,
357 .regshift = 2,
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200358 .uartclk = 0,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200359 }, {
360 },
361};
362
363static struct resource orion5x_uart0_resources[] = {
364 {
365 .start = UART0_PHYS_BASE,
366 .end = UART0_PHYS_BASE + 0xff,
367 .flags = IORESOURCE_MEM,
368 }, {
369 .start = IRQ_ORION5X_UART0,
370 .end = IRQ_ORION5X_UART0,
371 .flags = IORESOURCE_IRQ,
372 },
373};
374
375static struct platform_device orion5x_uart0 = {
376 .name = "serial8250",
377 .id = PLAT8250_DEV_PLATFORM,
378 .dev = {
379 .platform_data = orion5x_uart0_data,
380 },
381 .resource = orion5x_uart0_resources,
382 .num_resources = ARRAY_SIZE(orion5x_uart0_resources),
383};
384
385void __init orion5x_uart0_init(void)
386{
387 platform_device_register(&orion5x_uart0);
388}
389
390
391/*****************************************************************************
392 * UART1
393 ****************************************************************************/
394static struct plat_serial8250_port orion5x_uart1_data[] = {
395 {
396 .mapbase = UART1_PHYS_BASE,
397 .membase = (char *)UART1_VIRT_BASE,
398 .irq = IRQ_ORION5X_UART1,
399 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
400 .iotype = UPIO_MEM,
401 .regshift = 2,
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200402 .uartclk = 0,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200403 }, {
404 },
405};
406
407static struct resource orion5x_uart1_resources[] = {
408 {
409 .start = UART1_PHYS_BASE,
410 .end = UART1_PHYS_BASE + 0xff,
411 .flags = IORESOURCE_MEM,
412 }, {
413 .start = IRQ_ORION5X_UART1,
414 .end = IRQ_ORION5X_UART1,
415 .flags = IORESOURCE_IRQ,
416 },
417};
418
419static struct platform_device orion5x_uart1 = {
420 .name = "serial8250",
421 .id = PLAT8250_DEV_PLATFORM1,
422 .dev = {
423 .platform_data = orion5x_uart1_data,
424 },
425 .resource = orion5x_uart1_resources,
426 .num_resources = ARRAY_SIZE(orion5x_uart1_resources),
427};
428
429void __init orion5x_uart1_init(void)
430{
431 platform_device_register(&orion5x_uart1);
432}
433
434
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400435/*****************************************************************************
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100436 * XOR engine
437 ****************************************************************************/
Saeed Bisharaf45964e2009-03-02 17:30:36 +0200438struct mv_xor_platform_shared_data orion5x_xor_shared_data = {
439 .dram = &orion5x_mbus_dram_info,
440};
441
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100442static struct resource orion5x_xor_shared_resources[] = {
443 {
444 .name = "xor low",
445 .start = ORION5X_XOR_PHYS_BASE,
446 .end = ORION5X_XOR_PHYS_BASE + 0xff,
447 .flags = IORESOURCE_MEM,
448 }, {
449 .name = "xor high",
450 .start = ORION5X_XOR_PHYS_BASE + 0x200,
451 .end = ORION5X_XOR_PHYS_BASE + 0x2ff,
452 .flags = IORESOURCE_MEM,
453 },
454};
455
456static struct platform_device orion5x_xor_shared = {
457 .name = MV_XOR_SHARED_NAME,
458 .id = 0,
Saeed Bisharaf45964e2009-03-02 17:30:36 +0200459 .dev = {
460 .platform_data = &orion5x_xor_shared_data,
461 },
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100462 .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources),
463 .resource = orion5x_xor_shared_resources,
464};
465
466static u64 orion5x_xor_dmamask = DMA_32BIT_MASK;
467
468static struct resource orion5x_xor0_resources[] = {
469 [0] = {
470 .start = IRQ_ORION5X_XOR0,
471 .end = IRQ_ORION5X_XOR0,
472 .flags = IORESOURCE_IRQ,
473 },
474};
475
476static struct mv_xor_platform_data orion5x_xor0_data = {
477 .shared = &orion5x_xor_shared,
478 .hw_id = 0,
479 .pool_size = PAGE_SIZE,
480};
481
482static struct platform_device orion5x_xor0_channel = {
483 .name = MV_XOR_NAME,
484 .id = 0,
485 .num_resources = ARRAY_SIZE(orion5x_xor0_resources),
486 .resource = orion5x_xor0_resources,
487 .dev = {
488 .dma_mask = &orion5x_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700489 .coherent_dma_mask = DMA_BIT_MASK(64),
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100490 .platform_data = (void *)&orion5x_xor0_data,
491 },
492};
493
494static struct resource orion5x_xor1_resources[] = {
495 [0] = {
496 .start = IRQ_ORION5X_XOR1,
497 .end = IRQ_ORION5X_XOR1,
498 .flags = IORESOURCE_IRQ,
499 },
500};
501
502static struct mv_xor_platform_data orion5x_xor1_data = {
503 .shared = &orion5x_xor_shared,
504 .hw_id = 1,
505 .pool_size = PAGE_SIZE,
506};
507
508static struct platform_device orion5x_xor1_channel = {
509 .name = MV_XOR_NAME,
510 .id = 1,
511 .num_resources = ARRAY_SIZE(orion5x_xor1_resources),
512 .resource = orion5x_xor1_resources,
513 .dev = {
514 .dma_mask = &orion5x_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700515 .coherent_dma_mask = DMA_BIT_MASK(64),
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100516 .platform_data = (void *)&orion5x_xor1_data,
517 },
518};
519
520void __init orion5x_xor_init(void)
521{
522 platform_device_register(&orion5x_xor_shared);
523
524 /*
525 * two engines can't do memset simultaneously, this limitation
526 * satisfied by removing memset support from one of the engines.
527 */
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);
531
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);
536}
537
538
539/*****************************************************************************
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800540 * Watchdog
541 ****************************************************************************/
542static struct orion5x_wdt_platform_data orion5x_wdt_data = {
543 .tclk = 0,
544};
545
546static struct platform_device orion5x_wdt_device = {
547 .name = "orion5x_wdt",
548 .id = -1,
549 .dev = {
550 .platform_data = &orion5x_wdt_data,
551 },
552 .num_resources = 0,
553};
554
555void __init orion5x_wdt_init(void)
556{
557 orion5x_wdt_data.tclk = orion5x_tclk;
558 platform_device_register(&orion5x_wdt_device);
559}
560
561
562/*****************************************************************************
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400563 * Time handling
564 ****************************************************************************/
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200565int orion5x_tclk;
566
567int __init orion5x_find_tclk(void)
568{
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200569 u32 dev, rev;
570
571 orion5x_pcie_id(&dev, &rev);
572 if (dev == MV88F6183_DEV_ID &&
573 (readl(MPP_RESET_SAMPLE) & 0x00000200) == 0)
574 return 133333333;
575
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200576 return 166666667;
577}
578
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400579static void orion5x_timer_init(void)
580{
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200581 orion5x_tclk = orion5x_find_tclk();
582 orion_time_init(IRQ_ORION5X_BRIDGE, orion5x_tclk);
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400583}
584
585struct sys_timer orion5x_timer = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200586 .init = orion5x_timer_init,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400587};
588
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200589
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400590/*****************************************************************************
591 * General
592 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400593/*
Lennert Buytenhekb46926b2008-04-25 16:31:32 -0400594 * Identify device ID and rev from PCIe configuration header space '0'.
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400595 */
596static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name)
597{
598 orion5x_pcie_id(dev, rev);
599
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";
Lennert Buytenhekce72e36e2008-08-09 15:17:27 +0200605 } else if (*rev == MV88F5281_REV_D0) {
606 *dev_name = "MV88F5281-D0";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400607 } else {
608 *dev_name = "MV88F5281-Rev-Unsupported";
609 }
610 } else if (*dev == MV88F5182_DEV_ID) {
611 if (*rev == MV88F5182_REV_A2) {
612 *dev_name = "MV88F5182-A2";
613 } else {
614 *dev_name = "MV88F5182-Rev-Unsupported";
615 }
616 } else if (*dev == MV88F5181_DEV_ID) {
617 if (*rev == MV88F5181_REV_B1) {
618 *dev_name = "MV88F5181-Rev-B1";
Lennert Buytenhekd2b2a6b2008-05-31 08:30:40 +0200619 } else if (*rev == MV88F5181L_REV_A1) {
620 *dev_name = "MV88F5181L-Rev-A1";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400621 } else {
Lennert Buytenhekd2b2a6b2008-05-31 08:30:40 +0200622 *dev_name = "MV88F5181(L)-Rev-Unsupported";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400623 }
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200624 } else if (*dev == MV88F6183_DEV_ID) {
625 if (*rev == MV88F6183_REV_B0) {
626 *dev_name = "MV88F6183-Rev-B0";
627 } else {
628 *dev_name = "MV88F6183-Rev-Unsupported";
629 }
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400630 } else {
631 *dev_name = "Device-Unknown";
632 }
633}
634
635void __init orion5x_init(void)
636{
637 char *dev_name;
638 u32 dev, rev;
639
640 orion5x_id(&dev, &rev, &dev_name);
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200641 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk);
642
643 orion5x_eth_shared_data.t_clk = orion5x_tclk;
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200644 orion5x_spi_plat_data.tclk = orion5x_tclk;
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200645 orion5x_uart0_data[0].uartclk = orion5x_tclk;
646 orion5x_uart1_data[0].uartclk = orion5x_tclk;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400647
648 /*
649 * Setup Orion address map
650 */
651 orion5x_setup_cpu_mbus_bridge();
Lennert Buytenhekce72e36e2008-08-09 15:17:27 +0200652
653 /*
654 * Don't issue "Wait for Interrupt" instruction if we are
655 * running on D0 5281 silicon.
656 */
657 if (dev == MV88F5281_DEV_ID && rev == MV88F5281_REV_D0) {
658 printk(KERN_INFO "Orion: Applying 5281 D0 WFI workaround.\n");
659 disable_hlt();
660 }
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800661
662 /*
663 * Register watchdog driver
664 */
665 orion5x_wdt_init();
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400666}
667
668/*
669 * Many orion-based systems have buggy bootloader implementations.
670 * This is a common fixup for bogus memory tags.
671 */
672void __init tag_fixup_mem32(struct machine_desc *mdesc, struct tag *t,
673 char **from, struct meminfo *meminfo)
674{
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)) {
679 printk(KERN_WARNING
680 "Clearing invalid memory bank %dKB@0x%08x\n",
681 t->u.mem.size / 1024, t->u.mem.start);
682 t->hdr.tag = 0;
683 }
684}