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/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>
31 #include <linux/vlynq.h>
32 #include <linux/leds.h>
33 #include <linux/string.h>
34 #include <linux/etherdevice.h>
35 #include <linux/phy.h>
36 #include <linux/phy_fixed.h>
37 #include <linux/gpio.h>
38 #include <linux/clk.h>
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>
45 /*****************************************************************************
47 ****************************************************************************/
48 struct plat_vlynq_data
{
49 struct plat_vlynq_ops ops
;
54 static int vlynq_on(struct vlynq_device
*dev
)
57 struct plat_vlynq_data
*pdata
= dev
->dev
.platform_data
;
59 ret
= gpio_request(pdata
->gpio_bit
, "vlynq");
63 ar7_device_reset(pdata
->reset_bit
);
65 ret
= ar7_gpio_disable(pdata
->gpio_bit
);
69 ret
= ar7_gpio_enable(pdata
->gpio_bit
);
73 ret
= gpio_direction_output(pdata
->gpio_bit
, 0);
75 goto out_gpio_enabled
;
79 gpio_set_value(pdata
->gpio_bit
, 1);
86 ar7_gpio_disable(pdata
->gpio_bit
);
88 ar7_device_disable(pdata
->reset_bit
);
89 gpio_free(pdata
->gpio_bit
);
94 static void vlynq_off(struct vlynq_device
*dev
)
96 struct plat_vlynq_data
*pdata
= dev
->dev
.platform_data
;
98 ar7_gpio_disable(pdata
->gpio_bit
);
99 gpio_free(pdata
->gpio_bit
);
100 ar7_device_disable(pdata
->reset_bit
);
103 static struct resource vlynq_low_res
[] = {
106 .flags
= IORESOURCE_MEM
,
107 .start
= AR7_REGS_VLYNQ0
,
108 .end
= AR7_REGS_VLYNQ0
+ 0xff,
112 .flags
= IORESOURCE_IRQ
,
118 .flags
= IORESOURCE_MEM
,
124 .flags
= IORESOURCE_IRQ
,
130 static struct resource vlynq_high_res
[] = {
133 .flags
= IORESOURCE_MEM
,
134 .start
= AR7_REGS_VLYNQ1
,
135 .end
= AR7_REGS_VLYNQ1
+ 0xff,
139 .flags
= IORESOURCE_IRQ
,
145 .flags
= IORESOURCE_MEM
,
151 .flags
= IORESOURCE_IRQ
,
157 static struct plat_vlynq_data vlynq_low_data
= {
166 static struct plat_vlynq_data vlynq_high_data
= {
175 static struct platform_device vlynq_low
= {
179 .platform_data
= &vlynq_low_data
,
181 .resource
= vlynq_low_res
,
182 .num_resources
= ARRAY_SIZE(vlynq_low_res
),
185 static struct platform_device vlynq_high
= {
189 .platform_data
= &vlynq_high_data
,
191 .resource
= vlynq_high_res
,
192 .num_resources
= ARRAY_SIZE(vlynq_high_res
),
195 /*****************************************************************************
197 ****************************************************************************/
198 static struct resource physmap_flash_resource
= {
200 .flags
= IORESOURCE_MEM
,
205 static const char *ar7_probe_types
[] = { "ar7part", NULL
};
207 static struct physmap_flash_data physmap_flash_data
= {
209 .part_probe_types
= ar7_probe_types
,
212 static struct platform_device physmap_flash
= {
213 .name
= "physmap-flash",
215 .platform_data
= &physmap_flash_data
,
217 .resource
= &physmap_flash_resource
,
221 /*****************************************************************************
223 ****************************************************************************/
224 static struct resource cpmac_low_res
[] = {
227 .flags
= IORESOURCE_MEM
,
228 .start
= AR7_REGS_MAC0
,
229 .end
= AR7_REGS_MAC0
+ 0x7ff,
233 .flags
= IORESOURCE_IRQ
,
239 static struct resource cpmac_high_res
[] = {
242 .flags
= IORESOURCE_MEM
,
243 .start
= AR7_REGS_MAC1
,
244 .end
= AR7_REGS_MAC1
+ 0x7ff,
248 .flags
= IORESOURCE_IRQ
,
254 static struct fixed_phy_status fixed_phy_status __initdata
= {
260 static struct plat_cpmac_data cpmac_low_data
= {
263 .phy_mask
= 0x80000000,
266 static struct plat_cpmac_data cpmac_high_data
= {
269 .phy_mask
= 0x7fffffff,
272 static u64 cpmac_dma_mask
= DMA_BIT_MASK(32);
274 static struct platform_device cpmac_low
= {
278 .dma_mask
= &cpmac_dma_mask
,
279 .coherent_dma_mask
= DMA_BIT_MASK(32),
280 .platform_data
= &cpmac_low_data
,
282 .resource
= cpmac_low_res
,
283 .num_resources
= ARRAY_SIZE(cpmac_low_res
),
286 static struct platform_device cpmac_high
= {
290 .dma_mask
= &cpmac_dma_mask
,
291 .coherent_dma_mask
= DMA_BIT_MASK(32),
292 .platform_data
= &cpmac_high_data
,
294 .resource
= cpmac_high_res
,
295 .num_resources
= ARRAY_SIZE(cpmac_high_res
),
298 static void __init
cpmac_get_mac(int instance
, unsigned char *dev_addr
)
302 sprintf(name
, "mac%c", 'a' + instance
);
303 mac
= prom_getenv(name
);
304 if (!mac
&& instance
) {
305 sprintf(name
, "mac%c", 'a');
306 mac
= prom_getenv(name
);
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) {
314 pr_warning("cannot parse mac address, "
315 "using random address\n");
316 eth_random_addr(dev_addr
);
319 eth_random_addr(dev_addr
);
322 /*****************************************************************************
324 ****************************************************************************/
325 static struct resource usb_res
[] = {
328 .flags
= IORESOURCE_MEM
,
329 .start
= AR7_REGS_USB
,
330 .end
= AR7_REGS_USB
+ 0xff,
334 .flags
= IORESOURCE_IRQ
,
340 .flags
= IORESOURCE_MEM
,
346 static struct platform_device ar7_udc
= {
349 .num_resources
= ARRAY_SIZE(usb_res
),
352 /*****************************************************************************
354 ****************************************************************************/
355 static struct gpio_led default_leds
[] = {
363 static struct gpio_led titan_leds
[] = {
364 { .name
= "status", .gpio
= 8, .active_low
= 1, },
365 { .name
= "wifi", .gpio
= 13, .active_low
= 1, },
368 static struct gpio_led dsl502t_leds
[] = {
386 static struct gpio_led dg834g_leds
[] = {
411 .default_trigger
= "default-on",
415 static struct gpio_led fb_sl_leds
[] = {
442 static struct gpio_led fb_fon_leds
[] = {
468 static struct gpio_led gt701_leds
[] = {
470 .name
= "inet:green",
490 .name
= "power:green",
493 .default_trigger
= "default-on",
502 static struct gpio_led_platform_data ar7_led_data
;
504 static struct platform_device ar7_gpio_leds
= {
507 .platform_data
= &ar7_led_data
,
511 static void __init
detect_leds(void)
513 char *prid
, *usb_prod
;
516 ar7_led_data
.num_leds
= ARRAY_SIZE(default_leds
);
517 ar7_led_data
.leds
= default_leds
;
519 /* FIXME: the whole thing is unreliable */
520 prid
= prom_getenv("ProductID");
521 usb_prod
= prom_getenv("usb_prod");
523 /* If we can't get the product id from PROM, use the default LEDs */
527 if (strstr(prid
, "Fritz_Box_FON")) {
528 ar7_led_data
.num_leds
= ARRAY_SIZE(fb_fon_leds
);
529 ar7_led_data
.leds
= fb_fon_leds
;
530 } else if (strstr(prid
, "Fritz_Box_")) {
531 ar7_led_data
.num_leds
= ARRAY_SIZE(fb_sl_leds
);
532 ar7_led_data
.leds
= fb_sl_leds
;
533 } else if ((!strcmp(prid
, "AR7RD") || !strcmp(prid
, "AR7DB"))
534 && usb_prod
!= NULL
&& strstr(usb_prod
, "DSL-502T")) {
535 ar7_led_data
.num_leds
= ARRAY_SIZE(dsl502t_leds
);
536 ar7_led_data
.leds
= dsl502t_leds
;
537 } else if (strstr(prid
, "DG834")) {
538 ar7_led_data
.num_leds
= ARRAY_SIZE(dg834g_leds
);
539 ar7_led_data
.leds
= dg834g_leds
;
540 } else if (strstr(prid
, "CYWM") || strstr(prid
, "CYWL")) {
541 ar7_led_data
.num_leds
= ARRAY_SIZE(titan_leds
);
542 ar7_led_data
.leds
= titan_leds
;
543 } else if (strstr(prid
, "GT701")) {
544 ar7_led_data
.num_leds
= ARRAY_SIZE(gt701_leds
);
545 ar7_led_data
.leds
= gt701_leds
;
549 /*****************************************************************************
551 ****************************************************************************/
552 static struct resource ar7_wdt_res
= {
554 .flags
= IORESOURCE_MEM
,
555 .start
= -1, /* Filled at runtime */
556 .end
= -1, /* Filled at runtime */
559 static struct platform_device ar7_wdt
= {
561 .resource
= &ar7_wdt_res
,
565 /*****************************************************************************
567 ****************************************************************************/
568 static int __init
ar7_register_uarts(void)
570 #ifdef CONFIG_SERIAL_8250
571 static struct uart_port uart_port __initdata
;
575 memset(&uart_port
, 0, sizeof(struct uart_port
));
577 bus_clk
= clk_get(NULL
, "bus");
579 panic("unable to get bus clk");
581 uart_port
.type
= PORT_AR7
;
582 uart_port
.uartclk
= clk_get_rate(bus_clk
) / 2;
583 uart_port
.iotype
= UPIO_MEM32
;
584 uart_port
.regshift
= 2;
587 uart_port
.irq
= AR7_IRQ_UART0
;
588 uart_port
.mapbase
= AR7_REGS_UART0
;
589 uart_port
.membase
= ioremap(uart_port
.mapbase
, 256);
591 res
= early_serial_setup(&uart_port
);
595 /* Only TNETD73xx have a second serial port */
596 if (ar7_has_second_uart()) {
598 uart_port
.irq
= AR7_IRQ_UART1
;
599 uart_port
.mapbase
= UR8_REGS_UART1
;
600 uart_port
.membase
= ioremap(uart_port
.mapbase
, 256);
602 res
= early_serial_setup(&uart_port
);
611 static void __init
titan_fixup_devices(void)
613 /* Set vlynq0 data */
614 vlynq_low_data
.reset_bit
= 15;
615 vlynq_low_data
.gpio_bit
= 14;
617 /* Set vlynq1 data */
618 vlynq_high_data
.reset_bit
= 16;
619 vlynq_high_data
.gpio_bit
= 7;
621 /* Set vlynq0 resources */
622 vlynq_low_res
[0].start
= TITAN_REGS_VLYNQ0
;
623 vlynq_low_res
[0].end
= TITAN_REGS_VLYNQ0
+ 0xff;
624 vlynq_low_res
[1].start
= 33;
625 vlynq_low_res
[1].end
= 33;
626 vlynq_low_res
[2].start
= 0x0c000000;
627 vlynq_low_res
[2].end
= 0x0fffffff;
628 vlynq_low_res
[3].start
= 80;
629 vlynq_low_res
[3].end
= 111;
631 /* Set vlynq1 resources */
632 vlynq_high_res
[0].start
= TITAN_REGS_VLYNQ1
;
633 vlynq_high_res
[0].end
= TITAN_REGS_VLYNQ1
+ 0xff;
634 vlynq_high_res
[1].start
= 34;
635 vlynq_high_res
[1].end
= 34;
636 vlynq_high_res
[2].start
= 0x40000000;
637 vlynq_high_res
[2].end
= 0x43ffffff;
638 vlynq_high_res
[3].start
= 112;
639 vlynq_high_res
[3].end
= 143;
641 /* Set cpmac0 data */
642 cpmac_low_data
.phy_mask
= 0x40000000;
644 /* Set cpmac1 data */
645 cpmac_high_data
.phy_mask
= 0x80000000;
647 /* Set cpmac0 resources */
648 cpmac_low_res
[0].start
= TITAN_REGS_MAC0
;
649 cpmac_low_res
[0].end
= TITAN_REGS_MAC0
+ 0x7ff;
651 /* Set cpmac1 resources */
652 cpmac_high_res
[0].start
= TITAN_REGS_MAC1
;
653 cpmac_high_res
[0].end
= TITAN_REGS_MAC1
+ 0x7ff;
656 static int __init
ar7_register_devices(void)
658 void __iomem
*bootcr
;
662 res
= ar7_register_uarts();
664 pr_err("unable to setup uart(s): %d\n", res
);
666 res
= platform_device_register(&physmap_flash
);
668 pr_warning("unable to register physmap-flash: %d\n", res
);
671 titan_fixup_devices();
673 ar7_device_disable(vlynq_low_data
.reset_bit
);
674 res
= platform_device_register(&vlynq_low
);
676 pr_warning("unable to register vlynq-low: %d\n", res
);
678 if (ar7_has_high_vlynq()) {
679 ar7_device_disable(vlynq_high_data
.reset_bit
);
680 res
= platform_device_register(&vlynq_high
);
682 pr_warning("unable to register vlynq-high: %d\n", res
);
685 if (ar7_has_high_cpmac()) {
686 res
= fixed_phy_add(PHY_POLL
, cpmac_high
.id
, &fixed_phy_status
);
688 cpmac_get_mac(1, cpmac_high_data
.dev_addr
);
690 res
= platform_device_register(&cpmac_high
);
692 pr_warning("unable to register cpmac-high: %d\n", res
);
694 pr_warning("unable to add cpmac-high phy: %d\n", res
);
696 cpmac_low_data
.phy_mask
= 0xffffffff;
698 res
= fixed_phy_add(PHY_POLL
, cpmac_low
.id
, &fixed_phy_status
);
700 cpmac_get_mac(0, cpmac_low_data
.dev_addr
);
701 res
= platform_device_register(&cpmac_low
);
703 pr_warning("unable to register cpmac-low: %d\n", res
);
705 pr_warning("unable to add cpmac-low phy: %d\n", res
);
708 res
= platform_device_register(&ar7_gpio_leds
);
710 pr_warning("unable to register leds: %d\n", res
);
712 res
= platform_device_register(&ar7_udc
);
714 pr_warning("unable to register usb slave: %d\n", res
);
716 /* Register watchdog only if enabled in hardware */
717 bootcr
= ioremap_nocache(AR7_REGS_DCL
, 4);
720 if (val
& AR7_WDT_HW_ENA
) {
721 if (ar7_has_high_vlynq())
722 ar7_wdt_res
.start
= UR8_REGS_WDT
;
724 ar7_wdt_res
.start
= AR7_REGS_WDT
;
726 ar7_wdt_res
.end
= ar7_wdt_res
.start
+ 0x20;
727 res
= platform_device_register(&ar7_wdt
);
729 pr_warning("unable to register watchdog: %d\n", res
);
734 device_initcall(ar7_register_devices
);