blob: 99cc93900a243df98c1af2c17f54657e61b283ee [file] [log] [blame]
Stanislav Samsonov794d15b2008-06-22 22:45:10 +02001/*
2 * arch/arm/mach-mv78xx0/common.c
3 *
4 * Core functions for Marvell MV78xx0 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>
Stanislav Samsonov794d15b2008-06-22 22:45:10 +020015#include <linux/ata_platform.h>
Andrew Lunn2f129bf2011-12-15 08:15:07 +010016#include <linux/clk-provider.h>
Lennert Buytenhek712424f2009-02-20 02:31:58 +010017#include <linux/ethtool.h>
Andrew Lunn3c317d02014-02-22 20:14:51 +010018#include <asm/hardware/cache-feroceon-l2.h>
Stanislav Samsonov794d15b2008-06-22 22:45:10 +020019#include <asm/mach/map.h>
20#include <asm/mach/time.h>
Arnd Bergmannc02cecb2012-08-24 15:21:54 +020021#include <linux/platform_data/usb-ehci-orion.h>
22#include <linux/platform_data/mtd-orion_nand.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020023#include <plat/time.h>
Andrew Lunn28a2b452011-05-15 13:32:41 +020024#include <plat/common.h>
Andrew Lunn45173d52011-12-07 21:48:06 +010025#include <plat/addr-map.h>
Arnd Bergmann4c811b92015-12-02 22:27:06 +010026#include "mv78xx0.h"
27#include "bridge-regs.h"
Stanislav Samsonov794d15b2008-06-22 22:45:10 +020028#include "common.h"
29
Andrew Lunn28a2b452011-05-15 13:32:41 +020030static int get_tclk(void);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +020031
32/*****************************************************************************
33 * Common bits
34 ****************************************************************************/
35int mv78xx0_core_index(void)
36{
37 u32 extra;
38
39 /*
40 * Read Extra Features register.
41 */
42 __asm__("mrc p15, 1, %0, c15, c1, 0" : "=r" (extra));
43
44 return !!(extra & 0x00004000);
45}
46
47static int get_hclk(void)
48{
49 int hclk;
50
51 /*
52 * HCLK tick rate is configured by DEV_D[7:5] pins.
53 */
54 switch ((readl(SAMPLE_AT_RESET_LOW) >> 5) & 7) {
55 case 0:
56 hclk = 166666667;
57 break;
58 case 1:
59 hclk = 200000000;
60 break;
61 case 2:
62 hclk = 266666667;
63 break;
64 case 3:
65 hclk = 333333333;
66 break;
67 case 4:
68 hclk = 400000000;
69 break;
70 default:
71 panic("unknown HCLK PLL setting: %.8x\n",
72 readl(SAMPLE_AT_RESET_LOW));
73 }
74
75 return hclk;
76}
77
78static void get_pclk_l2clk(int hclk, int core_index, int *pclk, int *l2clk)
79{
80 u32 cfg;
81
82 /*
83 * Core #0 PCLK/L2CLK is configured by bits [13:8], core #1
84 * PCLK/L2CLK by bits [19:14].
85 */
86 if (core_index == 0) {
87 cfg = (readl(SAMPLE_AT_RESET_LOW) >> 8) & 0x3f;
88 } else {
89 cfg = (readl(SAMPLE_AT_RESET_LOW) >> 14) & 0x3f;
90 }
91
92 /*
93 * Bits [11:8] ([17:14] for core #1) configure the PCLK:HCLK
94 * ratio (1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6).
95 */
96 *pclk = ((u64)hclk * (2 + (cfg & 0xf))) >> 1;
97
98 /*
99 * Bits [13:12] ([19:18] for core #1) configure the PCLK:L2CLK
100 * ratio (1, 2, 3).
101 */
102 *l2clk = *pclk / (((cfg >> 4) & 3) + 1);
103}
104
105static int get_tclk(void)
106{
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100107 int tclk_freq;
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200108
109 /*
110 * TCLK tick rate is configured by DEV_A[2:0] strap pins.
111 */
112 switch ((readl(SAMPLE_AT_RESET_HIGH) >> 6) & 7) {
113 case 1:
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100114 tclk_freq = 166666667;
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200115 break;
116 case 3:
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100117 tclk_freq = 200000000;
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200118 break;
119 default:
120 panic("unknown TCLK PLL setting: %.8x\n",
121 readl(SAMPLE_AT_RESET_HIGH));
122 }
123
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100124 return tclk_freq;
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200125}
126
127
128/*****************************************************************************
129 * I/O Address Mapping
130 ****************************************************************************/
131static struct map_desc mv78xx0_io_desc[] __initdata = {
132 {
Thomas Petazzoni383b9962012-09-11 14:27:20 +0200133 .virtual = (unsigned long) MV78XX0_CORE_REGS_VIRT_BASE,
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200134 .pfn = 0,
135 .length = MV78XX0_CORE_REGS_SIZE,
136 .type = MT_DEVICE,
137 }, {
Thomas Petazzoni383b9962012-09-11 14:27:20 +0200138 .virtual = (unsigned long) MV78XX0_REGS_VIRT_BASE,
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200139 .pfn = __phys_to_pfn(MV78XX0_REGS_PHYS_BASE),
140 .length = MV78XX0_REGS_SIZE,
141 .type = MT_DEVICE,
142 },
143};
144
145void __init mv78xx0_map_io(void)
146{
147 unsigned long phys;
148
149 /*
150 * Map the right set of per-core registers depending on
151 * which core we are running on.
152 */
153 if (mv78xx0_core_index() == 0) {
154 phys = MV78XX0_CORE0_REGS_PHYS_BASE;
155 } else {
156 phys = MV78XX0_CORE1_REGS_PHYS_BASE;
157 }
158 mv78xx0_io_desc[0].pfn = __phys_to_pfn(phys);
159
160 iotable_init(mv78xx0_io_desc, ARRAY_SIZE(mv78xx0_io_desc));
161}
162
163
164/*****************************************************************************
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100165 * CLK tree
166 ****************************************************************************/
167static struct clk *tclk;
168
169static void __init clk_init(void)
170{
171 tclk = clk_register_fixed_rate(NULL, "tclk", NULL, CLK_IS_ROOT,
172 get_tclk());
Andrew Lunn4574b882012-04-06 17:17:26 +0200173
174 orion_clkdev_init(tclk);
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100175}
176
177/*****************************************************************************
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200178 * EHCI
179 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200180void __init mv78xx0_ehci0_init(void)
181{
Andrew Lunn72053352012-02-08 15:52:47 +0100182 orion_ehci_init(USB0_PHYS_BASE, IRQ_MV78XX0_USB_0, EHCI_PHY_NA);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200183}
184
185
186/*****************************************************************************
187 * EHCI1
188 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200189void __init mv78xx0_ehci1_init(void)
190{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100191 orion_ehci_1_init(USB1_PHYS_BASE, IRQ_MV78XX0_USB_1);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200192}
193
194
195/*****************************************************************************
196 * EHCI2
197 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200198void __init mv78xx0_ehci2_init(void)
199{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100200 orion_ehci_2_init(USB2_PHYS_BASE, IRQ_MV78XX0_USB_2);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200201}
202
203
204/*****************************************************************************
205 * GE00
206 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200207void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data)
208{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100209 orion_ge00_init(eth_data,
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200210 GE00_PHYS_BASE, IRQ_MV78XX0_GE00_SUM,
Arnaud Patard (Rtp)58569ae2012-07-26 12:15:46 +0200211 IRQ_MV78XX0_GE_ERR,
212 MV643XX_TX_CSUM_DEFAULT_LIMIT);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200213}
214
215
216/*****************************************************************************
217 * GE01
218 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200219void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data)
220{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100221 orion_ge01_init(eth_data,
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200222 GE01_PHYS_BASE, IRQ_MV78XX0_GE01_SUM,
Arnaud Patard (Rtp)58569ae2012-07-26 12:15:46 +0200223 NO_IRQ,
224 MV643XX_TX_CSUM_DEFAULT_LIMIT);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200225}
226
227
228/*****************************************************************************
229 * GE10
230 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200231void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data)
232{
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100233 u32 dev, rev;
234
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100235 /*
236 * On the Z0, ge10 and ge11 are internally connected back
237 * to back, and not brought out.
238 */
239 mv78xx0_pcie_id(&dev, &rev);
240 if (dev == MV78X00_Z0_DEV_ID) {
241 eth_data->phy_addr = MV643XX_ETH_PHY_NONE;
242 eth_data->speed = SPEED_1000;
243 eth_data->duplex = DUPLEX_FULL;
244 }
245
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100246 orion_ge10_init(eth_data,
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200247 GE10_PHYS_BASE, IRQ_MV78XX0_GE10_SUM,
Andrew Lunn452503e2011-12-24 01:24:24 +0100248 NO_IRQ);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200249}
250
251
252/*****************************************************************************
253 * GE11
254 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200255void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data)
256{
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100257 u32 dev, rev;
258
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100259 /*
260 * On the Z0, ge10 and ge11 are internally connected back
261 * to back, and not brought out.
262 */
263 mv78xx0_pcie_id(&dev, &rev);
264 if (dev == MV78X00_Z0_DEV_ID) {
265 eth_data->phy_addr = MV643XX_ETH_PHY_NONE;
266 eth_data->speed = SPEED_1000;
267 eth_data->duplex = DUPLEX_FULL;
268 }
269
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100270 orion_ge11_init(eth_data,
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200271 GE11_PHYS_BASE, IRQ_MV78XX0_GE11_SUM,
Andrew Lunn452503e2011-12-24 01:24:24 +0100272 NO_IRQ);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200273}
274
Riku Voipio69359942009-03-03 21:13:50 +0200275/*****************************************************************************
Andrew Lunnaac7ffa2011-05-15 13:32:45 +0200276 * I2C
Riku Voipio69359942009-03-03 21:13:50 +0200277 ****************************************************************************/
Riku Voipio69359942009-03-03 21:13:50 +0200278void __init mv78xx0_i2c_init(void)
279{
Andrew Lunnaac7ffa2011-05-15 13:32:45 +0200280 orion_i2c_init(I2C_0_PHYS_BASE, IRQ_MV78XX0_I2C_0, 8);
281 orion_i2c_1_init(I2C_1_PHYS_BASE, IRQ_MV78XX0_I2C_1, 8);
Riku Voipio69359942009-03-03 21:13:50 +0200282}
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200283
284/*****************************************************************************
285 * SATA
286 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200287void __init mv78xx0_sata_init(struct mv_sata_platform_data *sata_data)
288{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100289 orion_sata_init(sata_data, SATA_PHYS_BASE, IRQ_MV78XX0_SATA);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200290}
291
292
293/*****************************************************************************
294 * UART0
295 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200296void __init mv78xx0_uart0_init(void)
297{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200298 orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100299 IRQ_MV78XX0_UART_0, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200300}
301
302
303/*****************************************************************************
304 * UART1
305 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200306void __init mv78xx0_uart1_init(void)
307{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200308 orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100309 IRQ_MV78XX0_UART_1, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200310}
311
312
313/*****************************************************************************
314 * UART2
315 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200316void __init mv78xx0_uart2_init(void)
317{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200318 orion_uart2_init(UART2_VIRT_BASE, UART2_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100319 IRQ_MV78XX0_UART_2, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200320}
321
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200322/*****************************************************************************
323 * UART3
324 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200325void __init mv78xx0_uart3_init(void)
326{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200327 orion_uart3_init(UART3_VIRT_BASE, UART3_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100328 IRQ_MV78XX0_UART_3, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200329}
330
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200331/*****************************************************************************
332 * Time handling
333 ****************************************************************************/
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200334void __init mv78xx0_init_early(void)
335{
336 orion_time_set_base(TIMER_VIRT_BASE);
Thomas Petazzoni95b80e02013-03-21 17:59:19 +0100337 if (mv78xx0_core_index() == 0)
338 mvebu_mbus_init("marvell,mv78xx0-mbus",
339 BRIDGE_WINS_CPU0_BASE, BRIDGE_WINS_SZ,
340 DDR_WINDOW_CPU0_BASE, DDR_WINDOW_CPU_SZ);
341 else
342 mvebu_mbus_init("marvell,mv78xx0-mbus",
343 BRIDGE_WINS_CPU1_BASE, BRIDGE_WINS_SZ,
344 DDR_WINDOW_CPU1_BASE, DDR_WINDOW_CPU_SZ);
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200345}
346
Stephen Warren6bb27d72012-11-08 12:40:59 -0700347void __init_refok mv78xx0_timer_init(void)
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200348{
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200349 orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
350 IRQ_MV78XX0_TIMER_1, get_tclk());
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200351}
352
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200353
354/*****************************************************************************
355 * General
356 ****************************************************************************/
Lennert Buytenhekcfdeb632009-02-20 02:31:35 +0100357static char * __init mv78xx0_id(void)
358{
359 u32 dev, rev;
360
361 mv78xx0_pcie_id(&dev, &rev);
362
363 if (dev == MV78X00_Z0_DEV_ID) {
364 if (rev == MV78X00_REV_Z0)
365 return "MV78X00-Z0";
366 else
367 return "MV78X00-Rev-Unsupported";
368 } else if (dev == MV78100_DEV_ID) {
369 if (rev == MV78100_REV_A0)
370 return "MV78100-A0";
Lennert Buytenhek662aece2009-09-30 13:02:42 -0700371 else if (rev == MV78100_REV_A1)
372 return "MV78100-A1";
Lennert Buytenhekcfdeb632009-02-20 02:31:35 +0100373 else
374 return "MV78100-Rev-Unsupported";
375 } else if (dev == MV78200_DEV_ID) {
376 if (rev == MV78100_REV_A0)
377 return "MV78200-A0";
378 else
379 return "MV78200-Rev-Unsupported";
380 } else {
381 return "Device-Unknown";
382 }
383}
384
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200385static int __init is_l2_writethrough(void)
386{
387 return !!(readl(CPU_CONTROL) & L2_WRITETHROUGH);
388}
389
390void __init mv78xx0_init(void)
391{
392 int core_index;
393 int hclk;
394 int pclk;
395 int l2clk;
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200396
397 core_index = mv78xx0_core_index();
398 hclk = get_hclk();
399 get_pclk_l2clk(hclk, core_index, &pclk, &l2clk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200400
Lennert Buytenhekcfdeb632009-02-20 02:31:35 +0100401 printk(KERN_INFO "%s ", mv78xx0_id());
402 printk("core #%d, ", core_index);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200403 printk("PCLK = %dMHz, ", (pclk + 499999) / 1000000);
404 printk("L2 = %dMHz, ", (l2clk + 499999) / 1000000);
405 printk("HCLK = %dMHz, ", (hclk + 499999) / 1000000);
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100406 printk("TCLK = %dMHz\n", (get_tclk() + 499999) / 1000000);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200407
Arnd Bergmannd3201ed2016-02-23 15:06:38 +0100408 if (IS_ENABLED(CONFIG_CACHE_FEROCEON_L2))
409 feroceon_l2_init(is_l2_writethrough());
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100410
411 /* Setup root of clk tree */
412 clk_init();
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200413}
Russell King9635f9c2011-11-05 10:09:15 +0000414
Robin Holt7b6d8642013-07-08 16:01:40 -0700415void mv78xx0_restart(enum reboot_mode mode, const char *cmd)
Russell King9635f9c2011-11-05 10:09:15 +0000416{
417 /*
418 * Enable soft reset to assert RSTOUTn.
419 */
420 writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);
421
422 /*
423 * Assert soft reset.
424 */
425 writel(SOFT_RESET, SYSTEM_SOFT_RESET);
426
427 while (1)
428 ;
429}