blob: af2441dbfc127e5e93c2e07aab8ce2319cb20e5d [file] [log] [blame]
Florian Fainelli7ca5dc12009-06-24 11:12:57 +02001/*
2 * Copyright (C) 2006,2007 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2006,2007 Eugene Konev <ejka@openwrt.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <linux/init.h>
21#include <linux/types.h>
22#include <linux/module.h>
23#include <linux/delay.h>
24#include <linux/dma-mapping.h>
25#include <linux/platform_device.h>
26#include <linux/mtd/physmap.h>
27#include <linux/serial.h>
28#include <linux/serial_8250.h>
29#include <linux/ioport.h>
30#include <linux/io.h>
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020031#include <linux/vlynq.h>
32#include <linux/leds.h>
33#include <linux/string.h>
34#include <linux/etherdevice.h>
Florian Fainelli1e2c8d82009-08-04 10:52:47 +000035#include <linux/phy.h>
36#include <linux/phy_fixed.h>
Florian Fainelli5f3c9092010-01-03 21:16:51 +010037#include <linux/gpio.h>
Florian Fainelli780019d2010-01-27 09:10:06 +010038#include <linux/clk.h>
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020039
40#include <asm/addrspace.h>
41#include <asm/mach-ar7/ar7.h>
42#include <asm/mach-ar7/gpio.h>
43#include <asm/mach-ar7/prom.h>
44
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000045/*****************************************************************************
46 * VLYNQ Bus
47 ****************************************************************************/
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020048struct plat_vlynq_data {
49 struct plat_vlynq_ops ops;
50 int gpio_bit;
51 int reset_bit;
52};
53
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020054static int vlynq_on(struct vlynq_device *dev)
55{
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000056 int ret;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020057 struct plat_vlynq_data *pdata = dev->dev.platform_data;
58
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000059 ret = gpio_request(pdata->gpio_bit, "vlynq");
60 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020061 goto out;
62
63 ar7_device_reset(pdata->reset_bit);
64
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000065 ret = ar7_gpio_disable(pdata->gpio_bit);
66 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020067 goto out_enabled;
68
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000069 ret = ar7_gpio_enable(pdata->gpio_bit);
70 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020071 goto out_enabled;
72
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000073 ret = gpio_direction_output(pdata->gpio_bit, 0);
74 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020075 goto out_gpio_enabled;
76
77 msleep(50);
78
79 gpio_set_value(pdata->gpio_bit, 1);
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000080
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020081 msleep(50);
82
83 return 0;
84
85out_gpio_enabled:
86 ar7_gpio_disable(pdata->gpio_bit);
87out_enabled:
88 ar7_device_disable(pdata->reset_bit);
89 gpio_free(pdata->gpio_bit);
90out:
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000091 return ret;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020092}
93
94static void vlynq_off(struct vlynq_device *dev)
95{
96 struct plat_vlynq_data *pdata = dev->dev.platform_data;
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000097
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020098 ar7_gpio_disable(pdata->gpio_bit);
99 gpio_free(pdata->gpio_bit);
100 ar7_device_disable(pdata->reset_bit);
101}
102
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200103static struct resource vlynq_low_res[] = {
104 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000105 .name = "regs",
106 .flags = IORESOURCE_MEM,
107 .start = AR7_REGS_VLYNQ0,
108 .end = AR7_REGS_VLYNQ0 + 0xff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200109 },
110 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000111 .name = "irq",
112 .flags = IORESOURCE_IRQ,
113 .start = 29,
114 .end = 29,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200115 },
116 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000117 .name = "mem",
118 .flags = IORESOURCE_MEM,
119 .start = 0x04000000,
120 .end = 0x04ffffff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200121 },
122 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000123 .name = "devirq",
124 .flags = IORESOURCE_IRQ,
125 .start = 80,
126 .end = 111,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200127 },
128};
129
130static struct resource vlynq_high_res[] = {
131 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000132 .name = "regs",
133 .flags = IORESOURCE_MEM,
134 .start = AR7_REGS_VLYNQ1,
135 .end = AR7_REGS_VLYNQ1 + 0xff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200136 },
137 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000138 .name = "irq",
139 .flags = IORESOURCE_IRQ,
140 .start = 33,
141 .end = 33,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200142 },
143 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000144 .name = "mem",
145 .flags = IORESOURCE_MEM,
146 .start = 0x0c000000,
147 .end = 0x0cffffff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200148 },
149 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000150 .name = "devirq",
151 .flags = IORESOURCE_IRQ,
152 .start = 112,
153 .end = 143,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200154 },
155};
156
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200157static struct plat_vlynq_data vlynq_low_data = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000158 .ops = {
159 .on = vlynq_on,
160 .off = vlynq_off,
161 },
162 .reset_bit = 20,
163 .gpio_bit = 18,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200164};
165
166static struct plat_vlynq_data vlynq_high_data = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000167 .ops = {
168 .on = vlynq_on,
169 .off = vlynq_off,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200170 },
Alexander Clouter1e3fb372010-03-12 19:39:48 +0000171 .reset_bit = 16,
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000172 .gpio_bit = 19,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200173};
174
175static struct platform_device vlynq_low = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000176 .id = 0,
177 .name = "vlynq",
178 .dev = {
179 .platform_data = &vlynq_low_data,
180 },
181 .resource = vlynq_low_res,
182 .num_resources = ARRAY_SIZE(vlynq_low_res),
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200183};
184
185static struct platform_device vlynq_high = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000186 .id = 1,
187 .name = "vlynq",
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200188 .dev = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000189 .platform_data = &vlynq_high_data,
190 },
191 .resource = vlynq_high_res,
192 .num_resources = ARRAY_SIZE(vlynq_high_res),
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200193};
194
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000195/*****************************************************************************
196 * Flash
197 ****************************************************************************/
198static struct resource physmap_flash_resource = {
199 .name = "mem",
200 .flags = IORESOURCE_MEM,
201 .start = 0x10000000,
202 .end = 0x107fffff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200203};
204
Florian Fainellidcb96a42012-11-27 22:19:58 +0100205static const char *ar7_probe_types[] = { "ar7part", NULL };
206
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000207static struct physmap_flash_data physmap_flash_data = {
208 .width = 2,
Florian Fainellidcb96a42012-11-27 22:19:58 +0100209 .part_probe_types = ar7_probe_types,
Florian Fainellid47fbb52009-07-15 12:09:34 +0200210};
211
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000212static struct platform_device physmap_flash = {
213 .name = "physmap-flash",
214 .dev = {
215 .platform_data = &physmap_flash_data,
216 },
217 .resource = &physmap_flash_resource,
218 .num_resources = 1,
219};
220
221/*****************************************************************************
222 * Ethernet
223 ****************************************************************************/
224static struct resource cpmac_low_res[] = {
225 {
226 .name = "regs",
227 .flags = IORESOURCE_MEM,
228 .start = AR7_REGS_MAC0,
229 .end = AR7_REGS_MAC0 + 0x7ff,
230 },
231 {
232 .name = "irq",
233 .flags = IORESOURCE_IRQ,
234 .start = 27,
Florian Fainelli11454102011-06-12 20:57:18 +0200235 .end = 27,
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000236 },
237};
238
239static struct resource cpmac_high_res[] = {
240 {
241 .name = "regs",
242 .flags = IORESOURCE_MEM,
243 .start = AR7_REGS_MAC1,
244 .end = AR7_REGS_MAC1 + 0x7ff,
245 },
246 {
247 .name = "irq",
248 .flags = IORESOURCE_IRQ,
249 .start = 41,
250 .end = 41,
251 },
252};
253
254static struct fixed_phy_status fixed_phy_status __initdata = {
255 .link = 1,
256 .speed = 100,
257 .duplex = 1,
258};
259
260static struct plat_cpmac_data cpmac_low_data = {
261 .reset_bit = 17,
262 .power_bit = 20,
263 .phy_mask = 0x80000000,
264};
265
266static struct plat_cpmac_data cpmac_high_data = {
267 .reset_bit = 21,
268 .power_bit = 22,
269 .phy_mask = 0x7fffffff,
270};
271
272static u64 cpmac_dma_mask = DMA_BIT_MASK(32);
273
274static struct platform_device cpmac_low = {
275 .id = 0,
276 .name = "cpmac",
277 .dev = {
278 .dma_mask = &cpmac_dma_mask,
279 .coherent_dma_mask = DMA_BIT_MASK(32),
280 .platform_data = &cpmac_low_data,
281 },
282 .resource = cpmac_low_res,
283 .num_resources = ARRAY_SIZE(cpmac_low_res),
284};
285
286static struct platform_device cpmac_high = {
287 .id = 1,
288 .name = "cpmac",
289 .dev = {
290 .dma_mask = &cpmac_dma_mask,
291 .coherent_dma_mask = DMA_BIT_MASK(32),
292 .platform_data = &cpmac_high_data,
293 },
294 .resource = cpmac_high_res,
295 .num_resources = ARRAY_SIZE(cpmac_high_res),
Florian Fainellid47fbb52009-07-15 12:09:34 +0200296};
297
Alexander Clouterd16f7092010-07-05 21:11:26 +0100298static void __init cpmac_get_mac(int instance, unsigned char *dev_addr)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200299{
Alexander Clouterd16f7092010-07-05 21:11:26 +0100300 char name[5], *mac;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200301
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200302 sprintf(name, "mac%c", 'a' + instance);
303 mac = prom_getenv(name);
Alexander Clouterd16f7092010-07-05 21:11:26 +0100304 if (!mac && instance) {
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200305 sprintf(name, "mac%c", 'a');
306 mac = prom_getenv(name);
307 }
Alexander Clouterd16f7092010-07-05 21:11:26 +0100308
309 if (mac) {
310 if (sscanf(mac, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
311 &dev_addr[0], &dev_addr[1],
312 &dev_addr[2], &dev_addr[3],
313 &dev_addr[4], &dev_addr[5]) != 6) {
Joe Perches7178d2c2014-10-04 09:50:42 -0700314 pr_warn("cannot parse mac address, using random address\n");
Joe Perches6e5928f2012-07-12 22:33:12 -0700315 eth_random_addr(dev_addr);
Alexander Clouterd16f7092010-07-05 21:11:26 +0100316 }
317 } else
Joe Perches6e5928f2012-07-12 22:33:12 -0700318 eth_random_addr(dev_addr);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200319}
320
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000321/*****************************************************************************
322 * USB
323 ****************************************************************************/
324static struct resource usb_res[] = {
325 {
326 .name = "regs",
327 .flags = IORESOURCE_MEM,
328 .start = AR7_REGS_USB,
329 .end = AR7_REGS_USB + 0xff,
330 },
331 {
332 .name = "irq",
333 .flags = IORESOURCE_IRQ,
334 .start = 32,
335 .end = 32,
336 },
337 {
338 .name = "mem",
339 .flags = IORESOURCE_MEM,
340 .start = 0x03400000,
Alexander Clouter632b6292010-01-31 19:38:52 +0000341 .end = 0x03401fff,
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000342 },
343};
344
345static struct platform_device ar7_udc = {
346 .name = "ar7_udc",
347 .resource = usb_res,
348 .num_resources = ARRAY_SIZE(usb_res),
349};
350
351/*****************************************************************************
352 * LEDs
353 ****************************************************************************/
354static struct gpio_led default_leds[] = {
355 {
356 .name = "status",
357 .gpio = 8,
358 .active_low = 1,
359 },
360};
361
Florian Fainelli238dd312010-08-29 17:08:44 +0200362static struct gpio_led titan_leds[] = {
363 { .name = "status", .gpio = 8, .active_low = 1, },
364 { .name = "wifi", .gpio = 13, .active_low = 1, },
365};
366
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000367static struct gpio_led dsl502t_leds[] = {
368 {
369 .name = "status",
370 .gpio = 9,
371 .active_low = 1,
372 },
373 {
374 .name = "ethernet",
375 .gpio = 7,
376 .active_low = 1,
377 },
378 {
379 .name = "usb",
380 .gpio = 12,
381 .active_low = 1,
382 },
383};
384
385static struct gpio_led dg834g_leds[] = {
386 {
387 .name = "ppp",
388 .gpio = 6,
389 .active_low = 1,
390 },
391 {
392 .name = "status",
393 .gpio = 7,
394 .active_low = 1,
395 },
396 {
397 .name = "adsl",
398 .gpio = 8,
399 .active_low = 1,
400 },
401 {
402 .name = "wifi",
403 .gpio = 12,
404 .active_low = 1,
405 },
406 {
407 .name = "power",
408 .gpio = 14,
409 .active_low = 1,
410 .default_trigger = "default-on",
411 },
412};
413
414static struct gpio_led fb_sl_leds[] = {
415 {
416 .name = "1",
417 .gpio = 7,
418 },
419 {
420 .name = "2",
421 .gpio = 13,
422 .active_low = 1,
423 },
424 {
425 .name = "3",
426 .gpio = 10,
427 .active_low = 1,
428 },
429 {
430 .name = "4",
431 .gpio = 12,
432 .active_low = 1,
433 },
434 {
435 .name = "5",
436 .gpio = 9,
437 .active_low = 1,
438 },
439};
440
441static struct gpio_led fb_fon_leds[] = {
442 {
443 .name = "1",
444 .gpio = 8,
445 },
446 {
447 .name = "2",
448 .gpio = 3,
449 .active_low = 1,
450 },
451 {
452 .name = "3",
453 .gpio = 5,
454 },
455 {
456 .name = "4",
457 .gpio = 4,
458 .active_low = 1,
459 },
460 {
461 .name = "5",
462 .gpio = 11,
463 .active_low = 1,
464 },
465};
466
Florian Fainellif77138e2011-11-15 20:23:44 +0100467static struct gpio_led gt701_leds[] = {
468 {
469 .name = "inet:green",
470 .gpio = 13,
471 .active_low = 1,
472 },
473 {
474 .name = "usb",
475 .gpio = 12,
476 .active_low = 1,
477 },
478 {
479 .name = "inet:red",
480 .gpio = 9,
481 .active_low = 1,
482 },
483 {
484 .name = "power:red",
485 .gpio = 7,
486 .active_low = 1,
487 },
488 {
489 .name = "power:green",
490 .gpio = 8,
491 .active_low = 1,
492 .default_trigger = "default-on",
493 },
Ralf Baechle70342282013-01-22 12:59:30 +0100494 {
495 .name = "ethernet",
496 .gpio = 10,
497 .active_low = 1,
498 },
Florian Fainellif77138e2011-11-15 20:23:44 +0100499};
500
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000501static struct gpio_led_platform_data ar7_led_data;
502
503static struct platform_device ar7_gpio_leds = {
504 .name = "leds-gpio",
505 .dev = {
506 .platform_data = &ar7_led_data,
507 }
508};
509
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200510static void __init detect_leds(void)
511{
512 char *prid, *usb_prod;
513
Ralf Baechle70342282013-01-22 12:59:30 +0100514 /* Default LEDs */
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200515 ar7_led_data.num_leds = ARRAY_SIZE(default_leds);
516 ar7_led_data.leds = default_leds;
517
518 /* FIXME: the whole thing is unreliable */
519 prid = prom_getenv("ProductID");
520 usb_prod = prom_getenv("usb_prod");
521
522 /* If we can't get the product id from PROM, use the default LEDs */
523 if (!prid)
524 return;
525
526 if (strstr(prid, "Fritz_Box_FON")) {
527 ar7_led_data.num_leds = ARRAY_SIZE(fb_fon_leds);
528 ar7_led_data.leds = fb_fon_leds;
529 } else if (strstr(prid, "Fritz_Box_")) {
530 ar7_led_data.num_leds = ARRAY_SIZE(fb_sl_leds);
531 ar7_led_data.leds = fb_sl_leds;
532 } else if ((!strcmp(prid, "AR7RD") || !strcmp(prid, "AR7DB"))
533 && usb_prod != NULL && strstr(usb_prod, "DSL-502T")) {
534 ar7_led_data.num_leds = ARRAY_SIZE(dsl502t_leds);
535 ar7_led_data.leds = dsl502t_leds;
536 } else if (strstr(prid, "DG834")) {
537 ar7_led_data.num_leds = ARRAY_SIZE(dg834g_leds);
538 ar7_led_data.leds = dg834g_leds;
Florian Fainelli238dd312010-08-29 17:08:44 +0200539 } else if (strstr(prid, "CYWM") || strstr(prid, "CYWL")) {
540 ar7_led_data.num_leds = ARRAY_SIZE(titan_leds);
541 ar7_led_data.leds = titan_leds;
Florian Fainellif77138e2011-11-15 20:23:44 +0100542 } else if (strstr(prid, "GT701")) {
543 ar7_led_data.num_leds = ARRAY_SIZE(gt701_leds);
544 ar7_led_data.leds = gt701_leds;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200545 }
546}
547
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000548/*****************************************************************************
549 * Watchdog
550 ****************************************************************************/
551static struct resource ar7_wdt_res = {
552 .name = "regs",
553 .flags = IORESOURCE_MEM,
554 .start = -1, /* Filled at runtime */
555 .end = -1, /* Filled at runtime */
556};
557
558static struct platform_device ar7_wdt = {
559 .name = "ar7_wdt",
560 .resource = &ar7_wdt_res,
561 .num_resources = 1,
562};
563
564/*****************************************************************************
565 * Init
566 ****************************************************************************/
Alexander Clouter70843382010-01-31 19:39:57 +0000567static int __init ar7_register_uarts(void)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200568{
Florian Fainelli50ca9612009-07-24 13:24:15 +0200569#ifdef CONFIG_SERIAL_8250
Alexander Clouter70843382010-01-31 19:39:57 +0000570 static struct uart_port uart_port __initdata;
Florian Fainelli780019d2010-01-27 09:10:06 +0100571 struct clk *bus_clk;
Alexander Clouter70843382010-01-31 19:39:57 +0000572 int res;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200573
Alexander Clouter70843382010-01-31 19:39:57 +0000574 memset(&uart_port, 0, sizeof(struct uart_port));
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200575
Florian Fainelli780019d2010-01-27 09:10:06 +0100576 bus_clk = clk_get(NULL, "bus");
577 if (IS_ERR(bus_clk))
Ralf Baechleab75dc02011-11-17 15:07:31 +0000578 panic("unable to get bus clk");
Florian Fainelli780019d2010-01-27 09:10:06 +0100579
Florian Fainelli154615d2010-05-16 15:25:17 +0200580 uart_port.type = PORT_AR7;
Alexander Clouter70843382010-01-31 19:39:57 +0000581 uart_port.uartclk = clk_get_rate(bus_clk) / 2;
582 uart_port.iotype = UPIO_MEM32;
583 uart_port.regshift = 2;
584
585 uart_port.line = 0;
586 uart_port.irq = AR7_IRQ_UART0;
587 uart_port.mapbase = AR7_REGS_UART0;
588 uart_port.membase = ioremap(uart_port.mapbase, 256);
589
590 res = early_serial_setup(&uart_port);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200591 if (res)
592 return res;
593
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200594 /* Only TNETD73xx have a second serial port */
595 if (ar7_has_second_uart()) {
Alexander Clouter70843382010-01-31 19:39:57 +0000596 uart_port.line = 1;
597 uart_port.irq = AR7_IRQ_UART1;
598 uart_port.mapbase = UR8_REGS_UART1;
599 uart_port.membase = ioremap(uart_port.mapbase, 256);
600
601 res = early_serial_setup(&uart_port);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200602 if (res)
603 return res;
604 }
Alexander Clouter70843382010-01-31 19:39:57 +0000605#endif
606
607 return 0;
608}
609
Florian Fainelli238dd312010-08-29 17:08:44 +0200610static void __init titan_fixup_devices(void)
611{
612 /* Set vlynq0 data */
613 vlynq_low_data.reset_bit = 15;
614 vlynq_low_data.gpio_bit = 14;
615
616 /* Set vlynq1 data */
617 vlynq_high_data.reset_bit = 16;
618 vlynq_high_data.gpio_bit = 7;
619
620 /* Set vlynq0 resources */
621 vlynq_low_res[0].start = TITAN_REGS_VLYNQ0;
622 vlynq_low_res[0].end = TITAN_REGS_VLYNQ0 + 0xff;
623 vlynq_low_res[1].start = 33;
624 vlynq_low_res[1].end = 33;
625 vlynq_low_res[2].start = 0x0c000000;
626 vlynq_low_res[2].end = 0x0fffffff;
627 vlynq_low_res[3].start = 80;
628 vlynq_low_res[3].end = 111;
629
630 /* Set vlynq1 resources */
631 vlynq_high_res[0].start = TITAN_REGS_VLYNQ1;
632 vlynq_high_res[0].end = TITAN_REGS_VLYNQ1 + 0xff;
633 vlynq_high_res[1].start = 34;
634 vlynq_high_res[1].end = 34;
635 vlynq_high_res[2].start = 0x40000000;
636 vlynq_high_res[2].end = 0x43ffffff;
637 vlynq_high_res[3].start = 112;
638 vlynq_high_res[3].end = 143;
639
640 /* Set cpmac0 data */
641 cpmac_low_data.phy_mask = 0x40000000;
642
643 /* Set cpmac1 data */
644 cpmac_high_data.phy_mask = 0x80000000;
645
646 /* Set cpmac0 resources */
647 cpmac_low_res[0].start = TITAN_REGS_MAC0;
648 cpmac_low_res[0].end = TITAN_REGS_MAC0 + 0x7ff;
649
650 /* Set cpmac1 resources */
651 cpmac_high_res[0].start = TITAN_REGS_MAC1;
652 cpmac_high_res[0].end = TITAN_REGS_MAC1 + 0x7ff;
653}
654
Alexander Clouter70843382010-01-31 19:39:57 +0000655static int __init ar7_register_devices(void)
656{
657 void __iomem *bootcr;
658 u32 val;
Alexander Clouter70843382010-01-31 19:39:57 +0000659 int res;
660
661 res = ar7_register_uarts();
662 if (res)
663 pr_err("unable to setup uart(s): %d\n", res);
664
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200665 res = platform_device_register(&physmap_flash);
666 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700667 pr_warn("unable to register physmap-flash: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200668
Florian Fainelli238dd312010-08-29 17:08:44 +0200669 if (ar7_is_titan())
670 titan_fixup_devices();
671
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200672 ar7_device_disable(vlynq_low_data.reset_bit);
673 res = platform_device_register(&vlynq_low);
674 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700675 pr_warn("unable to register vlynq-low: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200676
677 if (ar7_has_high_vlynq()) {
678 ar7_device_disable(vlynq_high_data.reset_bit);
679 res = platform_device_register(&vlynq_high);
680 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700681 pr_warn("unable to register vlynq-high: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200682 }
683
684 if (ar7_has_high_cpmac()) {
Alexander Clouter727c00752010-03-13 00:09:15 +0000685 res = fixed_phy_add(PHY_POLL, cpmac_high.id, &fixed_phy_status);
Alexander Clouter70843382010-01-31 19:39:57 +0000686 if (!res) {
687 cpmac_get_mac(1, cpmac_high_data.dev_addr);
688
689 res = platform_device_register(&cpmac_high);
690 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700691 pr_warn("unable to register cpmac-high: %d\n",
692 res);
Alexander Clouter70843382010-01-31 19:39:57 +0000693 } else
Joe Perches7178d2c2014-10-04 09:50:42 -0700694 pr_warn("unable to add cpmac-high phy: %d\n", res);
Alexander Clouter70843382010-01-31 19:39:57 +0000695 } else
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200696 cpmac_low_data.phy_mask = 0xffffffff;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200697
Florian Fainelli1e2c8d82009-08-04 10:52:47 +0000698 res = fixed_phy_add(PHY_POLL, cpmac_low.id, &fixed_phy_status);
Alexander Clouter70843382010-01-31 19:39:57 +0000699 if (!res) {
700 cpmac_get_mac(0, cpmac_low_data.dev_addr);
701 res = platform_device_register(&cpmac_low);
702 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700703 pr_warn("unable to register cpmac-low: %d\n", res);
Alexander Clouter70843382010-01-31 19:39:57 +0000704 } else
Joe Perches7178d2c2014-10-04 09:50:42 -0700705 pr_warn("unable to add cpmac-low phy: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200706
707 detect_leds();
708 res = platform_device_register(&ar7_gpio_leds);
709 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700710 pr_warn("unable to register leds: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200711
712 res = platform_device_register(&ar7_udc);
Alexander Clouter70843382010-01-31 19:39:57 +0000713 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700714 pr_warn("unable to register usb slave: %d\n", res);
Florian Fainelli72838a12009-08-04 23:09:36 +0200715
716 /* Register watchdog only if enabled in hardware */
Alexander Clouter70843382010-01-31 19:39:57 +0000717 bootcr = ioremap_nocache(AR7_REGS_DCL, 4);
718 val = readl(bootcr);
719 iounmap(bootcr);
720 if (val & AR7_WDT_HW_ENA) {
Florian Fainelli9c1b0132010-05-11 11:20:09 +0200721 if (ar7_has_high_vlynq())
Alexander Clouter70843382010-01-31 19:39:57 +0000722 ar7_wdt_res.start = UR8_REGS_WDT;
Florian Fainelli9c1b0132010-05-11 11:20:09 +0200723 else
724 ar7_wdt_res.start = AR7_REGS_WDT;
Florian Fainellid47fbb52009-07-15 12:09:34 +0200725
Alexander Clouter70843382010-01-31 19:39:57 +0000726 ar7_wdt_res.end = ar7_wdt_res.start + 0x20;
727 res = platform_device_register(&ar7_wdt);
728 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700729 pr_warn("unable to register watchdog: %d\n", res);
Alexander Clouter70843382010-01-31 19:39:57 +0000730 }
731
732 return 0;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200733}
Florian Fainelli142a2ce2010-05-11 11:20:14 +0200734device_initcall(ar7_register_devices);