blob: 6f4188a32ff029ccaf30577f0c52fe9791633211 [file] [log] [blame]
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +05301/*
2 * Copyright (c) 2010-2011 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +053017#include <linux/dma-mapping.h>
18#include <linux/slab.h>
19
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053020#include "ath9k.h"
21#include "mci.h"
22
Rajkumar Manoharana197b762012-06-12 10:13:54 +053023static const u8 ath_mci_duty_cycle[] = { 55, 50, 60, 70, 80, 85, 90, 95, 98 };
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053024
25static struct ath_mci_profile_info*
26ath_mci_find_profile(struct ath_mci_profile *mci,
27 struct ath_mci_profile_info *info)
28{
29 struct ath_mci_profile_info *entry;
30
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +053031 if (list_empty(&mci->info))
32 return NULL;
33
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053034 list_for_each_entry(entry, &mci->info, list) {
35 if (entry->conn_handle == info->conn_handle)
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +053036 return entry;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053037 }
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +053038 return NULL;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053039}
40
41static bool ath_mci_add_profile(struct ath_common *common,
42 struct ath_mci_profile *mci,
43 struct ath_mci_profile_info *info)
44{
45 struct ath_mci_profile_info *entry;
46
47 if ((mci->num_sco == ATH_MCI_MAX_SCO_PROFILE) &&
Sujith Manoharan682dd042012-02-22 14:43:52 +053048 (info->type == MCI_GPM_COEX_PROFILE_VOICE))
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053049 return false;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053050
51 if (((NUM_PROF(mci) - mci->num_sco) == ATH_MCI_MAX_ACL_PROFILE) &&
Sujith Manoharan682dd042012-02-22 14:43:52 +053052 (info->type != MCI_GPM_COEX_PROFILE_VOICE))
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053053 return false;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053054
Rajkumar Manoharan3c7992e2012-06-12 10:13:53 +053055 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +053056 if (!entry)
57 return false;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053058
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +053059 memcpy(entry, info, 10);
60 INC_PROF(mci, info);
61 list_add_tail(&entry->list, &mci->info);
Sujith Manoharan682dd042012-02-22 14:43:52 +053062
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053063 return true;
64}
65
66static void ath_mci_del_profile(struct ath_common *common,
67 struct ath_mci_profile *mci,
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +053068 struct ath_mci_profile_info *entry)
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053069{
Sujith Manoharan682dd042012-02-22 14:43:52 +053070 if (!entry)
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053071 return;
Sujith Manoharan682dd042012-02-22 14:43:52 +053072
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053073 DEC_PROF(mci, entry);
74 list_del(&entry->list);
75 kfree(entry);
76}
77
78void ath_mci_flush_profile(struct ath_mci_profile *mci)
79{
80 struct ath_mci_profile_info *info, *tinfo;
81
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +053082 mci->aggr_limit = 0;
83
84 if (list_empty(&mci->info))
85 return;
86
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053087 list_for_each_entry_safe(info, tinfo, &mci->info, list) {
88 list_del(&info->list);
89 DEC_PROF(mci, info);
90 kfree(info);
91 }
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +053092}
93
94static void ath_mci_adjust_aggr_limit(struct ath_btcoex *btcoex)
95{
96 struct ath_mci_profile *mci = &btcoex->mci;
97 u32 wlan_airtime = btcoex->btcoex_period *
98 (100 - btcoex->duty_cycle) / 100;
99
100 /*
101 * Scale: wlan_airtime is in ms, aggr_limit is in 0.25 ms.
102 * When wlan_airtime is less than 4ms, aggregation limit has to be
103 * adjusted half of wlan_airtime to ensure that the aggregation can fit
104 * without collision with BT traffic.
105 */
106 if ((wlan_airtime <= 4) &&
107 (!mci->aggr_limit || (mci->aggr_limit > (2 * wlan_airtime))))
108 mci->aggr_limit = 2 * wlan_airtime;
109}
110
111static void ath_mci_update_scheme(struct ath_softc *sc)
112{
113 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
114 struct ath_btcoex *btcoex = &sc->btcoex;
115 struct ath_mci_profile *mci = &btcoex->mci;
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530116 struct ath9k_hw_mci *mci_hw = &sc->sc_ah->btcoex_hw.mci;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530117 struct ath_mci_profile_info *info;
118 u32 num_profile = NUM_PROF(mci);
119
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530120 if (mci_hw->config & ATH_MCI_CONFIG_DISABLE_TUNING)
121 goto skip_tuning;
122
Rajkumar Manoharana197b762012-06-12 10:13:54 +0530123 btcoex->duty_cycle = ath_mci_duty_cycle[num_profile];
124
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530125 if (num_profile == 1) {
126 info = list_first_entry(&mci->info,
127 struct ath_mci_profile_info,
128 list);
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530129 if (mci->num_sco) {
130 if (info->T == 12)
131 mci->aggr_limit = 8;
132 else if (info->T == 6) {
133 mci->aggr_limit = 6;
134 btcoex->duty_cycle = 30;
135 }
Joe Perchesd2182b62011-12-15 14:55:53 -0800136 ath_dbg(common, MCI,
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530137 "Single SCO, aggregation limit %d 1/4 ms\n",
138 mci->aggr_limit);
139 } else if (mci->num_pan || mci->num_other_acl) {
140 /*
141 * For single PAN/FTP profile, allocate 35% for BT
142 * to improve WLAN throughput.
143 */
144 btcoex->duty_cycle = 35;
145 btcoex->btcoex_period = 53;
Joe Perchesd2182b62011-12-15 14:55:53 -0800146 ath_dbg(common, MCI,
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530147 "Single PAN/FTP bt period %d ms dutycycle %d\n",
148 btcoex->duty_cycle, btcoex->btcoex_period);
149 } else if (mci->num_hid) {
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530150 btcoex->duty_cycle = 30;
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530151 mci->aggr_limit = 6;
Joe Perchesd2182b62011-12-15 14:55:53 -0800152 ath_dbg(common, MCI,
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530153 "Multiple attempt/timeout single HID "
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530154 "aggregation limit 1.5 ms dutycycle 30%%\n");
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530155 }
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530156 } else if (num_profile == 2) {
157 if (mci->num_hid == 2)
158 btcoex->duty_cycle = 30;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530159 mci->aggr_limit = 6;
Joe Perchesd2182b62011-12-15 14:55:53 -0800160 ath_dbg(common, MCI,
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530161 "Two BT profiles aggr limit 1.5 ms dutycycle %d%%\n",
162 btcoex->duty_cycle);
163 } else if (num_profile >= 3) {
164 mci->aggr_limit = 4;
165 ath_dbg(common, MCI,
166 "Three or more profiles aggregation limit 1 ms\n");
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530167 }
168
Rajkumar Manoharan06031432012-06-04 16:28:36 +0530169skip_tuning:
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530170 if (IS_CHAN_2GHZ(sc->sc_ah->curchan)) {
171 if (IS_CHAN_HT(sc->sc_ah->curchan))
172 ath_mci_adjust_aggr_limit(btcoex);
173 else
174 btcoex->btcoex_period >>= 1;
175 }
176
177 ath9k_hw_btcoex_disable(sc->sc_ah);
178 ath9k_btcoex_timer_pause(sc);
179
180 if (IS_CHAN_5GHZ(sc->sc_ah->curchan))
181 return;
182
Rajkumar Manoharana197b762012-06-12 10:13:54 +0530183 btcoex->duty_cycle += (mci->num_bdr ? ATH_MCI_BDR_DUTY_CYCLE : 0);
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530184 if (btcoex->duty_cycle > ATH_MCI_MAX_DUTY_CYCLE)
185 btcoex->duty_cycle = ATH_MCI_MAX_DUTY_CYCLE;
186
Rajkumar Manoharandfd05872012-06-11 12:19:37 +0530187 btcoex->btcoex_no_stomp = btcoex->btcoex_period * 1000 *
Sujith Manoharan682dd042012-02-22 14:43:52 +0530188 (100 - btcoex->duty_cycle) / 100;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530189
190 ath9k_hw_btcoex_enable(sc->sc_ah);
191 ath9k_btcoex_timer_resume(sc);
192}
193
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530194static void ath_mci_cal_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload)
195{
196 struct ath_hw *ah = sc->sc_ah;
197 struct ath_common *common = ath9k_hw_common(ah);
198 u32 payload[4] = {0, 0, 0, 0};
199
200 switch (opcode) {
201 case MCI_GPM_BT_CAL_REQ:
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530202 if (ar9003_mci_state(ah, MCI_STATE_BT, NULL) == MCI_BT_AWAKE) {
203 ar9003_mci_state(ah, MCI_STATE_SET_BT_CAL_START, NULL);
204 ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
Sujith Manoharan682dd042012-02-22 14:43:52 +0530205 } else {
206 ath_dbg(common, MCI, "MCI State mismatch: %d\n",
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530207 ar9003_mci_state(ah, MCI_STATE_BT, NULL));
Sujith Manoharan682dd042012-02-22 14:43:52 +0530208 }
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530209 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530210 case MCI_GPM_BT_CAL_DONE:
Sujith Manoharan682dd042012-02-22 14:43:52 +0530211 ar9003_mci_state(ah, MCI_STATE_BT, NULL);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530212 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530213 case MCI_GPM_BT_CAL_GRANT:
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530214 MCI_GPM_SET_CAL_TYPE(payload, MCI_GPM_WLAN_CAL_DONE);
215 ar9003_mci_send_message(sc->sc_ah, MCI_GPM, 0, payload,
216 16, false, true);
217 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530218 default:
Sujith Manoharan682dd042012-02-22 14:43:52 +0530219 ath_dbg(common, MCI, "Unknown GPM CAL message\n");
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530220 break;
221 }
222}
223
Rajkumar Manoharan3c7992e2012-06-12 10:13:53 +0530224static void ath9k_mci_work(struct work_struct *work)
225{
226 struct ath_softc *sc = container_of(work, struct ath_softc, mci_work);
227
228 ath_mci_update_scheme(sc);
229}
230
Felix Fietkaue5f0a272011-12-10 22:11:19 +0100231static void ath_mci_process_profile(struct ath_softc *sc,
232 struct ath_mci_profile_info *info)
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530233{
234 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
235 struct ath_btcoex *btcoex = &sc->btcoex;
236 struct ath_mci_profile *mci = &btcoex->mci;
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +0530237 struct ath_mci_profile_info *entry = NULL;
238
239 entry = ath_mci_find_profile(mci, info);
240 if (entry)
241 memcpy(entry, info, 10);
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530242
243 if (info->start) {
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +0530244 if (!entry && !ath_mci_add_profile(common, mci, info))
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530245 return;
246 } else
Rajkumar Manoharan9e2e0c82012-06-11 12:19:36 +0530247 ath_mci_del_profile(common, mci, entry);
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530248
249 btcoex->btcoex_period = ATH_MCI_DEF_BT_PERIOD;
250 mci->aggr_limit = mci->num_sco ? 6 : 0;
Sujith Manoharan682dd042012-02-22 14:43:52 +0530251
Rajkumar Manoharana197b762012-06-12 10:13:54 +0530252 btcoex->duty_cycle = ath_mci_duty_cycle[NUM_PROF(mci)];
253 if (NUM_PROF(mci))
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530254 btcoex->bt_stomp_type = ATH_BTCOEX_STOMP_LOW;
Rajkumar Manoharana197b762012-06-12 10:13:54 +0530255 else
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530256 btcoex->bt_stomp_type = mci->num_mgmt ? ATH_BTCOEX_STOMP_ALL :
257 ATH_BTCOEX_STOMP_LOW;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530258
Rajkumar Manoharan3c7992e2012-06-12 10:13:53 +0530259 ieee80211_queue_work(sc->hw, &sc->mci_work);
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530260}
261
Felix Fietkaue5f0a272011-12-10 22:11:19 +0100262static void ath_mci_process_status(struct ath_softc *sc,
263 struct ath_mci_profile_status *status)
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530264{
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530265 struct ath_btcoex *btcoex = &sc->btcoex;
266 struct ath_mci_profile *mci = &btcoex->mci;
267 struct ath_mci_profile_info info;
268 int i = 0, old_num_mgmt = mci->num_mgmt;
269
270 /* Link status type are not handled */
Sujith Manoharan682dd042012-02-22 14:43:52 +0530271 if (status->is_link)
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530272 return;
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530273
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530274 info.conn_handle = status->conn_handle;
Sujith Manoharan682dd042012-02-22 14:43:52 +0530275 if (ath_mci_find_profile(mci, &info))
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530276 return;
Sujith Manoharan682dd042012-02-22 14:43:52 +0530277
278 if (status->conn_handle >= ATH_MCI_MAX_PROFILE)
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530279 return;
Sujith Manoharan682dd042012-02-22 14:43:52 +0530280
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530281 if (status->is_critical)
282 __set_bit(status->conn_handle, mci->status);
283 else
284 __clear_bit(status->conn_handle, mci->status);
285
286 mci->num_mgmt = 0;
287 do {
288 if (test_bit(i, mci->status))
289 mci->num_mgmt++;
290 } while (++i < ATH_MCI_MAX_PROFILE);
291
292 if (old_num_mgmt != mci->num_mgmt)
Rajkumar Manoharan3c7992e2012-06-12 10:13:53 +0530293 ieee80211_queue_work(sc->hw, &sc->mci_work);
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +0530294}
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530295
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530296static void ath_mci_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload)
297{
298 struct ath_hw *ah = sc->sc_ah;
299 struct ath_mci_profile_info profile_info;
300 struct ath_mci_profile_status profile_status;
301 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Rajkumar Manoharane1763d32012-06-12 20:18:17 +0530302 u8 major, minor;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530303 u32 seq_num;
304
305 switch (opcode) {
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530306 case MCI_GPM_COEX_VERSION_QUERY:
Rajkumar Manoharane1763d32012-06-12 20:18:17 +0530307 ar9003_mci_state(ah, MCI_STATE_SEND_WLAN_COEX_VERSION, NULL);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530308 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530309 case MCI_GPM_COEX_VERSION_RESPONSE:
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530310 major = *(rx_payload + MCI_GPM_COEX_B_MAJOR_VERSION);
311 minor = *(rx_payload + MCI_GPM_COEX_B_MINOR_VERSION);
Rajkumar Manoharane1763d32012-06-12 20:18:17 +0530312 ar9003_mci_set_bt_version(ah, major, minor);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530313 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530314 case MCI_GPM_COEX_STATUS_QUERY:
Sujith Manoharan682dd042012-02-22 14:43:52 +0530315 ar9003_mci_state(ah, MCI_STATE_SEND_WLAN_CHANNELS, NULL);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530316 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530317 case MCI_GPM_COEX_BT_PROFILE_INFO:
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530318 memcpy(&profile_info,
319 (rx_payload + MCI_GPM_COEX_B_PROFILE_TYPE), 10);
320
Sujith Manoharan682dd042012-02-22 14:43:52 +0530321 if ((profile_info.type == MCI_GPM_COEX_PROFILE_UNKNOWN) ||
322 (profile_info.type >= MCI_GPM_COEX_PROFILE_MAX)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800323 ath_dbg(common, MCI,
Sujith Manoharan682dd042012-02-22 14:43:52 +0530324 "Illegal profile type = %d, state = %d\n",
Joe Perchesd2182b62011-12-15 14:55:53 -0800325 profile_info.type,
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530326 profile_info.start);
327 break;
328 }
329
330 ath_mci_process_profile(sc, &profile_info);
331 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530332 case MCI_GPM_COEX_BT_STATUS_UPDATE:
333 profile_status.is_link = *(rx_payload +
334 MCI_GPM_COEX_B_STATUS_TYPE);
335 profile_status.conn_handle = *(rx_payload +
336 MCI_GPM_COEX_B_STATUS_LINKID);
337 profile_status.is_critical = *(rx_payload +
338 MCI_GPM_COEX_B_STATUS_STATE);
339
340 seq_num = *((u32 *)(rx_payload + 12));
Joe Perchesd2182b62011-12-15 14:55:53 -0800341 ath_dbg(common, MCI,
Sujith Manoharan682dd042012-02-22 14:43:52 +0530342 "BT_Status_Update: is_link=%d, linkId=%d, state=%d, SEQ=%d\n",
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530343 profile_status.is_link, profile_status.conn_handle,
344 profile_status.is_critical, seq_num);
345
346 ath_mci_process_status(sc, &profile_status);
347 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530348 default:
Sujith Manoharan682dd042012-02-22 14:43:52 +0530349 ath_dbg(common, MCI, "Unknown GPM COEX message = 0x%02x\n", opcode);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530350 break;
351 }
352}
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530353
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530354int ath_mci_setup(struct ath_softc *sc)
355{
356 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
357 struct ath_mci_coex *mci = &sc->mci_coex;
Sujith Manoharanea510e42012-02-22 12:40:09 +0530358 struct ath_mci_buf *buf = &mci->sched_buf;
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530359
Sujith Manoharanea510e42012-02-22 12:40:09 +0530360 buf->bf_addr = dma_alloc_coherent(sc->dev,
361 ATH_MCI_SCHED_BUF_SIZE + ATH_MCI_GPM_BUF_SIZE,
362 &buf->bf_paddr, GFP_KERNEL);
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530363
Sujith Manoharanea510e42012-02-22 12:40:09 +0530364 if (buf->bf_addr == NULL) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800365 ath_dbg(common, FATAL, "MCI buffer alloc failed\n");
Sujith Manoharanea510e42012-02-22 12:40:09 +0530366 return -ENOMEM;
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530367 }
368
Sujith Manoharanea510e42012-02-22 12:40:09 +0530369 memset(buf->bf_addr, MCI_GPM_RSVD_PATTERN,
370 ATH_MCI_SCHED_BUF_SIZE + ATH_MCI_GPM_BUF_SIZE);
371
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530372 mci->sched_buf.bf_len = ATH_MCI_SCHED_BUF_SIZE;
373
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530374 mci->gpm_buf.bf_len = ATH_MCI_GPM_BUF_SIZE;
Sujith Manoharanea510e42012-02-22 12:40:09 +0530375 mci->gpm_buf.bf_addr = (u8 *)mci->sched_buf.bf_addr + mci->sched_buf.bf_len;
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530376 mci->gpm_buf.bf_paddr = mci->sched_buf.bf_paddr + mci->sched_buf.bf_len;
377
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530378 ar9003_mci_setup(sc->sc_ah, mci->gpm_buf.bf_paddr,
379 mci->gpm_buf.bf_addr, (mci->gpm_buf.bf_len >> 4),
380 mci->sched_buf.bf_paddr);
Sujith Manoharanea510e42012-02-22 12:40:09 +0530381
Rajkumar Manoharan3c7992e2012-06-12 10:13:53 +0530382 INIT_WORK(&sc->mci_work, ath9k_mci_work);
Sujith Manoharanea510e42012-02-22 12:40:09 +0530383 ath_dbg(common, MCI, "MCI Initialized\n");
384
385 return 0;
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530386}
387
388void ath_mci_cleanup(struct ath_softc *sc)
389{
Sujith Manoharanea510e42012-02-22 12:40:09 +0530390 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530391 struct ath_hw *ah = sc->sc_ah;
392 struct ath_mci_coex *mci = &sc->mci_coex;
Sujith Manoharanea510e42012-02-22 12:40:09 +0530393 struct ath_mci_buf *buf = &mci->sched_buf;
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530394
Sujith Manoharanea510e42012-02-22 12:40:09 +0530395 if (buf->bf_addr)
396 dma_free_coherent(sc->dev,
397 ATH_MCI_SCHED_BUF_SIZE + ATH_MCI_GPM_BUF_SIZE,
398 buf->bf_addr, buf->bf_paddr);
399
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530400 ar9003_mci_cleanup(ah);
Sujith Manoharanea510e42012-02-22 12:40:09 +0530401
402 ath_dbg(common, MCI, "MCI De-Initialized\n");
Mohammed Shafi Shajakhan9e253652011-11-30 10:41:23 +0530403}
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530404
405void ath_mci_intr(struct ath_softc *sc)
406{
407 struct ath_mci_coex *mci = &sc->mci_coex;
408 struct ath_hw *ah = sc->sc_ah;
409 struct ath_common *common = ath9k_hw_common(ah);
410 u32 mci_int, mci_int_rxmsg;
411 u32 offset, subtype, opcode;
412 u32 *pgpm;
413 u32 more_data = MCI_GPM_MORE;
414 bool skip_gpm = false;
415
416 ar9003_mci_get_interrupt(sc->sc_ah, &mci_int, &mci_int_rxmsg);
417
418 if (ar9003_mci_state(ah, MCI_STATE_ENABLE, NULL) == 0) {
Rajkumar Manoharan506847a2012-06-12 20:18:16 +0530419 ar9003_mci_get_next_gpm_offset(ah, true, NULL);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530420 return;
421 }
422
423 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_REQ_WAKE) {
424 u32 payload[4] = { 0xffffffff, 0xffffffff,
425 0xffffffff, 0xffffff00};
426
427 /*
428 * The following REMOTE_RESET and SYS_WAKING used to sent
429 * only when BT wake up. Now they are always sent, as a
430 * recovery method to reset BT MCI's RX alignment.
431 */
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530432 ar9003_mci_send_message(ah, MCI_REMOTE_RESET, 0,
433 payload, 16, true, false);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530434 ar9003_mci_send_message(ah, MCI_SYS_WAKING, 0,
435 NULL, 0, true, false);
436
437 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_REQ_WAKE;
438 ar9003_mci_state(ah, MCI_STATE_RESET_REQ_WAKE, NULL);
439
440 /*
441 * always do this for recovery and 2G/5G toggling and LNA_TRANS
442 */
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530443 ar9003_mci_state(ah, MCI_STATE_SET_BT_AWAKE, NULL);
444 }
445
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530446 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_SYS_WAKING) {
447 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_SYS_WAKING;
448
449 if (ar9003_mci_state(ah, MCI_STATE_BT, NULL) == MCI_BT_SLEEP) {
Sujith Manoharan682dd042012-02-22 14:43:52 +0530450 if (ar9003_mci_state(ah, MCI_STATE_REMOTE_SLEEP, NULL) !=
451 MCI_BT_SLEEP)
452 ar9003_mci_state(ah, MCI_STATE_SET_BT_AWAKE,
453 NULL);
454 }
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530455 }
456
457 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_SYS_SLEEPING) {
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530458 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_SYS_SLEEPING;
459
460 if (ar9003_mci_state(ah, MCI_STATE_BT, NULL) == MCI_BT_AWAKE) {
Sujith Manoharan682dd042012-02-22 14:43:52 +0530461 if (ar9003_mci_state(ah, MCI_STATE_REMOTE_SLEEP, NULL) !=
462 MCI_BT_AWAKE)
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530463 ar9003_mci_state(ah, MCI_STATE_SET_BT_SLEEP,
464 NULL);
Sujith Manoharan682dd042012-02-22 14:43:52 +0530465 }
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530466 }
467
468 if ((mci_int & AR_MCI_INTERRUPT_RX_INVALID_HDR) ||
469 (mci_int & AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT)) {
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530470 ar9003_mci_state(ah, MCI_STATE_RECOVER_RX, NULL);
471 skip_gpm = true;
472 }
473
474 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_SCHD_INFO) {
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530475 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_SCHD_INFO;
476 offset = ar9003_mci_state(ah, MCI_STATE_LAST_SCHD_MSG_OFFSET,
477 NULL);
478 }
479
480 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_GPM) {
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530481 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_GPM;
482
483 while (more_data == MCI_GPM_MORE) {
484
485 pgpm = mci->gpm_buf.bf_addr;
Rajkumar Manoharan506847a2012-06-12 20:18:16 +0530486 offset = ar9003_mci_get_next_gpm_offset(ah, false,
487 &more_data);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530488
489 if (offset == MCI_GPM_INVALID)
490 break;
491
492 pgpm += (offset >> 2);
493
494 /*
495 * The first dword is timer.
496 * The real data starts from 2nd dword.
497 */
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530498 subtype = MCI_GPM_TYPE(pgpm);
499 opcode = MCI_GPM_OPCODE(pgpm);
500
Sujith Manoharan682dd042012-02-22 14:43:52 +0530501 if (skip_gpm)
502 goto recycle;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530503
Sujith Manoharan682dd042012-02-22 14:43:52 +0530504 if (MCI_GPM_IS_CAL_TYPE(subtype)) {
505 ath_mci_cal_msg(sc, subtype, (u8 *)pgpm);
506 } else {
507 switch (subtype) {
508 case MCI_GPM_COEX_AGENT:
509 ath_mci_msg(sc, opcode, (u8 *)pgpm);
510 break;
511 default:
512 break;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530513 }
514 }
Sujith Manoharan682dd042012-02-22 14:43:52 +0530515 recycle:
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530516 MCI_GPM_RECYCLE(pgpm);
517 }
518 }
519
520 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_HW_MSG_MASK) {
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530521 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_LNA_CONTROL)
522 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_LNA_CONTROL;
523
Sujith Manoharan682dd042012-02-22 14:43:52 +0530524 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_LNA_INFO)
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530525 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_LNA_INFO;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530526
527 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_CONT_INFO) {
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530528 int value_dbm = ar9003_mci_state(ah,
Sujith Manoharan682dd042012-02-22 14:43:52 +0530529 MCI_STATE_CONT_RSSI_POWER, NULL);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530530
531 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_CONT_INFO;
532
533 if (ar9003_mci_state(ah, MCI_STATE_CONT_TXRX, NULL))
Joe Perchesd2182b62011-12-15 14:55:53 -0800534 ath_dbg(common, MCI,
535 "MCI CONT_INFO: (tx) pri = %d, pwr = %d dBm\n",
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530536 ar9003_mci_state(ah,
Sujith Manoharan682dd042012-02-22 14:43:52 +0530537 MCI_STATE_CONT_PRIORITY, NULL),
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530538 value_dbm);
539 else
Joe Perchesd2182b62011-12-15 14:55:53 -0800540 ath_dbg(common, MCI,
541 "MCI CONT_INFO: (rx) pri = %d,pwr = %d dBm\n",
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530542 ar9003_mci_state(ah,
Sujith Manoharan682dd042012-02-22 14:43:52 +0530543 MCI_STATE_CONT_PRIORITY, NULL),
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530544 value_dbm);
545 }
546
Sujith Manoharan682dd042012-02-22 14:43:52 +0530547 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_CONT_NACK)
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530548 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_CONT_NACK;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530549
Sujith Manoharan682dd042012-02-22 14:43:52 +0530550 if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_CONT_RST)
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530551 mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_CONT_RST;
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530552 }
553
554 if ((mci_int & AR_MCI_INTERRUPT_RX_INVALID_HDR) ||
555 (mci_int & AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT))
556 mci_int &= ~(AR_MCI_INTERRUPT_RX_INVALID_HDR |
557 AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +0530558}
Sujith Manoharane270e772012-06-04 16:27:19 +0530559
560void ath_mci_enable(struct ath_softc *sc)
561{
562 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
563
564 if (!common->btcoex_enabled)
565 return;
566
567 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
568 sc->sc_ah->imask |= ATH9K_INT_MCI;
569}