wireguard-tools: add tunlink option for hostroute
[openwrt/openwrt.git] / target / linux / ar71xx / files / arch / mips / ath79 / mach-tl-wr810n.c
1 /*
2 * TP-LINK TL-WR810N board support
3 *
4 * Copyright (c) 2012 Qualcomm Atheros
5 * Copyright (c) 2012 Gabor Juhos <juhosg@openwrt.org>
6 * Copyright (c) 2016 Jens Steinhauser <jens.steinhauser@gmail.com>
7 *
8 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 */
20
21 #include <linux/gpio.h>
22 #include <linux/platform_device.h>
23 #include <linux/ar8216_platform.h>
24
25 #include <asm/mach-ath79/ar71xx_regs.h>
26
27 #include "common.h"
28 #include "dev-gpio-buttons.h"
29 #include "dev-eth.h"
30 #include "dev-leds-gpio.h"
31 #include "dev-m25p80.h"
32 #include "dev-usb.h"
33 #include "dev-wmac.h"
34 #include "machtypes.h"
35
36 #define TL_WR810N_GPIO_SWITCH_B1 0
37 #define TL_WR810N_GPIO_SWITCH_B0 1
38 #define TL_WR810N_GPIO_USB_POWER 11
39 #define TL_WR810N_GPIO_BTN_RESET 12
40 #define TL_WR810N_GPIO_LED_SYSTEM 13
41
42 #define TL_WR810N_KEYS_POLL_INTERVAL 20 /* msecs */
43 #define TL_WR810N_KEYS_DEBOUNCE_INTERVAL (3 * TL_WR810N_KEYS_POLL_INTERVAL)
44
45 #define TL_WR810N_WMAC_CALDATA_OFFSET 0x1000
46
47 static const char *tl_wr810n_part_probes[] = {
48 "tp-link",
49 NULL,
50 };
51
52 static struct flash_platform_data tl_wr810n_flash_data = {
53 .part_probes = tl_wr810n_part_probes,
54 };
55
56 static struct gpio_led tl_wr810n_leds_gpio[] __initdata = {
57 {
58 .name = "tp-link:blue:system",
59 .gpio = TL_WR810N_GPIO_LED_SYSTEM,
60 .active_low = 1,
61 },
62 };
63
64 static struct gpio_keys_button tl_wr810n_gpio_keys[] __initdata = {
65 {
66 .desc = "reset",
67 .type = EV_KEY,
68 .code = KEY_RESTART,
69 .debounce_interval = TL_WR810N_KEYS_DEBOUNCE_INTERVAL,
70 .gpio = TL_WR810N_GPIO_BTN_RESET,
71 .active_low = 1,
72 },
73 {
74 .desc = "switch_b0",
75 .type = EV_SW,
76 .code = BTN_0,
77 .debounce_interval = TL_WR810N_KEYS_DEBOUNCE_INTERVAL,
78 .gpio = TL_WR810N_GPIO_SWITCH_B0,
79 .active_low = 0,
80 },
81 {
82 .desc = "switch_b1",
83 .type = EV_SW,
84 .code = BTN_1,
85 .debounce_interval = TL_WR810N_KEYS_DEBOUNCE_INTERVAL,
86 .gpio = TL_WR810N_GPIO_SWITCH_B1,
87 .active_low = 0,
88 },
89 };
90
91 static void __init tl_ap143_setup(int lan_mac_offset)
92 {
93 u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
94 u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
95
96 ath79_register_m25p80(&tl_wr810n_flash_data);
97
98 ath79_setup_ar933x_phy4_switch(false, false);
99
100 ath79_register_mdio(0, 0x0);
101
102 /* WAN */
103 ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
104 ath79_eth0_data.duplex = DUPLEX_FULL;
105 ath79_eth0_data.speed = SPEED_100;
106 ath79_eth0_data.phy_mask = BIT(4);
107 ath79_init_mac(ath79_eth0_data.mac_addr, mac, 1);
108 ath79_register_eth(0);
109
110 /* LAN */
111 ath79_switch_data.phy4_mii_en = 1;
112 ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
113 ath79_eth1_data.duplex = DUPLEX_FULL;
114 ath79_eth1_data.speed = SPEED_1000;
115 ath79_switch_data.phy_poll_mask |= BIT(4);
116 ath79_init_mac(ath79_eth1_data.mac_addr, mac, lan_mac_offset);
117 ath79_register_eth(1);
118
119 ath79_register_wmac(art + TL_WR810N_WMAC_CALDATA_OFFSET, mac);
120
121 ath79_register_leds_gpio(-1,
122 ARRAY_SIZE(tl_wr810n_leds_gpio),
123 tl_wr810n_leds_gpio);
124 ath79_register_gpio_keys_polled(-1,
125 TL_WR810N_KEYS_POLL_INTERVAL,
126 ARRAY_SIZE(tl_wr810n_gpio_keys),
127 tl_wr810n_gpio_keys);
128 }
129
130 static void __init tl_wr810n_setup(void)
131 {
132 tl_ap143_setup(-1);
133
134 gpio_request_one(TL_WR810N_GPIO_USB_POWER,
135 GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
136 "USB power");
137 ath79_register_usb();
138 }
139
140 static void __init tl_wr810n_v2_setup(void)
141 {
142 tl_ap143_setup(0);
143 }
144
145 MIPS_MACHINE(ATH79_MACH_TL_WR810N, "TL-WR810N", "TP-LINK TL-WR810N",
146 tl_wr810n_setup);
147
148 MIPS_MACHINE(ATH79_MACH_TL_WR810N_V2, "TL-WR810N-v2", "TP-LINK TL-WR810N v2",
149 tl_wr810n_v2_setup);