Commit 3f2da955 authored by Sujith Manoharan's avatar Sujith Manoharan Committed by John W. Linville

ath9k: Add a HW capability for WLAN/BT RX diversity

Make use of this capability to restrict the usage of the
debugfs file and modparam using which this feature can
be enabled.
Signed-off-by: default avatarSujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 63081305
...@@ -634,10 +634,11 @@ void ath_ant_comb_update(struct ath_softc *sc); ...@@ -634,10 +634,11 @@ void ath_ant_comb_update(struct ath_softc *sc);
/* Main driver core */ /* Main driver core */
/********************/ /********************/
#define ATH9K_PCI_CUS198 0x0001 #define ATH9K_PCI_CUS198 0x0001
#define ATH9K_PCI_CUS230 0x0002 #define ATH9K_PCI_CUS230 0x0002
#define ATH9K_PCI_CUS217 0x0004 #define ATH9K_PCI_CUS217 0x0004
#define ATH9K_PCI_WOW 0x0008 #define ATH9K_PCI_WOW 0x0008
#define ATH9K_PCI_BT_ANT_DIV 0x0010
/* /*
* Default cache line size, in bytes. * Default cache line size, in bytes.
......
...@@ -289,6 +289,7 @@ static ssize_t write_file_bt_ant_diversity(struct file *file, ...@@ -289,6 +289,7 @@ static ssize_t write_file_bt_ant_diversity(struct file *file,
{ {
struct ath_softc *sc = file->private_data; struct ath_softc *sc = file->private_data;
struct ath_common *common = ath9k_hw_common(sc->sc_ah); struct ath_common *common = ath9k_hw_common(sc->sc_ah);
struct ath9k_hw_capabilities *pCap = &sc->sc_ah->caps;
unsigned long bt_ant_diversity; unsigned long bt_ant_diversity;
char buf[32]; char buf[32];
ssize_t len; ssize_t len;
...@@ -297,6 +298,9 @@ static ssize_t write_file_bt_ant_diversity(struct file *file, ...@@ -297,6 +298,9 @@ static ssize_t write_file_bt_ant_diversity(struct file *file,
if (copy_from_user(buf, user_buf, len)) if (copy_from_user(buf, user_buf, len))
return -EFAULT; return -EFAULT;
if (!(pCap->hw_caps & ATH9K_HW_CAP_BT_ANT_DIV))
goto exit;
buf[len] = '\0'; buf[len] = '\0';
if (kstrtoul(buf, 0, &bt_ant_diversity)) if (kstrtoul(buf, 0, &bt_ant_diversity))
return -EINVAL; return -EINVAL;
...@@ -307,7 +311,7 @@ static ssize_t write_file_bt_ant_diversity(struct file *file, ...@@ -307,7 +311,7 @@ static ssize_t write_file_bt_ant_diversity(struct file *file,
ath_dbg(common, CONFIG, "Enable WLAN/BT RX Antenna diversity: %d\n", ath_dbg(common, CONFIG, "Enable WLAN/BT RX Antenna diversity: %d\n",
common->bt_ant_diversity); common->bt_ant_diversity);
ath9k_ps_restore(sc); ath9k_ps_restore(sc);
exit:
return count; return count;
} }
......
...@@ -248,6 +248,7 @@ enum ath9k_hw_caps { ...@@ -248,6 +248,7 @@ enum ath9k_hw_caps {
ATH9K_HW_WOW_DEVICE_CAPABLE = BIT(17), ATH9K_HW_WOW_DEVICE_CAPABLE = BIT(17),
ATH9K_HW_CAP_PAPRD = BIT(18), ATH9K_HW_CAP_PAPRD = BIT(18),
ATH9K_HW_CAP_FCC_BAND_SWITCH = BIT(19), ATH9K_HW_CAP_FCC_BAND_SWITCH = BIT(19),
ATH9K_HW_CAP_BT_ANT_DIV = BIT(20),
}; };
/* /*
......
...@@ -516,6 +516,7 @@ static void ath9k_init_misc(struct ath_softc *sc) ...@@ -516,6 +516,7 @@ static void ath9k_init_misc(struct ath_softc *sc)
static void ath9k_init_platform(struct ath_softc *sc) static void ath9k_init_platform(struct ath_softc *sc)
{ {
struct ath_hw *ah = sc->sc_ah; struct ath_hw *ah = sc->sc_ah;
struct ath9k_hw_capabilities *pCap = &ah->caps;
struct ath_common *common = ath9k_hw_common(ah); struct ath_common *common = ath9k_hw_common(ah);
if (common->bus_ops->ath_bus_type != ATH_PCI) if (common->bus_ops->ath_bus_type != ATH_PCI)
...@@ -531,8 +532,14 @@ static void ath9k_init_platform(struct ath_softc *sc) ...@@ -531,8 +532,14 @@ static void ath9k_init_platform(struct ath_softc *sc)
ath_info(common, "Set parameters for %s\n", ath_info(common, "Set parameters for %s\n",
(sc->driver_data & ATH9K_PCI_CUS198) ? (sc->driver_data & ATH9K_PCI_CUS198) ?
"CUS198" : "CUS230"); "CUS198" : "CUS230");
} else if (sc->driver_data & ATH9K_PCI_CUS217) { }
if (sc->driver_data & ATH9K_PCI_CUS217)
ath_info(common, "CUS217 card detected\n"); ath_info(common, "CUS217 card detected\n");
if (sc->driver_data & ATH9K_PCI_BT_ANT_DIV) {
pCap->hw_caps |= ATH9K_HW_CAP_BT_ANT_DIV;
ath_info(common, "Set BT/WLAN RX diversity capability\n");
} }
} }
...@@ -586,6 +593,7 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc, ...@@ -586,6 +593,7 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
{ {
struct ath9k_platform_data *pdata = sc->dev->platform_data; struct ath9k_platform_data *pdata = sc->dev->platform_data;
struct ath_hw *ah = NULL; struct ath_hw *ah = NULL;
struct ath9k_hw_capabilities *pCap;
struct ath_common *common; struct ath_common *common;
int ret = 0, i; int ret = 0, i;
int csz = 0; int csz = 0;
...@@ -602,6 +610,7 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc, ...@@ -602,6 +610,7 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
ah->reg_ops.rmw = ath9k_reg_rmw; ah->reg_ops.rmw = ath9k_reg_rmw;
atomic_set(&ah->intr_ref_cnt, -1); atomic_set(&ah->intr_ref_cnt, -1);
sc->sc_ah = ah; sc->sc_ah = ah;
pCap = &ah->caps;
sc->dfs_detector = dfs_pattern_detector_init(ah, NL80211_DFS_UNSET); sc->dfs_detector = dfs_pattern_detector_init(ah, NL80211_DFS_UNSET);
...@@ -633,10 +642,14 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc, ...@@ -633,10 +642,14 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
ath9k_init_platform(sc); ath9k_init_platform(sc);
/* /*
* Enable WLAN/BT RX Antenna diversity only when BTCOEX is enabled * Enable WLAN/BT RX Antenna diversity only when:
* and the user manually requests the feature. *
* - BTCOEX is enabled
* - the user manually requests the feature.
* - the HW cap is set using the platform data.
*/ */
if (common->btcoex_enabled && ath9k_bt_ant_diversity) if (common->btcoex_enabled && ath9k_bt_ant_diversity &&
(pCap->hw_caps & ATH9K_HW_CAP_BT_ANT_DIV))
common->bt_ant_diversity = 1; common->bt_ant_diversity = 1;
spin_lock_init(&common->cc_lock); spin_lock_init(&common->cc_lock);
......
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