1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2006,2007 Felix Fietkau <nbd@openwrt.org>
4 * Copyright (C) 2006,2007 Eugene Konev <ejka@openwrt.org>
7 #include <linux/init.h>
8 #include <linux/types.h>
9 #include <linux/delay.h>
10 #include <linux/dma-mapping.h>
11 #include <linux/platform_device.h>
12 #include <linux/mtd/physmap.h>
13 #include <linux/serial.h>
14 #include <linux/serial_8250.h>
15 #include <linux/ioport.h>
17 #include <linux/vlynq.h>
18 #include <linux/leds.h>
19 #include <linux/string.h>
20 #include <linux/etherdevice.h>
21 #include <linux/phy.h>
22 #include <linux/phy_fixed.h>
23 #include <linux/gpio.h>
24 #include <linux/clk.h>
26 #include <asm/addrspace.h>
27 #include <asm/mach-ar7/ar7.h>
28 #include <asm/mach-ar7/prom.h>
30 /*****************************************************************************
32 ****************************************************************************/
33 struct plat_vlynq_data {
34 struct plat_vlynq_ops ops;
39 static int vlynq_on(struct vlynq_device *dev)
42 struct plat_vlynq_data *pdata = dev->dev.platform_data;
44 ret = gpio_request(pdata->gpio_bit, "vlynq");
48 ar7_device_reset(pdata->reset_bit);
50 ret = ar7_gpio_disable(pdata->gpio_bit);
54 ret = ar7_gpio_enable(pdata->gpio_bit);
58 ret = gpio_direction_output(pdata->gpio_bit, 0);
60 goto out_gpio_enabled;
64 gpio_set_value(pdata->gpio_bit, 1);
71 ar7_gpio_disable(pdata->gpio_bit);
73 ar7_device_disable(pdata->reset_bit);
74 gpio_free(pdata->gpio_bit);
79 static void vlynq_off(struct vlynq_device *dev)
81 struct plat_vlynq_data *pdata = dev->dev.platform_data;
83 ar7_gpio_disable(pdata->gpio_bit);
84 gpio_free(pdata->gpio_bit);
85 ar7_device_disable(pdata->reset_bit);
88 static struct resource vlynq_low_res[] = {
91 .flags = IORESOURCE_MEM,
92 .start = AR7_REGS_VLYNQ0,
93 .end = AR7_REGS_VLYNQ0 + 0xff,
97 .flags = IORESOURCE_IRQ,
103 .flags = IORESOURCE_MEM,
109 .flags = IORESOURCE_IRQ,
115 static struct resource vlynq_high_res[] = {
118 .flags = IORESOURCE_MEM,
119 .start = AR7_REGS_VLYNQ1,
120 .end = AR7_REGS_VLYNQ1 + 0xff,
124 .flags = IORESOURCE_IRQ,
130 .flags = IORESOURCE_MEM,
136 .flags = IORESOURCE_IRQ,
142 static struct plat_vlynq_data vlynq_low_data = {
151 static struct plat_vlynq_data vlynq_high_data = {
160 static struct platform_device vlynq_low = {
164 .platform_data = &vlynq_low_data,
166 .resource = vlynq_low_res,
167 .num_resources = ARRAY_SIZE(vlynq_low_res),
170 static struct platform_device vlynq_high = {
174 .platform_data = &vlynq_high_data,
176 .resource = vlynq_high_res,
177 .num_resources = ARRAY_SIZE(vlynq_high_res),
180 /*****************************************************************************
182 ****************************************************************************/
183 static struct resource physmap_flash_resource = {
185 .flags = IORESOURCE_MEM,
190 static const char *ar7_probe_types[] = { "ar7part", NULL };
192 static struct physmap_flash_data physmap_flash_data = {
194 .part_probe_types = ar7_probe_types,
197 static struct platform_device physmap_flash = {
198 .name = "physmap-flash",
200 .platform_data = &physmap_flash_data,
202 .resource = &physmap_flash_resource,
206 /*****************************************************************************
208 ****************************************************************************/
209 static struct resource cpmac_low_res[] = {
212 .flags = IORESOURCE_MEM,
213 .start = AR7_REGS_MAC0,
214 .end = AR7_REGS_MAC0 + 0x7ff,
218 .flags = IORESOURCE_IRQ,
224 static struct resource cpmac_high_res[] = {
227 .flags = IORESOURCE_MEM,
228 .start = AR7_REGS_MAC1,
229 .end = AR7_REGS_MAC1 + 0x7ff,
233 .flags = IORESOURCE_IRQ,
239 static struct fixed_phy_status fixed_phy_status __initdata = {
245 static struct plat_cpmac_data cpmac_low_data = {
248 .phy_mask = 0x80000000,
251 static struct plat_cpmac_data cpmac_high_data = {
254 .phy_mask = 0x7fffffff,
257 static u64 cpmac_dma_mask = DMA_BIT_MASK(32);
259 static struct platform_device cpmac_low = {
263 .dma_mask = &cpmac_dma_mask,
264 .coherent_dma_mask = DMA_BIT_MASK(32),
265 .platform_data = &cpmac_low_data,
267 .resource = cpmac_low_res,
268 .num_resources = ARRAY_SIZE(cpmac_low_res),
271 static struct platform_device cpmac_high = {
275 .dma_mask = &cpmac_dma_mask,
276 .coherent_dma_mask = DMA_BIT_MASK(32),
277 .platform_data = &cpmac_high_data,
279 .resource = cpmac_high_res,
280 .num_resources = ARRAY_SIZE(cpmac_high_res),
283 static void __init cpmac_get_mac(int instance, unsigned char *dev_addr)
287 sprintf(name, "mac%c", 'a' + instance);
288 mac = prom_getenv(name);
289 if (!mac && instance) {
290 sprintf(name, "mac%c", 'a');
291 mac = prom_getenv(name);
295 if (!mac_pton(mac, dev_addr)) {
296 pr_warn("cannot parse mac address, using random address\n");
297 eth_random_addr(dev_addr);
300 eth_random_addr(dev_addr);
303 /*****************************************************************************
305 ****************************************************************************/
306 static struct resource usb_res[] = {
309 .flags = IORESOURCE_MEM,
310 .start = AR7_REGS_USB,
311 .end = AR7_REGS_USB + 0xff,
315 .flags = IORESOURCE_IRQ,
321 .flags = IORESOURCE_MEM,
327 static struct platform_device ar7_udc = {
330 .num_resources = ARRAY_SIZE(usb_res),
333 /*****************************************************************************
335 ****************************************************************************/
336 static const struct gpio_led default_leds[] = {
344 static const struct gpio_led titan_leds[] = {
345 { .name = "status", .gpio = 8, .active_low = 1, },
346 { .name = "wifi", .gpio = 13, .active_low = 1, },
349 static const struct gpio_led dsl502t_leds[] = {
367 static const struct gpio_led dg834g_leds[] = {
392 .default_trigger = "default-on",
396 static const struct gpio_led fb_sl_leds[] = {
423 static const struct gpio_led fb_fon_leds[] = {
449 static const struct gpio_led gt701_leds[] = {
451 .name = "inet:green",
471 .name = "power:green",
474 .default_trigger = "default-on",
483 static struct gpio_led_platform_data ar7_led_data;
485 static struct platform_device ar7_gpio_leds = {
488 .platform_data = &ar7_led_data,
492 static void __init detect_leds(void)
494 char *prid, *usb_prod;
497 ar7_led_data.num_leds = ARRAY_SIZE(default_leds);
498 ar7_led_data.leds = default_leds;
500 /* FIXME: the whole thing is unreliable */
501 prid = prom_getenv("ProductID");
502 usb_prod = prom_getenv("usb_prod");
504 /* If we can't get the product id from PROM, use the default LEDs */
508 if (strstr(prid, "Fritz_Box_FON")) {
509 ar7_led_data.num_leds = ARRAY_SIZE(fb_fon_leds);
510 ar7_led_data.leds = fb_fon_leds;
511 } else if (strstr(prid, "Fritz_Box_")) {
512 ar7_led_data.num_leds = ARRAY_SIZE(fb_sl_leds);
513 ar7_led_data.leds = fb_sl_leds;
514 } else if ((!strcmp(prid, "AR7RD") || !strcmp(prid, "AR7DB"))
515 && usb_prod != NULL && strstr(usb_prod, "DSL-502T")) {
516 ar7_led_data.num_leds = ARRAY_SIZE(dsl502t_leds);
517 ar7_led_data.leds = dsl502t_leds;
518 } else if (strstr(prid, "DG834")) {
519 ar7_led_data.num_leds = ARRAY_SIZE(dg834g_leds);
520 ar7_led_data.leds = dg834g_leds;
521 } else if (strstr(prid, "CYWM") || strstr(prid, "CYWL")) {
522 ar7_led_data.num_leds = ARRAY_SIZE(titan_leds);
523 ar7_led_data.leds = titan_leds;
524 } else if (strstr(prid, "GT701")) {
525 ar7_led_data.num_leds = ARRAY_SIZE(gt701_leds);
526 ar7_led_data.leds = gt701_leds;
530 /*****************************************************************************
532 ****************************************************************************/
533 static struct resource ar7_wdt_res = {
535 .flags = IORESOURCE_MEM,
536 .start = -1, /* Filled at runtime */
537 .end = -1, /* Filled at runtime */
540 static struct platform_device ar7_wdt = {
542 .resource = &ar7_wdt_res,
546 /*****************************************************************************
548 ****************************************************************************/
549 static int __init ar7_register_uarts(void)
551 #ifdef CONFIG_SERIAL_8250
552 static struct uart_port uart_port __initdata;
556 memset(&uart_port, 0, sizeof(struct uart_port));
558 bus_clk = clk_get(NULL, "bus");
560 panic("unable to get bus clk");
562 uart_port.type = PORT_AR7;
563 uart_port.uartclk = clk_get_rate(bus_clk) / 2;
564 uart_port.iotype = UPIO_MEM32;
565 uart_port.flags = UPF_FIXED_TYPE | UPF_BOOT_AUTOCONF;
566 uart_port.regshift = 2;
569 uart_port.irq = AR7_IRQ_UART0;
570 uart_port.mapbase = AR7_REGS_UART0;
571 uart_port.membase = ioremap(uart_port.mapbase, 256);
573 res = early_serial_setup(&uart_port);
577 /* Only TNETD73xx have a second serial port */
578 if (ar7_has_second_uart()) {
580 uart_port.irq = AR7_IRQ_UART1;
581 uart_port.mapbase = UR8_REGS_UART1;
582 uart_port.membase = ioremap(uart_port.mapbase, 256);
584 res = early_serial_setup(&uart_port);
593 static void __init titan_fixup_devices(void)
595 /* Set vlynq0 data */
596 vlynq_low_data.reset_bit = 15;
597 vlynq_low_data.gpio_bit = 14;
599 /* Set vlynq1 data */
600 vlynq_high_data.reset_bit = 16;
601 vlynq_high_data.gpio_bit = 7;
603 /* Set vlynq0 resources */
604 vlynq_low_res[0].start = TITAN_REGS_VLYNQ0;
605 vlynq_low_res[0].end = TITAN_REGS_VLYNQ0 + 0xff;
606 vlynq_low_res[1].start = 33;
607 vlynq_low_res[1].end = 33;
608 vlynq_low_res[2].start = 0x0c000000;
609 vlynq_low_res[2].end = 0x0fffffff;
610 vlynq_low_res[3].start = 80;
611 vlynq_low_res[3].end = 111;
613 /* Set vlynq1 resources */
614 vlynq_high_res[0].start = TITAN_REGS_VLYNQ1;
615 vlynq_high_res[0].end = TITAN_REGS_VLYNQ1 + 0xff;
616 vlynq_high_res[1].start = 34;
617 vlynq_high_res[1].end = 34;
618 vlynq_high_res[2].start = 0x40000000;
619 vlynq_high_res[2].end = 0x43ffffff;
620 vlynq_high_res[3].start = 112;
621 vlynq_high_res[3].end = 143;
623 /* Set cpmac0 data */
624 cpmac_low_data.phy_mask = 0x40000000;
626 /* Set cpmac1 data */
627 cpmac_high_data.phy_mask = 0x80000000;
629 /* Set cpmac0 resources */
630 cpmac_low_res[0].start = TITAN_REGS_MAC0;
631 cpmac_low_res[0].end = TITAN_REGS_MAC0 + 0x7ff;
633 /* Set cpmac1 resources */
634 cpmac_high_res[0].start = TITAN_REGS_MAC1;
635 cpmac_high_res[0].end = TITAN_REGS_MAC1 + 0x7ff;
638 static int __init ar7_register_devices(void)
640 void __iomem *bootcr;
644 res = ar7_gpio_init();
646 pr_warn("unable to register gpios: %d\n", res);
648 res = ar7_register_uarts();
650 pr_err("unable to setup uart(s): %d\n", res);
652 res = platform_device_register(&physmap_flash);
654 pr_warn("unable to register physmap-flash: %d\n", res);
657 titan_fixup_devices();
659 ar7_device_disable(vlynq_low_data.reset_bit);
660 res = platform_device_register(&vlynq_low);
662 pr_warn("unable to register vlynq-low: %d\n", res);
664 if (ar7_has_high_vlynq()) {
665 ar7_device_disable(vlynq_high_data.reset_bit);
666 res = platform_device_register(&vlynq_high);
668 pr_warn("unable to register vlynq-high: %d\n", res);
671 if (ar7_has_high_cpmac()) {
672 res = fixed_phy_add(PHY_POLL, cpmac_high.id,
675 cpmac_get_mac(1, cpmac_high_data.dev_addr);
677 res = platform_device_register(&cpmac_high);
679 pr_warn("unable to register cpmac-high: %d\n",
682 pr_warn("unable to add cpmac-high phy: %d\n", res);
684 cpmac_low_data.phy_mask = 0xffffffff;
686 res = fixed_phy_add(PHY_POLL, cpmac_low.id, &fixed_phy_status);
688 cpmac_get_mac(0, cpmac_low_data.dev_addr);
689 res = platform_device_register(&cpmac_low);
691 pr_warn("unable to register cpmac-low: %d\n", res);
693 pr_warn("unable to add cpmac-low phy: %d\n", res);
696 res = platform_device_register(&ar7_gpio_leds);
698 pr_warn("unable to register leds: %d\n", res);
700 res = platform_device_register(&ar7_udc);
702 pr_warn("unable to register usb slave: %d\n", res);
704 /* Register watchdog only if enabled in hardware */
705 bootcr = ioremap(AR7_REGS_DCL, 4);
708 if (val & AR7_WDT_HW_ENA) {
709 if (ar7_has_high_vlynq())
710 ar7_wdt_res.start = UR8_REGS_WDT;
712 ar7_wdt_res.start = AR7_REGS_WDT;
714 ar7_wdt_res.end = ar7_wdt_res.start + 0x20;
715 res = platform_device_register(&ar7_wdt);
717 pr_warn("unable to register watchdog: %d\n", res);
722 device_initcall(ar7_register_devices);