aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/ar9003_mci.c
diff options
context:
space:
mode:
authorRajkumar Manoharan <rmanohar@qca.qualcomm.com>2012-06-04 06:58:31 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-06-06 15:20:28 -0400
commit99922a45e96b22df387823ad5ecfe4dc26a96c9e (patch)
treedfb0b69d54b04236586c7a55e6f89b0942bffccb /drivers/net/wireless/ath/ath9k/ar9003_mci.c
parentc8b6fbe1f1d38aa19882263d6b0c644269e94244 (diff)
ath9k_hw: fix BT RF performance
When software rfkill is triggered, before put the chip in reset state, give LNA and SPDT control to BT to make sure BT can have good RF performance. Signed-off-by: Rajkumar Manoharan <rmanohar@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ar9003_mci.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/ar9003_mci.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_mci.c b/drivers/net/wireless/ath/ath9k/ar9003_mci.c
index 854dff66a63f..8b09a8239c1c 100644
--- a/drivers/net/wireless/ath/ath9k/ar9003_mci.c
+++ b/drivers/net/wireless/ath/ath9k/ar9003_mci.c
@@ -1391,3 +1391,19 @@ u32 ar9003_mci_state(struct ath_hw *ah, u32 state_type, u32 *p_data)
1391 return value; 1391 return value;
1392} 1392}
1393EXPORT_SYMBOL(ar9003_mci_state); 1393EXPORT_SYMBOL(ar9003_mci_state);
1394
1395void ar9003_mci_bt_gain_ctrl(struct ath_hw *ah)
1396{
1397 struct ath_common *common = ath9k_hw_common(ah);
1398 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci;
1399
1400 ath_dbg(common, MCI, "Give LNA and SPDT control to BT\n");
1401
1402 REG_SET_BIT(ah, AR_PHY_GLB_CONTROL, AR_BTCOEX_CTRL_BT_OWN_SPDT_CTRL);
1403 mci->is_2g = false;
1404 mci->update_2g5g = true;
1405 ar9003_mci_send_2g5g_status(ah, true);
1406
1407 /* Force another 2g5g update at next scanning */
1408 mci->update_2g5g = true;
1409}