ath79: add support for more AR7241 TP-Link boards
[openwrt/staging/wigyori.git] / target / linux / ath79 / base-files / etc / board.d / 02_network
1 #!/bin/sh
2
3 . /lib/functions/system.sh
4 . /lib/functions/uci-defaults.sh
5 . /lib/functions/k2t.sh
6
7 ath79_setup_interfaces()
8 {
9 local board="$1"
10
11 case "$board" in
12 "etactica,eg200")
13 ucidef_set_interface_lan "eth0" "dhcp"
14 ;;
15 "avm,fritz300e"|\
16 "tplink,tl-mr10u"|\
17 "tplink,tl-wr703n"|\
18 "ubnt,unifiac-lite"|\
19 "ubnt,unifi")
20 ucidef_set_interface_lan "eth0"
21 ;;
22
23 "embeddedwireless,dorin")
24 ucidef_add_switch "switch0" \
25 "0@eth0" "1:wan" "2:lan:3" "3:lan:2"
26 ;;
27
28 "glinet,ar150")
29 ucidef_set_interfaces_lan_wan "eth1" "eth0"
30 ;;
31
32 "glinet,ar300m")
33 ucidef_set_interfaces_lan_wan "eth1" "eth0"
34 ;;
35
36 "netgear,wnr612-v2"|\
37 "on,n150r")
38 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
39 ucidef_add_switch "switch0" \
40 "0@eth1" "1:lan" "2:lan" "3:lan:3" "4:lan:4"
41 ;;
42
43 "tplink,tl-archer-c7-v2")
44 ucidef_set_interfaces_lan_wan "eth1.1" "eth0.2"
45 ucidef_add_switch "switch0" \
46 "0@eth1" "2:lan" "3:lan" "4:lan" "5:lan" "6@eth0" "1:wan"
47 ;;
48
49 "tplink,tl-mr3020-v1")
50 ucidef_set_interface_lan "eth0.1"
51 ucidef_add_switch "switch0" "0@eth0" "1:lan"
52 ;;
53 "tplink,tl-mr3220-v1"|\
54 "tplink,tl-mr3420-v1"|\
55 "tplink,tl-wr841-v7")
56 ucidef_set_interface_wan "eth0"
57 ucidef_add_switch "switch0" \
58 "0@eth1" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1"
59 ;;
60 "tplink,tl-wdr3600"|\
61 "tplink,tl-wdr4300")
62 ucidef_add_switch "switch0" \
63 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
64 ;;
65
66 "tplink,tl-wr740n-v2")
67 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
68 ucidef_add_switch "switch0" \
69 "0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
70 ;;
71
72 "tplink,tl-wr1043nd-v1")
73 ucidef_add_switch "switch0" \
74 "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
75 ;;
76 "tplink,tl-wr1043nd-v4")
77 ucidef_add_switch "switch0" \
78 "0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan"
79 ;;
80 "tplink,tl-wr1043nd-v2"|\
81 "tplink,tl-wr1043nd-v3")
82 ucidef_set_interfaces_lan_wan "eth1.1" "eth0.2"
83 ucidef_add_switch "switch0" \
84 "0@eth1" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan" "6@eth0"
85 ;;
86 "tplink,tl-wr2543-v1")
87 ucidef_add_switch "switch0" \
88 "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "9@eth0"
89 ;;
90 "netgear,wndr3800")
91 ucidef_set_interfaces_lan_wan "eth0" "eth1"
92 ucidef_add_switch "switch0" \
93 "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
94
95 ucidef_add_switch_attr "switch0" "blinkrate" 2
96 ucidef_add_switch_port_attr "switch0" 1 led 6
97 ucidef_add_switch_port_attr "switch0" 2 led 9
98 ucidef_add_switch_port_attr "switch0" 5 led 2
99 ;;
100 "buffalo,wzr-hp-g450h")
101 ucidef_add_switch "switch0" \
102 "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
103 ;;
104 "phicomm,k2t")
105 ucidef_add_switch "switch0" \
106 "0@eth0" "3:lan:1" "5:lan:2" "4:wan"
107 ;;
108 "ubnt,unifiac-pro")
109 ucidef_add_switch "switch0" \
110 "0@eth0" "2:lan" "3:wan"
111 ;;
112 *)
113 ucidef_set_interfaces_lan_wan "eth0" "eth1"
114 ;;
115 esac
116 }
117
118 ath79_setup_macs()
119 {
120 local board="$1"
121
122 case "$board" in
123 avm,fritz300e)
124 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
125 ;;
126 phicomm,k2t)
127 lan_mac=$(k2t_get_mac "lan_mac")
128 wan_mac=$(k2t_get_mac "wan_mac")
129 ;;
130 "tplink,tl-wr1043nd-v4")
131 base_mac=$(mtd_get_mac_binary product-info 8)
132 wan_mac=$(macaddr_add "$base_mac" 1)
133 ;;
134 esac
135
136 [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
137 [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
138 }
139
140 board_config_update
141 board=$(board_name)
142 ath79_setup_interfaces $board
143 ath79_setup_macs $board
144 board_config_flush
145
146 exit 0