2009-10-03 06:02:37 +08:00
|
|
|
--- a/drivers/net/wireless/ath/regd.c
|
|
|
|
|
+++ b/drivers/net/wireless/ath/regd.c
|
2017-03-23 03:24:32 +08: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 14:58:46 +08: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-23 03:24:32 +08:00
|
|
|
@@ -188,6 +192,8 @@ static bool dynamic_country_user_possibl
|
2016-10-24 14:58:46 +08: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-23 05:59:48 +08:00
|
|
|
@@ -345,6 +351,9 @@ ath_reg_apply_beaconing_flags(struct wip
|
2013-01-09 20:45:28 +08:00
|
|
|
struct ieee80211_channel *ch;
|
|
|
|
|
unsigned int i;
|
2009-10-03 06:02:37 +08:00
|
|
|
|
2016-10-24 14:58:46 +08:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
|
+ return;
|
2010-10-20 05:49:42 +08:00
|
|
|
+
|
2016-05-14 23:38:56 +08:00
|
|
|
for (band = 0; band < NUM_NL80211_BANDS; band++) {
|
2010-10-20 05:49:42 +08:00
|
|
|
if (!wiphy->bands[band])
|
2014-01-30 21:21:36 +08:00
|
|
|
continue;
|
2021-10-05 05:48:20 +08:00
|
|
|
@@ -379,6 +388,9 @@ ath_reg_apply_ir_flags(struct wiphy *wip
|
2014-01-30 21:21:36 +08:00
|
|
|
{
|
|
|
|
|
struct ieee80211_supported_band *sband;
|
2009-10-03 06:02:37 +08:00
|
|
|
|
2016-10-24 14:58:46 +08:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
|
+ return;
|
2009-10-03 06:02:37 +08:00
|
|
|
+
|
2016-05-14 23:38:56 +08:00
|
|
|
sband = wiphy->bands[NL80211_BAND_2GHZ];
|
2011-11-18 19:27:19 +08:00
|
|
|
if (!sband)
|
|
|
|
|
return;
|
2021-10-05 05:48:20 +08:00
|
|
|
@@ -408,6 +420,9 @@ static void ath_reg_apply_radar_flags(st
|
2010-10-20 05:49:42 +08:00
|
|
|
struct ieee80211_channel *ch;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
2016-10-24 14:58:46 +08:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
|
+ return;
|
2009-10-03 06:02:37 +08:00
|
|
|
+
|
2016-05-14 23:38:56 +08:00
|
|
|
if (!wiphy->bands[NL80211_BAND_5GHZ])
|
2010-10-20 05:49:42 +08:00
|
|
|
return;
|
|
|
|
|
|
2021-10-05 05:48:20 +08:00
|
|
|
@@ -640,6 +655,10 @@ ath_regd_init_wiphy(struct ath_regulator
|
2010-10-20 05:49:42 +08:00
|
|
|
const struct ieee80211_regdomain *regd;
|
|
|
|
|
|
2014-10-23 21:33:18 +08:00
|
|
|
wiphy->reg_notifier = reg_notifier;
|
|
|
|
|
+
|
2016-10-24 14:58:46 +08:00
|
|
|
+ if (IS_ENABLED(CPTCFG_ATH_USER_REGD))
|
|
|
|
|
+ return 0;
|
2009-10-03 06:02:37 +08:00
|
|
|
+
|
2014-01-30 21:21:36 +08:00
|
|
|
wiphy->regulatory_flags |= REGULATORY_STRICT_REG |
|
|
|
|
|
REGULATORY_CUSTOM_REG;
|
2014-10-23 21:33:18 +08:00
|
|
|
|
2013-06-16 04:14:06 +08:00
|
|
|
--- a/drivers/net/wireless/ath/Kconfig
|
|
|
|
|
+++ b/drivers/net/wireless/ath/Kconfig
|
2019-07-07 06:08:20 +08:00
|
|
|
@@ -24,6 +24,9 @@ config WLAN_VENDOR_ATH
|
2013-06-16 04:14:06 +08:00
|
|
|
|
2015-12-05 06:39:37 +08:00
|
|
|
if WLAN_VENDOR_ATH
|
2013-06-16 04:14:06 +08:00
|
|
|
|
|
|
|
|
+config ATH_USER_REGD
|
|
|
|
|
+ bool "Do not enforce EEPROM regulatory restrictions"
|
|
|
|
|
+
|
|
|
|
|
config ATH_DEBUG
|
|
|
|
|
bool "Atheros wireless debugging"
|
2020-06-21 05:11:17 +08:00
|
|
|
help
|
2017-08-23 05:59:48 +08:00
|
|
|
--- a/local-symbols
|
|
|
|
|
+++ b/local-symbols
|
2023-03-02 04:14:54 +08:00
|
|
|
@@ -102,6 +102,7 @@ ADM8211=
|
2013-06-30 18:44:19 +08:00
|
|
|
ATH_COMMON=
|
2015-12-05 06:39:37 +08:00
|
|
|
WLAN_VENDOR_ATH=
|
2013-06-30 18:44:19 +08:00
|
|
|
ATH_DEBUG=
|
|
|
|
|
+ATH_USER_REGD=
|
2014-10-19 01:38:59 +08:00
|
|
|
ATH_TRACEPOINTS=
|
2013-11-13 06:11:33 +08:00
|
|
|
ATH_REG_DYNAMIC_USER_REG_HINTS=
|
|
|
|
|
ATH_REG_DYNAMIC_USER_CERT_TESTING=
|