ar71xx: use the tp-link parser on the tp-link boards
[openwrt.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-tl-wa901nd-v2.c
1 /*
2  *  TP-LINK TL-WA901ND v2 board support
3  *
4  *  Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
5  *  Copyright (C) 2010 Pieter Hollants <pieter@hollants.com>
6  *  Copyright (C) 2011 Jonathan Bennett <jbscience87@gmail.com>
7  *
8  *  This program is free software; you can redistribute it and/or modify it
9  *  under the terms of the GNU General Public License version 2 as published
10  *  by the Free Software Foundation.
11  */
12
13 #include <asm/mach-ar71xx/ar71xx.h>
14
15 #include "machtype.h"
16 #include "devices.h"
17 #include "dev-m25p80.h"
18 #include "dev-gpio-buttons.h"
19 #include "dev-leds-gpio.h"
20 #include "dev-ar9xxx-wmac.h"
21
22 #define TL_WA901ND_V2_GPIO_LED_QSS              4
23 #define TL_WA901ND_V2_GPIO_LED_SYSTEM           2
24 #define TL_WA901ND_V2_GPIO_LED_WLAN             9
25
26
27 #define TL_WA901ND_V2_GPIO_BTN_RESET            3
28 #define TL_WA901ND_V2_GPIO_BTN_QSS              7
29
30 #define TL_WA901ND_V2_KEYS_POLL_INTERVAL        20      /* msecs */
31 #define TL_WA901ND_V2_KEYS_DEBOUNCE_INTERVAL    \
32                                         (3 * TL_WA901ND_V2_KEYS_POLL_INTERVAL)
33
34 static const char *tl_wa901nd_v2_part_probes[] = {
35         "tp-link",
36         NULL,
37 };
38
39 static struct flash_platform_data tl_wa901nd_v2_flash_data = {
40         .part_probes    = tl_wa901nd_v2_part_probes,
41 };
42
43 static struct gpio_led tl_wa901nd_v2_leds_gpio[] __initdata = {
44         {
45                 .name           = "tp-link:green:system",
46                 .gpio           = TL_WA901ND_V2_GPIO_LED_SYSTEM,
47                 .active_low     = 1,
48         }, {
49                 .name           = "tp-link:green:qss",
50                 .gpio           = TL_WA901ND_V2_GPIO_LED_QSS,
51         }, {
52                 .name           = "tp-link:green:wlan",
53                 .gpio           = TL_WA901ND_V2_GPIO_LED_WLAN,
54                 .active_low     = 1,
55         }
56 };
57
58 static struct gpio_keys_button tl_wa901nd_v2_gpio_keys[] __initdata = {
59         {
60                 .desc           = "reset",
61                 .type           = EV_KEY,
62                 .code           = KEY_RESTART,
63                 .debounce_interval = TL_WA901ND_V2_KEYS_DEBOUNCE_INTERVAL,
64                 .gpio           = TL_WA901ND_V2_GPIO_BTN_RESET,
65                 .active_low     = 1,
66         }, {
67                 .desc           = "qss",
68                 .type           = EV_KEY,
69                 .code           = KEY_WPS_BUTTON,
70                 .debounce_interval = TL_WA901ND_V2_KEYS_DEBOUNCE_INTERVAL,
71                 .gpio           = TL_WA901ND_V2_GPIO_BTN_QSS,
72                 .active_low     = 1,
73         }
74 };
75
76 static void __init tl_wa901nd_v2_setup(void)
77 {
78         u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
79         u8 *eeprom  = (u8 *) KSEG1ADDR(0x1fff1000);
80
81         ar71xx_init_mac(ar71xx_eth0_data.mac_addr, mac, 0);
82
83         ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
84         ar71xx_eth0_data.phy_mask = 0x00001000;
85         ar71xx_add_device_mdio(0, 0x0);
86
87         ar71xx_eth0_data.reset_bit = RESET_MODULE_GE0_MAC |
88                                      RESET_MODULE_GE0_PHY;
89         ar71xx_add_device_eth(0);
90
91         ar71xx_add_device_m25p80(&tl_wa901nd_v2_flash_data);
92
93         ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tl_wa901nd_v2_leds_gpio),
94                                         tl_wa901nd_v2_leds_gpio);
95
96         ar71xx_register_gpio_keys_polled(-1, TL_WA901ND_V2_KEYS_POLL_INTERVAL,
97                                          ARRAY_SIZE(tl_wa901nd_v2_gpio_keys),
98                                          tl_wa901nd_v2_gpio_keys);
99
100         ar9xxx_add_device_wmac(eeprom, mac);
101 }
102
103 MIPS_MACHINE(AR71XX_MACH_TL_WA901ND_V2, "TL-WA901ND-v2",
104              "TP-LINK TL-WA901ND v2", tl_wa901nd_v2_setup);