ath9k: Send WLAN channel info to BT
WLAN updates channel bitmap when associated and disassociated. Channel bitmap will reflect whare are the channels used or affected by WLAN and BT should avoid using those. Not doing so, could affect BT traffic as both WLAN and BT is operating on same channel. Signed-off-by: Rajkumar Manoharan <rmanohar@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:

committed by
John W. Linville

parent
aebc0d40f9
commit
50072ebca3
@@ -32,6 +32,24 @@
|
||||
#define ATH_MCI_MAX_PROFILE (ATH_MCI_MAX_ACL_PROFILE +\
|
||||
ATH_MCI_MAX_SCO_PROFILE)
|
||||
|
||||
#define ATH_MCI_NUM_BT_CHANNELS 79
|
||||
|
||||
#define MCI_GPM_SET_CHANNEL_BIT(_p_gpm, _bt_chan) \
|
||||
do { \
|
||||
if (_bt_chan < ATH_MCI_NUM_BT_CHANNELS) { \
|
||||
*(((u8 *)(_p_gpm)) + MCI_GPM_COEX_B_CHANNEL_MAP + \
|
||||
(_bt_chan / 8)) |= (1 << (_bt_chan & 7)); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define MCI_GPM_CLR_CHANNEL_BIT(_p_gpm, _bt_chan) \
|
||||
do { \
|
||||
if (_bt_chan < ATH_MCI_NUM_BT_CHANNELS) { \
|
||||
*(((u8 *)(_p_gpm)) + MCI_GPM_COEX_B_CHANNEL_MAP + \
|
||||
(_bt_chan / 8)) &= ~(1 << (_bt_chan & 7));\
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define INC_PROF(_mci, _info) do { \
|
||||
switch (_info->type) { \
|
||||
case MCI_GPM_COEX_PROFILE_RFCOMM:\
|
||||
@@ -133,10 +151,15 @@ void ath_mci_intr(struct ath_softc *sc);
|
||||
|
||||
#ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
|
||||
void ath_mci_enable(struct ath_softc *sc);
|
||||
void ath9k_mci_update_wlan_channels(struct ath_softc *sc, bool allow_all);
|
||||
#else
|
||||
static inline void ath_mci_enable(struct ath_softc *sc)
|
||||
{
|
||||
}
|
||||
static inline void ath9k_mci_update_wlan_channels(struct ath_softc *sc,
|
||||
bool allow_all)
|
||||
{
|
||||
}
|
||||
#endif /* CONFIG_ATH9K_BTCOEX_SUPPORT */
|
||||
|
||||
#endif /* MCI_H*/
|
||||
|
Reference in New Issue
Block a user