blob: 8a8b089b8b74334d5293594884997c50c3ab6eb1 [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>
21#include <asm/page.h>
22#include <asm/setup.h>
23#include <asm/timex.h>
24#include <asm/mach/arch.h>
25#include <asm/mach/map.h>
26#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h>
28#include <mach/orion5x.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020029#include <plat/ehci-orion.h>
Saeed Bishara1d5a1a62008-06-16 23:25:12 -110030#include <plat/mv_xor.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020031#include <plat/orion_nand.h>
32#include <plat/time.h>
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040033#include "common.h"
34
35/*****************************************************************************
36 * I/O Address Mapping
37 ****************************************************************************/
38static struct map_desc orion5x_io_desc[] __initdata = {
39 {
40 .virtual = ORION5X_REGS_VIRT_BASE,
41 .pfn = __phys_to_pfn(ORION5X_REGS_PHYS_BASE),
42 .length = ORION5X_REGS_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020043 .type = MT_DEVICE,
44 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040045 .virtual = ORION5X_PCIE_IO_VIRT_BASE,
46 .pfn = __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE),
47 .length = ORION5X_PCIE_IO_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020048 .type = MT_DEVICE,
49 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040050 .virtual = ORION5X_PCI_IO_VIRT_BASE,
51 .pfn = __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE),
52 .length = ORION5X_PCI_IO_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020053 .type = MT_DEVICE,
54 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040055 .virtual = ORION5X_PCIE_WA_VIRT_BASE,
56 .pfn = __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE),
57 .length = ORION5X_PCIE_WA_SIZE,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020058 .type = MT_DEVICE,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040059 },
60};
61
62void __init orion5x_map_io(void)
63{
64 iotable_init(orion5x_io_desc, ARRAY_SIZE(orion5x_io_desc));
65}
66
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020067
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040068/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020069 * EHCI
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040070 ****************************************************************************/
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020071static struct orion_ehci_data orion5x_ehci_data = {
72 .dram = &orion5x_mbus_dram_info,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040073};
74
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020075static u64 ehci_dmamask = 0xffffffffUL;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040076
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040077
Lennert Buytenhek044f6c72008-04-22 05:37:12 +020078/*****************************************************************************
79 * EHCI0
80 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040081static struct resource orion5x_ehci0_resources[] = {
82 {
83 .start = ORION5X_USB0_PHYS_BASE,
Lennert Buytenhek994cab82008-04-25 16:30:21 -040084 .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040085 .flags = IORESOURCE_MEM,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +020086 }, {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040087 .start = IRQ_ORION5X_USB0_CTRL,
88 .end = IRQ_ORION5X_USB0_CTRL,
89 .flags = IORESOURCE_IRQ,
90 },
91};
92
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -040093static struct platform_device orion5x_ehci0 = {
94 .name = "orion-ehci",
95 .id = 0,
96 .dev = {
97 .dma_mask = &ehci_dmamask,
98 .coherent_dma_mask = 0xffffffff,
99 .platform_data = &orion5x_ehci_data,
100 },
101 .resource = orion5x_ehci0_resources,
102 .num_resources = ARRAY_SIZE(orion5x_ehci0_resources),
103};
104
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200105void __init orion5x_ehci0_init(void)
106{
107 platform_device_register(&orion5x_ehci0);
108}
109
110
111/*****************************************************************************
112 * EHCI1
113 ****************************************************************************/
114static struct resource orion5x_ehci1_resources[] = {
115 {
116 .start = ORION5X_USB1_PHYS_BASE,
117 .end = ORION5X_USB1_PHYS_BASE + SZ_4K - 1,
118 .flags = IORESOURCE_MEM,
119 }, {
120 .start = IRQ_ORION5X_USB1_CTRL,
121 .end = IRQ_ORION5X_USB1_CTRL,
122 .flags = IORESOURCE_IRQ,
123 },
124};
125
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400126static struct platform_device orion5x_ehci1 = {
127 .name = "orion-ehci",
128 .id = 1,
129 .dev = {
130 .dma_mask = &ehci_dmamask,
131 .coherent_dma_mask = 0xffffffff,
132 .platform_data = &orion5x_ehci_data,
133 },
134 .resource = orion5x_ehci1_resources,
135 .num_resources = ARRAY_SIZE(orion5x_ehci1_resources),
136};
137
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200138void __init orion5x_ehci1_init(void)
139{
140 platform_device_register(&orion5x_ehci1);
141}
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400142
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200143
144/*****************************************************************************
145 * GigE
146 ****************************************************************************/
Lennert Buytenhekd236f5a2008-04-26 14:48:11 -0400147struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = {
148 .dram = &orion5x_mbus_dram_info,
149};
150
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400151static struct resource orion5x_eth_shared_resources[] = {
152 {
153 .start = ORION5X_ETH_PHYS_BASE + 0x2000,
154 .end = ORION5X_ETH_PHYS_BASE + 0x3fff,
155 .flags = IORESOURCE_MEM,
Lennert Buytenhekeeff6d82008-08-26 16:01:21 +0200156 }, {
157 .start = IRQ_ORION5X_ETH_ERR,
158 .end = IRQ_ORION5X_ETH_ERR,
159 .flags = IORESOURCE_IRQ,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400160 },
161};
162
163static struct platform_device orion5x_eth_shared = {
164 .name = MV643XX_ETH_SHARED_NAME,
165 .id = 0,
Lennert Buytenhekd236f5a2008-04-26 14:48:11 -0400166 .dev = {
167 .platform_data = &orion5x_eth_shared_data,
168 },
Lennert Buytenhekeeff6d82008-08-26 16:01:21 +0200169 .num_resources = ARRAY_SIZE(orion5x_eth_shared_resources),
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400170 .resource = orion5x_eth_shared_resources,
171};
172
173static struct resource orion5x_eth_resources[] = {
174 {
175 .name = "eth irq",
176 .start = IRQ_ORION5X_ETH_SUM,
177 .end = IRQ_ORION5X_ETH_SUM,
178 .flags = IORESOURCE_IRQ,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200179 },
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400180};
181
182static struct platform_device orion5x_eth = {
183 .name = MV643XX_ETH_NAME,
184 .id = 0,
185 .num_resources = 1,
186 .resource = orion5x_eth_resources,
187};
188
189void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data)
190{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200191 eth_data->shared = &orion5x_eth_shared;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400192 orion5x_eth.dev.platform_data = eth_data;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200193
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400194 platform_device_register(&orion5x_eth_shared);
195 platform_device_register(&orion5x_eth);
196}
197
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400198
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200199/*****************************************************************************
200 * I2C
201 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400202static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = {
203 .freq_m = 8, /* assumes 166 MHz TCLK */
204 .freq_n = 3,
205 .timeout = 1000, /* Default timeout of 1 second */
206};
207
208static struct resource orion5x_i2c_resources[] = {
209 {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200210 .name = "i2c base",
211 .start = I2C_PHYS_BASE,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200212 .end = I2C_PHYS_BASE + 0x1f,
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200213 .flags = IORESOURCE_MEM,
214 }, {
215 .name = "i2c irq",
216 .start = IRQ_ORION5X_I2C,
217 .end = IRQ_ORION5X_I2C,
218 .flags = IORESOURCE_IRQ,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400219 },
220};
221
222static struct platform_device orion5x_i2c = {
223 .name = MV64XXX_I2C_CTLR_NAME,
224 .id = 0,
225 .num_resources = ARRAY_SIZE(orion5x_i2c_resources),
226 .resource = orion5x_i2c_resources,
227 .dev = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200228 .platform_data = &orion5x_i2c_pdata,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400229 },
230};
231
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200232void __init orion5x_i2c_init(void)
233{
234 platform_device_register(&orion5x_i2c);
235}
236
237
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400238/*****************************************************************************
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200239 * SATA
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400240 ****************************************************************************/
241static struct resource orion5x_sata_resources[] = {
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400242 {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200243 .name = "sata base",
244 .start = ORION5X_SATA_PHYS_BASE,
245 .end = ORION5X_SATA_PHYS_BASE + 0x5000 - 1,
246 .flags = IORESOURCE_MEM,
247 }, {
248 .name = "sata irq",
249 .start = IRQ_ORION5X_SATA,
250 .end = IRQ_ORION5X_SATA,
251 .flags = IORESOURCE_IRQ,
252 },
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400253};
254
255static struct platform_device orion5x_sata = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200256 .name = "sata_mv",
257 .id = 0,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400258 .dev = {
259 .coherent_dma_mask = 0xffffffff,
260 },
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200261 .num_resources = ARRAY_SIZE(orion5x_sata_resources),
262 .resource = orion5x_sata_resources,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400263};
264
265void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data)
266{
267 sata_data->dram = &orion5x_mbus_dram_info;
268 orion5x_sata.dev.platform_data = sata_data;
269 platform_device_register(&orion5x_sata);
270}
271
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200272
273/*****************************************************************************
274 * UART0
275 ****************************************************************************/
276static struct plat_serial8250_port orion5x_uart0_data[] = {
277 {
278 .mapbase = UART0_PHYS_BASE,
279 .membase = (char *)UART0_VIRT_BASE,
280 .irq = IRQ_ORION5X_UART0,
281 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
282 .iotype = UPIO_MEM,
283 .regshift = 2,
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200284 .uartclk = 0,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200285 }, {
286 },
287};
288
289static struct resource orion5x_uart0_resources[] = {
290 {
291 .start = UART0_PHYS_BASE,
292 .end = UART0_PHYS_BASE + 0xff,
293 .flags = IORESOURCE_MEM,
294 }, {
295 .start = IRQ_ORION5X_UART0,
296 .end = IRQ_ORION5X_UART0,
297 .flags = IORESOURCE_IRQ,
298 },
299};
300
301static struct platform_device orion5x_uart0 = {
302 .name = "serial8250",
303 .id = PLAT8250_DEV_PLATFORM,
304 .dev = {
305 .platform_data = orion5x_uart0_data,
306 },
307 .resource = orion5x_uart0_resources,
308 .num_resources = ARRAY_SIZE(orion5x_uart0_resources),
309};
310
311void __init orion5x_uart0_init(void)
312{
313 platform_device_register(&orion5x_uart0);
314}
315
316
317/*****************************************************************************
318 * UART1
319 ****************************************************************************/
320static struct plat_serial8250_port orion5x_uart1_data[] = {
321 {
322 .mapbase = UART1_PHYS_BASE,
323 .membase = (char *)UART1_VIRT_BASE,
324 .irq = IRQ_ORION5X_UART1,
325 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
326 .iotype = UPIO_MEM,
327 .regshift = 2,
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200328 .uartclk = 0,
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200329 }, {
330 },
331};
332
333static struct resource orion5x_uart1_resources[] = {
334 {
335 .start = UART1_PHYS_BASE,
336 .end = UART1_PHYS_BASE + 0xff,
337 .flags = IORESOURCE_MEM,
338 }, {
339 .start = IRQ_ORION5X_UART1,
340 .end = IRQ_ORION5X_UART1,
341 .flags = IORESOURCE_IRQ,
342 },
343};
344
345static struct platform_device orion5x_uart1 = {
346 .name = "serial8250",
347 .id = PLAT8250_DEV_PLATFORM1,
348 .dev = {
349 .platform_data = orion5x_uart1_data,
350 },
351 .resource = orion5x_uart1_resources,
352 .num_resources = ARRAY_SIZE(orion5x_uart1_resources),
353};
354
355void __init orion5x_uart1_init(void)
356{
357 platform_device_register(&orion5x_uart1);
358}
359
360
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400361/*****************************************************************************
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100362 * XOR engine
363 ****************************************************************************/
364static struct resource orion5x_xor_shared_resources[] = {
365 {
366 .name = "xor low",
367 .start = ORION5X_XOR_PHYS_BASE,
368 .end = ORION5X_XOR_PHYS_BASE + 0xff,
369 .flags = IORESOURCE_MEM,
370 }, {
371 .name = "xor high",
372 .start = ORION5X_XOR_PHYS_BASE + 0x200,
373 .end = ORION5X_XOR_PHYS_BASE + 0x2ff,
374 .flags = IORESOURCE_MEM,
375 },
376};
377
378static struct platform_device orion5x_xor_shared = {
379 .name = MV_XOR_SHARED_NAME,
380 .id = 0,
381 .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources),
382 .resource = orion5x_xor_shared_resources,
383};
384
385static u64 orion5x_xor_dmamask = DMA_32BIT_MASK;
386
387static struct resource orion5x_xor0_resources[] = {
388 [0] = {
389 .start = IRQ_ORION5X_XOR0,
390 .end = IRQ_ORION5X_XOR0,
391 .flags = IORESOURCE_IRQ,
392 },
393};
394
395static struct mv_xor_platform_data orion5x_xor0_data = {
396 .shared = &orion5x_xor_shared,
397 .hw_id = 0,
398 .pool_size = PAGE_SIZE,
399};
400
401static struct platform_device orion5x_xor0_channel = {
402 .name = MV_XOR_NAME,
403 .id = 0,
404 .num_resources = ARRAY_SIZE(orion5x_xor0_resources),
405 .resource = orion5x_xor0_resources,
406 .dev = {
407 .dma_mask = &orion5x_xor_dmamask,
408 .coherent_dma_mask = DMA_64BIT_MASK,
409 .platform_data = (void *)&orion5x_xor0_data,
410 },
411};
412
413static struct resource orion5x_xor1_resources[] = {
414 [0] = {
415 .start = IRQ_ORION5X_XOR1,
416 .end = IRQ_ORION5X_XOR1,
417 .flags = IORESOURCE_IRQ,
418 },
419};
420
421static struct mv_xor_platform_data orion5x_xor1_data = {
422 .shared = &orion5x_xor_shared,
423 .hw_id = 1,
424 .pool_size = PAGE_SIZE,
425};
426
427static struct platform_device orion5x_xor1_channel = {
428 .name = MV_XOR_NAME,
429 .id = 1,
430 .num_resources = ARRAY_SIZE(orion5x_xor1_resources),
431 .resource = orion5x_xor1_resources,
432 .dev = {
433 .dma_mask = &orion5x_xor_dmamask,
434 .coherent_dma_mask = DMA_64BIT_MASK,
435 .platform_data = (void *)&orion5x_xor1_data,
436 },
437};
438
439void __init orion5x_xor_init(void)
440{
441 platform_device_register(&orion5x_xor_shared);
442
443 /*
444 * two engines can't do memset simultaneously, this limitation
445 * satisfied by removing memset support from one of the engines.
446 */
447 dma_cap_set(DMA_MEMCPY, orion5x_xor0_data.cap_mask);
448 dma_cap_set(DMA_XOR, orion5x_xor0_data.cap_mask);
449 platform_device_register(&orion5x_xor0_channel);
450
451 dma_cap_set(DMA_MEMCPY, orion5x_xor1_data.cap_mask);
452 dma_cap_set(DMA_MEMSET, orion5x_xor1_data.cap_mask);
453 dma_cap_set(DMA_XOR, orion5x_xor1_data.cap_mask);
454 platform_device_register(&orion5x_xor1_channel);
455}
456
457
458/*****************************************************************************
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400459 * Time handling
460 ****************************************************************************/
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200461int orion5x_tclk;
462
463int __init orion5x_find_tclk(void)
464{
465 return 166666667;
466}
467
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400468static void orion5x_timer_init(void)
469{
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200470 orion5x_tclk = orion5x_find_tclk();
471 orion_time_init(IRQ_ORION5X_BRIDGE, orion5x_tclk);
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400472}
473
474struct sys_timer orion5x_timer = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200475 .init = orion5x_timer_init,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400476};
477
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200478
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400479/*****************************************************************************
480 * General
481 ****************************************************************************/
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400482/*
Lennert Buytenhekb46926b2008-04-25 16:31:32 -0400483 * Identify device ID and rev from PCIe configuration header space '0'.
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400484 */
485static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name)
486{
487 orion5x_pcie_id(dev, rev);
488
489 if (*dev == MV88F5281_DEV_ID) {
490 if (*rev == MV88F5281_REV_D2) {
491 *dev_name = "MV88F5281-D2";
492 } else if (*rev == MV88F5281_REV_D1) {
493 *dev_name = "MV88F5281-D1";
Lennert Buytenhekce72e36e2008-08-09 15:17:27 +0200494 } else if (*rev == MV88F5281_REV_D0) {
495 *dev_name = "MV88F5281-D0";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400496 } else {
497 *dev_name = "MV88F5281-Rev-Unsupported";
498 }
499 } else if (*dev == MV88F5182_DEV_ID) {
500 if (*rev == MV88F5182_REV_A2) {
501 *dev_name = "MV88F5182-A2";
502 } else {
503 *dev_name = "MV88F5182-Rev-Unsupported";
504 }
505 } else if (*dev == MV88F5181_DEV_ID) {
506 if (*rev == MV88F5181_REV_B1) {
507 *dev_name = "MV88F5181-Rev-B1";
Lennert Buytenhekd2b2a6b2008-05-31 08:30:40 +0200508 } else if (*rev == MV88F5181L_REV_A1) {
509 *dev_name = "MV88F5181L-Rev-A1";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400510 } else {
Lennert Buytenhekd2b2a6b2008-05-31 08:30:40 +0200511 *dev_name = "MV88F5181(L)-Rev-Unsupported";
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400512 }
513 } else {
514 *dev_name = "Device-Unknown";
515 }
516}
517
518void __init orion5x_init(void)
519{
520 char *dev_name;
521 u32 dev, rev;
522
523 orion5x_id(&dev, &rev, &dev_name);
Lennert Buytenhekebe35af2008-08-29 05:55:51 +0200524 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk);
525
526 orion5x_eth_shared_data.t_clk = orion5x_tclk;
527 orion5x_uart0_data[0].uartclk = orion5x_tclk;
528 orion5x_uart1_data[0].uartclk = orion5x_tclk;
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400529
530 /*
531 * Setup Orion address map
532 */
533 orion5x_setup_cpu_mbus_bridge();
Lennert Buytenhekce72e36e2008-08-09 15:17:27 +0200534
535 /*
536 * Don't issue "Wait for Interrupt" instruction if we are
537 * running on D0 5281 silicon.
538 */
539 if (dev == MV88F5281_DEV_ID && rev == MV88F5281_REV_D0) {
540 printk(KERN_INFO "Orion: Applying 5281 D0 WFI workaround.\n");
541 disable_hlt();
542 }
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400543}
544
545/*
546 * Many orion-based systems have buggy bootloader implementations.
547 * This is a common fixup for bogus memory tags.
548 */
549void __init tag_fixup_mem32(struct machine_desc *mdesc, struct tag *t,
550 char **from, struct meminfo *meminfo)
551{
552 for (; t->hdr.size; t = tag_next(t))
553 if (t->hdr.tag == ATAG_MEM &&
554 (!t->u.mem.size || t->u.mem.size & ~PAGE_MASK ||
555 t->u.mem.start & ~PAGE_MASK)) {
556 printk(KERN_WARNING
557 "Clearing invalid memory bank %dKB@0x%08x\n",
558 t->u.mem.size / 1024, t->u.mem.start);
559 t->hdr.tag = 0;
560 }
561}