blob: 9e56cbb19184801712f21e39914d9eacccbc50d7 [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>
Saeed Bishara651c74c2008-06-22 22:45:06 +020016#include <linux/ata_platform.h>
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -040017#include <linux/mtd/nand.h>
Andrew Lunnee962722011-05-15 13:32:48 +020018#include <linux/dma-mapping.h>
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +020019#include <net/dsa.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020020#include <asm/page.h>
21#include <asm/timex.h>
Eric Cooper9c153642011-02-02 17:16:11 -050022#include <asm/kexec.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020023#include <asm/mach/map.h>
24#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/kirkwood.h>
Nicolas Pitrefdd8b072009-04-22 20:08:17 +010026#include <mach/bridge-regs.h>
apatard@mandriva.com49106c72010-05-31 13:49:12 +020027#include <plat/audio.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020028#include <plat/cache-feroceon-l2.h>
Nicolas Pitre8235ee02009-02-14 03:15:55 -050029#include <plat/mvsdio.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020030#include <plat/orion_nand.h>
Andrew Lunn28a2b452011-05-15 13:32:41 +020031#include <plat/common.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020032#include <plat/time.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020033#include "common.h"
34
35/*****************************************************************************
36 * I/O Address Mapping
37 ****************************************************************************/
38static struct map_desc kirkwood_io_desc[] __initdata = {
39 {
40 .virtual = KIRKWOOD_PCIE_IO_VIRT_BASE,
41 .pfn = __phys_to_pfn(KIRKWOOD_PCIE_IO_PHYS_BASE),
42 .length = KIRKWOOD_PCIE_IO_SIZE,
43 .type = MT_DEVICE,
44 }, {
Saeed Bisharaffd58bd2010-06-08 14:21:34 +030045 .virtual = KIRKWOOD_PCIE1_IO_VIRT_BASE,
46 .pfn = __phys_to_pfn(KIRKWOOD_PCIE1_IO_PHYS_BASE),
47 .length = KIRKWOOD_PCIE1_IO_SIZE,
48 .type = MT_DEVICE,
49 }, {
Saeed Bishara651c74c2008-06-22 22:45:06 +020050 .virtual = KIRKWOOD_REGS_VIRT_BASE,
51 .pfn = __phys_to_pfn(KIRKWOOD_REGS_PHYS_BASE),
52 .length = KIRKWOOD_REGS_SIZE,
53 .type = MT_DEVICE,
54 },
55};
56
57void __init kirkwood_map_io(void)
58{
59 iotable_init(kirkwood_io_desc, ARRAY_SIZE(kirkwood_io_desc));
60}
61
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +020062/*
63 * Default clock control bits. Any bit _not_ set in this variable
64 * will be cleared from the hardware after platform devices have been
65 * registered. Some reserved bits must be set to 1.
66 */
67unsigned int kirkwood_clk_ctrl = CGC_DUNIT | CGC_RESERVED;
Andrew Lunn7e3819d2011-05-15 13:32:44 +020068
Saeed Bishara651c74c2008-06-22 22:45:06 +020069
70/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +020071 * EHCI0
72 ****************************************************************************/
Saeed Bishara651c74c2008-06-22 22:45:06 +020073void __init kirkwood_ehci_init(void)
74{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +020075 kirkwood_clk_ctrl |= CGC_USB0;
Andrew Lunn4fcd3f32011-05-15 13:32:49 +020076 orion_ehci_init(&kirkwood_mbus_dram_info,
77 USB_PHYS_BASE, IRQ_KIRKWOOD_USB);
Saeed Bishara651c74c2008-06-22 22:45:06 +020078}
79
80
81/*****************************************************************************
82 * GE00
83 ****************************************************************************/
Saeed Bishara651c74c2008-06-22 22:45:06 +020084void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data)
85{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +020086 kirkwood_clk_ctrl |= CGC_GE0;
Saeed Bishara651c74c2008-06-22 22:45:06 +020087
Andrew Lunn7e3819d2011-05-15 13:32:44 +020088 orion_ge00_init(eth_data, &kirkwood_mbus_dram_info,
89 GE00_PHYS_BASE, IRQ_KIRKWOOD_GE00_SUM,
90 IRQ_KIRKWOOD_GE00_ERR, kirkwood_tclk);
Saeed Bishara651c74c2008-06-22 22:45:06 +020091}
92
93
94/*****************************************************************************
Ronen Shitritd15fb9e2008-10-19 23:10:14 +020095 * GE01
96 ****************************************************************************/
Ronen Shitritd15fb9e2008-10-19 23:10:14 +020097void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data)
98{
Ronen Shitritd15fb9e2008-10-19 23:10:14 +020099
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200100 kirkwood_clk_ctrl |= CGC_GE1;
101
102 orion_ge01_init(eth_data, &kirkwood_mbus_dram_info,
103 GE01_PHYS_BASE, IRQ_KIRKWOOD_GE01_SUM,
104 IRQ_KIRKWOOD_GE01_ERR, kirkwood_tclk);
Ronen Shitritd15fb9e2008-10-19 23:10:14 +0200105}
106
107
108/*****************************************************************************
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200109 * Ethernet switch
110 ****************************************************************************/
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200111void __init kirkwood_ge00_switch_init(struct dsa_platform_data *d, int irq)
112{
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200113 orion_ge00_switch_init(d, irq);
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200114}
115
116
117/*****************************************************************************
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400118 * NAND flash
119 ****************************************************************************/
120static struct resource kirkwood_nand_resource = {
121 .flags = IORESOURCE_MEM,
122 .start = KIRKWOOD_NAND_MEM_PHYS_BASE,
123 .end = KIRKWOOD_NAND_MEM_PHYS_BASE +
124 KIRKWOOD_NAND_MEM_SIZE - 1,
125};
126
127static struct orion_nand_data kirkwood_nand_data = {
128 .cle = 0,
129 .ale = 1,
130 .width = 8,
131};
132
133static struct platform_device kirkwood_nand_flash = {
134 .name = "orion_nand",
135 .id = -1,
136 .dev = {
137 .platform_data = &kirkwood_nand_data,
138 },
139 .resource = &kirkwood_nand_resource,
140 .num_resources = 1,
141};
142
143void __init kirkwood_nand_init(struct mtd_partition *parts, int nr_parts,
144 int chip_delay)
145{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200146 kirkwood_clk_ctrl |= CGC_RUNIT;
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400147 kirkwood_nand_data.parts = parts;
148 kirkwood_nand_data.nr_parts = nr_parts;
149 kirkwood_nand_data.chip_delay = chip_delay;
150 platform_device_register(&kirkwood_nand_flash);
151}
152
Ben Dooks010937e2010-04-20 10:26:19 +0100153void __init kirkwood_nand_init_rnb(struct mtd_partition *parts, int nr_parts,
154 int (*dev_ready)(struct mtd_info *))
155{
156 kirkwood_clk_ctrl |= CGC_RUNIT;
157 kirkwood_nand_data.parts = parts;
158 kirkwood_nand_data.nr_parts = nr_parts;
159 kirkwood_nand_data.dev_ready = dev_ready;
160 platform_device_register(&kirkwood_nand_flash);
161}
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -0400162
163/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200164 * SoC RTC
165 ****************************************************************************/
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500166static void __init kirkwood_rtc_init(void)
Saeed Bishara651c74c2008-06-22 22:45:06 +0200167{
Andrew Lunn47480582011-05-15 13:32:43 +0200168 orion_rtc_init(RTC_PHYS_BASE, IRQ_KIRKWOOD_RTC);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200169}
170
171
172/*****************************************************************************
173 * SATA
174 ****************************************************************************/
175static struct resource kirkwood_sata_resources[] = {
176 {
177 .name = "sata base",
178 .start = SATA_PHYS_BASE,
179 .end = SATA_PHYS_BASE + 0x5000 - 1,
180 .flags = IORESOURCE_MEM,
181 }, {
182 .name = "sata irq",
183 .start = IRQ_KIRKWOOD_SATA,
184 .end = IRQ_KIRKWOOD_SATA,
185 .flags = IORESOURCE_IRQ,
186 },
187};
188
189static struct platform_device kirkwood_sata = {
190 .name = "sata_mv",
191 .id = 0,
192 .dev = {
Andrew Lunn5c602552011-05-15 13:32:40 +0200193 .coherent_dma_mask = DMA_BIT_MASK(32),
Saeed Bishara651c74c2008-06-22 22:45:06 +0200194 },
195 .num_resources = ARRAY_SIZE(kirkwood_sata_resources),
196 .resource = kirkwood_sata_resources,
197};
198
199void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data)
200{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200201 kirkwood_clk_ctrl |= CGC_SATA0;
202 if (sata_data->n_ports > 1)
203 kirkwood_clk_ctrl |= CGC_SATA1;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200204 sata_data->dram = &kirkwood_mbus_dram_info;
205 kirkwood_sata.dev.platform_data = sata_data;
206 platform_device_register(&kirkwood_sata);
207}
208
209
210/*****************************************************************************
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500211 * SD/SDIO/MMC
212 ****************************************************************************/
213static struct resource mvsdio_resources[] = {
214 [0] = {
215 .start = SDIO_PHYS_BASE,
216 .end = SDIO_PHYS_BASE + SZ_1K - 1,
217 .flags = IORESOURCE_MEM,
218 },
219 [1] = {
220 .start = IRQ_KIRKWOOD_SDIO,
221 .end = IRQ_KIRKWOOD_SDIO,
222 .flags = IORESOURCE_IRQ,
223 },
224};
225
Andrew Lunn5c602552011-05-15 13:32:40 +0200226static u64 mvsdio_dmamask = DMA_BIT_MASK(32);
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500227
228static struct platform_device kirkwood_sdio = {
229 .name = "mvsdio",
230 .id = -1,
231 .dev = {
232 .dma_mask = &mvsdio_dmamask,
Andrew Lunn5c602552011-05-15 13:32:40 +0200233 .coherent_dma_mask = DMA_BIT_MASK(32),
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500234 },
235 .num_resources = ARRAY_SIZE(mvsdio_resources),
236 .resource = mvsdio_resources,
237};
238
239void __init kirkwood_sdio_init(struct mvsdio_platform_data *mvsdio_data)
240{
241 u32 dev, rev;
242
243 kirkwood_pcie_id(&dev, &rev);
Saeed Bishara1e4d2d32010-06-01 18:09:27 +0300244 if (rev == 0 && dev != MV88F6282_DEV_ID) /* catch all Kirkwood Z0's */
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500245 mvsdio_data->clock = 100000000;
246 else
247 mvsdio_data->clock = 200000000;
248 mvsdio_data->dram = &kirkwood_mbus_dram_info;
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200249 kirkwood_clk_ctrl |= CGC_SDIO;
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500250 kirkwood_sdio.dev.platform_data = mvsdio_data;
251 platform_device_register(&kirkwood_sdio);
252}
253
254
255/*****************************************************************************
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200256 * SPI
257 ****************************************************************************/
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200258void __init kirkwood_spi_init()
259{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200260 kirkwood_clk_ctrl |= CGC_RUNIT;
Andrew Lunn980f9f62011-05-15 13:32:46 +0200261 orion_spi_init(SPI_PHYS_BASE, kirkwood_tclk);
Lennert Buytenhek18365d12008-08-09 15:38:18 +0200262}
263
264
265/*****************************************************************************
Martin Michlmayr6574e002009-03-23 19:13:21 +0100266 * I2C
267 ****************************************************************************/
Martin Michlmayr6574e002009-03-23 19:13:21 +0100268void __init kirkwood_i2c_init(void)
269{
Andrew Lunnaac7ffa2011-05-15 13:32:45 +0200270 orion_i2c_init(I2C_PHYS_BASE, IRQ_KIRKWOOD_TWSI, 8);
Martin Michlmayr6574e002009-03-23 19:13:21 +0100271}
272
273
274/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200275 * UART0
276 ****************************************************************************/
Saeed Bishara651c74c2008-06-22 22:45:06 +0200277
278void __init kirkwood_uart0_init(void)
279{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200280 orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE,
281 IRQ_KIRKWOOD_UART_0, kirkwood_tclk);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200282}
283
284
285/*****************************************************************************
286 * UART1
287 ****************************************************************************/
Saeed Bishara651c74c2008-06-22 22:45:06 +0200288void __init kirkwood_uart1_init(void)
289{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200290 orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE,
291 IRQ_KIRKWOOD_UART_1, kirkwood_tclk);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200292}
293
Saeed Bishara651c74c2008-06-22 22:45:06 +0200294/*****************************************************************************
Nicolas Pitreae5c8c82009-06-03 15:24:36 -0400295 * Cryptographic Engines and Security Accelerator (CESA)
296 ****************************************************************************/
297
298static struct resource kirkwood_crypto_res[] = {
299 {
300 .name = "regs",
301 .start = CRYPTO_PHYS_BASE,
302 .end = CRYPTO_PHYS_BASE + 0xffff,
303 .flags = IORESOURCE_MEM,
304 }, {
305 .name = "sram",
306 .start = KIRKWOOD_SRAM_PHYS_BASE,
307 .end = KIRKWOOD_SRAM_PHYS_BASE + KIRKWOOD_SRAM_SIZE - 1,
308 .flags = IORESOURCE_MEM,
309 }, {
310 .name = "crypto interrupt",
311 .start = IRQ_KIRKWOOD_CRYPTO,
312 .end = IRQ_KIRKWOOD_CRYPTO,
313 .flags = IORESOURCE_IRQ,
314 },
315};
316
317static struct platform_device kirkwood_crypto_device = {
318 .name = "mv_crypto",
319 .id = -1,
320 .num_resources = ARRAY_SIZE(kirkwood_crypto_res),
321 .resource = kirkwood_crypto_res,
322};
323
324void __init kirkwood_crypto_init(void)
325{
326 kirkwood_clk_ctrl |= CGC_CRYPTO;
327 platform_device_register(&kirkwood_crypto_device);
328}
329
330
331/*****************************************************************************
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100332 * XOR0
333 ****************************************************************************/
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500334static void __init kirkwood_xor0_init(void)
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100335{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200336 kirkwood_clk_ctrl |= CGC_XOR0;
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100337
Andrew Lunnee962722011-05-15 13:32:48 +0200338 orion_xor0_init(&kirkwood_mbus_dram_info,
339 XOR0_PHYS_BASE, XOR0_HIGH_PHYS_BASE,
340 IRQ_KIRKWOOD_XOR_00, IRQ_KIRKWOOD_XOR_01);
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100341}
342
343
344/*****************************************************************************
345 * XOR1
346 ****************************************************************************/
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500347static void __init kirkwood_xor1_init(void)
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100348{
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200349 kirkwood_clk_ctrl |= CGC_XOR1;
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100350
Andrew Lunnee962722011-05-15 13:32:48 +0200351 orion_xor1_init(XOR1_PHYS_BASE, XOR1_HIGH_PHYS_BASE,
352 IRQ_KIRKWOOD_XOR_10, IRQ_KIRKWOOD_XOR_11);
Saeed Bishara09c0ed22008-06-23 04:26:07 -1100353}
354
355
356/*****************************************************************************
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200357 * Watchdog
358 ****************************************************************************/
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200359static void __init kirkwood_wdt_init(void)
360{
Andrew Lunn5e00d372011-05-15 13:32:47 +0200361 orion_wdt_init(kirkwood_tclk);
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200362}
363
364
365/*****************************************************************************
Saeed Bishara651c74c2008-06-22 22:45:06 +0200366 * Time handling
367 ****************************************************************************/
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200368void __init kirkwood_init_early(void)
369{
370 orion_time_set_base(TIMER_VIRT_BASE);
371}
372
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200373int kirkwood_tclk;
374
Nicolas Pitre9b8ebfe2011-03-03 15:08:53 -0500375static int __init kirkwood_find_tclk(void)
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200376{
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300377 u32 dev, rev;
378
379 kirkwood_pcie_id(&dev, &rev);
Saeed Bishara1e4d2d32010-06-01 18:09:27 +0300380
Simon Guinot2fa0f932010-10-21 11:42:28 +0200381 if (dev == MV88F6281_DEV_ID || dev == MV88F6282_DEV_ID)
382 if (((readl(SAMPLE_AT_RESET) >> 21) & 1) == 0)
383 return 200000000;
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300384
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200385 return 166666667;
386}
387
Li Jie6de95c12009-11-05 07:29:54 -0800388static void __init kirkwood_timer_init(void)
Saeed Bishara651c74c2008-06-22 22:45:06 +0200389{
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200390 kirkwood_tclk = kirkwood_find_tclk();
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200391
392 orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
393 IRQ_KIRKWOOD_BRIDGE, kirkwood_tclk);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200394}
395
396struct sys_timer kirkwood_timer = {
397 .init = kirkwood_timer_init,
398};
399
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200400/*****************************************************************************
401 * Audio
402 ****************************************************************************/
403static struct resource kirkwood_i2s_resources[] = {
404 [0] = {
405 .start = AUDIO_PHYS_BASE,
406 .end = AUDIO_PHYS_BASE + SZ_16K - 1,
407 .flags = IORESOURCE_MEM,
408 },
409 [1] = {
410 .start = IRQ_KIRKWOOD_I2S,
411 .end = IRQ_KIRKWOOD_I2S,
412 .flags = IORESOURCE_IRQ,
413 },
414};
415
416static struct kirkwood_asoc_platform_data kirkwood_i2s_data = {
417 .dram = &kirkwood_mbus_dram_info,
418 .burst = 128,
419};
420
421static struct platform_device kirkwood_i2s_device = {
422 .name = "kirkwood-i2s",
423 .id = -1,
424 .num_resources = ARRAY_SIZE(kirkwood_i2s_resources),
425 .resource = kirkwood_i2s_resources,
426 .dev = {
427 .platform_data = &kirkwood_i2s_data,
428 },
429};
430
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000431static struct platform_device kirkwood_pcm_device = {
Arnaud Patard (Rtp)c88e7b92010-08-30 16:00:05 +0200432 .name = "kirkwood-pcm-audio",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000433 .id = -1,
434};
435
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200436void __init kirkwood_audio_init(void)
437{
438 kirkwood_clk_ctrl |= CGC_AUDIO;
439 platform_device_register(&kirkwood_i2s_device);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000440 platform_device_register(&kirkwood_pcm_device);
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200441}
Saeed Bishara651c74c2008-06-22 22:45:06 +0200442
443/*****************************************************************************
444 * General
445 ****************************************************************************/
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300446/*
447 * Identify device ID and revision.
448 */
Saeed Bishara651c74c2008-06-22 22:45:06 +0200449static char * __init kirkwood_id(void)
450{
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300451 u32 dev, rev;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200452
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300453 kirkwood_pcie_id(&dev, &rev);
454
455 if (dev == MV88F6281_DEV_ID) {
456 if (rev == MV88F6281_REV_Z0)
457 return "MV88F6281-Z0";
458 else if (rev == MV88F6281_REV_A0)
459 return "MV88F6281-A0";
Siddarth Goreaec1bad2009-06-09 14:41:02 +0530460 else if (rev == MV88F6281_REV_A1)
461 return "MV88F6281-A1";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300462 else
463 return "MV88F6281-Rev-Unsupported";
464 } else if (dev == MV88F6192_DEV_ID) {
465 if (rev == MV88F6192_REV_Z0)
466 return "MV88F6192-Z0";
467 else if (rev == MV88F6192_REV_A0)
468 return "MV88F6192-A0";
Saeed Bishara1c2003a2010-06-01 18:09:26 +0300469 else if (rev == MV88F6192_REV_A1)
470 return "MV88F6192-A1";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300471 else
472 return "MV88F6192-Rev-Unsupported";
473 } else if (dev == MV88F6180_DEV_ID) {
474 if (rev == MV88F6180_REV_A0)
475 return "MV88F6180-Rev-A0";
Saeed Bishara1c2003a2010-06-01 18:09:26 +0300476 else if (rev == MV88F6180_REV_A1)
477 return "MV88F6180-Rev-A1";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300478 else
479 return "MV88F6180-Rev-Unsupported";
Saeed Bishara1e4d2d32010-06-01 18:09:27 +0300480 } else if (dev == MV88F6282_DEV_ID) {
481 if (rev == MV88F6282_REV_A0)
482 return "MV88F6282-Rev-A0";
483 else
484 return "MV88F6282-Rev-Unsupported";
Ronen Shitritb2b3dc22008-09-15 10:40:35 +0300485 } else {
486 return "Device-Unknown";
487 }
Saeed Bishara651c74c2008-06-22 22:45:06 +0200488}
489
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300490static void __init kirkwood_l2_init(void)
Saeed Bishara13387602008-06-23 01:05:08 -1100491{
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300492#ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
493 writel(readl(L2_CONFIG_REG) | L2_WRITETHROUGH, L2_CONFIG_REG);
494 feroceon_l2_init(1);
495#else
496 writel(readl(L2_CONFIG_REG) & ~L2_WRITETHROUGH, L2_CONFIG_REG);
497 feroceon_l2_init(0);
498#endif
Saeed Bishara13387602008-06-23 01:05:08 -1100499}
500
Saeed Bishara651c74c2008-06-22 22:45:06 +0200501void __init kirkwood_init(void)
502{
503 printk(KERN_INFO "Kirkwood: %s, TCLK=%d.\n",
Ronen Shitrit79d4dd72008-09-15 00:56:38 +0200504 kirkwood_id(), kirkwood_tclk);
apatard@mandriva.com49106c72010-05-31 13:49:12 +0200505 kirkwood_i2s_data.tclk = kirkwood_tclk;
Saeed Bishara651c74c2008-06-22 22:45:06 +0200506
Lennert Buytenhek2bf30102009-11-12 20:31:14 +0100507 /*
508 * Disable propagation of mbus errors to the CPU local bus,
509 * as this causes mbus errors (which can occur for example
510 * for PCI aborts) to throw CPU aborts, which we're not set
511 * up to deal with.
512 */
513 writel(readl(CPU_CONFIG) & ~CPU_CONFIG_ERROR_PROP, CPU_CONFIG);
514
Saeed Bishara651c74c2008-06-22 22:45:06 +0200515 kirkwood_setup_cpu_mbus();
516
517#ifdef CONFIG_CACHE_FEROCEON_L2
Ronen Shitrit4360bb42008-09-23 15:28:10 +0300518 kirkwood_l2_init();
Saeed Bishara651c74c2008-06-22 22:45:06 +0200519#endif
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500520
521 /* internal devices that every board has */
522 kirkwood_rtc_init();
Thomas Reitmayr054bd3f02009-06-01 13:38:34 +0200523 kirkwood_wdt_init();
Nicolas Pitre5b99d532009-02-26 22:55:59 -0500524 kirkwood_xor0_init();
525 kirkwood_xor1_init();
Nicolas Pitreae5c8c82009-06-03 15:24:36 -0400526 kirkwood_crypto_init();
Eric Cooper9c153642011-02-02 17:16:11 -0500527
528#ifdef CONFIG_KEXEC
529 kexec_reinit = kirkwood_enable_pcie;
530#endif
Saeed Bishara651c74c2008-06-22 22:45:06 +0200531}
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200532
533static int __init kirkwood_clock_gate(void)
534{
535 unsigned int curr = readl(CLOCK_GATING_CTRL);
Saeed Bisharaffd58bd2010-06-08 14:21:34 +0300536 u32 dev, rev;
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200537
Saeed Bisharaffd58bd2010-06-08 14:21:34 +0300538 kirkwood_pcie_id(&dev, &rev);
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200539 printk(KERN_DEBUG "Gating clock of unused units\n");
540 printk(KERN_DEBUG "before: 0x%08x\n", curr);
541
542 /* Make sure those units are accessible */
Saeed Bisharaffd58bd2010-06-08 14:21:34 +0300543 writel(curr | CGC_SATA0 | CGC_SATA1 | CGC_PEX0 | CGC_PEX1, CLOCK_GATING_CTRL);
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200544
545 /* For SATA: first shutdown the phy */
546 if (!(kirkwood_clk_ctrl & CGC_SATA0)) {
547 /* Disable PLL and IVREF */
548 writel(readl(SATA0_PHY_MODE_2) & ~0xf, SATA0_PHY_MODE_2);
549 /* Disable PHY */
550 writel(readl(SATA0_IF_CTRL) | 0x200, SATA0_IF_CTRL);
551 }
552 if (!(kirkwood_clk_ctrl & CGC_SATA1)) {
553 /* Disable PLL and IVREF */
554 writel(readl(SATA1_PHY_MODE_2) & ~0xf, SATA1_PHY_MODE_2);
555 /* Disable PHY */
556 writel(readl(SATA1_IF_CTRL) | 0x200, SATA1_IF_CTRL);
557 }
558
559 /* For PCIe: first shutdown the phy */
560 if (!(kirkwood_clk_ctrl & CGC_PEX0)) {
561 writel(readl(PCIE_LINK_CTRL) | 0x10, PCIE_LINK_CTRL);
562 while (1)
563 if (readl(PCIE_STATUS) & 0x1)
564 break;
565 writel(readl(PCIE_LINK_CTRL) & ~0x10, PCIE_LINK_CTRL);
566 }
567
Saeed Bisharaffd58bd2010-06-08 14:21:34 +0300568 /* For PCIe 1: first shutdown the phy */
569 if (dev == MV88F6282_DEV_ID) {
570 if (!(kirkwood_clk_ctrl & CGC_PEX1)) {
571 writel(readl(PCIE1_LINK_CTRL) | 0x10, PCIE1_LINK_CTRL);
572 while (1)
573 if (readl(PCIE1_STATUS) & 0x1)
574 break;
575 writel(readl(PCIE1_LINK_CTRL) & ~0x10, PCIE1_LINK_CTRL);
576 }
577 } else /* keep this bit set for devices that don't have PCIe1 */
578 kirkwood_clk_ctrl |= CGC_PEX1;
579
Rabeeh Khourye8b2b7b2009-03-22 17:30:32 +0200580 /* Now gate clock the required units */
581 writel(kirkwood_clk_ctrl, CLOCK_GATING_CTRL);
582 printk(KERN_DEBUG " after: 0x%08x\n", readl(CLOCK_GATING_CTRL));
583
584 return 0;
585}
586late_initcall(kirkwood_clock_gate);