blob: 4ae0085c58ea00554fa4ea157bec5ec720fc6e87 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
Juuso Oikarinen1937e742010-02-18 13:25:52 +02005 * Copyright (C) 2008-2010 Nokia Corporation
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03006 *
7 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
Shahar Levi00d20102010-11-08 11:20:10 +000025#ifndef __ACX_H__
26#define __ACX_H__
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030027
Shahar Levi00d20102010-11-08 11:20:10 +000028#include "wl12xx.h"
29#include "cmd.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030030
31/*************************************************************************
32
33 Host Interrupt Register (WiLink -> Host)
34
35**************************************************************************/
36/* HW Initiated interrupt Watchdog timer expiration */
37#define WL1271_ACX_INTR_WATCHDOG BIT(0)
38/* Init sequence is done (masked interrupt, detection through polling only ) */
39#define WL1271_ACX_INTR_INIT_COMPLETE BIT(1)
40/* Event was entered to Event MBOX #A*/
41#define WL1271_ACX_INTR_EVENT_A BIT(2)
42/* Event was entered to Event MBOX #B*/
43#define WL1271_ACX_INTR_EVENT_B BIT(3)
44/* Command processing completion*/
45#define WL1271_ACX_INTR_CMD_COMPLETE BIT(4)
46/* Signaling the host on HW wakeup */
47#define WL1271_ACX_INTR_HW_AVAILABLE BIT(5)
48/* The MISC bit is used for aggregation of RX, TxComplete and TX rate update */
49#define WL1271_ACX_INTR_DATA BIT(6)
Stefan Weile8a8b252011-01-02 15:12:42 +010050/* Trace message on MBOX #A */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030051#define WL1271_ACX_INTR_TRACE_A BIT(7)
Stefan Weile8a8b252011-01-02 15:12:42 +010052/* Trace message on MBOX #B */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030053#define WL1271_ACX_INTR_TRACE_B BIT(8)
54
55#define WL1271_ACX_INTR_ALL 0xFFFFFFFF
56#define WL1271_ACX_ALL_EVENTS_VECTOR (WL1271_ACX_INTR_WATCHDOG | \
57 WL1271_ACX_INTR_INIT_COMPLETE | \
58 WL1271_ACX_INTR_EVENT_A | \
59 WL1271_ACX_INTR_EVENT_B | \
60 WL1271_ACX_INTR_CMD_COMPLETE | \
61 WL1271_ACX_INTR_HW_AVAILABLE | \
62 WL1271_ACX_INTR_DATA)
63
Eliad Pellerccc83b02010-10-27 14:09:57 +020064#define WL1271_INTR_MASK (WL1271_ACX_INTR_WATCHDOG | \
65 WL1271_ACX_INTR_EVENT_A | \
Luciano Coelho37079a82009-10-12 15:08:45 +030066 WL1271_ACX_INTR_EVENT_B | \
67 WL1271_ACX_INTR_HW_AVAILABLE | \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030068 WL1271_ACX_INTR_DATA)
69
70/* Target's information element */
71struct acx_header {
72 struct wl1271_cmd_header cmd;
73
74 /* acx (or information element) header */
Luciano Coelhod0f63b22009-10-15 10:33:29 +030075 __le16 id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030076
77 /* payload length (not including headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +030078 __le16 len;
Eric Dumazetba2d3582010-06-02 18:10:09 +000079} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030080
81struct acx_error_counter {
82 struct acx_header header;
83
84 /* The number of PLCP errors since the last time this */
85 /* information element was interrogated. This field is */
86 /* automatically cleared when it is interrogated.*/
Luciano Coelhod0f63b22009-10-15 10:33:29 +030087 __le32 PLCP_error;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030088
89 /* The number of FCS errors since the last time this */
90 /* information element was interrogated. This field is */
91 /* automatically cleared when it is interrogated.*/
Luciano Coelhod0f63b22009-10-15 10:33:29 +030092 __le32 FCS_error;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030093
94 /* The number of MPDUs without PLCP header errors received*/
95 /* since the last time this information element was interrogated. */
96 /* This field is automatically cleared when it is interrogated.*/
Luciano Coelhod0f63b22009-10-15 10:33:29 +030097 __le32 valid_frame;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030098
99 /* the number of missed sequence numbers in the squentially */
100 /* values of frames seq numbers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300101 __le32 seq_num_miss;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000102} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300103
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300104enum wl1271_psm_mode {
105 /* Active mode */
106 WL1271_PSM_CAM = 0,
107
108 /* Power save mode */
109 WL1271_PSM_PS = 1,
110
111 /* Extreme low power */
112 WL1271_PSM_ELP = 2,
113};
114
115struct acx_sleep_auth {
116 struct acx_header header;
117
118 /* The sleep level authorization of the device. */
119 /* 0 - Always active*/
120 /* 1 - Power down mode: light / fast sleep*/
121 /* 2 - ELP mode: Deep / Max sleep*/
122 u8 sleep_auth;
123 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000124} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300125
126enum {
127 HOSTIF_PCI_MASTER_HOST_INDIRECT,
128 HOSTIF_PCI_MASTER_HOST_DIRECT,
129 HOSTIF_SLAVE,
130 HOSTIF_PKT_RING,
131 HOSTIF_DONTCARE = 0xFF
132};
133
134#define DEFAULT_UCAST_PRIORITY 0
135#define DEFAULT_RX_Q_PRIORITY 0
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300136#define DEFAULT_RXQ_PRIORITY 0 /* low 0 .. 15 high */
137#define DEFAULT_RXQ_TYPE 0x07 /* All frames, Data/Ctrl/Mgmt */
138#define TRACE_BUFFER_MAX_SIZE 256
139
140#define DP_RX_PACKET_RING_CHUNK_SIZE 1600
141#define DP_TX_PACKET_RING_CHUNK_SIZE 1600
142#define DP_RX_PACKET_RING_CHUNK_NUM 2
143#define DP_TX_PACKET_RING_CHUNK_NUM 2
144#define DP_TX_COMPLETE_TIME_OUT 20
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300145
146#define TX_MSDU_LIFETIME_MIN 0
147#define TX_MSDU_LIFETIME_MAX 3000
148#define TX_MSDU_LIFETIME_DEF 512
149#define RX_MSDU_LIFETIME_MIN 0
150#define RX_MSDU_LIFETIME_MAX 0xFFFFFFFF
151#define RX_MSDU_LIFETIME_DEF 512000
152
153struct acx_rx_msdu_lifetime {
154 struct acx_header header;
155
156 /*
157 * The maximum amount of time, in TU, before the
158 * firmware discards the MSDU.
159 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300160 __le32 lifetime;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000161} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300162
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300163struct acx_packet_detection {
164 struct acx_header header;
165
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300166 __le32 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000167} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300168
169
170enum acx_slot_type {
171 SLOT_TIME_LONG = 0,
172 SLOT_TIME_SHORT = 1,
173 DEFAULT_SLOT_TIME = SLOT_TIME_SHORT,
174 MAX_SLOT_TIMES = 0xFF
175};
176
177#define STATION_WONE_INDEX 0
178
179struct acx_slot {
180 struct acx_header header;
181
182 u8 wone_index; /* Reserved */
183 u8 slot_time;
184 u8 reserved[6];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000185} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300186
187
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300188#define ACX_MC_ADDRESS_GROUP_MAX (8)
189#define ADDRESS_GROUP_MAX_LEN (ETH_ALEN * ACX_MC_ADDRESS_GROUP_MAX)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300190
191struct acx_dot11_grp_addr_tbl {
192 struct acx_header header;
193
194 u8 enabled;
195 u8 num_groups;
196 u8 pad[2];
197 u8 mac_table[ADDRESS_GROUP_MAX_LEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000198} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300199
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300200struct acx_rx_timeout {
201 struct acx_header header;
202
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300203 __le16 ps_poll_timeout;
204 __le16 upsd_timeout;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000205} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300206
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300207struct acx_rts_threshold {
208 struct acx_header header;
209
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300210 __le16 threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300211 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000212} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300213
214struct acx_beacon_filter_option {
215 struct acx_header header;
216
217 u8 enable;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300218 /*
219 * The number of beacons without the unicast TIM
220 * bit set that the firmware buffers before
221 * signaling the host about ready frames.
222 * When set to 0 and the filter is enabled, beacons
223 * without the unicast TIM bit set are dropped.
224 */
225 u8 max_num_beacons;
226 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000227} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300228
229/*
230 * ACXBeaconFilterEntry (not 221)
231 * Byte Offset Size (Bytes) Definition
232 * =========== ============ ==========
Juuso Oikarinen1937e742010-02-18 13:25:52 +0200233 * 0 1 IE identifier
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300234 * 1 1 Treatment bit mask
235 *
236 * ACXBeaconFilterEntry (221)
237 * Byte Offset Size (Bytes) Definition
238 * =========== ============ ==========
239 * 0 1 IE identifier
240 * 1 1 Treatment bit mask
241 * 2 3 OUI
242 * 5 1 Type
243 * 6 2 Version
244 *
245 *
246 * Treatment bit mask - The information element handling:
247 * bit 0 - The information element is compared and transferred
248 * in case of change.
249 * bit 1 - The information element is transferred to the host
250 * with each appearance or disappearance.
251 * Note that both bits can be set at the same time.
252 */
253#define BEACON_FILTER_TABLE_MAX_IE_NUM (32)
254#define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
255#define BEACON_FILTER_TABLE_IE_ENTRY_SIZE (2)
256#define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
257#define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
258 BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
259 (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
260 BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))
261
262struct acx_beacon_filter_ie_table {
263 struct acx_header header;
264
265 u8 num_ie;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300266 u8 pad[3];
Juuso Oikarinen1937e742010-02-18 13:25:52 +0200267 u8 table[BEACON_FILTER_TABLE_MAX_SIZE];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000268} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300269
Juuso Oikarinen34415232009-10-08 21:56:33 +0300270struct acx_conn_monit_params {
271 struct acx_header header;
272
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300273 __le32 synch_fail_thold; /* number of beacons missed */
274 __le32 bss_lose_timeout; /* number of TU's from synch fail */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000275} __packed;
Juuso Oikarinen34415232009-10-08 21:56:33 +0300276
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300277struct acx_bt_wlan_coex {
278 struct acx_header header;
279
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300280 u8 enable;
281 u8 pad[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000282} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300283
Arik Nemtsov801f8702011-04-18 14:15:20 +0300284struct acx_sta_bt_wlan_coex_param {
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200285 struct acx_header header;
286
Arik Nemtsov801f8702011-04-18 14:15:20 +0300287 __le32 params[CONF_SG_STA_PARAMS_MAX];
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200288 u8 param_idx;
289 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000290} __packed;
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200291
Arik Nemtsov801f8702011-04-18 14:15:20 +0300292struct acx_ap_bt_wlan_coex_param {
293 struct acx_header header;
294
295 __le32 params[CONF_SG_AP_PARAMS_MAX];
296 u8 param_idx;
297 u8 padding[3];
298} __packed;
299
300
Luciano Coelho6e92b412009-12-11 15:40:50 +0200301struct acx_dco_itrim_params {
302 struct acx_header header;
303
304 u8 enable;
305 u8 padding[3];
306 __le32 timeout;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000307} __packed;
Luciano Coelho6e92b412009-12-11 15:40:50 +0200308
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300309struct acx_energy_detection {
310 struct acx_header header;
311
312 /* The RX Clear Channel Assessment threshold in the PHY */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300313 __le16 rx_cca_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300314 u8 tx_energy_detection;
315 u8 pad;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000316} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300317
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300318struct acx_beacon_broadcast {
319 struct acx_header header;
320
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300321 __le16 beacon_rx_timeout;
322 __le16 broadcast_timeout;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300323
324 /* Enables receiving of broadcast packets in PS mode */
325 u8 rx_broadcast_in_ps;
326
327 /* Consecutive PS Poll failures before updating the host */
328 u8 ps_poll_threshold;
329 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000330} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300331
332struct acx_event_mask {
333 struct acx_header header;
334
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300335 __le32 event_mask;
336 __le32 high_event_mask; /* Unused */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000337} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300338
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300339#define SCAN_PASSIVE BIT(0)
340#define SCAN_5GHZ_BAND BIT(1)
341#define SCAN_TRIGGERED BIT(2)
342#define SCAN_PRIORITY_HIGH BIT(3)
343
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300344/* When set, disable HW encryption */
345#define DF_ENCRYPTION_DISABLE 0x01
346#define DF_SNIFF_MODE_ENABLE 0x80
347
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300348struct acx_feature_config {
349 struct acx_header header;
350
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300351 __le32 options;
352 __le32 data_flow_options;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000353} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300354
355struct acx_current_tx_power {
356 struct acx_header header;
357
358 u8 current_tx_power;
359 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000360} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300361
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300362struct acx_wake_up_condition {
363 struct acx_header header;
364
365 u8 wake_up_event; /* Only one bit can be set */
366 u8 listen_interval;
367 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000368} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300369
370struct acx_aid {
371 struct acx_header header;
372
373 /*
374 * To be set when associated with an AP.
375 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300376 __le16 aid;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300377 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000378} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300379
380enum acx_preamble_type {
381 ACX_PREAMBLE_LONG = 0,
382 ACX_PREAMBLE_SHORT = 1
383};
384
385struct acx_preamble {
386 struct acx_header header;
387
388 /*
389 * When set, the WiLink transmits the frames with a short preamble and
390 * when cleared, the WiLink transmits the frames with a long preamble.
391 */
392 u8 preamble;
393 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000394} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300395
396enum acx_ctsprotect_type {
397 CTSPROTECT_DISABLE = 0,
398 CTSPROTECT_ENABLE = 1
399};
400
401struct acx_ctsprotect {
402 struct acx_header header;
403 u8 ctsprotect;
404 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000405} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300406
407struct acx_tx_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300408 __le32 internal_desc_overflow;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000409} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300410
411struct acx_rx_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300412 __le32 out_of_mem;
413 __le32 hdr_overflow;
414 __le32 hw_stuck;
415 __le32 dropped;
416 __le32 fcs_err;
417 __le32 xfr_hint_trig;
418 __le32 path_reset;
419 __le32 reset_counter;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000420} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300421
422struct acx_dma_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300423 __le32 rx_requested;
424 __le32 rx_errors;
425 __le32 tx_requested;
426 __le32 tx_errors;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000427} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300428
429struct acx_isr_statistics {
430 /* host command complete */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300431 __le32 cmd_cmplt;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300432
433 /* fiqisr() */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300434 __le32 fiqs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300435
436 /* (INT_STS_ND & INT_TRIG_RX_HEADER) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300437 __le32 rx_headers;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300438
439 /* (INT_STS_ND & INT_TRIG_RX_CMPLT) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300440 __le32 rx_completes;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300441
442 /* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300443 __le32 rx_mem_overflow;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300444
445 /* (INT_STS_ND & INT_TRIG_S_RX_RDY) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300446 __le32 rx_rdys;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300447
448 /* irqisr() */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300449 __le32 irqs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300450
451 /* (INT_STS_ND & INT_TRIG_TX_PROC) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300452 __le32 tx_procs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300453
454 /* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300455 __le32 decrypt_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300456
457 /* (INT_STS_ND & INT_TRIG_DMA0) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300458 __le32 dma0_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300459
460 /* (INT_STS_ND & INT_TRIG_DMA1) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300461 __le32 dma1_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300462
463 /* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300464 __le32 tx_exch_complete;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300465
466 /* (INT_STS_ND & INT_TRIG_COMMAND) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300467 __le32 commands;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300468
469 /* (INT_STS_ND & INT_TRIG_RX_PROC) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300470 __le32 rx_procs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300471
472 /* (INT_STS_ND & INT_TRIG_PM_802) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300473 __le32 hw_pm_mode_changes;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300474
475 /* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300476 __le32 host_acknowledges;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300477
478 /* (INT_STS_ND & INT_TRIG_PM_PCI) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300479 __le32 pci_pm;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300480
481 /* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300482 __le32 wakeups;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300483
484 /* (INT_STS_ND & INT_TRIG_LOW_RSSI) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300485 __le32 low_rssi;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000486} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300487
488struct acx_wep_statistics {
489 /* WEP address keys configured */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300490 __le32 addr_key_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300491
492 /* default keys configured */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300493 __le32 default_key_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300494
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300495 __le32 reserved;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300496
497 /* number of times that WEP key not found on lookup */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300498 __le32 key_not_found;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300499
500 /* number of times that WEP key decryption failed */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300501 __le32 decrypt_fail;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300502
503 /* WEP packets decrypted */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300504 __le32 packets;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300505
506 /* WEP decrypt interrupts */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300507 __le32 interrupt;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000508} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300509
510#define ACX_MISSED_BEACONS_SPREAD 10
511
512struct acx_pwr_statistics {
513 /* the amount of enters into power save mode (both PD & ELP) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300514 __le32 ps_enter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300515
516 /* the amount of enters into ELP mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300517 __le32 elp_enter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300518
519 /* the amount of missing beacon interrupts to the host */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300520 __le32 missing_bcns;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300521
522 /* the amount of wake on host-access times */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300523 __le32 wake_on_host;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300524
525 /* the amount of wake on timer-expire */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300526 __le32 wake_on_timer_exp;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300527
528 /* the number of packets that were transmitted with PS bit set */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300529 __le32 tx_with_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300530
531 /* the number of packets that were transmitted with PS bit clear */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300532 __le32 tx_without_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300533
534 /* the number of received beacons */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300535 __le32 rcvd_beacons;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300536
537 /* the number of entering into PowerOn (power save off) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300538 __le32 power_save_off;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300539
540 /* the number of entries into power save mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300541 __le16 enable_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300542
543 /*
544 * the number of exits from power save, not including failed PS
545 * transitions
546 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300547 __le16 disable_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300548
549 /*
550 * the number of times the TSF counter was adjusted because
551 * of drift
552 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300553 __le32 fix_tsf_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300554
555 /* Gives statistics about the spread continuous missed beacons.
556 * The 16 LSB are dedicated for the PS mode.
557 * The 16 MSB are dedicated for the PS mode.
558 * cont_miss_bcns_spread[0] - single missed beacon.
559 * cont_miss_bcns_spread[1] - two continuous missed beacons.
560 * cont_miss_bcns_spread[2] - three continuous missed beacons.
561 * ...
562 * cont_miss_bcns_spread[9] - ten and more continuous missed beacons.
563 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300564 __le32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300565
566 /* the number of beacons in awake mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300567 __le32 rcvd_awake_beacons;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000568} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300569
570struct acx_mic_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300571 __le32 rx_pkts;
572 __le32 calc_failure;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000573} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300574
575struct acx_aes_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300576 __le32 encrypt_fail;
577 __le32 decrypt_fail;
578 __le32 encrypt_packets;
579 __le32 decrypt_packets;
580 __le32 encrypt_interrupt;
581 __le32 decrypt_interrupt;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000582} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300583
584struct acx_event_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300585 __le32 heart_beat;
586 __le32 calibration;
587 __le32 rx_mismatch;
588 __le32 rx_mem_empty;
589 __le32 rx_pool;
590 __le32 oom_late;
591 __le32 phy_transmit_error;
592 __le32 tx_stuck;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000593} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300594
595struct acx_ps_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300596 __le32 pspoll_timeouts;
597 __le32 upsd_timeouts;
598 __le32 upsd_max_sptime;
599 __le32 upsd_max_apturn;
600 __le32 pspoll_max_apturn;
601 __le32 pspoll_utilization;
602 __le32 upsd_utilization;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000603} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300604
605struct acx_rxpipe_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300606 __le32 rx_prep_beacon_drop;
607 __le32 descr_host_int_trig_rx_data;
608 __le32 beacon_buffer_thres_host_int_trig_rx_data;
609 __le32 missed_beacon_host_int_trig_rx_data;
610 __le32 tx_xfr_host_int_trig_rx_data;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000611} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300612
613struct acx_statistics {
614 struct acx_header header;
615
616 struct acx_tx_statistics tx;
617 struct acx_rx_statistics rx;
618 struct acx_dma_statistics dma;
619 struct acx_isr_statistics isr;
620 struct acx_wep_statistics wep;
621 struct acx_pwr_statistics pwr;
622 struct acx_aes_statistics aes;
623 struct acx_mic_statistics mic;
624 struct acx_event_statistics event;
625 struct acx_ps_statistics ps;
626 struct acx_rxpipe_statistics rxpipe;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000627} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300628
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300629struct acx_rate_class {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300630 __le32 enabled_rates;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300631 u8 short_retry_limit;
632 u8 long_retry_limit;
633 u8 aflags;
634 u8 reserved;
635};
636
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200637#define ACX_TX_BASIC_RATE 0
638#define ACX_TX_AP_FULL_RATE 1
639#define ACX_TX_RATE_POLICY_CNT 2
Arik Nemtsov79b223f2010-10-16 17:52:59 +0200640struct acx_sta_rate_policy {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300641 struct acx_header header;
642
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300643 __le32 rate_class_cnt;
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300644 struct acx_rate_class rate_class[CONF_TX_MAX_RATE_CLASSES];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000645} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300646
Arik Nemtsov79b223f2010-10-16 17:52:59 +0200647
648#define ACX_TX_AP_MODE_MGMT_RATE 4
649#define ACX_TX_AP_MODE_BCST_RATE 5
650struct acx_ap_rate_policy {
651 struct acx_header header;
652
653 __le32 rate_policy_idx;
654 struct acx_rate_class rate_policy;
655} __packed;
656
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300657struct acx_ac_cfg {
658 struct acx_header header;
659 u8 ac;
660 u8 cw_min;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300661 __le16 cw_max;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300662 u8 aifsn;
663 u8 reserved;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300664 __le16 tx_op_limit;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000665} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300666
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300667struct acx_tid_config {
668 struct acx_header header;
669 u8 queue_id;
670 u8 channel_type;
671 u8 tsid;
672 u8 ps_scheme;
673 u8 ack_policy;
674 u8 padding[3];
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300675 __le32 apsd_conf[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000676} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300677
678struct acx_frag_threshold {
679 struct acx_header header;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300680 __le16 frag_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300681 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000682} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300683
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300684struct acx_tx_config_options {
685 struct acx_header header;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300686 __le16 tx_compl_timeout; /* msec */
687 __le16 tx_compl_threshold; /* number of packets */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000688} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300689
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300690#define ACX_TX_DESCRIPTORS 32
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300691
Eliad Pellerc8bde242011-02-02 09:59:35 +0200692struct wl1271_acx_ap_config_memory {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300693 struct acx_header header;
694
695 u8 rx_mem_block_num;
696 u8 tx_min_mem_block_num;
697 u8 num_stations;
698 u8 num_ssid_profiles;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300699 __le32 total_tx_descriptors;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000700} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300701
Eliad Pellerc8bde242011-02-02 09:59:35 +0200702struct wl1271_acx_sta_config_memory {
703 struct acx_header header;
704
705 u8 rx_mem_block_num;
706 u8 tx_min_mem_block_num;
707 u8 num_stations;
708 u8 num_ssid_profiles;
709 __le32 total_tx_descriptors;
710 u8 dyn_mem_enable;
711 u8 tx_free_req;
712 u8 rx_free_req;
713 u8 tx_min;
Ido Yariv95dac04f2011-06-06 14:57:06 +0300714 u8 fwlog_blocks;
715 u8 padding[3];
Eliad Pellerc8bde242011-02-02 09:59:35 +0200716} __packed;
717
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300718struct wl1271_acx_mem_map {
719 struct acx_header header;
720
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300721 __le32 code_start;
722 __le32 code_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300723
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300724 __le32 wep_defkey_start;
725 __le32 wep_defkey_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300726
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300727 __le32 sta_table_start;
728 __le32 sta_table_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300729
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300730 __le32 packet_template_start;
731 __le32 packet_template_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300732
733 /* Address of the TX result interface (control block) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300734 __le32 tx_result;
735 __le32 tx_result_queue_start;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300736
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300737 __le32 queue_memory_start;
738 __le32 queue_memory_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300739
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300740 __le32 packet_memory_pool_start;
741 __le32 packet_memory_pool_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300742
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300743 __le32 debug_buffer1_start;
744 __le32 debug_buffer1_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300745
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300746 __le32 debug_buffer2_start;
747 __le32 debug_buffer2_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300748
749 /* Number of blocks FW allocated for TX packets */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300750 __le32 num_tx_mem_blocks;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300751
752 /* Number of blocks FW allocated for RX packets */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300753 __le32 num_rx_mem_blocks;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300754
755 /* the following 4 fields are valid in SLAVE mode only */
756 u8 *tx_cbuf;
757 u8 *rx_cbuf;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300758 __le32 rx_ctrl;
759 __le32 tx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000760} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300761
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300762struct wl1271_acx_rx_config_opt {
763 struct acx_header header;
764
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300765 __le16 mblk_threshold;
766 __le16 threshold;
767 __le16 timeout;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300768 u8 queue_type;
769 u8 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000770} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300771
Juuso Oikarinen11f70f92009-10-13 12:47:46 +0300772
773struct wl1271_acx_bet_enable {
774 struct acx_header header;
775
776 u8 enable;
777 u8 max_consecutive;
778 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000779} __packed;
Juuso Oikarinen11f70f92009-10-13 12:47:46 +0300780
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300781#define ACX_IPV4_VERSION 4
782#define ACX_IPV6_VERSION 6
783#define ACX_IPV4_ADDR_SIZE 4
Eliad Pellerc5312772010-12-09 11:31:27 +0200784
785/* bitmap of enabled arp_filter features */
786#define ACX_ARP_FILTER_ARP_FILTERING BIT(0)
787#define ACX_ARP_FILTER_AUTO_ARP BIT(1)
788
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300789struct wl1271_acx_arp_filter {
790 struct acx_header header;
791 u8 version; /* ACX_IPV4_VERSION, ACX_IPV6_VERSION */
Eliad Pellerc5312772010-12-09 11:31:27 +0200792 u8 enable; /* bitmap of enabled ARP filtering features */
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300793 u8 padding[2];
794 u8 address[16]; /* The configured device IP address - all ARP
795 requests directed to this IP address will pass
796 through. For IPv4, the first four bytes are
797 used. */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000798} __packed;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300799
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +0200800struct wl1271_acx_pm_config {
801 struct acx_header header;
802
803 __le32 host_clk_settling_time;
804 u8 host_fast_wakeup_support;
805 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000806} __packed;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300807
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200808struct wl1271_acx_keep_alive_mode {
809 struct acx_header header;
810
811 u8 enabled;
812 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000813} __packed;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200814
815enum {
816 ACX_KEEP_ALIVE_NO_TX = 0,
817 ACX_KEEP_ALIVE_PERIOD_ONLY
818};
819
820enum {
821 ACX_KEEP_ALIVE_TPL_INVALID = 0,
822 ACX_KEEP_ALIVE_TPL_VALID
823};
824
825struct wl1271_acx_keep_alive_config {
826 struct acx_header header;
827
828 __le32 period;
829 u8 index;
830 u8 tpl_validation;
831 u8 trigger;
832 u8 padding;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000833} __packed;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200834
Shahar Levi48a61472011-03-06 16:32:08 +0200835#define HOST_IF_CFG_RX_FIFO_ENABLE BIT(0)
836#define HOST_IF_CFG_TX_EXTRA_BLKS_SWAP BIT(1)
837#define HOST_IF_CFG_TX_PAD_TO_SDIO_BLK BIT(3)
838
839struct wl1271_acx_host_config_bitmap {
840 struct acx_header header;
841
842 __le32 host_cfg_bitmap;
843} __packed;
844
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300845enum {
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300846 WL1271_ACX_TRIG_TYPE_LEVEL = 0,
847 WL1271_ACX_TRIG_TYPE_EDGE,
848};
849
850enum {
851 WL1271_ACX_TRIG_DIR_LOW = 0,
852 WL1271_ACX_TRIG_DIR_HIGH,
853 WL1271_ACX_TRIG_DIR_BIDIR,
854};
855
856enum {
857 WL1271_ACX_TRIG_ENABLE = 1,
858 WL1271_ACX_TRIG_DISABLE,
859};
860
861enum {
862 WL1271_ACX_TRIG_METRIC_RSSI_BEACON = 0,
863 WL1271_ACX_TRIG_METRIC_RSSI_DATA,
864 WL1271_ACX_TRIG_METRIC_SNR_BEACON,
865 WL1271_ACX_TRIG_METRIC_SNR_DATA,
866};
867
868enum {
869 WL1271_ACX_TRIG_IDX_RSSI = 0,
870 WL1271_ACX_TRIG_COUNT = 8,
871};
872
873struct wl1271_acx_rssi_snr_trigger {
874 struct acx_header header;
875
876 __le16 threshold;
877 __le16 pacing; /* 0 - 60000 ms */
878 u8 metric;
879 u8 type;
880 u8 dir;
881 u8 hysteresis;
882 u8 index;
883 u8 enable;
884 u8 padding[2];
885};
886
887struct wl1271_acx_rssi_snr_avg_weights {
888 struct acx_header header;
889
890 u8 rssi_beacon;
891 u8 rssi_data;
892 u8 snr_beacon;
893 u8 snr_data;
894};
895
Shahar Levie8b03a22010-10-13 16:09:39 +0200896/*
897 * ACX_PEER_HT_CAP
898 * Configure HT capabilities - declare the capabilities of the peer
899 * we are connected to.
900 */
901struct wl1271_acx_ht_capabilities {
902 struct acx_header header;
903
904 /*
905 * bit 0 - Allow HT Operation
906 * bit 1 - Allow Greenfield format in TX
907 * bit 2 - Allow Short GI in TX
908 * bit 3 - Allow L-SIG TXOP Protection in TX
909 * bit 4 - Allow HT Control fields in TX.
910 * Note, driver will still leave space for HT control in packets
911 * regardless of the value of this field. FW will be responsible
912 * to drop the HT field from any frame when this Bit set to 0.
913 * bit 5 - Allow RD initiation in TXOP. FW is allowed to initate RD.
914 * Exact policy setting for this feature is TBD.
915 * Note, this bit can only be set to 1 if bit 3 is set to 1.
916 */
917 __le32 ht_capabilites;
918
919 /*
920 * Indicates to which peer these capabilities apply.
921 * For infrastructure use ff:ff:ff:ff:ff:ff that indicates relevance
922 * for all peers.
923 * Only valid for IBSS/DLS operation.
924 */
925 u8 mac_address[ETH_ALEN];
926
927 /*
928 * This the maximum A-MPDU length supported by the AP. The FW may not
929 * exceed this length when sending A-MPDUs
930 */
931 u8 ampdu_max_length;
932
933 /* This is the minimal spacing required when sending A-MPDUs to the AP*/
934 u8 ampdu_min_spacing;
935} __packed;
936
937/* HT Capabilites Fw Bit Mask Mapping */
938#define WL1271_ACX_FW_CAP_HT_OPERATION BIT(0)
939#define WL1271_ACX_FW_CAP_GREENFIELD_FRAME_FORMAT BIT(1)
940#define WL1271_ACX_FW_CAP_SHORT_GI_FOR_20MHZ_PACKETS BIT(2)
941#define WL1271_ACX_FW_CAP_LSIG_TXOP_PROTECTION BIT(3)
942#define WL1271_ACX_FW_CAP_HT_CONTROL_FIELDS BIT(4)
943#define WL1271_ACX_FW_CAP_RD_INITIATION BIT(5)
944
945
946/*
947 * ACX_HT_BSS_OPERATION
948 * Configure HT capabilities - AP rules for behavior in the BSS.
949 */
950struct wl1271_acx_ht_information {
951 struct acx_header header;
952
953 /* Values: 0 - RIFS not allowed, 1 - RIFS allowed */
954 u8 rifs_mode;
955
956 /* Values: 0 - 3 like in spec */
957 u8 ht_protection;
958
959 /* Values: 0 - GF protection not required, 1 - GF protection required */
960 u8 gf_protection;
961
962 /*Values: 0 - TX Burst limit not required, 1 - TX Burst Limit required*/
963 u8 ht_tx_burst_limit;
964
965 /*
966 * Values: 0 - Dual CTS protection not required,
967 * 1 - Dual CTS Protection required
968 * Note: When this value is set to 1 FW will protect all TXOP with RTS
969 * frame and will not use CTS-to-self regardless of the value of the
970 * ACX_CTS_PROTECTION information element
971 */
972 u8 dual_cts_protection;
973
974 u8 padding[3];
975} __packed;
976
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100977#define RX_BA_WIN_SIZE 8
978
979struct wl1271_acx_ba_session_policy {
980 struct acx_header header;
981 /*
982 * Specifies role Id, Range 0-7, 0xFF means ANY role.
983 * Future use. For now this field is irrelevant
984 */
985 u8 role_id;
986 /*
987 * Specifies Link Id, Range 0-31, 0xFF means ANY Link Id.
988 * Not applicable if Role Id is set to ANY.
989 */
990 u8 link_id;
991
992 u8 tid;
993
994 u8 enable;
995
996 /* Windows size in number of packets */
997 u16 win_size;
998
999 /*
1000 * As initiator inactivity timeout in time units(TU) of 1024us.
1001 * As receiver reserved
1002 */
1003 u16 inactivity_timeout;
1004
1005 /* Initiator = 1/Receiver = 0 */
1006 u8 ba_direction;
1007
1008 u8 padding[3];
1009} __packed;
1010
Levi, Shaharbbba3e62011-01-23 07:27:23 +01001011struct wl1271_acx_ba_receiver_setup {
1012 struct acx_header header;
1013
1014 /* Specifies Link Id, Range 0-31, 0xFF means ANY Link Id */
1015 u8 link_id;
1016
1017 u8 tid;
1018
1019 u8 enable;
1020
1021 u8 padding[1];
1022
1023 /* Windows size in number of packets */
1024 u16 win_size;
1025
1026 /* BA session starting sequence number. RANGE 0-FFF */
1027 u16 ssn;
1028} __packed;
1029
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001030struct wl1271_acx_fw_tsf_information {
1031 struct acx_header header;
1032
1033 __le32 current_tsf_high;
1034 __le32 current_tsf_low;
1035 __le32 last_bttt_high;
1036 __le32 last_tbtt_low;
1037 u8 last_dtim_count;
1038 u8 padding[3];
Luciano Coelho72e93e92010-07-09 14:10:58 +03001039} __packed;
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001040
Eliad Pellerf84673d2011-05-15 11:10:28 +03001041struct wl1271_acx_ps_rx_streaming {
1042 struct acx_header header;
1043
1044 u8 tid;
1045 u8 enable;
1046
1047 /* interval between triggers (10-100 msec) */
1048 u8 period;
1049
1050 /* timeout before first trigger (0-200 msec) */
1051 u8 timeout;
1052} __packed;
1053
Arik Nemtsov3618f302011-06-26 10:36:03 +03001054struct wl1271_acx_ap_max_tx_retry {
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001055 struct acx_header header;
1056
1057 /*
1058 * the number of frames transmission failures before
1059 * issuing the aging event.
1060 */
1061 __le16 max_tx_retry;
1062 u8 padding_1[2];
1063} __packed;
1064
Eliad Pelleree608332011-02-02 09:59:34 +02001065struct wl1271_acx_config_ps {
1066 struct acx_header header;
1067
1068 u8 exit_retries;
1069 u8 enter_retries;
1070 u8 padding[2];
1071 __le32 null_data_rate;
1072} __packed;
1073
Arik Nemtsov99a27752011-02-23 00:22:25 +02001074struct wl1271_acx_inconnection_sta {
1075 struct acx_header header;
1076
1077 u8 addr[ETH_ALEN];
1078 u8 padding1[2];
1079} __packed;
1080
Arik Nemtsov521a4a22011-04-18 14:15:22 +03001081struct acx_ap_beacon_filter {
1082 struct acx_header header;
1083
1084 u8 enable;
1085 u8 pad[3];
1086} __packed;
1087
Shahar Leviff868432011-04-11 15:41:46 +03001088/*
1089 * ACX_FM_COEX_CFG
1090 * set the FM co-existence parameters.
1091 */
1092struct wl1271_acx_fm_coex {
1093 struct acx_header header;
1094 /* enable(1) / disable(0) the FM Coex feature */
1095 u8 enable;
1096 /*
1097 * Swallow period used in COEX PLL swallowing mechanism.
1098 * 0xFF = use FW default
1099 */
1100 u8 swallow_period;
1101 /*
1102 * The N divider used in COEX PLL swallowing mechanism for Fref of
1103 * 38.4/19.2 Mhz. 0xFF = use FW default
1104 */
1105 u8 n_divider_fref_set_1;
1106 /*
1107 * The N divider used in COEX PLL swallowing mechanism for Fref of
1108 * 26/52 Mhz. 0xFF = use FW default
1109 */
1110 u8 n_divider_fref_set_2;
1111 /*
1112 * The M divider used in COEX PLL swallowing mechanism for Fref of
1113 * 38.4/19.2 Mhz. 0xFFFF = use FW default
1114 */
1115 __le16 m_divider_fref_set_1;
1116 /*
1117 * The M divider used in COEX PLL swallowing mechanism for Fref of
1118 * 26/52 Mhz. 0xFFFF = use FW default
1119 */
1120 __le16 m_divider_fref_set_2;
1121 /*
1122 * The time duration in uSec required for COEX PLL to stabilize.
1123 * 0xFFFFFFFF = use FW default
1124 */
1125 __le32 coex_pll_stabilization_time;
1126 /*
1127 * The time duration in uSec required for LDO to stabilize.
1128 * 0xFFFFFFFF = use FW default
1129 */
1130 __le16 ldo_stabilization_time;
1131 /*
1132 * The disturbed frequency band margin around the disturbed frequency
1133 * center (single sided).
1134 * For example, if 2 is configured, the following channels will be
1135 * considered disturbed channel:
1136 * 80 +- 0.1 MHz, 91 +- 0.1 MHz, 98 +- 0.1 MHz, 102 +- 0.1 MH
1137 * 0xFF = use FW default
1138 */
1139 u8 fm_disturbed_band_margin;
1140 /*
1141 * The swallow clock difference of the swallowing mechanism.
1142 * 0xFF = use FW default
1143 */
1144 u8 swallow_clk_diff;
1145} __packed;
1146
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001147enum {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001148 ACX_WAKE_UP_CONDITIONS = 0x0002,
1149 ACX_MEM_CFG = 0x0003,
1150 ACX_SLOT = 0x0004,
1151 ACX_AC_CFG = 0x0007,
1152 ACX_MEM_MAP = 0x0008,
1153 ACX_AID = 0x000A,
1154 /* ACX_FW_REV is missing in the ref driver, but seems to work */
1155 ACX_FW_REV = 0x000D,
1156 ACX_MEDIUM_USAGE = 0x000F,
1157 ACX_RX_CFG = 0x0010,
1158 ACX_TX_QUEUE_CFG = 0x0011, /* FIXME: only used by wl1251 */
1159 ACX_STATISTICS = 0x0013, /* Debug API */
1160 ACX_PWR_CONSUMPTION_STATISTICS = 0x0014,
1161 ACX_FEATURE_CFG = 0x0015,
1162 ACX_TID_CFG = 0x001A,
1163 ACX_PS_RX_STREAMING = 0x001B,
1164 ACX_BEACON_FILTER_OPT = 0x001F,
Arik Nemtsov521a4a22011-04-18 14:15:22 +03001165 ACX_AP_BEACON_FILTER_OPT = 0x0020,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001166 ACX_NOISE_HIST = 0x0021,
1167 ACX_HDK_VERSION = 0x0022, /* ??? */
1168 ACX_PD_THRESHOLD = 0x0023,
1169 ACX_TX_CONFIG_OPT = 0x0024,
1170 ACX_CCA_THRESHOLD = 0x0025,
1171 ACX_EVENT_MBOX_MASK = 0x0026,
1172 ACX_CONN_MONIT_PARAMS = 0x002D,
1173 ACX_CONS_TX_FAILURE = 0x002F,
1174 ACX_BCN_DTIM_OPTIONS = 0x0031,
1175 ACX_SG_ENABLE = 0x0032,
1176 ACX_SG_CFG = 0x0033,
Shahar Leviff868432011-04-11 15:41:46 +03001177 ACX_FM_COEX_CFG = 0x0034,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001178 ACX_BEACON_FILTER_TABLE = 0x0038,
1179 ACX_ARP_IP_FILTER = 0x0039,
1180 ACX_ROAMING_STATISTICS_TBL = 0x003B,
1181 ACX_RATE_POLICY = 0x003D,
1182 ACX_CTS_PROTECTION = 0x003E,
1183 ACX_SLEEP_AUTH = 0x003F,
1184 ACX_PREAMBLE_TYPE = 0x0040,
1185 ACX_ERROR_CNT = 0x0041,
1186 ACX_IBSS_FILTER = 0x0044,
1187 ACX_SERVICE_PERIOD_TIMEOUT = 0x0045,
1188 ACX_TSF_INFO = 0x0046,
1189 ACX_CONFIG_PS_WMM = 0x0049,
1190 ACX_ENABLE_RX_DATA_FILTER = 0x004A,
1191 ACX_SET_RX_DATA_FILTER = 0x004B,
1192 ACX_GET_DATA_FILTER_STATISTICS = 0x004C,
1193 ACX_RX_CONFIG_OPT = 0x004E,
1194 ACX_FRAG_CFG = 0x004F,
1195 ACX_BET_ENABLE = 0x0050,
1196 ACX_RSSI_SNR_TRIGGER = 0x0051,
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001197 ACX_RSSI_SNR_WEIGHTS = 0x0052,
Juuso Oikarinenc1899552010-03-26 12:53:32 +02001198 ACX_KEEP_ALIVE_MODE = 0x0053,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001199 ACX_SET_KEEP_ALIVE_CONFIG = 0x0054,
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001200 ACX_BA_SESSION_POLICY_CFG = 0x0055,
1201 ACX_BA_SESSION_RX_SETUP = 0x0056,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001202 ACX_PEER_HT_CAP = 0x0057,
1203 ACX_HT_BSS_OPERATION = 0x0058,
1204 ACX_COEX_ACTIVITY = 0x0059,
Luciano Coelho6e92b412009-12-11 15:40:50 +02001205 ACX_SET_DCO_ITRIM_PARAMS = 0x0061,
Eliad Pellerc8bde242011-02-02 09:59:35 +02001206 ACX_GEN_FW_CMD = 0x0070,
1207 ACX_HOST_IF_CFG_BITMAP = 0x0071,
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001208 ACX_MAX_TX_FAILURE = 0x0072,
Arik Nemtsov99a27752011-02-23 00:22:25 +02001209 ACX_UPDATE_INCONNECTION_STA_LIST = 0x0073,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001210 DOT11_RX_MSDU_LIFE_TIME = 0x1004,
1211 DOT11_CUR_TX_PWR = 0x100D,
1212 DOT11_RX_DOT11_MODE = 0x1012,
1213 DOT11_RTS_THRESHOLD = 0x1013,
1214 DOT11_GROUP_ADDRESS_TBL = 0x1014,
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001215 ACX_PM_CONFIG = 0x1016,
Eliad Pelleree608332011-02-02 09:59:34 +02001216 ACX_CONFIG_PS = 0x1017,
Eliad Pellerc8bde242011-02-02 09:59:35 +02001217 ACX_CONFIG_HANGOVER = 0x1018,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001218};
1219
1220
Juuso Oikarinen51f2be22009-10-13 12:47:42 +03001221int wl1271_acx_wake_up_conditions(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001222int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001223int wl1271_acx_tx_power(struct wl1271 *wl, int power);
1224int wl1271_acx_feature_cfg(struct wl1271 *wl);
1225int wl1271_acx_mem_map(struct wl1271 *wl,
1226 struct acx_header *mem_map, size_t len);
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +03001227int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001228int wl1271_acx_pd_threshold(struct wl1271 *wl);
1229int wl1271_acx_slot(struct wl1271 *wl, enum acx_slot_type slot_time);
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03001230int wl1271_acx_group_address_tbl(struct wl1271 *wl, bool enable,
1231 void *mc_list, u32 mc_list_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001232int wl1271_acx_service_period_timeout(struct wl1271 *wl);
Arik Nemtsov5f704d12011-04-18 14:15:21 +03001233int wl1271_acx_rts_threshold(struct wl1271 *wl, u32 rts_threshold);
Luciano Coelho6e92b412009-12-11 15:40:50 +02001234int wl1271_acx_dco_itrim_params(struct wl1271 *wl);
Juuso Oikarinen19221672009-10-08 21:56:35 +03001235int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, bool enable_filter);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001236int wl1271_acx_beacon_filter_table(struct wl1271 *wl);
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +02001237int wl1271_acx_conn_monit_params(struct wl1271 *wl, bool enable);
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02001238int wl1271_acx_sg_enable(struct wl1271 *wl, bool enable);
Arik Nemtsov801f8702011-04-18 14:15:20 +03001239int wl1271_acx_sta_sg_cfg(struct wl1271 *wl);
1240int wl1271_acx_ap_sg_cfg(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001241int wl1271_acx_cca_threshold(struct wl1271 *wl);
1242int wl1271_acx_bcn_dtim_options(struct wl1271 *wl);
1243int wl1271_acx_aid(struct wl1271 *wl, u16 aid);
1244int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask);
1245int wl1271_acx_set_preamble(struct wl1271 *wl, enum acx_preamble_type preamble);
1246int wl1271_acx_cts_protect(struct wl1271 *wl,
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001247 enum acx_ctsprotect_type ctsprotect);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001248int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats);
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001249int wl1271_acx_sta_rate_policies(struct wl1271 *wl);
1250int wl1271_acx_ap_rate_policy(struct wl1271 *wl, struct conf_tx_rate_class *c,
1251 u8 idx);
Kalle Valo243eeb52010-02-18 13:25:39 +02001252int wl1271_acx_ac_cfg(struct wl1271 *wl, u8 ac, u8 cw_min, u16 cw_max,
1253 u8 aifsn, u16 txop);
Kalle Valof2054df2010-02-18 13:25:40 +02001254int wl1271_acx_tid_cfg(struct wl1271 *wl, u8 queue_id, u8 channel_type,
1255 u8 tsid, u8 ps_scheme, u8 ack_policy,
1256 u32 apsd_conf0, u32 apsd_conf1);
Arik Nemtsov5f704d12011-04-18 14:15:21 +03001257int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001258int wl1271_acx_tx_config_options(struct wl1271 *wl);
Eliad Pellerc8bde242011-02-02 09:59:35 +02001259int wl1271_acx_ap_mem_cfg(struct wl1271 *wl);
1260int wl1271_acx_sta_mem_cfg(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001261int wl1271_acx_init_mem_config(struct wl1271 *wl);
Shahar Levi48a61472011-03-06 16:32:08 +02001262int wl1271_acx_host_if_cfg_bitmap(struct wl1271 *wl, u32 host_cfg_bitmap);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001263int wl1271_acx_init_rx_interrupt(struct wl1271 *wl);
Juuso Oikarinen3cfd6cf2009-10-12 15:08:52 +03001264int wl1271_acx_smart_reflex(struct wl1271 *wl);
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001265int wl1271_acx_bet_enable(struct wl1271 *wl, bool enable);
Eliad Pellerc5312772010-12-09 11:31:27 +02001266int wl1271_acx_arp_ip_filter(struct wl1271 *wl, u8 enable, __be32 address);
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001267int wl1271_acx_pm_config(struct wl1271 *wl);
Juuso Oikarinenc1899552010-03-26 12:53:32 +02001268int wl1271_acx_keep_alive_mode(struct wl1271 *wl, bool enable);
1269int wl1271_acx_keep_alive_config(struct wl1271 *wl, u8 index, u8 tpl_valid);
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001270int wl1271_acx_rssi_snr_trigger(struct wl1271 *wl, bool enable,
1271 s16 thold, u8 hyst);
1272int wl1271_acx_rssi_snr_avg_weights(struct wl1271 *wl);
Shahar Levic4db1c82010-10-13 16:09:40 +02001273int wl1271_acx_set_ht_capabilities(struct wl1271 *wl,
1274 struct ieee80211_sta_ht_cap *ht_cap,
1275 bool allow_ht_operation);
1276int wl1271_acx_set_ht_information(struct wl1271 *wl,
1277 u16 ht_operation_mode);
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001278int wl1271_acx_set_ba_session(struct wl1271 *wl,
Levi, Shaharbbba3e62011-01-23 07:27:23 +01001279 enum ieee80211_back_parties direction,
1280 u8 tid_index, u8 policy);
1281int wl1271_acx_set_ba_receiver_session(struct wl1271 *wl, u8 tid_index, u16 ssn,
1282 bool enable);
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001283int wl1271_acx_tsf_info(struct wl1271 *wl, u64 *mactime);
Eliad Pellerf84673d2011-05-15 11:10:28 +03001284int wl1271_acx_ps_rx_streaming(struct wl1271 *wl, bool enable);
Arik Nemtsov3618f302011-06-26 10:36:03 +03001285int wl1271_acx_ap_max_tx_retry(struct wl1271 *wl);
Eliad Pelleree608332011-02-02 09:59:34 +02001286int wl1271_acx_config_ps(struct wl1271 *wl);
Arik Nemtsov99a27752011-02-23 00:22:25 +02001287int wl1271_acx_set_inconnection_sta(struct wl1271 *wl, u8 *addr);
Arik Nemtsov521a4a22011-04-18 14:15:22 +03001288int wl1271_acx_set_ap_beacon_filter(struct wl1271 *wl, bool enable);
Shahar Leviff868432011-04-11 15:41:46 +03001289int wl1271_acx_fm_coex(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001290
1291#endif /* __WL1271_ACX_H__ */