ad67c6e8690eadf52a3c6aa976ae36148234f7b6
[openwrt/staging/wigyori.git] / target / linux / ar71xx / files / arch / mips / ath79 / mach-rbspi.c
1 /*
2 * MikroTik SPI-NOR RouterBOARDs support
3 *
4 * - MikroTik RouterBOARD mAP 2nD
5 * - MikroTik RouterBOARD mAP L-2nD
6 * - MikroTik RouterBOARD 911-2Hn (911 Lite2)
7 * - MikroTik RouterBOARD 911-5Hn (911 Lite5)
8 * - MikroTik RouterBOARD 931-2nD (hAP mini)
9 * - MikroTik RouterBOARD 941L-2nD
10 * - MikroTik RouterBOARD 951Ui-2nD
11 * - MikroTik RouterBOARD 952Ui-5ac2nD
12 * - MikroTik RouterBOARD 962UiGS-5HacT2HnT
13 * - MikroTik RouterBOARD 750UP r2
14 * - MikroTik RouterBOARD 750P-PBr2
15 * - MikroTik RouterBOARD 750 r2
16 * - MikroTik RouterBOARD LHG 5nD
17 * - MikroTik RouterBOARD wAP2nD
18 * - MikroTik RouterBOARD wAP G-5HacT2HnDwAP (wAP AC)
19 * - MikroTik RouterBOARD wAP R-2nD
20 *
21 * Preliminary support for the following hardware
22 * - MikroTik RouterBOARD cAP2nD
23 * Furthermore, the cAP lite (cAPL2nD) appears to feature the exact same
24 * hardware as the mAP L-2nD. It is unknown if they share the same board
25 * identifier.
26 *
27 * Copyright (C) 2017-2018 Thibaut VARENE <varenet@parisc-linux.org>
28 * Copyright (C) 2016 David Hutchison <dhutchison@bluemesh.net>
29 * Copyright (C) 2017 Ryan Mounce <ryan@mounce.com.au>
30 *
31 * This program is free software; you can redistribute it and/or modify it
32 * under the terms of the GNU General Public License version 2 as published
33 * by the Free Software Foundation.
34 */
35
36 #include <linux/pci.h>
37 #include <linux/platform_device.h>
38 #include <linux/phy.h>
39 #include <linux/routerboot.h>
40 #include <linux/gpio.h>
41
42 #include <linux/spi/spi.h>
43 #include <linux/spi/74x164.h>
44
45 #include <linux/mtd/mtd.h>
46 #include <linux/mtd/partitions.h>
47
48 #include <linux/ar8216_platform.h>
49 #include <linux/platform_data/phy-at803x.h>
50 #include <linux/platform_data/mdio-gpio.h>
51
52 #include <asm/prom.h>
53 #include <asm/mach-ath79/ar71xx_regs.h>
54 #include <asm/mach-ath79/ath79.h>
55
56 #include "common.h"
57 #include "dev-eth.h"
58 #include "dev-spi.h"
59 #include "dev-gpio-buttons.h"
60 #include "dev-leds-gpio.h"
61 #include "dev-m25p80.h"
62 #include "dev-usb.h"
63 #include "dev-wmac.h"
64 #include "machtypes.h"
65 #include "pci.h"
66 #include "routerboot.h"
67
68 #define RBSPI_KEYS_POLL_INTERVAL 20 /* msecs */
69 #define RBSPI_KEYS_DEBOUNCE_INTERVAL (3 * RBSPI_KEYS_POLL_INTERVAL)
70
71 #define RBSPI_HAS_USB BIT(0)
72 #define RBSPI_HAS_WLAN0 BIT(1)
73 #define RBSPI_HAS_WLAN1 BIT(2)
74 #define RBSPI_HAS_WAN4 BIT(3) /* has WAN port on PHY4 */
75 #define RBSPI_HAS_SSR BIT(4) /* has an SSR on SPI bus 0 */
76 #define RBSPI_HAS_POE BIT(5)
77 #define RBSPI_HAS_MDIO1 BIT(6)
78 #define RBSPI_HAS_PCI BIT(7)
79
80 #define RB_ROUTERBOOT_OFFSET 0x0000
81 #define RB_BIOS_SIZE 0x1000
82 #define RB_SOFT_CFG_SIZE 0x1000
83
84 /* Flash partitions indexes */
85 enum {
86 RBSPI_PART_RBOOT,
87 RBSPI_PART_HCONF,
88 RBSPI_PART_BIOS,
89 RBSPI_PART_RBOOT2,
90 RBSPI_PART_SCONF,
91 RBSPI_PART_FIRMW,
92 RBSPI_PARTS
93 };
94
95 static struct mtd_partition rbspi_spi_partitions[RBSPI_PARTS];
96
97 /*
98 * Setup the SPI flash partition table based on initial parsing.
99 * The kernel can be at any aligned position and have any size.
100 */
101 static void __init rbspi_init_partitions(const struct rb_info *info)
102 {
103 struct mtd_partition *parts = rbspi_spi_partitions;
104 memset(parts, 0x0, sizeof(*parts));
105
106 parts[RBSPI_PART_RBOOT].name = "routerboot";
107 parts[RBSPI_PART_RBOOT].offset = RB_ROUTERBOOT_OFFSET;
108 parts[RBSPI_PART_RBOOT].size = info->hard_cfg_offs;
109 parts[RBSPI_PART_RBOOT].mask_flags = MTD_WRITEABLE;
110
111 parts[RBSPI_PART_HCONF].name = "hard_config";
112 parts[RBSPI_PART_HCONF].offset = info->hard_cfg_offs;
113 parts[RBSPI_PART_HCONF].size = info->hard_cfg_size;
114 parts[RBSPI_PART_HCONF].mask_flags = MTD_WRITEABLE;
115
116 parts[RBSPI_PART_BIOS].name = "bios";
117 parts[RBSPI_PART_BIOS].offset = info->hard_cfg_offs
118 + info->hard_cfg_size;
119 parts[RBSPI_PART_BIOS].size = RB_BIOS_SIZE;
120 parts[RBSPI_PART_BIOS].mask_flags = MTD_WRITEABLE;
121
122 parts[RBSPI_PART_RBOOT2].name = "routerboot2";
123 parts[RBSPI_PART_RBOOT2].offset = parts[RBSPI_PART_BIOS].offset
124 + RB_BIOS_SIZE;
125 parts[RBSPI_PART_RBOOT2].size = info->soft_cfg_offs
126 - parts[RBSPI_PART_RBOOT2].offset;
127 parts[RBSPI_PART_RBOOT2].mask_flags = MTD_WRITEABLE;
128
129 parts[RBSPI_PART_SCONF].name = "soft_config";
130 parts[RBSPI_PART_SCONF].offset = info->soft_cfg_offs;
131 parts[RBSPI_PART_SCONF].size = RB_SOFT_CFG_SIZE;
132
133 parts[RBSPI_PART_FIRMW].name = "firmware";
134 parts[RBSPI_PART_FIRMW].offset = parts[RBSPI_PART_SCONF].offset
135 + parts[RBSPI_PART_SCONF].size;
136 parts[RBSPI_PART_FIRMW].size = MTDPART_SIZ_FULL;
137 }
138
139 static struct flash_platform_data rbspi_spi_flash_data = {
140 .parts = rbspi_spi_partitions,
141 .nr_parts = ARRAY_SIZE(rbspi_spi_partitions),
142 };
143
144 /*
145 * Several boards only have a single reset button, use a common
146 * structure for that.
147 */
148 static struct gpio_keys_button rbspi_gpio_keys_reset[] __initdata = {
149 {
150 .desc = "Reset button",
151 .type = EV_KEY,
152 .code = KEY_RESTART,
153 .debounce_interval = RBSPI_KEYS_DEBOUNCE_INTERVAL,
154 .gpio = -ENOENT, /* filled dynamically */
155 .active_low = 1,
156 },
157 };
158
159 /* RB mAP L-2nD gpios */
160 #define RBMAPL_GPIO_LED_POWER 17
161 #define RBMAPL_GPIO_LED_USER 14
162 #define RBMAPL_GPIO_LED_ETH 4
163 #define RBMAPL_GPIO_LED_WLAN 11
164 #define RBMAPL_GPIO_BTN_RESET 16
165
166 static struct gpio_led rbmapl_leds[] __initdata = {
167 {
168 .name = "rb:green:power",
169 .gpio = RBMAPL_GPIO_LED_POWER,
170 .active_low = 0,
171 .default_state = LEDS_GPIO_DEFSTATE_ON,
172 }, {
173 .name = "rb:green:user",
174 .gpio = RBMAPL_GPIO_LED_USER,
175 .active_low = 0,
176 }, {
177 .name = "rb:green:eth",
178 .gpio = RBMAPL_GPIO_LED_ETH,
179 .active_low = 0,
180 }, {
181 .name = "rb:green:wlan",
182 .gpio = RBMAPL_GPIO_LED_WLAN,
183 .active_low = 0,
184 },
185 };
186
187 /* RB 941L-2nD gpios */
188 #define RBHAPL_GPIO_LED_USER 14
189 #define RBHAPL_GPIO_BTN_RESET 16
190
191 static struct gpio_led rbhapl_leds[] __initdata = {
192 {
193 .name = "rb:green:user",
194 .gpio = RBHAPL_GPIO_LED_USER,
195 .active_low = 1,
196 },
197 };
198
199 /* common RB SSRs */
200 #define RBSPI_SSR_GPIO_BASE 40
201 #define RBSPI_SSR_GPIO(bit) (RBSPI_SSR_GPIO_BASE + (bit))
202
203 /* RB 951Ui-2nD gpios */
204 #define RB952_SSR_BIT_LED_LAN1 0
205 #define RB952_SSR_BIT_LED_LAN2 1
206 #define RB952_SSR_BIT_LED_LAN3 2
207 #define RB952_SSR_BIT_LED_LAN4 3
208 #define RB952_SSR_BIT_LED_LAN5 4
209 #define RB952_SSR_BIT_USB_POWER 5
210 #define RB952_SSR_BIT_LED_WLAN 6
211 #define RB952_GPIO_SSR_CS 11
212 #define RB952_GPIO_LED_USER 4
213 #define RB952_GPIO_POE_POWER 14
214 #define RB952_GPIO_POE_STATUS 12
215 #define RB952_GPIO_BTN_RESET 16
216 #define RB952_GPIO_USB_PWROFF RBSPI_SSR_GPIO(RB952_SSR_BIT_USB_POWER)
217 #define RB952_GPIO_LED_LAN1 RBSPI_SSR_GPIO(RB952_SSR_BIT_LED_LAN1)
218 #define RB952_GPIO_LED_LAN2 RBSPI_SSR_GPIO(RB952_SSR_BIT_LED_LAN2)
219 #define RB952_GPIO_LED_LAN3 RBSPI_SSR_GPIO(RB952_SSR_BIT_LED_LAN3)
220 #define RB952_GPIO_LED_LAN4 RBSPI_SSR_GPIO(RB952_SSR_BIT_LED_LAN4)
221 #define RB952_GPIO_LED_LAN5 RBSPI_SSR_GPIO(RB952_SSR_BIT_LED_LAN5)
222 #define RB952_GPIO_LED_WLAN RBSPI_SSR_GPIO(RB952_SSR_BIT_LED_WLAN)
223
224 static struct gpio_led rb952_leds[] __initdata = {
225 {
226 .name = "rb:green:user",
227 .gpio = RB952_GPIO_LED_USER,
228 .active_low = 0,
229 }, {
230 .name = "rb:blue:wlan",
231 .gpio = RB952_GPIO_LED_WLAN,
232 .active_low = 1,
233 }, {
234 .name = "rb:green:port1",
235 .gpio = RB952_GPIO_LED_LAN1,
236 .active_low = 1,
237 }, {
238 .name = "rb:green:port2",
239 .gpio = RB952_GPIO_LED_LAN2,
240 .active_low = 1,
241 }, {
242 .name = "rb:green:port3",
243 .gpio = RB952_GPIO_LED_LAN3,
244 .active_low = 1,
245 }, {
246 .name = "rb:green:port4",
247 .gpio = RB952_GPIO_LED_LAN4,
248 .active_low = 1,
249 }, {
250 .name = "rb:green:port5",
251 .gpio = RB952_GPIO_LED_LAN5,
252 .active_low = 1,
253 },
254 };
255
256
257 /* RB 962UiGS-5HacT2HnT gpios */
258 #define RB962_GPIO_POE_STATUS 2
259 #define RB962_GPIO_POE_POWER 3
260 #define RB962_GPIO_LED_USER 12
261 #define RB962_GPIO_USB_PWROFF 13
262 #define RB962_GPIO_BTN_RESET 20
263
264 static struct gpio_led rb962_leds_gpio[] __initdata = {
265 {
266 .name = "rb:green:user",
267 .gpio = RB962_GPIO_LED_USER,
268 .active_low = 1,
269 },
270 };
271
272 static const struct ar8327_led_info rb962_leds_ar8327[] = {
273 AR8327_LED_INFO(PHY0_0, HW, "rb:green:port1"),
274 AR8327_LED_INFO(PHY1_0, HW, "rb:green:port2"),
275 AR8327_LED_INFO(PHY2_0, HW, "rb:green:port3"),
276 AR8327_LED_INFO(PHY3_0, HW, "rb:green:port4"),
277 AR8327_LED_INFO(PHY4_0, HW, "rb:green:port5"),
278 };
279
280 static struct ar8327_pad_cfg rb962_ar8327_pad0_cfg = {
281 .mode = AR8327_PAD_MAC_RGMII,
282 .txclk_delay_en = true,
283 .rxclk_delay_en = true,
284 .txclk_delay_sel = AR8327_CLK_DELAY_SEL1,
285 .rxclk_delay_sel = AR8327_CLK_DELAY_SEL2,
286 .mac06_exchange_dis = true,
287 };
288
289 static struct ar8327_pad_cfg rb962_ar8327_pad6_cfg = {
290 /* Use SGMII interface for GMAC6 of the AR8337 switch */
291 .mode = AR8327_PAD_MAC_SGMII,
292 .rxclk_delay_en = true,
293 .rxclk_delay_sel = AR8327_CLK_DELAY_SEL0,
294 };
295
296 static struct ar8327_led_cfg rb962_ar8327_led_cfg = {
297 .led_ctrl0 = 0xc737c737,
298 .led_ctrl1 = 0x00000000,
299 .led_ctrl2 = 0x00000000,
300 .led_ctrl3 = 0x0030c300,
301 .open_drain = false,
302 };
303
304 static struct ar8327_platform_data rb962_ar8327_data = {
305 .pad0_cfg = &rb962_ar8327_pad0_cfg,
306 .pad6_cfg = &rb962_ar8327_pad6_cfg,
307 .port0_cfg = {
308 .force_link = 1,
309 .speed = AR8327_PORT_SPEED_1000,
310 .duplex = 1,
311 .txpause = 1,
312 .rxpause = 1,
313 },
314 .port6_cfg = {
315 .force_link = 1,
316 .speed = AR8327_PORT_SPEED_1000,
317 .duplex = 1,
318 .txpause = 1,
319 .rxpause = 1,
320 },
321 .led_cfg = &rb962_ar8327_led_cfg,
322 .num_leds = ARRAY_SIZE(rb962_leds_ar8327),
323 .leds = rb962_leds_ar8327,
324 };
325
326 static struct mdio_board_info rb962_mdio0_info[] = {
327 {
328 .bus_id = "ag71xx-mdio.0",
329 .phy_addr = 0,
330 .platform_data = &rb962_ar8327_data,
331 },
332 };
333
334 /* RB wAP-2nD gpios */
335 #define RBWAP_GPIO_LED_USER 14
336 #define RBWAP_GPIO_LED_WLAN 11
337 #define RBWAP_GPIO_BTN_RESET 16
338
339 static struct gpio_led rbwap_leds[] __initdata = {
340 {
341 .name = "rb:green:user",
342 .gpio = RBWAP_GPIO_LED_USER,
343 .active_low = 1,
344 }, {
345 .name = "rb:green:wlan",
346 .gpio = RBWAP_GPIO_LED_WLAN,
347 .active_low = 1,
348 },
349 };
350
351 /* RB cAP-2nD gpios */
352 #define RBCAP_GPIO_LED_1 14
353 #define RBCAP_GPIO_LED_2 12
354 #define RBCAP_GPIO_LED_3 11
355 #define RBCAP_GPIO_LED_4 4
356 #define RBCAP_GPIO_LED_ALL 13
357
358 static struct gpio_led rbcap_leds[] __initdata = {
359 {
360 .name = "rb:green:rssi1",
361 .gpio = RBCAP_GPIO_LED_1,
362 .active_low = 1,
363 }, {
364 .name = "rb:green:rssi2",
365 .gpio = RBCAP_GPIO_LED_2,
366 .active_low = 1,
367 }, {
368 .name = "rb:green:rssi3",
369 .gpio = RBCAP_GPIO_LED_3,
370 .active_low = 1,
371 }, {
372 .name = "rb:green:rssi4",
373 .gpio = RBCAP_GPIO_LED_4,
374 .active_low = 1,
375 },
376 };
377
378 /* RB mAP-2nD gpios */
379 #define RBMAP_SSR_BIT_LED_LAN1 0
380 #define RBMAP_SSR_BIT_LED_LAN2 1
381 #define RBMAP_SSR_BIT_LED_POEO 2
382 #define RBMAP_SSR_BIT_LED_USER 3
383 #define RBMAP_SSR_BIT_LED_WLAN 4
384 #define RBMAP_SSR_BIT_USB_POWER 5
385 #define RBMAP_SSR_BIT_LED_APCAP 6
386 #define RBMAP_GPIO_BTN_RESET 16
387 #define RBMAP_GPIO_SSR_CS 11
388 #define RBMAP_GPIO_LED_POWER 4
389 #define RBMAP_GPIO_POE_POWER 14
390 #define RBMAP_GPIO_POE_STATUS 12
391 #define RBMAP_GPIO_USB_PWROFF RBSPI_SSR_GPIO(RBMAP_SSR_BIT_USB_POWER)
392 #define RBMAP_GPIO_LED_LAN1 RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_LAN1)
393 #define RBMAP_GPIO_LED_LAN2 RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_LAN2)
394 #define RBMAP_GPIO_LED_POEO RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_POEO)
395 #define RBMAP_GPIO_LED_USER RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_USER)
396 #define RBMAP_GPIO_LED_WLAN RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_WLAN)
397 #define RBMAP_GPIO_LED_APCAP RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_APCAP)
398
399 static struct gpio_led rbmap_leds[] __initdata = {
400 {
401 .name = "rb:green:power",
402 .gpio = RBMAP_GPIO_LED_POWER,
403 .active_low = 1,
404 .default_state = LEDS_GPIO_DEFSTATE_ON,
405 }, {
406 .name = "rb:green:eth1",
407 .gpio = RBMAP_GPIO_LED_LAN1,
408 .active_low = 1,
409 }, {
410 .name = "rb:green:eth2",
411 .gpio = RBMAP_GPIO_LED_LAN2,
412 .active_low = 1,
413 }, {
414 .name = "rb:red:poe_out",
415 .gpio = RBMAP_GPIO_LED_POEO,
416 .active_low = 1,
417 }, {
418 .name = "rb:green:user",
419 .gpio = RBMAP_GPIO_LED_USER,
420 .active_low = 1,
421 }, {
422 .name = "rb:green:wlan",
423 .gpio = RBMAP_GPIO_LED_WLAN,
424 .active_low = 1,
425 }, {
426 .name = "rb:green:ap_cap",
427 .gpio = RBMAP_GPIO_LED_APCAP,
428 .active_low = 1,
429 },
430 };
431
432 /* RB LHG 5nD gpios */
433 #define RBLHG_GPIO_LED_0 13
434 #define RBLHG_GPIO_LED_1 12
435 #define RBLHG_GPIO_LED_2 4
436 #define RBLHG_GPIO_LED_3 21
437 #define RBLHG_GPIO_LED_4 18
438 #define RBLHG_GPIO_LED_ETH 14
439 #define RBLHG_GPIO_LED_POWER 11
440 #define RBLHG_GPIO_LED_USER 20
441 #define RBLHG_GPIO_BTN_RESET 15
442
443 static struct gpio_led rblhg_leds[] __initdata = {
444 {
445 .name = "rb:green:rssi0",
446 .gpio = RBLHG_GPIO_LED_0,
447 .active_low = 1,
448 }, {
449 .name = "rb:green:rssi1",
450 .gpio = RBLHG_GPIO_LED_1,
451 .active_low = 1,
452 }, {
453 .name = "rb:green:rssi2",
454 .gpio = RBLHG_GPIO_LED_2,
455 .active_low = 1,
456 }, {
457 .name = "rb:green:rssi3",
458 .gpio = RBLHG_GPIO_LED_3,
459 .active_low = 1,
460 }, {
461 .name = "rb:green:rssi4",
462 .gpio = RBLHG_GPIO_LED_4,
463 .active_low = 1,
464 }, {
465 .name = "rb:green:eth",
466 .gpio = RBLHG_GPIO_LED_ETH,
467 .active_low = 1,
468 }, {
469 .name = "rb:green:user",
470 .gpio = RBLHG_GPIO_LED_USER,
471 .active_low = 1,
472 }, {
473 .name = "rb:blue:power",
474 .gpio = RBLHG_GPIO_LED_POWER,
475 .active_low = 0,
476 .default_state = LEDS_GPIO_DEFSTATE_ON,
477 },
478 };
479
480 /* RB w APG-5HacT2HnD (wAP AC) gpios*/
481 #define RBWAPGSC_WIFI_LED_1 1
482 #define RBWAPGSC_WIFI_LED_2 8
483 #define RBWAPGSC_WIFI_LED_3 9
484 #define RBWAPGSC_GPIO_LED_POWER 16
485 #define RBWAPGSC_GPIO_BTN_RESET 1
486 #define RBWAPGSC_GPIO_MDIO_MDC 12
487 #define RBWAPGSC_GPIO_MDIO_DATA 11
488 #define RBWAPGSC_MDIO_PHYADDR 0
489
490 static struct gpio_led rbwapgsc_leds[] __initdata = {
491 {
492 .name = "rb:green:power",
493 .gpio = RBWAPGSC_GPIO_LED_POWER,
494 .active_low = 1,
495 .default_state = LEDS_GPIO_DEFSTATE_ON,
496 },
497 };
498
499 static struct mdio_gpio_platform_data rbwapgsc_mdio_data = {
500 .mdc = RBWAPGSC_GPIO_MDIO_MDC,
501 .mdio = RBWAPGSC_GPIO_MDIO_DATA,
502 .phy_mask = ~BIT(RBWAPGSC_MDIO_PHYADDR),
503 };
504
505 static struct platform_device rbwapgsc_phy_device = {
506 .name = "mdio-gpio",
507 .id = 1,
508 .dev = {
509 .platform_data = &rbwapgsc_mdio_data
510 },
511 };
512
513 /* RB911L GPIOs */
514 #define RB911L_GPIO_BTN_RESET 15
515 #define RB911L_GPIO_LED_1 13
516 #define RB911L_GPIO_LED_2 12
517 #define RB911L_GPIO_LED_3 4
518 #define RB911L_GPIO_LED_4 21
519 #define RB911L_GPIO_LED_5 18
520 #define RB911L_GPIO_LED_ETH 20
521 #define RB911L_GPIO_LED_POWER 11
522 #define RB911L_GPIO_LED_USER 3
523 #define RB911L_GPIO_PIN_HOLE 14 /* for reference */
524
525 static struct gpio_led rb911l_leds[] __initdata = {
526 {
527 .name = "rb:green:eth",
528 .gpio = RB911L_GPIO_LED_ETH,
529 .active_low = 1,
530 }, {
531 .name = "rb:green:led1",
532 .gpio = RB911L_GPIO_LED_1,
533 .active_low = 1,
534 }, {
535 .name = "rb:green:led2",
536 .gpio = RB911L_GPIO_LED_2,
537 .active_low = 1,
538 }, {
539 .name = "rb:green:led3",
540 .gpio = RB911L_GPIO_LED_3,
541 .active_low = 1,
542 }, {
543 .name = "rb:green:led4",
544 .gpio = RB911L_GPIO_LED_4,
545 .active_low = 1,
546 }, {
547 .name = "rb:green:led5",
548 .gpio = RB911L_GPIO_LED_5,
549 .active_low = 1,
550 }, {
551 .name = "rb:green:power",
552 .gpio = RB911L_GPIO_LED_POWER,
553 .default_state = LEDS_GPIO_DEFSTATE_ON,
554 .open_drain = 1,
555 }, {
556 .name = "rb:green:user",
557 .gpio = RB911L_GPIO_LED_USER,
558 .active_low = 1,
559 .open_drain = 1,
560 },
561 };
562
563 /* RB 931-2nD gpios */
564 #define RB931_GPIO_BTN_RESET 0
565 #define RB931_GPIO_BTN_MODE 9
566 #define RB931_GPIO_LED_USER 1
567
568 static struct gpio_keys_button rb931_gpio_keys[] __initdata = {
569 {
570 .desc = "Reset button",
571 .type = EV_KEY,
572 .code = KEY_RESTART,
573 .debounce_interval = RBSPI_KEYS_DEBOUNCE_INTERVAL,
574 .gpio = RB931_GPIO_BTN_RESET,
575 .active_low = 1,
576 }, {
577 .desc = "Mode button",
578 .type = EV_KEY,
579 .code = BTN_0,
580 .debounce_interval = RBSPI_KEYS_DEBOUNCE_INTERVAL,
581 .gpio = RB931_GPIO_BTN_MODE,
582 .active_low = 1,
583 }
584 };
585
586 static struct gpio_led rb931_leds[] __initdata = {
587 {
588 .name = "rb:green:user",
589 .gpio = RB931_GPIO_LED_USER,
590 .active_low = 1,
591 },
592 };
593
594 static struct gen_74x164_chip_platform_data rbspi_ssr_data = {
595 .base = RBSPI_SSR_GPIO_BASE,
596 .num_registers = 1,
597 };
598
599 /* the spi-ath79 driver can only natively handle CS0. Other CS are bit-banged */
600 static int rbspi_spi_cs_gpios[] = {
601 -ENOENT, /* CS0 is always -ENOENT: natively handled */
602 -ENOENT, /* CS1 can be updated by the code as necessary */
603 };
604
605 static struct ath79_spi_platform_data rbspi_ath79_spi_data = {
606 .bus_num = 0,
607 .cs_gpios = rbspi_spi_cs_gpios,
608 };
609
610 /*
611 * Global spi_board_info: devices that don't have an SSR only have the SPI NOR
612 * flash on bus0 CS0, while devices that have an SSR add it on the same bus CS1
613 */
614 static struct spi_board_info rbspi_spi_info[] = {
615 {
616 .bus_num = 0,
617 .chip_select = 0,
618 .max_speed_hz = 25000000,
619 .modalias = "m25p80",
620 .platform_data = &rbspi_spi_flash_data,
621 }, {
622 .bus_num = 0,
623 .chip_select = 1,
624 .max_speed_hz = 25000000,
625 .modalias = "74x164",
626 .platform_data = &rbspi_ssr_data,
627 }
628 };
629
630 void __init rbspi_wlan_init(u16 id, int wmac_offset)
631 {
632 char *art_buf;
633 u8 wlan_mac[ETH_ALEN];
634
635 art_buf = rb_get_ext_wlan_data(id);
636 if (!art_buf)
637 return;
638
639 ath79_init_mac(wlan_mac, ath79_mac_base, wmac_offset);
640 ath79_register_wmac(art_buf + 0x1000, wlan_mac);
641
642 kfree(art_buf);
643 }
644
645 #define RBSPI_MACH_BUFLEN 64
646 /*
647 * Common platform init routine for all SPI NOR devices.
648 */
649 static __init const struct rb_info *rbspi_platform_setup(void)
650 {
651 const struct rb_info *info;
652 char buf[RBSPI_MACH_BUFLEN] = "MikroTik ";
653 char *str;
654 int len = RBSPI_MACH_BUFLEN - strlen(buf) - 1;
655
656 info = rb_init_info((void *)(KSEG1ADDR(AR71XX_SPI_BASE)), 0x20000);
657 if (!info)
658 return NULL;
659
660 if (info->board_name) {
661 str = "RouterBOARD ";
662 if (strncmp(info->board_name, str, strlen(str))) {
663 strncat(buf, str, len);
664 len -= strlen(str);
665 }
666 strncat(buf, info->board_name, len);
667 }
668 else
669 strncat(buf, "UNKNOWN", len);
670
671 mips_set_machine_name(buf);
672
673 /* fix partitions based on flash parsing */
674 rbspi_init_partitions(info);
675
676 return info;
677 }
678
679 /*
680 * Common peripherals init routine for all SPI NOR devices.
681 * Sets SPI and USB.
682 */
683 static void __init rbspi_peripherals_setup(u32 flags)
684 {
685 unsigned spi_n;
686
687 if (flags & RBSPI_HAS_SSR)
688 spi_n = ARRAY_SIZE(rbspi_spi_info);
689 else
690 spi_n = 1; /* only one device on bus0 */
691
692 rbspi_ath79_spi_data.num_chipselect = spi_n;
693 rbspi_ath79_spi_data.cs_gpios = rbspi_spi_cs_gpios;
694 ath79_register_spi(&rbspi_ath79_spi_data, rbspi_spi_info, spi_n);
695
696 if (flags & RBSPI_HAS_USB)
697 ath79_register_usb();
698
699 if (flags & RBSPI_HAS_PCI)
700 ath79_register_pci();
701 }
702
703 /*
704 * Common network init routine for all SPI NOR devices.
705 * Sets LAN/WAN/WLAN.
706 */
707 static void __init rbspi_network_setup(u32 flags, int gmac1_offset,
708 int wmac0_offset, int wmac1_offset)
709 {
710 /* for QCA953x that will init mdio1_device/data */
711 ath79_register_mdio(0, 0x0);
712 if (flags & RBSPI_HAS_MDIO1)
713 ath79_register_mdio(1, 0x0);
714
715 if (flags & RBSPI_HAS_WAN4) {
716 ath79_setup_ar934x_eth_cfg(0);
717
718 /* set switch to oper mode 1, PHY4 connected to CPU */
719 ath79_switch_data.phy4_mii_en = 1;
720 ath79_switch_data.phy_poll_mask |= BIT(4);
721
722 /* init GMAC0 connected to PHY4 at 100M */
723 ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
724 ath79_eth0_data.phy_mask = BIT(4);
725 ath79_init_mac(ath79_eth0_data.mac_addr, ath79_mac_base, 0);
726 ath79_register_eth(0);
727 } else {
728 /* set the SoC to SW_ONLY_MODE, which connects all PHYs
729 * to the internal switch.
730 * We hijack ath79_setup_ar934x_eth_cfg() to set the switch in
731 * the QCA953x, this works because this configuration bit is
732 * the same as the AR934x. There's no equivalent function for
733 * QCA953x for now. */
734 ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_SW_ONLY_MODE);
735 }
736
737 /* init GMAC1 */
738 ath79_init_mac(ath79_eth1_data.mac_addr, ath79_mac_base, gmac1_offset);
739 ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
740 ath79_register_eth(1);
741
742 if (flags & RBSPI_HAS_WLAN0)
743 rbspi_wlan_init(0, wmac0_offset);
744
745 if (flags & RBSPI_HAS_WLAN1)
746 rbspi_wlan_init(1, wmac1_offset);
747 }
748
749 static __init void rbspi_register_reset_button(int gpio)
750 {
751 rbspi_gpio_keys_reset[0].gpio = gpio;
752 ath79_register_gpio_keys_polled(-1, RBSPI_KEYS_POLL_INTERVAL,
753 ARRAY_SIZE(rbspi_gpio_keys_reset),
754 rbspi_gpio_keys_reset);
755 }
756
757 /*
758 * Init the mAP lite hardware (QCA953x).
759 * The mAP L-2nD (mAP lite) has a single ethernet port, connected to PHY0.
760 * Trying to use GMAC0 in direct mode was unsucessful, so we're
761 * using SW_ONLY_MODE, which connects PHY0 to MAC1 on the internal
762 * switch, which is connected to GMAC1 on the SoC. GMAC0 is unused.
763 */
764 static void __init rbmapl_setup(void)
765 {
766 u32 flags = RBSPI_HAS_WLAN0;
767
768 if (!rbspi_platform_setup())
769 return;
770
771 rbspi_peripherals_setup(flags);
772
773 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 1 */
774 rbspi_network_setup(flags, 0, 1, 0);
775
776 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbmapl_leds), rbmapl_leds);
777
778 /* mAP lite has a single reset button as gpio 16 */
779 rbspi_register_reset_button(RBMAPL_GPIO_BTN_RESET);
780
781 /* clear internal multiplexing */
782 ath79_gpio_output_select(RBMAPL_GPIO_LED_ETH, AR934X_GPIO_OUT_GPIO);
783 ath79_gpio_output_select(RBMAPL_GPIO_LED_POWER, AR934X_GPIO_OUT_GPIO);
784 }
785
786 /*
787 * Init the hAP lite hardware (QCA953x).
788 * The 941-2nD (hAP lite) has 4 ethernet ports, with port 2-4
789 * being assigned to LAN on the casing, and port 1 being assigned
790 * to "internet" (WAN) on the casing. Port 1 is connected to PHY3.
791 * Since WAN is neither PHY0 nor PHY4, we cannot use GMAC0 with this device.
792 */
793 static void __init rbhapl_setup(void)
794 {
795 u32 flags = RBSPI_HAS_WLAN0;
796
797 if (!rbspi_platform_setup())
798 return;
799
800 rbspi_peripherals_setup(flags);
801
802 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 4 */
803 rbspi_network_setup(flags, 0, 4, 0);
804
805 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbhapl_leds), rbhapl_leds);
806
807 /* hAP lite has a single reset button as gpio 16 */
808 rbspi_register_reset_button(RBHAPL_GPIO_BTN_RESET);
809 }
810
811 /*
812 * The hAP, hAP ac lite, hEX lite and hEX PoE lite share the same platform
813 */
814 static void __init rbspi_952_750r2_setup(u32 flags)
815 {
816 if (flags & RBSPI_HAS_SSR)
817 rbspi_spi_cs_gpios[1] = RB952_GPIO_SSR_CS;
818
819 rbspi_peripherals_setup(flags);
820
821 /*
822 * GMAC1 is HW MAC + 1, WLAN0 MAC IS HW MAC + 5 (hAP),
823 * WLAN1 MAC IS HW MAC + 6 (hAP ac lite)
824 */
825 rbspi_network_setup(flags, 1, 5, 6);
826
827 if (flags & RBSPI_HAS_USB)
828 gpio_request_one(RB952_GPIO_USB_PWROFF, GPIOF_ACTIVE_LOW |
829 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
830 "USB power off");
831
832 if (flags & RBSPI_HAS_POE)
833 gpio_request_one(RB952_GPIO_POE_POWER,
834 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
835 "POE power");
836
837 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb952_leds), rb952_leds);
838
839 /* These devices have a single reset button as gpio 16 */
840 rbspi_register_reset_button(RB952_GPIO_BTN_RESET);
841 }
842
843 /*
844 * Init the hAP (ac lite) hardware (QCA953x).
845 * The 951Ui-2nD (hAP) has 5 ethernet ports, with ports 2-5 being assigned
846 * to LAN on the casing, and port 1 being assigned to "internet" (WAN).
847 * Port 1 is connected to PHY4 (the ports are labelled in reverse physical
848 * number), so the SoC can be set to connect GMAC0 to PHY4 and GMAC1 to the
849 * internal switch for the LAN ports.
850 * The device also has USB, PoE output and an SSR used for LED multiplexing.
851 * The 952Ui-5ac2nD (hAP ac lite) is nearly identical to the hAP, it adds a
852 * QCA9887 5GHz radio via PCI and moves 2.4GHz from WLAN0 to WLAN1.
853 */
854 static void __init rb952_setup(void)
855 {
856 u32 flags = RBSPI_HAS_WAN4 | RBSPI_HAS_USB |
857 RBSPI_HAS_SSR | RBSPI_HAS_POE;
858
859 if (!rbspi_platform_setup())
860 return;
861
862 /* differentiate the hAP from the hAP ac lite */
863 if (strstr(mips_get_machine_name(), "952Ui-5ac2nD"))
864 flags |= RBSPI_HAS_WLAN1 | RBSPI_HAS_PCI;
865 else
866 flags |= RBSPI_HAS_WLAN0;
867
868 rbspi_952_750r2_setup(flags);
869 }
870
871 /*
872 * Init the hEX (PoE) lite hardware (QCA953x).
873 * The 750UP r2 (hEX PoE lite) is nearly identical to the hAP, only without
874 * WLAN. The 750 r2 (hEX lite) is nearly identical to the 750UP r2, only
875 * without USB and POE. The 750P Pbr2 (Powerbox) is nearly identical to hEX PoE
876 * lite, only without USB. It shares the same bootloader board identifier.
877 */
878 static void __init rb750upr2_setup(void)
879 {
880 u32 flags = RBSPI_HAS_WAN4 | RBSPI_HAS_SSR;
881
882 if (!rbspi_platform_setup())
883 return;
884
885 /* differentiate the hEX lite from the hEX PoE lite */
886 if (strstr(mips_get_machine_name(), "750UP r2"))
887 flags |= RBSPI_HAS_USB | RBSPI_HAS_POE;
888
889 /* differentiate the Powerbox from the hEX lite */
890 else if (strstr(mips_get_machine_name(), "750P r2"))
891 flags |= RBSPI_HAS_POE;
892
893 rbspi_952_750r2_setup(flags);
894 }
895
896 /*
897 * Init the hAP ac / 962UiGS-5HacT2HnT hardware (QCA9558).
898 * The hAP ac has 5 ethernet ports provided by an AR8337 switch. Port 1 is
899 * assigned to WAN, ports 2-5 are assigned to LAN. Port 0 is connected to the
900 * SoC, ports 1-5 of the switch are connected to physical ports 1-5 in order.
901 * The SFP cage is not assigned by default on RouterOS. Extra work is required
902 * to support this interface as it is directly connected to the SoC (eth1).
903 * Wireless is provided by a 2.4GHz radio on the SoC (WLAN1) and a 5GHz radio
904 * attached via PCI (QCA9880). Red and green WLAN LEDs are populated however
905 * they are not attached to GPIOs, extra work is required to support these.
906 * PoE and USB output power control is supported.
907 */
908 static void __init rb962_setup(void)
909 {
910 u32 flags = RBSPI_HAS_USB | RBSPI_HAS_POE | RBSPI_HAS_PCI;
911
912 if (!rbspi_platform_setup())
913 return;
914
915 rbspi_peripherals_setup(flags);
916
917 /* Do not call rbspi_network_setup as we have a discrete switch chip */
918 ath79_eth0_pll_data.pll_1000 = 0xae000000;
919 ath79_eth0_pll_data.pll_100 = 0xa0000101;
920 ath79_eth0_pll_data.pll_10 = 0xa0001313;
921
922 ath79_register_mdio(0, 0x0);
923 mdiobus_register_board_info(rb962_mdio0_info,
924 ARRAY_SIZE(rb962_mdio0_info));
925
926 ath79_setup_qca955x_eth_cfg(QCA955X_ETH_CFG_RGMII_EN);
927
928 ath79_init_mac(ath79_eth0_data.mac_addr, ath79_mac_base, 0);
929 ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
930 ath79_eth0_data.phy_mask = BIT(0);
931 ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
932 ath79_register_eth(0);
933
934 /* WLAN1 MAC is HW MAC + 7 */
935 rbspi_wlan_init(1, 7);
936
937 if (flags & RBSPI_HAS_USB)
938 gpio_request_one(RB962_GPIO_USB_PWROFF, GPIOF_ACTIVE_LOW |
939 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
940 "USB power off");
941
942 /* PoE output GPIO is inverted, set GPIOF_ACTIVE_LOW for consistency */
943 if (flags & RBSPI_HAS_POE)
944 gpio_request_one(RB962_GPIO_POE_POWER,
945 GPIOF_OUT_INIT_HIGH | GPIOF_ACTIVE_LOW |
946 GPIOF_EXPORT_DIR_FIXED,
947 "POE power");
948
949 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb962_leds_gpio),
950 rb962_leds_gpio);
951
952 /* This device has a single reset button as gpio 20 */
953 rbspi_register_reset_button(RB962_GPIO_BTN_RESET);
954 }
955
956 /*
957 * Init the LHG hardware (AR9344).
958 * The LHG 5nD has a single ethernet port connected to PHY0.
959 * Wireless is provided via 5GHz WLAN1.
960 */
961 static void __init rblhg_setup(void)
962 {
963 u32 flags = RBSPI_HAS_WLAN1 | RBSPI_HAS_MDIO1;
964
965 if (!rbspi_platform_setup())
966 return;
967
968 rbspi_peripherals_setup(flags);
969
970 /* GMAC1 is HW MAC, WLAN1 MAC is HW MAC + 1 */
971 rbspi_network_setup(flags, 0, 0, 1);
972
973 ath79_register_leds_gpio(-1, ARRAY_SIZE(rblhg_leds), rblhg_leds);
974
975 rbspi_register_reset_button(RBLHG_GPIO_BTN_RESET);
976 }
977
978 /*
979 * Init the wAP hardware.
980 * The wAP 2nD has a single ethernet port.
981 */
982 static void __init rbwap_setup(void)
983 {
984 u32 flags = RBSPI_HAS_WLAN0;
985
986 if (!rbspi_platform_setup())
987 return;
988
989 rbspi_peripherals_setup(flags);
990
991 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 1 */
992 rbspi_network_setup(flags, 0, 1, 0);
993
994 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbwap_leds), rbwap_leds);
995
996 /* wAP has a single reset button as GPIO 16 */
997 rbspi_register_reset_button(RBWAP_GPIO_BTN_RESET);
998 }
999
1000 /*
1001 * Init the cAP hardware (EXPERIMENTAL).
1002 * The cAP 2nD has a single ethernet port, and a global LED switch.
1003 */
1004 static void __init rbcap_setup(void)
1005 {
1006 u32 flags = RBSPI_HAS_WLAN0;
1007
1008 if (!rbspi_platform_setup())
1009 return;
1010
1011 rbspi_peripherals_setup(flags);
1012
1013 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 1 */
1014 rbspi_network_setup(flags, 0, 1, 0);
1015
1016 gpio_request_one(RBCAP_GPIO_LED_ALL,
1017 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
1018 "LEDs enable");
1019
1020 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbcap_leds), rbcap_leds);
1021 }
1022
1023 /*
1024 * Init the mAP hardware.
1025 * The mAP 2nD has two ethernet ports, PoE output, SSR for LED
1026 * multiplexing and USB port.
1027 */
1028 static void __init rbmap_setup(void)
1029 {
1030 u32 flags = RBSPI_HAS_USB | RBSPI_HAS_WLAN0 |
1031 RBSPI_HAS_SSR | RBSPI_HAS_POE;
1032
1033 if (!rbspi_platform_setup())
1034 return;
1035
1036 rbspi_spi_cs_gpios[1] = RBMAP_GPIO_SSR_CS;
1037 rbspi_peripherals_setup(flags);
1038
1039 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 2 */
1040 rbspi_network_setup(flags, 0, 2, 0);
1041
1042 if (flags & RBSPI_HAS_POE)
1043 gpio_request_one(RBMAP_GPIO_POE_POWER,
1044 GPIOF_OUT_INIT_LOW | GPIOF_EXPORT_DIR_FIXED,
1045 "POE power");
1046
1047 if (flags & RBSPI_HAS_USB)
1048 gpio_request_one(RBMAP_GPIO_USB_PWROFF,
1049 GPIOF_OUT_INIT_HIGH | GPIOF_ACTIVE_LOW |
1050 GPIOF_EXPORT_DIR_FIXED,
1051 "USB power off");
1052
1053 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbmap_leds), rbmap_leds);
1054
1055 /* mAP 2nD has a single reset button as gpio 16 */
1056 rbspi_register_reset_button(RBMAP_GPIO_BTN_RESET);
1057 }
1058
1059 /*
1060 * Init the wAPGSC (RB wAPG-5HacT2HnD // wAP AC) hardware.
1061 * The wAPGSC has one Ethernet port via AR8033 with PoE input, dual radio (SoC
1062 * 2.4 GHz and external QCA9880) and a ZT2046Q temperature and voltage sensor
1063 * (currently not supported).
1064 */
1065 static void __init rbwapgsc_setup(void)
1066 {
1067 u32 flags = RBSPI_HAS_PCI;
1068
1069 if (!rbspi_platform_setup())
1070 return;
1071
1072 rbspi_peripherals_setup(flags);
1073
1074 platform_device_register(&rbwapgsc_phy_device);
1075
1076 ath79_init_mac(ath79_eth1_data.mac_addr, ath79_mac_base, 0);
1077 ath79_eth1_data.mii_bus_dev = &rbwapgsc_phy_device.dev;
1078 ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_SGMII;
1079 ath79_eth1_data.phy_mask = BIT(RBWAPGSC_MDIO_PHYADDR);
1080 ath79_eth1_pll_data.pll_1000 = 0x03000101;
1081 ath79_eth1_pll_data.pll_100 = 0x80000101;
1082 ath79_eth1_pll_data.pll_10 = 0x80001313;
1083 ath79_eth1_data.speed = SPEED_1000;
1084 ath79_eth1_data.duplex = DUPLEX_FULL;
1085 ath79_register_eth(1);
1086
1087 rbspi_wlan_init(1, 2);
1088
1089 rbspi_register_reset_button(RBWAPGSC_GPIO_BTN_RESET);
1090
1091 ath79_gpio_function_enable(QCA955X_GPIO_FUNC_JTAG_DISABLE|
1092 QCA955X_GPIO_REG_OUT_FUNC4|
1093 QCA955X_GPIO_REG_OUT_FUNC3);
1094
1095 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbwapgsc_leds),
1096 rbwapgsc_leds);
1097 }
1098
1099 /*
1100 * Setup the 911L hardware (AR9344).
1101 */
1102 static void __init rb911l_setup(void)
1103 {
1104 const struct rb_info *info;
1105
1106 info = rbspi_platform_setup();
1107 if (!info)
1108 return;
1109
1110 if (!rb_has_hw_option(info, RB_HW_OPT_NO_NAND)) {
1111 /*
1112 * Old hardware revisions might be equipped with a NAND flash
1113 * chip instead of the 16MiB SPI NOR device. Those boards are
1114 * not supported at the moment, so throw a warning and skip
1115 * the peripheral setup to avoid messing up the data in the
1116 * flash chip.
1117 */
1118 WARN(1, "The NAND flash on this board is not supported.\n");
1119 } else {
1120 rbspi_peripherals_setup(0);
1121 }
1122
1123 ath79_register_mdio(1, 0x0);
1124
1125 ath79_init_mac(ath79_eth1_data.mac_addr, ath79_mac_base, 0);
1126
1127 ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
1128 ath79_eth1_data.speed = SPEED_1000;
1129 ath79_eth1_data.duplex = DUPLEX_FULL;
1130
1131 ath79_register_eth(1);
1132
1133 rbspi_wlan_init(0, 1);
1134
1135 rbspi_register_reset_button(RB911L_GPIO_BTN_RESET);
1136
1137 /* Make the eth LED controllable by software. */
1138 ath79_gpio_output_select(RB911L_GPIO_LED_ETH, AR934X_GPIO_OUT_GPIO);
1139
1140 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb911l_leds), rb911l_leds);
1141 }
1142
1143 /*
1144 * Init the hAP mini hardware (QCA953x).
1145 * The 931-2nD (hAP mini) has 3 ethernet ports, with port 2-3
1146 * being assigned to LAN on the casing, and port 1 being assigned
1147 * to "internet" (WAN) on the casing. Port 1 is connected to PHY2.
1148 * Since WAN is neither PHY0 nor PHY4, we cannot use GMAC0 with this device.
1149 */
1150 static void __init rb931_setup(void)
1151 {
1152 u32 flags = RBSPI_HAS_WLAN0;
1153
1154 if (!rbspi_platform_setup())
1155 return;
1156
1157 rbspi_peripherals_setup(flags);
1158
1159 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 3 */
1160 rbspi_network_setup(flags, 0, 3, 0);
1161
1162 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb931_leds), rb931_leds);
1163
1164 /* hAP mini has two buttons */
1165 ath79_register_gpio_keys_polled(-1, RBSPI_KEYS_POLL_INTERVAL,
1166 ARRAY_SIZE(rb931_gpio_keys),
1167 rb931_gpio_keys);
1168 }
1169
1170 MIPS_MACHINE_NONAME(ATH79_MACH_RB_MAPL, "map-hb", rbmapl_setup);
1171 MIPS_MACHINE_NONAME(ATH79_MACH_RB_941, "H951L", rbhapl_setup);
1172 MIPS_MACHINE_NONAME(ATH79_MACH_RB_911L, "911L", rb911l_setup);
1173 MIPS_MACHINE_NONAME(ATH79_MACH_RB_952, "952-hb", rb952_setup);
1174 MIPS_MACHINE_NONAME(ATH79_MACH_RB_962, "962", rb962_setup);
1175 MIPS_MACHINE_NONAME(ATH79_MACH_RB_750UPR2, "750-hb", rb750upr2_setup);
1176 MIPS_MACHINE_NONAME(ATH79_MACH_RB_LHG5, "lhg", rblhg_setup);
1177 MIPS_MACHINE_NONAME(ATH79_MACH_RB_WAP, "wap-hb", rbwap_setup);
1178 MIPS_MACHINE_NONAME(ATH79_MACH_RB_WAPR, "wap-lte", rbwap_setup);
1179 MIPS_MACHINE_NONAME(ATH79_MACH_RB_CAP, "cap-hb", rbcap_setup);
1180 MIPS_MACHINE_NONAME(ATH79_MACH_RB_MAP, "map2-hb", rbmap_setup);
1181 MIPS_MACHINE_NONAME(ATH79_MACH_RB_WAPAC, "wapg-sc", rbwapgsc_setup);
1182 MIPS_MACHINE_NONAME(ATH79_MACH_RB_931, "931", rb931_setup);