2 * Ubiquiti RouterStation support
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 * Copyright (C) 2008 Ubiquiti <support@ubnt.com>
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.
13 #include <asm/mach-ar71xx/ar71xx.h>
17 #include "dev-m25p80.h"
18 #include "dev-ap91-pci.h"
19 #include "dev-gpio-buttons.h"
20 #include "dev-pb42-pci.h"
21 #include "dev-leds-gpio.h"
24 #define UBNT_RS_GPIO_LED_RF 2
25 #define UBNT_RS_GPIO_SW4 8
27 #define UBNT_LS_SR71_GPIO_LED_D25 0
28 #define UBNT_LS_SR71_GPIO_LED_D26 1
29 #define UBNT_LS_SR71_GPIO_LED_D24 2
30 #define UBNT_LS_SR71_GPIO_LED_D23 4
31 #define UBNT_LS_SR71_GPIO_LED_D22 5
32 #define UBNT_LS_SR71_GPIO_LED_D27 6
33 #define UBNT_LS_SR71_GPIO_LED_D28 7
35 #define UBNT_M_GPIO_LED_L1 0
36 #define UBNT_M_GPIO_LED_L2 1
37 #define UBNT_M_GPIO_LED_L3 11
38 #define UBNT_M_GPIO_LED_L4 7
39 #define UBNT_M_GPIO_BTN_RESET 12
41 #define UBNT_KEYS_POLL_INTERVAL 20 /* msecs */
42 #define UBNT_KEYS_DEBOUNCE_INTERVAL (3 * UBNT_KEYS_POLL_INTERVAL)
44 static struct gpio_led ubnt_rs_leds_gpio
[] __initdata
= {
46 .name
= "ubnt:green:rf",
47 .gpio
= UBNT_RS_GPIO_LED_RF
,
52 static struct gpio_led ubnt_ls_sr71_leds_gpio
[] __initdata
= {
54 .name
= "ubnt:green:d22",
55 .gpio
= UBNT_LS_SR71_GPIO_LED_D22
,
58 .name
= "ubnt:green:d23",
59 .gpio
= UBNT_LS_SR71_GPIO_LED_D23
,
62 .name
= "ubnt:green:d24",
63 .gpio
= UBNT_LS_SR71_GPIO_LED_D24
,
66 .name
= "ubnt:red:d25",
67 .gpio
= UBNT_LS_SR71_GPIO_LED_D25
,
70 .name
= "ubnt:red:d26",
71 .gpio
= UBNT_LS_SR71_GPIO_LED_D26
,
74 .name
= "ubnt:green:d27",
75 .gpio
= UBNT_LS_SR71_GPIO_LED_D27
,
78 .name
= "ubnt:green:d28",
79 .gpio
= UBNT_LS_SR71_GPIO_LED_D28
,
84 static struct gpio_led ubnt_m_leds_gpio
[] __initdata
= {
86 .name
= "ubnt:red:link1",
87 .gpio
= UBNT_M_GPIO_LED_L1
,
90 .name
= "ubnt:orange:link2",
91 .gpio
= UBNT_M_GPIO_LED_L2
,
94 .name
= "ubnt:green:link3",
95 .gpio
= UBNT_M_GPIO_LED_L3
,
98 .name
= "ubnt:green:link4",
99 .gpio
= UBNT_M_GPIO_LED_L4
,
104 static struct gpio_keys_button ubnt_gpio_keys
[] __initdata
= {
109 .debounce_interval
= UBNT_KEYS_DEBOUNCE_INTERVAL
,
110 .gpio
= UBNT_RS_GPIO_SW4
,
115 static struct gpio_keys_button ubnt_m_gpio_keys
[] __initdata
= {
120 .debounce_interval
= UBNT_KEYS_DEBOUNCE_INTERVAL
,
121 .gpio
= UBNT_M_GPIO_BTN_RESET
,
126 static void __init
ubnt_generic_setup(void)
128 ar71xx_add_device_m25p80(NULL
);
130 ar71xx_register_gpio_keys_polled(-1, UBNT_KEYS_POLL_INTERVAL
,
131 ARRAY_SIZE(ubnt_gpio_keys
),
138 * There is Secondary MAC address duplicate problem with some UBNT HW batches.
139 * Do not increase Secondary MAC address by 1 but do workaround
140 * with 'Locally Administrated' bit.
142 static void __init
ubnt_init_secondary_mac(unsigned char *mac_base
)
144 ar71xx_init_mac(ar71xx_eth1_data
.mac_addr
, mac_base
, 0);
145 ar71xx_eth1_data
.mac_addr
[0] |= 0x02;
148 #define UBNT_RS_WAN_PHYMASK BIT(20)
149 #define UBNT_RS_LAN_PHYMASK (BIT(16) | BIT(17) | BIT(18) | BIT(19))
151 static void __init
ubnt_rs_setup(void)
153 ubnt_generic_setup();
155 ar71xx_add_device_mdio(~(UBNT_RS_WAN_PHYMASK
| UBNT_RS_LAN_PHYMASK
));
157 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, ar71xx_mac_base
, 0);
158 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
159 ar71xx_eth0_data
.phy_mask
= UBNT_RS_WAN_PHYMASK
;
161 ubnt_init_secondary_mac(ar71xx_mac_base
);
162 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
163 ar71xx_eth1_data
.speed
= SPEED_100
;
164 ar71xx_eth1_data
.duplex
= DUPLEX_FULL
;
166 ar71xx_add_device_eth(0);
167 ar71xx_add_device_eth(1);
169 ar71xx_add_device_usb();
171 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_rs_leds_gpio
),
175 MIPS_MACHINE(AR71XX_MACH_UBNT_RS
, "UBNT-RS", "Ubiquiti RouterStation",
178 #define UBNT_RSPRO_WAN_PHYMASK BIT(4)
179 #define UBNT_RSPRO_LAN_PHYMASK (BIT(0) | BIT(1) | BIT(2) | BIT(3))
181 static void __init
ubnt_rspro_setup(void)
183 ubnt_generic_setup();
185 ar71xx_add_device_mdio(~(UBNT_RSPRO_WAN_PHYMASK
|
186 UBNT_RSPRO_LAN_PHYMASK
));
188 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, ar71xx_mac_base
, 0);
189 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
190 ar71xx_eth0_data
.phy_mask
= UBNT_RSPRO_WAN_PHYMASK
;
192 ubnt_init_secondary_mac(ar71xx_mac_base
);
193 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
194 ar71xx_eth1_data
.phy_mask
= UBNT_RSPRO_LAN_PHYMASK
;
195 ar71xx_eth1_data
.speed
= SPEED_1000
;
196 ar71xx_eth1_data
.duplex
= DUPLEX_FULL
;
198 ar71xx_add_device_eth(0);
199 ar71xx_add_device_eth(1);
201 ar71xx_add_device_usb();
203 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_rs_leds_gpio
),
207 MIPS_MACHINE(AR71XX_MACH_UBNT_RSPRO
, "UBNT-RSPRO", "Ubiquiti RouterStation Pro",
210 static void __init
ubnt_lsx_setup(void)
212 ubnt_generic_setup();
215 MIPS_MACHINE(AR71XX_MACH_UBNT_LSX
, "UBNT-LSX", "Ubiquiti LSX", ubnt_lsx_setup
);
217 #define UBNT_LSSR71_PHY_MASK BIT(1)
219 static void __init
ubnt_lssr71_setup(void)
221 ubnt_generic_setup();
223 ar71xx_add_device_mdio(~UBNT_LSSR71_PHY_MASK
);
225 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, ar71xx_mac_base
, 0);
226 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
227 ar71xx_eth0_data
.phy_mask
= UBNT_LSSR71_PHY_MASK
;
229 ar71xx_add_device_eth(0);
231 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_ls_sr71_leds_gpio
),
232 ubnt_ls_sr71_leds_gpio
);
235 MIPS_MACHINE(AR71XX_MACH_UBNT_LSSR71
, "UBNT-LS-SR71", "Ubiquiti LS-SR71",
238 static void __init
ubnt_m_setup(void)
240 u8
*mac1
= (u8
*) KSEG1ADDR(0x1fff0000);
241 u8
*mac2
= (u8
*) KSEG1ADDR(0x1fff0000 + ETH_ALEN
);
242 u8
*ee
= (u8
*) KSEG1ADDR(0x1fff1000);
244 ar71xx_add_device_m25p80(NULL
);
246 ar71xx_add_device_mdio(~0);
248 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, mac1
, 0);
249 ar71xx_init_mac(ar71xx_eth1_data
.mac_addr
, mac2
, 0);
250 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
251 ar71xx_eth0_data
.speed
= SPEED_100
;
252 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
254 ar71xx_add_device_eth(0);
256 ap91_pci_init(ee
, NULL
);
258 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_m_leds_gpio
),
261 ar71xx_register_gpio_keys_polled(-1, UBNT_KEYS_POLL_INTERVAL
,
262 ARRAY_SIZE(ubnt_m_gpio_keys
),
266 static void __init
ubnt_rocket_m_setup(void)
269 ar71xx_add_device_usb();
272 MIPS_MACHINE(AR71XX_MACH_UBNT_BULLET_M
, "UBNT-BM", "Ubiquiti Bullet M",
274 MIPS_MACHINE(AR71XX_MACH_UBNT_ROCKET_M
, "UBNT-RM", "Ubiquiti Rocket M",
275 ubnt_rocket_m_setup
);
277 /* TODO detect the second ethernet port and use one
278 init function for all Ubiquiti MIMO series products */
279 static void __init
ubnt_nano_m_setup(void)
283 ar71xx_eth1_data
.has_ar7240_switch
= 1;
284 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
285 ar71xx_eth1_data
.speed
= SPEED_1000
;
286 ar71xx_eth1_data
.duplex
= DUPLEX_FULL
;
288 ar71xx_add_device_eth(1);
291 MIPS_MACHINE(AR71XX_MACH_UBNT_NANO_M
, "UBNT-NM", "Ubiquiti Nanostation M",
294 static struct gpio_led ubnt_unifi_leds_gpio
[] __initdata
= {
296 .name
= "ubnt:orange:dome",
300 .name
= "ubnt:green:dome",
306 static void __init
ubnt_unifi_setup(void)
308 u8
*mac
= (u8
*) KSEG1ADDR(0x1fff0000);
309 u8
*ee
= (u8
*) KSEG1ADDR(0x1fff1000);
311 ar71xx_add_device_m25p80(NULL
);
313 ar71xx_add_device_mdio(~0);
315 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, mac
, 0);
316 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
317 ar71xx_eth0_data
.speed
= SPEED_100
;
318 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
320 ar71xx_add_device_eth(0);
322 ap91_pci_init(ee
, NULL
);
324 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_unifi_leds_gpio
),
325 ubnt_unifi_leds_gpio
);
328 MIPS_MACHINE(AR71XX_MACH_UBNT_UNIFI
, "UBNT-XM", "Ubiquiti UniFi",