blob: 533fd8123c70d24b30502706e59190a9dddf0e62 [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
11#include <linux/kernel.h>
12#include <linux/delay.h>
13#include <linux/init.h>
14#include <linux/platform_device.h>
15#include <linux/pci.h>
Andrew Lunn2f129bf2011-12-15 08:15:07 +010016#include <linux/clk-provider.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030017#include <linux/ata_platform.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030018#include <linux/gpio.h>
19#include <asm/page.h>
20#include <asm/setup.h>
21#include <asm/timex.h>
Lennert Buytenhek573a6522009-11-24 19:33:52 +020022#include <asm/hardware/cache-tauros2.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030023#include <asm/mach/map.h>
24#include <asm/mach/time.h>
25#include <asm/mach/pci.h>
26#include <mach/dove.h>
27#include <mach/bridge-regs.h>
28#include <asm/mach/arch.h>
29#include <linux/irq.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030030#include <plat/time.h>
Andrew Lunn72053352012-02-08 15:52:47 +010031#include <plat/ehci-orion.h>
Andrew Lunn28a2b452011-05-15 13:32:41 +020032#include <plat/common.h>
Andrew Lunn45173d52011-12-07 21:48:06 +010033#include <plat/addr-map.h>
Saeed Bisharaedabd382009-08-06 15:12:43 +030034#include "common.h"
35
Andrew Lunn28a2b452011-05-15 13:32:41 +020036static int get_tclk(void);
37
Saeed Bisharaedabd382009-08-06 15:12:43 +030038/*****************************************************************************
39 * I/O Address Mapping
40 ****************************************************************************/
41static struct map_desc dove_io_desc[] __initdata = {
42 {
Thomas Petazzonic3c5a282012-09-11 14:27:18 +020043 .virtual = (unsigned long) DOVE_SB_REGS_VIRT_BASE,
Saeed Bisharaedabd382009-08-06 15:12:43 +030044 .pfn = __phys_to_pfn(DOVE_SB_REGS_PHYS_BASE),
45 .length = DOVE_SB_REGS_SIZE,
46 .type = MT_DEVICE,
47 }, {
Thomas Petazzonic3c5a282012-09-11 14:27:18 +020048 .virtual = (unsigned long) DOVE_NB_REGS_VIRT_BASE,
Saeed Bisharaedabd382009-08-06 15:12:43 +030049 .pfn = __phys_to_pfn(DOVE_NB_REGS_PHYS_BASE),
50 .length = DOVE_NB_REGS_SIZE,
51 .type = MT_DEVICE,
52 }, {
Thomas Petazzonic3c5a282012-09-11 14:27:18 +020053 .virtual = (unsigned long) DOVE_PCIE0_IO_VIRT_BASE,
Saeed Bisharaedabd382009-08-06 15:12:43 +030054 .pfn = __phys_to_pfn(DOVE_PCIE0_IO_PHYS_BASE),
55 .length = DOVE_PCIE0_IO_SIZE,
56 .type = MT_DEVICE,
57 }, {
Thomas Petazzonic3c5a282012-09-11 14:27:18 +020058 .virtual = (unsigned long) DOVE_PCIE1_IO_VIRT_BASE,
Saeed Bisharaedabd382009-08-06 15:12:43 +030059 .pfn = __phys_to_pfn(DOVE_PCIE1_IO_PHYS_BASE),
60 .length = DOVE_PCIE1_IO_SIZE,
61 .type = MT_DEVICE,
62 },
63};
64
65void __init dove_map_io(void)
66{
67 iotable_init(dove_io_desc, ARRAY_SIZE(dove_io_desc));
68}
69
70/*****************************************************************************
Andrew Lunn2f129bf2011-12-15 08:15:07 +010071 * CLK tree
72 ****************************************************************************/
73static struct clk *tclk;
74
75static void __init clk_init(void)
76{
77 tclk = clk_register_fixed_rate(NULL, "tclk", NULL, CLK_IS_ROOT,
78 get_tclk());
Andrew Lunn4574b882012-04-06 17:17:26 +020079
80 orion_clkdev_init(tclk);
Andrew Lunn2f129bf2011-12-15 08:15:07 +010081}
82
83/*****************************************************************************
Saeed Bisharaedabd382009-08-06 15:12:43 +030084 * EHCI0
85 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +030086void __init dove_ehci0_init(void)
87{
Andrew Lunn72053352012-02-08 15:52:47 +010088 orion_ehci_init(DOVE_USB0_PHYS_BASE, IRQ_DOVE_USB0, EHCI_PHY_NA);
Saeed Bisharaedabd382009-08-06 15:12:43 +030089}
90
91/*****************************************************************************
92 * EHCI1
93 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +030094void __init dove_ehci1_init(void)
95{
Andrew Lunndb33f4d2011-12-07 21:48:08 +010096 orion_ehci_1_init(DOVE_USB1_PHYS_BASE, IRQ_DOVE_USB1);
Saeed Bisharaedabd382009-08-06 15:12:43 +030097}
98
99/*****************************************************************************
100 * GE00
101 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300102void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data)
103{
Hannes Reinecke30e0f582012-06-12 15:59:45 +0200104 orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE,
Arnaud Patard (Rtp)58569ae2012-07-26 12:15:46 +0200105 IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR,
106 1600);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300107}
108
109/*****************************************************************************
110 * SoC RTC
111 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300112void __init dove_rtc_init(void)
113{
Andrew Lunnf6eaccb2011-05-15 13:32:42 +0200114 orion_rtc_init(DOVE_RTC_PHYS_BASE, IRQ_DOVE_RTC);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300115}
116
117/*****************************************************************************
118 * SATA
119 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300120void __init dove_sata_init(struct mv_sata_platform_data *sata_data)
121{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100122 orion_sata_init(sata_data, DOVE_SATA_PHYS_BASE, IRQ_DOVE_SATA);
Andrew Lunn9e613f82011-05-15 13:32:50 +0200123
Saeed Bisharaedabd382009-08-06 15:12:43 +0300124}
125
126/*****************************************************************************
127 * UART0
128 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300129void __init dove_uart0_init(void)
130{
Thomas Petazzonic3c5a282012-09-11 14:27:18 +0200131 orion_uart0_init((unsigned long) DOVE_UART0_VIRT_BASE,
132 DOVE_UART0_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100133 IRQ_DOVE_UART_0, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300134}
135
136/*****************************************************************************
137 * UART1
138 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300139void __init dove_uart1_init(void)
140{
Thomas Petazzonic3c5a282012-09-11 14:27:18 +0200141 orion_uart1_init((unsigned long) DOVE_UART1_VIRT_BASE,
142 DOVE_UART1_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100143 IRQ_DOVE_UART_1, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300144}
145
146/*****************************************************************************
147 * UART2
148 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300149void __init dove_uart2_init(void)
150{
Thomas Petazzonic3c5a282012-09-11 14:27:18 +0200151 orion_uart2_init((unsigned long) DOVE_UART2_VIRT_BASE,
152 DOVE_UART2_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100153 IRQ_DOVE_UART_2, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300154}
155
156/*****************************************************************************
157 * UART3
158 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300159void __init dove_uart3_init(void)
160{
Thomas Petazzonic3c5a282012-09-11 14:27:18 +0200161 orion_uart3_init((unsigned long) DOVE_UART3_VIRT_BASE,
162 DOVE_UART3_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100163 IRQ_DOVE_UART_3, tclk);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300164}
165
166/*****************************************************************************
Andrew Lunn980f9f62011-05-15 13:32:46 +0200167 * SPI
Saeed Bisharaedabd382009-08-06 15:12:43 +0300168 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300169void __init dove_spi0_init(void)
170{
Andrew Lunn4574b882012-04-06 17:17:26 +0200171 orion_spi_init(DOVE_SPI0_PHYS_BASE);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300172}
173
Saeed Bisharaedabd382009-08-06 15:12:43 +0300174void __init dove_spi1_init(void)
175{
Andrew Lunn4574b882012-04-06 17:17:26 +0200176 orion_spi_1_init(DOVE_SPI1_PHYS_BASE);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300177}
178
179/*****************************************************************************
180 * I2C
181 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300182void __init dove_i2c_init(void)
183{
Andrew Lunnaac7ffa2011-05-15 13:32:45 +0200184 orion_i2c_init(DOVE_I2C_PHYS_BASE, IRQ_DOVE_I2C, 10);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300185}
186
187/*****************************************************************************
188 * Time handling
189 ****************************************************************************/
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200190void __init dove_init_early(void)
191{
Thomas Petazzonic3c5a282012-09-11 14:27:18 +0200192 orion_time_set_base((unsigned long) TIMER_VIRT_BASE);
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200193}
194
Saeed Bisharaedabd382009-08-06 15:12:43 +0300195static int get_tclk(void)
196{
197 /* use DOVE_RESET_SAMPLE_HI/LO to detect tclk */
198 return 166666667;
199}
200
Andrew Lunnca2ac5c2012-05-14 11:28:43 +0200201static void __init dove_timer_init(void)
Saeed Bisharaedabd382009-08-06 15:12:43 +0300202{
Thomas Petazzonic3c5a282012-09-11 14:27:18 +0200203 orion_time_init((unsigned long) BRIDGE_VIRT_BASE,
204 BRIDGE_INT_TIMER1_CLR,
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200205 IRQ_DOVE_BRIDGE, get_tclk());
Saeed Bisharaedabd382009-08-06 15:12:43 +0300206}
207
208struct sys_timer dove_timer = {
209 .init = dove_timer_init,
210};
211
212/*****************************************************************************
Saeed Bisharaedabd382009-08-06 15:12:43 +0300213 * XOR 0
214 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300215void __init dove_xor0_init(void)
216{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100217 orion_xor0_init(DOVE_XOR0_PHYS_BASE, DOVE_XOR0_HIGH_PHYS_BASE,
Andrew Lunnee962722011-05-15 13:32:48 +0200218 IRQ_DOVE_XOR_00, IRQ_DOVE_XOR_01);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300219}
220
221/*****************************************************************************
222 * XOR 1
223 ****************************************************************************/
Saeed Bisharaedabd382009-08-06 15:12:43 +0300224void __init dove_xor1_init(void)
225{
Andrew Lunnee962722011-05-15 13:32:48 +0200226 orion_xor1_init(DOVE_XOR1_PHYS_BASE, DOVE_XOR1_HIGH_PHYS_BASE,
227 IRQ_DOVE_XOR_10, IRQ_DOVE_XOR_11);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300228}
229
Saeed Bishara16bc90a2010-05-06 16:12:06 +0300230/*****************************************************************************
231 * SDIO
232 ****************************************************************************/
233static u64 sdio_dmamask = DMA_BIT_MASK(32);
234
235static struct resource dove_sdio0_resources[] = {
236 {
237 .start = DOVE_SDIO0_PHYS_BASE,
238 .end = DOVE_SDIO0_PHYS_BASE + 0xff,
239 .flags = IORESOURCE_MEM,
240 }, {
241 .start = IRQ_DOVE_SDIO0,
242 .end = IRQ_DOVE_SDIO0,
243 .flags = IORESOURCE_IRQ,
244 },
245};
246
247static struct platform_device dove_sdio0 = {
Mike Rapoport930e2fe2010-10-28 21:23:53 +0200248 .name = "sdhci-dove",
Saeed Bishara16bc90a2010-05-06 16:12:06 +0300249 .id = 0,
250 .dev = {
251 .dma_mask = &sdio_dmamask,
252 .coherent_dma_mask = DMA_BIT_MASK(32),
253 },
254 .resource = dove_sdio0_resources,
255 .num_resources = ARRAY_SIZE(dove_sdio0_resources),
256};
257
258void __init dove_sdio0_init(void)
259{
260 platform_device_register(&dove_sdio0);
261}
262
263static struct resource dove_sdio1_resources[] = {
264 {
265 .start = DOVE_SDIO1_PHYS_BASE,
266 .end = DOVE_SDIO1_PHYS_BASE + 0xff,
267 .flags = IORESOURCE_MEM,
268 }, {
269 .start = IRQ_DOVE_SDIO1,
270 .end = IRQ_DOVE_SDIO1,
271 .flags = IORESOURCE_IRQ,
272 },
273};
274
275static struct platform_device dove_sdio1 = {
Mike Rapoport930e2fe2010-10-28 21:23:53 +0200276 .name = "sdhci-dove",
Saeed Bishara16bc90a2010-05-06 16:12:06 +0300277 .id = 1,
278 .dev = {
279 .dma_mask = &sdio_dmamask,
280 .coherent_dma_mask = DMA_BIT_MASK(32),
281 },
282 .resource = dove_sdio1_resources,
283 .num_resources = ARRAY_SIZE(dove_sdio1_resources),
284};
285
286void __init dove_sdio1_init(void)
287{
288 platform_device_register(&dove_sdio1);
289}
290
Saeed Bisharaedabd382009-08-06 15:12:43 +0300291void __init dove_init(void)
292{
Saeed Bisharaedabd382009-08-06 15:12:43 +0300293 printk(KERN_INFO "Dove 88AP510 SoC, ");
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100294 printk(KERN_INFO "TCLK = %dMHz\n", (get_tclk() + 499999) / 1000000);
Saeed Bisharaedabd382009-08-06 15:12:43 +0300295
Lennert Buytenhek573a6522009-11-24 19:33:52 +0200296#ifdef CONFIG_CACHE_TAUROS2
297 tauros2_init();
298#endif
Saeed Bisharaedabd382009-08-06 15:12:43 +0300299 dove_setup_cpu_mbus();
300
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100301 /* Setup root of clk tree */
302 clk_init();
303
Saeed Bisharaedabd382009-08-06 15:12:43 +0300304 /* internal devices that every board has */
305 dove_rtc_init();
306 dove_xor0_init();
307 dove_xor1_init();
308}
Russell King6ca6ff92011-11-05 09:48:52 +0000309
310void dove_restart(char mode, const char *cmd)
311{
312 /*
313 * Enable soft reset to assert RSTOUTn.
314 */
315 writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);
316
317 /*
318 * Assert soft reset.
319 */
320 writel(SOFT_RESET, SYSTEM_SOFT_RESET);
321
322 while (1)
323 ;
324}