2013-11-13 06:11:33 +08:00
|
|
|
--- a/include/net/cfg80211.h
|
|
|
|
+++ b/include/net/cfg80211.h
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -2214,6 +2214,7 @@ struct cfg80211_qos_map {
|
2013-11-13 06:11:33 +08:00
|
|
|
* (as advertised by the nl80211 feature flag.)
|
|
|
|
* @get_tx_power: store the current TX power into the dbm variable;
|
|
|
|
* return 0 if successful
|
|
|
|
+ * @set_antenna_gain: set antenna gain to reduce maximum tx power if necessary
|
|
|
|
*
|
|
|
|
* @set_wds_peer: set the WDS peer for a WDS interface
|
|
|
|
*
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -2450,6 +2451,7 @@ struct cfg80211_ops {
|
2013-11-13 06:11:33 +08:00
|
|
|
enum nl80211_tx_power_setting type, int mbm);
|
|
|
|
int (*get_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
|
|
|
|
int *dbm);
|
|
|
|
+ int (*set_antenna_gain)(struct wiphy *wiphy, int dbi);
|
|
|
|
|
|
|
|
int (*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
|
|
|
|
const u8 *addr);
|
2012-09-29 02:29:09 +08:00
|
|
|
--- a/include/net/mac80211.h
|
|
|
|
+++ b/include/net/mac80211.h
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -1075,6 +1075,7 @@ enum ieee80211_smps_mode {
|
2012-09-29 02:29:09 +08:00
|
|
|
*
|
2012-12-08 00:46:04 +08:00
|
|
|
* @power_level: requested transmit power (in dBm), backward compatibility
|
|
|
|
* value only that is set to the minimum of all interfaces
|
2012-09-29 02:29:09 +08:00
|
|
|
+ * @max_antenna_gain: maximum antenna gain adjusted by user config (in dBi)
|
|
|
|
*
|
2013-04-26 18:52:03 +08:00
|
|
|
* @chandef: the channel definition to tune to
|
|
|
|
* @radar_enabled: whether radar detection is enabled
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -1096,6 +1097,7 @@ struct ieee80211_conf {
|
2012-09-29 02:29:09 +08:00
|
|
|
u32 flags;
|
|
|
|
int power_level, dynamic_ps_timeout;
|
|
|
|
int max_sleep_period;
|
|
|
|
+ int max_antenna_gain;
|
|
|
|
|
|
|
|
u16 listen_interval;
|
|
|
|
u8 ps_dtim_period;
|
2012-12-08 00:46:04 +08:00
|
|
|
--- a/include/uapi/linux/nl80211.h
|
|
|
|
+++ b/include/uapi/linux/nl80211.h
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -1638,6 +1638,9 @@ enum nl80211_commands {
|
|
|
|
* @NL80211_ATTR_SMPS_MODE: SMPS mode to use (ap mode). see
|
|
|
|
* &enum nl80211_smps_mode.
|
2013-09-08 17:38:38 +08:00
|
|
|
*
|
|
|
|
+ * @NL80211_ATTR_WIPHY_ANTENNA_GAIN: Configured antenna gain. Used to reduce
|
2013-11-13 06:11:33 +08:00
|
|
|
+ * transmit power to stay within regulatory limits. u32, dBi.
|
2013-09-08 17:38:38 +08:00
|
|
|
+ *
|
|
|
|
* @NL80211_ATTR_MAX: highest attribute number currently defined
|
|
|
|
* @__NL80211_ATTR_AFTER_LAST: internal use
|
|
|
|
*/
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -1990,6 +1993,8 @@ enum nl80211_attrs {
|
|
|
|
|
|
|
|
NL80211_ATTR_SMPS_MODE,
|
2012-09-29 02:29:09 +08:00
|
|
|
|
|
|
|
+ NL80211_ATTR_WIPHY_ANTENNA_GAIN,
|
|
|
|
+
|
|
|
|
/* add attributes here, update the policy in nl80211.c */
|
|
|
|
|
|
|
|
__NL80211_ATTR_AFTER_LAST,
|
|
|
|
--- a/net/mac80211/cfg.c
|
|
|
|
+++ b/net/mac80211/cfg.c
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -2091,6 +2091,19 @@ static int ieee80211_get_tx_power(struct
|
2012-09-29 02:29:09 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
+static int ieee80211_set_antenna_gain(struct wiphy *wiphy, int dbi)
|
|
|
|
+{
|
|
|
|
+ struct ieee80211_local *local = wiphy_priv(wiphy);
|
|
|
|
+
|
|
|
|
+ if (dbi < 0)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ local->user_antenna_gain = dbi;
|
|
|
|
+ ieee80211_hw_config(local, 0);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
|
|
|
|
const u8 *addr)
|
|
|
|
{
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -3572,6 +3585,7 @@ const struct cfg80211_ops mac80211_confi
|
2012-09-29 02:29:09 +08:00
|
|
|
.set_wiphy_params = ieee80211_set_wiphy_params,
|
|
|
|
.set_tx_power = ieee80211_set_tx_power,
|
|
|
|
.get_tx_power = ieee80211_get_tx_power,
|
|
|
|
+ .set_antenna_gain = ieee80211_set_antenna_gain,
|
|
|
|
.set_wds_peer = ieee80211_set_wds_peer,
|
|
|
|
.rfkill_poll = ieee80211_rfkill_poll,
|
|
|
|
CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
|
2013-11-13 06:11:33 +08:00
|
|
|
--- a/net/mac80211/ieee80211_i.h
|
|
|
|
+++ b/net/mac80211/ieee80211_i.h
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -1280,6 +1280,7 @@ struct ieee80211_local {
|
2013-11-13 06:11:33 +08:00
|
|
|
int dynamic_ps_forced_timeout;
|
|
|
|
|
|
|
|
int user_power_level; /* in dBm, for all interfaces */
|
|
|
|
+ int user_antenna_gain; /* in dBi */
|
|
|
|
|
|
|
|
enum ieee80211_smps_mode smps_mode;
|
2012-09-29 02:29:09 +08:00
|
|
|
|
2012-12-08 00:46:04 +08:00
|
|
|
--- a/net/mac80211/main.c
|
|
|
|
+++ b/net/mac80211/main.c
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -98,7 +98,7 @@ static u32 ieee80211_hw_conf_chan(struct
|
2013-11-13 06:11:33 +08:00
|
|
|
struct ieee80211_sub_if_data *sdata;
|
2013-04-26 18:52:03 +08:00
|
|
|
struct cfg80211_chan_def chandef = {};
|
2012-12-08 00:46:04 +08:00
|
|
|
u32 changed = 0;
|
2013-11-13 06:11:33 +08:00
|
|
|
- int power;
|
2014-04-09 06:11:23 +08:00
|
|
|
+ int power, max_power;
|
2012-12-08 00:46:04 +08:00
|
|
|
u32 offchannel_flag;
|
2013-04-26 18:52:03 +08:00
|
|
|
|
|
|
|
offchannel_flag = local->hw.conf.flags & IEEE80211_CONF_OFFCHANNEL;
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -155,6 +155,12 @@ static u32 ieee80211_hw_conf_chan(struct
|
2013-11-13 06:11:33 +08:00
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
2012-12-08 00:46:04 +08:00
|
|
|
|
2013-04-26 18:52:03 +08:00
|
|
|
+ max_power = chandef.chan->max_reg_power;
|
2012-12-08 00:46:04 +08:00
|
|
|
+ if (local->user_antenna_gain > 0) {
|
2014-04-09 06:11:23 +08:00
|
|
|
+ max_power -= local->user_antenna_gain;
|
2012-12-10 21:51:09 +08:00
|
|
|
+ power = min(power, max_power);
|
2012-12-08 00:46:04 +08:00
|
|
|
+ }
|
|
|
|
+
|
2014-04-09 06:11:23 +08:00
|
|
|
if (local->hw.conf.power_level != power) {
|
2012-12-08 00:46:04 +08:00
|
|
|
changed |= IEEE80211_CONF_CHANGE_POWER;
|
|
|
|
local->hw.cur_power_level = power;
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -586,6 +592,7 @@ struct ieee80211_hw *ieee80211_alloc_hw(
|
2012-12-08 00:46:04 +08:00
|
|
|
IEEE80211_RADIOTAP_MCS_HAVE_BW;
|
|
|
|
local->hw.radiotap_vht_details = IEEE80211_RADIOTAP_VHT_KNOWN_GI |
|
|
|
|
IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH;
|
|
|
|
+ local->user_antenna_gain = 0;
|
2013-04-26 18:52:03 +08:00
|
|
|
local->hw.uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES;
|
|
|
|
local->hw.uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN;
|
2012-12-08 00:46:04 +08:00
|
|
|
local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
|
2013-11-13 06:11:33 +08:00
|
|
|
--- a/net/wireless/nl80211.c
|
|
|
|
+++ b/net/wireless/nl80211.c
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -395,6 +395,7 @@ static const struct nla_policy nl80211_p
|
|
|
|
[NL80211_ATTR_USER_PRIO] = { .type = NLA_U8 },
|
|
|
|
[NL80211_ATTR_ADMITTED_TIME] = { .type = NLA_U16 },
|
|
|
|
[NL80211_ATTR_SMPS_MODE] = { .type = NLA_U8 },
|
2013-11-13 06:11:33 +08:00
|
|
|
+ [NL80211_ATTR_WIPHY_ANTENNA_GAIN] = { .type = NLA_U32 },
|
|
|
|
};
|
|
|
|
|
|
|
|
/* policy for the key attributes */
|
2014-09-28 04:51:43 +08:00
|
|
|
@@ -2179,6 +2180,20 @@ static int nl80211_set_wiphy(struct sk_b
|
2014-04-06 18:41:23 +08:00
|
|
|
return result;
|
2013-11-13 06:11:33 +08:00
|
|
|
}
|
2014-04-06 18:41:23 +08:00
|
|
|
|
2013-11-13 06:11:33 +08:00
|
|
|
+ if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_GAIN]) {
|
|
|
|
+ int idx, dbi = 0;
|
|
|
|
+
|
2014-04-06 18:41:23 +08:00
|
|
|
+ if (!rdev->ops->set_antenna_gain)
|
|
|
|
+ return -EOPNOTSUPP;
|
2013-11-13 06:11:33 +08:00
|
|
|
+
|
|
|
|
+ idx = NL80211_ATTR_WIPHY_ANTENNA_GAIN;
|
|
|
|
+ dbi = nla_get_u32(info->attrs[idx]);
|
|
|
|
+
|
|
|
|
+ result = rdev->ops->set_antenna_gain(&rdev->wiphy, dbi);
|
|
|
|
+ if (result)
|
2014-04-06 18:41:23 +08:00
|
|
|
+ return result;
|
2013-11-13 06:11:33 +08:00
|
|
|
+ }
|
2014-04-06 18:41:23 +08:00
|
|
|
+
|
2013-11-13 06:11:33 +08:00
|
|
|
if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
|
|
|
|
info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
|
2014-04-06 18:41:23 +08:00
|
|
|
u32 tx_ant, rx_ant;
|