mac80211: reset ht_capab for each device
[openwrt.git] / package / kernel / mac80211 / files / lib / wifi / mac80211.sh
1 #!/bin/sh
2 append DRIVERS "mac80211"
3
4 lookup_phy() {
5         [ -n "$phy" ] && {
6                 [ -d /sys/class/ieee80211/$phy ] && return
7         }
8
9         local devpath
10         config_get devpath "$device" path
11         [ -n "$devpath" -a -d "/sys/devices/$devpath/ieee80211" ] && {
12                 phy="$(ls /sys/devices/$devpath/ieee80211 | grep -m 1 phy)"
13                 [ -n "$phy" ] && return
14         }
15
16         local macaddr="$(config_get "$device" macaddr | tr 'A-Z' 'a-z')"
17         [ -n "$macaddr" ] && {
18                 for _phy in $(ls /sys/class/ieee80211 2>/dev/null); do
19                         [ "$macaddr" = "$(cat /sys/class/ieee80211/${_phy}/macaddress)" ] || continue
20                         phy="$_phy"
21                         return
22                 done
23         }
24         phy=
25         return
26 }
27
28 find_mac80211_phy() {
29         local device="$1"
30
31         config_get phy "$device" phy
32         lookup_phy
33         [ -n "$phy" -a -d "/sys/class/ieee80211/$phy" ] || {
34                 echo "PHY for wifi device $1 not found"
35                 return 1
36         }
37         config_set "$device" phy "$phy"
38
39         config_get macaddr "$device" macaddr
40         [ -z "$macaddr" ] && {
41                 config_set "$device" macaddr "$(cat /sys/class/ieee80211/${phy}/macaddress)"
42         }
43
44         return 0
45 }
46
47 check_mac80211_device() {
48         config_get phy "$1" phy
49         [ -z "$phy" ] && {
50                 find_mac80211_phy "$1" >/dev/null || return 0
51                 config_get phy "$1" phy
52         }
53         [ "$phy" = "$dev" ] && found=1
54 }
55
56 detect_mac80211() {
57         devidx=0
58         config_load wireless
59         while :; do
60                 config_get type "radio$devidx" type
61                 [ -n "$type" ] || break
62                 devidx=$(($devidx + 1))
63         done
64         for dev in $(ls /sys/class/ieee80211); do
65                 found=0
66                 config_foreach check_mac80211_device wifi-device
67                 [ "$found" -gt 0 ] && continue
68
69                 mode_band="g"
70                 channel="11"
71                 htmode=""
72                 ht_capab=""
73
74                 iw phy "$dev" info | grep -q 'Capabilities:' && htmode=HT20
75                 iw phy "$dev" info | grep -q '2412 MHz' || { mode_band="a"; channel="36"; }
76
77                 vht_cap=$(iw phy "$dev" info | grep -c 'VHT Capabilities')
78                 [ "$vht_cap" -gt 0 ] && {
79                         mode_band="a";
80                         channel="36"
81                         htmode="VHT80"
82                 }
83
84                 [ -n $htmode ] && append ht_capab "     option htmode   $htmode" "$N"
85
86                 if [ -x /usr/bin/readlink ]; then
87                         path="$(readlink -f /sys/class/ieee80211/${dev}/device)"
88                         path="${path##/sys/devices/}"
89                         dev_id="        option path     '$path'"
90                 else
91                         dev_id="        option macaddr  $(cat /sys/class/ieee80211/${dev}/macaddress)"
92                 fi
93
94                 cat <<EOF
95 config wifi-device  radio$devidx
96         option type     mac80211
97         option channel  ${channel}
98         option hwmode   11${mode_band}
99 $dev_id
100 $ht_capab
101         # REMOVE THIS LINE TO ENABLE WIFI:
102         option disabled 1
103
104 config wifi-iface
105         option device   radio$devidx
106         option network  lan
107         option mode     ap
108         option ssid     OpenWrt
109         option encryption none
110
111 EOF
112         devidx=$(($devidx + 1))
113         done
114 }
115