2009-10-02 22:02:37 +00:00
|
|
|
--- a/drivers/net/wireless/ath/regd.c
|
|
|
|
+++ b/drivers/net/wireless/ath/regd.c
|
2017-03-22 19:24:32 +00:00
|
|
|
@@ -24,6 +24,7 @@
|
|
|
|
#include "regd_common.h"
|
|
|
|
|
|
|
|
static int __ath_regd_init(struct ath_regulatory *reg);
|
|
|
|
+static struct reg_dmn_pair_mapping *ath_get_regpair(int regdmn);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a set of common rules used by our world regulatory domains.
|
|
|
|
@@ -116,6 +117,9 @@ static const struct ieee80211_regdomain
|
2016-10-24 06:58:46 +00:00
|
|
|
|
|
|
|
static bool dynamic_country_user_possible(struct ath_regulatory *reg)
|
|
|
|
{
|
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
+ return true;
|
|
|
|
+
|
|
|
|
if (IS_ENABLED(CPTCFG_ATH_REG_DYNAMIC_USER_CERT_TESTING))
|
|
|
|
return true;
|
|
|
|
|
2017-03-22 19:24:32 +00:00
|
|
|
@@ -188,6 +192,8 @@ static bool dynamic_country_user_possibl
|
2016-10-24 06:58:46 +00:00
|
|
|
|
|
|
|
static bool ath_reg_dyn_country_user_allow(struct ath_regulatory *reg)
|
|
|
|
{
|
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
+ return true;
|
|
|
|
if (!IS_ENABLED(CPTCFG_ATH_REG_DYNAMIC_USER_REG_HINTS))
|
|
|
|
return false;
|
|
|
|
if (!dynamic_country_user_possible(reg))
|
2017-08-22 21:59:48 +00:00
|
|
|
@@ -345,6 +351,9 @@ ath_reg_apply_beaconing_flags(struct wip
|
2013-01-09 12:45:28 +00:00
|
|
|
struct ieee80211_channel *ch;
|
|
|
|
unsigned int i;
|
2009-10-02 22:02:37 +00:00
|
|
|
|
2016-10-24 06:58:46 +00:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
+ return;
|
2010-10-19 21:49:42 +00:00
|
|
|
+
|
2016-05-14 15:38:56 +00:00
|
|
|
for (band = 0; band < NUM_NL80211_BANDS; band++) {
|
2010-10-19 21:49:42 +00:00
|
|
|
if (!wiphy->bands[band])
|
2014-01-30 13:21:36 +00:00
|
|
|
continue;
|
2017-08-22 21:59:48 +00:00
|
|
|
@@ -378,6 +387,9 @@ ath_reg_apply_ir_flags(struct wiphy *wip
|
2014-01-30 13:21:36 +00:00
|
|
|
{
|
|
|
|
struct ieee80211_supported_band *sband;
|
2009-10-02 22:02:37 +00:00
|
|
|
|
2016-10-24 06:58:46 +00:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
+ return;
|
2009-10-02 22:02:37 +00:00
|
|
|
+
|
2016-05-14 15:38:56 +00:00
|
|
|
sband = wiphy->bands[NL80211_BAND_2GHZ];
|
2011-11-18 11:27:19 +00:00
|
|
|
if (!sband)
|
|
|
|
return;
|
2017-08-22 21:59:48 +00:00
|
|
|
@@ -407,6 +419,9 @@ static void ath_reg_apply_radar_flags(st
|
2010-10-19 21:49:42 +00:00
|
|
|
struct ieee80211_channel *ch;
|
|
|
|
unsigned int i;
|
|
|
|
|
2016-10-24 06:58:46 +00:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
+ return;
|
2009-10-02 22:02:37 +00:00
|
|
|
+
|
2016-05-14 15:38:56 +00:00
|
|
|
if (!wiphy->bands[NL80211_BAND_5GHZ])
|
2010-10-19 21:49:42 +00:00
|
|
|
return;
|
|
|
|
|
2018-02-28 20:10:32 +00:00
|
|
|
@@ -639,6 +654,10 @@ ath_regd_init_wiphy(struct ath_regulator
|
2010-10-19 21:49:42 +00:00
|
|
|
const struct ieee80211_regdomain *regd;
|
|
|
|
|
2014-10-23 13:33:18 +00:00
|
|
|
wiphy->reg_notifier = reg_notifier;
|
|
|
|
+
|
2016-10-24 06:58:46 +00:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
+ return 0;
|
2009-10-02 22:02:37 +00:00
|
|
|
+
|
2014-01-30 13:21:36 +00:00
|
|
|
wiphy->regulatory_flags |= REGULATORY_STRICT_REG |
|
|
|
|
REGULATORY_CUSTOM_REG;
|
2014-10-23 13:33:18 +00:00
|
|
|
|
2013-06-15 20:14:06 +00:00
|
|
|
--- a/drivers/net/wireless/ath/Kconfig
|
|
|
|
+++ b/drivers/net/wireless/ath/Kconfig
|
2015-12-04 22:39:37 +00:00
|
|
|
@@ -23,6 +23,9 @@ config WLAN_VENDOR_ATH
|
2013-06-15 20:14:06 +00:00
|
|
|
|
2015-12-04 22:39:37 +00:00
|
|
|
if WLAN_VENDOR_ATH
|
2013-06-15 20:14:06 +00:00
|
|
|
|
|
|
|
+config ATH_USER_REGD
|
|
|
|
+ bool "Do not enforce EEPROM regulatory restrictions"
|
|
|
|
+
|
|
|
|
config ATH_DEBUG
|
|
|
|
bool "Atheros wireless debugging"
|
|
|
|
---help---
|
2017-08-22 21:59:48 +00:00
|
|
|
--- a/local-symbols
|
|
|
|
+++ b/local-symbols
|
2017-11-05 21:13:16 +00:00
|
|
|
@@ -87,6 +87,7 @@ ADM8211=
|
2013-06-30 10:44:19 +00:00
|
|
|
ATH_COMMON=
|
2015-12-04 22:39:37 +00:00
|
|
|
WLAN_VENDOR_ATH=
|
2013-06-30 10:44:19 +00:00
|
|
|
ATH_DEBUG=
|
|
|
|
+ATH_USER_REGD=
|
2014-10-18 17:38:59 +00:00
|
|
|
ATH_TRACEPOINTS=
|
2013-11-12 22:11:33 +00:00
|
|
|
ATH_REG_DYNAMIC_USER_REG_HINTS=
|
|
|
|
ATH_REG_DYNAMIC_USER_CERT_TESTING=
|