blob: c36c9563f7446a90c62184ddfee85a49b3c0aa68 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
Emmanuel Grumbachd01c5362015-11-17 15:39:56 +020029 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010030 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *****************************************************************************/
64
65#ifndef __fw_api_d3_h__
66#define __fw_api_d3_h__
67
68/**
69 * enum iwl_d3_wakeup_flags - D3 manager wakeup flags
70 * @IWL_WAKEUP_D3_CONFIG_FW_ERROR: wake up on firmware sysassert
71 */
72enum iwl_d3_wakeup_flags {
73 IWL_WAKEUP_D3_CONFIG_FW_ERROR = BIT(0),
74}; /* D3_MANAGER_WAKEUP_CONFIG_API_E_VER_3 */
75
76/**
77 * struct iwl_d3_manager_config - D3 manager configuration command
78 * @min_sleep_time: minimum sleep time (in usec)
79 * @wakeup_flags: wakeup flags, see &enum iwl_d3_wakeup_flags
Johannes Bergdfcb4c32013-05-15 11:44:49 +020080 * @wakeup_host_timer: force wakeup after this many seconds
Johannes Berg8ca151b2013-01-24 14:25:36 +010081 *
82 * The structure is used for the D3_CONFIG_CMD command.
83 */
84struct iwl_d3_manager_config {
85 __le32 min_sleep_time;
86 __le32 wakeup_flags;
Johannes Bergdfcb4c32013-05-15 11:44:49 +020087 __le32 wakeup_host_timer;
88} __packed; /* D3_MANAGER_CONFIG_CMD_S_VER_4 */
Johannes Berg8ca151b2013-01-24 14:25:36 +010089
90
91/* TODO: OFFLOADS_QUERY_API_S_VER_1 */
92
93/**
94 * enum iwl_d3_proto_offloads - enabled protocol offloads
95 * @IWL_D3_PROTO_OFFLOAD_ARP: ARP data is enabled
96 * @IWL_D3_PROTO_OFFLOAD_NS: NS (Neighbor Solicitation) is enabled
Sara Sharonc97dab42015-11-19 11:53:49 +020097 * @IWL_D3_PROTO_IPV4_VALID: IPv4 data is valid
98 * @IWL_D3_PROTO_IPV6_VALID: IPv6 data is valid
Johannes Berg8ca151b2013-01-24 14:25:36 +010099 */
100enum iwl_proto_offloads {
101 IWL_D3_PROTO_OFFLOAD_ARP = BIT(0),
102 IWL_D3_PROTO_OFFLOAD_NS = BIT(1),
Sara Sharonc97dab42015-11-19 11:53:49 +0200103 IWL_D3_PROTO_IPV4_VALID = BIT(2),
104 IWL_D3_PROTO_IPV6_VALID = BIT(3),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100105};
106
Johannes Berg5369d6c2013-07-08 11:17:06 +0200107#define IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V1 2
108#define IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V2 6
Johannes Bergf7fc5982013-08-20 13:04:10 +0200109#define IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V3L 12
110#define IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V3S 4
111#define IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_MAX 12
112
113#define IWL_PROTO_OFFLOAD_NUM_NS_CONFIG_V3L 4
114#define IWL_PROTO_OFFLOAD_NUM_NS_CONFIG_V3S 2
Johannes Berg8ca151b2013-01-24 14:25:36 +0100115
116/**
Johannes Berg5369d6c2013-07-08 11:17:06 +0200117 * struct iwl_proto_offload_cmd_common - ARP/NS offload common part
Johannes Berg8ca151b2013-01-24 14:25:36 +0100118 * @enabled: enable flags
119 * @remote_ipv4_addr: remote address to answer to (or zero if all)
120 * @host_ipv4_addr: our IPv4 address to respond to queries for
121 * @arp_mac_addr: our MAC address for ARP responses
Johannes Berg5369d6c2013-07-08 11:17:06 +0200122 * @reserved: unused
123 */
124struct iwl_proto_offload_cmd_common {
125 __le32 enabled;
126 __be32 remote_ipv4_addr;
127 __be32 host_ipv4_addr;
128 u8 arp_mac_addr[ETH_ALEN];
129 __le16 reserved;
130} __packed;
131
132/**
133 * struct iwl_proto_offload_cmd_v1 - ARP/NS offload configuration
134 * @common: common/IPv4 configuration
Johannes Berg8ca151b2013-01-24 14:25:36 +0100135 * @remote_ipv6_addr: remote address to answer to (or zero if all)
136 * @solicited_node_ipv6_addr: broken -- solicited node address exists
137 * for each target address
138 * @target_ipv6_addr: our target addresses
Sara Sharon0d365ae2015-03-31 12:24:05 +0300139 * @ndp_mac_addr: neighbor solicitation response MAC address
Johannes Berg8ca151b2013-01-24 14:25:36 +0100140 */
Johannes Berg5369d6c2013-07-08 11:17:06 +0200141struct iwl_proto_offload_cmd_v1 {
142 struct iwl_proto_offload_cmd_common common;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100143 u8 remote_ipv6_addr[16];
144 u8 solicited_node_ipv6_addr[16];
Johannes Berg5369d6c2013-07-08 11:17:06 +0200145 u8 target_ipv6_addr[IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V1][16];
Johannes Berg8ca151b2013-01-24 14:25:36 +0100146 u8 ndp_mac_addr[ETH_ALEN];
147 __le16 reserved2;
148} __packed; /* PROT_OFFLOAD_CONFIG_CMD_DB_S_VER_1 */
149
Johannes Berg5369d6c2013-07-08 11:17:06 +0200150/**
151 * struct iwl_proto_offload_cmd_v2 - ARP/NS offload configuration
152 * @common: common/IPv4 configuration
153 * @remote_ipv6_addr: remote address to answer to (or zero if all)
154 * @solicited_node_ipv6_addr: broken -- solicited node address exists
155 * for each target address
156 * @target_ipv6_addr: our target addresses
Sara Sharon0d365ae2015-03-31 12:24:05 +0300157 * @ndp_mac_addr: neighbor solicitation response MAC address
Johannes Berg5369d6c2013-07-08 11:17:06 +0200158 */
159struct iwl_proto_offload_cmd_v2 {
160 struct iwl_proto_offload_cmd_common common;
161 u8 remote_ipv6_addr[16];
162 u8 solicited_node_ipv6_addr[16];
163 u8 target_ipv6_addr[IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V2][16];
164 u8 ndp_mac_addr[ETH_ALEN];
165 u8 numValidIPv6Addresses;
166 u8 reserved2[3];
167} __packed; /* PROT_OFFLOAD_CONFIG_CMD_DB_S_VER_2 */
168
Johannes Bergf7fc5982013-08-20 13:04:10 +0200169struct iwl_ns_config {
170 struct in6_addr source_ipv6_addr;
171 struct in6_addr dest_ipv6_addr;
172 u8 target_mac_addr[ETH_ALEN];
173 __le16 reserved;
174} __packed; /* NS_OFFLOAD_CONFIG */
175
176struct iwl_targ_addr {
177 struct in6_addr addr;
178 __le32 config_num;
179} __packed; /* TARGET_IPV6_ADDRESS */
180
181/**
182 * struct iwl_proto_offload_cmd_v3_small - ARP/NS offload configuration
183 * @common: common/IPv4 configuration
184 * @target_ipv6_addr: target IPv6 addresses
185 * @ns_config: NS offload configurations
186 */
187struct iwl_proto_offload_cmd_v3_small {
188 struct iwl_proto_offload_cmd_common common;
189 __le32 num_valid_ipv6_addrs;
190 struct iwl_targ_addr targ_addrs[IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V3S];
191 struct iwl_ns_config ns_config[IWL_PROTO_OFFLOAD_NUM_NS_CONFIG_V3S];
192} __packed; /* PROT_OFFLOAD_CONFIG_CMD_DB_S_VER_3 */
193
194/**
195 * struct iwl_proto_offload_cmd_v3_large - ARP/NS offload configuration
196 * @common: common/IPv4 configuration
197 * @target_ipv6_addr: target IPv6 addresses
198 * @ns_config: NS offload configurations
199 */
200struct iwl_proto_offload_cmd_v3_large {
201 struct iwl_proto_offload_cmd_common common;
202 __le32 num_valid_ipv6_addrs;
203 struct iwl_targ_addr targ_addrs[IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_V3L];
204 struct iwl_ns_config ns_config[IWL_PROTO_OFFLOAD_NUM_NS_CONFIG_V3L];
205} __packed; /* PROT_OFFLOAD_CONFIG_CMD_DB_S_VER_3 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100206
207/*
208 * WOWLAN_PATTERNS
209 */
210#define IWL_WOWLAN_MIN_PATTERN_LEN 16
211#define IWL_WOWLAN_MAX_PATTERN_LEN 128
212
213struct iwl_wowlan_pattern {
214 u8 mask[IWL_WOWLAN_MAX_PATTERN_LEN / 8];
215 u8 pattern[IWL_WOWLAN_MAX_PATTERN_LEN];
216 u8 mask_size;
217 u8 pattern_size;
218 __le16 reserved;
219} __packed; /* WOWLAN_PATTERN_API_S_VER_1 */
220
221#define IWL_WOWLAN_MAX_PATTERNS 20
222
223struct iwl_wowlan_patterns_cmd {
224 __le32 n_patterns;
225 struct iwl_wowlan_pattern patterns[];
226} __packed; /* WOWLAN_PATTERN_ARRAY_API_S_VER_1 */
227
228enum iwl_wowlan_wakeup_filters {
229 IWL_WOWLAN_WAKEUP_MAGIC_PACKET = BIT(0),
230 IWL_WOWLAN_WAKEUP_PATTERN_MATCH = BIT(1),
231 IWL_WOWLAN_WAKEUP_BEACON_MISS = BIT(2),
232 IWL_WOWLAN_WAKEUP_LINK_CHANGE = BIT(3),
233 IWL_WOWLAN_WAKEUP_GTK_REKEY_FAIL = BIT(4),
234 IWL_WOWLAN_WAKEUP_EAP_IDENT_REQ = BIT(5),
235 IWL_WOWLAN_WAKEUP_4WAY_HANDSHAKE = BIT(6),
236 IWL_WOWLAN_WAKEUP_ENABLE_NET_DETECT = BIT(7),
237 IWL_WOWLAN_WAKEUP_RF_KILL_DEASSERT = BIT(8),
238 IWL_WOWLAN_WAKEUP_REMOTE_LINK_LOSS = BIT(9),
239 IWL_WOWLAN_WAKEUP_REMOTE_SIGNATURE_TABLE = BIT(10),
Eliad Pellerb77f06d2013-11-06 10:49:32 +0200240 IWL_WOWLAN_WAKEUP_REMOTE_TCP_EXTERNAL = BIT(11),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100241 IWL_WOWLAN_WAKEUP_REMOTE_WAKEUP_PACKET = BIT(12),
Eliad Pellerb77f06d2013-11-06 10:49:32 +0200242 IWL_WOWLAN_WAKEUP_IOAC_MAGIC_PACKET = BIT(13),
243 IWL_WOWLAN_WAKEUP_HOST_TIMER = BIT(14),
244 IWL_WOWLAN_WAKEUP_RX_FRAME = BIT(15),
245 IWL_WOWLAN_WAKEUP_BCN_FILTERING = BIT(16),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100246}; /* WOWLAN_WAKEUP_FILTER_API_E_VER_4 */
247
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200248struct iwl_wowlan_config_cmd {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100249 __le32 wakeup_filter;
250 __le16 non_qos_seq;
251 __le16 qos_seq[8];
252 u8 wowlan_ba_teardown_tids;
253 u8 is_11n_connection;
Eliad Peller1a95c8d2013-11-21 19:19:52 +0200254 u8 offloading_tid;
255 u8 reserved[3];
256} __packed; /* WOWLAN_CONFIG_API_S_VER_3 */
257
Johannes Berg8ca151b2013-01-24 14:25:36 +0100258/*
259 * WOWLAN_TSC_RSC_PARAMS
260 */
261#define IWL_NUM_RSC 16
262
263struct tkip_sc {
264 __le16 iv16;
265 __le16 pad;
266 __le32 iv32;
267} __packed; /* TKIP_SC_API_U_VER_1 */
268
269struct iwl_tkip_rsc_tsc {
270 struct tkip_sc unicast_rsc[IWL_NUM_RSC];
271 struct tkip_sc multicast_rsc[IWL_NUM_RSC];
272 struct tkip_sc tsc;
273} __packed; /* TKIP_TSC_RSC_API_S_VER_1 */
274
275struct aes_sc {
276 __le64 pn;
277} __packed; /* TKIP_AES_SC_API_U_VER_1 */
278
279struct iwl_aes_rsc_tsc {
280 struct aes_sc unicast_rsc[IWL_NUM_RSC];
281 struct aes_sc multicast_rsc[IWL_NUM_RSC];
282 struct aes_sc tsc;
283} __packed; /* AES_TSC_RSC_API_S_VER_1 */
284
285union iwl_all_tsc_rsc {
286 struct iwl_tkip_rsc_tsc tkip;
287 struct iwl_aes_rsc_tsc aes;
288}; /* ALL_TSC_RSC_API_S_VER_2 */
289
290struct iwl_wowlan_rsc_tsc_params_cmd {
291 union iwl_all_tsc_rsc all_tsc_rsc;
292} __packed; /* ALL_TSC_RSC_API_S_VER_2 */
293
294#define IWL_MIC_KEY_SIZE 8
295struct iwl_mic_keys {
296 u8 tx[IWL_MIC_KEY_SIZE];
297 u8 rx_unicast[IWL_MIC_KEY_SIZE];
298 u8 rx_mcast[IWL_MIC_KEY_SIZE];
299} __packed; /* MIC_KEYS_API_S_VER_1 */
300
301#define IWL_P1K_SIZE 5
302struct iwl_p1k_cache {
303 __le16 p1k[IWL_P1K_SIZE];
304} __packed;
305
306#define IWL_NUM_RX_P1K_CACHE 2
307
308struct iwl_wowlan_tkip_params_cmd {
309 struct iwl_mic_keys mic_keys;
310 struct iwl_p1k_cache tx;
311 struct iwl_p1k_cache rx_uni[IWL_NUM_RX_P1K_CACHE];
312 struct iwl_p1k_cache rx_multi[IWL_NUM_RX_P1K_CACHE];
313} __packed; /* WOWLAN_TKIP_SETTING_API_S_VER_1 */
314
315#define IWL_KCK_MAX_SIZE 32
316#define IWL_KEK_MAX_SIZE 32
317
318struct iwl_wowlan_kek_kck_material_cmd {
319 u8 kck[IWL_KCK_MAX_SIZE];
320 u8 kek[IWL_KEK_MAX_SIZE];
321 __le16 kck_len;
322 __le16 kek_len;
323 __le64 replay_ctr;
324} __packed; /* KEK_KCK_MATERIAL_API_S_VER_2 */
325
326#define RF_KILL_INDICATOR_FOR_WOWLAN 0x87
327
328enum iwl_wowlan_rekey_status {
329 IWL_WOWLAN_REKEY_POST_REKEY = 0,
330 IWL_WOWLAN_REKEY_WHILE_REKEY = 1,
331}; /* WOWLAN_REKEY_STATUS_API_E_VER_1 */
332
333enum iwl_wowlan_wakeup_reason {
334 IWL_WOWLAN_WAKEUP_BY_NON_WIRELESS = 0,
335 IWL_WOWLAN_WAKEUP_BY_MAGIC_PACKET = BIT(0),
336 IWL_WOWLAN_WAKEUP_BY_PATTERN = BIT(1),
337 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON = BIT(2),
338 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH = BIT(3),
339 IWL_WOWLAN_WAKEUP_BY_GTK_REKEY_FAILURE = BIT(4),
340 IWL_WOWLAN_WAKEUP_BY_RFKILL_DEASSERTED = BIT(5),
341 IWL_WOWLAN_WAKEUP_BY_UCODE_ERROR = BIT(6),
342 IWL_WOWLAN_WAKEUP_BY_EAPOL_REQUEST = BIT(7),
343 IWL_WOWLAN_WAKEUP_BY_FOUR_WAY_HANDSHAKE = BIT(8),
344 IWL_WOWLAN_WAKEUP_BY_REM_WAKE_LINK_LOSS = BIT(9),
345 IWL_WOWLAN_WAKEUP_BY_REM_WAKE_SIGNATURE_TABLE = BIT(10),
Sara Sharonba537f92015-08-19 16:29:31 +0300346 IWL_WOWLAN_WAKEUP_BY_REM_WAKE_TCP_EXTERNAL = BIT(11),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100347 IWL_WOWLAN_WAKEUP_BY_REM_WAKE_WAKEUP_PACKET = BIT(12),
Sara Sharonba537f92015-08-19 16:29:31 +0300348 IWL_WOWLAN_WAKEUP_BY_IOAC_MAGIC_PACKET = BIT(13),
349 IWL_WOWLAN_WAKEUP_BY_D3_WAKEUP_HOST_TIMER = BIT(14),
350 IWL_WOWLAN_WAKEUP_BY_RXFRAME_FILTERED_IN = BIT(15),
351 IWL_WOWLAN_WAKEUP_BY_BEACON_FILTERED_IN = BIT(16),
352
Johannes Berg8ca151b2013-01-24 14:25:36 +0100353}; /* WOWLAN_WAKE_UP_REASON_API_E_VER_2 */
354
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200355struct iwl_wowlan_gtk_status {
356 u8 key_index;
357 u8 reserved[3];
358 u8 decrypt_key[16];
359 u8 tkip_mic_key[8];
360 struct iwl_wowlan_rsc_tsc_params_cmd rsc;
361} __packed;
362
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +0300363struct iwl_wowlan_status {
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200364 struct iwl_wowlan_gtk_status gtk;
365 __le64 replay_ctr;
366 __le16 pattern_number;
367 __le16 non_qos_seq_ctr;
368 __le16 qos_seq_ctr[8];
369 __le32 wakeup_reasons;
370 __le32 num_of_gtk_rekeys;
371 __le32 transmitted_ndps;
372 __le32 received_beacons;
373 __le32 wake_packet_length;
374 __le32 wake_packet_bufsize;
375 u8 wake_packet[]; /* can be truncated from _length to _bufsize */
376} __packed; /* WOWLAN_STATUSES_API_S_VER_6 */
377
Johannes Bergf0c26462013-01-22 20:41:58 +0100378#define IWL_WOWLAN_TCP_MAX_PACKET_LEN 64
379#define IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN 128
380#define IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS 2048
381
382struct iwl_tcp_packet_info {
383 __le16 tcp_pseudo_header_checksum;
384 __le16 tcp_payload_length;
385} __packed; /* TCP_PACKET_INFO_API_S_VER_2 */
386
387struct iwl_tcp_packet {
388 struct iwl_tcp_packet_info info;
389 u8 rx_mask[IWL_WOWLAN_MAX_PATTERN_LEN / 8];
390 u8 data[IWL_WOWLAN_TCP_MAX_PACKET_LEN];
391} __packed; /* TCP_PROTOCOL_PACKET_API_S_VER_1 */
392
393struct iwl_remote_wake_packet {
394 struct iwl_tcp_packet_info info;
395 u8 rx_mask[IWL_WOWLAN_MAX_PATTERN_LEN / 8];
396 u8 data[IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN];
397} __packed; /* TCP_PROTOCOL_PACKET_API_S_VER_1 */
398
399struct iwl_wowlan_remote_wake_config {
400 __le32 connection_max_time; /* unused */
401 /* TCP_PROTOCOL_CONFIG_API_S_VER_1 */
402 u8 max_syn_retries;
403 u8 max_data_retries;
404 u8 tcp_syn_ack_timeout;
405 u8 tcp_ack_timeout;
406
407 struct iwl_tcp_packet syn_tx;
408 struct iwl_tcp_packet synack_rx;
409 struct iwl_tcp_packet keepalive_ack_rx;
410 struct iwl_tcp_packet fin_tx;
411
412 struct iwl_remote_wake_packet keepalive_tx;
413 struct iwl_remote_wake_packet wake_rx;
414
415 /* REMOTE_WAKE_OFFSET_INFO_API_S_VER_1 */
416 u8 sequence_number_offset;
417 u8 sequence_number_length;
418 u8 token_offset;
419 u8 token_length;
420 /* REMOTE_WAKE_PROTOCOL_PARAMS_API_S_VER_1 */
421 __le32 initial_sequence_number;
422 __le16 keepalive_interval;
423 __le16 num_tokens;
424 u8 tokens[IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS];
425} __packed; /* REMOTE_WAKE_CONFIG_API_S_VER_2 */
426
Johannes Berg8ca151b2013-01-24 14:25:36 +0100427/* TODO: NetDetect API */
428
429#endif /* __fw_api_d3_h__ */