2 * Copyright (c) 2010-2011 Atheros Communications Inc.
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.
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.
17 #include <linux/dma-mapping.h>
18 #include <linux/slab.h>
23 static const u8 ath_mci_duty_cycle
[] = { 55, 50, 60, 70, 80, 85, 90, 95, 98 };
25 static struct ath_mci_profile_info
*
26 ath_mci_find_profile(struct ath_mci_profile
*mci
,
27 struct ath_mci_profile_info
*info
)
29 struct ath_mci_profile_info
*entry
;
31 if (list_empty(&mci
->info
))
34 list_for_each_entry(entry
, &mci
->info
, list
) {
35 if (entry
->conn_handle
== info
->conn_handle
)
41 static bool ath_mci_add_profile(struct ath_common
*common
,
42 struct ath_mci_profile
*mci
,
43 struct ath_mci_profile_info
*info
)
45 struct ath_mci_profile_info
*entry
;
46 u8 voice_priority
[] = { 110, 110, 110, 112, 110, 110, 114, 116, 118 };
48 if ((mci
->num_sco
== ATH_MCI_MAX_SCO_PROFILE
) &&
49 (info
->type
== MCI_GPM_COEX_PROFILE_VOICE
))
52 if (((NUM_PROF(mci
) - mci
->num_sco
) == ATH_MCI_MAX_ACL_PROFILE
) &&
53 (info
->type
!= MCI_GPM_COEX_PROFILE_VOICE
))
56 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
60 memcpy(entry
, info
, 10);
62 list_add_tail(&entry
->list
, &mci
->info
);
63 if (info
->type
== MCI_GPM_COEX_PROFILE_VOICE
) {
64 if (info
->voice_type
< sizeof(voice_priority
))
65 mci
->voice_priority
= voice_priority
[info
->voice_type
];
67 mci
->voice_priority
= 110;
73 static void ath_mci_del_profile(struct ath_common
*common
,
74 struct ath_mci_profile
*mci
,
75 struct ath_mci_profile_info
*entry
)
81 list_del(&entry
->list
);
85 void ath_mci_flush_profile(struct ath_mci_profile
*mci
)
87 struct ath_mci_profile_info
*info
, *tinfo
;
92 if (list_empty(&mci
->info
))
95 list_for_each_entry_safe(info
, tinfo
, &mci
->info
, list
) {
96 list_del(&info
->list
);
102 static void ath_mci_adjust_aggr_limit(struct ath_btcoex
*btcoex
)
104 struct ath_mci_profile
*mci
= &btcoex
->mci
;
105 u32 wlan_airtime
= btcoex
->btcoex_period
*
106 (100 - btcoex
->duty_cycle
) / 100;
109 * Scale: wlan_airtime is in ms, aggr_limit is in 0.25 ms.
110 * When wlan_airtime is less than 4ms, aggregation limit has to be
111 * adjusted half of wlan_airtime to ensure that the aggregation can fit
112 * without collision with BT traffic.
114 if ((wlan_airtime
<= 4) &&
115 (!mci
->aggr_limit
|| (mci
->aggr_limit
> (2 * wlan_airtime
))))
116 mci
->aggr_limit
= 2 * wlan_airtime
;
119 static void ath_mci_update_scheme(struct ath_softc
*sc
)
121 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
122 struct ath_btcoex
*btcoex
= &sc
->btcoex
;
123 struct ath_mci_profile
*mci
= &btcoex
->mci
;
124 struct ath9k_hw_mci
*mci_hw
= &sc
->sc_ah
->btcoex_hw
.mci
;
125 struct ath_mci_profile_info
*info
;
126 u32 num_profile
= NUM_PROF(mci
);
128 if (mci_hw
->config
& ATH_MCI_CONFIG_DISABLE_TUNING
)
132 btcoex
->duty_cycle
= ath_mci_duty_cycle
[num_profile
];
133 btcoex
->btcoex_period
= ATH_MCI_DEF_BT_PERIOD
;
135 btcoex
->bt_stomp_type
= ATH_BTCOEX_STOMP_LOW
;
137 btcoex
->bt_stomp_type
= mci
->num_mgmt
? ATH_BTCOEX_STOMP_ALL
:
138 ATH_BTCOEX_STOMP_LOW
;
140 if (num_profile
== 1) {
141 info
= list_first_entry(&mci
->info
,
142 struct ath_mci_profile_info
,
147 else if (info
->T
== 6) {
149 btcoex
->duty_cycle
= 30;
153 "Single SCO, aggregation limit %d 1/4 ms\n",
155 } else if (mci
->num_pan
|| mci
->num_other_acl
) {
157 * For single PAN/FTP profile, allocate 35% for BT
158 * to improve WLAN throughput.
160 btcoex
->duty_cycle
= AR_SREV_9565(sc
->sc_ah
) ? 40 : 35;
161 btcoex
->btcoex_period
= 53;
163 "Single PAN/FTP bt period %d ms dutycycle %d\n",
164 btcoex
->duty_cycle
, btcoex
->btcoex_period
);
165 } else if (mci
->num_hid
) {
166 btcoex
->duty_cycle
= 30;
169 "Multiple attempt/timeout single HID "
170 "aggregation limit 1.5 ms dutycycle 30%%\n");
172 } else if (num_profile
== 2) {
173 if (mci
->num_hid
== 2)
174 btcoex
->duty_cycle
= 30;
177 "Two BT profiles aggr limit 1.5 ms dutycycle %d%%\n",
179 } else if (num_profile
>= 3) {
182 "Three or more profiles aggregation limit 1 ms\n");
186 if (IS_CHAN_2GHZ(sc
->sc_ah
->curchan
)) {
187 if (IS_CHAN_HT(sc
->sc_ah
->curchan
))
188 ath_mci_adjust_aggr_limit(btcoex
);
190 btcoex
->btcoex_period
>>= 1;
193 ath9k_btcoex_timer_pause(sc
);
194 ath9k_hw_btcoex_disable(sc
->sc_ah
);
196 if (IS_CHAN_5GHZ(sc
->sc_ah
->curchan
))
199 btcoex
->duty_cycle
+= (mci
->num_bdr
? ATH_MCI_BDR_DUTY_CYCLE
: 0);
200 if (btcoex
->duty_cycle
> ATH_MCI_MAX_DUTY_CYCLE
)
201 btcoex
->duty_cycle
= ATH_MCI_MAX_DUTY_CYCLE
;
203 btcoex
->btcoex_no_stomp
= btcoex
->btcoex_period
* 1000 *
204 (100 - btcoex
->duty_cycle
) / 100;
206 ath9k_hw_btcoex_enable(sc
->sc_ah
);
207 ath9k_btcoex_timer_resume(sc
);
210 static void ath_mci_cal_msg(struct ath_softc
*sc
, u8 opcode
, u8
*rx_payload
)
212 struct ath_hw
*ah
= sc
->sc_ah
;
213 struct ath_common
*common
= ath9k_hw_common(ah
);
214 struct ath9k_hw_mci
*mci_hw
= &ah
->btcoex_hw
.mci
;
215 u32 payload
[4] = {0, 0, 0, 0};
218 case MCI_GPM_BT_CAL_REQ
:
219 if (mci_hw
->bt_state
== MCI_BT_AWAKE
) {
220 mci_hw
->bt_state
= MCI_BT_CAL_START
;
221 ath9k_queue_reset(sc
, RESET_TYPE_MCI
);
223 ath_dbg(common
, MCI
, "MCI State : %d\n", mci_hw
->bt_state
);
225 case MCI_GPM_BT_CAL_GRANT
:
226 MCI_GPM_SET_CAL_TYPE(payload
, MCI_GPM_WLAN_CAL_DONE
);
227 ar9003_mci_send_message(sc
->sc_ah
, MCI_GPM
, 0, payload
,
231 ath_dbg(common
, MCI
, "Unknown GPM CAL message\n");
236 static void ath9k_mci_work(struct work_struct
*work
)
238 struct ath_softc
*sc
= container_of(work
, struct ath_softc
, mci_work
);
240 ath_mci_update_scheme(sc
);
243 static void ath_mci_update_stomp_txprio(u8 cur_txprio
, u8
*stomp_prio
)
245 if (cur_txprio
< stomp_prio
[ATH_BTCOEX_STOMP_NONE
])
246 stomp_prio
[ATH_BTCOEX_STOMP_NONE
] = cur_txprio
;
248 if (cur_txprio
> stomp_prio
[ATH_BTCOEX_STOMP_ALL
])
249 stomp_prio
[ATH_BTCOEX_STOMP_ALL
] = cur_txprio
;
251 if ((cur_txprio
> ATH_MCI_HI_PRIO
) &&
252 (cur_txprio
< stomp_prio
[ATH_BTCOEX_STOMP_LOW
]))
253 stomp_prio
[ATH_BTCOEX_STOMP_LOW
] = cur_txprio
;
256 static void ath_mci_set_concur_txprio(struct ath_softc
*sc
)
258 struct ath_btcoex
*btcoex
= &sc
->btcoex
;
259 struct ath_mci_profile
*mci
= &btcoex
->mci
;
260 u8 stomp_txprio
[ATH_BTCOEX_STOMP_MAX
];
262 memset(stomp_txprio
, 0, sizeof(stomp_txprio
));
264 stomp_txprio
[ATH_BTCOEX_STOMP_ALL
] = ATH_MCI_INQUIRY_PRIO
;
265 if (!mci
->num_pan
&& !mci
->num_other_acl
)
266 stomp_txprio
[ATH_BTCOEX_STOMP_NONE
] =
267 ATH_MCI_INQUIRY_PRIO
;
269 u8 prof_prio
[] = { 50, 90, 94, 52 };/* RFCOMM, A2DP, HID, PAN */
271 stomp_txprio
[ATH_BTCOEX_STOMP_LOW
] =
272 stomp_txprio
[ATH_BTCOEX_STOMP_NONE
] = 0xff;
275 ath_mci_update_stomp_txprio(mci
->voice_priority
,
277 if (mci
->num_other_acl
)
278 ath_mci_update_stomp_txprio(prof_prio
[0], stomp_txprio
);
280 ath_mci_update_stomp_txprio(prof_prio
[1], stomp_txprio
);
282 ath_mci_update_stomp_txprio(prof_prio
[2], stomp_txprio
);
284 ath_mci_update_stomp_txprio(prof_prio
[3], stomp_txprio
);
286 if (stomp_txprio
[ATH_BTCOEX_STOMP_NONE
] == 0xff)
287 stomp_txprio
[ATH_BTCOEX_STOMP_NONE
] = 0;
289 if (stomp_txprio
[ATH_BTCOEX_STOMP_LOW
] == 0xff)
290 stomp_txprio
[ATH_BTCOEX_STOMP_LOW
] = 0;
292 ath9k_hw_btcoex_set_concur_txprio(sc
->sc_ah
, stomp_txprio
);
295 static u8
ath_mci_process_profile(struct ath_softc
*sc
,
296 struct ath_mci_profile_info
*info
)
298 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
299 struct ath_btcoex
*btcoex
= &sc
->btcoex
;
300 struct ath_mci_profile
*mci
= &btcoex
->mci
;
301 struct ath_mci_profile_info
*entry
= NULL
;
303 entry
= ath_mci_find_profile(mci
, info
);
306 * Two MCI interrupts are generated while connecting to
307 * headset and A2DP profile, but only one MCI interrupt
308 * is generated with last added profile type while disconnecting
310 * So while adding second profile type decrement
313 if (entry
->type
!= info
->type
) {
314 DEC_PROF(mci
, entry
);
317 memcpy(entry
, info
, 10);
321 if (!entry
&& !ath_mci_add_profile(common
, mci
, info
))
324 ath_mci_del_profile(common
, mci
, entry
);
326 ath_mci_set_concur_txprio(sc
);
330 static u8
ath_mci_process_status(struct ath_softc
*sc
,
331 struct ath_mci_profile_status
*status
)
333 struct ath_btcoex
*btcoex
= &sc
->btcoex
;
334 struct ath_mci_profile
*mci
= &btcoex
->mci
;
335 struct ath_mci_profile_info info
;
336 int i
= 0, old_num_mgmt
= mci
->num_mgmt
;
338 /* Link status type are not handled */
342 info
.conn_handle
= status
->conn_handle
;
343 if (ath_mci_find_profile(mci
, &info
))
346 if (status
->conn_handle
>= ATH_MCI_MAX_PROFILE
)
349 if (status
->is_critical
)
350 __set_bit(status
->conn_handle
, mci
->status
);
352 __clear_bit(status
->conn_handle
, mci
->status
);
356 if (test_bit(i
, mci
->status
))
358 } while (++i
< ATH_MCI_MAX_PROFILE
);
360 ath_mci_set_concur_txprio(sc
);
361 if (old_num_mgmt
!= mci
->num_mgmt
)
367 static void ath_mci_msg(struct ath_softc
*sc
, u8 opcode
, u8
*rx_payload
)
369 struct ath_hw
*ah
= sc
->sc_ah
;
370 struct ath_mci_profile_info profile_info
;
371 struct ath_mci_profile_status profile_status
;
372 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
373 u8 major
, minor
, update_scheme
= 0;
376 if (ar9003_mci_state(ah
, MCI_STATE_NEED_FLUSH_BT_INFO
) &&
377 ar9003_mci_state(ah
, MCI_STATE_ENABLE
)) {
378 ath_dbg(common
, MCI
, "(MCI) Need to flush BT profiles\n");
379 ath_mci_flush_profile(&sc
->btcoex
.mci
);
380 ar9003_mci_state(ah
, MCI_STATE_SEND_STATUS_QUERY
);
384 case MCI_GPM_COEX_VERSION_QUERY
:
385 ar9003_mci_state(ah
, MCI_STATE_SEND_WLAN_COEX_VERSION
);
387 case MCI_GPM_COEX_VERSION_RESPONSE
:
388 major
= *(rx_payload
+ MCI_GPM_COEX_B_MAJOR_VERSION
);
389 minor
= *(rx_payload
+ MCI_GPM_COEX_B_MINOR_VERSION
);
390 ar9003_mci_set_bt_version(ah
, major
, minor
);
392 case MCI_GPM_COEX_STATUS_QUERY
:
393 ar9003_mci_send_wlan_channels(ah
);
395 case MCI_GPM_COEX_BT_PROFILE_INFO
:
396 memcpy(&profile_info
,
397 (rx_payload
+ MCI_GPM_COEX_B_PROFILE_TYPE
), 10);
399 if ((profile_info
.type
== MCI_GPM_COEX_PROFILE_UNKNOWN
) ||
400 (profile_info
.type
>= MCI_GPM_COEX_PROFILE_MAX
)) {
402 "Illegal profile type = %d, state = %d\n",
408 update_scheme
+= ath_mci_process_profile(sc
, &profile_info
);
410 case MCI_GPM_COEX_BT_STATUS_UPDATE
:
411 profile_status
.is_link
= *(rx_payload
+
412 MCI_GPM_COEX_B_STATUS_TYPE
);
413 profile_status
.conn_handle
= *(rx_payload
+
414 MCI_GPM_COEX_B_STATUS_LINKID
);
415 profile_status
.is_critical
= *(rx_payload
+
416 MCI_GPM_COEX_B_STATUS_STATE
);
418 seq_num
= *((u32
*)(rx_payload
+ 12));
420 "BT_Status_Update: is_link=%d, linkId=%d, state=%d, SEQ=%u\n",
421 profile_status
.is_link
, profile_status
.conn_handle
,
422 profile_status
.is_critical
, seq_num
);
424 update_scheme
+= ath_mci_process_status(sc
, &profile_status
);
427 ath_dbg(common
, MCI
, "Unknown GPM COEX message = 0x%02x\n", opcode
);
431 ieee80211_queue_work(sc
->hw
, &sc
->mci_work
);
434 int ath_mci_setup(struct ath_softc
*sc
)
436 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
437 struct ath_mci_coex
*mci
= &sc
->mci_coex
;
438 struct ath_mci_buf
*buf
= &mci
->sched_buf
;
441 buf
->bf_addr
= dmam_alloc_coherent(sc
->dev
,
442 ATH_MCI_SCHED_BUF_SIZE
+ ATH_MCI_GPM_BUF_SIZE
,
443 &buf
->bf_paddr
, GFP_KERNEL
);
445 if (buf
->bf_addr
== NULL
) {
446 ath_dbg(common
, FATAL
, "MCI buffer alloc failed\n");
450 memset(buf
->bf_addr
, MCI_GPM_RSVD_PATTERN
,
451 ATH_MCI_SCHED_BUF_SIZE
+ ATH_MCI_GPM_BUF_SIZE
);
453 mci
->sched_buf
.bf_len
= ATH_MCI_SCHED_BUF_SIZE
;
455 mci
->gpm_buf
.bf_len
= ATH_MCI_GPM_BUF_SIZE
;
456 mci
->gpm_buf
.bf_addr
= (u8
*)mci
->sched_buf
.bf_addr
+ mci
->sched_buf
.bf_len
;
457 mci
->gpm_buf
.bf_paddr
= mci
->sched_buf
.bf_paddr
+ mci
->sched_buf
.bf_len
;
459 ret
= ar9003_mci_setup(sc
->sc_ah
, mci
->gpm_buf
.bf_paddr
,
460 mci
->gpm_buf
.bf_addr
, (mci
->gpm_buf
.bf_len
>> 4),
461 mci
->sched_buf
.bf_paddr
);
463 ath_err(common
, "Failed to initialize MCI\n");
467 INIT_WORK(&sc
->mci_work
, ath9k_mci_work
);
468 ath_dbg(common
, MCI
, "MCI Initialized\n");
473 void ath_mci_cleanup(struct ath_softc
*sc
)
475 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
476 struct ath_hw
*ah
= sc
->sc_ah
;
478 ar9003_mci_cleanup(ah
);
480 ath_dbg(common
, MCI
, "MCI De-Initialized\n");
483 void ath_mci_intr(struct ath_softc
*sc
)
485 struct ath_mci_coex
*mci
= &sc
->mci_coex
;
486 struct ath_hw
*ah
= sc
->sc_ah
;
487 struct ath_common
*common
= ath9k_hw_common(ah
);
488 struct ath9k_hw_mci
*mci_hw
= &ah
->btcoex_hw
.mci
;
489 u32 mci_int
, mci_int_rxmsg
;
490 u32 offset
, subtype
, opcode
;
492 u32 more_data
= MCI_GPM_MORE
;
493 bool skip_gpm
= false;
495 ar9003_mci_get_interrupt(sc
->sc_ah
, &mci_int
, &mci_int_rxmsg
);
497 if (ar9003_mci_state(ah
, MCI_STATE_ENABLE
) == 0) {
498 ar9003_mci_get_next_gpm_offset(ah
, true, NULL
);
502 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_REQ_WAKE
) {
503 u32 payload
[4] = { 0xffffffff, 0xffffffff,
504 0xffffffff, 0xffffff00};
507 * The following REMOTE_RESET and SYS_WAKING used to sent
508 * only when BT wake up. Now they are always sent, as a
509 * recovery method to reset BT MCI's RX alignment.
511 ar9003_mci_send_message(ah
, MCI_REMOTE_RESET
, 0,
512 payload
, 16, true, false);
513 ar9003_mci_send_message(ah
, MCI_SYS_WAKING
, 0,
514 NULL
, 0, true, false);
516 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_REQ_WAKE
;
517 ar9003_mci_state(ah
, MCI_STATE_RESET_REQ_WAKE
);
520 * always do this for recovery and 2G/5G toggling and LNA_TRANS
522 ar9003_mci_state(ah
, MCI_STATE_SET_BT_AWAKE
);
525 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_SYS_WAKING
) {
526 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_SYS_WAKING
;
528 if ((mci_hw
->bt_state
== MCI_BT_SLEEP
) &&
529 (ar9003_mci_state(ah
, MCI_STATE_REMOTE_SLEEP
) !=
531 ar9003_mci_state(ah
, MCI_STATE_SET_BT_AWAKE
);
534 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_SYS_SLEEPING
) {
535 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_SYS_SLEEPING
;
537 if ((mci_hw
->bt_state
== MCI_BT_AWAKE
) &&
538 (ar9003_mci_state(ah
, MCI_STATE_REMOTE_SLEEP
) !=
540 mci_hw
->bt_state
= MCI_BT_SLEEP
;
543 if ((mci_int
& AR_MCI_INTERRUPT_RX_INVALID_HDR
) ||
544 (mci_int
& AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT
)) {
545 ar9003_mci_state(ah
, MCI_STATE_RECOVER_RX
);
549 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_SCHD_INFO
) {
550 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_SCHD_INFO
;
551 offset
= ar9003_mci_state(ah
, MCI_STATE_LAST_SCHD_MSG_OFFSET
);
554 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_GPM
) {
555 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_GPM
;
557 while (more_data
== MCI_GPM_MORE
) {
558 if (test_bit(SC_OP_HW_RESET
, &sc
->sc_flags
))
561 pgpm
= mci
->gpm_buf
.bf_addr
;
562 offset
= ar9003_mci_get_next_gpm_offset(ah
, false,
565 if (offset
== MCI_GPM_INVALID
)
568 pgpm
+= (offset
>> 2);
571 * The first dword is timer.
572 * The real data starts from 2nd dword.
574 subtype
= MCI_GPM_TYPE(pgpm
);
575 opcode
= MCI_GPM_OPCODE(pgpm
);
580 if (MCI_GPM_IS_CAL_TYPE(subtype
)) {
581 ath_mci_cal_msg(sc
, subtype
, (u8
*)pgpm
);
584 case MCI_GPM_COEX_AGENT
:
585 ath_mci_msg(sc
, opcode
, (u8
*)pgpm
);
592 MCI_GPM_RECYCLE(pgpm
);
596 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_HW_MSG_MASK
) {
597 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_LNA_CONTROL
)
598 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_LNA_CONTROL
;
600 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_LNA_INFO
)
601 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_LNA_INFO
;
603 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_CONT_INFO
) {
604 int value_dbm
= MS(mci_hw
->cont_status
,
605 AR_MCI_CONT_RSSI_POWER
);
607 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_CONT_INFO
;
610 "MCI CONT_INFO: (%s) pri = %d pwr = %d dBm\n",
611 MS(mci_hw
->cont_status
, AR_MCI_CONT_TXRX
) ?
613 MS(mci_hw
->cont_status
, AR_MCI_CONT_PRIORITY
),
617 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_CONT_NACK
)
618 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_CONT_NACK
;
620 if (mci_int_rxmsg
& AR_MCI_INTERRUPT_RX_MSG_CONT_RST
)
621 mci_int_rxmsg
&= ~AR_MCI_INTERRUPT_RX_MSG_CONT_RST
;
624 if ((mci_int
& AR_MCI_INTERRUPT_RX_INVALID_HDR
) ||
625 (mci_int
& AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT
)) {
626 mci_int
&= ~(AR_MCI_INTERRUPT_RX_INVALID_HDR
|
627 AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT
);
628 ath_mci_msg(sc
, MCI_GPM_COEX_NOOP
, NULL
);
632 void ath_mci_enable(struct ath_softc
*sc
)
634 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
636 if (!common
->btcoex_enabled
)
639 if (sc
->sc_ah
->caps
.hw_caps
& ATH9K_HW_CAP_MCI
)
640 sc
->sc_ah
->imask
|= ATH9K_INT_MCI
;
643 void ath9k_mci_update_wlan_channels(struct ath_softc
*sc
, bool allow_all
)
645 struct ath_hw
*ah
= sc
->sc_ah
;
646 struct ath9k_hw_mci
*mci
= &ah
->btcoex_hw
.mci
;
647 struct ath9k_channel
*chan
= ah
->curchan
;
648 u32 channelmap
[] = {0x00000000, 0xffff0000, 0xffffffff, 0x7fffffff};
650 s16 chan_start
, chan_end
;
653 if (!chan
|| !IS_CHAN_2GHZ(chan
))
659 wlan_chan
= chan
->channel
- 2402;
661 chan_start
= wlan_chan
- 10;
662 chan_end
= wlan_chan
+ 10;
664 if (chan
->chanmode
== CHANNEL_G_HT40PLUS
)
666 else if (chan
->chanmode
== CHANNEL_G_HT40MINUS
)
669 /* adjust side band */
675 if (chan_end
>= ATH_MCI_NUM_BT_CHANNELS
)
676 chan_end
= ATH_MCI_NUM_BT_CHANNELS
- 1;
678 ath_dbg(ath9k_hw_common(ah
), MCI
,
679 "WLAN current channel %d mask BT channel %d - %d\n",
680 wlan_chan
, chan_start
, chan_end
);
682 for (i
= chan_start
; i
< chan_end
; i
++)
683 MCI_GPM_CLR_CHANNEL_BIT(&channelmap
, i
);
686 /* update and send wlan channels info to BT */
687 for (i
= 0; i
< 4; i
++)
688 mci
->wlan_channels
[i
] = channelmap
[i
];
689 ar9003_mci_send_wlan_channels(ah
);
690 ar9003_mci_state(ah
, MCI_STATE_SEND_VERSION_QUERY
);
693 void ath9k_mci_set_txpower(struct ath_softc
*sc
, bool setchannel
,
696 struct ath_hw
*ah
= sc
->sc_ah
;
697 struct ath9k_hw_mci
*mci_hw
= &sc
->sc_ah
->btcoex_hw
.mci
;
698 bool old_concur_tx
= mci_hw
->concur_tx
;
700 if (!(mci_hw
->config
& ATH_MCI_CONFIG_CONCUR_TX
)) {
701 mci_hw
->concur_tx
= false;
705 if (!IS_CHAN_2GHZ(ah
->curchan
))
709 struct ath9k_hw_cal_data
*caldata
= &sc
->caldata
;
710 if ((caldata
->chanmode
== CHANNEL_G_HT40PLUS
) &&
711 (ah
->curchan
->channel
> caldata
->channel
) &&
712 (ah
->curchan
->channel
<= caldata
->channel
+ 20))
714 if ((caldata
->chanmode
== CHANNEL_G_HT40MINUS
) &&
715 (ah
->curchan
->channel
< caldata
->channel
) &&
716 (ah
->curchan
->channel
>= caldata
->channel
- 20))
718 mci_hw
->concur_tx
= false;
720 mci_hw
->concur_tx
= concur_tx
;
722 if (old_concur_tx
!= mci_hw
->concur_tx
)
723 ath9k_hw_set_txpowerlimit(ah
, sc
->config
.txpowlimit
, false);
726 static void ath9k_mci_stomp_audio(struct ath_softc
*sc
)
728 struct ath_hw
*ah
= sc
->sc_ah
;
729 struct ath_btcoex
*btcoex
= &sc
->btcoex
;
730 struct ath_mci_profile
*mci
= &btcoex
->mci
;
732 if (!mci
->num_sco
&& !mci
->num_a2dp
)
735 if (ah
->stats
.avgbrssi
> 25) {
736 btcoex
->stomp_audio
= 0;
740 btcoex
->stomp_audio
++;
742 void ath9k_mci_update_rssi(struct ath_softc
*sc
)
744 struct ath_hw
*ah
= sc
->sc_ah
;
745 struct ath_btcoex
*btcoex
= &sc
->btcoex
;
746 struct ath9k_hw_mci
*mci_hw
= &sc
->sc_ah
->btcoex_hw
.mci
;
748 ath9k_mci_stomp_audio(sc
);
750 if (!(mci_hw
->config
& ATH_MCI_CONFIG_CONCUR_TX
))
753 if (ah
->stats
.avgbrssi
>= 40) {
754 if (btcoex
->rssi_count
< 0)
755 btcoex
->rssi_count
= 0;
756 if (++btcoex
->rssi_count
>= ATH_MCI_CONCUR_TX_SWITCH
) {
757 btcoex
->rssi_count
= 0;
758 ath9k_mci_set_txpower(sc
, false, true);
761 if (btcoex
->rssi_count
> 0)
762 btcoex
->rssi_count
= 0;
763 if (--btcoex
->rssi_count
<= -ATH_MCI_CONCUR_TX_SWITCH
) {
764 btcoex
->rssi_count
= 0;
765 ath9k_mci_set_txpower(sc
, false, false);