ath79: add support for tl-wr1043nd v2/v3
[openwrt/openwrt.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,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 "tplink,tl-mr3020-v1")
37 ucidef_set_interface_lan "eth0.1"
38 ucidef_add_switch "switch0" "0@eth0" "1:lan"
39 ;;
40 "tplink,tl-wdr3600"|\
41 "tplink,tl-wdr4300")
42 ucidef_add_switch "switch0" \
43 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
44 ;;
45
46 "tplink,tl-wr740n-v2")
47 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
48 ucidef_add_switch "switch0" \
49 "0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
50 ;;
51
52 "tplink,tl-wr1043nd-v1")
53 ucidef_add_switch "switch0" \
54 "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
55 ;;
56 "tplink,tl-wr1043nd-v4")
57 ucidef_add_switch "switch0" \
58 "0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan"
59 ;;
60 "tplink,tl-wr1043nd-v2"|\
61 "tplink,tl-wr1043nd-v3")
62 ucidef_set_interfaces_lan_wan "eth1.1" "eth0.2"
63 ucidef_add_switch "switch0" \
64 "0@eth1" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan" "6@eth0"
65 ;;
66 "netgear,wndr3800")
67 ucidef_set_interfaces_lan_wan "eth0" "eth1"
68 ucidef_add_switch "switch0" \
69 "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
70
71 ucidef_add_switch_attr "switch0" "blinkrate" 2
72 ucidef_add_switch_port_attr "switch0" 1 led 6
73 ucidef_add_switch_port_attr "switch0" 2 led 9
74 ucidef_add_switch_port_attr "switch0" 5 led 2
75 ;;
76 "buffalo,wzr-hp-g450h")
77 ucidef_add_switch "switch0" \
78 "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
79 ;;
80 "phicomm,k2t")
81 ucidef_add_switch "switch0" \
82 "0@eth0" "3:lan:1" "5:lan:2" "4:wan"
83 ;;
84 *)
85 ucidef_set_interfaces_lan_wan "eth0" "eth1"
86 ;;
87 esac
88 }
89
90 ath79_setup_macs()
91 {
92 local board="$1"
93
94 case "$board" in
95 avm,fritz300e)
96 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
97 ;;
98 phicomm,k2t)
99 lan_mac=$(k2t_get_mac "lan_mac")
100 wan_mac=$(k2t_get_mac "wan_mac")
101 ;;
102 esac
103
104 [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
105 [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
106 }
107
108 board_config_update
109 board=$(board_name)
110 ath79_setup_interfaces $board
111 ath79_setup_macs $board
112 board_config_flush
113
114 exit 0