mci.c 15.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright (c) 2010-2011 Atheros Communications Inc.
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

17 18 19
#include <linux/dma-mapping.h>
#include <linux/slab.h>

20 21 22
#include "ath9k.h"
#include "mci.h"

23
static const u8 ath_mci_duty_cycle[] = { 55, 50, 60, 70, 80, 85, 90, 95, 98 };
24 25 26 27 28 29 30

static struct ath_mci_profile_info*
ath_mci_find_profile(struct ath_mci_profile *mci,
		     struct ath_mci_profile_info *info)
{
	struct ath_mci_profile_info *entry;

31 32 33
	if (list_empty(&mci->info))
		return NULL;

34 35
	list_for_each_entry(entry, &mci->info, list) {
		if (entry->conn_handle == info->conn_handle)
36
			return entry;
37
	}
38
	return NULL;
39 40 41 42 43 44 45 46 47
}

static bool ath_mci_add_profile(struct ath_common *common,
				struct ath_mci_profile *mci,
				struct ath_mci_profile_info *info)
{
	struct ath_mci_profile_info *entry;

	if ((mci->num_sco == ATH_MCI_MAX_SCO_PROFILE) &&
S
Sujith Manoharan 已提交
48
	    (info->type == MCI_GPM_COEX_PROFILE_VOICE))
49 50 51
		return false;

	if (((NUM_PROF(mci) - mci->num_sco) == ATH_MCI_MAX_ACL_PROFILE) &&
S
Sujith Manoharan 已提交
52
	    (info->type != MCI_GPM_COEX_PROFILE_VOICE))
53 54
		return false;

55
	entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
56 57
	if (!entry)
		return false;
58

59 60 61
	memcpy(entry, info, 10);
	INC_PROF(mci, info);
	list_add_tail(&entry->list, &mci->info);
S
Sujith Manoharan 已提交
62

63 64 65 66 67
	return true;
}

static void ath_mci_del_profile(struct ath_common *common,
				struct ath_mci_profile *mci,
68
				struct ath_mci_profile_info *entry)
69
{
S
Sujith Manoharan 已提交
70
	if (!entry)
71
		return;
S
Sujith Manoharan 已提交
72

73 74 75 76 77 78 79 80 81
	DEC_PROF(mci, entry);
	list_del(&entry->list);
	kfree(entry);
}

void ath_mci_flush_profile(struct ath_mci_profile *mci)
{
	struct ath_mci_profile_info *info, *tinfo;

82 83 84 85 86
	mci->aggr_limit = 0;

	if (list_empty(&mci->info))
		return;

87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	list_for_each_entry_safe(info, tinfo, &mci->info, list) {
		list_del(&info->list);
		DEC_PROF(mci, info);
		kfree(info);
	}
}

static void ath_mci_adjust_aggr_limit(struct ath_btcoex *btcoex)
{
	struct ath_mci_profile *mci = &btcoex->mci;
	u32 wlan_airtime = btcoex->btcoex_period *
				(100 - btcoex->duty_cycle) / 100;

	/*
	 * Scale: wlan_airtime is in ms, aggr_limit is in 0.25 ms.
	 * When wlan_airtime is less than 4ms, aggregation limit has to be
	 * adjusted half of wlan_airtime to ensure that the aggregation can fit
	 * without collision with BT traffic.
	 */
	if ((wlan_airtime <= 4) &&
	    (!mci->aggr_limit || (mci->aggr_limit > (2 * wlan_airtime))))
		mci->aggr_limit = 2 * wlan_airtime;
}

static void ath_mci_update_scheme(struct ath_softc *sc)
{
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	struct ath_btcoex *btcoex = &sc->btcoex;
	struct ath_mci_profile *mci = &btcoex->mci;
116
	struct ath9k_hw_mci *mci_hw = &sc->sc_ah->btcoex_hw.mci;
117 118 119
	struct ath_mci_profile_info *info;
	u32 num_profile = NUM_PROF(mci);

120 121 122
	if (mci_hw->config & ATH_MCI_CONFIG_DISABLE_TUNING)
		goto skip_tuning;

123 124
	btcoex->duty_cycle = ath_mci_duty_cycle[num_profile];

125 126 127 128
	if (num_profile == 1) {
		info = list_first_entry(&mci->info,
					struct ath_mci_profile_info,
					list);
129 130 131 132 133 134 135
		if (mci->num_sco) {
			if (info->T == 12)
				mci->aggr_limit = 8;
			else if (info->T == 6) {
				mci->aggr_limit = 6;
				btcoex->duty_cycle = 30;
			}
136
			ath_dbg(common, MCI,
137 138 139 140 141 142 143 144 145
				"Single SCO, aggregation limit %d 1/4 ms\n",
				mci->aggr_limit);
		} else if (mci->num_pan || mci->num_other_acl) {
			/*
			 * For single PAN/FTP profile, allocate 35% for BT
			 * to improve WLAN throughput.
			 */
			btcoex->duty_cycle = 35;
			btcoex->btcoex_period = 53;
146
			ath_dbg(common, MCI,
147 148 149
				"Single PAN/FTP bt period %d ms dutycycle %d\n",
				btcoex->duty_cycle, btcoex->btcoex_period);
		} else if (mci->num_hid) {
150
			btcoex->duty_cycle = 30;
151
			mci->aggr_limit = 6;
152
			ath_dbg(common, MCI,
153
				"Multiple attempt/timeout single HID "
154
				"aggregation limit 1.5 ms dutycycle 30%%\n");
155
		}
156 157 158
	} else if (num_profile == 2) {
		if (mci->num_hid == 2)
			btcoex->duty_cycle = 30;
159
		mci->aggr_limit = 6;
160
		ath_dbg(common, MCI,
161 162 163 164 165 166
			"Two BT profiles aggr limit 1.5 ms dutycycle %d%%\n",
			btcoex->duty_cycle);
	} else if (num_profile >= 3) {
		mci->aggr_limit = 4;
		ath_dbg(common, MCI,
			"Three or more profiles aggregation limit 1 ms\n");
167 168
	}

169
skip_tuning:
170 171 172 173 174 175 176 177 178 179 180 181 182
	if (IS_CHAN_2GHZ(sc->sc_ah->curchan)) {
		if (IS_CHAN_HT(sc->sc_ah->curchan))
			ath_mci_adjust_aggr_limit(btcoex);
		else
			btcoex->btcoex_period >>= 1;
	}

	ath9k_hw_btcoex_disable(sc->sc_ah);
	ath9k_btcoex_timer_pause(sc);

	if (IS_CHAN_5GHZ(sc->sc_ah->curchan))
		return;

183
	btcoex->duty_cycle += (mci->num_bdr ? ATH_MCI_BDR_DUTY_CYCLE : 0);
184 185 186
	if (btcoex->duty_cycle > ATH_MCI_MAX_DUTY_CYCLE)
		btcoex->duty_cycle = ATH_MCI_MAX_DUTY_CYCLE;

187
	btcoex->btcoex_no_stomp =  btcoex->btcoex_period * 1000 *
S
Sujith Manoharan 已提交
188
		(100 - btcoex->duty_cycle) / 100;
189 190 191 192 193

	ath9k_hw_btcoex_enable(sc->sc_ah);
	ath9k_btcoex_timer_resume(sc);
}

194 195 196 197
static void ath_mci_cal_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload)
{
	struct ath_hw *ah = sc->sc_ah;
	struct ath_common *common = ath9k_hw_common(ah);
198
	struct ath9k_hw_mci *mci_hw = &ah->btcoex_hw.mci;
199 200 201 202
	u32 payload[4] = {0, 0, 0, 0};

	switch (opcode) {
	case MCI_GPM_BT_CAL_REQ:
203
		if (mci_hw->bt_state == MCI_BT_AWAKE) {
204
			ar9003_mci_state(ah, MCI_STATE_SET_BT_CAL_START);
205
			ieee80211_queue_work(sc->hw, &sc->hw_reset_work);
S
Sujith Manoharan 已提交
206
		}
207
		ath_dbg(common, MCI, "MCI State : %d\n", mci_hw->bt_state);
208 209 210 211 212 213 214
		break;
	case MCI_GPM_BT_CAL_GRANT:
		MCI_GPM_SET_CAL_TYPE(payload, MCI_GPM_WLAN_CAL_DONE);
		ar9003_mci_send_message(sc->sc_ah, MCI_GPM, 0, payload,
					16, false, true);
		break;
	default:
S
Sujith Manoharan 已提交
215
		ath_dbg(common, MCI, "Unknown GPM CAL message\n");
216 217 218 219
		break;
	}
}

220 221 222 223 224 225 226
static void ath9k_mci_work(struct work_struct *work)
{
	struct ath_softc *sc = container_of(work, struct ath_softc, mci_work);

	ath_mci_update_scheme(sc);
}

227 228
static void ath_mci_process_profile(struct ath_softc *sc,
				    struct ath_mci_profile_info *info)
229 230 231 232
{
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	struct ath_btcoex *btcoex = &sc->btcoex;
	struct ath_mci_profile *mci = &btcoex->mci;
233 234 235 236 237
	struct ath_mci_profile_info *entry = NULL;

	entry = ath_mci_find_profile(mci, info);
	if (entry)
		memcpy(entry, info, 10);
238 239

	if (info->start) {
240
		if (!entry && !ath_mci_add_profile(common, mci, info))
241 242
			return;
	} else
243
		ath_mci_del_profile(common, mci, entry);
244 245 246

	btcoex->btcoex_period = ATH_MCI_DEF_BT_PERIOD;
	mci->aggr_limit = mci->num_sco ? 6 : 0;
S
Sujith Manoharan 已提交
247

248 249
	btcoex->duty_cycle = ath_mci_duty_cycle[NUM_PROF(mci)];
	if (NUM_PROF(mci))
250
		btcoex->bt_stomp_type = ATH_BTCOEX_STOMP_LOW;
251
	else
252 253 254
		btcoex->bt_stomp_type = mci->num_mgmt ? ATH_BTCOEX_STOMP_ALL :
							ATH_BTCOEX_STOMP_LOW;

255
	ieee80211_queue_work(sc->hw, &sc->mci_work);
256 257
}

258 259
static void ath_mci_process_status(struct ath_softc *sc,
				   struct ath_mci_profile_status *status)
260 261 262 263 264 265 266
{
	struct ath_btcoex *btcoex = &sc->btcoex;
	struct ath_mci_profile *mci = &btcoex->mci;
	struct ath_mci_profile_info info;
	int i = 0, old_num_mgmt = mci->num_mgmt;

	/* Link status type are not handled */
S
Sujith Manoharan 已提交
267
	if (status->is_link)
268 269 270
		return;

	info.conn_handle = status->conn_handle;
S
Sujith Manoharan 已提交
271
	if (ath_mci_find_profile(mci, &info))
272
		return;
S
Sujith Manoharan 已提交
273 274

	if (status->conn_handle >= ATH_MCI_MAX_PROFILE)
275
		return;
S
Sujith Manoharan 已提交
276

277 278 279 280 281 282 283 284 285 286 287 288
	if (status->is_critical)
		__set_bit(status->conn_handle, mci->status);
	else
		__clear_bit(status->conn_handle, mci->status);

	mci->num_mgmt = 0;
	do {
		if (test_bit(i, mci->status))
			mci->num_mgmt++;
	} while (++i < ATH_MCI_MAX_PROFILE);

	if (old_num_mgmt != mci->num_mgmt)
289
		ieee80211_queue_work(sc->hw, &sc->mci_work);
290
}
291

292 293 294 295 296 297
static void ath_mci_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload)
{
	struct ath_hw *ah = sc->sc_ah;
	struct ath_mci_profile_info profile_info;
	struct ath_mci_profile_status profile_status;
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
298
	u8 major, minor;
299 300 301 302
	u32 seq_num;

	switch (opcode) {
	case MCI_GPM_COEX_VERSION_QUERY:
303
		ar9003_mci_state(ah, MCI_STATE_SEND_WLAN_COEX_VERSION);
304 305 306 307
		break;
	case MCI_GPM_COEX_VERSION_RESPONSE:
		major = *(rx_payload + MCI_GPM_COEX_B_MAJOR_VERSION);
		minor = *(rx_payload + MCI_GPM_COEX_B_MINOR_VERSION);
308
		ar9003_mci_set_bt_version(ah, major, minor);
309 310
		break;
	case MCI_GPM_COEX_STATUS_QUERY:
311
		ar9003_mci_send_wlan_channels(ah);
312 313 314 315 316
		break;
	case MCI_GPM_COEX_BT_PROFILE_INFO:
		memcpy(&profile_info,
		       (rx_payload + MCI_GPM_COEX_B_PROFILE_TYPE), 10);

S
Sujith Manoharan 已提交
317 318
		if ((profile_info.type == MCI_GPM_COEX_PROFILE_UNKNOWN) ||
		    (profile_info.type >= MCI_GPM_COEX_PROFILE_MAX)) {
319
			ath_dbg(common, MCI,
S
Sujith Manoharan 已提交
320
				"Illegal profile type = %d, state = %d\n",
321
				profile_info.type,
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
				profile_info.start);
			break;
		}

		ath_mci_process_profile(sc, &profile_info);
		break;
	case MCI_GPM_COEX_BT_STATUS_UPDATE:
		profile_status.is_link = *(rx_payload +
					   MCI_GPM_COEX_B_STATUS_TYPE);
		profile_status.conn_handle = *(rx_payload +
					       MCI_GPM_COEX_B_STATUS_LINKID);
		profile_status.is_critical = *(rx_payload +
					       MCI_GPM_COEX_B_STATUS_STATE);

		seq_num = *((u32 *)(rx_payload + 12));
337
		ath_dbg(common, MCI,
S
Sujith Manoharan 已提交
338
			"BT_Status_Update: is_link=%d, linkId=%d, state=%d, SEQ=%d\n",
339 340 341 342 343 344
			profile_status.is_link, profile_status.conn_handle,
			profile_status.is_critical, seq_num);

		ath_mci_process_status(sc, &profile_status);
		break;
	default:
S
Sujith Manoharan 已提交
345
		ath_dbg(common, MCI, "Unknown GPM COEX message = 0x%02x\n", opcode);
346 347 348
		break;
	}
}
349 350 351 352 353

int ath_mci_setup(struct ath_softc *sc)
{
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
	struct ath_mci_coex *mci = &sc->mci_coex;
354
	struct ath_mci_buf *buf = &mci->sched_buf;
355

356 357 358
	buf->bf_addr = dma_alloc_coherent(sc->dev,
				  ATH_MCI_SCHED_BUF_SIZE + ATH_MCI_GPM_BUF_SIZE,
				  &buf->bf_paddr, GFP_KERNEL);
359

360
	if (buf->bf_addr == NULL) {
361
		ath_dbg(common, FATAL, "MCI buffer alloc failed\n");
362
		return -ENOMEM;
363 364
	}

365 366
	memset(buf->bf_addr, MCI_GPM_RSVD_PATTERN,
	       ATH_MCI_SCHED_BUF_SIZE + ATH_MCI_GPM_BUF_SIZE);
367

368
	mci->sched_buf.bf_len = ATH_MCI_SCHED_BUF_SIZE;
369 370

	mci->gpm_buf.bf_len = ATH_MCI_GPM_BUF_SIZE;
371
	mci->gpm_buf.bf_addr = (u8 *)mci->sched_buf.bf_addr + mci->sched_buf.bf_len;
372 373 374 375 376
	mci->gpm_buf.bf_paddr = mci->sched_buf.bf_paddr + mci->sched_buf.bf_len;

	ar9003_mci_setup(sc->sc_ah, mci->gpm_buf.bf_paddr,
			 mci->gpm_buf.bf_addr, (mci->gpm_buf.bf_len >> 4),
			 mci->sched_buf.bf_paddr);
377

378
	INIT_WORK(&sc->mci_work, ath9k_mci_work);
379 380 381
	ath_dbg(common, MCI, "MCI Initialized\n");

	return 0;
382 383 384 385
}

void ath_mci_cleanup(struct ath_softc *sc)
{
386
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
387 388
	struct ath_hw *ah = sc->sc_ah;
	struct ath_mci_coex *mci = &sc->mci_coex;
389
	struct ath_mci_buf *buf = &mci->sched_buf;
390

391 392 393 394 395
	if (buf->bf_addr)
		dma_free_coherent(sc->dev,
				  ATH_MCI_SCHED_BUF_SIZE + ATH_MCI_GPM_BUF_SIZE,
				  buf->bf_addr, buf->bf_paddr);

396
	ar9003_mci_cleanup(ah);
397 398

	ath_dbg(common, MCI, "MCI De-Initialized\n");
399
}
400 401 402 403 404 405

void ath_mci_intr(struct ath_softc *sc)
{
	struct ath_mci_coex *mci = &sc->mci_coex;
	struct ath_hw *ah = sc->sc_ah;
	struct ath_common *common = ath9k_hw_common(ah);
406
	struct ath9k_hw_mci *mci_hw = &ah->btcoex_hw.mci;
407 408 409 410 411 412 413 414
	u32 mci_int, mci_int_rxmsg;
	u32 offset, subtype, opcode;
	u32 *pgpm;
	u32 more_data = MCI_GPM_MORE;
	bool skip_gpm = false;

	ar9003_mci_get_interrupt(sc->sc_ah, &mci_int, &mci_int_rxmsg);

415
	if (ar9003_mci_state(ah, MCI_STATE_ENABLE) == 0) {
416
		ar9003_mci_get_next_gpm_offset(ah, true, NULL);
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
		return;
	}

	if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_REQ_WAKE) {
		u32 payload[4] = { 0xffffffff, 0xffffffff,
				   0xffffffff, 0xffffff00};

		/*
		 * The following REMOTE_RESET and SYS_WAKING used to sent
		 * only when BT wake up. Now they are always sent, as a
		 * recovery method to reset BT MCI's RX alignment.
		 */
		ar9003_mci_send_message(ah, MCI_REMOTE_RESET, 0,
					payload, 16, true, false);
		ar9003_mci_send_message(ah, MCI_SYS_WAKING, 0,
					NULL, 0, true, false);

		mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_REQ_WAKE;
435
		ar9003_mci_state(ah, MCI_STATE_RESET_REQ_WAKE);
436 437 438 439

		/*
		 * always do this for recovery and 2G/5G toggling and LNA_TRANS
		 */
440
		ar9003_mci_state(ah, MCI_STATE_SET_BT_AWAKE);
441 442 443 444 445
	}

	if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_SYS_WAKING) {
		mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_SYS_WAKING;

446
		if ((mci_hw->bt_state == MCI_BT_SLEEP) &&
447 448 449
		    (ar9003_mci_state(ah, MCI_STATE_REMOTE_SLEEP) !=
		     MCI_BT_SLEEP))
			ar9003_mci_state(ah, MCI_STATE_SET_BT_AWAKE);
450 451 452 453 454
	}

	if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_SYS_SLEEPING) {
		mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_SYS_SLEEPING;

455
		if ((mci_hw->bt_state == MCI_BT_AWAKE) &&
456 457
		    (ar9003_mci_state(ah, MCI_STATE_REMOTE_SLEEP) !=
		     MCI_BT_AWAKE))
458
			mci_hw->bt_state = MCI_BT_SLEEP;
459 460 461 462
	}

	if ((mci_int & AR_MCI_INTERRUPT_RX_INVALID_HDR) ||
	    (mci_int & AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT)) {
463
		ar9003_mci_state(ah, MCI_STATE_RECOVER_RX);
464 465 466 467 468
		skip_gpm = true;
	}

	if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_SCHD_INFO) {
		mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_SCHD_INFO;
469
		offset = ar9003_mci_state(ah, MCI_STATE_LAST_SCHD_MSG_OFFSET);
470 471 472 473 474 475 476 477
	}

	if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_GPM) {
		mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_GPM;

		while (more_data == MCI_GPM_MORE) {

			pgpm = mci->gpm_buf.bf_addr;
478 479
			offset = ar9003_mci_get_next_gpm_offset(ah, false,
								&more_data);
480 481 482 483 484 485 486 487 488 489 490 491 492

			if (offset == MCI_GPM_INVALID)
				break;

			pgpm += (offset >> 2);

			/*
			 * The first dword is timer.
			 * The real data starts from 2nd dword.
			 */
			subtype = MCI_GPM_TYPE(pgpm);
			opcode = MCI_GPM_OPCODE(pgpm);

S
Sujith Manoharan 已提交
493 494 495 496 497 498 499 500 501 502 503 504
			if (skip_gpm)
				goto recycle;

			if (MCI_GPM_IS_CAL_TYPE(subtype)) {
				ath_mci_cal_msg(sc, subtype, (u8 *)pgpm);
			} else {
				switch (subtype) {
				case MCI_GPM_COEX_AGENT:
					ath_mci_msg(sc, opcode, (u8 *)pgpm);
					break;
				default:
					break;
505 506
				}
			}
S
Sujith Manoharan 已提交
507
		recycle:
508 509 510 511 512 513 514 515
			MCI_GPM_RECYCLE(pgpm);
		}
	}

	if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_HW_MSG_MASK) {
		if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_LNA_CONTROL)
			mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_LNA_CONTROL;

S
Sujith Manoharan 已提交
516
		if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_LNA_INFO)
517 518 519
			mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_LNA_INFO;

		if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_CONT_INFO) {
520 521
			int value_dbm = MS(mci_hw->cont_status,
					   AR_MCI_CONT_RSSI_POWER);
522 523 524

			mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_CONT_INFO;

525 526 527 528 529 530
			ath_dbg(common, MCI,
				"MCI CONT_INFO: (%s) pri = %d pwr = %d dBm\n",
				MS(mci_hw->cont_status, AR_MCI_CONT_TXRX) ?
				"tx" : "rx",
				MS(mci_hw->cont_status, AR_MCI_CONT_PRIORITY),
				value_dbm);
531 532
		}

S
Sujith Manoharan 已提交
533
		if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_CONT_NACK)
534 535
			mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_CONT_NACK;

S
Sujith Manoharan 已提交
536
		if (mci_int_rxmsg & AR_MCI_INTERRUPT_RX_MSG_CONT_RST)
537 538 539 540 541 542 543 544
			mci_int_rxmsg &= ~AR_MCI_INTERRUPT_RX_MSG_CONT_RST;
	}

	if ((mci_int & AR_MCI_INTERRUPT_RX_INVALID_HDR) ||
	    (mci_int & AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT))
		mci_int &= ~(AR_MCI_INTERRUPT_RX_INVALID_HDR |
			     AR_MCI_INTERRUPT_CONT_INFO_TIMEOUT);
}
545 546 547 548 549 550 551 552 553 554 555

void ath_mci_enable(struct ath_softc *sc)
{
	struct ath_common *common = ath9k_hw_common(sc->sc_ah);

	if (!common->btcoex_enabled)
		return;

	if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
		sc->sc_ah->imask |= ATH9K_INT_MCI;
}