blob: 0a623379789f03c4603cc43f33ebabcb2a8759b4 [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>
34#include <plat/time.h>
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040035#include "common.h"
36
37/*****************************************************************************
38 * I/O Address Mapping
39 ****************************************************************************/
40static struct map_desc orion5x_io_desc[] __initdata = {
41 {
42 .virtual = ORION5X_REGS_VIRT_BASE,
43 .pfn = __phys_to_pfn(ORION5X_REGS_PHYS_BASE),
44 .length = ORION5X_REGS_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020045 .type = MT_DEVICE,
46 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040047 .virtual = ORION5X_PCIE_IO_VIRT_BASE,
48 .pfn = __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE),
49 .length = ORION5X_PCIE_IO_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020050 .type = MT_DEVICE,
51 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040052 .virtual = ORION5X_PCI_IO_VIRT_BASE,
53 .pfn = __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE),
54 .length = ORION5X_PCI_IO_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020055 .type = MT_DEVICE,
56 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040057 .virtual = ORION5X_PCIE_WA_VIRT_BASE,
58 .pfn = __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE),
59 .length = ORION5X_PCIE_WA_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020060 .type = MT_DEVICE,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040061 },
62};
63
64void __init orion5x_map_io(void)
65{
66 iotable_init(orion5x_io_desc, ARRAY_SIZE(orion5x_io_desc));
67}
68
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020069
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040070/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020071 * EHCI
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040072 ****************************************************************************/
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020073static struct orion_ehci_data orion5x_ehci_data = {
74 .dram = &orion5x_mbus_dram_info,
Ronen Shitritfb6f5522008-09-17 10:08:05 +030075 .phy_version = EHCI_PHY_ORION,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040076};
77
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020078static u64 ehci_dmamask = 0xffffffffUL;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040079
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040080
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020081/*****************************************************************************
82 * EHCI0
83 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040084static struct resource orion5x_ehci0_resources[] = {
85 {
86 .start = ORION5X_USB0_PHYS_BASE,
Lennert Buytenhek994cab82008-04-25 16:30:21 -040087 .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040088 .flags = IORESOURCE_MEM,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020089 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040090 .start = IRQ_ORION5X_USB0_CTRL,
91 .end = IRQ_ORION5X_USB0_CTRL,
92 .flags = IORESOURCE_IRQ,
93 },
94};
95
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040096static struct platform_device orion5x_ehci0 = {
97 .name = "orion-ehci",
98 .id = 0,
99 .dev = {
100 .dma_mask = &ehci_dmamask,
101 .coherent_dma_mask = 0xffffffff,
102 .platform_data = &orion5x_ehci_data,
103 },
104 .resource = orion5x_ehci0_resources,
105 .num_resources = ARRAY_SIZE(orion5x_ehci0_resources),
106};
107
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200108void __init orion5x_ehci0_init(void)
109{
110 platform_device_register(&orion5x_ehci0);
111}
112
113
114/*****************************************************************************
115 * EHCI1
116 ****************************************************************************/
117static struct resource orion5x_ehci1_resources[] = {
118 {
119 .start = ORION5X_USB1_PHYS_BASE,
120 .end = ORION5X_USB1_PHYS_BASE + SZ_4K - 1,
121 .flags = IORESOURCE_MEM,
122 }, {
123 .start = IRQ_ORION5X_USB1_CTRL,
124 .end = IRQ_ORION5X_USB1_CTRL,
125 .flags = IORESOURCE_IRQ,
126 },
127};
128
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400129static struct platform_device orion5x_ehci1 = {
130 .name = "orion-ehci",
131 .id = 1,
132 .dev = {
133 .dma_mask = &ehci_dmamask,
134 .coherent_dma_mask = 0xffffffff,
135 .platform_data = &orion5x_ehci_data,
136 },
137 .resource = orion5x_ehci1_resources,
138 .num_resources = ARRAY_SIZE(orion5x_ehci1_resources),
139};
140
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200141void __init orion5x_ehci1_init(void)
142{
143 platform_device_register(&orion5x_ehci1);
144}
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400145
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200146
147/*****************************************************************************
148 * GigE
149 ****************************************************************************/
Lennert Buytenhekd236f5a2008-04-26 14:48:11 -0400150struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = {
151 .dram = &orion5x_mbus_dram_info,
152};
153
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400154static struct resource orion5x_eth_shared_resources[] = {
155 {
156 .start = ORION5X_ETH_PHYS_BASE + 0x2000,
157 .end = ORION5X_ETH_PHYS_BASE + 0x3fff,
158 .flags = IORESOURCE_MEM,
Lennert Buytenhekeeff6d82008-08-26 16:01:21 +0200159 }, {
160 .start = IRQ_ORION5X_ETH_ERR,
161 .end = IRQ_ORION5X_ETH_ERR,
162 .flags = IORESOURCE_IRQ,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400163 },
164};
165
166static struct platform_device orion5x_eth_shared = {
167 .name = MV643XX_ETH_SHARED_NAME,
168 .id = 0,
Lennert Buytenhekd236f5a2008-04-26 14:48:11 -0400169 .dev = {
170 .platform_data = &orion5x_eth_shared_data,
171 },
Lennert Buytenhekeeff6d82008-08-26 16:01:21 +0200172 .num_resources = ARRAY_SIZE(orion5x_eth_shared_resources),
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400173 .resource = orion5x_eth_shared_resources,
174};
175
176static struct resource orion5x_eth_resources[] = {
177 {
178 .name = "eth irq",
179 .start = IRQ_ORION5X_ETH_SUM,
180 .end = IRQ_ORION5X_ETH_SUM,
181 .flags = IORESOURCE_IRQ,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200182 },
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400183};
184
185static struct platform_device orion5x_eth = {
186 .name = MV643XX_ETH_NAME,
187 .id = 0,
188 .num_resources = 1,
189 .resource = orion5x_eth_resources,
190};
191
192void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data)
193{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200194 eth_data->shared = &orion5x_eth_shared;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400195 orion5x_eth.dev.platform_data = eth_data;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200196
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400197 platform_device_register(&orion5x_eth_shared);
198 platform_device_register(&orion5x_eth);
199}
200
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400201
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200202/*****************************************************************************
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200203 * Ethernet switch
204 ****************************************************************************/
205static struct resource orion5x_switch_resources[] = {
206 {
207 .start = 0,
208 .end = 0,
209 .flags = IORESOURCE_IRQ,
210 },
211};
212
213static struct platform_device orion5x_switch_device = {
214 .name = "dsa",
215 .id = 0,
216 .num_resources = 0,
217 .resource = orion5x_switch_resources,
218};
219
220void __init orion5x_eth_switch_init(struct dsa_platform_data *d, int irq)
221{
222 if (irq != NO_IRQ) {
223 orion5x_switch_resources[0].start = irq;
224 orion5x_switch_resources[0].end = irq;
225 orion5x_switch_device.num_resources = 1;
226 }
227
228 d->mii_bus = &orion5x_eth_shared.dev;
229 d->netdev = &orion5x_eth.dev;
230 orion5x_switch_device.dev.platform_data = d;
231
232 platform_device_register(&orion5x_switch_device);
233}
234
235
236/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200237 * I2C
238 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400239static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = {
240 .freq_m = 8, /* assumes 166 MHz TCLK */
241 .freq_n = 3,
242 .timeout = 1000, /* Default timeout of 1 second */
243};
244
245static struct resource orion5x_i2c_resources[] = {
246 {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200247 .name = "i2c base",
248 .start = I2C_PHYS_BASE,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200249 .end = I2C_PHYS_BASE + 0x1f,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200250 .flags = IORESOURCE_MEM,
251 }, {
252 .name = "i2c irq",
253 .start = IRQ_ORION5X_I2C,
254 .end = IRQ_ORION5X_I2C,
255 .flags = IORESOURCE_IRQ,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400256 },
257};
258
259static struct platform_device orion5x_i2c = {
260 .name = MV64XXX_I2C_CTLR_NAME,
261 .id = 0,
262 .num_resources = ARRAY_SIZE(orion5x_i2c_resources),
263 .resource = orion5x_i2c_resources,
264 .dev = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200265 .platform_data = &orion5x_i2c_pdata,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400266 },
267};
268
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200269void __init orion5x_i2c_init(void)
270{
271 platform_device_register(&orion5x_i2c);
272}
273
274
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400275/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200276 * SATA
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400277 ****************************************************************************/
278static struct resource orion5x_sata_resources[] = {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400279 {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200280 .name = "sata base",
281 .start = ORION5X_SATA_PHYS_BASE,
282 .end = ORION5X_SATA_PHYS_BASE + 0x5000 - 1,
283 .flags = IORESOURCE_MEM,
284 }, {
285 .name = "sata irq",
286 .start = IRQ_ORION5X_SATA,
287 .end = IRQ_ORION5X_SATA,
288 .flags = IORESOURCE_IRQ,
289 },
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400290};
291
292static struct platform_device orion5x_sata = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200293 .name = "sata_mv",
294 .id = 0,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400295 .dev = {
296 .coherent_dma_mask = 0xffffffff,
297 },
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200298 .num_resources = ARRAY_SIZE(orion5x_sata_resources),
299 .resource = orion5x_sata_resources,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400300};
301
302void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data)
303{
304 sata_data->dram = &orion5x_mbus_dram_info;
305 orion5x_sata.dev.platform_data = sata_data;
306 platform_device_register(&orion5x_sata);
307}
308
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200309
310/*****************************************************************************
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200311 * SPI
312 ****************************************************************************/
313static struct orion_spi_info orion5x_spi_plat_data = {
Nicolas Pitrec0e19362008-10-19 14:18:25 -0400314 .tclk = 0,
315 .enable_clock_fix = 1,
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200316};
317
318static struct resource orion5x_spi_resources[] = {
319 {
320 .name = "spi base",
321 .start = SPI_PHYS_BASE,
322 .end = SPI_PHYS_BASE + 0x1f,
323 .flags = IORESOURCE_MEM,
324 },
325};
326
327static struct platform_device orion5x_spi = {
328 .name = "orion_spi",
329 .id = 0,
330 .dev = {
331 .platform_data = &orion5x_spi_plat_data,
332 },
333 .num_resources = ARRAY_SIZE(orion5x_spi_resources),
334 .resource = orion5x_spi_resources,
335};
336
337void __init orion5x_spi_init()
338{
339 platform_device_register(&orion5x_spi);
340}
341
342
343/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200344 * UART0
345 ****************************************************************************/
346static struct plat_serial8250_port orion5x_uart0_data[] = {
347 {
348 .mapbase = UART0_PHYS_BASE,
349 .membase = (char *)UART0_VIRT_BASE,
350 .irq = IRQ_ORION5X_UART0,
351 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
352 .iotype = UPIO_MEM,
353 .regshift = 2,
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200354 .uartclk = 0,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200355 }, {
356 },
357};
358
359static struct resource orion5x_uart0_resources[] = {
360 {
361 .start = UART0_PHYS_BASE,
362 .end = UART0_PHYS_BASE + 0xff,
363 .flags = IORESOURCE_MEM,
364 }, {
365 .start = IRQ_ORION5X_UART0,
366 .end = IRQ_ORION5X_UART0,
367 .flags = IORESOURCE_IRQ,
368 },
369};
370
371static struct platform_device orion5x_uart0 = {
372 .name = "serial8250",
373 .id = PLAT8250_DEV_PLATFORM,
374 .dev = {
375 .platform_data = orion5x_uart0_data,
376 },
377 .resource = orion5x_uart0_resources,
378 .num_resources = ARRAY_SIZE(orion5x_uart0_resources),
379};
380
381void __init orion5x_uart0_init(void)
382{
383 platform_device_register(&orion5x_uart0);
384}
385
386
387/*****************************************************************************
388 * UART1
389 ****************************************************************************/
390static struct plat_serial8250_port orion5x_uart1_data[] = {
391 {
392 .mapbase = UART1_PHYS_BASE,
393 .membase = (char *)UART1_VIRT_BASE,
394 .irq = IRQ_ORION5X_UART1,
395 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
396 .iotype = UPIO_MEM,
397 .regshift = 2,
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200398 .uartclk = 0,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200399 }, {
400 },
401};
402
403static struct resource orion5x_uart1_resources[] = {
404 {
405 .start = UART1_PHYS_BASE,
406 .end = UART1_PHYS_BASE + 0xff,
407 .flags = IORESOURCE_MEM,
408 }, {
409 .start = IRQ_ORION5X_UART1,
410 .end = IRQ_ORION5X_UART1,
411 .flags = IORESOURCE_IRQ,
412 },
413};
414
415static struct platform_device orion5x_uart1 = {
416 .name = "serial8250",
417 .id = PLAT8250_DEV_PLATFORM1,
418 .dev = {
419 .platform_data = orion5x_uart1_data,
420 },
421 .resource = orion5x_uart1_resources,
422 .num_resources = ARRAY_SIZE(orion5x_uart1_resources),
423};
424
425void __init orion5x_uart1_init(void)
426{
427 platform_device_register(&orion5x_uart1);
428}
429
430
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400431/*****************************************************************************
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100432 * XOR engine
433 ****************************************************************************/
434static struct resource orion5x_xor_shared_resources[] = {
435 {
436 .name = "xor low",
437 .start = ORION5X_XOR_PHYS_BASE,
438 .end = ORION5X_XOR_PHYS_BASE + 0xff,
439 .flags = IORESOURCE_MEM,
440 }, {
441 .name = "xor high",
442 .start = ORION5X_XOR_PHYS_BASE + 0x200,
443 .end = ORION5X_XOR_PHYS_BASE + 0x2ff,
444 .flags = IORESOURCE_MEM,
445 },
446};
447
448static struct platform_device orion5x_xor_shared = {
449 .name = MV_XOR_SHARED_NAME,
450 .id = 0,
451 .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources),
452 .resource = orion5x_xor_shared_resources,
453};
454
455static u64 orion5x_xor_dmamask = DMA_32BIT_MASK;
456
457static struct resource orion5x_xor0_resources[] = {
458 [0] = {
459 .start = IRQ_ORION5X_XOR0,
460 .end = IRQ_ORION5X_XOR0,
461 .flags = IORESOURCE_IRQ,
462 },
463};
464
465static struct mv_xor_platform_data orion5x_xor0_data = {
466 .shared = &orion5x_xor_shared,
467 .hw_id = 0,
468 .pool_size = PAGE_SIZE,
469};
470
471static struct platform_device orion5x_xor0_channel = {
472 .name = MV_XOR_NAME,
473 .id = 0,
474 .num_resources = ARRAY_SIZE(orion5x_xor0_resources),
475 .resource = orion5x_xor0_resources,
476 .dev = {
477 .dma_mask = &orion5x_xor_dmamask,
478 .coherent_dma_mask = DMA_64BIT_MASK,
479 .platform_data = (void *)&orion5x_xor0_data,
480 },
481};
482
483static struct resource orion5x_xor1_resources[] = {
484 [0] = {
485 .start = IRQ_ORION5X_XOR1,
486 .end = IRQ_ORION5X_XOR1,
487 .flags = IORESOURCE_IRQ,
488 },
489};
490
491static struct mv_xor_platform_data orion5x_xor1_data = {
492 .shared = &orion5x_xor_shared,
493 .hw_id = 1,
494 .pool_size = PAGE_SIZE,
495};
496
497static struct platform_device orion5x_xor1_channel = {
498 .name = MV_XOR_NAME,
499 .id = 1,
500 .num_resources = ARRAY_SIZE(orion5x_xor1_resources),
501 .resource = orion5x_xor1_resources,
502 .dev = {
503 .dma_mask = &orion5x_xor_dmamask,
504 .coherent_dma_mask = DMA_64BIT_MASK,
505 .platform_data = (void *)&orion5x_xor1_data,
506 },
507};
508
509void __init orion5x_xor_init(void)
510{
511 platform_device_register(&orion5x_xor_shared);
512
513 /*
514 * two engines can't do memset simultaneously, this limitation
515 * satisfied by removing memset support from one of the engines.
516 */
517 dma_cap_set(DMA_MEMCPY, orion5x_xor0_data.cap_mask);
518 dma_cap_set(DMA_XOR, orion5x_xor0_data.cap_mask);
519 platform_device_register(&orion5x_xor0_channel);
520
521 dma_cap_set(DMA_MEMCPY, orion5x_xor1_data.cap_mask);
522 dma_cap_set(DMA_MEMSET, orion5x_xor1_data.cap_mask);
523 dma_cap_set(DMA_XOR, orion5x_xor1_data.cap_mask);
524 platform_device_register(&orion5x_xor1_channel);
525}
526
527
528/*****************************************************************************
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400529 * Time handling
530 ****************************************************************************/
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200531int orion5x_tclk;
532
533int __init orion5x_find_tclk(void)
534{
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200535 u32 dev, rev;
536
537 orion5x_pcie_id(&dev, &rev);
538 if (dev == MV88F6183_DEV_ID &&
539 (readl(MPP_RESET_SAMPLE) & 0x00000200) == 0)
540 return 133333333;
541
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200542 return 166666667;
543}
544
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400545static void orion5x_timer_init(void)
546{
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200547 orion5x_tclk = orion5x_find_tclk();
548 orion_time_init(IRQ_ORION5X_BRIDGE, orion5x_tclk);
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400549}
550
551struct sys_timer orion5x_timer = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200552 .init = orion5x_timer_init,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400553};
554
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200555
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400556/*****************************************************************************
557 * General
558 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400559/*
Lennert Buytenhekb46926b2008-04-25 16:31:32 -0400560 * Identify device ID and rev from PCIe configuration header space '0'.
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400561 */
562static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name)
563{
564 orion5x_pcie_id(dev, rev);
565
566 if (*dev == MV88F5281_DEV_ID) {
567 if (*rev == MV88F5281_REV_D2) {
568 *dev_name = "MV88F5281-D2";
569 } else if (*rev == MV88F5281_REV_D1) {
570 *dev_name = "MV88F5281-D1";
Lennert Buytenhekce72e36e2008-08-09 15:17:27 +0200571 } else if (*rev == MV88F5281_REV_D0) {
572 *dev_name = "MV88F5281-D0";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400573 } else {
574 *dev_name = "MV88F5281-Rev-Unsupported";
575 }
576 } else if (*dev == MV88F5182_DEV_ID) {
577 if (*rev == MV88F5182_REV_A2) {
578 *dev_name = "MV88F5182-A2";
579 } else {
580 *dev_name = "MV88F5182-Rev-Unsupported";
581 }
582 } else if (*dev == MV88F5181_DEV_ID) {
583 if (*rev == MV88F5181_REV_B1) {
584 *dev_name = "MV88F5181-Rev-B1";
Lennert Buytenhekd2b2a6b2008-05-31 08:30:40 +0200585 } else if (*rev == MV88F5181L_REV_A1) {
586 *dev_name = "MV88F5181L-Rev-A1";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400587 } else {
Lennert Buytenhekd2b2a6b2008-05-31 08:30:40 +0200588 *dev_name = "MV88F5181(L)-Rev-Unsupported";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400589 }
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200590 } else if (*dev == MV88F6183_DEV_ID) {
591 if (*rev == MV88F6183_REV_B0) {
592 *dev_name = "MV88F6183-Rev-B0";
593 } else {
594 *dev_name = "MV88F6183-Rev-Unsupported";
595 }
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400596 } else {
597 *dev_name = "Device-Unknown";
598 }
599}
600
601void __init orion5x_init(void)
602{
603 char *dev_name;
604 u32 dev, rev;
605
606 orion5x_id(&dev, &rev, &dev_name);
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200607 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk);
608
609 orion5x_eth_shared_data.t_clk = orion5x_tclk;
Lennert Buytenhekd323ade2008-08-29 06:55:06 +0200610 orion5x_spi_plat_data.tclk = orion5x_tclk;
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200611 orion5x_uart0_data[0].uartclk = orion5x_tclk;
612 orion5x_uart1_data[0].uartclk = orion5x_tclk;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400613
614 /*
615 * Setup Orion address map
616 */
617 orion5x_setup_cpu_mbus_bridge();
Lennert Buytenhekce72e36e2008-08-09 15:17:27 +0200618
619 /*
620 * Don't issue "Wait for Interrupt" instruction if we are
621 * running on D0 5281 silicon.
622 */
623 if (dev == MV88F5281_DEV_ID && rev == MV88F5281_REV_D0) {
624 printk(KERN_INFO "Orion: Applying 5281 D0 WFI workaround.\n");
625 disable_hlt();
626 }
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400627}
628
629/*
630 * Many orion-based systems have buggy bootloader implementations.
631 * This is a common fixup for bogus memory tags.
632 */
633void __init tag_fixup_mem32(struct machine_desc *mdesc, struct tag *t,
634 char **from, struct meminfo *meminfo)
635{
636 for (; t->hdr.size; t = tag_next(t))
637 if (t->hdr.tag == ATAG_MEM &&
638 (!t->u.mem.size || t->u.mem.size & ~PAGE_MASK ||
639 t->u.mem.start & ~PAGE_MASK)) {
640 printk(KERN_WARNING
641 "Clearing invalid memory bank %dKB@0x%08x\n",
642 t->u.mem.size / 1024, t->u.mem.start);
643 t->hdr.tag = 0;
644 }
645}