aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-fw.h
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2013-07-08 05:17:06 -0400
committerJohannes Berg <johannes.berg@intel.com>2013-07-31 05:04:59 -0400
commit5369d6c167317a99caf2c4c87957f07cd77a1888 (patch)
tree52ef4f2c28a16f6f6fea34227f73febade4422d1 /drivers/net/wireless/iwlwifi/iwl-fw.h
parent88f2fd7300da1b671255ef26469627206fe20a8e (diff)
iwlwifi: mvm: support six IPv6 addresses in D3
Newer firmware supports offloading more IPv6 addresses for NDP, adjust the code to send the correct command depending on the firmware capability. Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-fw.h')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-fw.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-fw.h b/drivers/net/wireless/iwlwifi/iwl-fw.h
index 46dc38a32115..b766ee9bb05a 100644
--- a/drivers/net/wireless/iwlwifi/iwl-fw.h
+++ b/drivers/net/wireless/iwlwifi/iwl-fw.h
@@ -76,6 +76,8 @@
76 * @IWL_UCODE_TLV_FLAGS_DW_BC_TABLE: The SCD byte count table is in DWORDS 76 * @IWL_UCODE_TLV_FLAGS_DW_BC_TABLE: The SCD byte count table is in DWORDS
77 * @IWL_UCODE_TLV_FLAGS_UAPSD: This uCode image supports uAPSD 77 * @IWL_UCODE_TLV_FLAGS_UAPSD: This uCode image supports uAPSD
78 * @IWL_UCODE_TLV_FLAGS_RX_ENERGY_API: supports rx signal strength api 78 * @IWL_UCODE_TLV_FLAGS_RX_ENERGY_API: supports rx signal strength api
79 * @IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS: D3 image supports up to six
80 * (rather than two) IPv6 addresses
79 */ 81 */
80enum iwl_ucode_tlv_flag { 82enum iwl_ucode_tlv_flag {
81 IWL_UCODE_TLV_FLAGS_PAN = BIT(0), 83 IWL_UCODE_TLV_FLAGS_PAN = BIT(0),
@@ -85,6 +87,7 @@ enum iwl_ucode_tlv_flag {
85 IWL_UCODE_TLV_FLAGS_DW_BC_TABLE = BIT(4), 87 IWL_UCODE_TLV_FLAGS_DW_BC_TABLE = BIT(4),
86 IWL_UCODE_TLV_FLAGS_UAPSD = BIT(6), 88 IWL_UCODE_TLV_FLAGS_UAPSD = BIT(6),
87 IWL_UCODE_TLV_FLAGS_RX_ENERGY_API = BIT(8), 89 IWL_UCODE_TLV_FLAGS_RX_ENERGY_API = BIT(8),
90 IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS = BIT(10),
88}; 91};
89 92
90/* The default calibrate table size if not specified by firmware file */ 93/* The default calibrate table size if not specified by firmware file */