2009-08-07 22:22:35 +07:00
|
|
|
/*
|
|
|
|
* This file contains helper code to handle channel
|
|
|
|
* settings and keeping track of what is possible at
|
|
|
|
* any point in time.
|
|
|
|
*
|
|
|
|
* Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
|
|
|
|
*/
|
|
|
|
|
2011-11-30 22:56:32 +07:00
|
|
|
#include <linux/export.h>
|
2009-08-07 22:22:35 +07:00
|
|
|
#include <net/cfg80211.h>
|
|
|
|
#include "core.h"
|
|
|
|
|
2009-12-23 19:15:41 +07:00
|
|
|
struct ieee80211_channel *
|
|
|
|
rdev_freq_to_chan(struct cfg80211_registered_device *rdev,
|
2009-08-07 22:22:35 +07:00
|
|
|
int freq, enum nl80211_channel_type channel_type)
|
|
|
|
{
|
|
|
|
struct ieee80211_channel *chan;
|
|
|
|
struct ieee80211_sta_ht_cap *ht_cap;
|
|
|
|
|
|
|
|
chan = ieee80211_get_channel(&rdev->wiphy, freq);
|
|
|
|
|
|
|
|
/* Primary channel not allowed */
|
|
|
|
if (!chan || chan->flags & IEEE80211_CHAN_DISABLED)
|
2009-12-23 19:15:41 +07:00
|
|
|
return NULL;
|
2009-08-07 22:22:35 +07:00
|
|
|
|
|
|
|
if (channel_type == NL80211_CHAN_HT40MINUS &&
|
|
|
|
chan->flags & IEEE80211_CHAN_NO_HT40MINUS)
|
2009-12-23 19:15:41 +07:00
|
|
|
return NULL;
|
2009-08-07 22:22:35 +07:00
|
|
|
else if (channel_type == NL80211_CHAN_HT40PLUS &&
|
|
|
|
chan->flags & IEEE80211_CHAN_NO_HT40PLUS)
|
2009-12-23 19:15:41 +07:00
|
|
|
return NULL;
|
2009-08-07 22:22:35 +07:00
|
|
|
|
|
|
|
ht_cap = &rdev->wiphy.bands[chan->band]->ht_cap;
|
|
|
|
|
|
|
|
if (channel_type != NL80211_CHAN_NO_HT) {
|
|
|
|
if (!ht_cap->ht_supported)
|
2009-12-23 19:15:41 +07:00
|
|
|
return NULL;
|
2009-08-07 22:22:35 +07:00
|
|
|
|
2010-05-17 22:30:59 +07:00
|
|
|
if (channel_type != NL80211_CHAN_HT20 &&
|
|
|
|
(!(ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) ||
|
|
|
|
ht_cap->cap & IEEE80211_HT_CAP_40MHZ_INTOLERANT))
|
2009-12-23 19:15:41 +07:00
|
|
|
return NULL;
|
2009-08-07 22:22:35 +07:00
|
|
|
}
|
|
|
|
|
2009-12-23 19:15:41 +07:00
|
|
|
return chan;
|
|
|
|
}
|
|
|
|
|
2012-05-11 02:25:23 +07:00
|
|
|
bool cfg80211_can_beacon_sec_chan(struct wiphy *wiphy,
|
2011-11-30 22:56:32 +07:00
|
|
|
struct ieee80211_channel *chan,
|
|
|
|
enum nl80211_channel_type channel_type)
|
2010-11-13 07:31:23 +07:00
|
|
|
{
|
|
|
|
struct ieee80211_channel *sec_chan;
|
|
|
|
int diff;
|
|
|
|
|
|
|
|
switch (channel_type) {
|
|
|
|
case NL80211_CHAN_HT40PLUS:
|
|
|
|
diff = 20;
|
2010-11-18 04:34:37 +07:00
|
|
|
break;
|
2010-11-13 07:31:23 +07:00
|
|
|
case NL80211_CHAN_HT40MINUS:
|
|
|
|
diff = -20;
|
2010-11-18 04:34:37 +07:00
|
|
|
break;
|
2010-11-13 07:31:23 +07:00
|
|
|
default:
|
2012-05-17 04:50:17 +07:00
|
|
|
return true;
|
2010-11-13 07:31:23 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
sec_chan = ieee80211_get_channel(wiphy, chan->center_freq + diff);
|
|
|
|
if (!sec_chan)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* we'll need a DFS capability later */
|
|
|
|
if (sec_chan->flags & (IEEE80211_CHAN_DISABLED |
|
|
|
|
IEEE80211_CHAN_PASSIVE_SCAN |
|
|
|
|
IEEE80211_CHAN_NO_IBSS |
|
|
|
|
IEEE80211_CHAN_RADAR))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-11-30 22:56:32 +07:00
|
|
|
EXPORT_SYMBOL(cfg80211_can_beacon_sec_chan);
|
2010-11-13 07:31:23 +07:00
|
|
|
|
2012-06-06 13:18:22 +07:00
|
|
|
int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
|
|
|
|
int freq, enum nl80211_channel_type chantype)
|
2009-12-23 19:15:41 +07:00
|
|
|
{
|
|
|
|
struct ieee80211_channel *chan;
|
|
|
|
|
2012-06-06 13:18:22 +07:00
|
|
|
if (!rdev->ops->set_monitor_channel)
|
2009-12-23 19:15:41 +07:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2012-06-06 13:18:22 +07:00
|
|
|
chan = rdev_freq_to_chan(rdev, freq, chantype);
|
2009-12-23 19:15:41 +07:00
|
|
|
if (!chan)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2012-06-06 13:18:22 +07:00
|
|
|
return rdev->ops->set_monitor_channel(&rdev->wiphy, chan, chantype);
|
2009-08-07 22:22:35 +07:00
|
|
|
}
|