Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 1 | /* |
| 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. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 20 | #include "hw.h" |
| 21 | |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 22 | #define ATH_WLANACTIVE_GPIO 5 |
| 23 | #define ATH_BTACTIVE_GPIO 6 |
Vasanthakumar Thiagarajan | 8c8f9ba | 2009-09-09 15:25:52 +0530 | [diff] [blame] | 24 | #define ATH_BTPRIORITY_GPIO 7 |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 25 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 26 | #define ATH_BTCOEX_DEF_BT_PERIOD 45 |
| 27 | #define ATH_BTCOEX_DEF_DUTY_CYCLE 55 |
| 28 | #define ATH_BTCOEX_BMISS_THRESH 50 |
| 29 | |
| 30 | #define ATH_BT_PRIORITY_TIME_THRESHOLD 1000 /* ms */ |
| 31 | #define ATH_BT_CNT_THRESHOLD 3 |
| 32 | |
Vasanthakumar Thiagarajan | 22f25d0 | 2009-08-26 21:08:47 +0530 | [diff] [blame] | 33 | enum ath_btcoex_scheme { |
| 34 | ATH_BTCOEX_CFG_NONE, |
| 35 | ATH_BTCOEX_CFG_2WIRE, |
| 36 | ATH_BTCOEX_CFG_3WIRE, |
| 37 | }; |
| 38 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 39 | enum ath_bt_mode { |
| 40 | ATH_BT_COEX_MODE_LEGACY, /* legacy rx_clear mode */ |
| 41 | ATH_BT_COEX_MODE_UNSLOTTED, /* untimed/unslotted mode */ |
| 42 | ATH_BT_COEX_MODE_SLOTTED, /* slotted mode */ |
| 43 | ATH_BT_COEX_MODE_DISALBED, /* coexistence disabled */ |
| 44 | }; |
| 45 | |
| 46 | struct ath_btcoex_config { |
| 47 | u8 bt_time_extend; |
| 48 | bool bt_txstate_extend; |
| 49 | bool bt_txframe_extend; |
| 50 | enum ath_bt_mode bt_mode; /* coexistence mode */ |
| 51 | bool bt_quiet_collision; |
| 52 | bool bt_rxclear_polarity; /* invert rx_clear as WLAN_ACTIVE*/ |
| 53 | u8 bt_priority_time; |
| 54 | u8 bt_first_slot_time; |
| 55 | bool bt_hold_rx_clear; |
| 56 | }; |
| 57 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 58 | struct ath_btcoex_hw { |
Luis R. Rodriguez | 46289e1 | 2009-09-09 14:34:22 -0700 | [diff] [blame] | 59 | enum ath_btcoex_scheme scheme; |
Luis R. Rodriguez | 8c1b395 | 2009-09-09 13:44:23 -0700 | [diff] [blame] | 60 | bool enabled; |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 61 | u8 wlanactive_gpio; |
| 62 | u8 btactive_gpio; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 63 | u8 btpriority_gpio; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 64 | u32 bt_coex_mode; /* Register setting for AR_BT_COEX_MODE */ |
| 65 | u32 bt_coex_weights; /* Register setting for AR_BT_COEX_WEIGHT */ |
| 66 | u32 bt_coex_mode2; /* Register setting for AR_BT_COEX_MODE2 */ |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 67 | }; |
| 68 | |
Vasanthakumar Thiagarajan | fe12946 | 2009-09-09 15:25:50 +0530 | [diff] [blame] | 69 | bool ath_btcoex_supported(u16 subsysid); |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 70 | void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah); |
| 71 | void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah); |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 72 | void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum); |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame^] | 73 | void ath9k_hw_btcoex_set_weight(struct ath_hw *ah, |
| 74 | u32 bt_weight, |
| 75 | u32 wlan_weight); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 76 | void ath9k_hw_btcoex_enable(struct ath_hw *ah); |
| 77 | void ath9k_hw_btcoex_disable(struct ath_hw *ah); |
Luis R. Rodriguez | 2e20250 | 2009-09-09 01:18:09 -0700 | [diff] [blame] | 78 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 79 | |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 80 | #endif |