ar71xx: update mips multi-machine stuff
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / files / arch / mips / ar71xx / devices.c
1 /*
2 * Atheros AR71xx SoC platform devices
3 *
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
7 * Parts of this file are based on Atheros' 2.6.15 BSP
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
12 */
13
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/etherdevice.h>
18 #include <linux/platform_device.h>
19 #include <linux/serial_8250.h>
20
21 #include <asm/mach-ar71xx/ar71xx.h>
22
23 #include "devices.h"
24
25 static u8 ar71xx_mac_base[ETH_ALEN] __initdata;
26
27 static struct resource ar71xx_uart_resources[] = {
28 {
29 .start = AR71XX_UART_BASE,
30 .end = AR71XX_UART_BASE + AR71XX_UART_SIZE - 1,
31 .flags = IORESOURCE_MEM,
32 },
33 };
34
35 #define AR71XX_UART_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP)
36 static struct plat_serial8250_port ar71xx_uart_data[] = {
37 {
38 .mapbase = AR71XX_UART_BASE,
39 .irq = AR71XX_MISC_IRQ_UART,
40 .flags = AR71XX_UART_FLAGS,
41 .iotype = UPIO_MEM32,
42 .regshift = 2,
43 }, {
44 /* terminating entry */
45 }
46 };
47
48 static struct platform_device ar71xx_uart_device = {
49 .name = "serial8250",
50 .id = PLAT8250_DEV_PLATFORM,
51 .resource = ar71xx_uart_resources,
52 .num_resources = ARRAY_SIZE(ar71xx_uart_resources),
53 .dev = {
54 .platform_data = ar71xx_uart_data
55 },
56 };
57
58 void __init ar71xx_add_device_uart(void)
59 {
60 ar71xx_uart_data[0].uartclk = ar71xx_ahb_freq;
61 platform_device_register(&ar71xx_uart_device);
62 }
63
64 static struct resource ar71xx_mdio_resources[] = {
65 {
66 .name = "mdio_base",
67 .flags = IORESOURCE_MEM,
68 .start = AR71XX_GE0_BASE,
69 .end = AR71XX_GE0_BASE + 0x200 - 1,
70 }
71 };
72
73 static struct ag71xx_mdio_platform_data ar71xx_mdio_data;
74
75 struct platform_device ar71xx_mdio_device = {
76 .name = "ag71xx-mdio",
77 .id = -1,
78 .resource = ar71xx_mdio_resources,
79 .num_resources = ARRAY_SIZE(ar71xx_mdio_resources),
80 .dev = {
81 .platform_data = &ar71xx_mdio_data,
82 },
83 };
84
85 void __init ar71xx_add_device_mdio(u32 phy_mask)
86 {
87 if (ar71xx_soc == AR71XX_SOC_AR7240)
88 ar71xx_mdio_data.is_ar7240 = 1;
89
90 ar71xx_mdio_data.phy_mask = phy_mask;
91
92 platform_device_register(&ar71xx_mdio_device);
93 }
94
95 static void ar71xx_set_pll(u32 cfg_reg, u32 pll_reg, u32 pll_val, u32 shift)
96 {
97 void __iomem *base;
98 u32 t;
99
100 base = ioremap_nocache(AR71XX_PLL_BASE, AR71XX_PLL_SIZE);
101
102 t = __raw_readl(base + cfg_reg);
103 t &= ~(3 << shift);
104 t |= (2 << shift);
105 __raw_writel(t, base + cfg_reg);
106 udelay(100);
107
108 __raw_writel(pll_val, base + pll_reg);
109
110 t |= (3 << shift);
111 __raw_writel(t, base + cfg_reg);
112 udelay(100);
113
114 t &= ~(3 << shift);
115 __raw_writel(t, base + cfg_reg);
116 udelay(100);
117
118 printk(KERN_DEBUG "ar71xx: pll_reg %#x: %#x\n",
119 (unsigned int)(base + pll_reg), __raw_readl(base + pll_reg));
120
121 iounmap(base);
122 }
123
124 struct ar71xx_eth_pll_data ar71xx_eth0_pll_data;
125 struct ar71xx_eth_pll_data ar71xx_eth1_pll_data;
126
127 static u32 ar71xx_get_eth_pll(unsigned int mac, int speed)
128 {
129 struct ar71xx_eth_pll_data *pll_data;
130 u32 pll_val;
131
132 switch (mac) {
133 case 0:
134 pll_data = &ar71xx_eth0_pll_data;
135 break;
136 case 1:
137 pll_data = &ar71xx_eth1_pll_data;
138 break;
139 default:
140 BUG();
141 }
142
143 switch (speed) {
144 case SPEED_10:
145 pll_val = pll_data->pll_10;
146 break;
147 case SPEED_100:
148 pll_val = pll_data->pll_100;
149 break;
150 case SPEED_1000:
151 pll_val = pll_data->pll_1000;
152 break;
153 default:
154 BUG();
155 }
156
157 return pll_val;
158 }
159
160 static void ar71xx_set_pll_ge0(int speed)
161 {
162 u32 val = ar71xx_get_eth_pll(0, speed);
163
164 ar71xx_set_pll(AR71XX_PLL_REG_SEC_CONFIG, AR71XX_PLL_REG_ETH0_INT_CLOCK,
165 val, AR71XX_ETH0_PLL_SHIFT);
166 }
167
168 static void ar71xx_set_pll_ge1(int speed)
169 {
170 u32 val = ar71xx_get_eth_pll(1, speed);
171
172 ar71xx_set_pll(AR71XX_PLL_REG_SEC_CONFIG, AR71XX_PLL_REG_ETH1_INT_CLOCK,
173 val, AR71XX_ETH1_PLL_SHIFT);
174 }
175
176 static void ar724x_set_pll_ge0(int speed)
177 {
178 /* TODO */
179 }
180
181 static void ar724x_set_pll_ge1(int speed)
182 {
183 /* TODO */
184 }
185
186 static void ar91xx_set_pll_ge0(int speed)
187 {
188 u32 val = ar71xx_get_eth_pll(0, speed);
189
190 ar71xx_set_pll(AR91XX_PLL_REG_ETH_CONFIG, AR91XX_PLL_REG_ETH0_INT_CLOCK,
191 val, AR91XX_ETH0_PLL_SHIFT);
192 }
193
194 static void ar91xx_set_pll_ge1(int speed)
195 {
196 u32 val = ar71xx_get_eth_pll(1, speed);
197
198 ar71xx_set_pll(AR91XX_PLL_REG_ETH_CONFIG, AR91XX_PLL_REG_ETH1_INT_CLOCK,
199 val, AR91XX_ETH1_PLL_SHIFT);
200 }
201
202 static void ar71xx_ddr_flush_ge0(void)
203 {
204 ar71xx_ddr_flush(AR71XX_DDR_REG_FLUSH_GE0);
205 }
206
207 static void ar71xx_ddr_flush_ge1(void)
208 {
209 ar71xx_ddr_flush(AR71XX_DDR_REG_FLUSH_GE1);
210 }
211
212 static void ar724x_ddr_flush_ge0(void)
213 {
214 ar71xx_ddr_flush(AR724X_DDR_REG_FLUSH_GE0);
215 }
216
217 static void ar724x_ddr_flush_ge1(void)
218 {
219 ar71xx_ddr_flush(AR724X_DDR_REG_FLUSH_GE1);
220 }
221
222 static void ar91xx_ddr_flush_ge0(void)
223 {
224 ar71xx_ddr_flush(AR91XX_DDR_REG_FLUSH_GE0);
225 }
226
227 static void ar91xx_ddr_flush_ge1(void)
228 {
229 ar71xx_ddr_flush(AR91XX_DDR_REG_FLUSH_GE1);
230 }
231
232 static struct resource ar71xx_eth0_resources[] = {
233 {
234 .name = "mac_base",
235 .flags = IORESOURCE_MEM,
236 .start = AR71XX_GE0_BASE,
237 .end = AR71XX_GE0_BASE + 0x200 - 1,
238 }, {
239 .name = "mii_ctrl",
240 .flags = IORESOURCE_MEM,
241 .start = AR71XX_MII_BASE + MII_REG_MII0_CTRL,
242 .end = AR71XX_MII_BASE + MII_REG_MII0_CTRL + 3,
243 }, {
244 .name = "mac_irq",
245 .flags = IORESOURCE_IRQ,
246 .start = AR71XX_CPU_IRQ_GE0,
247 .end = AR71XX_CPU_IRQ_GE0,
248 },
249 };
250
251 struct ag71xx_platform_data ar71xx_eth0_data = {
252 .reset_bit = RESET_MODULE_GE0_MAC,
253 };
254
255 struct platform_device ar71xx_eth0_device = {
256 .name = "ag71xx",
257 .id = 0,
258 .resource = ar71xx_eth0_resources,
259 .num_resources = ARRAY_SIZE(ar71xx_eth0_resources),
260 .dev = {
261 .platform_data = &ar71xx_eth0_data,
262 },
263 };
264
265 static struct resource ar71xx_eth1_resources[] = {
266 {
267 .name = "mac_base",
268 .flags = IORESOURCE_MEM,
269 .start = AR71XX_GE1_BASE,
270 .end = AR71XX_GE1_BASE + 0x200 - 1,
271 }, {
272 .name = "mii_ctrl",
273 .flags = IORESOURCE_MEM,
274 .start = AR71XX_MII_BASE + MII_REG_MII1_CTRL,
275 .end = AR71XX_MII_BASE + MII_REG_MII1_CTRL + 3,
276 }, {
277 .name = "mac_irq",
278 .flags = IORESOURCE_IRQ,
279 .start = AR71XX_CPU_IRQ_GE1,
280 .end = AR71XX_CPU_IRQ_GE1,
281 },
282 };
283
284 struct ag71xx_platform_data ar71xx_eth1_data = {
285 .reset_bit = RESET_MODULE_GE1_MAC,
286 };
287
288 struct platform_device ar71xx_eth1_device = {
289 .name = "ag71xx",
290 .id = 1,
291 .resource = ar71xx_eth1_resources,
292 .num_resources = ARRAY_SIZE(ar71xx_eth1_resources),
293 .dev = {
294 .platform_data = &ar71xx_eth1_data,
295 },
296 };
297
298 #define AR71XX_PLL_VAL_1000 0x00110000
299 #define AR71XX_PLL_VAL_100 0x00001099
300 #define AR71XX_PLL_VAL_10 0x00991099
301
302 #define AR724X_PLL_VAL_1000 0x00110000
303 #define AR724X_PLL_VAL_100 0x00001099
304 #define AR724X_PLL_VAL_10 0x00991099
305
306 #define AR91XX_PLL_VAL_1000 0x1a000000
307 #define AR91XX_PLL_VAL_100 0x13000a44
308 #define AR91XX_PLL_VAL_10 0x00441099
309
310 static void __init ar71xx_init_eth_pll_data(unsigned int id)
311 {
312 struct ar71xx_eth_pll_data *pll_data;
313 u32 pll_10, pll_100, pll_1000;
314
315 switch (id) {
316 case 0:
317 pll_data = &ar71xx_eth0_pll_data;
318 break;
319 case 1:
320 pll_data = &ar71xx_eth1_pll_data;
321 break;
322 default:
323 BUG();
324 }
325
326 switch (ar71xx_soc) {
327 case AR71XX_SOC_AR7130:
328 case AR71XX_SOC_AR7141:
329 case AR71XX_SOC_AR7161:
330 pll_10 = AR71XX_PLL_VAL_10;
331 pll_100 = AR71XX_PLL_VAL_100;
332 pll_1000 = AR71XX_PLL_VAL_1000;
333 break;
334
335 case AR71XX_SOC_AR7240:
336 pll_10 = AR724X_PLL_VAL_10;
337 pll_100 = AR724X_PLL_VAL_100;
338 pll_1000 = AR724X_PLL_VAL_1000;
339 break;
340
341 case AR71XX_SOC_AR9130:
342 case AR71XX_SOC_AR9132:
343 pll_10 = AR91XX_PLL_VAL_10;
344 pll_100 = AR91XX_PLL_VAL_100;
345 pll_1000 = AR91XX_PLL_VAL_1000;
346 break;
347 default:
348 BUG();
349 }
350
351 if (!pll_data->pll_10)
352 pll_data->pll_10 = pll_10;
353
354 if (!pll_data->pll_100)
355 pll_data->pll_100 = pll_100;
356
357 if (!pll_data->pll_1000)
358 pll_data->pll_1000 = pll_1000;
359 }
360
361 static int ar71xx_eth_instance __initdata;
362 void __init ar71xx_add_device_eth(unsigned int id)
363 {
364 struct platform_device *pdev;
365 struct ag71xx_platform_data *pdata;
366
367 ar71xx_init_eth_pll_data(id);
368
369 switch (id) {
370 case 0:
371 switch (ar71xx_eth0_data.phy_if_mode) {
372 case PHY_INTERFACE_MODE_MII:
373 ar71xx_eth0_data.mii_if = MII0_CTRL_IF_MII;
374 break;
375 case PHY_INTERFACE_MODE_GMII:
376 ar71xx_eth0_data.mii_if = MII0_CTRL_IF_GMII;
377 break;
378 case PHY_INTERFACE_MODE_RGMII:
379 ar71xx_eth0_data.mii_if = MII0_CTRL_IF_RGMII;
380 break;
381 case PHY_INTERFACE_MODE_RMII:
382 ar71xx_eth0_data.mii_if = MII0_CTRL_IF_RMII;
383 break;
384 default:
385 printk(KERN_ERR "ar71xx: invalid PHY interface mode "
386 "for eth0\n");
387 return;
388 }
389 pdev = &ar71xx_eth0_device;
390 break;
391 case 1:
392 switch (ar71xx_eth1_data.phy_if_mode) {
393 case PHY_INTERFACE_MODE_RMII:
394 ar71xx_eth1_data.mii_if = MII1_CTRL_IF_RMII;
395 break;
396 case PHY_INTERFACE_MODE_RGMII:
397 ar71xx_eth1_data.mii_if = MII1_CTRL_IF_RGMII;
398 break;
399 default:
400 printk(KERN_ERR "ar71xx: invalid PHY interface mode "
401 "for eth1\n");
402 return;
403 }
404 pdev = &ar71xx_eth1_device;
405 break;
406 default:
407 printk(KERN_ERR "ar71xx: invalid ethernet id %d\n", id);
408 return;
409 }
410
411 pdata = pdev->dev.platform_data;
412
413 switch (ar71xx_soc) {
414 case AR71XX_SOC_AR7130:
415 pdata->ddr_flush = id ? ar71xx_ddr_flush_ge1
416 : ar71xx_ddr_flush_ge0;
417 pdata->set_pll = id ? ar71xx_set_pll_ge1
418 : ar71xx_set_pll_ge0;
419 break;
420
421 case AR71XX_SOC_AR7141:
422 case AR71XX_SOC_AR7161:
423 pdata->ddr_flush = id ? ar71xx_ddr_flush_ge1
424 : ar71xx_ddr_flush_ge0;
425 pdata->set_pll = id ? ar71xx_set_pll_ge1
426 : ar71xx_set_pll_ge0;
427 pdata->has_gbit = 1;
428 break;
429
430 case AR71XX_SOC_AR7240:
431 pdata->ddr_flush = id ? ar724x_ddr_flush_ge1
432 : ar724x_ddr_flush_ge0;
433 pdata->set_pll = id ? ar724x_set_pll_ge1
434 : ar724x_set_pll_ge0;
435 pdata->is_ar724x = 1;
436 break;
437
438 case AR71XX_SOC_AR9130:
439 pdata->ddr_flush = id ? ar91xx_ddr_flush_ge1
440 : ar91xx_ddr_flush_ge0;
441 pdata->set_pll = id ? ar91xx_set_pll_ge1
442 : ar91xx_set_pll_ge0;
443 pdata->is_ar91xx = 1;
444 break;
445
446 case AR71XX_SOC_AR9132:
447 pdata->ddr_flush = id ? ar91xx_ddr_flush_ge1
448 : ar91xx_ddr_flush_ge0;
449 pdata->set_pll = id ? ar91xx_set_pll_ge1
450 : ar91xx_set_pll_ge0;
451 pdata->is_ar91xx = 1;
452 pdata->has_gbit = 1;
453 break;
454
455 default:
456 BUG();
457 }
458
459 switch (pdata->phy_if_mode) {
460 case PHY_INTERFACE_MODE_GMII:
461 case PHY_INTERFACE_MODE_RGMII:
462 if (!pdata->has_gbit) {
463 printk(KERN_ERR "ar71xx: no gbit available on eth%d\n",
464 id);
465 return;
466 }
467 /* fallthrough */
468 default:
469 break;
470 }
471
472 if (is_valid_ether_addr(ar71xx_mac_base)) {
473 memcpy(pdata->mac_addr, ar71xx_mac_base, ETH_ALEN);
474 pdata->mac_addr[5] += ar71xx_eth_instance;
475 } else {
476 random_ether_addr(pdata->mac_addr);
477 printk(KERN_DEBUG
478 "ar71xx: using random MAC address for eth%d\n",
479 ar71xx_eth_instance);
480 }
481
482 if (pdata->mii_bus_dev == NULL)
483 pdata->mii_bus_dev = &ar71xx_mdio_device.dev;
484
485 /* Reset the device */
486 ar71xx_device_stop(pdata->reset_bit);
487 mdelay(100);
488
489 ar71xx_device_start(pdata->reset_bit);
490 mdelay(100);
491
492 platform_device_register(pdev);
493 ar71xx_eth_instance++;
494 }
495
496 static struct resource ar71xx_spi_resources[] = {
497 [0] = {
498 .start = AR71XX_SPI_BASE,
499 .end = AR71XX_SPI_BASE + AR71XX_SPI_SIZE - 1,
500 .flags = IORESOURCE_MEM,
501 },
502 };
503
504 static struct platform_device ar71xx_spi_device = {
505 .name = "ar71xx-spi",
506 .id = -1,
507 .resource = ar71xx_spi_resources,
508 .num_resources = ARRAY_SIZE(ar71xx_spi_resources),
509 };
510
511 void __init ar71xx_add_device_spi(struct ar71xx_spi_platform_data *pdata,
512 struct spi_board_info const *info,
513 unsigned n)
514 {
515 spi_register_board_info(info, n);
516 ar71xx_spi_device.dev.platform_data = pdata;
517 platform_device_register(&ar71xx_spi_device);
518 }
519
520 void __init ar71xx_add_device_wdt(void)
521 {
522 platform_device_register_simple("ar71xx-wdt", -1, NULL, 0);
523 }
524
525 void __init ar71xx_set_mac_base(unsigned char *mac)
526 {
527 memcpy(ar71xx_mac_base, mac, ETH_ALEN);
528 }
529
530 void __init ar71xx_parse_mac_addr(char *mac_str)
531 {
532 u8 tmp[ETH_ALEN];
533 int t;
534
535 t = sscanf(mac_str, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
536 &tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5]);
537
538 if (t != ETH_ALEN)
539 t = sscanf(mac_str, "%02hhx.%02hhx.%02hhx.%02hhx.%02hhx.%02hhx",
540 &tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5]);
541
542 if (t == ETH_ALEN)
543 ar71xx_set_mac_base(tmp);
544 else
545 printk(KERN_DEBUG "ar71xx: failed to parse mac address "
546 "\"%s\"\n", mac_str);
547 }
548
549 static int __init ar71xx_ethaddr_setup(char *str)
550 {
551 ar71xx_parse_mac_addr(str);
552 return 1;
553 }
554 __setup("ethaddr=", ar71xx_ethaddr_setup);
555
556 static int __init ar71xx_kmac_setup(char *str)
557 {
558 ar71xx_parse_mac_addr(str);
559 return 1;
560 }
561 __setup("kmac=", ar71xx_kmac_setup);