blob: 828367d6266866de262336ccbb207704bf61d421 [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
163/*
164 * RX Config Options Table
165 * Bit Definition
166 * === ==========
167 * 31:14 Reserved
168 * 13 Copy RX Status - when set, write three receive status words
169 * to top of rx'd MPDUs.
170 * When cleared, do not write three status words (added rev 1.5)
171 * 12 Reserved
172 * 11 RX Complete upon FCS error - when set, give rx complete
173 * interrupt for FCS errors, after the rx filtering, e.g. unicast
174 * frames not to us with FCS error will not generate an interrupt.
175 * 10 SSID Filter Enable - When set, the WiLink discards all beacon,
176 * probe request, and probe response frames with an SSID that does
177 * not match the SSID specified by the host in the START/JOIN
178 * command.
179 * When clear, the WiLink receives frames with any SSID.
180 * 9 Broadcast Filter Enable - When set, the WiLink discards all
181 * broadcast frames. When clear, the WiLink receives all received
182 * broadcast frames.
183 * 8:6 Reserved
184 * 5 BSSID Filter Enable - When set, the WiLink discards any frames
185 * with a BSSID that does not match the BSSID specified by the
186 * host.
187 * When clear, the WiLink receives frames from any BSSID.
188 * 4 MAC Addr Filter - When set, the WiLink discards any frames
189 * with a destination address that does not match the MAC address
190 * of the adaptor.
191 * When clear, the WiLink receives frames destined to any MAC
192 * address.
193 * 3 Promiscuous - When set, the WiLink receives all valid frames
194 * (i.e., all frames that pass the FCS check).
195 * When clear, only frames that pass the other filters specified
196 * are received.
197 * 2 FCS - When set, the WiLink includes the FCS with the received
198 * frame.
199 * When cleared, the FCS is discarded.
200 * 1 PLCP header - When set, write all data from baseband to frame
201 * buffer including PHY header.
202 * 0 Reserved - Always equal to 0.
203 *
204 * RX Filter Options Table
205 * Bit Definition
206 * === ==========
207 * 31:12 Reserved - Always equal to 0.
208 * 11 Association - When set, the WiLink receives all association
209 * related frames (association request/response, reassocation
210 * request/response, and disassociation). When clear, these frames
211 * are discarded.
212 * 10 Auth/De auth - When set, the WiLink receives all authentication
213 * and de-authentication frames. When clear, these frames are
214 * discarded.
215 * 9 Beacon - When set, the WiLink receives all beacon frames.
216 * When clear, these frames are discarded.
217 * 8 Contention Free - When set, the WiLink receives all contention
218 * free frames.
219 * When clear, these frames are discarded.
220 * 7 Control - When set, the WiLink receives all control frames.
221 * When clear, these frames are discarded.
222 * 6 Data - When set, the WiLink receives all data frames.
223 * When clear, these frames are discarded.
224 * 5 FCS Error - When set, the WiLink receives frames that have FCS
225 * errors.
226 * When clear, these frames are discarded.
227 * 4 Management - When set, the WiLink receives all management
228 * frames.
229 * When clear, these frames are discarded.
230 * 3 Probe Request - When set, the WiLink receives all probe request
231 * frames.
232 * When clear, these frames are discarded.
233 * 2 Probe Response - When set, the WiLink receives all probe
234 * response frames.
235 * When clear, these frames are discarded.
236 * 1 RTS/CTS/ACK - When set, the WiLink receives all RTS, CTS and ACK
237 * frames.
238 * When clear, these frames are discarded.
239 * 0 Rsvd Type/Sub Type - When set, the WiLink receives all frames
240 * that have reserved frame types and sub types as defined by the
241 * 802.11 specification.
242 * When clear, these frames are discarded.
243 */
244struct acx_rx_config {
245 struct acx_header header;
246
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300247 __le32 config_options;
248 __le32 filter_options;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000249} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300250
251struct acx_packet_detection {
252 struct acx_header header;
253
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300254 __le32 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000255} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300256
257
258enum acx_slot_type {
259 SLOT_TIME_LONG = 0,
260 SLOT_TIME_SHORT = 1,
261 DEFAULT_SLOT_TIME = SLOT_TIME_SHORT,
262 MAX_SLOT_TIMES = 0xFF
263};
264
265#define STATION_WONE_INDEX 0
266
267struct acx_slot {
268 struct acx_header header;
269
270 u8 wone_index; /* Reserved */
271 u8 slot_time;
272 u8 reserved[6];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000273} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300274
275
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300276#define ACX_MC_ADDRESS_GROUP_MAX (8)
277#define ADDRESS_GROUP_MAX_LEN (ETH_ALEN * ACX_MC_ADDRESS_GROUP_MAX)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300278
279struct acx_dot11_grp_addr_tbl {
280 struct acx_header header;
281
282 u8 enabled;
283 u8 num_groups;
284 u8 pad[2];
285 u8 mac_table[ADDRESS_GROUP_MAX_LEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000286} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300287
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300288struct acx_rx_timeout {
289 struct acx_header header;
290
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300291 __le16 ps_poll_timeout;
292 __le16 upsd_timeout;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000293} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300294
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300295struct acx_rts_threshold {
296 struct acx_header header;
297
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300298 __le16 threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300299 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000300} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300301
302struct acx_beacon_filter_option {
303 struct acx_header header;
304
305 u8 enable;
306
307 /*
308 * The number of beacons without the unicast TIM
309 * bit set that the firmware buffers before
310 * signaling the host about ready frames.
311 * When set to 0 and the filter is enabled, beacons
312 * without the unicast TIM bit set are dropped.
313 */
314 u8 max_num_beacons;
315 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000316} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300317
318/*
319 * ACXBeaconFilterEntry (not 221)
320 * Byte Offset Size (Bytes) Definition
321 * =========== ============ ==========
Juuso Oikarinen1937e742010-02-18 13:25:52 +0200322 * 0 1 IE identifier
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300323 * 1 1 Treatment bit mask
324 *
325 * ACXBeaconFilterEntry (221)
326 * Byte Offset Size (Bytes) Definition
327 * =========== ============ ==========
328 * 0 1 IE identifier
329 * 1 1 Treatment bit mask
330 * 2 3 OUI
331 * 5 1 Type
332 * 6 2 Version
333 *
334 *
335 * Treatment bit mask - The information element handling:
336 * bit 0 - The information element is compared and transferred
337 * in case of change.
338 * bit 1 - The information element is transferred to the host
339 * with each appearance or disappearance.
340 * Note that both bits can be set at the same time.
341 */
342#define BEACON_FILTER_TABLE_MAX_IE_NUM (32)
343#define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
344#define BEACON_FILTER_TABLE_IE_ENTRY_SIZE (2)
345#define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
346#define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
347 BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
348 (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
349 BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))
350
351struct acx_beacon_filter_ie_table {
352 struct acx_header header;
353
354 u8 num_ie;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300355 u8 pad[3];
Juuso Oikarinen1937e742010-02-18 13:25:52 +0200356 u8 table[BEACON_FILTER_TABLE_MAX_SIZE];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000357} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300358
Juuso Oikarinen34415232009-10-08 21:56:33 +0300359struct acx_conn_monit_params {
360 struct acx_header header;
361
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300362 __le32 synch_fail_thold; /* number of beacons missed */
363 __le32 bss_lose_timeout; /* number of TU's from synch fail */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000364} __packed;
Juuso Oikarinen34415232009-10-08 21:56:33 +0300365
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300366struct acx_bt_wlan_coex {
367 struct acx_header header;
368
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300369 u8 enable;
370 u8 pad[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000371} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300372
Arik Nemtsov801f8702011-04-18 14:15:20 +0300373struct acx_sta_bt_wlan_coex_param {
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200374 struct acx_header header;
375
Arik Nemtsov801f8702011-04-18 14:15:20 +0300376 __le32 params[CONF_SG_STA_PARAMS_MAX];
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200377 u8 param_idx;
378 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000379} __packed;
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200380
Arik Nemtsov801f8702011-04-18 14:15:20 +0300381struct acx_ap_bt_wlan_coex_param {
382 struct acx_header header;
383
384 __le32 params[CONF_SG_AP_PARAMS_MAX];
385 u8 param_idx;
386 u8 padding[3];
387} __packed;
388
389
Luciano Coelho6e92b412009-12-11 15:40:50 +0200390struct acx_dco_itrim_params {
391 struct acx_header header;
392
393 u8 enable;
394 u8 padding[3];
395 __le32 timeout;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000396} __packed;
Luciano Coelho6e92b412009-12-11 15:40:50 +0200397
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300398struct acx_energy_detection {
399 struct acx_header header;
400
401 /* The RX Clear Channel Assessment threshold in the PHY */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300402 __le16 rx_cca_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300403 u8 tx_energy_detection;
404 u8 pad;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000405} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300406
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300407struct acx_beacon_broadcast {
408 struct acx_header header;
409
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300410 __le16 beacon_rx_timeout;
411 __le16 broadcast_timeout;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300412
413 /* Enables receiving of broadcast packets in PS mode */
414 u8 rx_broadcast_in_ps;
415
416 /* Consecutive PS Poll failures before updating the host */
417 u8 ps_poll_threshold;
418 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000419} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300420
421struct acx_event_mask {
422 struct acx_header header;
423
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300424 __le32 event_mask;
425 __le32 high_event_mask; /* Unused */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000426} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300427
428#define CFG_RX_FCS BIT(2)
429#define CFG_RX_ALL_GOOD BIT(3)
430#define CFG_UNI_FILTER_EN BIT(4)
431#define CFG_BSSID_FILTER_EN BIT(5)
432#define CFG_MC_FILTER_EN BIT(6)
433#define CFG_MC_ADDR0_EN BIT(7)
434#define CFG_MC_ADDR1_EN BIT(8)
435#define CFG_BC_REJECT_EN BIT(9)
436#define CFG_SSID_FILTER_EN BIT(10)
437#define CFG_RX_INT_FCS_ERROR BIT(11)
438#define CFG_RX_INT_ENCRYPTED BIT(12)
439#define CFG_RX_WR_RX_STATUS BIT(13)
440#define CFG_RX_FILTER_NULTI BIT(14)
441#define CFG_RX_RESERVE BIT(15)
442#define CFG_RX_TIMESTAMP_TSF BIT(16)
443
444#define CFG_RX_RSV_EN BIT(0)
445#define CFG_RX_RCTS_ACK BIT(1)
446#define CFG_RX_PRSP_EN BIT(2)
447#define CFG_RX_PREQ_EN BIT(3)
448#define CFG_RX_MGMT_EN BIT(4)
449#define CFG_RX_FCS_ERROR BIT(5)
450#define CFG_RX_DATA_EN BIT(6)
451#define CFG_RX_CTL_EN BIT(7)
452#define CFG_RX_CF_EN BIT(8)
453#define CFG_RX_BCN_EN BIT(9)
454#define CFG_RX_AUTH_EN BIT(10)
455#define CFG_RX_ASSOC_EN BIT(11)
456
457#define SCAN_PASSIVE BIT(0)
458#define SCAN_5GHZ_BAND BIT(1)
459#define SCAN_TRIGGERED BIT(2)
460#define SCAN_PRIORITY_HIGH BIT(3)
461
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300462/* When set, disable HW encryption */
463#define DF_ENCRYPTION_DISABLE 0x01
464#define DF_SNIFF_MODE_ENABLE 0x80
465
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300466struct acx_feature_config {
467 struct acx_header header;
468
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300469 __le32 options;
470 __le32 data_flow_options;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000471} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300472
473struct acx_current_tx_power {
474 struct acx_header header;
475
476 u8 current_tx_power;
477 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000478} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300479
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300480struct acx_wake_up_condition {
481 struct acx_header header;
482
483 u8 wake_up_event; /* Only one bit can be set */
484 u8 listen_interval;
485 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000486} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300487
488struct acx_aid {
489 struct acx_header header;
490
491 /*
492 * To be set when associated with an AP.
493 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300494 __le16 aid;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300495 u8 pad[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000496} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300497
498enum acx_preamble_type {
499 ACX_PREAMBLE_LONG = 0,
500 ACX_PREAMBLE_SHORT = 1
501};
502
503struct acx_preamble {
504 struct acx_header header;
505
506 /*
507 * When set, the WiLink transmits the frames with a short preamble and
508 * when cleared, the WiLink transmits the frames with a long preamble.
509 */
510 u8 preamble;
511 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000512} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300513
514enum acx_ctsprotect_type {
515 CTSPROTECT_DISABLE = 0,
516 CTSPROTECT_ENABLE = 1
517};
518
519struct acx_ctsprotect {
520 struct acx_header header;
521 u8 ctsprotect;
522 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000523} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300524
525struct acx_tx_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300526 __le32 internal_desc_overflow;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000527} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300528
529struct acx_rx_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300530 __le32 out_of_mem;
531 __le32 hdr_overflow;
532 __le32 hw_stuck;
533 __le32 dropped;
534 __le32 fcs_err;
535 __le32 xfr_hint_trig;
536 __le32 path_reset;
537 __le32 reset_counter;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000538} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300539
540struct acx_dma_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300541 __le32 rx_requested;
542 __le32 rx_errors;
543 __le32 tx_requested;
544 __le32 tx_errors;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000545} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300546
547struct acx_isr_statistics {
548 /* host command complete */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300549 __le32 cmd_cmplt;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300550
551 /* fiqisr() */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300552 __le32 fiqs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300553
554 /* (INT_STS_ND & INT_TRIG_RX_HEADER) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300555 __le32 rx_headers;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300556
557 /* (INT_STS_ND & INT_TRIG_RX_CMPLT) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300558 __le32 rx_completes;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300559
560 /* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300561 __le32 rx_mem_overflow;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300562
563 /* (INT_STS_ND & INT_TRIG_S_RX_RDY) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300564 __le32 rx_rdys;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300565
566 /* irqisr() */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300567 __le32 irqs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300568
569 /* (INT_STS_ND & INT_TRIG_TX_PROC) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300570 __le32 tx_procs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300571
572 /* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300573 __le32 decrypt_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300574
575 /* (INT_STS_ND & INT_TRIG_DMA0) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300576 __le32 dma0_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300577
578 /* (INT_STS_ND & INT_TRIG_DMA1) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300579 __le32 dma1_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300580
581 /* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300582 __le32 tx_exch_complete;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300583
584 /* (INT_STS_ND & INT_TRIG_COMMAND) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300585 __le32 commands;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300586
587 /* (INT_STS_ND & INT_TRIG_RX_PROC) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300588 __le32 rx_procs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300589
590 /* (INT_STS_ND & INT_TRIG_PM_802) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300591 __le32 hw_pm_mode_changes;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300592
593 /* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300594 __le32 host_acknowledges;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300595
596 /* (INT_STS_ND & INT_TRIG_PM_PCI) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300597 __le32 pci_pm;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300598
599 /* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300600 __le32 wakeups;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300601
602 /* (INT_STS_ND & INT_TRIG_LOW_RSSI) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300603 __le32 low_rssi;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000604} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300605
606struct acx_wep_statistics {
607 /* WEP address keys configured */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300608 __le32 addr_key_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300609
610 /* default keys configured */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300611 __le32 default_key_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300612
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300613 __le32 reserved;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300614
615 /* number of times that WEP key not found on lookup */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300616 __le32 key_not_found;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300617
618 /* number of times that WEP key decryption failed */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300619 __le32 decrypt_fail;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300620
621 /* WEP packets decrypted */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300622 __le32 packets;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300623
624 /* WEP decrypt interrupts */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300625 __le32 interrupt;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000626} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300627
628#define ACX_MISSED_BEACONS_SPREAD 10
629
630struct acx_pwr_statistics {
631 /* the amount of enters into power save mode (both PD & ELP) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300632 __le32 ps_enter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300633
634 /* the amount of enters into ELP mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300635 __le32 elp_enter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300636
637 /* the amount of missing beacon interrupts to the host */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300638 __le32 missing_bcns;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300639
640 /* the amount of wake on host-access times */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300641 __le32 wake_on_host;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300642
643 /* the amount of wake on timer-expire */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300644 __le32 wake_on_timer_exp;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300645
646 /* the number of packets that were transmitted with PS bit set */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300647 __le32 tx_with_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300648
649 /* the number of packets that were transmitted with PS bit clear */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300650 __le32 tx_without_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300651
652 /* the number of received beacons */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300653 __le32 rcvd_beacons;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300654
655 /* the number of entering into PowerOn (power save off) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300656 __le32 power_save_off;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300657
658 /* the number of entries into power save mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300659 __le16 enable_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300660
661 /*
662 * the number of exits from power save, not including failed PS
663 * transitions
664 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300665 __le16 disable_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300666
667 /*
668 * the number of times the TSF counter was adjusted because
669 * of drift
670 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300671 __le32 fix_tsf_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300672
673 /* Gives statistics about the spread continuous missed beacons.
674 * The 16 LSB are dedicated for the PS mode.
675 * The 16 MSB are dedicated for the PS mode.
676 * cont_miss_bcns_spread[0] - single missed beacon.
677 * cont_miss_bcns_spread[1] - two continuous missed beacons.
678 * cont_miss_bcns_spread[2] - three continuous missed beacons.
679 * ...
680 * cont_miss_bcns_spread[9] - ten and more continuous missed beacons.
681 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300682 __le32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300683
684 /* the number of beacons in awake mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300685 __le32 rcvd_awake_beacons;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000686} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300687
688struct acx_mic_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300689 __le32 rx_pkts;
690 __le32 calc_failure;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000691} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300692
693struct acx_aes_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300694 __le32 encrypt_fail;
695 __le32 decrypt_fail;
696 __le32 encrypt_packets;
697 __le32 decrypt_packets;
698 __le32 encrypt_interrupt;
699 __le32 decrypt_interrupt;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000700} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300701
702struct acx_event_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300703 __le32 heart_beat;
704 __le32 calibration;
705 __le32 rx_mismatch;
706 __le32 rx_mem_empty;
707 __le32 rx_pool;
708 __le32 oom_late;
709 __le32 phy_transmit_error;
710 __le32 tx_stuck;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000711} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300712
713struct acx_ps_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300714 __le32 pspoll_timeouts;
715 __le32 upsd_timeouts;
716 __le32 upsd_max_sptime;
717 __le32 upsd_max_apturn;
718 __le32 pspoll_max_apturn;
719 __le32 pspoll_utilization;
720 __le32 upsd_utilization;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000721} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300722
723struct acx_rxpipe_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300724 __le32 rx_prep_beacon_drop;
725 __le32 descr_host_int_trig_rx_data;
726 __le32 beacon_buffer_thres_host_int_trig_rx_data;
727 __le32 missed_beacon_host_int_trig_rx_data;
728 __le32 tx_xfr_host_int_trig_rx_data;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000729} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300730
731struct acx_statistics {
732 struct acx_header header;
733
734 struct acx_tx_statistics tx;
735 struct acx_rx_statistics rx;
736 struct acx_dma_statistics dma;
737 struct acx_isr_statistics isr;
738 struct acx_wep_statistics wep;
739 struct acx_pwr_statistics pwr;
740 struct acx_aes_statistics aes;
741 struct acx_mic_statistics mic;
742 struct acx_event_statistics event;
743 struct acx_ps_statistics ps;
744 struct acx_rxpipe_statistics rxpipe;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000745} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300746
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300747struct acx_rate_class {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300748 __le32 enabled_rates;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300749 u8 short_retry_limit;
750 u8 long_retry_limit;
751 u8 aflags;
752 u8 reserved;
753};
754
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200755#define ACX_TX_BASIC_RATE 0
756#define ACX_TX_AP_FULL_RATE 1
757#define ACX_TX_RATE_POLICY_CNT 2
Arik Nemtsov79b223f2010-10-16 17:52:59 +0200758struct acx_sta_rate_policy {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300759 struct acx_header header;
760
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300761 __le32 rate_class_cnt;
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300762 struct acx_rate_class rate_class[CONF_TX_MAX_RATE_CLASSES];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000763} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300764
Arik Nemtsov79b223f2010-10-16 17:52:59 +0200765
766#define ACX_TX_AP_MODE_MGMT_RATE 4
767#define ACX_TX_AP_MODE_BCST_RATE 5
768struct acx_ap_rate_policy {
769 struct acx_header header;
770
771 __le32 rate_policy_idx;
772 struct acx_rate_class rate_policy;
773} __packed;
774
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300775struct acx_ac_cfg {
776 struct acx_header header;
777 u8 ac;
778 u8 cw_min;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300779 __le16 cw_max;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300780 u8 aifsn;
781 u8 reserved;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300782 __le16 tx_op_limit;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000783} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300784
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300785struct acx_tid_config {
786 struct acx_header header;
787 u8 queue_id;
788 u8 channel_type;
789 u8 tsid;
790 u8 ps_scheme;
791 u8 ack_policy;
792 u8 padding[3];
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300793 __le32 apsd_conf[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000794} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300795
796struct acx_frag_threshold {
797 struct acx_header header;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300798 __le16 frag_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300799 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000800} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300801
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300802struct acx_tx_config_options {
803 struct acx_header header;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300804 __le16 tx_compl_timeout; /* msec */
805 __le16 tx_compl_threshold; /* number of packets */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000806} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300807
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300808#define ACX_TX_DESCRIPTORS 32
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300809
Eliad Pellerc8bde242011-02-02 09:59:35 +0200810struct wl1271_acx_ap_config_memory {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300811 struct acx_header header;
812
813 u8 rx_mem_block_num;
814 u8 tx_min_mem_block_num;
815 u8 num_stations;
816 u8 num_ssid_profiles;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300817 __le32 total_tx_descriptors;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000818} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300819
Eliad Pellerc8bde242011-02-02 09:59:35 +0200820struct wl1271_acx_sta_config_memory {
821 struct acx_header header;
822
823 u8 rx_mem_block_num;
824 u8 tx_min_mem_block_num;
825 u8 num_stations;
826 u8 num_ssid_profiles;
827 __le32 total_tx_descriptors;
828 u8 dyn_mem_enable;
829 u8 tx_free_req;
830 u8 rx_free_req;
831 u8 tx_min;
832} __packed;
833
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300834struct wl1271_acx_mem_map {
835 struct acx_header header;
836
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300837 __le32 code_start;
838 __le32 code_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300839
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300840 __le32 wep_defkey_start;
841 __le32 wep_defkey_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300842
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300843 __le32 sta_table_start;
844 __le32 sta_table_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300845
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300846 __le32 packet_template_start;
847 __le32 packet_template_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300848
849 /* Address of the TX result interface (control block) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300850 __le32 tx_result;
851 __le32 tx_result_queue_start;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300852
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300853 __le32 queue_memory_start;
854 __le32 queue_memory_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300855
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300856 __le32 packet_memory_pool_start;
857 __le32 packet_memory_pool_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300858
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300859 __le32 debug_buffer1_start;
860 __le32 debug_buffer1_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300861
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300862 __le32 debug_buffer2_start;
863 __le32 debug_buffer2_end;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300864
865 /* Number of blocks FW allocated for TX packets */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300866 __le32 num_tx_mem_blocks;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300867
868 /* Number of blocks FW allocated for RX packets */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300869 __le32 num_rx_mem_blocks;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300870
871 /* the following 4 fields are valid in SLAVE mode only */
872 u8 *tx_cbuf;
873 u8 *rx_cbuf;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300874 __le32 rx_ctrl;
875 __le32 tx_ctrl;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000876} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300877
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300878struct wl1271_acx_rx_config_opt {
879 struct acx_header header;
880
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300881 __le16 mblk_threshold;
882 __le16 threshold;
883 __le16 timeout;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300884 u8 queue_type;
885 u8 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000886} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300887
Juuso Oikarinen11f70f92009-10-13 12:47:46 +0300888
889struct wl1271_acx_bet_enable {
890 struct acx_header header;
891
892 u8 enable;
893 u8 max_consecutive;
894 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000895} __packed;
Juuso Oikarinen11f70f92009-10-13 12:47:46 +0300896
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300897#define ACX_IPV4_VERSION 4
898#define ACX_IPV6_VERSION 6
899#define ACX_IPV4_ADDR_SIZE 4
Eliad Pellerc5312772010-12-09 11:31:27 +0200900
901/* bitmap of enabled arp_filter features */
902#define ACX_ARP_FILTER_ARP_FILTERING BIT(0)
903#define ACX_ARP_FILTER_AUTO_ARP BIT(1)
904
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300905struct wl1271_acx_arp_filter {
906 struct acx_header header;
907 u8 version; /* ACX_IPV4_VERSION, ACX_IPV6_VERSION */
Eliad Pellerc5312772010-12-09 11:31:27 +0200908 u8 enable; /* bitmap of enabled ARP filtering features */
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300909 u8 padding[2];
910 u8 address[16]; /* The configured device IP address - all ARP
911 requests directed to this IP address will pass
912 through. For IPv4, the first four bytes are
913 used. */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000914} __packed;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300915
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +0200916struct wl1271_acx_pm_config {
917 struct acx_header header;
918
919 __le32 host_clk_settling_time;
920 u8 host_fast_wakeup_support;
921 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000922} __packed;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300923
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200924struct wl1271_acx_keep_alive_mode {
925 struct acx_header header;
926
927 u8 enabled;
928 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000929} __packed;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200930
931enum {
932 ACX_KEEP_ALIVE_NO_TX = 0,
933 ACX_KEEP_ALIVE_PERIOD_ONLY
934};
935
936enum {
937 ACX_KEEP_ALIVE_TPL_INVALID = 0,
938 ACX_KEEP_ALIVE_TPL_VALID
939};
940
941struct wl1271_acx_keep_alive_config {
942 struct acx_header header;
943
944 __le32 period;
945 u8 index;
946 u8 tpl_validation;
947 u8 trigger;
948 u8 padding;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000949} __packed;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200950
Shahar Levi48a61472011-03-06 16:32:08 +0200951#define HOST_IF_CFG_RX_FIFO_ENABLE BIT(0)
952#define HOST_IF_CFG_TX_EXTRA_BLKS_SWAP BIT(1)
953#define HOST_IF_CFG_TX_PAD_TO_SDIO_BLK BIT(3)
954
955struct wl1271_acx_host_config_bitmap {
956 struct acx_header header;
957
958 __le32 host_cfg_bitmap;
959} __packed;
960
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300961enum {
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300962 WL1271_ACX_TRIG_TYPE_LEVEL = 0,
963 WL1271_ACX_TRIG_TYPE_EDGE,
964};
965
966enum {
967 WL1271_ACX_TRIG_DIR_LOW = 0,
968 WL1271_ACX_TRIG_DIR_HIGH,
969 WL1271_ACX_TRIG_DIR_BIDIR,
970};
971
972enum {
973 WL1271_ACX_TRIG_ENABLE = 1,
974 WL1271_ACX_TRIG_DISABLE,
975};
976
977enum {
978 WL1271_ACX_TRIG_METRIC_RSSI_BEACON = 0,
979 WL1271_ACX_TRIG_METRIC_RSSI_DATA,
980 WL1271_ACX_TRIG_METRIC_SNR_BEACON,
981 WL1271_ACX_TRIG_METRIC_SNR_DATA,
982};
983
984enum {
985 WL1271_ACX_TRIG_IDX_RSSI = 0,
986 WL1271_ACX_TRIG_COUNT = 8,
987};
988
989struct wl1271_acx_rssi_snr_trigger {
990 struct acx_header header;
991
992 __le16 threshold;
993 __le16 pacing; /* 0 - 60000 ms */
994 u8 metric;
995 u8 type;
996 u8 dir;
997 u8 hysteresis;
998 u8 index;
999 u8 enable;
1000 u8 padding[2];
1001};
1002
1003struct wl1271_acx_rssi_snr_avg_weights {
1004 struct acx_header header;
1005
1006 u8 rssi_beacon;
1007 u8 rssi_data;
1008 u8 snr_beacon;
1009 u8 snr_data;
1010};
1011
Shahar Levie8b03a22010-10-13 16:09:39 +02001012/*
1013 * ACX_PEER_HT_CAP
1014 * Configure HT capabilities - declare the capabilities of the peer
1015 * we are connected to.
1016 */
1017struct wl1271_acx_ht_capabilities {
1018 struct acx_header header;
1019
1020 /*
1021 * bit 0 - Allow HT Operation
1022 * bit 1 - Allow Greenfield format in TX
1023 * bit 2 - Allow Short GI in TX
1024 * bit 3 - Allow L-SIG TXOP Protection in TX
1025 * bit 4 - Allow HT Control fields in TX.
1026 * Note, driver will still leave space for HT control in packets
1027 * regardless of the value of this field. FW will be responsible
1028 * to drop the HT field from any frame when this Bit set to 0.
1029 * bit 5 - Allow RD initiation in TXOP. FW is allowed to initate RD.
1030 * Exact policy setting for this feature is TBD.
1031 * Note, this bit can only be set to 1 if bit 3 is set to 1.
1032 */
1033 __le32 ht_capabilites;
1034
1035 /*
1036 * Indicates to which peer these capabilities apply.
1037 * For infrastructure use ff:ff:ff:ff:ff:ff that indicates relevance
1038 * for all peers.
1039 * Only valid for IBSS/DLS operation.
1040 */
1041 u8 mac_address[ETH_ALEN];
1042
1043 /*
1044 * This the maximum A-MPDU length supported by the AP. The FW may not
1045 * exceed this length when sending A-MPDUs
1046 */
1047 u8 ampdu_max_length;
1048
1049 /* This is the minimal spacing required when sending A-MPDUs to the AP*/
1050 u8 ampdu_min_spacing;
1051} __packed;
1052
1053/* HT Capabilites Fw Bit Mask Mapping */
1054#define WL1271_ACX_FW_CAP_HT_OPERATION BIT(0)
1055#define WL1271_ACX_FW_CAP_GREENFIELD_FRAME_FORMAT BIT(1)
1056#define WL1271_ACX_FW_CAP_SHORT_GI_FOR_20MHZ_PACKETS BIT(2)
1057#define WL1271_ACX_FW_CAP_LSIG_TXOP_PROTECTION BIT(3)
1058#define WL1271_ACX_FW_CAP_HT_CONTROL_FIELDS BIT(4)
1059#define WL1271_ACX_FW_CAP_RD_INITIATION BIT(5)
1060
1061
1062/*
1063 * ACX_HT_BSS_OPERATION
1064 * Configure HT capabilities - AP rules for behavior in the BSS.
1065 */
1066struct wl1271_acx_ht_information {
1067 struct acx_header header;
1068
1069 /* Values: 0 - RIFS not allowed, 1 - RIFS allowed */
1070 u8 rifs_mode;
1071
1072 /* Values: 0 - 3 like in spec */
1073 u8 ht_protection;
1074
1075 /* Values: 0 - GF protection not required, 1 - GF protection required */
1076 u8 gf_protection;
1077
1078 /*Values: 0 - TX Burst limit not required, 1 - TX Burst Limit required*/
1079 u8 ht_tx_burst_limit;
1080
1081 /*
1082 * Values: 0 - Dual CTS protection not required,
1083 * 1 - Dual CTS Protection required
1084 * Note: When this value is set to 1 FW will protect all TXOP with RTS
1085 * frame and will not use CTS-to-self regardless of the value of the
1086 * ACX_CTS_PROTECTION information element
1087 */
1088 u8 dual_cts_protection;
1089
1090 u8 padding[3];
1091} __packed;
1092
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001093#define RX_BA_WIN_SIZE 8
1094
1095struct wl1271_acx_ba_session_policy {
1096 struct acx_header header;
1097 /*
1098 * Specifies role Id, Range 0-7, 0xFF means ANY role.
1099 * Future use. For now this field is irrelevant
1100 */
1101 u8 role_id;
1102 /*
1103 * Specifies Link Id, Range 0-31, 0xFF means ANY Link Id.
1104 * Not applicable if Role Id is set to ANY.
1105 */
1106 u8 link_id;
1107
1108 u8 tid;
1109
1110 u8 enable;
1111
1112 /* Windows size in number of packets */
1113 u16 win_size;
1114
1115 /*
1116 * As initiator inactivity timeout in time units(TU) of 1024us.
1117 * As receiver reserved
1118 */
1119 u16 inactivity_timeout;
1120
1121 /* Initiator = 1/Receiver = 0 */
1122 u8 ba_direction;
1123
1124 u8 padding[3];
1125} __packed;
1126
Levi, Shaharbbba3e62011-01-23 07:27:23 +01001127struct wl1271_acx_ba_receiver_setup {
1128 struct acx_header header;
1129
1130 /* Specifies Link Id, Range 0-31, 0xFF means ANY Link Id */
1131 u8 link_id;
1132
1133 u8 tid;
1134
1135 u8 enable;
1136
1137 u8 padding[1];
1138
1139 /* Windows size in number of packets */
1140 u16 win_size;
1141
1142 /* BA session starting sequence number. RANGE 0-FFF */
1143 u16 ssn;
1144} __packed;
1145
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001146struct wl1271_acx_fw_tsf_information {
1147 struct acx_header header;
1148
1149 __le32 current_tsf_high;
1150 __le32 current_tsf_low;
1151 __le32 last_bttt_high;
1152 __le32 last_tbtt_low;
1153 u8 last_dtim_count;
1154 u8 padding[3];
Luciano Coelho72e93e92010-07-09 14:10:58 +03001155} __packed;
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001156
Arik Nemtsov47684802011-04-26 23:21:51 +03001157struct wl1271_acx_ap_max_tx_retry {
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001158 struct acx_header header;
1159
1160 /*
1161 * the number of frames transmission failures before
1162 * issuing the aging event.
1163 */
1164 __le16 max_tx_retry;
1165 u8 padding_1[2];
1166} __packed;
1167
Arik Nemtsov47684802011-04-26 23:21:51 +03001168struct wl1271_acx_sta_max_tx_retry {
1169 struct acx_header header;
1170
1171 u8 max_tx_retry;
1172 u8 padding_1[3];
1173} __packed;
1174
Eliad Pelleree608332011-02-02 09:59:34 +02001175struct wl1271_acx_config_ps {
1176 struct acx_header header;
1177
1178 u8 exit_retries;
1179 u8 enter_retries;
1180 u8 padding[2];
1181 __le32 null_data_rate;
1182} __packed;
1183
Arik Nemtsov99a27752011-02-23 00:22:25 +02001184struct wl1271_acx_inconnection_sta {
1185 struct acx_header header;
1186
1187 u8 addr[ETH_ALEN];
1188 u8 padding1[2];
1189} __packed;
1190
Shahar Leviff868432011-04-11 15:41:46 +03001191/*
1192 * ACX_FM_COEX_CFG
1193 * set the FM co-existence parameters.
1194 */
1195struct wl1271_acx_fm_coex {
1196 struct acx_header header;
1197 /* enable(1) / disable(0) the FM Coex feature */
1198 u8 enable;
1199 /*
1200 * Swallow period used in COEX PLL swallowing mechanism.
1201 * 0xFF = use FW default
1202 */
1203 u8 swallow_period;
1204 /*
1205 * The N divider used in COEX PLL swallowing mechanism for Fref of
1206 * 38.4/19.2 Mhz. 0xFF = use FW default
1207 */
1208 u8 n_divider_fref_set_1;
1209 /*
1210 * The N divider used in COEX PLL swallowing mechanism for Fref of
1211 * 26/52 Mhz. 0xFF = use FW default
1212 */
1213 u8 n_divider_fref_set_2;
1214 /*
1215 * The M divider used in COEX PLL swallowing mechanism for Fref of
1216 * 38.4/19.2 Mhz. 0xFFFF = use FW default
1217 */
1218 __le16 m_divider_fref_set_1;
1219 /*
1220 * The M divider used in COEX PLL swallowing mechanism for Fref of
1221 * 26/52 Mhz. 0xFFFF = use FW default
1222 */
1223 __le16 m_divider_fref_set_2;
1224 /*
1225 * The time duration in uSec required for COEX PLL to stabilize.
1226 * 0xFFFFFFFF = use FW default
1227 */
1228 __le32 coex_pll_stabilization_time;
1229 /*
1230 * The time duration in uSec required for LDO to stabilize.
1231 * 0xFFFFFFFF = use FW default
1232 */
1233 __le16 ldo_stabilization_time;
1234 /*
1235 * The disturbed frequency band margin around the disturbed frequency
1236 * center (single sided).
1237 * For example, if 2 is configured, the following channels will be
1238 * considered disturbed channel:
1239 * 80 +- 0.1 MHz, 91 +- 0.1 MHz, 98 +- 0.1 MHz, 102 +- 0.1 MH
1240 * 0xFF = use FW default
1241 */
1242 u8 fm_disturbed_band_margin;
1243 /*
1244 * The swallow clock difference of the swallowing mechanism.
1245 * 0xFF = use FW default
1246 */
1247 u8 swallow_clk_diff;
1248} __packed;
1249
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001250enum {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001251 ACX_WAKE_UP_CONDITIONS = 0x0002,
1252 ACX_MEM_CFG = 0x0003,
1253 ACX_SLOT = 0x0004,
1254 ACX_AC_CFG = 0x0007,
1255 ACX_MEM_MAP = 0x0008,
1256 ACX_AID = 0x000A,
1257 /* ACX_FW_REV is missing in the ref driver, but seems to work */
1258 ACX_FW_REV = 0x000D,
1259 ACX_MEDIUM_USAGE = 0x000F,
1260 ACX_RX_CFG = 0x0010,
1261 ACX_TX_QUEUE_CFG = 0x0011, /* FIXME: only used by wl1251 */
1262 ACX_STATISTICS = 0x0013, /* Debug API */
1263 ACX_PWR_CONSUMPTION_STATISTICS = 0x0014,
1264 ACX_FEATURE_CFG = 0x0015,
1265 ACX_TID_CFG = 0x001A,
1266 ACX_PS_RX_STREAMING = 0x001B,
1267 ACX_BEACON_FILTER_OPT = 0x001F,
1268 ACX_NOISE_HIST = 0x0021,
1269 ACX_HDK_VERSION = 0x0022, /* ??? */
1270 ACX_PD_THRESHOLD = 0x0023,
1271 ACX_TX_CONFIG_OPT = 0x0024,
1272 ACX_CCA_THRESHOLD = 0x0025,
1273 ACX_EVENT_MBOX_MASK = 0x0026,
1274 ACX_CONN_MONIT_PARAMS = 0x002D,
1275 ACX_CONS_TX_FAILURE = 0x002F,
1276 ACX_BCN_DTIM_OPTIONS = 0x0031,
1277 ACX_SG_ENABLE = 0x0032,
1278 ACX_SG_CFG = 0x0033,
Shahar Leviff868432011-04-11 15:41:46 +03001279 ACX_FM_COEX_CFG = 0x0034,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001280 ACX_BEACON_FILTER_TABLE = 0x0038,
1281 ACX_ARP_IP_FILTER = 0x0039,
1282 ACX_ROAMING_STATISTICS_TBL = 0x003B,
1283 ACX_RATE_POLICY = 0x003D,
1284 ACX_CTS_PROTECTION = 0x003E,
1285 ACX_SLEEP_AUTH = 0x003F,
1286 ACX_PREAMBLE_TYPE = 0x0040,
1287 ACX_ERROR_CNT = 0x0041,
1288 ACX_IBSS_FILTER = 0x0044,
1289 ACX_SERVICE_PERIOD_TIMEOUT = 0x0045,
1290 ACX_TSF_INFO = 0x0046,
1291 ACX_CONFIG_PS_WMM = 0x0049,
1292 ACX_ENABLE_RX_DATA_FILTER = 0x004A,
1293 ACX_SET_RX_DATA_FILTER = 0x004B,
1294 ACX_GET_DATA_FILTER_STATISTICS = 0x004C,
1295 ACX_RX_CONFIG_OPT = 0x004E,
1296 ACX_FRAG_CFG = 0x004F,
1297 ACX_BET_ENABLE = 0x0050,
1298 ACX_RSSI_SNR_TRIGGER = 0x0051,
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001299 ACX_RSSI_SNR_WEIGHTS = 0x0052,
Juuso Oikarinenc1899552010-03-26 12:53:32 +02001300 ACX_KEEP_ALIVE_MODE = 0x0053,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001301 ACX_SET_KEEP_ALIVE_CONFIG = 0x0054,
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001302 ACX_BA_SESSION_POLICY_CFG = 0x0055,
1303 ACX_BA_SESSION_RX_SETUP = 0x0056,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001304 ACX_PEER_HT_CAP = 0x0057,
1305 ACX_HT_BSS_OPERATION = 0x0058,
1306 ACX_COEX_ACTIVITY = 0x0059,
Luciano Coelho6e92b412009-12-11 15:40:50 +02001307 ACX_SET_DCO_ITRIM_PARAMS = 0x0061,
Eliad Pellerc8bde242011-02-02 09:59:35 +02001308 ACX_GEN_FW_CMD = 0x0070,
1309 ACX_HOST_IF_CFG_BITMAP = 0x0071,
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001310 ACX_MAX_TX_FAILURE = 0x0072,
Arik Nemtsov99a27752011-02-23 00:22:25 +02001311 ACX_UPDATE_INCONNECTION_STA_LIST = 0x0073,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001312 DOT11_RX_MSDU_LIFE_TIME = 0x1004,
1313 DOT11_CUR_TX_PWR = 0x100D,
1314 DOT11_RX_DOT11_MODE = 0x1012,
1315 DOT11_RTS_THRESHOLD = 0x1013,
1316 DOT11_GROUP_ADDRESS_TBL = 0x1014,
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001317 ACX_PM_CONFIG = 0x1016,
Eliad Pelleree608332011-02-02 09:59:34 +02001318 ACX_CONFIG_PS = 0x1017,
Eliad Pellerc8bde242011-02-02 09:59:35 +02001319 ACX_CONFIG_HANGOVER = 0x1018,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001320};
1321
1322
Juuso Oikarinen51f2be22009-10-13 12:47:42 +03001323int wl1271_acx_wake_up_conditions(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001324int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001325int wl1271_acx_tx_power(struct wl1271 *wl, int power);
1326int wl1271_acx_feature_cfg(struct wl1271 *wl);
1327int wl1271_acx_mem_map(struct wl1271 *wl,
1328 struct acx_header *mem_map, size_t len);
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +03001329int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001330int wl1271_acx_rx_config(struct wl1271 *wl, u32 config, u32 filter);
1331int wl1271_acx_pd_threshold(struct wl1271 *wl);
1332int wl1271_acx_slot(struct wl1271 *wl, enum acx_slot_type slot_time);
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03001333int wl1271_acx_group_address_tbl(struct wl1271 *wl, bool enable,
1334 void *mc_list, u32 mc_list_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001335int wl1271_acx_service_period_timeout(struct wl1271 *wl);
Arik Nemtsov5f704d12011-04-18 14:15:21 +03001336int wl1271_acx_rts_threshold(struct wl1271 *wl, u32 rts_threshold);
Luciano Coelho6e92b412009-12-11 15:40:50 +02001337int wl1271_acx_dco_itrim_params(struct wl1271 *wl);
Juuso Oikarinen19221672009-10-08 21:56:35 +03001338int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, bool enable_filter);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001339int wl1271_acx_beacon_filter_table(struct wl1271 *wl);
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +02001340int wl1271_acx_conn_monit_params(struct wl1271 *wl, bool enable);
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02001341int wl1271_acx_sg_enable(struct wl1271 *wl, bool enable);
Arik Nemtsov801f8702011-04-18 14:15:20 +03001342int wl1271_acx_sta_sg_cfg(struct wl1271 *wl);
1343int wl1271_acx_ap_sg_cfg(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001344int wl1271_acx_cca_threshold(struct wl1271 *wl);
1345int wl1271_acx_bcn_dtim_options(struct wl1271 *wl);
1346int wl1271_acx_aid(struct wl1271 *wl, u16 aid);
1347int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask);
1348int wl1271_acx_set_preamble(struct wl1271 *wl, enum acx_preamble_type preamble);
1349int wl1271_acx_cts_protect(struct wl1271 *wl,
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001350 enum acx_ctsprotect_type ctsprotect);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001351int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats);
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001352int wl1271_acx_sta_rate_policies(struct wl1271 *wl);
1353int wl1271_acx_ap_rate_policy(struct wl1271 *wl, struct conf_tx_rate_class *c,
1354 u8 idx);
Kalle Valo243eeb52010-02-18 13:25:39 +02001355int wl1271_acx_ac_cfg(struct wl1271 *wl, u8 ac, u8 cw_min, u16 cw_max,
1356 u8 aifsn, u16 txop);
Kalle Valof2054df2010-02-18 13:25:40 +02001357int wl1271_acx_tid_cfg(struct wl1271 *wl, u8 queue_id, u8 channel_type,
1358 u8 tsid, u8 ps_scheme, u8 ack_policy,
1359 u32 apsd_conf0, u32 apsd_conf1);
Arik Nemtsov5f704d12011-04-18 14:15:21 +03001360int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001361int wl1271_acx_tx_config_options(struct wl1271 *wl);
Eliad Pellerc8bde242011-02-02 09:59:35 +02001362int wl1271_acx_ap_mem_cfg(struct wl1271 *wl);
1363int wl1271_acx_sta_mem_cfg(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001364int wl1271_acx_init_mem_config(struct wl1271 *wl);
Shahar Levi48a61472011-03-06 16:32:08 +02001365int wl1271_acx_host_if_cfg_bitmap(struct wl1271 *wl, u32 host_cfg_bitmap);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001366int wl1271_acx_init_rx_interrupt(struct wl1271 *wl);
Juuso Oikarinen3cfd6cf2009-10-12 15:08:52 +03001367int wl1271_acx_smart_reflex(struct wl1271 *wl);
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001368int wl1271_acx_bet_enable(struct wl1271 *wl, bool enable);
Eliad Pellerc5312772010-12-09 11:31:27 +02001369int wl1271_acx_arp_ip_filter(struct wl1271 *wl, u8 enable, __be32 address);
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001370int wl1271_acx_pm_config(struct wl1271 *wl);
Juuso Oikarinenc1899552010-03-26 12:53:32 +02001371int wl1271_acx_keep_alive_mode(struct wl1271 *wl, bool enable);
1372int wl1271_acx_keep_alive_config(struct wl1271 *wl, u8 index, u8 tpl_valid);
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001373int wl1271_acx_rssi_snr_trigger(struct wl1271 *wl, bool enable,
1374 s16 thold, u8 hyst);
1375int wl1271_acx_rssi_snr_avg_weights(struct wl1271 *wl);
Shahar Levic4db1c82010-10-13 16:09:40 +02001376int wl1271_acx_set_ht_capabilities(struct wl1271 *wl,
1377 struct ieee80211_sta_ht_cap *ht_cap,
1378 bool allow_ht_operation);
1379int wl1271_acx_set_ht_information(struct wl1271 *wl,
1380 u16 ht_operation_mode);
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001381int wl1271_acx_set_ba_session(struct wl1271 *wl,
Levi, Shaharbbba3e62011-01-23 07:27:23 +01001382 enum ieee80211_back_parties direction,
1383 u8 tid_index, u8 policy);
1384int wl1271_acx_set_ba_receiver_session(struct wl1271 *wl, u8 tid_index, u16 ssn,
1385 bool enable);
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001386int wl1271_acx_tsf_info(struct wl1271 *wl, u64 *mactime);
Arik Nemtsov47684802011-04-26 23:21:51 +03001387int wl1271_acx_ap_max_tx_retry(struct wl1271 *wl);
1388int wl1271_acx_sta_max_tx_retry(struct wl1271 *wl);
Eliad Pelleree608332011-02-02 09:59:34 +02001389int wl1271_acx_config_ps(struct wl1271 *wl);
Arik Nemtsov99a27752011-02-23 00:22:25 +02001390int wl1271_acx_set_inconnection_sta(struct wl1271 *wl, u8 *addr);
Shahar Leviff868432011-04-11 15:41:46 +03001391int wl1271_acx_fm_coex(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001392
1393#endif /* __WL1271_ACX_H__ */