diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-05-11 10:28:05 -0400 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-05-13 06:55:21 -0400 |
commit | 2adc8949efab1fd6e95402fc3d40596fbdecbacb (patch) | |
tree | 825a375c42e2af25663c6e7429f87badf2b63603 | |
parent | 6f3610588174ef0cb73a4e604ae62ecf6eb8b9f9 (diff) |
iwlwifi: mvm: BT Coex - fix boost register / LUT values
These values are used to give preference to WiFi according
to a certain pattern.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/coex.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/coex.c b/drivers/net/wireless/iwlwifi/mvm/coex.c index 2b87a77047cb..3833f2cae187 100644 --- a/drivers/net/wireless/iwlwifi/mvm/coex.c +++ b/drivers/net/wireless/iwlwifi/mvm/coex.c | |||
@@ -124,10 +124,10 @@ const u32 iwl_bt_cts_kill_msk[BT_KILL_MSK_MAX] = { | |||
124 | }; | 124 | }; |
125 | 125 | ||
126 | static const __le32 iwl_bt_prio_boost[BT_COEX_BOOST_SIZE] = { | 126 | static const __le32 iwl_bt_prio_boost[BT_COEX_BOOST_SIZE] = { |
127 | cpu_to_le32(0xf0f0f0f0), | 127 | cpu_to_le32(0xf0f0f0f0), /* 50% */ |
128 | cpu_to_le32(0xc0c0c0c0), | 128 | cpu_to_le32(0xc0c0c0c0), /* 25% */ |
129 | cpu_to_le32(0xfcfcfcfc), | 129 | cpu_to_le32(0xfcfcfcfc), /* 75% */ |
130 | cpu_to_le32(0xff00ff00), | 130 | cpu_to_le32(0xfefefefe), /* 87.5% */ |
131 | }; | 131 | }; |
132 | 132 | ||
133 | static const __le32 iwl_single_shared_ant[BT_COEX_MAX_LUT][BT_COEX_LUT_SIZE] = { | 133 | static const __le32 iwl_single_shared_ant[BT_COEX_MAX_LUT][BT_COEX_LUT_SIZE] = { |
@@ -300,8 +300,8 @@ static const __le64 iwl_ci_mask[][3] = { | |||
300 | }; | 300 | }; |
301 | 301 | ||
302 | static const __le32 iwl_bt_mprio_lut[BT_COEX_MULTI_PRIO_LUT_SIZE] = { | 302 | static const __le32 iwl_bt_mprio_lut[BT_COEX_MULTI_PRIO_LUT_SIZE] = { |
303 | cpu_to_le32(0x22002200), | 303 | cpu_to_le32(0x28412201), |
304 | cpu_to_le32(0x33113311), | 304 | cpu_to_le32(0x11118451), |
305 | }; | 305 | }; |
306 | 306 | ||
307 | struct corunning_block_luts { | 307 | struct corunning_block_luts { |