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 | #include "ath9k.h" |
| 18 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 19 | static const struct ath_btcoex_config ath_bt_config = { 0, true, true, |
| 20 | ATH_BT_COEX_MODE_SLOTTED, true, true, 2, 5, true }; |
| 21 | |
Vasanthakumar Thiagarajan | fe12946 | 2009-09-09 15:25:50 +0530 | [diff] [blame] | 22 | static const u16 ath_subsysid_tbl[] = { |
| 23 | AR9280_COEX2WIRE_SUBSYSID, |
| 24 | AT9285_COEX3WIRE_SA_SUBSYSID, |
| 25 | AT9285_COEX3WIRE_DA_SUBSYSID |
| 26 | }; |
| 27 | |
| 28 | /* |
| 29 | * Checks the subsystem id of the device to see if it |
| 30 | * supports btcoex |
| 31 | */ |
| 32 | bool ath_btcoex_supported(u16 subsysid) |
| 33 | { |
| 34 | int i; |
| 35 | |
| 36 | if (!subsysid) |
| 37 | return false; |
| 38 | |
| 39 | for (i = 0; i < ARRAY_SIZE(ath_subsysid_tbl); i++) |
| 40 | if (subsysid == ath_subsysid_tbl[i]) |
| 41 | return true; |
| 42 | |
| 43 | return false; |
| 44 | } |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 45 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 46 | void ath9k_hw_init_btcoex_hw(struct ath_hw *ah, int qnum) |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 47 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 48 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 49 | u32 i; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 50 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 51 | btcoex_hw->bt_coex_mode = |
| 52 | (btcoex_hw->bt_coex_mode & AR_BT_QCU_THRESH) | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 53 | SM(ath_bt_config.bt_time_extend, AR_BT_TIME_EXTEND) | |
| 54 | SM(ath_bt_config.bt_txstate_extend, AR_BT_TXSTATE_EXTEND) | |
| 55 | SM(ath_bt_config.bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) | |
| 56 | SM(ath_bt_config.bt_mode, AR_BT_MODE) | |
| 57 | SM(ath_bt_config.bt_quiet_collision, AR_BT_QUIET) | |
| 58 | SM(ath_bt_config.bt_rxclear_polarity, AR_BT_RX_CLEAR_POLARITY) | |
| 59 | SM(ath_bt_config.bt_priority_time, AR_BT_PRIORITY_TIME) | |
| 60 | SM(ath_bt_config.bt_first_slot_time, AR_BT_FIRST_SLOT_TIME) | |
| 61 | SM(qnum, AR_BT_QCU_THRESH); |
| 62 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 63 | btcoex_hw->bt_coex_mode2 = |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 64 | SM(ath_bt_config.bt_hold_rx_clear, AR_BT_HOLD_RX_CLEAR) | |
| 65 | SM(ATH_BTCOEX_BMISS_THRESH, AR_BT_BCN_MISS_THRESH) | |
| 66 | AR_BT_DISABLE_BT_ANT; |
| 67 | |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 68 | for (i = 0; i < 32; i++) |
Luis R. Rodriguez | af03abe | 2009-09-09 02:33:11 -0700 | [diff] [blame] | 69 | ah->hw_gen_timers.gen_timer_index[(debruijn32 << i) >> 27] = i; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 70 | } |
| 71 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 72 | void ath9k_hw_btcoex_init_2wire(struct ath_hw *ah) |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 73 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 74 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 75 | |
| 76 | /* connect bt_active to baseband */ |
| 77 | REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 78 | (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF | |
| 79 | AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF)); |
| 80 | |
| 81 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 82 | AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB); |
| 83 | |
| 84 | /* Set input mux for bt_active to gpio pin */ |
| 85 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 86 | AR_GPIO_INPUT_MUX1_BT_ACTIVE, |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 87 | btcoex_hw->btactive_gpio); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 88 | |
| 89 | /* Configure the desired gpio port for input */ |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 90 | ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Luis R. Rodriguez | 75d7839 | 2009-09-09 04:00:10 -0700 | [diff] [blame] | 93 | void ath9k_hw_btcoex_init_3wire(struct ath_hw *ah) |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 94 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 95 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 96 | |
| 97 | /* btcoex 3-wire */ |
| 98 | REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, |
| 99 | (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB | |
| 100 | AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB)); |
| 101 | |
| 102 | /* Set input mux for bt_prority_async and |
| 103 | * bt_active_async to GPIO pins */ |
| 104 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 105 | AR_GPIO_INPUT_MUX1_BT_ACTIVE, |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 106 | btcoex_hw->btactive_gpio); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 107 | |
| 108 | REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1, |
| 109 | AR_GPIO_INPUT_MUX1_BT_PRIORITY, |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 110 | btcoex_hw->btpriority_gpio); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 111 | |
| 112 | /* Configure the desired GPIO ports for input */ |
| 113 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 114 | ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btactive_gpio); |
| 115 | ath9k_hw_cfg_gpio_input(ah, btcoex_hw->btpriority_gpio); |
Luis R. Rodriguez | 7a2f0f5 | 2009-09-09 02:54:40 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 118 | static void ath9k_hw_btcoex_enable_2wire(struct ath_hw *ah) |
| 119 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 120 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 121 | |
| 122 | /* Configure the desired GPIO port for TX_FRAME output */ |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 123 | ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio, |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 124 | AR_GPIO_OUTPUT_MUX_AS_TX_FRAME); |
| 125 | } |
| 126 | |
Luis R. Rodriguez | 5e19729 | 2009-09-09 15:15:55 -0700 | [diff] [blame^] | 127 | void ath9k_hw_btcoex_set_weight(struct ath_hw *ah, |
| 128 | u32 bt_weight, |
| 129 | u32 wlan_weight) |
| 130 | { |
| 131 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
| 132 | |
| 133 | btcoex_hw->bt_coex_weights = SM(bt_weight, AR_BTCOEX_BT_WGHT) | |
| 134 | SM(wlan_weight, AR_BTCOEX_WL_WGHT); |
| 135 | } |
| 136 | |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 137 | static void ath9k_hw_btcoex_enable_3wire(struct ath_hw *ah) |
| 138 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 139 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 140 | |
| 141 | /* |
| 142 | * Program coex mode and weight registers to |
| 143 | * enable coex 3-wire |
| 144 | */ |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 145 | REG_WRITE(ah, AR_BT_COEX_MODE, btcoex_hw->bt_coex_mode); |
| 146 | REG_WRITE(ah, AR_BT_COEX_WEIGHT, btcoex_hw->bt_coex_weights); |
| 147 | REG_WRITE(ah, AR_BT_COEX_MODE2, btcoex_hw->bt_coex_mode2); |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 148 | |
| 149 | REG_RMW_FIELD(ah, AR_QUIET1, AR_QUIET1_QUIET_ACK_CTS_ENABLE, 1); |
| 150 | REG_RMW_FIELD(ah, AR_PCU_MISC, AR_PCU_BT_ANT_PREVENT_RX, 0); |
| 151 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 152 | ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio, |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 153 | AR_GPIO_OUTPUT_MUX_AS_RX_CLEAR_EXTERNAL); |
| 154 | } |
| 155 | |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 156 | void ath9k_hw_btcoex_enable(struct ath_hw *ah) |
| 157 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 158 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 159 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 160 | switch (btcoex_hw->scheme) { |
Luis R. Rodriguez | bc74bf8 | 2009-09-09 04:17:45 -0700 | [diff] [blame] | 161 | case ATH_BTCOEX_CFG_NONE: |
| 162 | break; |
| 163 | case ATH_BTCOEX_CFG_2WIRE: |
| 164 | ath9k_hw_btcoex_enable_2wire(ah); |
| 165 | break; |
| 166 | case ATH_BTCOEX_CFG_3WIRE: |
| 167 | ath9k_hw_btcoex_enable_3wire(ah); |
| 168 | break; |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | REG_RMW(ah, AR_GPIO_PDPU, |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 172 | (0x2 << (btcoex_hw->btactive_gpio * 2)), |
| 173 | (0x3 << (btcoex_hw->btactive_gpio * 2))); |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 174 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 175 | ah->btcoex_hw.enabled = true; |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | void ath9k_hw_btcoex_disable(struct ath_hw *ah) |
| 179 | { |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 180 | struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw; |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 181 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 182 | ath9k_hw_set_gpio(ah, btcoex_hw->wlanactive_gpio, 0); |
Vasanthakumar Thiagarajan | f14462c | 2009-08-26 21:08:46 +0530 | [diff] [blame] | 183 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 184 | ath9k_hw_cfg_output(ah, btcoex_hw->wlanactive_gpio, |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 185 | AR_GPIO_OUTPUT_MUX_AS_OUTPUT); |
| 186 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 187 | if (btcoex_hw->scheme == ATH_BTCOEX_CFG_3WIRE) { |
Vasanthakumar Thiagarajan | 1773912 | 2009-08-26 21:08:50 +0530 | [diff] [blame] | 188 | REG_WRITE(ah, AR_BT_COEX_MODE, AR_BT_QUIET | AR_BT_MODE); |
| 189 | REG_WRITE(ah, AR_BT_COEX_WEIGHT, 0); |
| 190 | REG_WRITE(ah, AR_BT_COEX_MODE2, 0); |
| 191 | } |
| 192 | |
Luis R. Rodriguez | 766ec4a | 2009-09-09 14:52:02 -0700 | [diff] [blame] | 193 | ah->btcoex_hw.enabled = false; |
Vasanthakumar Thiagarajan | 17d50d1 | 2009-08-26 21:08:44 +0530 | [diff] [blame] | 194 | } |