blob: f72e1e9f5fc55b87e14cc7f7a9609317e1f7d274 [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{
Stephen Boyd313a98f2016-04-19 18:40:04 -0700171 tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, get_tclk());
Andrew Lunn4574b882012-04-06 17:17:26 +0200172
173 orion_clkdev_init(tclk);
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100174}
175
176/*****************************************************************************
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200177 * EHCI
178 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200179void __init mv78xx0_ehci0_init(void)
180{
Andrew Lunn72053352012-02-08 15:52:47 +0100181 orion_ehci_init(USB0_PHYS_BASE, IRQ_MV78XX0_USB_0, EHCI_PHY_NA);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200182}
183
184
185/*****************************************************************************
186 * EHCI1
187 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200188void __init mv78xx0_ehci1_init(void)
189{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100190 orion_ehci_1_init(USB1_PHYS_BASE, IRQ_MV78XX0_USB_1);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200191}
192
193
194/*****************************************************************************
195 * EHCI2
196 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200197void __init mv78xx0_ehci2_init(void)
198{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100199 orion_ehci_2_init(USB2_PHYS_BASE, IRQ_MV78XX0_USB_2);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200200}
201
202
203/*****************************************************************************
204 * GE00
205 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200206void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data)
207{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100208 orion_ge00_init(eth_data,
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200209 GE00_PHYS_BASE, IRQ_MV78XX0_GE00_SUM,
Arnaud Patard (Rtp)58569ae2012-07-26 12:15:46 +0200210 IRQ_MV78XX0_GE_ERR,
211 MV643XX_TX_CSUM_DEFAULT_LIMIT);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200212}
213
214
215/*****************************************************************************
216 * GE01
217 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200218void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data)
219{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100220 orion_ge01_init(eth_data,
Andrew Lunn7e3819d2011-05-15 13:32:44 +0200221 GE01_PHYS_BASE, IRQ_MV78XX0_GE01_SUM,
Arnaud Patard (Rtp)58569ae2012-07-26 12:15:46 +0200222 MV643XX_TX_CSUM_DEFAULT_LIMIT);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200223}
224
225
226/*****************************************************************************
227 * GE10
228 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200229void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data)
230{
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100231 u32 dev, rev;
232
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100233 /*
234 * On the Z0, ge10 and ge11 are internally connected back
235 * to back, and not brought out.
236 */
237 mv78xx0_pcie_id(&dev, &rev);
238 if (dev == MV78X00_Z0_DEV_ID) {
239 eth_data->phy_addr = MV643XX_ETH_PHY_NONE;
240 eth_data->speed = SPEED_1000;
241 eth_data->duplex = DUPLEX_FULL;
242 }
243
Arnd Bergmann7d619d82016-09-06 16:06:20 +0200244 orion_ge10_init(eth_data, GE10_PHYS_BASE, IRQ_MV78XX0_GE10_SUM);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200245}
246
247
248/*****************************************************************************
249 * GE11
250 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200251void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data)
252{
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100253 u32 dev, rev;
254
Lennert Buytenhek712424f2009-02-20 02:31:58 +0100255 /*
256 * On the Z0, ge10 and ge11 are internally connected back
257 * to back, and not brought out.
258 */
259 mv78xx0_pcie_id(&dev, &rev);
260 if (dev == MV78X00_Z0_DEV_ID) {
261 eth_data->phy_addr = MV643XX_ETH_PHY_NONE;
262 eth_data->speed = SPEED_1000;
263 eth_data->duplex = DUPLEX_FULL;
264 }
265
Arnd Bergmann7d619d82016-09-06 16:06:20 +0200266 orion_ge11_init(eth_data, GE11_PHYS_BASE, IRQ_MV78XX0_GE11_SUM);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200267}
268
Riku Voipio69359942009-03-03 21:13:50 +0200269/*****************************************************************************
Andrew Lunnaac7ffa2011-05-15 13:32:45 +0200270 * I2C
Riku Voipio69359942009-03-03 21:13:50 +0200271 ****************************************************************************/
Riku Voipio69359942009-03-03 21:13:50 +0200272void __init mv78xx0_i2c_init(void)
273{
Andrew Lunnaac7ffa2011-05-15 13:32:45 +0200274 orion_i2c_init(I2C_0_PHYS_BASE, IRQ_MV78XX0_I2C_0, 8);
275 orion_i2c_1_init(I2C_1_PHYS_BASE, IRQ_MV78XX0_I2C_1, 8);
Riku Voipio69359942009-03-03 21:13:50 +0200276}
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200277
278/*****************************************************************************
279 * SATA
280 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200281void __init mv78xx0_sata_init(struct mv_sata_platform_data *sata_data)
282{
Andrew Lunndb33f4d2011-12-07 21:48:08 +0100283 orion_sata_init(sata_data, SATA_PHYS_BASE, IRQ_MV78XX0_SATA);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200284}
285
286
287/*****************************************************************************
288 * UART0
289 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200290void __init mv78xx0_uart0_init(void)
291{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200292 orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100293 IRQ_MV78XX0_UART_0, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200294}
295
296
297/*****************************************************************************
298 * UART1
299 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200300void __init mv78xx0_uart1_init(void)
301{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200302 orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100303 IRQ_MV78XX0_UART_1, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200304}
305
306
307/*****************************************************************************
308 * UART2
309 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200310void __init mv78xx0_uart2_init(void)
311{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200312 orion_uart2_init(UART2_VIRT_BASE, UART2_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100313 IRQ_MV78XX0_UART_2, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200314}
315
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200316/*****************************************************************************
317 * UART3
318 ****************************************************************************/
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200319void __init mv78xx0_uart3_init(void)
320{
Andrew Lunn28a2b452011-05-15 13:32:41 +0200321 orion_uart3_init(UART3_VIRT_BASE, UART3_PHYS_BASE,
Andrew Lunn74c33572011-12-24 03:06:34 +0100322 IRQ_MV78XX0_UART_3, tclk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200323}
324
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200325/*****************************************************************************
326 * Time handling
327 ****************************************************************************/
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200328void __init mv78xx0_init_early(void)
329{
330 orion_time_set_base(TIMER_VIRT_BASE);
Thomas Petazzoni95b80e02013-03-21 17:59:19 +0100331 if (mv78xx0_core_index() == 0)
332 mvebu_mbus_init("marvell,mv78xx0-mbus",
333 BRIDGE_WINS_CPU0_BASE, BRIDGE_WINS_SZ,
334 DDR_WINDOW_CPU0_BASE, DDR_WINDOW_CPU_SZ);
335 else
336 mvebu_mbus_init("marvell,mv78xx0-mbus",
337 BRIDGE_WINS_CPU1_BASE, BRIDGE_WINS_SZ,
338 DDR_WINDOW_CPU1_BASE, DDR_WINDOW_CPU_SZ);
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200339}
340
Fabian Frederickbd721ea2016-08-02 14:03:33 -0700341void __ref mv78xx0_timer_init(void)
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200342{
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200343 orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
344 IRQ_MV78XX0_TIMER_1, get_tclk());
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200345}
346
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200347
348/*****************************************************************************
349 * General
350 ****************************************************************************/
Lennert Buytenhekcfdeb632009-02-20 02:31:35 +0100351static char * __init mv78xx0_id(void)
352{
353 u32 dev, rev;
354
355 mv78xx0_pcie_id(&dev, &rev);
356
357 if (dev == MV78X00_Z0_DEV_ID) {
358 if (rev == MV78X00_REV_Z0)
359 return "MV78X00-Z0";
360 else
361 return "MV78X00-Rev-Unsupported";
362 } else if (dev == MV78100_DEV_ID) {
363 if (rev == MV78100_REV_A0)
364 return "MV78100-A0";
Lennert Buytenhek662aece2009-09-30 13:02:42 -0700365 else if (rev == MV78100_REV_A1)
366 return "MV78100-A1";
Lennert Buytenhekcfdeb632009-02-20 02:31:35 +0100367 else
368 return "MV78100-Rev-Unsupported";
369 } else if (dev == MV78200_DEV_ID) {
370 if (rev == MV78100_REV_A0)
371 return "MV78200-A0";
372 else
373 return "MV78200-Rev-Unsupported";
374 } else {
375 return "Device-Unknown";
376 }
377}
378
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200379static int __init is_l2_writethrough(void)
380{
381 return !!(readl(CPU_CONTROL) & L2_WRITETHROUGH);
382}
383
384void __init mv78xx0_init(void)
385{
386 int core_index;
387 int hclk;
388 int pclk;
389 int l2clk;
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200390
391 core_index = mv78xx0_core_index();
392 hclk = get_hclk();
393 get_pclk_l2clk(hclk, core_index, &pclk, &l2clk);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200394
Lennert Buytenhekcfdeb632009-02-20 02:31:35 +0100395 printk(KERN_INFO "%s ", mv78xx0_id());
396 printk("core #%d, ", core_index);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200397 printk("PCLK = %dMHz, ", (pclk + 499999) / 1000000);
398 printk("L2 = %dMHz, ", (l2clk + 499999) / 1000000);
399 printk("HCLK = %dMHz, ", (hclk + 499999) / 1000000);
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100400 printk("TCLK = %dMHz\n", (get_tclk() + 499999) / 1000000);
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200401
Arnd Bergmannd3201ed2016-02-23 15:06:38 +0100402 if (IS_ENABLED(CONFIG_CACHE_FEROCEON_L2))
403 feroceon_l2_init(is_l2_writethrough());
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100404
405 /* Setup root of clk tree */
406 clk_init();
Stanislav Samsonov794d15b2008-06-22 22:45:10 +0200407}
Russell King9635f9c2011-11-05 10:09:15 +0000408
Robin Holt7b6d8642013-07-08 16:01:40 -0700409void mv78xx0_restart(enum reboot_mode mode, const char *cmd)
Russell King9635f9c2011-11-05 10:09:15 +0000410{
411 /*
412 * Enable soft reset to assert RSTOUTn.
413 */
414 writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);
415
416 /*
417 * Assert soft reset.
418 */
419 writel(SOFT_RESET, SYSTEM_SOFT_RESET);
420
421 while (1)
422 ;
423}