|
@@ -10330,14 +10330,18 @@ static int nl80211_set_p2p_powersave(void *priv, int legacy_ps, int opp_ps,
|
|
|
}
|
|
|
|
|
|
|
|
|
-static int nl80211_start_radar_detection(void *priv, int freq)
|
|
|
+static int nl80211_start_radar_detection(void *priv,
|
|
|
+ struct hostapd_freq_params *freq)
|
|
|
{
|
|
|
struct i802_bss *bss = priv;
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
struct nl_msg *msg;
|
|
|
int ret;
|
|
|
|
|
|
- wpa_printf(MSG_DEBUG, "nl80211: Start radar detection (CAC)");
|
|
|
+ wpa_printf(MSG_DEBUG, "nl80211: Start radar detection (CAC) %d MHz (ht_enabled=%d, vht_enabled=%d, bandwidth=%d MHz, cf1=%d MHz, cf2=%d MHz)",
|
|
|
+ freq->freq, freq->ht_enabled, freq->vht_enabled,
|
|
|
+ freq->bandwidth, freq->center_freq1, freq->center_freq2);
|
|
|
+
|
|
|
if (!(drv->capa.flags & WPA_DRIVER_FLAGS_RADAR)) {
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Driver does not support radar "
|
|
|
"detection");
|
|
@@ -10350,10 +10354,53 @@ static int nl80211_start_radar_detection(void *priv, int freq)
|
|
|
|
|
|
nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_RADAR_DETECT);
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
- NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
|
|
|
|
|
|
- /* only HT20 is supported at this point */
|
|
|
- NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE, NL80211_CHAN_HT20);
|
|
|
+ if (freq->vht_enabled) {
|
|
|
+ switch (freq->bandwidth) {
|
|
|
+ case 20:
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
|
|
|
+ NL80211_CHAN_WIDTH_20);
|
|
|
+ break;
|
|
|
+ case 40:
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
|
|
|
+ NL80211_CHAN_WIDTH_40);
|
|
|
+ break;
|
|
|
+ case 80:
|
|
|
+ if (freq->center_freq2)
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
|
|
|
+ NL80211_CHAN_WIDTH_80P80);
|
|
|
+ else
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
|
|
|
+ NL80211_CHAN_WIDTH_80);
|
|
|
+ break;
|
|
|
+ case 160:
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
|
|
|
+ NL80211_CHAN_WIDTH_160);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
|
|
|
+ if (freq->center_freq2)
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
|
|
|
+ freq->center_freq2);
|
|
|
+ } else if (freq->ht_enabled) {
|
|
|
+ switch (freq->sec_channel_offset) {
|
|
|
+ case -1:
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
|
|
|
+ NL80211_CHAN_HT40MINUS);
|
|
|
+ break;
|
|
|
+ case 1:
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
|
|
|
+ NL80211_CHAN_HT40PLUS);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
|
|
|
+ NL80211_CHAN_HT20);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
if (ret == 0)
|