ar71xx: add v4.14 support
[openwrt/openwrt.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_WIFI_LED_1 1
259 #define RB962_WIFI_LED_2 2
260 #define RB962_GPIO_POE_STATUS 2
261 #define RB962_GPIO_POE_POWER 3
262 #define RB962_GPIO_LED_USER 12
263 #define RB962_GPIO_USB_PWROFF 13
264 #define RB962_GPIO_BTN_RESET 20
265
266 static struct gpio_led rb962_leds_gpio[] __initdata = {
267 {
268 .name = "rb:green:user",
269 .gpio = RB962_GPIO_LED_USER,
270 .active_low = 1,
271 },
272 };
273
274 static const struct ar8327_led_info rb962_leds_ar8327[] = {
275 AR8327_LED_INFO(PHY0_0, HW, "rb:green:port1"),
276 AR8327_LED_INFO(PHY1_0, HW, "rb:green:port2"),
277 AR8327_LED_INFO(PHY2_0, HW, "rb:green:port3"),
278 AR8327_LED_INFO(PHY3_0, HW, "rb:green:port4"),
279 AR8327_LED_INFO(PHY4_0, HW, "rb:green:port5"),
280 };
281
282 static struct ar8327_pad_cfg rb962_ar8327_pad0_cfg = {
283 .mode = AR8327_PAD_MAC_RGMII,
284 .txclk_delay_en = true,
285 .rxclk_delay_en = true,
286 .txclk_delay_sel = AR8327_CLK_DELAY_SEL1,
287 .rxclk_delay_sel = AR8327_CLK_DELAY_SEL2,
288 .mac06_exchange_dis = true,
289 };
290
291 static struct ar8327_pad_cfg rb962_ar8327_pad6_cfg = {
292 /* Use SGMII interface for GMAC6 of the AR8337 switch */
293 .mode = AR8327_PAD_MAC_SGMII,
294 .rxclk_delay_en = true,
295 .rxclk_delay_sel = AR8327_CLK_DELAY_SEL0,
296 };
297
298 static struct ar8327_led_cfg rb962_ar8327_led_cfg = {
299 .led_ctrl0 = 0xc737c737,
300 .led_ctrl1 = 0x00000000,
301 .led_ctrl2 = 0x00000000,
302 .led_ctrl3 = 0x0030c300,
303 .open_drain = false,
304 };
305
306 static struct ar8327_platform_data rb962_ar8327_data = {
307 .pad0_cfg = &rb962_ar8327_pad0_cfg,
308 .pad6_cfg = &rb962_ar8327_pad6_cfg,
309 .port0_cfg = {
310 .force_link = 1,
311 .speed = AR8327_PORT_SPEED_1000,
312 .duplex = 1,
313 .txpause = 1,
314 .rxpause = 1,
315 },
316 .port6_cfg = {
317 .force_link = 1,
318 .speed = AR8327_PORT_SPEED_1000,
319 .duplex = 1,
320 .txpause = 1,
321 .rxpause = 1,
322 },
323 .led_cfg = &rb962_ar8327_led_cfg,
324 .num_leds = ARRAY_SIZE(rb962_leds_ar8327),
325 .leds = rb962_leds_ar8327,
326 };
327
328 static struct mdio_board_info rb962_mdio0_info[] = {
329 {
330 .bus_id = "ag71xx-mdio.0",
331 .mdio_addr = 0,
332 .platform_data = &rb962_ar8327_data,
333 },
334 };
335
336 /* RB wAP-2nD gpios */
337 #define RBWAP_GPIO_LED_USER 14
338 #define RBWAP_GPIO_LED_WLAN 11
339 #define RBWAP_GPIO_BTN_RESET 16
340
341 static struct gpio_led rbwap_leds[] __initdata = {
342 {
343 .name = "rb:green:user",
344 .gpio = RBWAP_GPIO_LED_USER,
345 .active_low = 1,
346 }, {
347 .name = "rb:green:wlan",
348 .gpio = RBWAP_GPIO_LED_WLAN,
349 .active_low = 1,
350 },
351 };
352
353 /* RB cAP-2nD gpios */
354 #define RBCAP_GPIO_LED_1 14
355 #define RBCAP_GPIO_LED_2 12
356 #define RBCAP_GPIO_LED_3 11
357 #define RBCAP_GPIO_LED_4 4
358 #define RBCAP_GPIO_LED_ALL 13
359
360 static struct gpio_led rbcap_leds[] __initdata = {
361 {
362 .name = "rb:green:rssi1",
363 .gpio = RBCAP_GPIO_LED_1,
364 .active_low = 1,
365 }, {
366 .name = "rb:green:rssi2",
367 .gpio = RBCAP_GPIO_LED_2,
368 .active_low = 1,
369 }, {
370 .name = "rb:green:rssi3",
371 .gpio = RBCAP_GPIO_LED_3,
372 .active_low = 1,
373 }, {
374 .name = "rb:green:rssi4",
375 .gpio = RBCAP_GPIO_LED_4,
376 .active_low = 1,
377 },
378 };
379
380 /* RB mAP-2nD gpios */
381 #define RBMAP_SSR_BIT_LED_LAN1 0
382 #define RBMAP_SSR_BIT_LED_LAN2 1
383 #define RBMAP_SSR_BIT_LED_POEO 2
384 #define RBMAP_SSR_BIT_LED_USER 3
385 #define RBMAP_SSR_BIT_LED_WLAN 4
386 #define RBMAP_SSR_BIT_USB_POWER 5
387 #define RBMAP_SSR_BIT_LED_APCAP 6
388 #define RBMAP_GPIO_BTN_RESET 16
389 #define RBMAP_GPIO_SSR_CS 11
390 #define RBMAP_GPIO_LED_POWER 4
391 #define RBMAP_GPIO_POE_POWER 14
392 #define RBMAP_GPIO_POE_STATUS 12
393 #define RBMAP_GPIO_USB_PWROFF RBSPI_SSR_GPIO(RBMAP_SSR_BIT_USB_POWER)
394 #define RBMAP_GPIO_LED_LAN1 RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_LAN1)
395 #define RBMAP_GPIO_LED_LAN2 RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_LAN2)
396 #define RBMAP_GPIO_LED_POEO RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_POEO)
397 #define RBMAP_GPIO_LED_USER RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_USER)
398 #define RBMAP_GPIO_LED_WLAN RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_WLAN)
399 #define RBMAP_GPIO_LED_APCAP RBSPI_SSR_GPIO(RBMAP_SSR_BIT_LED_APCAP)
400
401 static struct gpio_led rbmap_leds[] __initdata = {
402 {
403 .name = "rb:green:power",
404 .gpio = RBMAP_GPIO_LED_POWER,
405 .active_low = 1,
406 .default_state = LEDS_GPIO_DEFSTATE_ON,
407 }, {
408 .name = "rb:green:eth1",
409 .gpio = RBMAP_GPIO_LED_LAN1,
410 .active_low = 1,
411 }, {
412 .name = "rb:green:eth2",
413 .gpio = RBMAP_GPIO_LED_LAN2,
414 .active_low = 1,
415 }, {
416 .name = "rb:red:poe_out",
417 .gpio = RBMAP_GPIO_LED_POEO,
418 .active_low = 1,
419 }, {
420 .name = "rb:green:user",
421 .gpio = RBMAP_GPIO_LED_USER,
422 .active_low = 1,
423 }, {
424 .name = "rb:green:wlan",
425 .gpio = RBMAP_GPIO_LED_WLAN,
426 .active_low = 1,
427 }, {
428 .name = "rb:green:ap_cap",
429 .gpio = RBMAP_GPIO_LED_APCAP,
430 .active_low = 1,
431 },
432 };
433
434 /* RB LHG 5nD gpios */
435 #define RBLHG_GPIO_LED_0 13
436 #define RBLHG_GPIO_LED_1 12
437 #define RBLHG_GPIO_LED_2 4
438 #define RBLHG_GPIO_LED_3 21
439 #define RBLHG_GPIO_LED_4 18
440 #define RBLHG_GPIO_LED_ETH 14
441 #define RBLHG_GPIO_LED_POWER 11
442 #define RBLHG_GPIO_LED_USER 20
443 #define RBLHG_GPIO_BTN_RESET 15
444
445 static struct gpio_led rblhg_leds[] __initdata = {
446 {
447 .name = "rb:green:rssi0",
448 .gpio = RBLHG_GPIO_LED_0,
449 .active_low = 1,
450 }, {
451 .name = "rb:green:rssi1",
452 .gpio = RBLHG_GPIO_LED_1,
453 .active_low = 1,
454 }, {
455 .name = "rb:green:rssi2",
456 .gpio = RBLHG_GPIO_LED_2,
457 .active_low = 1,
458 }, {
459 .name = "rb:green:rssi3",
460 .gpio = RBLHG_GPIO_LED_3,
461 .active_low = 1,
462 }, {
463 .name = "rb:green:rssi4",
464 .gpio = RBLHG_GPIO_LED_4,
465 .active_low = 1,
466 }, {
467 .name = "rb:green:eth",
468 .gpio = RBLHG_GPIO_LED_ETH,
469 .active_low = 1,
470 }, {
471 .name = "rb:green:user",
472 .gpio = RBLHG_GPIO_LED_USER,
473 .active_low = 1,
474 }, {
475 .name = "rb:blue:power",
476 .gpio = RBLHG_GPIO_LED_POWER,
477 .active_low = 0,
478 .default_state = LEDS_GPIO_DEFSTATE_ON,
479 },
480 };
481
482 /* RB w APG-5HacT2HnD (wAP AC) gpios*/
483 #define RBWAPGSC_WIFI_LED_1 1
484 #define RBWAPGSC_WIFI_LED_2 8
485 #define RBWAPGSC_WIFI_LED_3 9
486 #define RBWAPGSC_GPIO_LED_POWER 16
487 #define RBWAPGSC_GPIO_BTN_RESET 1
488 #define RBWAPGSC_GPIO_MDIO_MDC 12
489 #define RBWAPGSC_GPIO_MDIO_DATA 11
490 #define RBWAPGSC_MDIO_PHYADDR 0
491
492 static struct gpio_led rbwapgsc_leds[] __initdata = {
493 {
494 .name = "rb:green:power",
495 .gpio = RBWAPGSC_GPIO_LED_POWER,
496 .active_low = 1,
497 .default_state = LEDS_GPIO_DEFSTATE_ON,
498 },
499 };
500
501 static struct mdio_gpio_platform_data rbwapgsc_mdio_data = {
502 .mdc = RBWAPGSC_GPIO_MDIO_MDC,
503 .mdio = RBWAPGSC_GPIO_MDIO_DATA,
504 .phy_mask = ~BIT(RBWAPGSC_MDIO_PHYADDR),
505 };
506
507 static struct platform_device rbwapgsc_phy_device = {
508 .name = "mdio-gpio",
509 .id = 1,
510 .dev = {
511 .platform_data = &rbwapgsc_mdio_data
512 },
513 };
514
515 /* RB911L GPIOs */
516 #define RB911L_GPIO_BTN_RESET 15
517 #define RB911L_GPIO_LED_1 13
518 #define RB911L_GPIO_LED_2 12
519 #define RB911L_GPIO_LED_3 4
520 #define RB911L_GPIO_LED_4 21
521 #define RB911L_GPIO_LED_5 18
522 #define RB911L_GPIO_LED_ETH 20
523 #define RB911L_GPIO_LED_POWER 11
524 #define RB911L_GPIO_LED_USER 3
525 #define RB911L_GPIO_PIN_HOLE 14 /* for reference, active low */
526
527 static struct gpio_led rb911l_leds[] __initdata = {
528 {
529 .name = "rb:green:eth",
530 .gpio = RB911L_GPIO_LED_ETH,
531 .active_low = 1,
532 }, {
533 .name = "rb:green:led1",
534 .gpio = RB911L_GPIO_LED_1,
535 .active_low = 1,
536 }, {
537 .name = "rb:green:led2",
538 .gpio = RB911L_GPIO_LED_2,
539 .active_low = 1,
540 }, {
541 .name = "rb:green:led3",
542 .gpio = RB911L_GPIO_LED_3,
543 .active_low = 1,
544 }, {
545 .name = "rb:green:led4",
546 .gpio = RB911L_GPIO_LED_4,
547 .active_low = 1,
548 }, {
549 .name = "rb:green:led5",
550 .gpio = RB911L_GPIO_LED_5,
551 .active_low = 1,
552 }, {
553 .name = "rb:green:power",
554 .gpio = RB911L_GPIO_LED_POWER,
555 .default_state = LEDS_GPIO_DEFSTATE_ON,
556 .active_low = 1,
557 .open_drain = 1,
558 }, {
559 .name = "rb:green:user",
560 .gpio = RB911L_GPIO_LED_USER,
561 .active_low = 1,
562 .open_drain = 1,
563 },
564 };
565
566 /* RB 931-2nD gpios */
567 #define RB931_GPIO_BTN_RESET 0
568 #define RB931_GPIO_BTN_MODE 9
569 #define RB931_GPIO_LED_USER 1
570
571 static struct gpio_keys_button rb931_gpio_keys[] __initdata = {
572 {
573 .desc = "Reset button",
574 .type = EV_KEY,
575 .code = KEY_RESTART,
576 .debounce_interval = RBSPI_KEYS_DEBOUNCE_INTERVAL,
577 .gpio = RB931_GPIO_BTN_RESET,
578 .active_low = 1,
579 }, {
580 .desc = "Mode button",
581 .type = EV_KEY,
582 .code = BTN_0,
583 .debounce_interval = RBSPI_KEYS_DEBOUNCE_INTERVAL,
584 .gpio = RB931_GPIO_BTN_MODE,
585 .active_low = 1,
586 }
587 };
588
589 static struct gpio_led rb931_leds[] __initdata = {
590 {
591 .name = "rb:green:user",
592 .gpio = RB931_GPIO_LED_USER,
593 .active_low = 1,
594 },
595 };
596
597 /* RB wAP R-2nD (wAP R) gpios*/
598 #define RBWAPR_GPIO_LED_USER 14
599 #define RBWAPR_GPIO_LED1 12
600 #define RBWAPR_GPIO_LED2 13
601 #define RBWAPR_GPIO_LED3 3
602 #define RBWAPR_GPIO_PCIE_PWROFF 15
603 #define RBWAPR_GPIO_CONTROL 10
604 #define RBWAPR_GPIO_BTN_RESET 16
605
606 static struct gpio_led rbwapr_leds[] __initdata = {
607 {
608 .name = "rb:green:user",
609 .gpio = RBWAPR_GPIO_LED_USER,
610 .active_low = 0,
611 },{
612 .name = "rb:green:led1",
613 .gpio = RBWAPR_GPIO_LED1,
614 .active_low = 1,
615 },{
616 .name = "rb:green:led2",
617 .gpio = RBWAPR_GPIO_LED2,
618 .active_low = 1,
619 },{
620 .name = "rb:green:led3",
621 .gpio = RBWAPR_GPIO_LED3,
622 .active_low = 0,
623 },
624 };
625
626
627 static struct gen_74x164_chip_platform_data rbspi_ssr_data = {
628 .base = RBSPI_SSR_GPIO_BASE,
629 .num_registers = 1,
630 };
631
632 /* the spi-ath79 driver can only natively handle CS0. Other CS are bit-banged */
633 static int rbspi_spi_cs_gpios[] = {
634 -ENOENT, /* CS0 is always -ENOENT: natively handled */
635 -ENOENT, /* CS1 can be updated by the code as necessary */
636 };
637
638 static struct ath79_spi_platform_data rbspi_ath79_spi_data = {
639 .bus_num = 0,
640 .cs_gpios = rbspi_spi_cs_gpios,
641 };
642
643 /*
644 * Global spi_board_info: devices that don't have an SSR only have the SPI NOR
645 * flash on bus0 CS0, while devices that have an SSR add it on the same bus CS1
646 */
647 static struct spi_board_info rbspi_spi_info[] = {
648 {
649 .bus_num = 0,
650 .chip_select = 0,
651 .max_speed_hz = 25000000,
652 .modalias = "m25p80",
653 .platform_data = &rbspi_spi_flash_data,
654 }, {
655 .bus_num = 0,
656 .chip_select = 1,
657 .max_speed_hz = 25000000,
658 .modalias = "74x164",
659 .platform_data = &rbspi_ssr_data,
660 }
661 };
662
663 void __init rbspi_wlan_init(u16 id, int wmac_offset)
664 {
665 char *art_buf;
666 u8 wlan_mac[ETH_ALEN];
667
668 art_buf = rb_get_ext_wlan_data(id);
669 if (!art_buf)
670 return;
671
672 ath79_init_mac(wlan_mac, ath79_mac_base, wmac_offset);
673 ath79_register_wmac(art_buf + 0x1000, wlan_mac);
674
675 kfree(art_buf);
676 }
677
678 #define RBSPI_MACH_BUFLEN 64
679 /*
680 * Common platform init routine for all SPI NOR devices.
681 */
682 static __init const struct rb_info *rbspi_platform_setup(void)
683 {
684 const struct rb_info *info;
685 char buf[RBSPI_MACH_BUFLEN] = "MikroTik ";
686 char *str;
687 int len = RBSPI_MACH_BUFLEN - strlen(buf) - 1;
688
689 info = rb_init_info((void *)(KSEG1ADDR(AR71XX_SPI_BASE)), 0x20000);
690 if (!info)
691 return NULL;
692
693 if (info->board_name) {
694 str = "RouterBOARD ";
695 if (strncmp(info->board_name, str, strlen(str))) {
696 strncat(buf, str, len);
697 len -= strlen(str);
698 }
699 strncat(buf, info->board_name, len);
700 }
701 else
702 strncat(buf, "UNKNOWN", len);
703
704 mips_set_machine_name(buf);
705
706 /* fix partitions based on flash parsing */
707 rbspi_init_partitions(info);
708
709 return info;
710 }
711
712 /*
713 * Common peripherals init routine for all SPI NOR devices.
714 * Sets SPI and USB.
715 */
716 static void __init rbspi_peripherals_setup(u32 flags)
717 {
718 unsigned spi_n;
719
720 if (flags & RBSPI_HAS_SSR)
721 spi_n = ARRAY_SIZE(rbspi_spi_info);
722 else
723 spi_n = 1; /* only one device on bus0 */
724
725 rbspi_ath79_spi_data.num_chipselect = spi_n;
726 rbspi_ath79_spi_data.cs_gpios = rbspi_spi_cs_gpios;
727 ath79_register_spi(&rbspi_ath79_spi_data, rbspi_spi_info, spi_n);
728
729 if (flags & RBSPI_HAS_USB)
730 ath79_register_usb();
731
732 if (flags & RBSPI_HAS_PCI)
733 ath79_register_pci();
734 }
735
736 /*
737 * Common network init routine for all SPI NOR devices.
738 * Sets LAN/WAN/WLAN.
739 */
740 static void __init rbspi_network_setup(u32 flags, int gmac1_offset,
741 int wmac0_offset, int wmac1_offset)
742 {
743 /* for QCA953x that will init mdio1_device/data */
744 ath79_register_mdio(0, 0x0);
745 if (flags & RBSPI_HAS_MDIO1)
746 ath79_register_mdio(1, 0x0);
747
748 if (flags & RBSPI_HAS_WAN4) {
749 ath79_setup_ar934x_eth_cfg(0);
750
751 /* set switch to oper mode 1, PHY4 connected to CPU */
752 ath79_switch_data.phy4_mii_en = 1;
753 ath79_switch_data.phy_poll_mask |= BIT(4);
754
755 /* init GMAC0 connected to PHY4 at 100M */
756 ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
757 ath79_eth0_data.phy_mask = BIT(4);
758 ath79_init_mac(ath79_eth0_data.mac_addr, ath79_mac_base, 0);
759 ath79_register_eth(0);
760 } else {
761 /* set the SoC to SW_ONLY_MODE, which connects all PHYs
762 * to the internal switch.
763 * We hijack ath79_setup_ar934x_eth_cfg() to set the switch in
764 * the QCA953x, this works because this configuration bit is
765 * the same as the AR934x. There's no equivalent function for
766 * QCA953x for now. */
767 ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_SW_ONLY_MODE);
768 }
769
770 /* init GMAC1 */
771 ath79_init_mac(ath79_eth1_data.mac_addr, ath79_mac_base, gmac1_offset);
772 ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
773 ath79_register_eth(1);
774
775 if (flags & RBSPI_HAS_WLAN0)
776 rbspi_wlan_init(0, wmac0_offset);
777
778 if (flags & RBSPI_HAS_WLAN1)
779 rbspi_wlan_init(1, wmac1_offset);
780 }
781
782 static __init void rbspi_register_reset_button(int gpio)
783 {
784 rbspi_gpio_keys_reset[0].gpio = gpio;
785 ath79_register_gpio_keys_polled(-1, RBSPI_KEYS_POLL_INTERVAL,
786 ARRAY_SIZE(rbspi_gpio_keys_reset),
787 rbspi_gpio_keys_reset);
788 }
789
790 /*
791 * Init the mAP lite hardware (QCA953x).
792 * The mAP L-2nD (mAP lite) has a single ethernet port, connected to PHY0.
793 * Trying to use GMAC0 in direct mode was unsucessful, so we're
794 * using SW_ONLY_MODE, which connects PHY0 to MAC1 on the internal
795 * switch, which is connected to GMAC1 on the SoC. GMAC0 is unused.
796 */
797 static void __init rbmapl_setup(void)
798 {
799 u32 flags = RBSPI_HAS_WLAN0;
800
801 if (!rbspi_platform_setup())
802 return;
803
804 rbspi_peripherals_setup(flags);
805
806 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 1 */
807 rbspi_network_setup(flags, 0, 1, 0);
808
809 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbmapl_leds), rbmapl_leds);
810
811 /* mAP lite has a single reset button as gpio 16 */
812 rbspi_register_reset_button(RBMAPL_GPIO_BTN_RESET);
813
814 /* clear internal multiplexing */
815 ath79_gpio_output_select(RBMAPL_GPIO_LED_ETH, AR934X_GPIO_OUT_GPIO);
816 ath79_gpio_output_select(RBMAPL_GPIO_LED_POWER, AR934X_GPIO_OUT_GPIO);
817 }
818
819 /*
820 * Init the hAP lite hardware (QCA953x).
821 * The 941-2nD (hAP lite) has 4 ethernet ports, with port 2-4
822 * being assigned to LAN on the casing, and port 1 being assigned
823 * to "internet" (WAN) on the casing. Port 1 is connected to PHY3.
824 * Since WAN is neither PHY0 nor PHY4, we cannot use GMAC0 with this device.
825 */
826 static void __init rbhapl_setup(void)
827 {
828 u32 flags = RBSPI_HAS_WLAN0;
829
830 if (!rbspi_platform_setup())
831 return;
832
833 rbspi_peripherals_setup(flags);
834
835 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 4 */
836 rbspi_network_setup(flags, 0, 4, 0);
837
838 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbhapl_leds), rbhapl_leds);
839
840 /* hAP lite has a single reset button as gpio 16 */
841 rbspi_register_reset_button(RBHAPL_GPIO_BTN_RESET);
842 }
843
844 /*
845 * The hAP, hAP ac lite, hEX lite and hEX PoE lite share the same platform
846 */
847 static void __init rbspi_952_750r2_setup(u32 flags)
848 {
849 if (flags & RBSPI_HAS_SSR)
850 rbspi_spi_cs_gpios[1] = RB952_GPIO_SSR_CS;
851
852 rbspi_peripherals_setup(flags);
853
854 /*
855 * GMAC1 is HW MAC + 1, WLAN0 MAC IS HW MAC + 5 (hAP),
856 * WLAN1 MAC IS HW MAC + 6 (hAP ac lite)
857 */
858 rbspi_network_setup(flags, 1, 5, 6);
859
860 if (flags & RBSPI_HAS_USB)
861 gpio_request_one(RB952_GPIO_USB_PWROFF, GPIOF_ACTIVE_LOW |
862 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
863 "USB power off");
864
865 if (flags & RBSPI_HAS_POE)
866 gpio_request_one(RB952_GPIO_POE_POWER,
867 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
868 "POE power");
869
870 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb952_leds), rb952_leds);
871
872 /* These devices have a single reset button as gpio 16 */
873 rbspi_register_reset_button(RB952_GPIO_BTN_RESET);
874 }
875
876 /*
877 * Init the hAP (ac lite) hardware (QCA953x).
878 * The 951Ui-2nD (hAP) has 5 ethernet ports, with ports 2-5 being assigned
879 * to LAN on the casing, and port 1 being assigned to "internet" (WAN).
880 * Port 1 is connected to PHY4 (the ports are labelled in reverse physical
881 * number), so the SoC can be set to connect GMAC0 to PHY4 and GMAC1 to the
882 * internal switch for the LAN ports.
883 * The device also has USB, PoE output and an SSR used for LED multiplexing.
884 * The 952Ui-5ac2nD (hAP ac lite) is nearly identical to the hAP, it adds a
885 * QCA9887 5GHz radio via PCI and moves 2.4GHz from WLAN0 to WLAN1.
886 */
887 static void __init rb952_setup(void)
888 {
889 u32 flags = RBSPI_HAS_WAN4 | RBSPI_HAS_USB |
890 RBSPI_HAS_SSR | RBSPI_HAS_POE;
891
892 if (!rbspi_platform_setup())
893 return;
894
895 /* differentiate the hAP from the hAP ac lite */
896 if (strstr(mips_get_machine_name(), "952Ui-5ac2nD"))
897 flags |= RBSPI_HAS_WLAN1 | RBSPI_HAS_PCI;
898 else
899 flags |= RBSPI_HAS_WLAN0;
900
901 rbspi_952_750r2_setup(flags);
902 }
903
904 /*
905 * Init the hEX (PoE) lite hardware (QCA953x).
906 * The 750UP r2 (hEX PoE lite) is nearly identical to the hAP, only without
907 * WLAN. The 750 r2 (hEX lite) is nearly identical to the 750UP r2, only
908 * without USB and POE. The 750P Pbr2 (Powerbox) is nearly identical to hEX PoE
909 * lite, only without USB. It shares the same bootloader board identifier.
910 */
911 static void __init rb750upr2_setup(void)
912 {
913 u32 flags = RBSPI_HAS_WAN4 | RBSPI_HAS_SSR;
914
915 if (!rbspi_platform_setup())
916 return;
917
918 /* differentiate the hEX lite from the hEX PoE lite */
919 if (strstr(mips_get_machine_name(), "750UP r2"))
920 flags |= RBSPI_HAS_USB | RBSPI_HAS_POE;
921
922 /* differentiate the Powerbox from the hEX lite */
923 else if (strstr(mips_get_machine_name(), "750P r2"))
924 flags |= RBSPI_HAS_POE;
925
926 rbspi_952_750r2_setup(flags);
927 }
928
929 /*
930 * Init the hAP ac / 962UiGS-5HacT2HnT hardware (QCA9558).
931 * The hAP ac has 5 ethernet ports provided by an AR8337 switch. Port 1 is
932 * assigned to WAN, ports 2-5 are assigned to LAN. Port 0 is connected to the
933 * SoC, ports 1-5 of the switch are connected to physical ports 1-5 in order.
934 * The SFP cage is not assigned by default on RouterOS. Extra work is required
935 * to support this interface as it is directly connected to the SoC (eth1).
936 * Wireless is provided by a 2.4GHz radio on the SoC (WLAN1) and a 5GHz radio
937 * attached via PCI (QCA9880). Red and green WLAN LEDs are populated however
938 * they are not attached to GPIOs, extra work is required to support these.
939 * PoE and USB output power control is supported.
940 */
941 static void __init rb962_setup(void)
942 {
943 u32 flags = RBSPI_HAS_USB | RBSPI_HAS_POE | RBSPI_HAS_PCI;
944
945 if (!rbspi_platform_setup())
946 return;
947
948 rbspi_peripherals_setup(flags);
949
950 /* Do not call rbspi_network_setup as we have a discrete switch chip */
951 ath79_eth0_pll_data.pll_1000 = 0xae000000;
952 ath79_eth0_pll_data.pll_100 = 0xa0000101;
953 ath79_eth0_pll_data.pll_10 = 0xa0001313;
954
955 ath79_register_mdio(0, 0x0);
956 mdiobus_register_board_info(rb962_mdio0_info,
957 ARRAY_SIZE(rb962_mdio0_info));
958
959 ath79_setup_qca955x_eth_cfg(QCA955X_ETH_CFG_RGMII_EN);
960
961 ath79_init_mac(ath79_eth0_data.mac_addr, ath79_mac_base, 0);
962 ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
963 ath79_eth0_data.phy_mask = BIT(0);
964 ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
965 ath79_register_eth(0);
966
967 /* WLAN1 MAC is HW MAC + 7 */
968 rbspi_wlan_init(1, 7);
969
970 if (flags & RBSPI_HAS_USB)
971 gpio_request_one(RB962_GPIO_USB_PWROFF, GPIOF_ACTIVE_LOW |
972 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
973 "USB power off");
974
975 /* PoE output GPIO is inverted, set GPIOF_ACTIVE_LOW for consistency */
976 if (flags & RBSPI_HAS_POE)
977 gpio_request_one(RB962_GPIO_POE_POWER,
978 GPIOF_OUT_INIT_HIGH | GPIOF_ACTIVE_LOW |
979 GPIOF_EXPORT_DIR_FIXED,
980 "POE power");
981
982 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb962_leds_gpio),
983 rb962_leds_gpio);
984
985 /* This device has a single reset button as gpio 20 */
986 rbspi_register_reset_button(RB962_GPIO_BTN_RESET);
987 }
988
989 /*
990 * Init the LHG hardware (AR9344).
991 * The LHG 5nD has a single ethernet port connected to PHY0.
992 * Wireless is provided via 5GHz WLAN1.
993 */
994 static void __init rblhg_setup(void)
995 {
996 u32 flags = RBSPI_HAS_WLAN1 | RBSPI_HAS_MDIO1;
997
998 if (!rbspi_platform_setup())
999 return;
1000
1001 rbspi_peripherals_setup(flags);
1002
1003 /* GMAC1 is HW MAC, WLAN1 MAC is HW MAC + 1 */
1004 rbspi_network_setup(flags, 0, 0, 1);
1005
1006 ath79_register_leds_gpio(-1, ARRAY_SIZE(rblhg_leds), rblhg_leds);
1007
1008 rbspi_register_reset_button(RBLHG_GPIO_BTN_RESET);
1009 }
1010
1011 /*
1012 * Init the wAP hardware.
1013 * The wAP 2nD has a single ethernet port.
1014 */
1015 static void __init rbwap_setup(void)
1016 {
1017 u32 flags = RBSPI_HAS_WLAN0;
1018
1019 if (!rbspi_platform_setup())
1020 return;
1021
1022 rbspi_peripherals_setup(flags);
1023
1024 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 1 */
1025 rbspi_network_setup(flags, 0, 1, 0);
1026
1027 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbwap_leds), rbwap_leds);
1028
1029 /* wAP has a single reset button as GPIO 16 */
1030 rbspi_register_reset_button(RBWAP_GPIO_BTN_RESET);
1031 }
1032
1033 /*
1034 * Init the cAP hardware (EXPERIMENTAL).
1035 * The cAP 2nD has a single ethernet port, and a global LED switch.
1036 */
1037 static void __init rbcap_setup(void)
1038 {
1039 u32 flags = RBSPI_HAS_WLAN0;
1040
1041 if (!rbspi_platform_setup())
1042 return;
1043
1044 rbspi_peripherals_setup(flags);
1045
1046 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 1 */
1047 rbspi_network_setup(flags, 0, 1, 0);
1048
1049 gpio_request_one(RBCAP_GPIO_LED_ALL,
1050 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
1051 "LEDs enable");
1052
1053 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbcap_leds), rbcap_leds);
1054 }
1055
1056 /*
1057 * Init the mAP hardware.
1058 * The mAP 2nD has two ethernet ports, PoE output, SSR for LED
1059 * multiplexing and USB port.
1060 */
1061 static void __init rbmap_setup(void)
1062 {
1063 u32 flags = RBSPI_HAS_USB | RBSPI_HAS_WLAN0 |
1064 RBSPI_HAS_SSR | RBSPI_HAS_POE;
1065
1066 if (!rbspi_platform_setup())
1067 return;
1068
1069 rbspi_spi_cs_gpios[1] = RBMAP_GPIO_SSR_CS;
1070 rbspi_peripherals_setup(flags);
1071
1072 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 2 */
1073 rbspi_network_setup(flags, 0, 2, 0);
1074
1075 if (flags & RBSPI_HAS_POE)
1076 gpio_request_one(RBMAP_GPIO_POE_POWER,
1077 GPIOF_OUT_INIT_LOW | GPIOF_EXPORT_DIR_FIXED,
1078 "POE power");
1079
1080 if (flags & RBSPI_HAS_USB)
1081 gpio_request_one(RBMAP_GPIO_USB_PWROFF,
1082 GPIOF_OUT_INIT_HIGH | GPIOF_ACTIVE_LOW |
1083 GPIOF_EXPORT_DIR_FIXED,
1084 "USB power off");
1085
1086 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbmap_leds), rbmap_leds);
1087
1088 /* mAP 2nD has a single reset button as gpio 16 */
1089 rbspi_register_reset_button(RBMAP_GPIO_BTN_RESET);
1090 }
1091
1092 /*
1093 * Init the wAPGSC (RB wAPG-5HacT2HnD // wAP AC) hardware.
1094 * The wAPGSC has one Ethernet port via AR8033 with PoE input, dual radio (SoC
1095 * 2.4 GHz and external QCA9880) and a ZT2046Q temperature and voltage sensor
1096 * (currently not supported).
1097 */
1098 static void __init rbwapgsc_setup(void)
1099 {
1100 u32 flags = RBSPI_HAS_PCI;
1101
1102 if (!rbspi_platform_setup())
1103 return;
1104
1105 rbspi_peripherals_setup(flags);
1106
1107 platform_device_register(&rbwapgsc_phy_device);
1108
1109 ath79_init_mac(ath79_eth1_data.mac_addr, ath79_mac_base, 0);
1110 ath79_eth1_data.mii_bus_dev = &rbwapgsc_phy_device.dev;
1111 ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_SGMII;
1112 ath79_eth1_data.phy_mask = BIT(RBWAPGSC_MDIO_PHYADDR);
1113 ath79_eth1_pll_data.pll_1000 = 0x03000101;
1114 ath79_eth1_pll_data.pll_100 = 0x80000101;
1115 ath79_eth1_pll_data.pll_10 = 0x80001313;
1116 ath79_eth1_data.speed = SPEED_1000;
1117 ath79_eth1_data.duplex = DUPLEX_FULL;
1118 ath79_register_eth(1);
1119
1120 rbspi_wlan_init(1, 2);
1121
1122 rbspi_register_reset_button(RBWAPGSC_GPIO_BTN_RESET);
1123
1124 ath79_gpio_function_enable(QCA955X_GPIO_FUNC_JTAG_DISABLE|
1125 QCA955X_GPIO_REG_OUT_FUNC4|
1126 QCA955X_GPIO_REG_OUT_FUNC3);
1127
1128 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbwapgsc_leds),
1129 rbwapgsc_leds);
1130 }
1131
1132 /*
1133 * Setup the 911L hardware (AR9344).
1134 */
1135 static void __init rb911l_setup(void)
1136 {
1137 const struct rb_info *info;
1138
1139 info = rbspi_platform_setup();
1140 if (!info)
1141 return;
1142
1143 if (!rb_has_hw_option(info, RB_HW_OPT_NO_NAND)) {
1144 /*
1145 * Old hardware revisions might be equipped with a NAND flash
1146 * chip instead of the 16MiB SPI NOR device. Those boards are
1147 * not supported at the moment, so throw a warning and skip
1148 * the peripheral setup to avoid messing up the data in the
1149 * flash chip.
1150 */
1151 WARN(1, "The NAND flash on this board is not supported.\n");
1152 } else {
1153 rbspi_peripherals_setup(0);
1154 }
1155
1156 ath79_register_mdio(1, 0x0);
1157
1158 ath79_init_mac(ath79_eth1_data.mac_addr, ath79_mac_base, 0);
1159
1160 ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
1161 ath79_eth1_data.speed = SPEED_1000;
1162 ath79_eth1_data.duplex = DUPLEX_FULL;
1163
1164 ath79_register_eth(1);
1165
1166 rbspi_wlan_init(0, 1);
1167
1168 rbspi_register_reset_button(RB911L_GPIO_BTN_RESET);
1169
1170 /* Make the eth LED controllable by software. */
1171 ath79_gpio_output_select(RB911L_GPIO_LED_ETH, AR934X_GPIO_OUT_GPIO);
1172
1173 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb911l_leds), rb911l_leds);
1174 }
1175
1176 /*
1177 * Init the hAP mini hardware (QCA953x).
1178 * The 931-2nD (hAP mini) has 3 ethernet ports, with port 2-3
1179 * being assigned to LAN on the casing, and port 1 being assigned
1180 * to "internet" (WAN) on the casing. Port 1 is connected to PHY2.
1181 * Since WAN is neither PHY0 nor PHY4, we cannot use GMAC0 with this device.
1182 */
1183 static void __init rb931_setup(void)
1184 {
1185 u32 flags = RBSPI_HAS_WLAN0;
1186
1187 if (!rbspi_platform_setup())
1188 return;
1189
1190 rbspi_peripherals_setup(flags);
1191
1192 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 3 */
1193 rbspi_network_setup(flags, 0, 3, 0);
1194
1195 ath79_register_leds_gpio(-1, ARRAY_SIZE(rb931_leds), rb931_leds);
1196
1197 /* hAP mini has two buttons */
1198 ath79_register_gpio_keys_polled(-1, RBSPI_KEYS_POLL_INTERVAL,
1199 ARRAY_SIZE(rb931_gpio_keys),
1200 rb931_gpio_keys);
1201 }
1202
1203 /*
1204 * Init the wAP R hardware.
1205 * The wAP R-2nD has a single ethernet port and a mini PCIe slot.
1206 * The OEM source shows it has usb (used over PCIe for LTE devices),
1207 * and the 'control' GPIO is assumed to be an output pin not tied to an LED.
1208 */
1209 static void __init rbwapr_setup(void)
1210 {
1211 u32 flags = RBSPI_HAS_WLAN0 | RBSPI_HAS_USB | RBSPI_HAS_PCI;
1212
1213 if (!rbspi_platform_setup())
1214 return;
1215
1216 rbspi_peripherals_setup(flags);
1217
1218 /* GMAC1 is HW MAC, WLAN0 MAC is HW MAC + 1 */
1219 rbspi_network_setup(flags, 0, 1, 0);
1220
1221 ath79_register_leds_gpio(-1, ARRAY_SIZE(rbwapr_leds), rbwapr_leds);
1222
1223 gpio_request_one(RBWAPR_GPIO_PCIE_PWROFF, GPIOF_OUT_INIT_HIGH |
1224 GPIOF_ACTIVE_LOW | GPIOF_EXPORT_DIR_FIXED,
1225 "PCIE power off");
1226
1227 gpio_request_one(RBWAPR_GPIO_CONTROL, GPIOF_OUT_INIT_LOW |
1228 GPIOF_ACTIVE_LOW | GPIOF_EXPORT_DIR_FIXED,
1229 "control");
1230
1231 rbspi_register_reset_button(RBWAPR_GPIO_BTN_RESET);
1232 }
1233
1234 MIPS_MACHINE_NONAME(ATH79_MACH_RB_MAPL, "map-hb", rbmapl_setup);
1235 MIPS_MACHINE_NONAME(ATH79_MACH_RB_941, "H951L", rbhapl_setup);
1236 MIPS_MACHINE_NONAME(ATH79_MACH_RB_911L, "911L", rb911l_setup);
1237 MIPS_MACHINE_NONAME(ATH79_MACH_RB_952, "952-hb", rb952_setup);
1238 MIPS_MACHINE_NONAME(ATH79_MACH_RB_962, "962", rb962_setup);
1239 MIPS_MACHINE_NONAME(ATH79_MACH_RB_750UPR2, "750-hb", rb750upr2_setup);
1240 MIPS_MACHINE_NONAME(ATH79_MACH_RB_LHG5, "lhg", rblhg_setup);
1241 MIPS_MACHINE_NONAME(ATH79_MACH_RB_WAP, "wap-hb", rbwap_setup);
1242 MIPS_MACHINE_NONAME(ATH79_MACH_RB_WAPR, "wap-lte", rbwapr_setup);
1243 MIPS_MACHINE_NONAME(ATH79_MACH_RB_CAP, "cap-hb", rbcap_setup);
1244 MIPS_MACHINE_NONAME(ATH79_MACH_RB_MAP, "map2-hb", rbmap_setup);
1245 MIPS_MACHINE_NONAME(ATH79_MACH_RB_WAPAC, "wapg-sc", rbwapgsc_setup);
1246 MIPS_MACHINE_NONAME(ATH79_MACH_RB_931, "931", rb931_setup);