2 * Copyright (C) 2006,2007 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2006,2007 Eugene Konev <ejka@openwrt.org>
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.
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.
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
20 #include <linux/init.h>
21 #include <linux/types.h>
22 #include <linux/delay.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/platform_device.h>
25 #include <linux/mtd/physmap.h>
26 #include <linux/serial.h>
27 #include <linux/serial_8250.h>
28 #include <linux/ioport.h>
30 #include <linux/vlynq.h>
31 #include <linux/leds.h>
32 #include <linux/string.h>
33 #include <linux/etherdevice.h>
34 #include <linux/phy.h>
35 #include <linux/phy_fixed.h>
36 #include <linux/gpio.h>
37 #include <linux/clk.h>
39 #include <asm/addrspace.h>
40 #include <asm/mach-ar7/ar7.h>
41 #include <asm/mach-ar7/prom.h>
43 /*****************************************************************************
45 ****************************************************************************/
46 struct plat_vlynq_data
{
47 struct plat_vlynq_ops ops
;
52 static int vlynq_on(struct vlynq_device
*dev
)
55 struct plat_vlynq_data
*pdata
= dev
->dev
.platform_data
;
57 ret
= gpio_request(pdata
->gpio_bit
, "vlynq");
61 ar7_device_reset(pdata
->reset_bit
);
63 ret
= ar7_gpio_disable(pdata
->gpio_bit
);
67 ret
= ar7_gpio_enable(pdata
->gpio_bit
);
71 ret
= gpio_direction_output(pdata
->gpio_bit
, 0);
73 goto out_gpio_enabled
;
77 gpio_set_value(pdata
->gpio_bit
, 1);
84 ar7_gpio_disable(pdata
->gpio_bit
);
86 ar7_device_disable(pdata
->reset_bit
);
87 gpio_free(pdata
->gpio_bit
);
92 static void vlynq_off(struct vlynq_device
*dev
)
94 struct plat_vlynq_data
*pdata
= dev
->dev
.platform_data
;
96 ar7_gpio_disable(pdata
->gpio_bit
);
97 gpio_free(pdata
->gpio_bit
);
98 ar7_device_disable(pdata
->reset_bit
);
101 static struct resource vlynq_low_res
[] = {
104 .flags
= IORESOURCE_MEM
,
105 .start
= AR7_REGS_VLYNQ0
,
106 .end
= AR7_REGS_VLYNQ0
+ 0xff,
110 .flags
= IORESOURCE_IRQ
,
116 .flags
= IORESOURCE_MEM
,
122 .flags
= IORESOURCE_IRQ
,
128 static struct resource vlynq_high_res
[] = {
131 .flags
= IORESOURCE_MEM
,
132 .start
= AR7_REGS_VLYNQ1
,
133 .end
= AR7_REGS_VLYNQ1
+ 0xff,
137 .flags
= IORESOURCE_IRQ
,
143 .flags
= IORESOURCE_MEM
,
149 .flags
= IORESOURCE_IRQ
,
155 static struct plat_vlynq_data vlynq_low_data
= {
164 static struct plat_vlynq_data vlynq_high_data
= {
173 static struct platform_device vlynq_low
= {
177 .platform_data
= &vlynq_low_data
,
179 .resource
= vlynq_low_res
,
180 .num_resources
= ARRAY_SIZE(vlynq_low_res
),
183 static struct platform_device vlynq_high
= {
187 .platform_data
= &vlynq_high_data
,
189 .resource
= vlynq_high_res
,
190 .num_resources
= ARRAY_SIZE(vlynq_high_res
),
193 /*****************************************************************************
195 ****************************************************************************/
196 static struct resource physmap_flash_resource
= {
198 .flags
= IORESOURCE_MEM
,
203 static const char *ar7_probe_types
[] = { "ar7part", NULL
};
205 static struct physmap_flash_data physmap_flash_data
= {
207 .part_probe_types
= ar7_probe_types
,
210 static struct platform_device physmap_flash
= {
211 .name
= "physmap-flash",
213 .platform_data
= &physmap_flash_data
,
215 .resource
= &physmap_flash_resource
,
219 /*****************************************************************************
221 ****************************************************************************/
222 static struct resource cpmac_low_res
[] = {
225 .flags
= IORESOURCE_MEM
,
226 .start
= AR7_REGS_MAC0
,
227 .end
= AR7_REGS_MAC0
+ 0x7ff,
231 .flags
= IORESOURCE_IRQ
,
237 static struct resource cpmac_high_res
[] = {
240 .flags
= IORESOURCE_MEM
,
241 .start
= AR7_REGS_MAC1
,
242 .end
= AR7_REGS_MAC1
+ 0x7ff,
246 .flags
= IORESOURCE_IRQ
,
252 static struct fixed_phy_status fixed_phy_status __initdata
= {
258 static struct plat_cpmac_data cpmac_low_data
= {
261 .phy_mask
= 0x80000000,
264 static struct plat_cpmac_data cpmac_high_data
= {
267 .phy_mask
= 0x7fffffff,
270 static u64 cpmac_dma_mask
= DMA_BIT_MASK(32);
272 static struct platform_device cpmac_low
= {
276 .dma_mask
= &cpmac_dma_mask
,
277 .coherent_dma_mask
= DMA_BIT_MASK(32),
278 .platform_data
= &cpmac_low_data
,
280 .resource
= cpmac_low_res
,
281 .num_resources
= ARRAY_SIZE(cpmac_low_res
),
284 static struct platform_device cpmac_high
= {
288 .dma_mask
= &cpmac_dma_mask
,
289 .coherent_dma_mask
= DMA_BIT_MASK(32),
290 .platform_data
= &cpmac_high_data
,
292 .resource
= cpmac_high_res
,
293 .num_resources
= ARRAY_SIZE(cpmac_high_res
),
296 static void __init
cpmac_get_mac(int instance
, unsigned char *dev_addr
)
300 sprintf(name
, "mac%c", 'a' + instance
);
301 mac
= prom_getenv(name
);
302 if (!mac
&& instance
) {
303 sprintf(name
, "mac%c", 'a');
304 mac
= prom_getenv(name
);
308 if (!mac_pton(mac
, dev_addr
)) {
309 pr_warn("cannot parse mac address, using random address\n");
310 eth_random_addr(dev_addr
);
313 eth_random_addr(dev_addr
);
316 /*****************************************************************************
318 ****************************************************************************/
319 static struct resource usb_res
[] = {
322 .flags
= IORESOURCE_MEM
,
323 .start
= AR7_REGS_USB
,
324 .end
= AR7_REGS_USB
+ 0xff,
328 .flags
= IORESOURCE_IRQ
,
334 .flags
= IORESOURCE_MEM
,
340 static struct platform_device ar7_udc
= {
343 .num_resources
= ARRAY_SIZE(usb_res
),
346 /*****************************************************************************
348 ****************************************************************************/
349 static const struct gpio_led default_leds
[] = {
357 static const struct gpio_led titan_leds
[] = {
358 { .name
= "status", .gpio
= 8, .active_low
= 1, },
359 { .name
= "wifi", .gpio
= 13, .active_low
= 1, },
362 static const struct gpio_led dsl502t_leds
[] = {
380 static const struct gpio_led dg834g_leds
[] = {
405 .default_trigger
= "default-on",
409 static const struct gpio_led fb_sl_leds
[] = {
436 static const struct gpio_led fb_fon_leds
[] = {
462 static const struct gpio_led gt701_leds
[] = {
464 .name
= "inet:green",
484 .name
= "power:green",
487 .default_trigger
= "default-on",
496 static struct gpio_led_platform_data ar7_led_data
;
498 static struct platform_device ar7_gpio_leds
= {
501 .platform_data
= &ar7_led_data
,
505 static void __init
detect_leds(void)
507 char *prid
, *usb_prod
;
510 ar7_led_data
.num_leds
= ARRAY_SIZE(default_leds
);
511 ar7_led_data
.leds
= default_leds
;
513 /* FIXME: the whole thing is unreliable */
514 prid
= prom_getenv("ProductID");
515 usb_prod
= prom_getenv("usb_prod");
517 /* If we can't get the product id from PROM, use the default LEDs */
521 if (strstr(prid
, "Fritz_Box_FON")) {
522 ar7_led_data
.num_leds
= ARRAY_SIZE(fb_fon_leds
);
523 ar7_led_data
.leds
= fb_fon_leds
;
524 } else if (strstr(prid
, "Fritz_Box_")) {
525 ar7_led_data
.num_leds
= ARRAY_SIZE(fb_sl_leds
);
526 ar7_led_data
.leds
= fb_sl_leds
;
527 } else if ((!strcmp(prid
, "AR7RD") || !strcmp(prid
, "AR7DB"))
528 && usb_prod
!= NULL
&& strstr(usb_prod
, "DSL-502T")) {
529 ar7_led_data
.num_leds
= ARRAY_SIZE(dsl502t_leds
);
530 ar7_led_data
.leds
= dsl502t_leds
;
531 } else if (strstr(prid
, "DG834")) {
532 ar7_led_data
.num_leds
= ARRAY_SIZE(dg834g_leds
);
533 ar7_led_data
.leds
= dg834g_leds
;
534 } else if (strstr(prid
, "CYWM") || strstr(prid
, "CYWL")) {
535 ar7_led_data
.num_leds
= ARRAY_SIZE(titan_leds
);
536 ar7_led_data
.leds
= titan_leds
;
537 } else if (strstr(prid
, "GT701")) {
538 ar7_led_data
.num_leds
= ARRAY_SIZE(gt701_leds
);
539 ar7_led_data
.leds
= gt701_leds
;
543 /*****************************************************************************
545 ****************************************************************************/
546 static struct resource ar7_wdt_res
= {
548 .flags
= IORESOURCE_MEM
,
549 .start
= -1, /* Filled at runtime */
550 .end
= -1, /* Filled at runtime */
553 static struct platform_device ar7_wdt
= {
555 .resource
= &ar7_wdt_res
,
559 /*****************************************************************************
561 ****************************************************************************/
562 static int __init
ar7_register_uarts(void)
564 #ifdef CONFIG_SERIAL_8250
565 static struct uart_port uart_port __initdata
;
569 memset(&uart_port
, 0, sizeof(struct uart_port
));
571 bus_clk
= clk_get(NULL
, "bus");
573 panic("unable to get bus clk");
575 uart_port
.type
= PORT_AR7
;
576 uart_port
.uartclk
= clk_get_rate(bus_clk
) / 2;
577 uart_port
.iotype
= UPIO_MEM32
;
578 uart_port
.flags
= UPF_FIXED_TYPE
| UPF_BOOT_AUTOCONF
;
579 uart_port
.regshift
= 2;
582 uart_port
.irq
= AR7_IRQ_UART0
;
583 uart_port
.mapbase
= AR7_REGS_UART0
;
584 uart_port
.membase
= ioremap(uart_port
.mapbase
, 256);
586 res
= early_serial_setup(&uart_port
);
590 /* Only TNETD73xx have a second serial port */
591 if (ar7_has_second_uart()) {
593 uart_port
.irq
= AR7_IRQ_UART1
;
594 uart_port
.mapbase
= UR8_REGS_UART1
;
595 uart_port
.membase
= ioremap(uart_port
.mapbase
, 256);
597 res
= early_serial_setup(&uart_port
);
606 static void __init
titan_fixup_devices(void)
608 /* Set vlynq0 data */
609 vlynq_low_data
.reset_bit
= 15;
610 vlynq_low_data
.gpio_bit
= 14;
612 /* Set vlynq1 data */
613 vlynq_high_data
.reset_bit
= 16;
614 vlynq_high_data
.gpio_bit
= 7;
616 /* Set vlynq0 resources */
617 vlynq_low_res
[0].start
= TITAN_REGS_VLYNQ0
;
618 vlynq_low_res
[0].end
= TITAN_REGS_VLYNQ0
+ 0xff;
619 vlynq_low_res
[1].start
= 33;
620 vlynq_low_res
[1].end
= 33;
621 vlynq_low_res
[2].start
= 0x0c000000;
622 vlynq_low_res
[2].end
= 0x0fffffff;
623 vlynq_low_res
[3].start
= 80;
624 vlynq_low_res
[3].end
= 111;
626 /* Set vlynq1 resources */
627 vlynq_high_res
[0].start
= TITAN_REGS_VLYNQ1
;
628 vlynq_high_res
[0].end
= TITAN_REGS_VLYNQ1
+ 0xff;
629 vlynq_high_res
[1].start
= 34;
630 vlynq_high_res
[1].end
= 34;
631 vlynq_high_res
[2].start
= 0x40000000;
632 vlynq_high_res
[2].end
= 0x43ffffff;
633 vlynq_high_res
[3].start
= 112;
634 vlynq_high_res
[3].end
= 143;
636 /* Set cpmac0 data */
637 cpmac_low_data
.phy_mask
= 0x40000000;
639 /* Set cpmac1 data */
640 cpmac_high_data
.phy_mask
= 0x80000000;
642 /* Set cpmac0 resources */
643 cpmac_low_res
[0].start
= TITAN_REGS_MAC0
;
644 cpmac_low_res
[0].end
= TITAN_REGS_MAC0
+ 0x7ff;
646 /* Set cpmac1 resources */
647 cpmac_high_res
[0].start
= TITAN_REGS_MAC1
;
648 cpmac_high_res
[0].end
= TITAN_REGS_MAC1
+ 0x7ff;
651 static int __init
ar7_register_devices(void)
653 void __iomem
*bootcr
;
657 res
= ar7_gpio_init();
659 pr_warn("unable to register gpios: %d\n", res
);
661 res
= ar7_register_uarts();
663 pr_err("unable to setup uart(s): %d\n", res
);
665 res
= platform_device_register(&physmap_flash
);
667 pr_warn("unable to register physmap-flash: %d\n", res
);
670 titan_fixup_devices();
672 ar7_device_disable(vlynq_low_data
.reset_bit
);
673 res
= platform_device_register(&vlynq_low
);
675 pr_warn("unable to register vlynq-low: %d\n", res
);
677 if (ar7_has_high_vlynq()) {
678 ar7_device_disable(vlynq_high_data
.reset_bit
);
679 res
= platform_device_register(&vlynq_high
);
681 pr_warn("unable to register vlynq-high: %d\n", res
);
684 if (ar7_has_high_cpmac()) {
685 res
= fixed_phy_add(PHY_POLL
, cpmac_high
.id
,
686 &fixed_phy_status
, -1);
688 cpmac_get_mac(1, cpmac_high_data
.dev_addr
);
690 res
= platform_device_register(&cpmac_high
);
692 pr_warn("unable to register cpmac-high: %d\n",
695 pr_warn("unable to add cpmac-high phy: %d\n", res
);
697 cpmac_low_data
.phy_mask
= 0xffffffff;
699 res
= fixed_phy_add(PHY_POLL
, cpmac_low
.id
, &fixed_phy_status
, -1);
701 cpmac_get_mac(0, cpmac_low_data
.dev_addr
);
702 res
= platform_device_register(&cpmac_low
);
704 pr_warn("unable to register cpmac-low: %d\n", res
);
706 pr_warn("unable to add cpmac-low phy: %d\n", res
);
709 res
= platform_device_register(&ar7_gpio_leds
);
711 pr_warn("unable to register leds: %d\n", res
);
713 res
= platform_device_register(&ar7_udc
);
715 pr_warn("unable to register usb slave: %d\n", res
);
717 /* Register watchdog only if enabled in hardware */
718 bootcr
= ioremap_nocache(AR7_REGS_DCL
, 4);
721 if (val
& AR7_WDT_HW_ENA
) {
722 if (ar7_has_high_vlynq())
723 ar7_wdt_res
.start
= UR8_REGS_WDT
;
725 ar7_wdt_res
.start
= AR7_REGS_WDT
;
727 ar7_wdt_res
.end
= ar7_wdt_res
.start
+ 0x20;
728 res
= platform_device_register(&ar7_wdt
);
730 pr_warn("unable to register watchdog: %d\n", res
);
735 device_initcall(ar7_register_devices
);