Commit 27894448 authored by Sergey Matyukevich's avatar Sergey Matyukevich Committed by Kalle Valo

qtnfmac: implement reporting current channel

Implement current channel reporting functionality. Current operating
channel can be obtained either directly using cfg80211 get_channel
callback or from stats reported by cfg80211 survey_dump callback.
Signed-off-by: default avatarIgor Mitsyanko <igor.mitsyanko.os@quantenna.com>
Signed-off-by: default avatarSergey Matyukevich <sergey.matyukevich.os@quantenna.com>
Signed-off-by: default avatarAvinash Patil <avinashp@quantenna.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 7c04b439
...@@ -593,6 +593,7 @@ qtnf_connect(struct wiphy *wiphy, struct net_device *dev, ...@@ -593,6 +593,7 @@ qtnf_connect(struct wiphy *wiphy, struct net_device *dev,
struct cfg80211_connect_params *sme) struct cfg80211_connect_params *sme)
{ {
struct qtnf_vif *vif = qtnf_netdev_get_priv(dev); struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
struct cfg80211_chan_def chandef;
struct qtnf_bss_config *bss_cfg; struct qtnf_bss_config *bss_cfg;
int ret; int ret;
...@@ -605,9 +606,20 @@ qtnf_connect(struct wiphy *wiphy, struct net_device *dev, ...@@ -605,9 +606,20 @@ qtnf_connect(struct wiphy *wiphy, struct net_device *dev,
bss_cfg = &vif->bss_cfg; bss_cfg = &vif->bss_cfg;
memset(bss_cfg, 0, sizeof(*bss_cfg)); memset(bss_cfg, 0, sizeof(*bss_cfg));
if (sme->channel) {
/* FIXME: need to set proper nl80211_channel_type value */
cfg80211_chandef_create(&chandef, sme->channel,
NL80211_CHAN_HT20);
/* fall-back to minimal safe chandef description */
if (!cfg80211_chandef_valid(&chandef))
cfg80211_chandef_create(&chandef, sme->channel,
NL80211_CHAN_HT20);
memcpy(&bss_cfg->chandef, &chandef, sizeof(bss_cfg->chandef));
}
bss_cfg->ssid_len = sme->ssid_len; bss_cfg->ssid_len = sme->ssid_len;
memcpy(&bss_cfg->ssid, sme->ssid, bss_cfg->ssid_len); memcpy(&bss_cfg->ssid, sme->ssid, bss_cfg->ssid_len);
bss_cfg->chandef.chan = sme->channel;
bss_cfg->auth_type = sme->auth_type; bss_cfg->auth_type = sme->auth_type;
bss_cfg->privacy = sme->privacy; bss_cfg->privacy = sme->privacy;
bss_cfg->mfp = sme->mfp; bss_cfg->mfp = sme->mfp;
...@@ -683,10 +695,15 @@ qtnf_dump_survey(struct wiphy *wiphy, struct net_device *dev, ...@@ -683,10 +695,15 @@ qtnf_dump_survey(struct wiphy *wiphy, struct net_device *dev,
{ {
struct qtnf_wmac *mac = wiphy_priv(wiphy); struct qtnf_wmac *mac = wiphy_priv(wiphy);
struct ieee80211_supported_band *sband; struct ieee80211_supported_band *sband;
struct cfg80211_chan_def *bss_chandef;
struct ieee80211_channel *chan; struct ieee80211_channel *chan;
struct qtnf_chan_stats stats; struct qtnf_chan_stats stats;
struct qtnf_vif *vif;
int ret; int ret;
vif = qtnf_netdev_get_priv(dev);
bss_chandef = &vif->bss_cfg.chandef;
sband = wiphy->bands[NL80211_BAND_2GHZ]; sband = wiphy->bands[NL80211_BAND_2GHZ];
if (sband && idx >= sband->n_channels) { if (sband && idx >= sband->n_channels) {
idx -= sband->n_channels; idx -= sband->n_channels;
...@@ -705,6 +722,10 @@ qtnf_dump_survey(struct wiphy *wiphy, struct net_device *dev, ...@@ -705,6 +722,10 @@ qtnf_dump_survey(struct wiphy *wiphy, struct net_device *dev,
survey->channel = chan; survey->channel = chan;
survey->filled = 0x0; survey->filled = 0x0;
if (bss_chandef->chan)
if (chan->hw_value == bss_chandef->chan->hw_value)
survey->filled |= SURVEY_INFO_IN_USE;
ret = qtnf_cmd_get_chan_stats(mac, chan->hw_value, &stats); ret = qtnf_cmd_get_chan_stats(mac, chan->hw_value, &stats);
switch (ret) { switch (ret) {
case 0: case 0:
...@@ -743,6 +764,42 @@ qtnf_dump_survey(struct wiphy *wiphy, struct net_device *dev, ...@@ -743,6 +764,42 @@ qtnf_dump_survey(struct wiphy *wiphy, struct net_device *dev,
return ret; return ret;
} }
static int
qtnf_get_channel(struct wiphy *wiphy, struct wireless_dev *wdev,
struct cfg80211_chan_def *chandef)
{
struct net_device *ndev = wdev->netdev;
struct qtnf_bss_config *bss_cfg;
struct qtnf_vif *vif;
if (!ndev)
return -ENODEV;
vif = qtnf_netdev_get_priv(wdev->netdev);
bss_cfg = &vif->bss_cfg;
switch (vif->wdev.iftype) {
case NL80211_IFTYPE_STATION:
if (vif->sta_state == QTNF_STA_DISCONNECTED) {
pr_warn("%s: STA disconnected\n", ndev->name);
return -ENODATA;
}
break;
case NL80211_IFTYPE_AP:
if (!(vif->bss_status & QTNF_STATE_AP_START)) {
pr_warn("%s: AP not started\n", ndev->name);
return -ENODATA;
}
break;
default:
pr_err("unsupported vif type (%d)\n", vif->wdev.iftype);
return -ENODATA;
}
memcpy(chandef, &bss_cfg->chandef, sizeof(*chandef));
return 0;
}
static struct cfg80211_ops qtn_cfg80211_ops = { static struct cfg80211_ops qtn_cfg80211_ops = {
.add_virtual_intf = qtnf_add_virtual_intf, .add_virtual_intf = qtnf_add_virtual_intf,
.change_virtual_intf = qtnf_change_virtual_intf, .change_virtual_intf = qtnf_change_virtual_intf,
...@@ -764,7 +821,8 @@ static struct cfg80211_ops qtn_cfg80211_ops = { ...@@ -764,7 +821,8 @@ static struct cfg80211_ops qtn_cfg80211_ops = {
.scan = qtnf_scan, .scan = qtnf_scan,
.connect = qtnf_connect, .connect = qtnf_connect,
.disconnect = qtnf_disconnect, .disconnect = qtnf_disconnect,
.dump_survey = qtnf_dump_survey .dump_survey = qtnf_dump_survey,
.get_channel = qtnf_get_channel
}; };
static void qtnf_cfg80211_reg_notifier(struct wiphy *wiphy_in, static void qtnf_cfg80211_reg_notifier(struct wiphy *wiphy_in,
......
...@@ -2036,7 +2036,7 @@ int qtnf_cmd_send_connect(struct qtnf_vif *vif, ...@@ -2036,7 +2036,7 @@ int qtnf_cmd_send_connect(struct qtnf_vif *vif,
ether_addr_copy(cmd->bssid, bss_cfg->bssid); ether_addr_copy(cmd->bssid, bss_cfg->bssid);
if (bss_cfg->chandef.chan) if (bss_cfg->chandef.chan)
cmd->freq = cpu_to_le16(bss_cfg->chandef.chan->center_freq); cmd->channel = cpu_to_le16(bss_cfg->chandef.chan->hw_value);
cmd->bg_scan_period = cpu_to_le16(bss_cfg->bg_scan_period); cmd->bg_scan_period = cpu_to_le16(bss_cfg->bg_scan_period);
......
...@@ -384,7 +384,7 @@ enum qlink_sta_connect_flags { ...@@ -384,7 +384,7 @@ enum qlink_sta_connect_flags {
struct qlink_cmd_connect { struct qlink_cmd_connect {
struct qlink_cmd chdr; struct qlink_cmd chdr;
__le32 flags; __le32 flags;
__le16 freq; __le16 channel;
__le16 bg_scan_period; __le16 bg_scan_period;
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
u8 payload[0]; u8 payload[0];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment