[WATCHDOG] rc32434_wdt: make sure watchdog is not running at startup
[deliverable/linux.git] / arch / arm / mach-orion5x / common.c
CommitLineData
585cf175 1/*
9dd0b194 2 * arch/arm/mach-orion5x/common.c
585cf175 3 *
9dd0b194 4 * Core functions for Marvell Orion 5x SoCs
585cf175
TP
5 *
6 * Maintainer: Tzachi Perelstein <tzachi@marvell.com>
7 *
159ffb3a
LB
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
585cf175
TP
10 * warranty of any kind, whether express or implied.
11 */
12
13#include <linux/kernel.h>
14#include <linux/init.h>
ca26f7d3
TP
15#include <linux/platform_device.h>
16#include <linux/serial_8250.h>
83b6d822 17#include <linux/mbus.h>
e07c9d85 18#include <linux/mv643xx_eth.h>
144aa3db 19#include <linux/mv643xx_i2c.h>
15a32632 20#include <linux/ata_platform.h>
d323ade1 21#include <linux/spi/orion_spi.h>
dcf1cece 22#include <net/dsa.h>
585cf175 23#include <asm/page.h>
be73a347 24#include <asm/setup.h>
c67de5b3 25#include <asm/timex.h>
be73a347 26#include <asm/mach/arch.h>
585cf175 27#include <asm/mach/map.h>
2bac1de2 28#include <asm/mach/time.h>
a09e64fb
RK
29#include <mach/hardware.h>
30#include <mach/orion5x.h>
6f088f1d 31#include <plat/ehci-orion.h>
1d5a1a6e 32#include <plat/mv_xor.h>
6f088f1d
LB
33#include <plat/orion_nand.h>
34#include <plat/time.h>
585cf175
TP
35#include "common.h"
36
37/*****************************************************************************
38 * I/O Address Mapping
39 ****************************************************************************/
9dd0b194 40static struct map_desc orion5x_io_desc[] __initdata = {
585cf175 41 {
9dd0b194
LB
42 .virtual = ORION5X_REGS_VIRT_BASE,
43 .pfn = __phys_to_pfn(ORION5X_REGS_PHYS_BASE),
44 .length = ORION5X_REGS_SIZE,
e7068ad3
LB
45 .type = MT_DEVICE,
46 }, {
9dd0b194
LB
47 .virtual = ORION5X_PCIE_IO_VIRT_BASE,
48 .pfn = __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE),
49 .length = ORION5X_PCIE_IO_SIZE,
e7068ad3
LB
50 .type = MT_DEVICE,
51 }, {
9dd0b194
LB
52 .virtual = ORION5X_PCI_IO_VIRT_BASE,
53 .pfn = __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE),
54 .length = ORION5X_PCI_IO_SIZE,
e7068ad3
LB
55 .type = MT_DEVICE,
56 }, {
9dd0b194
LB
57 .virtual = ORION5X_PCIE_WA_VIRT_BASE,
58 .pfn = __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE),
59 .length = ORION5X_PCIE_WA_SIZE,
e7068ad3 60 .type = MT_DEVICE,
585cf175
TP
61 },
62};
63
9dd0b194 64void __init orion5x_map_io(void)
585cf175 65{
9dd0b194 66 iotable_init(orion5x_io_desc, ARRAY_SIZE(orion5x_io_desc));
585cf175 67}
c67de5b3 68
044f6c7c 69
ca26f7d3 70/*****************************************************************************
044f6c7c 71 * EHCI
ca26f7d3 72 ****************************************************************************/
044f6c7c
LB
73static struct orion_ehci_data orion5x_ehci_data = {
74 .dram = &orion5x_mbus_dram_info,
fb6f5529 75 .phy_version = EHCI_PHY_ORION,
ca26f7d3
TP
76};
77
044f6c7c 78static u64 ehci_dmamask = 0xffffffffUL;
ca26f7d3 79
ca26f7d3 80
044f6c7c
LB
81/*****************************************************************************
82 * EHCI0
83 ****************************************************************************/
9dd0b194 84static struct resource orion5x_ehci0_resources[] = {
ca26f7d3 85 {
9dd0b194 86 .start = ORION5X_USB0_PHYS_BASE,
994cab84 87 .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1,
ca26f7d3 88 .flags = IORESOURCE_MEM,
e7068ad3 89 }, {
9dd0b194
LB
90 .start = IRQ_ORION5X_USB0_CTRL,
91 .end = IRQ_ORION5X_USB0_CTRL,
ca26f7d3
TP
92 .flags = IORESOURCE_IRQ,
93 },
94};
95
9dd0b194 96static struct platform_device orion5x_ehci0 = {
ca26f7d3
TP
97 .name = "orion-ehci",
98 .id = 0,
99 .dev = {
100 .dma_mask = &ehci_dmamask,
101 .coherent_dma_mask = 0xffffffff,
9dd0b194 102 .platform_data = &orion5x_ehci_data,
ca26f7d3 103 },
9dd0b194
LB
104 .resource = orion5x_ehci0_resources,
105 .num_resources = ARRAY_SIZE(orion5x_ehci0_resources),
ca26f7d3
TP
106};
107
044f6c7c
LB
108void __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
9dd0b194 129static struct platform_device orion5x_ehci1 = {
ca26f7d3
TP
130 .name = "orion-ehci",
131 .id = 1,
132 .dev = {
133 .dma_mask = &ehci_dmamask,
134 .coherent_dma_mask = 0xffffffff,
9dd0b194 135 .platform_data = &orion5x_ehci_data,
ca26f7d3 136 },
9dd0b194
LB
137 .resource = orion5x_ehci1_resources,
138 .num_resources = ARRAY_SIZE(orion5x_ehci1_resources),
ca26f7d3
TP
139};
140
044f6c7c
LB
141void __init orion5x_ehci1_init(void)
142{
143 platform_device_register(&orion5x_ehci1);
144}
145
146
e07c9d85 147/*****************************************************************************
044f6c7c 148 * GigE
e07c9d85 149 ****************************************************************************/
d236f5a5
LB
150struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = {
151 .dram = &orion5x_mbus_dram_info,
152};
153
9dd0b194 154static struct resource orion5x_eth_shared_resources[] = {
e07c9d85 155 {
9dd0b194
LB
156 .start = ORION5X_ETH_PHYS_BASE + 0x2000,
157 .end = ORION5X_ETH_PHYS_BASE + 0x3fff,
e07c9d85 158 .flags = IORESOURCE_MEM,
eeff6d86
LB
159 }, {
160 .start = IRQ_ORION5X_ETH_ERR,
161 .end = IRQ_ORION5X_ETH_ERR,
162 .flags = IORESOURCE_IRQ,
e07c9d85
TP
163 },
164};
165
9dd0b194 166static struct platform_device orion5x_eth_shared = {
e07c9d85
TP
167 .name = MV643XX_ETH_SHARED_NAME,
168 .id = 0,
d236f5a5
LB
169 .dev = {
170 .platform_data = &orion5x_eth_shared_data,
171 },
eeff6d86 172 .num_resources = ARRAY_SIZE(orion5x_eth_shared_resources),
9dd0b194 173 .resource = orion5x_eth_shared_resources,
e07c9d85
TP
174};
175
9dd0b194 176static struct resource orion5x_eth_resources[] = {
e07c9d85
TP
177 {
178 .name = "eth irq",
9dd0b194
LB
179 .start = IRQ_ORION5X_ETH_SUM,
180 .end = IRQ_ORION5X_ETH_SUM,
e07c9d85 181 .flags = IORESOURCE_IRQ,
e7068ad3 182 },
e07c9d85
TP
183};
184
9dd0b194 185static struct platform_device orion5x_eth = {
e07c9d85
TP
186 .name = MV643XX_ETH_NAME,
187 .id = 0,
188 .num_resources = 1,
9dd0b194 189 .resource = orion5x_eth_resources,
e07c9d85
TP
190};
191
9dd0b194 192void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data)
e07c9d85 193{
fa3959f4 194 eth_data->shared = &orion5x_eth_shared;
9dd0b194 195 orion5x_eth.dev.platform_data = eth_data;
fa3959f4 196
9dd0b194
LB
197 platform_device_register(&orion5x_eth_shared);
198 platform_device_register(&orion5x_eth);
e07c9d85
TP
199}
200
044f6c7c 201
dcf1cece
LB
202/*****************************************************************************
203 * 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
144aa3db 236/*****************************************************************************
044f6c7c 237 * I2C
144aa3db 238 ****************************************************************************/
9dd0b194 239static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = {
144aa3db
HVR
240 .freq_m = 8, /* assumes 166 MHz TCLK */
241 .freq_n = 3,
242 .timeout = 1000, /* Default timeout of 1 second */
243};
244
9dd0b194 245static struct resource orion5x_i2c_resources[] = {
144aa3db 246 {
e7068ad3
LB
247 .name = "i2c base",
248 .start = I2C_PHYS_BASE,
044f6c7c 249 .end = I2C_PHYS_BASE + 0x1f,
e7068ad3
LB
250 .flags = IORESOURCE_MEM,
251 }, {
252 .name = "i2c irq",
253 .start = IRQ_ORION5X_I2C,
254 .end = IRQ_ORION5X_I2C,
255 .flags = IORESOURCE_IRQ,
144aa3db
HVR
256 },
257};
258
9dd0b194 259static struct platform_device orion5x_i2c = {
144aa3db
HVR
260 .name = MV64XXX_I2C_CTLR_NAME,
261 .id = 0,
9dd0b194
LB
262 .num_resources = ARRAY_SIZE(orion5x_i2c_resources),
263 .resource = orion5x_i2c_resources,
144aa3db 264 .dev = {
e7068ad3 265 .platform_data = &orion5x_i2c_pdata,
144aa3db
HVR
266 },
267};
268
044f6c7c
LB
269void __init orion5x_i2c_init(void)
270{
271 platform_device_register(&orion5x_i2c);
272}
273
274
f244baa3 275/*****************************************************************************
044f6c7c 276 * SATA
f244baa3 277 ****************************************************************************/
9dd0b194 278static struct resource orion5x_sata_resources[] = {
f244baa3 279 {
e7068ad3
LB
280 .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 },
f244baa3
SB
290};
291
9dd0b194 292static struct platform_device orion5x_sata = {
e7068ad3
LB
293 .name = "sata_mv",
294 .id = 0,
f244baa3
SB
295 .dev = {
296 .coherent_dma_mask = 0xffffffff,
297 },
e7068ad3
LB
298 .num_resources = ARRAY_SIZE(orion5x_sata_resources),
299 .resource = orion5x_sata_resources,
f244baa3
SB
300};
301
9dd0b194 302void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data)
f244baa3 303{
9dd0b194
LB
304 sata_data->dram = &orion5x_mbus_dram_info;
305 orion5x_sata.dev.platform_data = sata_data;
306 platform_device_register(&orion5x_sata);
f244baa3
SB
307}
308
044f6c7c 309
d323ade1
LB
310/*****************************************************************************
311 * SPI
312 ****************************************************************************/
313static struct orion_spi_info orion5x_spi_plat_data = {
c0e19363
NP
314 .tclk = 0,
315 .enable_clock_fix = 1,
d323ade1
LB
316};
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
2bac1de2 343/*****************************************************************************
044f6c7c
LB
344 * 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,
ebe35aff 354 .uartclk = 0,
044f6c7c
LB
355 }, {
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
2bac1de2 389 ****************************************************************************/
044f6c7c
LB
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,
ebe35aff 398 .uartclk = 0,
044f6c7c
LB
399 }, {
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}
2bac1de2 429
044f6c7c 430
1d5a1a6e
SB
431/*****************************************************************************
432 * XOR engine
433 ****************************************************************************/
f45964ed
SB
434struct mv_xor_platform_shared_data orion5x_xor_shared_data = {
435 .dram = &orion5x_mbus_dram_info,
436};
437
1d5a1a6e
SB
438static struct resource orion5x_xor_shared_resources[] = {
439 {
440 .name = "xor low",
441 .start = ORION5X_XOR_PHYS_BASE,
442 .end = ORION5X_XOR_PHYS_BASE + 0xff,
443 .flags = IORESOURCE_MEM,
444 }, {
445 .name = "xor high",
446 .start = ORION5X_XOR_PHYS_BASE + 0x200,
447 .end = ORION5X_XOR_PHYS_BASE + 0x2ff,
448 .flags = IORESOURCE_MEM,
449 },
450};
451
452static struct platform_device orion5x_xor_shared = {
453 .name = MV_XOR_SHARED_NAME,
454 .id = 0,
f45964ed
SB
455 .dev = {
456 .platform_data = &orion5x_xor_shared_data,
457 },
1d5a1a6e
SB
458 .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources),
459 .resource = orion5x_xor_shared_resources,
460};
461
462static u64 orion5x_xor_dmamask = DMA_32BIT_MASK;
463
464static struct resource orion5x_xor0_resources[] = {
465 [0] = {
466 .start = IRQ_ORION5X_XOR0,
467 .end = IRQ_ORION5X_XOR0,
468 .flags = IORESOURCE_IRQ,
469 },
470};
471
472static struct mv_xor_platform_data orion5x_xor0_data = {
473 .shared = &orion5x_xor_shared,
474 .hw_id = 0,
475 .pool_size = PAGE_SIZE,
476};
477
478static struct platform_device orion5x_xor0_channel = {
479 .name = MV_XOR_NAME,
480 .id = 0,
481 .num_resources = ARRAY_SIZE(orion5x_xor0_resources),
482 .resource = orion5x_xor0_resources,
483 .dev = {
484 .dma_mask = &orion5x_xor_dmamask,
485 .coherent_dma_mask = DMA_64BIT_MASK,
486 .platform_data = (void *)&orion5x_xor0_data,
487 },
488};
489
490static struct resource orion5x_xor1_resources[] = {
491 [0] = {
492 .start = IRQ_ORION5X_XOR1,
493 .end = IRQ_ORION5X_XOR1,
494 .flags = IORESOURCE_IRQ,
495 },
496};
497
498static struct mv_xor_platform_data orion5x_xor1_data = {
499 .shared = &orion5x_xor_shared,
500 .hw_id = 1,
501 .pool_size = PAGE_SIZE,
502};
503
504static struct platform_device orion5x_xor1_channel = {
505 .name = MV_XOR_NAME,
506 .id = 1,
507 .num_resources = ARRAY_SIZE(orion5x_xor1_resources),
508 .resource = orion5x_xor1_resources,
509 .dev = {
510 .dma_mask = &orion5x_xor_dmamask,
511 .coherent_dma_mask = DMA_64BIT_MASK,
512 .platform_data = (void *)&orion5x_xor1_data,
513 },
514};
515
516void __init orion5x_xor_init(void)
517{
518 platform_device_register(&orion5x_xor_shared);
519
520 /*
521 * two engines can't do memset simultaneously, this limitation
522 * satisfied by removing memset support from one of the engines.
523 */
524 dma_cap_set(DMA_MEMCPY, orion5x_xor0_data.cap_mask);
525 dma_cap_set(DMA_XOR, orion5x_xor0_data.cap_mask);
526 platform_device_register(&orion5x_xor0_channel);
527
528 dma_cap_set(DMA_MEMCPY, orion5x_xor1_data.cap_mask);
529 dma_cap_set(DMA_MEMSET, orion5x_xor1_data.cap_mask);
530 dma_cap_set(DMA_XOR, orion5x_xor1_data.cap_mask);
531 platform_device_register(&orion5x_xor1_channel);
532}
533
534
044f6c7c
LB
535/*****************************************************************************
536 * Time handling
537 ****************************************************************************/
ebe35aff
LB
538int orion5x_tclk;
539
540int __init orion5x_find_tclk(void)
541{
d323ade1
LB
542 u32 dev, rev;
543
544 orion5x_pcie_id(&dev, &rev);
545 if (dev == MV88F6183_DEV_ID &&
546 (readl(MPP_RESET_SAMPLE) & 0x00000200) == 0)
547 return 133333333;
548
ebe35aff
LB
549 return 166666667;
550}
551
9dd0b194 552static void orion5x_timer_init(void)
2bac1de2 553{
ebe35aff
LB
554 orion5x_tclk = orion5x_find_tclk();
555 orion_time_init(IRQ_ORION5X_BRIDGE, orion5x_tclk);
2bac1de2
LB
556}
557
9dd0b194 558struct sys_timer orion5x_timer = {
e7068ad3 559 .init = orion5x_timer_init,
2bac1de2
LB
560};
561
044f6c7c 562
c67de5b3
TP
563/*****************************************************************************
564 * General
565 ****************************************************************************/
c67de5b3 566/*
b46926bb 567 * Identify device ID and rev from PCIe configuration header space '0'.
c67de5b3 568 */
9dd0b194 569static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name)
c67de5b3 570{
9dd0b194 571 orion5x_pcie_id(dev, rev);
c67de5b3
TP
572
573 if (*dev == MV88F5281_DEV_ID) {
574 if (*rev == MV88F5281_REV_D2) {
575 *dev_name = "MV88F5281-D2";
576 } else if (*rev == MV88F5281_REV_D1) {
577 *dev_name = "MV88F5281-D1";
ce72e36e
LB
578 } else if (*rev == MV88F5281_REV_D0) {
579 *dev_name = "MV88F5281-D0";
c67de5b3
TP
580 } else {
581 *dev_name = "MV88F5281-Rev-Unsupported";
582 }
583 } else if (*dev == MV88F5182_DEV_ID) {
584 if (*rev == MV88F5182_REV_A2) {
585 *dev_name = "MV88F5182-A2";
586 } else {
587 *dev_name = "MV88F5182-Rev-Unsupported";
588 }
c9e3de94
HVR
589 } else if (*dev == MV88F5181_DEV_ID) {
590 if (*rev == MV88F5181_REV_B1) {
591 *dev_name = "MV88F5181-Rev-B1";
d2b2a6bb
LB
592 } else if (*rev == MV88F5181L_REV_A1) {
593 *dev_name = "MV88F5181L-Rev-A1";
c9e3de94 594 } else {
d2b2a6bb 595 *dev_name = "MV88F5181(L)-Rev-Unsupported";
c9e3de94 596 }
d323ade1
LB
597 } else if (*dev == MV88F6183_DEV_ID) {
598 if (*rev == MV88F6183_REV_B0) {
599 *dev_name = "MV88F6183-Rev-B0";
600 } else {
601 *dev_name = "MV88F6183-Rev-Unsupported";
602 }
c67de5b3
TP
603 } else {
604 *dev_name = "Device-Unknown";
605 }
606}
607
9dd0b194 608void __init orion5x_init(void)
c67de5b3
TP
609{
610 char *dev_name;
611 u32 dev, rev;
612
9dd0b194 613 orion5x_id(&dev, &rev, &dev_name);
ebe35aff
LB
614 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk);
615
616 orion5x_eth_shared_data.t_clk = orion5x_tclk;
d323ade1 617 orion5x_spi_plat_data.tclk = orion5x_tclk;
ebe35aff
LB
618 orion5x_uart0_data[0].uartclk = orion5x_tclk;
619 orion5x_uart1_data[0].uartclk = orion5x_tclk;
c67de5b3
TP
620
621 /*
622 * Setup Orion address map
623 */
9dd0b194 624 orion5x_setup_cpu_mbus_bridge();
ce72e36e
LB
625
626 /*
627 * Don't issue "Wait for Interrupt" instruction if we are
628 * running on D0 5281 silicon.
629 */
630 if (dev == MV88F5281_DEV_ID && rev == MV88F5281_REV_D0) {
631 printk(KERN_INFO "Orion: Applying 5281 D0 WFI workaround.\n");
632 disable_hlt();
633 }
c67de5b3 634}
be73a347
GL
635
636/*
637 * Many orion-based systems have buggy bootloader implementations.
638 * This is a common fixup for bogus memory tags.
639 */
640void __init tag_fixup_mem32(struct machine_desc *mdesc, struct tag *t,
641 char **from, struct meminfo *meminfo)
642{
643 for (; t->hdr.size; t = tag_next(t))
644 if (t->hdr.tag == ATAG_MEM &&
645 (!t->u.mem.size || t->u.mem.size & ~PAGE_MASK ||
646 t->u.mem.start & ~PAGE_MASK)) {
647 printk(KERN_WARNING
648 "Clearing invalid memory bank %dKB@0x%08x\n",
649 t->u.mem.size / 1024, t->u.mem.start);
650 t->hdr.tag = 0;
651 }
652}
This page took 0.142362 seconds and 5 git commands to generate.