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