blob: be887feea8283428abef9149be4f7ea9a4ed8221 [file] [log] [blame]
Saeed Bisharaedabd382009-08-06 15:12:43 +03001/*
2 * arch/arm/mach-dove/common.c
3 *
4 * Core functions for Marvell Dove 88AP510 System On Chip
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
Andrew Lunn2f129bf2011-12-15 08:15:07 +010011#include <linux/clk-provider.h>
Sebastian Hesselbarth5b03df92012-11-17 15:22:27 +010012#include <linux/clk/mvebu.h>
Sebastian Hesselbarthb3af7a12013-01-29 22:23:09 +010013#include <linux/dma-mapping.h>
14#include <linux/init.h>
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +020015#include <linux/of.h>
16#include <linux/of_platform.h>
Sebastian Hesselbarthb3af7a12013-01-29 22:23:09 +010017#include <linux/platform_data/dma-mv_xor.h>
18#include <linux/platform_data/usb-ehci-orion.h>
19#include <linux/platform_device.h>
Lennert Buytenhek573a6522009-11-24 19:33:52 +020020#include <asm/hardware/cache-tauros2.h>
Sebastian Hesselbarthb3af7a12013-01-29 22:23:09 +010021#include <asm/mach/arch.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030022#include <asm/mach/map.h>
23#include <asm/mach/time.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030024#include <mach/bridge-regs.h>
Sebastian Hesselbarthb3af7a12013-01-29 22:23:09 +010025#include <mach/pm.h>
Andrew Lunn28a2b452011-05-15 13:32:41 +020026#include <plat/common.h>
Sebastian Hesselbarthb3af7a12013-01-29 22:23:09 +010027#include <plat/irq.h>
28#include <plat/time.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030029#include "common.h"
30
31/*****************************************************************************
32 * I/O Address Mapping
33 ****************************************************************************/
34static struct map_desc dove_io_desc[] __initdata = {
35 {
Thomas Petazzonic3c5a282012-09-11 14:27:18 +020036 .virtual = (unsigned long) DOVE_SB_REGS_VIRT_BASE,
Saeed Bisharaedabd382009-08-06 15:12:43 +030037 .pfn = __phys_to_pfn(DOVE_SB_REGS_PHYS_BASE),
38 .length = DOVE_SB_REGS_SIZE,
39 .type = MT_DEVICE,
40 }, {
Thomas Petazzonic3c5a282012-09-11 14:27:18 +020041 .virtual = (unsigned long) DOVE_NB_REGS_VIRT_BASE,
Saeed Bisharaedabd382009-08-06 15:12:43 +030042 .pfn = __phys_to_pfn(DOVE_NB_REGS_PHYS_BASE),
43 .length = DOVE_NB_REGS_SIZE,
44 .type = MT_DEVICE,
Saeed Bisharaedabd382009-08-06 15:12:43 +030045 },
46};
47
48void __init dove_map_io(void)
49{
50 iotable_init(dove_io_desc, ARRAY_SIZE(dove_io_desc));
51}
52
53/*****************************************************************************
Andrew Lunn2f129bf2011-12-15 08:15:07 +010054 * CLK tree
55 ****************************************************************************/
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +020056static int dove_tclk;
Sebastian Hesselbarth52167472012-08-15 19:07:31 +020057
58static DEFINE_SPINLOCK(gating_lock);
Andrew Lunn2f129bf2011-12-15 08:15:07 +010059static struct clk *tclk;
60
Sebastian Hesselbarth52167472012-08-15 19:07:31 +020061static struct clk __init *dove_register_gate(const char *name,
62 const char *parent, u8 bit_idx)
Andrew Lunn2f129bf2011-12-15 08:15:07 +010063{
Sebastian Hesselbarth52167472012-08-15 19:07:31 +020064 return clk_register_gate(NULL, name, parent, 0,
65 (void __iomem *)CLOCK_GATING_CONTROL,
66 bit_idx, 0, &gating_lock);
67}
Andrew Lunn4574b882012-04-06 17:17:26 +020068
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +020069static void __init dove_clk_init(void)
Andrew Lunn2f129bf2011-12-15 08:15:07 +010070{
Sebastian Hesselbarth52167472012-08-15 19:07:31 +020071 struct clk *usb0, *usb1, *sata, *pex0, *pex1, *sdio0, *sdio1;
72 struct clk *nand, *camera, *i2s0, *i2s1, *crypto, *ac97, *pdma;
73 struct clk *xor0, *xor1, *ge, *gephy;
74
Andrew Lunn2f129bf2011-12-15 08:15:07 +010075 tclk = clk_register_fixed_rate(NULL, "tclk", NULL, CLK_IS_ROOT,
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +020076 dove_tclk);
Andrew Lunn4574b882012-04-06 17:17:26 +020077
Sebastian Hesselbarth52167472012-08-15 19:07:31 +020078 usb0 = dove_register_gate("usb0", "tclk", CLOCK_GATING_BIT_USB0);
79 usb1 = dove_register_gate("usb1", "tclk", CLOCK_GATING_BIT_USB1);
80 sata = dove_register_gate("sata", "tclk", CLOCK_GATING_BIT_SATA);
81 pex0 = dove_register_gate("pex0", "tclk", CLOCK_GATING_BIT_PCIE0);
82 pex1 = dove_register_gate("pex1", "tclk", CLOCK_GATING_BIT_PCIE1);
83 sdio0 = dove_register_gate("sdio0", "tclk", CLOCK_GATING_BIT_SDIO0);
84 sdio1 = dove_register_gate("sdio1", "tclk", CLOCK_GATING_BIT_SDIO1);
85 nand = dove_register_gate("nand", "tclk", CLOCK_GATING_BIT_NAND);
86 camera = dove_register_gate("camera", "tclk", CLOCK_GATING_BIT_CAMERA);
87 i2s0 = dove_register_gate("i2s0", "tclk", CLOCK_GATING_BIT_I2S0);
88 i2s1 = dove_register_gate("i2s1", "tclk", CLOCK_GATING_BIT_I2S1);
89 crypto = dove_register_gate("crypto", "tclk", CLOCK_GATING_BIT_CRYPTO);
90 ac97 = dove_register_gate("ac97", "tclk", CLOCK_GATING_BIT_AC97);
91 pdma = dove_register_gate("pdma", "tclk", CLOCK_GATING_BIT_PDMA);
92 xor0 = dove_register_gate("xor0", "tclk", CLOCK_GATING_BIT_XOR0);
93 xor1 = dove_register_gate("xor1", "tclk", CLOCK_GATING_BIT_XOR1);
94 gephy = dove_register_gate("gephy", "tclk", CLOCK_GATING_BIT_GIGA_PHY);
95 ge = dove_register_gate("ge", "gephy", CLOCK_GATING_BIT_GBE);
96
97 orion_clkdev_add(NULL, "orion_spi.0", tclk);
98 orion_clkdev_add(NULL, "orion_spi.1", tclk);
99 orion_clkdev_add(NULL, "orion_wdt", tclk);
100 orion_clkdev_add(NULL, "mv64xxx_i2c.0", tclk);
101
102 orion_clkdev_add(NULL, "orion-ehci.0", usb0);
103 orion_clkdev_add(NULL, "orion-ehci.1", usb1);
Sebastian Hesselbarth3fbcd3d2012-09-25 02:02:15 +0200104 orion_clkdev_add(NULL, "mv643xx_eth_port.0", ge);
105 orion_clkdev_add(NULL, "sata_mv.0", sata);
Sebastian Hesselbarth52167472012-08-15 19:07:31 +0200106 orion_clkdev_add("0", "pcie", pex0);
107 orion_clkdev_add("1", "pcie", pex1);
108 orion_clkdev_add(NULL, "sdhci-dove.0", sdio0);
109 orion_clkdev_add(NULL, "sdhci-dove.1", sdio1);
110 orion_clkdev_add(NULL, "orion_nand", nand);
111 orion_clkdev_add(NULL, "cafe1000-ccic.0", camera);
112 orion_clkdev_add(NULL, "kirkwood-i2s.0", i2s0);
113 orion_clkdev_add(NULL, "kirkwood-i2s.1", i2s1);
114 orion_clkdev_add(NULL, "mv_crypto", crypto);
115 orion_clkdev_add(NULL, "dove-ac97", ac97);
116 orion_clkdev_add(NULL, "dove-pdma", pdma);
Thomas Petazzoni0dddee72012-10-30 11:59:42 +0100117 orion_clkdev_add(NULL, MV_XOR_NAME ".0", xor0);
118 orion_clkdev_add(NULL, MV_XOR_NAME ".1", xor1);
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100119}
120
121/*****************************************************************************
Saeed Bisharaedabd382009-08-06 15:12:43 +0300122 * EHCI0
123 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300124void __init dove_ehci0_init(void)
125{
Andrew Lunn72053352012-02-08 15:52:47 +0100126 orion_ehci_init(DOVE_USB0_PHYS_BASE, IRQ_DOVE_USB0, EHCI_PHY_NA);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300127}
128
129/*****************************************************************************
130 * EHCI1
131 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300132void __init dove_ehci1_init(void)
133{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100134 orion_ehci_1_init(DOVE_USB1_PHYS_BASE, IRQ_DOVE_USB1);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300135}
136
137/*****************************************************************************
138 * GE00
139 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300140void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data)
141{
Hannes Reinecke30e0f582012-06-12 15:59:45 +0200142 orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE,
Arnaud Patard (Rtp)58569ae2012-07-26 12:15:46 +0200143 IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR,
144 1600);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300145}
146
147/*****************************************************************************
148 * SoC RTC
149 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300150void __init dove_rtc_init(void)
151{
Andrew Lunnf6eaccb2011-05-15 13:32:42 +0200152 orion_rtc_init(DOVE_RTC_PHYS_BASE, IRQ_DOVE_RTC);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300153}
154
155/*****************************************************************************
156 * SATA
157 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300158void __init dove_sata_init(struct mv_sata_platform_data *sata_data)
159{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100160 orion_sata_init(sata_data, DOVE_SATA_PHYS_BASE, IRQ_DOVE_SATA);
Andrew Lunn9e613f82011-05-15 13:32:50 +0200161
Saeed Bisharaedabd382009-08-06 15:12:43 +0300162}
163
164/*****************************************************************************
165 * UART0
166 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300167void __init dove_uart0_init(void)
168{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200169 orion_uart0_init(DOVE_UART0_VIRT_BASE, DOVE_UART0_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100170 IRQ_DOVE_UART_0, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300171}
172
173/*****************************************************************************
174 * UART1
175 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300176void __init dove_uart1_init(void)
177{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200178 orion_uart1_init(DOVE_UART1_VIRT_BASE, DOVE_UART1_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100179 IRQ_DOVE_UART_1, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300180}
181
182/*****************************************************************************
183 * UART2
184 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300185void __init dove_uart2_init(void)
186{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200187 orion_uart2_init(DOVE_UART2_VIRT_BASE, DOVE_UART2_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100188 IRQ_DOVE_UART_2, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300189}
190
191/*****************************************************************************
192 * UART3
193 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300194void __init dove_uart3_init(void)
195{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200196 orion_uart3_init(DOVE_UART3_VIRT_BASE, DOVE_UART3_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100197 IRQ_DOVE_UART_3, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300198}
199
200/*****************************************************************************
Andrew Lunn980f9f62011-05-15 13:32:46 +0200201 * SPI
Saeed Bisharaedabd382009-08-06 15:12:43 +0300202 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300203void __init dove_spi0_init(void)
204{
Andrew Lunn4574b882012-04-06 17:17:26 +0200205 orion_spi_init(DOVE_SPI0_PHYS_BASE);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300206}
207
Saeed Bisharaedabd382009-08-06 15:12:43 +0300208void __init dove_spi1_init(void)
209{
Andrew Lunn4574b882012-04-06 17:17:26 +0200210 orion_spi_1_init(DOVE_SPI1_PHYS_BASE);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300211}
212
213/*****************************************************************************
214 * I2C
215 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300216void __init dove_i2c_init(void)
217{
Andrew Lunnaac7ffa2011-05-15 13:32:45 +0200218 orion_i2c_init(DOVE_I2C_PHYS_BASE, IRQ_DOVE_I2C, 10);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300219}
220
221/*****************************************************************************
222 * Time handling
223 ****************************************************************************/
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200224void __init dove_init_early(void)
225{
226 orion_time_set_base(TIMER_VIRT_BASE);
227}
228
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +0200229static int __init dove_find_tclk(void)
Saeed Bisharaedabd382009-08-06 15:12:43 +0300230{
Saeed Bisharaedabd382009-08-06 15:12:43 +0300231 return 166666667;
232}
233
Andrew Lunnca2ac5c2012-05-14 11:28:43 +0200234static void __init dove_timer_init(void)
Saeed Bisharaedabd382009-08-06 15:12:43 +0300235{
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +0200236 dove_tclk = dove_find_tclk();
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200237 orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +0200238 IRQ_DOVE_BRIDGE, dove_tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300239}
240
241struct sys_timer dove_timer = {
242 .init = dove_timer_init,
243};
244
245/*****************************************************************************
Sebastian Hesselbarth624d0b52012-08-15 19:07:32 +0200246 * Cryptographic Engines and Security Accelerator (CESA)
247 ****************************************************************************/
248void __init dove_crypto_init(void)
249{
250 orion_crypto_init(DOVE_CRYPT_PHYS_BASE, DOVE_CESA_PHYS_BASE,
251 DOVE_CESA_SIZE, IRQ_DOVE_CRYPTO);
252}
253
254/*****************************************************************************
Saeed Bisharaedabd382009-08-06 15:12:43 +0300255 * XOR 0
256 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300257void __init dove_xor0_init(void)
258{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100259 orion_xor0_init(DOVE_XOR0_PHYS_BASE, DOVE_XOR0_HIGH_PHYS_BASE,
Andrew Lunnee962722011-05-15 13:32:48 +0200260 IRQ_DOVE_XOR_00, IRQ_DOVE_XOR_01);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300261}
262
263/*****************************************************************************
264 * XOR 1
265 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300266void __init dove_xor1_init(void)
267{
Andrew Lunnee962722011-05-15 13:32:48 +0200268 orion_xor1_init(DOVE_XOR1_PHYS_BASE, DOVE_XOR1_HIGH_PHYS_BASE,
269 IRQ_DOVE_XOR_10, IRQ_DOVE_XOR_11);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300270}
271
Saeed Bishara16bc90a2010-05-06 16:12:06 +0300272/*****************************************************************************
273 * SDIO
274 ****************************************************************************/
275static u64 sdio_dmamask = DMA_BIT_MASK(32);
276
277static struct resource dove_sdio0_resources[] = {
278 {
279 .start = DOVE_SDIO0_PHYS_BASE,
280 .end = DOVE_SDIO0_PHYS_BASE + 0xff,
281 .flags = IORESOURCE_MEM,
282 }, {
283 .start = IRQ_DOVE_SDIO0,
284 .end = IRQ_DOVE_SDIO0,
285 .flags = IORESOURCE_IRQ,
286 },
287};
288
289static struct platform_device dove_sdio0 = {
Mike Rapoport930e2fe2010-10-28 21:23:53 +0200290 .name = "sdhci-dove",
Saeed Bishara16bc90a2010-05-06 16:12:06 +0300291 .id = 0,
292 .dev = {
293 .dma_mask = &sdio_dmamask,
294 .coherent_dma_mask = DMA_BIT_MASK(32),
295 },
296 .resource = dove_sdio0_resources,
297 .num_resources = ARRAY_SIZE(dove_sdio0_resources),
298};
299
300void __init dove_sdio0_init(void)
301{
302 platform_device_register(&dove_sdio0);
303}
304
305static struct resource dove_sdio1_resources[] = {
306 {
307 .start = DOVE_SDIO1_PHYS_BASE,
308 .end = DOVE_SDIO1_PHYS_BASE + 0xff,
309 .flags = IORESOURCE_MEM,
310 }, {
311 .start = IRQ_DOVE_SDIO1,
312 .end = IRQ_DOVE_SDIO1,
313 .flags = IORESOURCE_IRQ,
314 },
315};
316
317static struct platform_device dove_sdio1 = {
Mike Rapoport930e2fe2010-10-28 21:23:53 +0200318 .name = "sdhci-dove",
Saeed Bishara16bc90a2010-05-06 16:12:06 +0300319 .id = 1,
320 .dev = {
321 .dma_mask = &sdio_dmamask,
322 .coherent_dma_mask = DMA_BIT_MASK(32),
323 },
324 .resource = dove_sdio1_resources,
325 .num_resources = ARRAY_SIZE(dove_sdio1_resources),
326};
327
328void __init dove_sdio1_init(void)
329{
330 platform_device_register(&dove_sdio1);
331}
332
Saeed Bisharaedabd382009-08-06 15:12:43 +0300333void __init dove_init(void)
334{
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +0200335 pr_info("Dove 88AP510 SoC, TCLK = %d MHz.\n",
336 (dove_tclk + 499999) / 1000000);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300337
Lennert Buytenhek573a6522009-11-24 19:33:52 +0200338#ifdef CONFIG_CACHE_TAUROS2
Chao Xie5cc58152012-07-31 14:13:13 +0800339 tauros2_init(0);
Lennert Buytenhek573a6522009-11-24 19:33:52 +0200340#endif
Saeed Bisharaedabd382009-08-06 15:12:43 +0300341 dove_setup_cpu_mbus();
342
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100343 /* Setup root of clk tree */
Sebastian Hesselbarth5817d10b2012-08-15 19:07:30 +0200344 dove_clk_init();
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100345
Saeed Bisharaedabd382009-08-06 15:12:43 +0300346 /* internal devices that every board has */
347 dove_rtc_init();
348 dove_xor0_init();
349 dove_xor1_init();
350}
Russell King6ca6ff92011-11-05 09:48:52 +0000351
352void dove_restart(char mode, const char *cmd)
353{
354 /*
355 * Enable soft reset to assert RSTOUTn.
356 */
357 writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);
358
359 /*
360 * Assert soft reset.
361 */
362 writel(SOFT_RESET, SYSTEM_SOFT_RESET);
363
364 while (1)
365 ;
366}
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200367
368#if defined(CONFIG_MACH_DOVE_DT)
369/*
Sebastian Hesselbarth5b03df92012-11-17 15:22:27 +0100370 * There are still devices that doesn't even know about DT,
371 * get clock gates here and add a clock lookup.
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200372 */
Sebastian Hesselbarth5b03df92012-11-17 15:22:27 +0100373static void __init dove_legacy_clk_init(void)
374{
375 struct device_node *np = of_find_compatible_node(NULL, NULL,
376 "marvell,dove-gating-clock");
377 struct of_phandle_args clkspec;
378
379 clkspec.np = np;
380 clkspec.args_count = 1;
381
382 clkspec.args[0] = CLOCK_GATING_BIT_USB0;
383 orion_clkdev_add(NULL, "orion-ehci.0",
384 of_clk_get_from_provider(&clkspec));
385
386 clkspec.args[0] = CLOCK_GATING_BIT_USB1;
387 orion_clkdev_add(NULL, "orion-ehci.1",
388 of_clk_get_from_provider(&clkspec));
389
390 clkspec.args[0] = CLOCK_GATING_BIT_GBE;
391 orion_clkdev_add(NULL, "mv643xx_eth_port.0",
392 of_clk_get_from_provider(&clkspec));
393
394 clkspec.args[0] = CLOCK_GATING_BIT_PCIE0;
395 orion_clkdev_add("0", "pcie",
396 of_clk_get_from_provider(&clkspec));
397
398 clkspec.args[0] = CLOCK_GATING_BIT_PCIE1;
399 orion_clkdev_add("1", "pcie",
400 of_clk_get_from_provider(&clkspec));
Sebastian Hesselbarth5b03df92012-11-17 15:22:27 +0100401}
402
403static void __init dove_of_clk_init(void)
404{
405 mvebu_clocks_init();
406 dove_legacy_clk_init();
407}
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200408
409static struct mv643xx_eth_platform_data dove_dt_ge00_data = {
410 .phy_addr = MV643XX_ETH_PHY_ADDR_DEFAULT,
411};
412
413static void __init dove_dt_init(void)
414{
415 pr_info("Dove 88AP510 SoC, TCLK = %d MHz.\n",
416 (dove_tclk + 499999) / 1000000);
417
418#ifdef CONFIG_CACHE_TAUROS2
Sebastian Hesselbarthfd57c652012-09-25 02:02:14 +0200419 tauros2_init(0);
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200420#endif
421 dove_setup_cpu_mbus();
422
423 /* Setup root of clk tree */
Sebastian Hesselbarth5b03df92012-11-17 15:22:27 +0100424 dove_of_clk_init();
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200425
426 /* Internal devices not ported to DT yet */
427 dove_rtc_init();
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200428
429 dove_ge00_init(&dove_dt_ge00_data);
430 dove_ehci0_init();
431 dove_ehci1_init();
432 dove_pcie_init(1, 1);
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200433
Sebastian Hesselbarth5b03df92012-11-17 15:22:27 +0100434 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
Sebastian Hesselbarth81d2ef72012-08-15 19:07:33 +0200435}
436
437static const char * const dove_dt_board_compat[] = {
438 "marvell,dove",
439 NULL
440};
441
442DT_MACHINE_START(DOVE_DT, "Marvell Dove (Flattened Device Tree)")
443 .map_io = dove_map_io,
444 .init_early = dove_init_early,
445 .init_irq = orion_dt_init_irq,
446 .timer = &dove_timer,
447 .init_machine = dove_dt_init,
448 .restart = dove_restart,
449 .dt_compat = dove_dt_board_compat,
450MACHINE_END
451#endif