diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2012-04-19 12:50:42 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-05-08 20:56:09 -0400 |
commit | 4d5ba61ca3607dacd84a86c61bae7752e3dd9cae (patch) | |
tree | 2a43c7c19dde44d7dcd6cac6c8e55b7b34dd33b7 | |
parent | 9dc4ca92aa3b1e6808e0296d90857eb4f6fc258b (diff) |
iwlwifi: add loose coex lut
Add the Loose coex LUT and will use later for better bt coex tpt
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-lib.c | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c index 9fb4c7d1bf3b..01dc44267317 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c | |||
@@ -186,7 +186,8 @@ done: | |||
186 | /* | 186 | /* |
187 | * BT coex | 187 | * BT coex |
188 | */ | 188 | */ |
189 | static const __le32 iwlagn_def_3w_lookup[12] = { | 189 | /* Notmal TDM */ |
190 | static const __le32 iwlagn_def_3w_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = { | ||
190 | cpu_to_le32(0xaaaaaaaa), | 191 | cpu_to_le32(0xaaaaaaaa), |
191 | cpu_to_le32(0xaaaaaaaa), | 192 | cpu_to_le32(0xaaaaaaaa), |
192 | cpu_to_le32(0xaeaaaaaa), | 193 | cpu_to_le32(0xaeaaaaaa), |
@@ -201,7 +202,25 @@ static const __le32 iwlagn_def_3w_lookup[12] = { | |||
201 | cpu_to_le32(0xf0005000), | 202 | cpu_to_le32(0xf0005000), |
202 | }; | 203 | }; |
203 | 204 | ||
204 | static const __le32 iwlagn_concurrent_lookup[12] = { | 205 | |
206 | /* Loose Coex */ | ||
207 | static const __le32 iwlagn_loose_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = { | ||
208 | cpu_to_le32(0xaaaaaaaa), | ||
209 | cpu_to_le32(0xaaaaaaaa), | ||
210 | cpu_to_le32(0xaeaaaaaa), | ||
211 | cpu_to_le32(0xaaaaaaaa), | ||
212 | cpu_to_le32(0xcc00ff28), | ||
213 | cpu_to_le32(0x0000aaaa), | ||
214 | cpu_to_le32(0xcc00aaaa), | ||
215 | cpu_to_le32(0x0000aaaa), | ||
216 | cpu_to_le32(0x00000000), | ||
217 | cpu_to_le32(0x00000000), | ||
218 | cpu_to_le32(0xf0005000), | ||
219 | cpu_to_le32(0xf0005000), | ||
220 | }; | ||
221 | |||
222 | /* Full concurrency */ | ||
223 | static const __le32 iwlagn_concurrent_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = { | ||
205 | cpu_to_le32(0xaaaaaaaa), | 224 | cpu_to_le32(0xaaaaaaaa), |
206 | cpu_to_le32(0xaaaaaaaa), | 225 | cpu_to_le32(0xaaaaaaaa), |
207 | cpu_to_le32(0xaaaaaaaa), | 226 | cpu_to_le32(0xaaaaaaaa), |