]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/mach-kirkwood/common.c
ARM: delete struct sys_timer
[mirror_ubuntu-bionic-kernel.git] / arch / arm / mach-kirkwood / common.c
CommitLineData
651c74c7
SB
1/*
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>
651c74c7 15#include <linux/ata_platform.h>
fb7b2d3f 16#include <linux/mtd/nand.h>
ee962723 17#include <linux/dma-mapping.h>
2f129bf4
AL
18#include <linux/clk-provider.h>
19#include <linux/spinlock.h>
e91cac0a 20#include <linux/mv643xx_i2c.h>
98adf932
AL
21#include <linux/timex.h>
22#include <linux/kexec.h>
dcf1cece 23#include <net/dsa.h>
651c74c7 24#include <asm/page.h>
651c74c7
SB
25#include <asm/mach/map.h>
26#include <asm/mach/time.h>
a09e64fb 27#include <mach/kirkwood.h>
fdd8b079 28#include <mach/bridge-regs.h>
c02cecb9 29#include <linux/platform_data/asoc-kirkwood.h>
6f088f1d 30#include <plat/cache-feroceon-l2.h>
c02cecb9
AB
31#include <linux/platform_data/mmc-mvsdio.h>
32#include <linux/platform_data/mtd-orion_nand.h>
33#include <linux/platform_data/usb-ehci-orion.h>
28a2b450 34#include <plat/common.h>
6f088f1d 35#include <plat/time.h>
45173d5e 36#include <plat/addr-map.h>
c02cecb9 37#include <linux/platform_data/dma-mv_xor.h>
651c74c7
SB
38#include "common.h"
39
40/*****************************************************************************
41 * I/O Address Mapping
42 ****************************************************************************/
43static struct map_desc kirkwood_io_desc[] __initdata = {
44 {
060f3d19 45 .virtual = (unsigned long) KIRKWOOD_REGS_VIRT_BASE,
651c74c7
SB
46 .pfn = __phys_to_pfn(KIRKWOOD_REGS_PHYS_BASE),
47 .length = KIRKWOOD_REGS_SIZE,
48 .type = MT_DEVICE,
49 },
50};
51
52void __init kirkwood_map_io(void)
53{
54 iotable_init(kirkwood_io_desc, ARRAY_SIZE(kirkwood_io_desc));
55}
56
2f129bf4
AL
57/*****************************************************************************
58 * CLK tree
59 ****************************************************************************/
98d9986c 60
b5409430
SB
61static void enable_sata0(void)
62{
63 /* Enable PLL and IVREF */
64 writel(readl(SATA0_PHY_MODE_2) | 0xf, SATA0_PHY_MODE_2);
65 /* Enable PHY */
66 writel(readl(SATA0_IF_CTRL) & ~0x200, SATA0_IF_CTRL);
67}
68
98d9986c
AL
69static void disable_sata0(void)
70{
71 /* Disable PLL and IVREF */
72 writel(readl(SATA0_PHY_MODE_2) & ~0xf, SATA0_PHY_MODE_2);
73 /* Disable PHY */
74 writel(readl(SATA0_IF_CTRL) | 0x200, SATA0_IF_CTRL);
75}
76
b5409430
SB
77static void enable_sata1(void)
78{
79 /* Enable PLL and IVREF */
80 writel(readl(SATA1_PHY_MODE_2) | 0xf, SATA1_PHY_MODE_2);
81 /* Enable PHY */
82 writel(readl(SATA1_IF_CTRL) & ~0x200, SATA1_IF_CTRL);
83}
84
98d9986c
AL
85static void disable_sata1(void)
86{
87 /* Disable PLL and IVREF */
88 writel(readl(SATA1_PHY_MODE_2) & ~0xf, SATA1_PHY_MODE_2);
89 /* Disable PHY */
90 writel(readl(SATA1_IF_CTRL) | 0x200, SATA1_IF_CTRL);
91}
92
93static void disable_pcie0(void)
94{
95 writel(readl(PCIE_LINK_CTRL) | 0x10, PCIE_LINK_CTRL);
96 while (1)
97 if (readl(PCIE_STATUS) & 0x1)
98 break;
99 writel(readl(PCIE_LINK_CTRL) & ~0x10, PCIE_LINK_CTRL);
100}
101
102static void disable_pcie1(void)
103{
104 u32 dev, rev;
105
106 kirkwood_pcie_id(&dev, &rev);
107
108 if (dev == MV88F6282_DEV_ID) {
109 writel(readl(PCIE1_LINK_CTRL) | 0x10, PCIE1_LINK_CTRL);
110 while (1)
111 if (readl(PCIE1_STATUS) & 0x1)
112 break;
113 writel(readl(PCIE1_LINK_CTRL) & ~0x10, PCIE1_LINK_CTRL);
114 }
115}
116
b5409430
SB
117/* An extended version of the gated clk. This calls fn_en()/fn_dis
118 * before enabling/disabling the clock. We use this to turn on/off
119 * PHYs etc. */
98d9986c
AL
120struct clk_gate_fn {
121 struct clk_gate gate;
b5409430
SB
122 void (*fn_en)(void);
123 void (*fn_dis)(void);
98d9986c
AL
124};
125
126#define to_clk_gate_fn(_gate) container_of(_gate, struct clk_gate_fn, gate)
127#define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
128
b5409430
SB
129static int clk_gate_fn_enable(struct clk_hw *hw)
130{
131 struct clk_gate *gate = to_clk_gate(hw);
132 struct clk_gate_fn *gate_fn = to_clk_gate_fn(gate);
133 int ret;
134
135 ret = clk_gate_ops.enable(hw);
136 if (!ret && gate_fn->fn_en)
137 gate_fn->fn_en();
138
139 return ret;
140}
141
98d9986c
AL
142static void clk_gate_fn_disable(struct clk_hw *hw)
143{
144 struct clk_gate *gate = to_clk_gate(hw);
145 struct clk_gate_fn *gate_fn = to_clk_gate_fn(gate);
146
b5409430
SB
147 if (gate_fn->fn_dis)
148 gate_fn->fn_dis();
98d9986c
AL
149
150 clk_gate_ops.disable(hw);
151}
152
153static struct clk_ops clk_gate_fn_ops;
154
155static struct clk __init *clk_register_gate_fn(struct device *dev,
156 const char *name,
157 const char *parent_name, unsigned long flags,
158 void __iomem *reg, u8 bit_idx,
159 u8 clk_gate_flags, spinlock_t *lock,
b5409430 160 void (*fn_en)(void), void (*fn_dis)(void))
98d9986c
AL
161{
162 struct clk_gate_fn *gate_fn;
163 struct clk *clk;
164 struct clk_init_data init;
165
166 gate_fn = kzalloc(sizeof(struct clk_gate_fn), GFP_KERNEL);
167 if (!gate_fn) {
168 pr_err("%s: could not allocate gated clk\n", __func__);
169 return ERR_PTR(-ENOMEM);
170 }
171
172 init.name = name;
173 init.ops = &clk_gate_fn_ops;
174 init.flags = flags;
175 init.parent_names = (parent_name ? &parent_name : NULL);
176 init.num_parents = (parent_name ? 1 : 0);
177
178 /* struct clk_gate assignments */
179 gate_fn->gate.reg = reg;
180 gate_fn->gate.bit_idx = bit_idx;
181 gate_fn->gate.flags = clk_gate_flags;
182 gate_fn->gate.lock = lock;
183 gate_fn->gate.hw.init = &init;
b5409430
SB
184 gate_fn->fn_en = fn_en;
185 gate_fn->fn_dis = fn_dis;
98d9986c 186
b5409430
SB
187 /* ops is the gate ops, but with our enable/disable functions */
188 if (clk_gate_fn_ops.enable != clk_gate_fn_enable ||
189 clk_gate_fn_ops.disable != clk_gate_fn_disable) {
98d9986c 190 clk_gate_fn_ops = clk_gate_ops;
b5409430 191 clk_gate_fn_ops.enable = clk_gate_fn_enable;
98d9986c
AL
192 clk_gate_fn_ops.disable = clk_gate_fn_disable;
193 }
194
195 clk = clk_register(dev, &gate_fn->gate.hw);
196
197 if (IS_ERR(clk))
198 kfree(gate_fn);
199
200 return clk;
201}
202
2f129bf4
AL
203static DEFINE_SPINLOCK(gating_lock);
204static struct clk *tclk;
205
206static struct clk __init *kirkwood_register_gate(const char *name, u8 bit_idx)
207{
060f3d19 208 return clk_register_gate(NULL, name, "tclk", 0, CLOCK_GATING_CTRL,
2f129bf4
AL
209 bit_idx, 0, &gating_lock);
210}
211
98d9986c
AL
212static struct clk __init *kirkwood_register_gate_fn(const char *name,
213 u8 bit_idx,
b5409430
SB
214 void (*fn_en)(void),
215 void (*fn_dis)(void))
98d9986c 216{
060f3d19 217 return clk_register_gate_fn(NULL, name, "tclk", 0, CLOCK_GATING_CTRL,
b5409430 218 bit_idx, 0, &gating_lock, fn_en, fn_dis);
98d9986c
AL
219}
220
128789a8
AL
221static struct clk *ge0, *ge1;
222
2f129bf4
AL
223void __init kirkwood_clk_init(void)
224{
128789a8 225 struct clk *runit, *sata0, *sata1, *usb0, *sdio;
e919c716 226 struct clk *crypto, *xor0, *xor1, *pex0, *pex1, *audio;
4574b886 227
2f129bf4
AL
228 tclk = clk_register_fixed_rate(NULL, "tclk", NULL,
229 CLK_IS_ROOT, kirkwood_tclk);
230
4574b886 231 runit = kirkwood_register_gate("runit", CGC_BIT_RUNIT);
452503eb
AL
232 ge0 = kirkwood_register_gate("ge0", CGC_BIT_GE0);
233 ge1 = kirkwood_register_gate("ge1", CGC_BIT_GE1);
98d9986c 234 sata0 = kirkwood_register_gate_fn("sata0", CGC_BIT_SATA0,
b5409430 235 enable_sata0, disable_sata0);
98d9986c 236 sata1 = kirkwood_register_gate_fn("sata1", CGC_BIT_SATA1,
b5409430 237 enable_sata1, disable_sata1);
8c869eda 238 usb0 = kirkwood_register_gate("usb0", CGC_BIT_USB0);
f4f7561e 239 sdio = kirkwood_register_gate("sdio", CGC_BIT_SDIO);
1f80b126 240 crypto = kirkwood_register_gate("crypto", CGC_BIT_CRYPTO);
c510182b
AL
241 xor0 = kirkwood_register_gate("xor0", CGC_BIT_XOR0);
242 xor1 = kirkwood_register_gate("xor1", CGC_BIT_XOR1);
98d9986c 243 pex0 = kirkwood_register_gate_fn("pex0", CGC_BIT_PEX0,
b5409430 244 NULL, disable_pcie0);
98d9986c 245 pex1 = kirkwood_register_gate_fn("pex1", CGC_BIT_PEX1,
b5409430 246 NULL, disable_pcie1);
e919c716 247 audio = kirkwood_register_gate("audio", CGC_BIT_AUDIO);
2f129bf4
AL
248 kirkwood_register_gate("tdm", CGC_BIT_TDM);
249 kirkwood_register_gate("tsu", CGC_BIT_TSU);
4574b886
AL
250
251 /* clkdev entries, mapping clks to devices */
252 orion_clkdev_add(NULL, "orion_spi.0", runit);
253 orion_clkdev_add(NULL, "orion_spi.1", runit);
452503eb
AL
254 orion_clkdev_add(NULL, MV643XX_ETH_NAME ".0", ge0);
255 orion_clkdev_add(NULL, MV643XX_ETH_NAME ".1", ge1);
4f04be62 256 orion_clkdev_add(NULL, "orion_wdt", tclk);
eee98990
AL
257 orion_clkdev_add("0", "sata_mv.0", sata0);
258 orion_clkdev_add("1", "sata_mv.0", sata1);
8c869eda 259 orion_clkdev_add(NULL, "orion-ehci.0", usb0);
9c2bd504 260 orion_clkdev_add(NULL, "orion_nand", runit);
f4f7561e 261 orion_clkdev_add(NULL, "mvsdio", sdio);
1f80b126 262 orion_clkdev_add(NULL, "mv_crypto", crypto);
0dddee7a
TP
263 orion_clkdev_add(NULL, MV_XOR_NAME ".0", xor0);
264 orion_clkdev_add(NULL, MV_XOR_NAME ".1", xor1);
27e53cfb
AL
265 orion_clkdev_add("0", "pcie", pex0);
266 orion_clkdev_add("1", "pcie", pex1);
e919c716 267 orion_clkdev_add(NULL, "kirkwood-i2s", audio);
e91cac0a 268 orion_clkdev_add(NULL, MV64XXX_I2C_CTLR_NAME ".0", runit);
bff08445 269 orion_clkdev_add(NULL, MV64XXX_I2C_CTLR_NAME ".1", runit);
f479db44
AL
270
271 /* Marvell says runit is used by SPI, UART, NAND, TWSI, ...,
272 * so should never be gated.
273 */
274 clk_prepare_enable(runit);
2f129bf4
AL
275}
276
651c74c7
SB
277/*****************************************************************************
278 * EHCI0
279 ****************************************************************************/
651c74c7
SB
280void __init kirkwood_ehci_init(void)
281{
72053353 282 orion_ehci_init(USB_PHYS_BASE, IRQ_KIRKWOOD_USB, EHCI_PHY_NA);
651c74c7
SB
283}
284
285
286/*****************************************************************************
287 * GE00
288 ****************************************************************************/
651c74c7
SB
289void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data)
290{
db33f4de 291 orion_ge00_init(eth_data,
7e3819d8 292 GE00_PHYS_BASE, IRQ_KIRKWOOD_GE00_SUM,
58569aee 293 IRQ_KIRKWOOD_GE00_ERR, 1600);
128789a8
AL
294 /* The interface forgets the MAC address assigned by u-boot if
295 the clock is turned off, so claim the clk now. */
296 clk_prepare_enable(ge0);
651c74c7
SB
297}
298
299
d15fb9ef
RS
300/*****************************************************************************
301 * GE01
302 ****************************************************************************/
d15fb9ef
RS
303void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data)
304{
db33f4de 305 orion_ge01_init(eth_data,
7e3819d8 306 GE01_PHYS_BASE, IRQ_KIRKWOOD_GE01_SUM,
58569aee 307 IRQ_KIRKWOOD_GE01_ERR, 1600);
128789a8 308 clk_prepare_enable(ge1);
d15fb9ef
RS
309}
310
311
dcf1cece
LB
312/*****************************************************************************
313 * Ethernet switch
314 ****************************************************************************/
dcf1cece
LB
315void __init kirkwood_ge00_switch_init(struct dsa_platform_data *d, int irq)
316{
7e3819d8 317 orion_ge00_switch_init(d, irq);
dcf1cece
LB
318}
319
320
fb7b2d3f
NP
321/*****************************************************************************
322 * NAND flash
323 ****************************************************************************/
324static struct resource kirkwood_nand_resource = {
325 .flags = IORESOURCE_MEM,
326 .start = KIRKWOOD_NAND_MEM_PHYS_BASE,
327 .end = KIRKWOOD_NAND_MEM_PHYS_BASE +
328 KIRKWOOD_NAND_MEM_SIZE - 1,
329};
330
331static struct orion_nand_data kirkwood_nand_data = {
332 .cle = 0,
333 .ale = 1,
334 .width = 8,
335};
336
337static struct platform_device kirkwood_nand_flash = {
338 .name = "orion_nand",
339 .id = -1,
340 .dev = {
341 .platform_data = &kirkwood_nand_data,
342 },
343 .resource = &kirkwood_nand_resource,
344 .num_resources = 1,
345};
346
347void __init kirkwood_nand_init(struct mtd_partition *parts, int nr_parts,
348 int chip_delay)
349{
350 kirkwood_nand_data.parts = parts;
351 kirkwood_nand_data.nr_parts = nr_parts;
352 kirkwood_nand_data.chip_delay = chip_delay;
353 platform_device_register(&kirkwood_nand_flash);
354}
355
010937ec
BD
356void __init kirkwood_nand_init_rnb(struct mtd_partition *parts, int nr_parts,
357 int (*dev_ready)(struct mtd_info *))
358{
010937ec
BD
359 kirkwood_nand_data.parts = parts;
360 kirkwood_nand_data.nr_parts = nr_parts;
361 kirkwood_nand_data.dev_ready = dev_ready;
362 platform_device_register(&kirkwood_nand_flash);
363}
fb7b2d3f 364
651c74c7
SB
365/*****************************************************************************
366 * SoC RTC
367 ****************************************************************************/
e871b87a 368static void __init kirkwood_rtc_init(void)
651c74c7 369{
4748058c 370 orion_rtc_init(RTC_PHYS_BASE, IRQ_KIRKWOOD_RTC);
651c74c7
SB
371}
372
373
374/*****************************************************************************
375 * SATA
376 ****************************************************************************/
651c74c7
SB
377void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data)
378{
db33f4de 379 orion_sata_init(sata_data, SATA_PHYS_BASE, IRQ_KIRKWOOD_SATA);
651c74c7
SB
380}
381
382
8235ee00
NP
383/*****************************************************************************
384 * SD/SDIO/MMC
385 ****************************************************************************/
386static struct resource mvsdio_resources[] = {
387 [0] = {
388 .start = SDIO_PHYS_BASE,
389 .end = SDIO_PHYS_BASE + SZ_1K - 1,
390 .flags = IORESOURCE_MEM,
391 },
392 [1] = {
393 .start = IRQ_KIRKWOOD_SDIO,
394 .end = IRQ_KIRKWOOD_SDIO,
395 .flags = IORESOURCE_IRQ,
396 },
397};
398
5c602551 399static u64 mvsdio_dmamask = DMA_BIT_MASK(32);
8235ee00
NP
400
401static struct platform_device kirkwood_sdio = {
402 .name = "mvsdio",
403 .id = -1,
404 .dev = {
405 .dma_mask = &mvsdio_dmamask,
5c602551 406 .coherent_dma_mask = DMA_BIT_MASK(32),
8235ee00
NP
407 },
408 .num_resources = ARRAY_SIZE(mvsdio_resources),
409 .resource = mvsdio_resources,
410};
411
412void __init kirkwood_sdio_init(struct mvsdio_platform_data *mvsdio_data)
413{
414 u32 dev, rev;
415
416 kirkwood_pcie_id(&dev, &rev);
1e4d2d3d 417 if (rev == 0 && dev != MV88F6282_DEV_ID) /* catch all Kirkwood Z0's */
8235ee00
NP
418 mvsdio_data->clock = 100000000;
419 else
420 mvsdio_data->clock = 200000000;
8235ee00
NP
421 kirkwood_sdio.dev.platform_data = mvsdio_data;
422 platform_device_register(&kirkwood_sdio);
423}
424
425
18365d18
LB
426/*****************************************************************************
427 * SPI
428 ****************************************************************************/
d1c925b2 429void __init kirkwood_spi_init(void)
18365d18 430{
4574b886 431 orion_spi_init(SPI_PHYS_BASE);
18365d18
LB
432}
433
434
6574e001
MM
435/*****************************************************************************
436 * I2C
437 ****************************************************************************/
6574e001
MM
438void __init kirkwood_i2c_init(void)
439{
aac7ffa3 440 orion_i2c_init(I2C_PHYS_BASE, IRQ_KIRKWOOD_TWSI, 8);
6574e001
MM
441}
442
443
651c74c7
SB
444/*****************************************************************************
445 * UART0
446 ****************************************************************************/
651c74c7
SB
447
448void __init kirkwood_uart0_init(void)
449{
28a2b450 450 orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE,
74c33576 451 IRQ_KIRKWOOD_UART_0, tclk);
651c74c7
SB
452}
453
454
455/*****************************************************************************
456 * UART1
457 ****************************************************************************/
651c74c7
SB
458void __init kirkwood_uart1_init(void)
459{
28a2b450 460 orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE,
74c33576 461 IRQ_KIRKWOOD_UART_1, tclk);
651c74c7
SB
462}
463
ae5c8c83
NP
464/*****************************************************************************
465 * Cryptographic Engines and Security Accelerator (CESA)
466 ****************************************************************************/
ae5c8c83
NP
467void __init kirkwood_crypto_init(void)
468{
44350061
AL
469 orion_crypto_init(CRYPTO_PHYS_BASE, KIRKWOOD_SRAM_PHYS_BASE,
470 KIRKWOOD_SRAM_SIZE, IRQ_KIRKWOOD_CRYPTO);
ae5c8c83
NP
471}
472
473
09c0ed2e
SB
474/*****************************************************************************
475 * XOR0
476 ****************************************************************************/
2b45e05f 477void __init kirkwood_xor0_init(void)
09c0ed2e 478{
db33f4de 479 orion_xor0_init(XOR0_PHYS_BASE, XOR0_HIGH_PHYS_BASE,
ee962723 480 IRQ_KIRKWOOD_XOR_00, IRQ_KIRKWOOD_XOR_01);
09c0ed2e
SB
481}
482
483
484/*****************************************************************************
485 * XOR1
486 ****************************************************************************/
2b45e05f 487void __init kirkwood_xor1_init(void)
09c0ed2e 488{
ee962723
AL
489 orion_xor1_init(XOR1_PHYS_BASE, XOR1_HIGH_PHYS_BASE,
490 IRQ_KIRKWOOD_XOR_10, IRQ_KIRKWOOD_XOR_11);
09c0ed2e
SB
491}
492
493
054bd3f0
TR
494/*****************************************************************************
495 * Watchdog
496 ****************************************************************************/
2b45e05f 497void __init kirkwood_wdt_init(void)
054bd3f0 498{
4f04be62 499 orion_wdt_init();
054bd3f0
TR
500}
501
502
651c74c7
SB
503/*****************************************************************************
504 * Time handling
505 ****************************************************************************/
4ee1f6b5
LB
506void __init kirkwood_init_early(void)
507{
508 orion_time_set_base(TIMER_VIRT_BASE);
cb01b633
MS
509
510 /*
511 * Some Kirkwood devices allocate their coherent buffers from atomic
512 * context. Increase size of atomic coherent pool to make sure such
513 * the allocations won't fail.
514 */
515 init_dma_coherent_pool_size(SZ_1M);
4ee1f6b5
LB
516}
517
79d4dd77
RS
518int kirkwood_tclk;
519
9b8ebfec 520static int __init kirkwood_find_tclk(void)
79d4dd77 521{
b2b3dc2f
RS
522 u32 dev, rev;
523
524 kirkwood_pcie_id(&dev, &rev);
1e4d2d3d 525
2fa0f939
SG
526 if (dev == MV88F6281_DEV_ID || dev == MV88F6282_DEV_ID)
527 if (((readl(SAMPLE_AT_RESET) >> 21) & 1) == 0)
528 return 200000000;
b2b3dc2f 529
79d4dd77
RS
530 return 166666667;
531}
532
6bb27d73 533void __init kirkwood_timer_init(void)
651c74c7 534{
79d4dd77 535 kirkwood_tclk = kirkwood_find_tclk();
4ee1f6b5
LB
536
537 orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
538 IRQ_KIRKWOOD_BRIDGE, kirkwood_tclk);
651c74c7
SB
539}
540
49106c72 541/*****************************************************************************
542 * Audio
543 ****************************************************************************/
544static struct resource kirkwood_i2s_resources[] = {
545 [0] = {
546 .start = AUDIO_PHYS_BASE,
547 .end = AUDIO_PHYS_BASE + SZ_16K - 1,
548 .flags = IORESOURCE_MEM,
549 },
550 [1] = {
551 .start = IRQ_KIRKWOOD_I2S,
552 .end = IRQ_KIRKWOOD_I2S,
553 .flags = IORESOURCE_IRQ,
554 },
555};
556
557static struct kirkwood_asoc_platform_data kirkwood_i2s_data = {
49106c72 558 .burst = 128,
559};
560
561static struct platform_device kirkwood_i2s_device = {
562 .name = "kirkwood-i2s",
563 .id = -1,
564 .num_resources = ARRAY_SIZE(kirkwood_i2s_resources),
565 .resource = kirkwood_i2s_resources,
566 .dev = {
567 .platform_data = &kirkwood_i2s_data,
568 },
569};
570
f0fba2ad 571static struct platform_device kirkwood_pcm_device = {
c88e7b93 572 .name = "kirkwood-pcm-audio",
f0fba2ad
LG
573 .id = -1,
574};
575
49106c72 576void __init kirkwood_audio_init(void)
577{
49106c72 578 platform_device_register(&kirkwood_i2s_device);
f0fba2ad 579 platform_device_register(&kirkwood_pcm_device);
49106c72 580}
651c74c7
SB
581
582/*****************************************************************************
583 * General
584 ****************************************************************************/
b2b3dc2f
RS
585/*
586 * Identify device ID and revision.
587 */
2b45e05f 588char * __init kirkwood_id(void)
651c74c7 589{
b2b3dc2f
RS
590 u32 dev, rev;
591
592 kirkwood_pcie_id(&dev, &rev);
593
594 if (dev == MV88F6281_DEV_ID) {
595 if (rev == MV88F6281_REV_Z0)
596 return "MV88F6281-Z0";
597 else if (rev == MV88F6281_REV_A0)
598 return "MV88F6281-A0";
aec1bad3
SG
599 else if (rev == MV88F6281_REV_A1)
600 return "MV88F6281-A1";
b2b3dc2f
RS
601 else
602 return "MV88F6281-Rev-Unsupported";
603 } else if (dev == MV88F6192_DEV_ID) {
604 if (rev == MV88F6192_REV_Z0)
605 return "MV88F6192-Z0";
606 else if (rev == MV88F6192_REV_A0)
607 return "MV88F6192-A0";
1c2003a1
SB
608 else if (rev == MV88F6192_REV_A1)
609 return "MV88F6192-A1";
b2b3dc2f
RS
610 else
611 return "MV88F6192-Rev-Unsupported";
612 } else if (dev == MV88F6180_DEV_ID) {
613 if (rev == MV88F6180_REV_A0)
614 return "MV88F6180-Rev-A0";
1c2003a1
SB
615 else if (rev == MV88F6180_REV_A1)
616 return "MV88F6180-Rev-A1";
b2b3dc2f
RS
617 else
618 return "MV88F6180-Rev-Unsupported";
1e4d2d3d
SB
619 } else if (dev == MV88F6282_DEV_ID) {
620 if (rev == MV88F6282_REV_A0)
621 return "MV88F6282-Rev-A0";
a87d89e7
MM
622 else if (rev == MV88F6282_REV_A1)
623 return "MV88F6282-Rev-A1";
1e4d2d3d
SB
624 else
625 return "MV88F6282-Rev-Unsupported";
b2b3dc2f
RS
626 } else {
627 return "Device-Unknown";
651c74c7 628 }
651c74c7
SB
629}
630
2b45e05f 631void __init kirkwood_l2_init(void)
13387603 632{
1e9c06fb 633#ifdef CONFIG_CACHE_FEROCEON_L2
4360bb41
RS
634#ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
635 writel(readl(L2_CONFIG_REG) | L2_WRITETHROUGH, L2_CONFIG_REG);
636 feroceon_l2_init(1);
637#else
638 writel(readl(L2_CONFIG_REG) & ~L2_WRITETHROUGH, L2_CONFIG_REG);
639 feroceon_l2_init(0);
640#endif
1e9c06fb 641#endif
13387603
SB
642}
643
651c74c7
SB
644void __init kirkwood_init(void)
645{
98adf932 646 pr_info("Kirkwood: %s, TCLK=%d.\n", kirkwood_id(), kirkwood_tclk);
651c74c7 647
2bf30108
LB
648 /*
649 * Disable propagation of mbus errors to the CPU local bus,
650 * as this causes mbus errors (which can occur for example
651 * for PCI aborts) to throw CPU aborts, which we're not set
652 * up to deal with.
653 */
654 writel(readl(CPU_CONFIG) & ~CPU_CONFIG_ERROR_PROP, CPU_CONFIG);
655
651c74c7
SB
656 kirkwood_setup_cpu_mbus();
657
4360bb41 658 kirkwood_l2_init();
5b99d534 659
2f129bf4
AL
660 /* Setup root of clk tree */
661 kirkwood_clk_init();
662
5b99d534
NP
663 /* internal devices that every board has */
664 kirkwood_rtc_init();
054bd3f0 665 kirkwood_wdt_init();
5b99d534
NP
666 kirkwood_xor0_init();
667 kirkwood_xor1_init();
ae5c8c83 668 kirkwood_crypto_init();
9c15364f 669
98adf932 670#ifdef CONFIG_KEXEC
9c15364f
EC
671 kexec_reinit = kirkwood_enable_pcie;
672#endif
651c74c7 673}
e8b2b7ba 674
cb15dff4
RK
675void kirkwood_restart(char mode, const char *cmd)
676{
677 /*
678 * Enable soft reset to assert RSTOUTn.
679 */
680 writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);
681
682 /*
683 * Assert soft reset.
684 */
685 writel(SOFT_RESET, SYSTEM_SOFT_RESET);
686
687 while (1)
688 ;
689}