dc3c9037d7eab396e45ce92b4e94a5babc789560
[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
73                 iw phy "$dev" info | grep -q 'Capabilities:' && htmode=HT20
74                 iw phy "$dev" info | grep -q '2412 MHz' || { mode_band="a"; channel="36"; }
75
76                 vht_cap=$(iw phy "$dev" info | grep -c 'VHT Capabilities')
77                 [ "$vht_cap" -gt 0 ] && {
78                         mode_band="a";
79                         channel="36"
80                         htmode="VHT80"
81                 }
82
83                 [ -n $htmode ] && append ht_capab "     option htmode   $htmode" "$N"
84
85                 if [ -x /usr/bin/readlink ]; then
86                         path="$(readlink -f /sys/class/ieee80211/${dev}/device)"
87                         path="${path##/sys/devices/}"
88                         dev_id="        option path     '$path'"
89                 else
90                         dev_id="        option macaddr  $(cat /sys/class/ieee80211/${dev}/macaddress)"
91                 fi
92
93                 cat <<EOF
94 config wifi-device  radio$devidx
95         option type     mac80211
96         option channel  ${channel}
97         option hwmode   11${mode_band}
98 $dev_id
99 $ht_capab
100         # REMOVE THIS LINE TO ENABLE WIFI:
101         option disabled 1
102
103 config wifi-iface
104         option device   radio$devidx
105         option network  lan
106         option mode     ap
107         option ssid     OpenWrt
108         option encryption none
109
110 EOF
111         devidx=$(($devidx + 1))
112         done
113 }
114