blob: aac8fae5081383ba5ddec648bae789ec3a978b50 [file] [log] [blame]
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +05301/*
2 * Copyright (c) 2009 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
17#ifndef BTCOEX_H
18#define BTCOEX_H
19
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070020#include "hw.h"
21
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +053022#define ATH_WLANACTIVE_GPIO 5
23#define ATH_BTACTIVE_GPIO 6
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +053024#define ATH_BTPRIORITY_GPIO 7
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +053025
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053026#define ATH_BTCOEX_DEF_BT_PERIOD 45
27#define ATH_BTCOEX_DEF_DUTY_CYCLE 55
Vasanthakumar Thiagarajan58da1312010-01-21 11:17:27 +053028#define ATH_BTCOEX_BTSCAN_DUTY_CYCLE 90
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053029#define ATH_BTCOEX_BMISS_THRESH 50
30
31#define ATH_BT_PRIORITY_TIME_THRESHOLD 1000 /* ms */
32#define ATH_BT_CNT_THRESHOLD 3
Vasanthakumar Thiagarajan58da1312010-01-21 11:17:27 +053033#define ATH_BT_CNT_SCAN_THRESHOLD 15
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053034
Vivek Natarajan978f78b2011-04-26 10:39:52 +053035/* Defines the BT AR_BT_COEX_WGHT used */
36enum ath_stomp_type {
37 ATH_BTCOEX_NO_STOMP,
38 ATH_BTCOEX_STOMP_ALL,
39 ATH_BTCOEX_STOMP_LOW,
40 ATH_BTCOEX_STOMP_NONE
41};
42
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +053043enum ath_btcoex_scheme {
44 ATH_BTCOEX_CFG_NONE,
45 ATH_BTCOEX_CFG_2WIRE,
46 ATH_BTCOEX_CFG_3WIRE,
47};
48
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070049struct ath_btcoex_hw {
Luis R. Rodriguez46289e12009-09-09 14:34:22 -070050 enum ath_btcoex_scheme scheme;
Luis R. Rodriguez8c1b3952009-09-09 13:44:23 -070051 bool enabled;
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +053052 u8 wlanactive_gpio;
53 u8 btactive_gpio;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053054 u8 btpriority_gpio;
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +053055 u32 bt_coex_mode; /* Register setting for AR_BT_COEX_MODE */
56 u32 bt_coex_weights; /* Register setting for AR_BT_COEX_WEIGHT */
57 u32 bt_coex_mode2; /* Register setting for AR_BT_COEX_MODE2 */
Vasanthakumar Thiagarajanf14462c2009-08-26 21:08:46 +053058};
59
Luis R. Rodriguez75d78392009-09-09 04:00:10 -070060void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah);
61void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -070062void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum);
Luis R. Rodriguez5e197292009-09-09 15:15:55 -070063void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
64 u32 bt_weight,
65 u32 wlan_weight);
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +053066void ath9k_hw_btcoex_enable(struct ath_hw *ah);
67void ath9k_hw_btcoex_disable(struct ath_hw *ah);
Vivek Natarajan978f78b2011-04-26 10:39:52 +053068void ath9k_hw_btcoex_bt_stomp(struct ath_hw *ah,
69 enum ath_stomp_type stomp_type);
Luis R. Rodriguez2e202502009-09-09 01:18:09 -070070
Vasanthakumar Thiagarajan17d50d12009-08-26 21:08:44 +053071#endif