ath79: add support for the TP-Link WBS210 v1
[oweals/openwrt.git] / target / linux / ath79 / generic / base-files / etc / board.d / 03_gpio_switches
1 #!/bin/sh
2 #
3 # Copyright (C) 2018 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults.sh
7
8 board_config_update
9
10 board=$(board_name)
11
12 case "$board" in
13 adtran,bsap1800-v2|\
14 adtran,bsap1840)
15         ucidef_add_gpio_switch "wifi1_ext_a" "5GHz External Antenna A" "489" "1"
16         ucidef_add_gpio_switch "wifi1_int_a" "5GHz Internal Antenna A" "493"
17         ucidef_add_gpio_switch "wifi1_ext_b" "5GHz External Antenna B" "494" "1"
18         ucidef_add_gpio_switch "wifi1_int_b" "5GHz Internal Antenna B" "495"
19         ucidef_add_gpio_switch "wifi1_ext_c" "5GHz External Antenna C" "496" "1"
20         ucidef_add_gpio_switch "wifi1_int_c" "5GHz Internal Antenna C" "497"
21         ucidef_add_gpio_switch "wifi0_ext_a" "2.4GHz External Antenna A" "505" "1"
22         ucidef_add_gpio_switch "wifi0_int_a" "2.4GHz Internal Antenna A" "506"
23         ucidef_add_gpio_switch "wifi0_ext_b" "2.4GHz External Antenna B" "507" "1"
24         ucidef_add_gpio_switch "wifi0_int_b" "2.4GHz Internal Antenna B" "508"
25         ucidef_add_gpio_switch "wifi0_ext_c" "2.4GHz External Antenna C" "509" "1"
26         ucidef_add_gpio_switch "wifi0_int_c" "2.4GHz Internal Antenna C" "510"
27         ;;
28 comfast,cf-e5)
29         ucidef_add_gpio_switch "lte_power" "LTE Power" "14" "1"
30         ucidef_add_gpio_switch "lte_wakeup" "LTE Wakeup" "11" "1"
31         ucidef_add_gpio_switch "lte_poweroff" "LTE Poweroff" "1" "1"
32         ucidef_add_gpio_switch "lte_reset" "LTE Reset" "12" "1"
33         ;;
34 devolo,magic-2-wifi)
35         ucidef_add_gpio_switch "plc_pairing" "PLC pairing" "11" "1"
36         ucidef_add_gpio_switch "plc_enable" "PLC enable" "13" "1"
37         ;;
38 dlink,dir-825-c1|\
39 dlink,dir-835-a1)
40         ucidef_add_gpio_switch "wan_led_auto" "WAN LED Auto" "20" "0"
41         ;;
42 librerouter,librerouter-v1)
43         ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "1" "0"
44         ;;
45 teltonika,rut955)
46         ucidef_add_gpio_switch "sim_sel" "SIM select" "503" "1"
47         ucidef_add_gpio_switch "DOUT1" "DOUT1 (OC)" "504" "0"
48         ucidef_add_gpio_switch "DOUT2" "DOUT2 (Relay)" "505" "0"
49         ucidef_add_gpio_switch "modem_vbus" "Modem enable" "506" "1"
50         ucidef_add_gpio_switch "modem_rst" "Modem reset" "507" "0"
51         ucidef_add_gpio_switch "DOUT3" "DOUT3" "508" "0"
52         ;;
53 teltonika,rut955-h7v3c0)
54         ucidef_add_gpio_switch "sim_sel" "SIM select" "503" "1"
55         ucidef_add_gpio_switch "DOUT1" "DOUT1 (OC)" "504" "0"
56         ucidef_add_gpio_switch "DOUT2" "DOUT2 (Relay)" "505" "0"
57         ucidef_add_gpio_switch "modem_vbus" "Modem enable" "508" "1"
58         ucidef_add_gpio_switch "modem_rst" "Modem reset" "509" "0"
59         ;;
60
61 tplink,archer-c25-v1)
62         ucidef_add_gpio_switch "led_control" "LED control" "21" "0"
63         ucidef_add_gpio_switch "led_reset" "LED reset" "19" "1"
64         ;;
65 tplink,cpe210-v1|\
66 tplink,cpe220-v2|\
67 tplink,cpe220-v3|\
68 tplink,cpe510-v1|\
69 tplink,wbs210-v1|\
70 tplink,wbs210-v2|\
71 tplink,wbs510-v1|\
72 tplink,wbs510-v2)
73         ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "20"
74         ;;
75 ubnt,nanostation-ac)
76         ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "3"
77         ;;
78 ubnt,nanostation-m)
79         ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "8"
80         ;;
81 ubnt,nanostation-m-xw)
82         ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "2"
83         ;;
84 ubnt,acb-isp)
85         ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "11"
86         ;;
87 zbtlink,zbt-wd323)
88         ucidef_add_gpio_switch "io0" "IO#0" "0"
89         ucidef_add_gpio_switch "io1" "IO#1" "1"
90         ucidef_add_gpio_switch "io2" "IO#2" "2"
91         ucidef_add_gpio_switch "io14" "IO#14" "14"
92         ;;
93 esac
94
95 board_config_flush
96
97 exit 0