blob: 7ec14dbf4547f0b43b0cdcbf3437a804d6d1f2bd [file] [log] [blame]
Saeed Bishara651c74c2008-06-22 22:45:06 +02001/*
2 * arch/arm/mach-kirkwood/common.c
3 *
4 * Core functions for Marvell Kirkwood SoCs
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/platform_device.h>
14#include <linux/serial_8250.h>
15#include <linux/mbus.h>
16#include <linux/mv643xx_eth.h>
Martin Michlmayr6574e002009-03-23 19:13:21 +010017#include <linux/mv643xx_i2c.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020018#include <linux/ata_platform.h>
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -040019#include <linux/mtd/nand.h>
Lennert Buytenhek18365d12008-08-09 15:38:18 +020020#include <linux/spi/orion_spi.h>
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +020021#include <net/dsa.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020022#include <asm/page.h>
23#include <asm/timex.h>
Eric Cooper9c153642011-02-02 17:16:11 -050024#include <asm/kexec.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020025#include <asm/mach/map.h>
26#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/kirkwood.h>
Nicolas Pitrefdd8b072009-04-22 20:08:17 +010028#include <mach/bridge-regs.h>
apatard@mandriva.com49106c72010-05-31 13:49:12 +020029#include <plat/audio.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020030#include <plat/cache-feroceon-l2.h>
31#include <plat/ehci-orion.h>
Nicolas Pitre8235ee02009-02-14 03:15:55 -050032#include <plat/mvsdio.h>
Saeed Bishara09c0ed22008-06-23 04:26:07 -110033#include <plat/mv_xor.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020034#include <plat/orion_nand.h>
Nicolas Pitre3b937a72009-06-01 13:56:02 -040035#include <plat/orion_wdt.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020036#include <plat/time.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020037#include "common.h"
38
39/*****************************************************************************
40 * I/O Address Mapping
41 ****************************************************************************/
42static struct map_desc kirkwood_io_desc[] __initdata = {
43 {
44 .virtual = KIRKWOOD_PCIE_IO_VIRT_BASE,
45 .pfn = __phys_to_pfn(KIRKWOOD_PCIE_IO_PHYS_BASE),
46 .length = KIRKWOOD_PCIE_IO_SIZE,
47 .type = MT_DEVICE,
48 }, {
Saeed Bisharaffd58bd2010-06-08 14:21:34 +030049 .virtual = KIRKWOOD_PCIE1_IO_VIRT_BASE,
50 .pfn = __phys_to_pfn(KIRKWOOD_PCIE1_IO_PHYS_BASE),
51 .length = KIRKWOOD_PCIE1_IO_SIZE,
52 .type = MT_DEVICE,
53 }, {
Saeed Bishara651c74c2008-06-22 22:45:06 +020054 .virtual = KIRKWOOD_REGS_VIRT_BASE,
55 .pfn = __phys_to_pfn(KIRKWOOD_REGS_PHYS_BASE),
56 .length = KIRKWOOD_REGS_SIZE,
57 .type = MT_DEVICE,
58 },
59};
60
61void __init kirkwood_map_io(void)
62{
63 iotable_init(kirkwood_io_desc, ARRAY_SIZE(kirkwood_io_desc));
64}
65
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +020066/*
67 * Default clock control bits. Any bit _not_ set in this variable
68 * will be cleared from the hardware after platform devices have been
69 * registered. Some reserved bits must be set to 1.
70 */
71unsigned int kirkwood_clk_ctrl = CGC_DUNIT | CGC_RESERVED;
72
Saeed Bishara651c74c2008-06-22 22:45:06 +020073
74/*****************************************************************************
75 * EHCI
76 ****************************************************************************/
77static struct orion_ehci_data kirkwood_ehci_data = {
78 .dram = &kirkwood_mbus_dram_info,
Ronen Shitritfb6f5522008-09-17 10:08:05 +030079 .phy_version = EHCI_PHY_NA,
Saeed Bishara651c74c2008-06-22 22:45:06 +020080};
81
82static u64 ehci_dmamask = 0xffffffffUL;
83
84
85/*****************************************************************************
86 * EHCI0
87 ****************************************************************************/
88static struct resource kirkwood_ehci_resources[] = {
89 {
90 .start = USB_PHYS_BASE,
91 .end = USB_PHYS_BASE + 0x0fff,
92 .flags = IORESOURCE_MEM,
93 }, {
94 .start = IRQ_KIRKWOOD_USB,
95 .end = IRQ_KIRKWOOD_USB,
96 .flags = IORESOURCE_IRQ,
97 },
98};
99
100static struct platform_device kirkwood_ehci = {
101 .name = "orion-ehci",
102 .id = 0,
103 .dev = {
104 .dma_mask = &ehci_dmamask,
105 .coherent_dma_mask = 0xffffffff,
106 .platform_data = &kirkwood_ehci_data,
107 },
108 .resource = kirkwood_ehci_resources,
109 .num_resources = ARRAY_SIZE(kirkwood_ehci_resources),
110};
111
112void __init kirkwood_ehci_init(void)
113{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200114 kirkwood_clk_ctrl |= CGC_USB0;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200115 platform_device_register(&kirkwood_ehci);
116}
117
118
119/*****************************************************************************
120 * GE00
121 ****************************************************************************/
122struct mv643xx_eth_shared_platform_data kirkwood_ge00_shared_data = {
Saeed Bishara651c74c2008-06-22 22:45:06 +0200123 .dram = &kirkwood_mbus_dram_info,
124};
125
126static struct resource kirkwood_ge00_shared_resources[] = {
127 {
128 .name = "ge00 base",
129 .start = GE00_PHYS_BASE + 0x2000,
130 .end = GE00_PHYS_BASE + 0x3fff,
131 .flags = IORESOURCE_MEM,
Lennert Buytenhek144f8142008-08-26 16:04:05 +0200132 }, {
133 .name = "ge00 err irq",
134 .start = IRQ_KIRKWOOD_GE00_ERR,
135 .end = IRQ_KIRKWOOD_GE00_ERR,
136 .flags = IORESOURCE_IRQ,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200137 },
138};
139
140static struct platform_device kirkwood_ge00_shared = {
141 .name = MV643XX_ETH_SHARED_NAME,
142 .id = 0,
143 .dev = {
144 .platform_data = &kirkwood_ge00_shared_data,
145 },
Lennert Buytenhek144f8142008-08-26 16:04:05 +0200146 .num_resources = ARRAY_SIZE(kirkwood_ge00_shared_resources),
Saeed Bishara651c74c2008-06-22 22:45:06 +0200147 .resource = kirkwood_ge00_shared_resources,
148};
149
150static struct resource kirkwood_ge00_resources[] = {
151 {
152 .name = "ge00 irq",
153 .start = IRQ_KIRKWOOD_GE00_SUM,
154 .end = IRQ_KIRKWOOD_GE00_SUM,
155 .flags = IORESOURCE_IRQ,
156 },
157};
158
159static struct platform_device kirkwood_ge00 = {
160 .name = MV643XX_ETH_NAME,
161 .id = 0,
162 .num_resources = 1,
163 .resource = kirkwood_ge00_resources,
Nicolas Pitrea49a0182009-05-22 16:53:40 -0400164 .dev = {
165 .coherent_dma_mask = 0xffffffff,
166 },
Saeed Bishara651c74c2008-06-22 22:45:06 +0200167};
168
169void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data)
170{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200171 kirkwood_clk_ctrl |= CGC_GE0;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200172 eth_data->shared = &kirkwood_ge00_shared;
173 kirkwood_ge00.dev.platform_data = eth_data;
174
175 platform_device_register(&kirkwood_ge00_shared);
176 platform_device_register(&kirkwood_ge00);
177}
178
179
180/*****************************************************************************
Ronen Shitritd15fb9e2008-10-19 23:10:14 +0200181 * GE01
182 ****************************************************************************/
183struct mv643xx_eth_shared_platform_data kirkwood_ge01_shared_data = {
184 .dram = &kirkwood_mbus_dram_info,
185 .shared_smi = &kirkwood_ge00_shared,
186};
187
188static struct resource kirkwood_ge01_shared_resources[] = {
189 {
190 .name = "ge01 base",
191 .start = GE01_PHYS_BASE + 0x2000,
192 .end = GE01_PHYS_BASE + 0x3fff,
193 .flags = IORESOURCE_MEM,
194 }, {
195 .name = "ge01 err irq",
196 .start = IRQ_KIRKWOOD_GE01_ERR,
197 .end = IRQ_KIRKWOOD_GE01_ERR,
198 .flags = IORESOURCE_IRQ,
199 },
200};
201
202static struct platform_device kirkwood_ge01_shared = {
203 .name = MV643XX_ETH_SHARED_NAME,
204 .id = 1,
205 .dev = {
206 .platform_data = &kirkwood_ge01_shared_data,
207 },
208 .num_resources = ARRAY_SIZE(kirkwood_ge01_shared_resources),
209 .resource = kirkwood_ge01_shared_resources,
210};
211
212static struct resource kirkwood_ge01_resources[] = {
213 {
214 .name = "ge01 irq",
215 .start = IRQ_KIRKWOOD_GE01_SUM,
216 .end = IRQ_KIRKWOOD_GE01_SUM,
217 .flags = IORESOURCE_IRQ,
218 },
219};
220
221static struct platform_device kirkwood_ge01 = {
222 .name = MV643XX_ETH_NAME,
223 .id = 1,
224 .num_resources = 1,
225 .resource = kirkwood_ge01_resources,
Nicolas Pitrea49a0182009-05-22 16:53:40 -0400226 .dev = {
227 .coherent_dma_mask = 0xffffffff,
228 },
Ronen Shitritd15fb9e2008-10-19 23:10:14 +0200229};
230
231void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data)
232{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200233 kirkwood_clk_ctrl |= CGC_GE1;
Ronen Shitritd15fb9e2008-10-19 23:10:14 +0200234 eth_data->shared = &kirkwood_ge01_shared;
235 kirkwood_ge01.dev.platform_data = eth_data;
236
237 platform_device_register(&kirkwood_ge01_shared);
238 platform_device_register(&kirkwood_ge01);
239}
240
241
242/*****************************************************************************
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200243 * Ethernet switch
244 ****************************************************************************/
245static struct resource kirkwood_switch_resources[] = {
246 {
247 .start = 0,
248 .end = 0,
249 .flags = IORESOURCE_IRQ,
250 },
251};
252
253static struct platform_device kirkwood_switch_device = {
254 .name = "dsa",
255 .id = 0,
256 .num_resources = 0,
257 .resource = kirkwood_switch_resources,
258};
259
260void __init kirkwood_ge00_switch_init(struct dsa_platform_data *d, int irq)
261{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000262 int i;
263
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200264 if (irq != NO_IRQ) {
265 kirkwood_switch_resources[0].start = irq;
266 kirkwood_switch_resources[0].end = irq;
267 kirkwood_switch_device.num_resources = 1;
268 }
269
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200270 d->netdev = &kirkwood_ge00.dev;
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000271 for (i = 0; i < d->nr_chips; i++)
272 d->chip[i].mii_bus = &kirkwood_ge00_shared.dev;
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200273 kirkwood_switch_device.dev.platform_data = d;
274
275 platform_device_register(&kirkwood_switch_device);
276}
277
278
279/*****************************************************************************
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400280 * NAND flash
281 ****************************************************************************/
282static struct resource kirkwood_nand_resource = {
283 .flags = IORESOURCE_MEM,
284 .start = KIRKWOOD_NAND_MEM_PHYS_BASE,
285 .end = KIRKWOOD_NAND_MEM_PHYS_BASE +
286 KIRKWOOD_NAND_MEM_SIZE - 1,
287};
288
289static struct orion_nand_data kirkwood_nand_data = {
290 .cle = 0,
291 .ale = 1,
292 .width = 8,
293};
294
295static struct platform_device kirkwood_nand_flash = {
296 .name = "orion_nand",
297 .id = -1,
298 .dev = {
299 .platform_data = &kirkwood_nand_data,
300 },
301 .resource = &kirkwood_nand_resource,
302 .num_resources = 1,
303};
304
305void __init kirkwood_nand_init(struct mtd_partition *parts, int nr_parts,
306 int chip_delay)
307{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200308 kirkwood_clk_ctrl |= CGC_RUNIT;
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400309 kirkwood_nand_data.parts = parts;
310 kirkwood_nand_data.nr_parts = nr_parts;
311 kirkwood_nand_data.chip_delay = chip_delay;
312 platform_device_register(&kirkwood_nand_flash);
313}
314
Ben Dooks010937e2010-04-20 10:26:19 +0100315void __init kirkwood_nand_init_rnb(struct mtd_partition *parts, int nr_parts,
316 int (*dev_ready)(struct mtd_info *))
317{
318 kirkwood_clk_ctrl |= CGC_RUNIT;
319 kirkwood_nand_data.parts = parts;
320 kirkwood_nand_data.nr_parts = nr_parts;
321 kirkwood_nand_data.dev_ready = dev_ready;
322 platform_device_register(&kirkwood_nand_flash);
323}
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400324
325/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200326 * SoC RTC
327 ****************************************************************************/
328static struct resource kirkwood_rtc_resource = {
329 .start = RTC_PHYS_BASE,
330 .end = RTC_PHYS_BASE + SZ_16 - 1,
331 .flags = IORESOURCE_MEM,
332};
333
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500334static void __init kirkwood_rtc_init(void)
Saeed Bishara651c74c2008-06-22 22:45:06 +0200335{
336 platform_device_register_simple("rtc-mv", -1, &kirkwood_rtc_resource, 1);
337}
338
339
340/*****************************************************************************
341 * SATA
342 ****************************************************************************/
343static struct resource kirkwood_sata_resources[] = {
344 {
345 .name = "sata base",
346 .start = SATA_PHYS_BASE,
347 .end = SATA_PHYS_BASE + 0x5000 - 1,
348 .flags = IORESOURCE_MEM,
349 }, {
350 .name = "sata irq",
351 .start = IRQ_KIRKWOOD_SATA,
352 .end = IRQ_KIRKWOOD_SATA,
353 .flags = IORESOURCE_IRQ,
354 },
355};
356
357static struct platform_device kirkwood_sata = {
358 .name = "sata_mv",
359 .id = 0,
360 .dev = {
361 .coherent_dma_mask = 0xffffffff,
362 },
363 .num_resources = ARRAY_SIZE(kirkwood_sata_resources),
364 .resource = kirkwood_sata_resources,
365};
366
367void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data)
368{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200369 kirkwood_clk_ctrl |= CGC_SATA0;
370 if (sata_data->n_ports > 1)
371 kirkwood_clk_ctrl |= CGC_SATA1;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200372 sata_data->dram = &kirkwood_mbus_dram_info;
373 kirkwood_sata.dev.platform_data = sata_data;
374 platform_device_register(&kirkwood_sata);
375}
376
377
378/*****************************************************************************
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500379 * SD/SDIO/MMC
380 ****************************************************************************/
381static struct resource mvsdio_resources[] = {
382 [0] = {
383 .start = SDIO_PHYS_BASE,
384 .end = SDIO_PHYS_BASE + SZ_1K - 1,
385 .flags = IORESOURCE_MEM,
386 },
387 [1] = {
388 .start = IRQ_KIRKWOOD_SDIO,
389 .end = IRQ_KIRKWOOD_SDIO,
390 .flags = IORESOURCE_IRQ,
391 },
392};
393
394static u64 mvsdio_dmamask = 0xffffffffUL;
395
396static struct platform_device kirkwood_sdio = {
397 .name = "mvsdio",
398 .id = -1,
399 .dev = {
400 .dma_mask = &mvsdio_dmamask,
401 .coherent_dma_mask = 0xffffffff,
402 },
403 .num_resources = ARRAY_SIZE(mvsdio_resources),
404 .resource = mvsdio_resources,
405};
406
407void __init kirkwood_sdio_init(struct mvsdio_platform_data *mvsdio_data)
408{
409 u32 dev, rev;
410
411 kirkwood_pcie_id(&dev, &rev);
Saeed Bishara1e4d2d32010-06-01 18:09:27 +0300412 if (rev == 0 && dev != MV88F6282_DEV_ID) /* catch all Kirkwood Z0's */
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500413 mvsdio_data->clock = 100000000;
414 else
415 mvsdio_data->clock = 200000000;
416 mvsdio_data->dram = &kirkwood_mbus_dram_info;
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200417 kirkwood_clk_ctrl |= CGC_SDIO;
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500418 kirkwood_sdio.dev.platform_data = mvsdio_data;
419 platform_device_register(&kirkwood_sdio);
420}
421
422
423/*****************************************************************************
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200424 * SPI
425 ****************************************************************************/
426static struct orion_spi_info kirkwood_spi_plat_data = {
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200427};
428
429static struct resource kirkwood_spi_resources[] = {
430 {
431 .start = SPI_PHYS_BASE,
432 .end = SPI_PHYS_BASE + SZ_512 - 1,
433 .flags = IORESOURCE_MEM,
434 },
435};
436
437static struct platform_device kirkwood_spi = {
438 .name = "orion_spi",
439 .id = 0,
440 .resource = kirkwood_spi_resources,
441 .dev = {
442 .platform_data = &kirkwood_spi_plat_data,
443 },
444 .num_resources = ARRAY_SIZE(kirkwood_spi_resources),
445};
446
447void __init kirkwood_spi_init()
448{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200449 kirkwood_clk_ctrl |= CGC_RUNIT;
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200450 platform_device_register(&kirkwood_spi);
451}
452
453
454/*****************************************************************************
Martin Michlmayr6574e002009-03-23 19:13:21 +0100455 * I2C
456 ****************************************************************************/
457static struct mv64xxx_i2c_pdata kirkwood_i2c_pdata = {
458 .freq_m = 8, /* assumes 166 MHz TCLK */
459 .freq_n = 3,
460 .timeout = 1000, /* Default timeout of 1 second */
461};
462
463static struct resource kirkwood_i2c_resources[] = {
464 {
Martin Michlmayr6574e002009-03-23 19:13:21 +0100465 .start = I2C_PHYS_BASE,
466 .end = I2C_PHYS_BASE + 0x1f,
467 .flags = IORESOURCE_MEM,
468 }, {
Martin Michlmayr6574e002009-03-23 19:13:21 +0100469 .start = IRQ_KIRKWOOD_TWSI,
470 .end = IRQ_KIRKWOOD_TWSI,
471 .flags = IORESOURCE_IRQ,
472 },
473};
474
475static struct platform_device kirkwood_i2c = {
476 .name = MV64XXX_I2C_CTLR_NAME,
477 .id = 0,
478 .num_resources = ARRAY_SIZE(kirkwood_i2c_resources),
479 .resource = kirkwood_i2c_resources,
480 .dev = {
481 .platform_data = &kirkwood_i2c_pdata,
482 },
483};
484
485void __init kirkwood_i2c_init(void)
486{
487 platform_device_register(&kirkwood_i2c);
488}
489
490
491/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200492 * UART0
493 ****************************************************************************/
494static struct plat_serial8250_port kirkwood_uart0_data[] = {
495 {
496 .mapbase = UART0_PHYS_BASE,
497 .membase = (char *)UART0_VIRT_BASE,
498 .irq = IRQ_KIRKWOOD_UART_0,
499 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
500 .iotype = UPIO_MEM,
501 .regshift = 2,
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200502 .uartclk = 0,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200503 }, {
504 },
505};
506
507static struct resource kirkwood_uart0_resources[] = {
508 {
509 .start = UART0_PHYS_BASE,
510 .end = UART0_PHYS_BASE + 0xff,
511 .flags = IORESOURCE_MEM,
512 }, {
513 .start = IRQ_KIRKWOOD_UART_0,
514 .end = IRQ_KIRKWOOD_UART_0,
515 .flags = IORESOURCE_IRQ,
516 },
517};
518
519static struct platform_device kirkwood_uart0 = {
520 .name = "serial8250",
521 .id = 0,
522 .dev = {
523 .platform_data = kirkwood_uart0_data,
524 },
525 .resource = kirkwood_uart0_resources,
526 .num_resources = ARRAY_SIZE(kirkwood_uart0_resources),
527};
528
529void __init kirkwood_uart0_init(void)
530{
531 platform_device_register(&kirkwood_uart0);
532}
533
534
535/*****************************************************************************
536 * UART1
537 ****************************************************************************/
538static struct plat_serial8250_port kirkwood_uart1_data[] = {
539 {
540 .mapbase = UART1_PHYS_BASE,
541 .membase = (char *)UART1_VIRT_BASE,
542 .irq = IRQ_KIRKWOOD_UART_1,
543 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
544 .iotype = UPIO_MEM,
545 .regshift = 2,
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200546 .uartclk = 0,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200547 }, {
548 },
549};
550
551static struct resource kirkwood_uart1_resources[] = {
552 {
553 .start = UART1_PHYS_BASE,
554 .end = UART1_PHYS_BASE + 0xff,
555 .flags = IORESOURCE_MEM,
556 }, {
557 .start = IRQ_KIRKWOOD_UART_1,
558 .end = IRQ_KIRKWOOD_UART_1,
559 .flags = IORESOURCE_IRQ,
560 },
561};
562
563static struct platform_device kirkwood_uart1 = {
564 .name = "serial8250",
565 .id = 1,
566 .dev = {
567 .platform_data = kirkwood_uart1_data,
568 },
569 .resource = kirkwood_uart1_resources,
570 .num_resources = ARRAY_SIZE(kirkwood_uart1_resources),
571};
572
573void __init kirkwood_uart1_init(void)
574{
575 platform_device_register(&kirkwood_uart1);
576}
577
578
579/*****************************************************************************
Nicolas Pitreae5c8c82009-06-03 15:24:36 -0400580 * Cryptographic Engines and Security Accelerator (CESA)
581 ****************************************************************************/
582
583static struct resource kirkwood_crypto_res[] = {
584 {
585 .name = "regs",
586 .start = CRYPTO_PHYS_BASE,
587 .end = CRYPTO_PHYS_BASE + 0xffff,
588 .flags = IORESOURCE_MEM,
589 }, {
590 .name = "sram",
591 .start = KIRKWOOD_SRAM_PHYS_BASE,
592 .end = KIRKWOOD_SRAM_PHYS_BASE + KIRKWOOD_SRAM_SIZE - 1,
593 .flags = IORESOURCE_MEM,
594 }, {
595 .name = "crypto interrupt",
596 .start = IRQ_KIRKWOOD_CRYPTO,
597 .end = IRQ_KIRKWOOD_CRYPTO,
598 .flags = IORESOURCE_IRQ,
599 },
600};
601
602static struct platform_device kirkwood_crypto_device = {
603 .name = "mv_crypto",
604 .id = -1,
605 .num_resources = ARRAY_SIZE(kirkwood_crypto_res),
606 .resource = kirkwood_crypto_res,
607};
608
609void __init kirkwood_crypto_init(void)
610{
611 kirkwood_clk_ctrl |= CGC_CRYPTO;
612 platform_device_register(&kirkwood_crypto_device);
613}
614
615
616/*****************************************************************************
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100617 * XOR
618 ****************************************************************************/
619static struct mv_xor_platform_shared_data kirkwood_xor_shared_data = {
620 .dram = &kirkwood_mbus_dram_info,
621};
622
Yang Hongyang284901a2009-04-06 19:01:15 -0700623static u64 kirkwood_xor_dmamask = DMA_BIT_MASK(32);
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100624
625
626/*****************************************************************************
627 * XOR0
628 ****************************************************************************/
629static struct resource kirkwood_xor0_shared_resources[] = {
630 {
631 .name = "xor 0 low",
632 .start = XOR0_PHYS_BASE,
633 .end = XOR0_PHYS_BASE + 0xff,
634 .flags = IORESOURCE_MEM,
635 }, {
636 .name = "xor 0 high",
637 .start = XOR0_HIGH_PHYS_BASE,
638 .end = XOR0_HIGH_PHYS_BASE + 0xff,
639 .flags = IORESOURCE_MEM,
640 },
641};
642
643static struct platform_device kirkwood_xor0_shared = {
644 .name = MV_XOR_SHARED_NAME,
645 .id = 0,
646 .dev = {
647 .platform_data = &kirkwood_xor_shared_data,
648 },
649 .num_resources = ARRAY_SIZE(kirkwood_xor0_shared_resources),
650 .resource = kirkwood_xor0_shared_resources,
651};
652
653static struct resource kirkwood_xor00_resources[] = {
654 [0] = {
655 .start = IRQ_KIRKWOOD_XOR_00,
656 .end = IRQ_KIRKWOOD_XOR_00,
657 .flags = IORESOURCE_IRQ,
658 },
659};
660
661static struct mv_xor_platform_data kirkwood_xor00_data = {
662 .shared = &kirkwood_xor0_shared,
663 .hw_id = 0,
664 .pool_size = PAGE_SIZE,
665};
666
667static struct platform_device kirkwood_xor00_channel = {
668 .name = MV_XOR_NAME,
669 .id = 0,
670 .num_resources = ARRAY_SIZE(kirkwood_xor00_resources),
671 .resource = kirkwood_xor00_resources,
672 .dev = {
673 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700674 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800675 .platform_data = &kirkwood_xor00_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100676 },
677};
678
679static struct resource kirkwood_xor01_resources[] = {
680 [0] = {
681 .start = IRQ_KIRKWOOD_XOR_01,
682 .end = IRQ_KIRKWOOD_XOR_01,
683 .flags = IORESOURCE_IRQ,
684 },
685};
686
687static struct mv_xor_platform_data kirkwood_xor01_data = {
688 .shared = &kirkwood_xor0_shared,
689 .hw_id = 1,
690 .pool_size = PAGE_SIZE,
691};
692
693static struct platform_device kirkwood_xor01_channel = {
694 .name = MV_XOR_NAME,
695 .id = 1,
696 .num_resources = ARRAY_SIZE(kirkwood_xor01_resources),
697 .resource = kirkwood_xor01_resources,
698 .dev = {
699 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700700 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800701 .platform_data = &kirkwood_xor01_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100702 },
703};
704
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500705static void __init kirkwood_xor0_init(void)
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100706{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200707 kirkwood_clk_ctrl |= CGC_XOR0;
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100708 platform_device_register(&kirkwood_xor0_shared);
709
710 /*
711 * two engines can't do memset simultaneously, this limitation
712 * satisfied by removing memset support from one of the engines.
713 */
714 dma_cap_set(DMA_MEMCPY, kirkwood_xor00_data.cap_mask);
715 dma_cap_set(DMA_XOR, kirkwood_xor00_data.cap_mask);
716 platform_device_register(&kirkwood_xor00_channel);
717
718 dma_cap_set(DMA_MEMCPY, kirkwood_xor01_data.cap_mask);
719 dma_cap_set(DMA_MEMSET, kirkwood_xor01_data.cap_mask);
720 dma_cap_set(DMA_XOR, kirkwood_xor01_data.cap_mask);
721 platform_device_register(&kirkwood_xor01_channel);
722}
723
724
725/*****************************************************************************
726 * XOR1
727 ****************************************************************************/
728static struct resource kirkwood_xor1_shared_resources[] = {
729 {
730 .name = "xor 1 low",
731 .start = XOR1_PHYS_BASE,
732 .end = XOR1_PHYS_BASE + 0xff,
733 .flags = IORESOURCE_MEM,
734 }, {
735 .name = "xor 1 high",
736 .start = XOR1_HIGH_PHYS_BASE,
737 .end = XOR1_HIGH_PHYS_BASE + 0xff,
738 .flags = IORESOURCE_MEM,
739 },
740};
741
742static struct platform_device kirkwood_xor1_shared = {
743 .name = MV_XOR_SHARED_NAME,
744 .id = 1,
745 .dev = {
746 .platform_data = &kirkwood_xor_shared_data,
747 },
748 .num_resources = ARRAY_SIZE(kirkwood_xor1_shared_resources),
749 .resource = kirkwood_xor1_shared_resources,
750};
751
752static struct resource kirkwood_xor10_resources[] = {
753 [0] = {
754 .start = IRQ_KIRKWOOD_XOR_10,
755 .end = IRQ_KIRKWOOD_XOR_10,
756 .flags = IORESOURCE_IRQ,
757 },
758};
759
760static struct mv_xor_platform_data kirkwood_xor10_data = {
761 .shared = &kirkwood_xor1_shared,
762 .hw_id = 0,
763 .pool_size = PAGE_SIZE,
764};
765
766static struct platform_device kirkwood_xor10_channel = {
767 .name = MV_XOR_NAME,
768 .id = 2,
769 .num_resources = ARRAY_SIZE(kirkwood_xor10_resources),
770 .resource = kirkwood_xor10_resources,
771 .dev = {
772 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700773 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800774 .platform_data = &kirkwood_xor10_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100775 },
776};
777
778static struct resource kirkwood_xor11_resources[] = {
779 [0] = {
780 .start = IRQ_KIRKWOOD_XOR_11,
781 .end = IRQ_KIRKWOOD_XOR_11,
782 .flags = IORESOURCE_IRQ,
783 },
784};
785
786static struct mv_xor_platform_data kirkwood_xor11_data = {
787 .shared = &kirkwood_xor1_shared,
788 .hw_id = 1,
789 .pool_size = PAGE_SIZE,
790};
791
792static struct platform_device kirkwood_xor11_channel = {
793 .name = MV_XOR_NAME,
794 .id = 3,
795 .num_resources = ARRAY_SIZE(kirkwood_xor11_resources),
796 .resource = kirkwood_xor11_resources,
797 .dev = {
798 .dma_mask = &kirkwood_xor_dmamask,
Yang Hongyang6a355282009-04-06 19:01:13 -0700799 .coherent_dma_mask = DMA_BIT_MASK(64),
H Hartley Sweeten3e3e65f2010-01-29 14:43:52 -0800800 .platform_data = &kirkwood_xor11_data,
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100801 },
802};
803
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500804static void __init kirkwood_xor1_init(void)
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100805{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200806 kirkwood_clk_ctrl |= CGC_XOR1;
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100807 platform_device_register(&kirkwood_xor1_shared);
808
809 /*
810 * two engines can't do memset simultaneously, this limitation
811 * satisfied by removing memset support from one of the engines.
812 */
813 dma_cap_set(DMA_MEMCPY, kirkwood_xor10_data.cap_mask);
814 dma_cap_set(DMA_XOR, kirkwood_xor10_data.cap_mask);
815 platform_device_register(&kirkwood_xor10_channel);
816
817 dma_cap_set(DMA_MEMCPY, kirkwood_xor11_data.cap_mask);
818 dma_cap_set(DMA_MEMSET, kirkwood_xor11_data.cap_mask);
819 dma_cap_set(DMA_XOR, kirkwood_xor11_data.cap_mask);
820 platform_device_register(&kirkwood_xor11_channel);
821}
822
823
824/*****************************************************************************
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200825 * Watchdog
826 ****************************************************************************/
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400827static struct orion_wdt_platform_data kirkwood_wdt_data = {
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200828 .tclk = 0,
829};
830
831static struct platform_device kirkwood_wdt_device = {
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400832 .name = "orion_wdt",
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200833 .id = -1,
834 .dev = {
835 .platform_data = &kirkwood_wdt_data,
836 },
837 .num_resources = 0,
838};
839
840static void __init kirkwood_wdt_init(void)
841{
842 kirkwood_wdt_data.tclk = kirkwood_tclk;
843 platform_device_register(&kirkwood_wdt_device);
844}
845
846
847/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200848 * Time handling
849 ****************************************************************************/
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200850int kirkwood_tclk;
851
Nicolas Pitre9b8ebfe2011-03-03 15:08:53 -0500852static int __init kirkwood_find_tclk(void)
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200853{
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300854 u32 dev, rev;
855
856 kirkwood_pcie_id(&dev, &rev);
Saeed Bishara1e4d2d32010-06-01 18:09:27 +0300857
Simon Guinot2fa0f932010-10-21 11:42:28 +0200858 if (dev == MV88F6281_DEV_ID || dev == MV88F6282_DEV_ID)
859 if (((readl(SAMPLE_AT_RESET) >> 21) & 1) == 0)
860 return 200000000;
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300861
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200862 return 166666667;
863}
864
Li Jie6de95c12009-11-05 07:29:54 -0800865static void __init kirkwood_timer_init(void)
Saeed Bishara651c74c2008-06-22 22:45:06 +0200866{
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200867 kirkwood_tclk = kirkwood_find_tclk();
868 orion_time_init(IRQ_KIRKWOOD_BRIDGE, kirkwood_tclk);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200869}
870
871struct sys_timer kirkwood_timer = {
872 .init = kirkwood_timer_init,
873};
874
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200875/*****************************************************************************
876 * Audio
877 ****************************************************************************/
878static struct resource kirkwood_i2s_resources[] = {
879 [0] = {
880 .start = AUDIO_PHYS_BASE,
881 .end = AUDIO_PHYS_BASE + SZ_16K - 1,
882 .flags = IORESOURCE_MEM,
883 },
884 [1] = {
885 .start = IRQ_KIRKWOOD_I2S,
886 .end = IRQ_KIRKWOOD_I2S,
887 .flags = IORESOURCE_IRQ,
888 },
889};
890
891static struct kirkwood_asoc_platform_data kirkwood_i2s_data = {
892 .dram = &kirkwood_mbus_dram_info,
893 .burst = 128,
894};
895
896static struct platform_device kirkwood_i2s_device = {
897 .name = "kirkwood-i2s",
898 .id = -1,
899 .num_resources = ARRAY_SIZE(kirkwood_i2s_resources),
900 .resource = kirkwood_i2s_resources,
901 .dev = {
902 .platform_data = &kirkwood_i2s_data,
903 },
904};
905
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000906static struct platform_device kirkwood_pcm_device = {
Arnaud Patard (Rtp)c88e7b92010-08-30 16:00:05 +0200907 .name = "kirkwood-pcm-audio",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000908 .id = -1,
909};
910
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200911void __init kirkwood_audio_init(void)
912{
913 kirkwood_clk_ctrl |= CGC_AUDIO;
914 platform_device_register(&kirkwood_i2s_device);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000915 platform_device_register(&kirkwood_pcm_device);
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200916}
Saeed Bishara651c74c2008-06-22 22:45:06 +0200917
918/*****************************************************************************
919 * General
920 ****************************************************************************/
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300921/*
922 * Identify device ID and revision.
923 */
Saeed Bishara651c74c2008-06-22 22:45:06 +0200924static char * __init kirkwood_id(void)
925{
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300926 u32 dev, rev;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200927
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300928 kirkwood_pcie_id(&dev, &rev);
929
930 if (dev == MV88F6281_DEV_ID) {
931 if (rev == MV88F6281_REV_Z0)
932 return "MV88F6281-Z0";
933 else if (rev == MV88F6281_REV_A0)
934 return "MV88F6281-A0";
Siddarth Goreaec1bad2009-06-09 14:41:02 +0530935 else if (rev == MV88F6281_REV_A1)
936 return "MV88F6281-A1";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300937 else
938 return "MV88F6281-Rev-Unsupported";
939 } else if (dev == MV88F6192_DEV_ID) {
940 if (rev == MV88F6192_REV_Z0)
941 return "MV88F6192-Z0";
942 else if (rev == MV88F6192_REV_A0)
943 return "MV88F6192-A0";
Saeed Bishara1c2003a2010-06-01 18:09:26 +0300944 else if (rev == MV88F6192_REV_A1)
945 return "MV88F6192-A1";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300946 else
947 return "MV88F6192-Rev-Unsupported";
948 } else if (dev == MV88F6180_DEV_ID) {
949 if (rev == MV88F6180_REV_A0)
950 return "MV88F6180-Rev-A0";
Saeed Bishara1c2003a2010-06-01 18:09:26 +0300951 else if (rev == MV88F6180_REV_A1)
952 return "MV88F6180-Rev-A1";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300953 else
954 return "MV88F6180-Rev-Unsupported";
Saeed Bishara1e4d2d32010-06-01 18:09:27 +0300955 } else if (dev == MV88F6282_DEV_ID) {
956 if (rev == MV88F6282_REV_A0)
957 return "MV88F6282-Rev-A0";
958 else
959 return "MV88F6282-Rev-Unsupported";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300960 } else {
961 return "Device-Unknown";
962 }
Saeed Bishara651c74c2008-06-22 22:45:06 +0200963}
964
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300965static void __init kirkwood_l2_init(void)
Saeed Bishara13387602008-06-23 01:05:08 -1100966{
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300967#ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
968 writel(readl(L2_CONFIG_REG) | L2_WRITETHROUGH, L2_CONFIG_REG);
969 feroceon_l2_init(1);
970#else
971 writel(readl(L2_CONFIG_REG) & ~L2_WRITETHROUGH, L2_CONFIG_REG);
972 feroceon_l2_init(0);
973#endif
Saeed Bishara13387602008-06-23 01:05:08 -1100974}
975
Saeed Bishara651c74c2008-06-22 22:45:06 +0200976void __init kirkwood_init(void)
977{
978 printk(KERN_INFO "Kirkwood: %s, TCLK=%d.\n",
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200979 kirkwood_id(), kirkwood_tclk);
980 kirkwood_ge00_shared_data.t_clk = kirkwood_tclk;
Nicolas Pitre13731d12009-01-06 23:02:08 +0100981 kirkwood_ge01_shared_data.t_clk = kirkwood_tclk;
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200982 kirkwood_spi_plat_data.tclk = kirkwood_tclk;
983 kirkwood_uart0_data[0].uartclk = kirkwood_tclk;
984 kirkwood_uart1_data[0].uartclk = kirkwood_tclk;
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200985 kirkwood_i2s_data.tclk = kirkwood_tclk;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200986
Lennert Buytenhek2bf30102009-11-12 20:31:14 +0100987 /*
988 * Disable propagation of mbus errors to the CPU local bus,
989 * as this causes mbus errors (which can occur for example
990 * for PCI aborts) to throw CPU aborts, which we're not set
991 * up to deal with.
992 */
993 writel(readl(CPU_CONFIG) & ~CPU_CONFIG_ERROR_PROP, CPU_CONFIG);
994
Saeed Bishara651c74c2008-06-22 22:45:06 +0200995 kirkwood_setup_cpu_mbus();
996
997#ifdef CONFIG_CACHE_FEROCEON_L2
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300998 kirkwood_l2_init();
Saeed Bishara651c74c2008-06-22 22:45:06 +0200999#endif
Nicolas Pitre5b99d532009-02-26 22:55:59 -05001000
1001 /* internal devices that every board has */
1002 kirkwood_rtc_init();
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +02001003 kirkwood_wdt_init();
Nicolas Pitre5b99d532009-02-26 22:55:59 -05001004 kirkwood_xor0_init();
1005 kirkwood_xor1_init();
Nicolas Pitreae5c8c82009-06-03 15:24:36 -04001006 kirkwood_crypto_init();
Eric Cooper9c153642011-02-02 17:16:11 -05001007
1008#ifdef CONFIG_KEXEC
1009 kexec_reinit = kirkwood_enable_pcie;
1010#endif
Saeed Bishara651c74c2008-06-22 22:45:06 +02001011}
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +02001012
1013static int __init kirkwood_clock_gate(void)
1014{
1015 unsigned int curr = readl(CLOCK_GATING_CTRL);
Saeed Bisharaffd58bd2010-06-08 14:21:34 +03001016 u32 dev, rev;
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +02001017
Saeed Bisharaffd58bd2010-06-08 14:21:34 +03001018 kirkwood_pcie_id(&dev, &rev);
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +02001019 printk(KERN_DEBUG "Gating clock of unused units\n");
1020 printk(KERN_DEBUG "before: 0x%08x\n", curr);
1021
1022 /* Make sure those units are accessible */
Saeed Bisharaffd58bd2010-06-08 14:21:34 +03001023 writel(curr | CGC_SATA0 | CGC_SATA1 | CGC_PEX0 | CGC_PEX1, CLOCK_GATING_CTRL);
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +02001024
1025 /* For SATA: first shutdown the phy */
1026 if (!(kirkwood_clk_ctrl & CGC_SATA0)) {
1027 /* Disable PLL and IVREF */
1028 writel(readl(SATA0_PHY_MODE_2) & ~0xf, SATA0_PHY_MODE_2);
1029 /* Disable PHY */
1030 writel(readl(SATA0_IF_CTRL) | 0x200, SATA0_IF_CTRL);
1031 }
1032 if (!(kirkwood_clk_ctrl & CGC_SATA1)) {
1033 /* Disable PLL and IVREF */
1034 writel(readl(SATA1_PHY_MODE_2) & ~0xf, SATA1_PHY_MODE_2);
1035 /* Disable PHY */
1036 writel(readl(SATA1_IF_CTRL) | 0x200, SATA1_IF_CTRL);
1037 }
1038
1039 /* For PCIe: first shutdown the phy */
1040 if (!(kirkwood_clk_ctrl & CGC_PEX0)) {
1041 writel(readl(PCIE_LINK_CTRL) | 0x10, PCIE_LINK_CTRL);
1042 while (1)
1043 if (readl(PCIE_STATUS) & 0x1)
1044 break;
1045 writel(readl(PCIE_LINK_CTRL) & ~0x10, PCIE_LINK_CTRL);
1046 }
1047
Saeed Bisharaffd58bd2010-06-08 14:21:34 +03001048 /* For PCIe 1: first shutdown the phy */
1049 if (dev == MV88F6282_DEV_ID) {
1050 if (!(kirkwood_clk_ctrl & CGC_PEX1)) {
1051 writel(readl(PCIE1_LINK_CTRL) | 0x10, PCIE1_LINK_CTRL);
1052 while (1)
1053 if (readl(PCIE1_STATUS) & 0x1)
1054 break;
1055 writel(readl(PCIE1_LINK_CTRL) & ~0x10, PCIE1_LINK_CTRL);
1056 }
1057 } else /* keep this bit set for devices that don't have PCIe1 */
1058 kirkwood_clk_ctrl |= CGC_PEX1;
1059
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +02001060 /* Now gate clock the required units */
1061 writel(kirkwood_clk_ctrl, CLOCK_GATING_CTRL);
1062 printk(KERN_DEBUG " after: 0x%08x\n", readl(CLOCK_GATING_CTRL));
1063
1064 return 0;
1065}
1066late_initcall(kirkwood_clock_gate);