blob: 9da4e2292fc7c9e28ddb93685e0f73e45160d344 [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>
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020042#include <asm/mach-ar7/prom.h>
43
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000044/*****************************************************************************
45 * VLYNQ Bus
46 ****************************************************************************/
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020047struct plat_vlynq_data {
48 struct plat_vlynq_ops ops;
49 int gpio_bit;
50 int reset_bit;
51};
52
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020053static int vlynq_on(struct vlynq_device *dev)
54{
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000055 int ret;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020056 struct plat_vlynq_data *pdata = dev->dev.platform_data;
57
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000058 ret = gpio_request(pdata->gpio_bit, "vlynq");
59 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020060 goto out;
61
62 ar7_device_reset(pdata->reset_bit);
63
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000064 ret = ar7_gpio_disable(pdata->gpio_bit);
65 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020066 goto out_enabled;
67
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000068 ret = ar7_gpio_enable(pdata->gpio_bit);
69 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020070 goto out_enabled;
71
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000072 ret = gpio_direction_output(pdata->gpio_bit, 0);
73 if (ret)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020074 goto out_gpio_enabled;
75
76 msleep(50);
77
78 gpio_set_value(pdata->gpio_bit, 1);
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000079
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020080 msleep(50);
81
82 return 0;
83
84out_gpio_enabled:
85 ar7_gpio_disable(pdata->gpio_bit);
86out_enabled:
87 ar7_device_disable(pdata->reset_bit);
88 gpio_free(pdata->gpio_bit);
89out:
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000090 return ret;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020091}
92
93static void vlynq_off(struct vlynq_device *dev)
94{
95 struct plat_vlynq_data *pdata = dev->dev.platform_data;
Alexander Clouter4d1da8c2010-01-31 19:38:19 +000096
Florian Fainelli7ca5dc12009-06-24 11:12:57 +020097 ar7_gpio_disable(pdata->gpio_bit);
98 gpio_free(pdata->gpio_bit);
99 ar7_device_disable(pdata->reset_bit);
100}
101
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200102static struct resource vlynq_low_res[] = {
103 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000104 .name = "regs",
105 .flags = IORESOURCE_MEM,
106 .start = AR7_REGS_VLYNQ0,
107 .end = AR7_REGS_VLYNQ0 + 0xff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200108 },
109 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000110 .name = "irq",
111 .flags = IORESOURCE_IRQ,
112 .start = 29,
113 .end = 29,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200114 },
115 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000116 .name = "mem",
117 .flags = IORESOURCE_MEM,
118 .start = 0x04000000,
119 .end = 0x04ffffff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200120 },
121 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000122 .name = "devirq",
123 .flags = IORESOURCE_IRQ,
124 .start = 80,
125 .end = 111,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200126 },
127};
128
129static struct resource vlynq_high_res[] = {
130 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000131 .name = "regs",
132 .flags = IORESOURCE_MEM,
133 .start = AR7_REGS_VLYNQ1,
134 .end = AR7_REGS_VLYNQ1 + 0xff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200135 },
136 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000137 .name = "irq",
138 .flags = IORESOURCE_IRQ,
139 .start = 33,
140 .end = 33,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200141 },
142 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000143 .name = "mem",
144 .flags = IORESOURCE_MEM,
145 .start = 0x0c000000,
146 .end = 0x0cffffff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200147 },
148 {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000149 .name = "devirq",
150 .flags = IORESOURCE_IRQ,
151 .start = 112,
152 .end = 143,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200153 },
154};
155
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200156static struct plat_vlynq_data vlynq_low_data = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000157 .ops = {
158 .on = vlynq_on,
159 .off = vlynq_off,
160 },
161 .reset_bit = 20,
162 .gpio_bit = 18,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200163};
164
165static struct plat_vlynq_data vlynq_high_data = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000166 .ops = {
167 .on = vlynq_on,
168 .off = vlynq_off,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200169 },
Alexander Clouter1e3fb372010-03-12 19:39:48 +0000170 .reset_bit = 16,
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000171 .gpio_bit = 19,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200172};
173
174static struct platform_device vlynq_low = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000175 .id = 0,
176 .name = "vlynq",
177 .dev = {
178 .platform_data = &vlynq_low_data,
179 },
180 .resource = vlynq_low_res,
181 .num_resources = ARRAY_SIZE(vlynq_low_res),
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200182};
183
184static struct platform_device vlynq_high = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000185 .id = 1,
186 .name = "vlynq",
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200187 .dev = {
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000188 .platform_data = &vlynq_high_data,
189 },
190 .resource = vlynq_high_res,
191 .num_resources = ARRAY_SIZE(vlynq_high_res),
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200192};
193
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000194/*****************************************************************************
195 * Flash
196 ****************************************************************************/
197static struct resource physmap_flash_resource = {
198 .name = "mem",
199 .flags = IORESOURCE_MEM,
200 .start = 0x10000000,
201 .end = 0x107fffff,
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200202};
203
Florian Fainellidcb96a42012-11-27 22:19:58 +0100204static const char *ar7_probe_types[] = { "ar7part", NULL };
205
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000206static struct physmap_flash_data physmap_flash_data = {
207 .width = 2,
Florian Fainellidcb96a42012-11-27 22:19:58 +0100208 .part_probe_types = ar7_probe_types,
Florian Fainellid47fbb52009-07-15 12:09:34 +0200209};
210
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000211static struct platform_device physmap_flash = {
212 .name = "physmap-flash",
213 .dev = {
214 .platform_data = &physmap_flash_data,
215 },
216 .resource = &physmap_flash_resource,
217 .num_resources = 1,
218};
219
220/*****************************************************************************
221 * Ethernet
222 ****************************************************************************/
223static struct resource cpmac_low_res[] = {
224 {
225 .name = "regs",
226 .flags = IORESOURCE_MEM,
227 .start = AR7_REGS_MAC0,
228 .end = AR7_REGS_MAC0 + 0x7ff,
229 },
230 {
231 .name = "irq",
232 .flags = IORESOURCE_IRQ,
233 .start = 27,
Florian Fainelli11454102011-06-12 20:57:18 +0200234 .end = 27,
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000235 },
236};
237
238static struct resource cpmac_high_res[] = {
239 {
240 .name = "regs",
241 .flags = IORESOURCE_MEM,
242 .start = AR7_REGS_MAC1,
243 .end = AR7_REGS_MAC1 + 0x7ff,
244 },
245 {
246 .name = "irq",
247 .flags = IORESOURCE_IRQ,
248 .start = 41,
249 .end = 41,
250 },
251};
252
253static struct fixed_phy_status fixed_phy_status __initdata = {
254 .link = 1,
255 .speed = 100,
256 .duplex = 1,
257};
258
259static struct plat_cpmac_data cpmac_low_data = {
260 .reset_bit = 17,
261 .power_bit = 20,
262 .phy_mask = 0x80000000,
263};
264
265static struct plat_cpmac_data cpmac_high_data = {
266 .reset_bit = 21,
267 .power_bit = 22,
268 .phy_mask = 0x7fffffff,
269};
270
271static u64 cpmac_dma_mask = DMA_BIT_MASK(32);
272
273static struct platform_device cpmac_low = {
274 .id = 0,
275 .name = "cpmac",
276 .dev = {
277 .dma_mask = &cpmac_dma_mask,
278 .coherent_dma_mask = DMA_BIT_MASK(32),
279 .platform_data = &cpmac_low_data,
280 },
281 .resource = cpmac_low_res,
282 .num_resources = ARRAY_SIZE(cpmac_low_res),
283};
284
285static struct platform_device cpmac_high = {
286 .id = 1,
287 .name = "cpmac",
288 .dev = {
289 .dma_mask = &cpmac_dma_mask,
290 .coherent_dma_mask = DMA_BIT_MASK(32),
291 .platform_data = &cpmac_high_data,
292 },
293 .resource = cpmac_high_res,
294 .num_resources = ARRAY_SIZE(cpmac_high_res),
Florian Fainellid47fbb52009-07-15 12:09:34 +0200295};
296
Alexander Clouterd16f7092010-07-05 21:11:26 +0100297static void __init cpmac_get_mac(int instance, unsigned char *dev_addr)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200298{
Alexander Clouterd16f7092010-07-05 21:11:26 +0100299 char name[5], *mac;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200300
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200301 sprintf(name, "mac%c", 'a' + instance);
302 mac = prom_getenv(name);
Alexander Clouterd16f7092010-07-05 21:11:26 +0100303 if (!mac && instance) {
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200304 sprintf(name, "mac%c", 'a');
305 mac = prom_getenv(name);
306 }
Alexander Clouterd16f7092010-07-05 21:11:26 +0100307
308 if (mac) {
Daniel Walter5db7ccd2014-06-24 16:39:59 +0100309 if (!mac_pton(mac, dev_addr)) {
Joe Perches7178d2c2014-10-04 09:50:42 -0700310 pr_warn("cannot parse mac address, using random address\n");
Joe Perches6e5928f2012-07-12 22:33:12 -0700311 eth_random_addr(dev_addr);
Alexander Clouterd16f7092010-07-05 21:11:26 +0100312 }
313 } else
Joe Perches6e5928f2012-07-12 22:33:12 -0700314 eth_random_addr(dev_addr);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200315}
316
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000317/*****************************************************************************
318 * USB
319 ****************************************************************************/
320static struct resource usb_res[] = {
321 {
322 .name = "regs",
323 .flags = IORESOURCE_MEM,
324 .start = AR7_REGS_USB,
325 .end = AR7_REGS_USB + 0xff,
326 },
327 {
328 .name = "irq",
329 .flags = IORESOURCE_IRQ,
330 .start = 32,
331 .end = 32,
332 },
333 {
334 .name = "mem",
335 .flags = IORESOURCE_MEM,
336 .start = 0x03400000,
Alexander Clouter632b6292010-01-31 19:38:52 +0000337 .end = 0x03401fff,
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000338 },
339};
340
341static struct platform_device ar7_udc = {
342 .name = "ar7_udc",
343 .resource = usb_res,
344 .num_resources = ARRAY_SIZE(usb_res),
345};
346
347/*****************************************************************************
348 * LEDs
349 ****************************************************************************/
350static struct gpio_led default_leds[] = {
351 {
352 .name = "status",
353 .gpio = 8,
354 .active_low = 1,
355 },
356};
357
Florian Fainelli238dd312010-08-29 17:08:44 +0200358static struct gpio_led titan_leds[] = {
359 { .name = "status", .gpio = 8, .active_low = 1, },
360 { .name = "wifi", .gpio = 13, .active_low = 1, },
361};
362
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000363static struct gpio_led dsl502t_leds[] = {
364 {
365 .name = "status",
366 .gpio = 9,
367 .active_low = 1,
368 },
369 {
370 .name = "ethernet",
371 .gpio = 7,
372 .active_low = 1,
373 },
374 {
375 .name = "usb",
376 .gpio = 12,
377 .active_low = 1,
378 },
379};
380
381static struct gpio_led dg834g_leds[] = {
382 {
383 .name = "ppp",
384 .gpio = 6,
385 .active_low = 1,
386 },
387 {
388 .name = "status",
389 .gpio = 7,
390 .active_low = 1,
391 },
392 {
393 .name = "adsl",
394 .gpio = 8,
395 .active_low = 1,
396 },
397 {
398 .name = "wifi",
399 .gpio = 12,
400 .active_low = 1,
401 },
402 {
403 .name = "power",
404 .gpio = 14,
405 .active_low = 1,
406 .default_trigger = "default-on",
407 },
408};
409
410static struct gpio_led fb_sl_leds[] = {
411 {
412 .name = "1",
413 .gpio = 7,
414 },
415 {
416 .name = "2",
417 .gpio = 13,
418 .active_low = 1,
419 },
420 {
421 .name = "3",
422 .gpio = 10,
423 .active_low = 1,
424 },
425 {
426 .name = "4",
427 .gpio = 12,
428 .active_low = 1,
429 },
430 {
431 .name = "5",
432 .gpio = 9,
433 .active_low = 1,
434 },
435};
436
437static struct gpio_led fb_fon_leds[] = {
438 {
439 .name = "1",
440 .gpio = 8,
441 },
442 {
443 .name = "2",
444 .gpio = 3,
445 .active_low = 1,
446 },
447 {
448 .name = "3",
449 .gpio = 5,
450 },
451 {
452 .name = "4",
453 .gpio = 4,
454 .active_low = 1,
455 },
456 {
457 .name = "5",
458 .gpio = 11,
459 .active_low = 1,
460 },
461};
462
Florian Fainellif77138e2011-11-15 20:23:44 +0100463static struct gpio_led gt701_leds[] = {
464 {
465 .name = "inet:green",
466 .gpio = 13,
467 .active_low = 1,
468 },
469 {
470 .name = "usb",
471 .gpio = 12,
472 .active_low = 1,
473 },
474 {
475 .name = "inet:red",
476 .gpio = 9,
477 .active_low = 1,
478 },
479 {
480 .name = "power:red",
481 .gpio = 7,
482 .active_low = 1,
483 },
484 {
485 .name = "power:green",
486 .gpio = 8,
487 .active_low = 1,
488 .default_trigger = "default-on",
489 },
Ralf Baechle70342282013-01-22 12:59:30 +0100490 {
491 .name = "ethernet",
492 .gpio = 10,
493 .active_low = 1,
494 },
Florian Fainellif77138e2011-11-15 20:23:44 +0100495};
496
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000497static struct gpio_led_platform_data ar7_led_data;
498
499static struct platform_device ar7_gpio_leds = {
500 .name = "leds-gpio",
501 .dev = {
502 .platform_data = &ar7_led_data,
503 }
504};
505
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200506static void __init detect_leds(void)
507{
508 char *prid, *usb_prod;
509
Ralf Baechle70342282013-01-22 12:59:30 +0100510 /* Default LEDs */
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200511 ar7_led_data.num_leds = ARRAY_SIZE(default_leds);
512 ar7_led_data.leds = default_leds;
513
514 /* FIXME: the whole thing is unreliable */
515 prid = prom_getenv("ProductID");
516 usb_prod = prom_getenv("usb_prod");
517
518 /* If we can't get the product id from PROM, use the default LEDs */
519 if (!prid)
520 return;
521
522 if (strstr(prid, "Fritz_Box_FON")) {
523 ar7_led_data.num_leds = ARRAY_SIZE(fb_fon_leds);
524 ar7_led_data.leds = fb_fon_leds;
525 } else if (strstr(prid, "Fritz_Box_")) {
526 ar7_led_data.num_leds = ARRAY_SIZE(fb_sl_leds);
527 ar7_led_data.leds = fb_sl_leds;
528 } else if ((!strcmp(prid, "AR7RD") || !strcmp(prid, "AR7DB"))
529 && usb_prod != NULL && strstr(usb_prod, "DSL-502T")) {
530 ar7_led_data.num_leds = ARRAY_SIZE(dsl502t_leds);
531 ar7_led_data.leds = dsl502t_leds;
532 } else if (strstr(prid, "DG834")) {
533 ar7_led_data.num_leds = ARRAY_SIZE(dg834g_leds);
534 ar7_led_data.leds = dg834g_leds;
Florian Fainelli238dd312010-08-29 17:08:44 +0200535 } else if (strstr(prid, "CYWM") || strstr(prid, "CYWL")) {
536 ar7_led_data.num_leds = ARRAY_SIZE(titan_leds);
537 ar7_led_data.leds = titan_leds;
Florian Fainellif77138e2011-11-15 20:23:44 +0100538 } else if (strstr(prid, "GT701")) {
539 ar7_led_data.num_leds = ARRAY_SIZE(gt701_leds);
540 ar7_led_data.leds = gt701_leds;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200541 }
542}
543
Alexander Clouter4d1da8c2010-01-31 19:38:19 +0000544/*****************************************************************************
545 * Watchdog
546 ****************************************************************************/
547static struct resource ar7_wdt_res = {
548 .name = "regs",
549 .flags = IORESOURCE_MEM,
550 .start = -1, /* Filled at runtime */
551 .end = -1, /* Filled at runtime */
552};
553
554static struct platform_device ar7_wdt = {
555 .name = "ar7_wdt",
556 .resource = &ar7_wdt_res,
557 .num_resources = 1,
558};
559
560/*****************************************************************************
561 * Init
562 ****************************************************************************/
Alexander Clouter70843382010-01-31 19:39:57 +0000563static int __init ar7_register_uarts(void)
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200564{
Florian Fainelli50ca9612009-07-24 13:24:15 +0200565#ifdef CONFIG_SERIAL_8250
Alexander Clouter70843382010-01-31 19:39:57 +0000566 static struct uart_port uart_port __initdata;
Florian Fainelli780019d2010-01-27 09:10:06 +0100567 struct clk *bus_clk;
Alexander Clouter70843382010-01-31 19:39:57 +0000568 int res;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200569
Alexander Clouter70843382010-01-31 19:39:57 +0000570 memset(&uart_port, 0, sizeof(struct uart_port));
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200571
Florian Fainelli780019d2010-01-27 09:10:06 +0100572 bus_clk = clk_get(NULL, "bus");
573 if (IS_ERR(bus_clk))
Ralf Baechleab75dc02011-11-17 15:07:31 +0000574 panic("unable to get bus clk");
Florian Fainelli780019d2010-01-27 09:10:06 +0100575
Florian Fainelli154615d2010-05-16 15:25:17 +0200576 uart_port.type = PORT_AR7;
Alexander Clouter70843382010-01-31 19:39:57 +0000577 uart_port.uartclk = clk_get_rate(bus_clk) / 2;
578 uart_port.iotype = UPIO_MEM32;
Jonas Gorski60249fe2017-10-29 16:27:21 +0100579 uart_port.flags = UPF_FIXED_TYPE | UPF_BOOT_AUTOCONF;
Alexander Clouter70843382010-01-31 19:39:57 +0000580 uart_port.regshift = 2;
581
582 uart_port.line = 0;
583 uart_port.irq = AR7_IRQ_UART0;
584 uart_port.mapbase = AR7_REGS_UART0;
585 uart_port.membase = ioremap(uart_port.mapbase, 256);
586
587 res = early_serial_setup(&uart_port);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200588 if (res)
589 return res;
590
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200591 /* Only TNETD73xx have a second serial port */
592 if (ar7_has_second_uart()) {
Alexander Clouter70843382010-01-31 19:39:57 +0000593 uart_port.line = 1;
594 uart_port.irq = AR7_IRQ_UART1;
595 uart_port.mapbase = UR8_REGS_UART1;
596 uart_port.membase = ioremap(uart_port.mapbase, 256);
597
598 res = early_serial_setup(&uart_port);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200599 if (res)
600 return res;
601 }
Alexander Clouter70843382010-01-31 19:39:57 +0000602#endif
603
604 return 0;
605}
606
Florian Fainelli238dd312010-08-29 17:08:44 +0200607static void __init titan_fixup_devices(void)
608{
609 /* Set vlynq0 data */
610 vlynq_low_data.reset_bit = 15;
611 vlynq_low_data.gpio_bit = 14;
612
613 /* Set vlynq1 data */
614 vlynq_high_data.reset_bit = 16;
615 vlynq_high_data.gpio_bit = 7;
616
617 /* Set vlynq0 resources */
618 vlynq_low_res[0].start = TITAN_REGS_VLYNQ0;
619 vlynq_low_res[0].end = TITAN_REGS_VLYNQ0 + 0xff;
620 vlynq_low_res[1].start = 33;
621 vlynq_low_res[1].end = 33;
622 vlynq_low_res[2].start = 0x0c000000;
623 vlynq_low_res[2].end = 0x0fffffff;
624 vlynq_low_res[3].start = 80;
625 vlynq_low_res[3].end = 111;
626
627 /* Set vlynq1 resources */
628 vlynq_high_res[0].start = TITAN_REGS_VLYNQ1;
629 vlynq_high_res[0].end = TITAN_REGS_VLYNQ1 + 0xff;
630 vlynq_high_res[1].start = 34;
631 vlynq_high_res[1].end = 34;
632 vlynq_high_res[2].start = 0x40000000;
633 vlynq_high_res[2].end = 0x43ffffff;
634 vlynq_high_res[3].start = 112;
635 vlynq_high_res[3].end = 143;
636
637 /* Set cpmac0 data */
638 cpmac_low_data.phy_mask = 0x40000000;
639
640 /* Set cpmac1 data */
641 cpmac_high_data.phy_mask = 0x80000000;
642
643 /* Set cpmac0 resources */
644 cpmac_low_res[0].start = TITAN_REGS_MAC0;
645 cpmac_low_res[0].end = TITAN_REGS_MAC0 + 0x7ff;
646
647 /* Set cpmac1 resources */
648 cpmac_high_res[0].start = TITAN_REGS_MAC1;
649 cpmac_high_res[0].end = TITAN_REGS_MAC1 + 0x7ff;
650}
651
Alexander Clouter70843382010-01-31 19:39:57 +0000652static int __init ar7_register_devices(void)
653{
654 void __iomem *bootcr;
655 u32 val;
Alexander Clouter70843382010-01-31 19:39:57 +0000656 int res;
657
Jonas Gorski76aaa782017-10-29 16:27:19 +0100658 res = ar7_gpio_init();
659 if (res)
660 pr_warn("unable to register gpios: %d\n", res);
661
Alexander Clouter70843382010-01-31 19:39:57 +0000662 res = ar7_register_uarts();
663 if (res)
664 pr_err("unable to setup uart(s): %d\n", res);
665
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200666 res = platform_device_register(&physmap_flash);
667 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700668 pr_warn("unable to register physmap-flash: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200669
Florian Fainelli238dd312010-08-29 17:08:44 +0200670 if (ar7_is_titan())
671 titan_fixup_devices();
672
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200673 ar7_device_disable(vlynq_low_data.reset_bit);
674 res = platform_device_register(&vlynq_low);
675 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700676 pr_warn("unable to register vlynq-low: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200677
678 if (ar7_has_high_vlynq()) {
679 ar7_device_disable(vlynq_high_data.reset_bit);
680 res = platform_device_register(&vlynq_high);
681 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700682 pr_warn("unable to register vlynq-high: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200683 }
684
685 if (ar7_has_high_cpmac()) {
Andrew Lunna5597002015-08-31 15:56:53 +0200686 res = fixed_phy_add(PHY_POLL, cpmac_high.id,
687 &fixed_phy_status, -1);
Alexander Clouter70843382010-01-31 19:39:57 +0000688 if (!res) {
689 cpmac_get_mac(1, cpmac_high_data.dev_addr);
690
691 res = platform_device_register(&cpmac_high);
692 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700693 pr_warn("unable to register cpmac-high: %d\n",
694 res);
Alexander Clouter70843382010-01-31 19:39:57 +0000695 } else
Joe Perches7178d2c2014-10-04 09:50:42 -0700696 pr_warn("unable to add cpmac-high phy: %d\n", res);
Alexander Clouter70843382010-01-31 19:39:57 +0000697 } else
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200698 cpmac_low_data.phy_mask = 0xffffffff;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200699
Andrew Lunna5597002015-08-31 15:56:53 +0200700 res = fixed_phy_add(PHY_POLL, cpmac_low.id, &fixed_phy_status, -1);
Alexander Clouter70843382010-01-31 19:39:57 +0000701 if (!res) {
702 cpmac_get_mac(0, cpmac_low_data.dev_addr);
703 res = platform_device_register(&cpmac_low);
704 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700705 pr_warn("unable to register cpmac-low: %d\n", res);
Alexander Clouter70843382010-01-31 19:39:57 +0000706 } else
Joe Perches7178d2c2014-10-04 09:50:42 -0700707 pr_warn("unable to add cpmac-low phy: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200708
709 detect_leds();
710 res = platform_device_register(&ar7_gpio_leds);
711 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700712 pr_warn("unable to register leds: %d\n", res);
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200713
714 res = platform_device_register(&ar7_udc);
Alexander Clouter70843382010-01-31 19:39:57 +0000715 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700716 pr_warn("unable to register usb slave: %d\n", res);
Florian Fainelli72838a12009-08-04 23:09:36 +0200717
718 /* Register watchdog only if enabled in hardware */
Alexander Clouter70843382010-01-31 19:39:57 +0000719 bootcr = ioremap_nocache(AR7_REGS_DCL, 4);
720 val = readl(bootcr);
721 iounmap(bootcr);
722 if (val & AR7_WDT_HW_ENA) {
Florian Fainelli9c1b0132010-05-11 11:20:09 +0200723 if (ar7_has_high_vlynq())
Alexander Clouter70843382010-01-31 19:39:57 +0000724 ar7_wdt_res.start = UR8_REGS_WDT;
Florian Fainelli9c1b0132010-05-11 11:20:09 +0200725 else
726 ar7_wdt_res.start = AR7_REGS_WDT;
Florian Fainellid47fbb52009-07-15 12:09:34 +0200727
Alexander Clouter70843382010-01-31 19:39:57 +0000728 ar7_wdt_res.end = ar7_wdt_res.start + 0x20;
729 res = platform_device_register(&ar7_wdt);
730 if (res)
Joe Perches7178d2c2014-10-04 09:50:42 -0700731 pr_warn("unable to register watchdog: %d\n", res);
Alexander Clouter70843382010-01-31 19:39:57 +0000732 }
733
734 return 0;
Florian Fainelli7ca5dc12009-06-24 11:12:57 +0200735}
Florian Fainelli142a2ce2010-05-11 11:20:14 +0200736device_initcall(ar7_register_devices);