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/autoconf.h>
21 #include <linux/init.h>
22 #include <linux/types.h>
23 #include <linux/module.h>
24 #include <linux/delay.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/platform_device.h>
27 #include <linux/mtd/physmap.h>
28 #include <linux/serial.h>
29 #include <linux/serial_8250.h>
30 #include <linux/ioport.h>
32 #include <linux/version.h>
33 #include <linux/vlynq.h>
34 #include <linux/leds.h>
35 #include <linux/string.h>
37 #include <asm/addrspace.h>
38 #include <asm/ar7/ar7.h>
39 #include <asm/ar7/gpio.h>
40 #include <asm/ar7/prom.h>
42 struct plat_vlynq_data
{
43 struct plat_vlynq_ops ops
;
49 static int vlynq_on(struct vlynq_device
*dev
)
52 struct plat_vlynq_data
*pdata
= dev
->dev
.platform_data
;
54 if ((result
= gpio_request(pdata
->gpio_bit
, "vlynq")))
57 ar7_device_reset(pdata
->reset_bit
);
59 if ((result
= ar7_gpio_disable(pdata
->gpio_bit
)))
62 if ((result
= ar7_gpio_enable(pdata
->gpio_bit
)))
65 if ((result
= gpio_direction_output(pdata
->gpio_bit
, 0)))
66 goto out_gpio_enabled
;
70 gpio_set_value(pdata
->gpio_bit
, 1);
76 ar7_gpio_disable(pdata
->gpio_bit
);
78 ar7_device_disable(pdata
->reset_bit
);
79 gpio_free(pdata
->gpio_bit
);
84 static void vlynq_off(struct vlynq_device
*dev
)
86 struct plat_vlynq_data
*pdata
= dev
->dev
.platform_data
;
87 ar7_gpio_disable(pdata
->gpio_bit
);
88 gpio_free(pdata
->gpio_bit
);
89 ar7_device_disable(pdata
->reset_bit
);
92 static struct resource physmap_flash_resource
= {
94 .flags
= IORESOURCE_MEM
,
99 static struct resource cpmac_low_res
[] = {
102 .flags
= IORESOURCE_MEM
,
103 .start
= AR7_REGS_MAC0
,
104 .end
= AR7_REGS_MAC0
+ 0x7ff,
108 .flags
= IORESOURCE_IRQ
,
114 static struct resource cpmac_high_res
[] = {
117 .flags
= IORESOURCE_MEM
,
118 .start
= AR7_REGS_MAC1
,
119 .end
= AR7_REGS_MAC1
+ 0x7ff,
123 .flags
= IORESOURCE_IRQ
,
129 static struct resource vlynq_low_res
[] = {
132 .flags
= IORESOURCE_MEM
,
133 .start
= AR7_REGS_VLYNQ0
,
134 .end
= AR7_REGS_VLYNQ0
+ 0xff,
138 .flags
= IORESOURCE_IRQ
,
144 .flags
= IORESOURCE_MEM
,
150 .flags
= IORESOURCE_IRQ
,
156 static struct resource vlynq_high_res
[] = {
159 .flags
= IORESOURCE_MEM
,
160 .start
= AR7_REGS_VLYNQ1
,
161 .end
= AR7_REGS_VLYNQ1
+ 0xff,
165 .flags
= IORESOURCE_IRQ
,
171 .flags
= IORESOURCE_MEM
,
177 .flags
= IORESOURCE_IRQ
,
183 static struct resource usb_res
[] = {
186 .flags
= IORESOURCE_MEM
,
187 .start
= AR7_REGS_USB
,
188 .end
= AR7_REGS_USB
+ 0xff,
192 .flags
= IORESOURCE_IRQ
,
198 .flags
= IORESOURCE_MEM
,
204 static struct physmap_flash_data physmap_flash_data
= {
208 static struct plat_cpmac_data cpmac_low_data
= {
211 .phy_mask
= 0x80000000,
214 static struct plat_cpmac_data cpmac_high_data
= {
217 .phy_mask
= 0x7fffffff,
220 static struct plat_vlynq_data vlynq_low_data
= {
222 .ops
.off
= vlynq_off
,
227 static struct plat_vlynq_data vlynq_high_data
= {
229 .ops
.off
= vlynq_off
,
234 static struct platform_device physmap_flash
= {
236 .name
= "physmap-flash",
237 .dev
.platform_data
= &physmap_flash_data
,
238 .resource
= &physmap_flash_resource
,
242 static u64 cpmac_dma_mask
= DMA_32BIT_MASK
;
243 static struct platform_device cpmac_low
= {
247 .dma_mask
= &cpmac_dma_mask
,
248 .coherent_dma_mask
= DMA_32BIT_MASK
,
249 .platform_data
= &cpmac_low_data
,
251 .resource
= cpmac_low_res
,
252 .num_resources
= ARRAY_SIZE(cpmac_low_res
),
255 static struct platform_device cpmac_high
= {
259 .dma_mask
= &cpmac_dma_mask
,
260 .coherent_dma_mask
= DMA_32BIT_MASK
,
261 .platform_data
= &cpmac_high_data
,
263 .resource
= cpmac_high_res
,
264 .num_resources
= ARRAY_SIZE(cpmac_high_res
),
267 static struct platform_device vlynq_low
= {
270 .dev
.platform_data
= &vlynq_low_data
,
271 .resource
= vlynq_low_res
,
272 .num_resources
= ARRAY_SIZE(vlynq_low_res
),
275 static struct platform_device vlynq_high
= {
278 .dev
.platform_data
= &vlynq_high_data
,
279 .resource
= vlynq_high_res
,
280 .num_resources
= ARRAY_SIZE(vlynq_high_res
),
284 /* This is proper way to define uart ports, but they are then detected
285 * as xscale and, obviously, don't work...
287 #if !defined(CONFIG_SERIAL_8250)
289 static struct plat_serial8250_port uart0_data
= {
290 .mapbase
= AR7_REGS_UART0
,
291 .irq
= AR7_IRQ_UART0
,
294 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
297 static struct plat_serial8250_port uart1_data
= {
298 .mapbase
= UR8_REGS_UART1
,
299 .irq
= AR7_IRQ_UART1
,
302 .flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
,
305 static struct plat_serial8250_port uart_data
[] = {
311 static struct plat_serial8250_port uart_data_single
[] = {
316 static struct platform_device uart
= {
318 .name
= "serial8250",
319 .dev
.platform_data
= uart_data_single
323 static struct gpio_led default_leds
[] = {
324 { .name
= "status", .gpio
= 8, .active_low
= 1, },
327 static struct gpio_led dsl502t_leds
[] = {
328 { .name
= "status", .gpio
= 9, .active_low
= 1, },
329 { .name
= "ethernet", .gpio
= 7, .active_low
= 1, },
330 { .name
= "usb", .gpio
= 12, .active_low
= 1, },
333 static struct gpio_led dg834g_leds
[] = {
334 { .name
= "ppp", .gpio
= 6, .active_low
= 1, },
335 { .name
= "status", .gpio
= 7, .active_low
= 1, },
336 { .name
= "adsl", .gpio
= 8, .active_low
= 1, },
337 { .name
= "wifi", .gpio
= 12, .active_low
= 1, },
338 { .name
= "power", .gpio
= 14, .active_low
= 1, .default_trigger
= "default-on", },
341 static struct gpio_led fb_sl_leds
[] = {
342 { .name
= "1", .gpio
= 7, },
343 { .name
= "2", .gpio
= 13, .active_low
= 1, },
344 { .name
= "3", .gpio
= 10, .active_low
= 1, },
345 { .name
= "4", .gpio
= 12, .active_low
= 1, },
346 { .name
= "5", .gpio
= 9, .active_low
= 1, },
349 static struct gpio_led fb_fon_leds
[] = {
350 { .name
= "1", .gpio
= 8, },
351 { .name
= "2", .gpio
= 3, .active_low
= 1, },
352 { .name
= "3", .gpio
= 5, },
353 { .name
= "4", .gpio
= 4, .active_low
= 1, },
354 { .name
= "5", .gpio
= 11, .active_low
= 1, },
357 static struct gpio_led_platform_data ar7_led_data
;
359 static struct platform_device ar7_gpio_leds
= {
363 .platform_data
= &ar7_led_data
,
367 static struct platform_device ar7_udc
= {
371 .num_resources
= ARRAY_SIZE(usb_res
),
374 static inline unsigned char char2hex(char h
)
377 case '0': case '1': case '2': case '3': case '4':
378 case '5': case '6': case '7': case '8': case '9':
380 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
382 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
389 static void cpmac_get_mac(int instance
, unsigned char *dev_addr
)
392 char name
[5], default_mac
[] = "00:00:00:12:34:56", *mac
;
395 sprintf(name
, "mac%c", 'a' + instance
);
396 mac
= prom_getenv(name
);
398 sprintf(name
, "mac%c", 'a');
399 mac
= prom_getenv(name
);
403 for (i
= 0; i
< 6; i
++)
404 dev_addr
[i
] = (char2hex(mac
[i
* 3]) << 4) +
405 char2hex(mac
[i
* 3 + 1]);
408 static void __init
detect_leds(void)
410 char *prId
, *usb_prod
;
413 ar7_led_data
.num_leds
= ARRAY_SIZE(default_leds
);
414 ar7_led_data
.leds
= default_leds
;
416 /* FIXME: the whole thing is unreliable */
417 prId
= prom_getenv("ProductID");
418 usb_prod
= prom_getenv("usb_prod");
420 /* If we can't get the product id from PROM, use the default LEDs */
424 if (strstr(prId
, "Fritz_Box_FON")) {
425 ar7_led_data
.num_leds
= ARRAY_SIZE(fb_fon_leds
);
426 ar7_led_data
.leds
= fb_fon_leds
;
427 } else if (strstr(prId
, "Fritz_Box_")) {
428 ar7_led_data
.num_leds
= ARRAY_SIZE(fb_sl_leds
);
429 ar7_led_data
.leds
= fb_sl_leds
;
430 } else if ((!strcmp(prId
, "AR7RD") || !strcmp(prId
, "AR7DB")) && usb_prod
!= NULL
&& strstr(usb_prod
, "DSL-502T")) {
431 ar7_led_data
.num_leds
= ARRAY_SIZE(dsl502t_leds
);
432 ar7_led_data
.leds
= dsl502t_leds
;
433 } else if (strstr(prId
, "DG834")) {
434 ar7_led_data
.num_leds
= ARRAY_SIZE(dg834g_leds
);
435 ar7_led_data
.leds
= dg834g_leds
;
439 static int __init
ar7_register_devices(void)
443 #ifdef CONFIG_SERIAL_8250
445 static struct uart_port uart_port
[2];
447 memset(uart_port
, 0, sizeof(struct uart_port
) * 2);
449 uart_port
[0].type
= PORT_AR7
;
450 uart_port
[0].line
= 0;
451 uart_port
[0].irq
= AR7_IRQ_UART0
;
452 uart_port
[0].uartclk
= ar7_bus_freq() / 2;
453 uart_port
[0].iotype
= UPIO_MEM
;
454 uart_port
[0].mapbase
= AR7_REGS_UART0
;
455 uart_port
[0].membase
= ioremap(uart_port
[0].mapbase
, 256);
456 uart_port
[0].regshift
= 2;
457 uart_port
[0].flags
= UPF_IOREMAP
;
458 res
= early_serial_setup(&uart_port
[0]);
463 /* Only TNETD73xx have a second serial port */
464 if (ar7_has_second_uart()) {
465 uart_port
[1].type
= PORT_AR7
;
466 uart_port
[1].line
= 1;
467 uart_port
[1].irq
= AR7_IRQ_UART1
;
468 uart_port
[1].uartclk
= ar7_bus_freq() / 2;
469 uart_port
[1].iotype
= UPIO_MEM
;
470 uart_port
[1].mapbase
= UR8_REGS_UART1
;
471 uart_port
[1].membase
= ioremap(uart_port
[1].mapbase
, 256);
472 uart_port
[1].regshift
= 2;
473 uart_port
[1].flags
= UPF_IOREMAP
;
474 res
= early_serial_setup(&uart_port
[1]);
479 #else /* !CONFIG_SERIAL_8250 */
481 uart_data
[0].uartclk
= ar7_bus_freq() / 2;
482 uart_data
[1].uartclk
= uart_data
[0].uartclk
;
484 /* Only TNETD73xx have a second serial port */
485 if (ar7_has_second_uart())
486 uart
.dev
.platform_data
= uart_data
;
488 res
= platform_device_register(&uart
);
492 #endif /* CONFIG_SERIAL_8250 */
494 res
= platform_device_register(&physmap_flash
);
498 ar7_device_disable(vlynq_low_data
.reset_bit
);
499 res
= platform_device_register(&vlynq_low
);
503 if (ar7_has_high_vlynq()) {
504 ar7_device_disable(vlynq_high_data
.reset_bit
);
505 res
= platform_device_register(&vlynq_high
);
510 if (ar7_has_high_cpmac()) {
511 cpmac_get_mac(1, cpmac_high_data
.dev_addr
);
512 res
= platform_device_register(&cpmac_high
);
516 cpmac_low_data
.phy_mask
= 0xffffffff;
519 cpmac_get_mac(0, cpmac_low_data
.dev_addr
);
520 res
= platform_device_register(&cpmac_low
);
525 res
= platform_device_register(&ar7_gpio_leds
);
529 res
= platform_device_register(&ar7_udc
);
535 arch_initcall(ar7_register_devices
);