blob: 758c596f62f6042477397b18468151983e3b2a83 [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
Eliad Peller7f0979882011-08-14 13:17:06 +0300104enum wl12xx_role {
105 WL1271_ROLE_STA = 0,
106 WL1271_ROLE_IBSS,
107 WL1271_ROLE_AP,
108 WL1271_ROLE_DEVICE,
109 WL1271_ROLE_P2P_CL,
110 WL1271_ROLE_P2P_GO,
111
112 WL12XX_INVALID_ROLE_TYPE = 0xff
113};
114
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300115enum wl1271_psm_mode {
116 /* Active mode */
117 WL1271_PSM_CAM = 0,
118
119 /* Power save mode */
120 WL1271_PSM_PS = 1,
121
122 /* Extreme low power */
123 WL1271_PSM_ELP = 2,
124};
125
126struct acx_sleep_auth {
127 struct acx_header header;
128
129 /* The sleep level authorization of the device. */
130 /* 0 - Always active*/
131 /* 1 - Power down mode: light / fast sleep*/
132 /* 2 - ELP mode: Deep / Max sleep*/
133 u8 sleep_auth;
134 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000135} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300136
137enum {
138 HOSTIF_PCI_MASTER_HOST_INDIRECT,
139 HOSTIF_PCI_MASTER_HOST_DIRECT,
140 HOSTIF_SLAVE,
141 HOSTIF_PKT_RING,
142 HOSTIF_DONTCARE = 0xFF
143};
144
145#define DEFAULT_UCAST_PRIORITY 0
146#define DEFAULT_RX_Q_PRIORITY 0
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300147#define DEFAULT_RXQ_PRIORITY 0 /* low 0 .. 15 high */
148#define DEFAULT_RXQ_TYPE 0x07 /* All frames, Data/Ctrl/Mgmt */
149#define TRACE_BUFFER_MAX_SIZE 256
150
151#define DP_RX_PACKET_RING_CHUNK_SIZE 1600
152#define DP_TX_PACKET_RING_CHUNK_SIZE 1600
153#define DP_RX_PACKET_RING_CHUNK_NUM 2
154#define DP_TX_PACKET_RING_CHUNK_NUM 2
155#define DP_TX_COMPLETE_TIME_OUT 20
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300156
157#define TX_MSDU_LIFETIME_MIN 0
158#define TX_MSDU_LIFETIME_MAX 3000
159#define TX_MSDU_LIFETIME_DEF 512
160#define RX_MSDU_LIFETIME_MIN 0
161#define RX_MSDU_LIFETIME_MAX 0xFFFFFFFF
162#define RX_MSDU_LIFETIME_DEF 512000
163
164struct acx_rx_msdu_lifetime {
165 struct acx_header header;
166
167 /*
168 * The maximum amount of time, in TU, before the
169 * firmware discards the MSDU.
170 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300171 __le32 lifetime;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000172} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300173
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300174struct acx_packet_detection {
175 struct acx_header header;
176
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300177 __le32 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000178} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300179
180
181enum acx_slot_type {
182 SLOT_TIME_LONG = 0,
183 SLOT_TIME_SHORT = 1,
184 DEFAULT_SLOT_TIME = SLOT_TIME_SHORT,
185 MAX_SLOT_TIMES = 0xFF
186};
187
188#define STATION_WONE_INDEX 0
189
190struct acx_slot {
191 struct acx_header header;
192
Eliad Peller7f0979882011-08-14 13:17:06 +0300193 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300194 u8 wone_index; /* Reserved */
195 u8 slot_time;
Eliad Peller7f0979882011-08-14 13:17:06 +0300196 u8 reserved[5];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000197} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300198
199
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300200#define ACX_MC_ADDRESS_GROUP_MAX (8)
201#define ADDRESS_GROUP_MAX_LEN (ETH_ALEN * ACX_MC_ADDRESS_GROUP_MAX)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300202
203struct acx_dot11_grp_addr_tbl {
204 struct acx_header header;
205
Eliad Peller7f0979882011-08-14 13:17:06 +0300206 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300207 u8 enabled;
208 u8 num_groups;
Eliad Peller7f0979882011-08-14 13:17:06 +0300209 u8 pad[1];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300210 u8 mac_table[ADDRESS_GROUP_MAX_LEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000211} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300212
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300213struct acx_rx_timeout {
214 struct acx_header header;
215
Eliad Peller7f0979882011-08-14 13:17:06 +0300216 u8 role_id;
217 u8 reserved;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300218 __le16 ps_poll_timeout;
219 __le16 upsd_timeout;
Eliad Peller7f0979882011-08-14 13:17:06 +0300220 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000221} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300222
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300223struct acx_rts_threshold {
224 struct acx_header header;
225
Eliad Peller7f0979882011-08-14 13:17:06 +0300226 u8 role_id;
227 u8 reserved;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300228 __le16 threshold;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000229} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300230
231struct acx_beacon_filter_option {
232 struct acx_header header;
233
Eliad Peller7f0979882011-08-14 13:17:06 +0300234 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300235 u8 enable;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300236 /*
237 * The number of beacons without the unicast TIM
238 * bit set that the firmware buffers before
239 * signaling the host about ready frames.
240 * When set to 0 and the filter is enabled, beacons
241 * without the unicast TIM bit set are dropped.
242 */
243 u8 max_num_beacons;
Eliad Peller7f0979882011-08-14 13:17:06 +0300244 u8 pad[1];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000245} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300246
247/*
248 * ACXBeaconFilterEntry (not 221)
249 * Byte Offset Size (Bytes) Definition
250 * =========== ============ ==========
Juuso Oikarinen1937e742010-02-18 13:25:52 +0200251 * 0 1 IE identifier
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300252 * 1 1 Treatment bit mask
253 *
254 * ACXBeaconFilterEntry (221)
255 * Byte Offset Size (Bytes) Definition
256 * =========== ============ ==========
257 * 0 1 IE identifier
258 * 1 1 Treatment bit mask
259 * 2 3 OUI
260 * 5 1 Type
261 * 6 2 Version
262 *
263 *
264 * Treatment bit mask - The information element handling:
265 * bit 0 - The information element is compared and transferred
266 * in case of change.
267 * bit 1 - The information element is transferred to the host
268 * with each appearance or disappearance.
269 * Note that both bits can be set at the same time.
270 */
271#define BEACON_FILTER_TABLE_MAX_IE_NUM (32)
272#define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
273#define BEACON_FILTER_TABLE_IE_ENTRY_SIZE (2)
274#define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
275#define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
276 BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
277 (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
278 BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))
279
280struct acx_beacon_filter_ie_table {
281 struct acx_header header;
282
Eliad Peller7f0979882011-08-14 13:17:06 +0300283 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300284 u8 num_ie;
Eliad Peller7f0979882011-08-14 13:17:06 +0300285 u8 pad[2];
Juuso Oikarinen1937e742010-02-18 13:25:52 +0200286 u8 table[BEACON_FILTER_TABLE_MAX_SIZE];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000287} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300288
Juuso Oikarinen34415232009-10-08 21:56:33 +0300289struct acx_conn_monit_params {
290 struct acx_header header;
291
Eliad Peller7f0979882011-08-14 13:17:06 +0300292 u8 role_id;
293 u8 padding[3];
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300294 __le32 synch_fail_thold; /* number of beacons missed */
295 __le32 bss_lose_timeout; /* number of TU's from synch fail */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000296} __packed;
Juuso Oikarinen34415232009-10-08 21:56:33 +0300297
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300298struct acx_bt_wlan_coex {
299 struct acx_header header;
300
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300301 u8 enable;
302 u8 pad[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000303} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300304
Eliad Peller3be41122011-08-14 13:17:19 +0300305struct acx_bt_wlan_coex_param {
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200306 struct acx_header header;
307
Eliad Peller3be41122011-08-14 13:17:19 +0300308 __le32 params[CONF_SG_PARAMS_MAX];
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200309 u8 param_idx;
310 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000311} __packed;
Juuso Oikarinen885c9902010-03-18 12:26:29 +0200312
Luciano Coelho6e92b412009-12-11 15:40:50 +0200313struct acx_dco_itrim_params {
314 struct acx_header header;
315
316 u8 enable;
317 u8 padding[3];
318 __le32 timeout;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000319} __packed;
Luciano Coelho6e92b412009-12-11 15:40:50 +0200320
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300321struct acx_energy_detection {
322 struct acx_header header;
323
324 /* The RX Clear Channel Assessment threshold in the PHY */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300325 __le16 rx_cca_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300326 u8 tx_energy_detection;
327 u8 pad;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000328} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300329
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300330struct acx_beacon_broadcast {
331 struct acx_header header;
332
Eliad Peller7f0979882011-08-14 13:17:06 +0300333 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300334 /* Enables receiving of broadcast packets in PS mode */
335 u8 rx_broadcast_in_ps;
336
Eliad Peller7f0979882011-08-14 13:17:06 +0300337 __le16 beacon_rx_timeout;
338 __le16 broadcast_timeout;
339
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300340 /* Consecutive PS Poll failures before updating the host */
341 u8 ps_poll_threshold;
Eliad Peller7f0979882011-08-14 13:17:06 +0300342 u8 pad[1];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000343} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300344
345struct acx_event_mask {
346 struct acx_header header;
347
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300348 __le32 event_mask;
349 __le32 high_event_mask; /* Unused */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000350} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300351
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300352#define SCAN_PASSIVE BIT(0)
353#define SCAN_5GHZ_BAND BIT(1)
354#define SCAN_TRIGGERED BIT(2)
355#define SCAN_PRIORITY_HIGH BIT(3)
356
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300357/* When set, disable HW encryption */
358#define DF_ENCRYPTION_DISABLE 0x01
359#define DF_SNIFF_MODE_ENABLE 0x80
360
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300361struct acx_feature_config {
362 struct acx_header header;
363
Eliad Peller7f0979882011-08-14 13:17:06 +0300364 u8 role_id;
365 u8 padding[3];
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300366 __le32 options;
367 __le32 data_flow_options;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000368} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300369
370struct acx_current_tx_power {
371 struct acx_header header;
372
Eliad Peller7f0979882011-08-14 13:17:06 +0300373 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300374 u8 current_tx_power;
Eliad Peller7f0979882011-08-14 13:17:06 +0300375 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000376} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300377
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300378struct acx_wake_up_condition {
379 struct acx_header header;
380
Eliad Peller7f0979882011-08-14 13:17:06 +0300381 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300382 u8 wake_up_event; /* Only one bit can be set */
383 u8 listen_interval;
Eliad Peller7f0979882011-08-14 13:17:06 +0300384 u8 pad[1];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000385} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300386
387struct acx_aid {
388 struct acx_header header;
389
390 /*
391 * To be set when associated with an AP.
392 */
Eliad Peller7f0979882011-08-14 13:17:06 +0300393 u8 role_id;
394 u8 reserved;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300395 __le16 aid;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000396} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300397
398enum acx_preamble_type {
399 ACX_PREAMBLE_LONG = 0,
400 ACX_PREAMBLE_SHORT = 1
401};
402
403struct acx_preamble {
404 struct acx_header header;
405
406 /*
407 * When set, the WiLink transmits the frames with a short preamble and
408 * when cleared, the WiLink transmits the frames with a long preamble.
409 */
Eliad Peller7f0979882011-08-14 13:17:06 +0300410 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300411 u8 preamble;
Eliad Peller7f0979882011-08-14 13:17:06 +0300412 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000413} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300414
415enum acx_ctsprotect_type {
416 CTSPROTECT_DISABLE = 0,
417 CTSPROTECT_ENABLE = 1
418};
419
420struct acx_ctsprotect {
421 struct acx_header header;
Eliad Peller7f0979882011-08-14 13:17:06 +0300422 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300423 u8 ctsprotect;
Eliad Peller7f0979882011-08-14 13:17:06 +0300424 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000425} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300426
427struct acx_tx_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300428 __le32 internal_desc_overflow;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000429} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300430
431struct acx_rx_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300432 __le32 out_of_mem;
433 __le32 hdr_overflow;
434 __le32 hw_stuck;
435 __le32 dropped;
436 __le32 fcs_err;
437 __le32 xfr_hint_trig;
438 __le32 path_reset;
439 __le32 reset_counter;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000440} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300441
442struct acx_dma_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300443 __le32 rx_requested;
444 __le32 rx_errors;
445 __le32 tx_requested;
446 __le32 tx_errors;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000447} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300448
449struct acx_isr_statistics {
450 /* host command complete */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300451 __le32 cmd_cmplt;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300452
453 /* fiqisr() */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300454 __le32 fiqs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300455
456 /* (INT_STS_ND & INT_TRIG_RX_HEADER) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300457 __le32 rx_headers;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300458
459 /* (INT_STS_ND & INT_TRIG_RX_CMPLT) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300460 __le32 rx_completes;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300461
462 /* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300463 __le32 rx_mem_overflow;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300464
465 /* (INT_STS_ND & INT_TRIG_S_RX_RDY) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300466 __le32 rx_rdys;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300467
468 /* irqisr() */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300469 __le32 irqs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300470
471 /* (INT_STS_ND & INT_TRIG_TX_PROC) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300472 __le32 tx_procs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300473
474 /* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300475 __le32 decrypt_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300476
477 /* (INT_STS_ND & INT_TRIG_DMA0) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300478 __le32 dma0_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300479
480 /* (INT_STS_ND & INT_TRIG_DMA1) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300481 __le32 dma1_done;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300482
483 /* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300484 __le32 tx_exch_complete;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300485
486 /* (INT_STS_ND & INT_TRIG_COMMAND) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300487 __le32 commands;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300488
489 /* (INT_STS_ND & INT_TRIG_RX_PROC) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300490 __le32 rx_procs;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300491
492 /* (INT_STS_ND & INT_TRIG_PM_802) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300493 __le32 hw_pm_mode_changes;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300494
495 /* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300496 __le32 host_acknowledges;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300497
498 /* (INT_STS_ND & INT_TRIG_PM_PCI) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300499 __le32 pci_pm;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300500
501 /* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300502 __le32 wakeups;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300503
504 /* (INT_STS_ND & INT_TRIG_LOW_RSSI) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300505 __le32 low_rssi;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000506} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300507
508struct acx_wep_statistics {
509 /* WEP address keys configured */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300510 __le32 addr_key_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300511
512 /* default keys configured */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300513 __le32 default_key_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300514
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300515 __le32 reserved;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300516
517 /* number of times that WEP key not found on lookup */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300518 __le32 key_not_found;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300519
520 /* number of times that WEP key decryption failed */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300521 __le32 decrypt_fail;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300522
523 /* WEP packets decrypted */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300524 __le32 packets;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300525
526 /* WEP decrypt interrupts */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300527 __le32 interrupt;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000528} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300529
530#define ACX_MISSED_BEACONS_SPREAD 10
531
532struct acx_pwr_statistics {
533 /* the amount of enters into power save mode (both PD & ELP) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300534 __le32 ps_enter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300535
536 /* the amount of enters into ELP mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300537 __le32 elp_enter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300538
539 /* the amount of missing beacon interrupts to the host */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300540 __le32 missing_bcns;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300541
542 /* the amount of wake on host-access times */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300543 __le32 wake_on_host;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300544
545 /* the amount of wake on timer-expire */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300546 __le32 wake_on_timer_exp;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300547
548 /* the number of packets that were transmitted with PS bit set */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300549 __le32 tx_with_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300550
551 /* the number of packets that were transmitted with PS bit clear */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300552 __le32 tx_without_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300553
554 /* the number of received beacons */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300555 __le32 rcvd_beacons;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300556
557 /* the number of entering into PowerOn (power save off) */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300558 __le32 power_save_off;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300559
560 /* the number of entries into power save mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300561 __le16 enable_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300562
563 /*
564 * the number of exits from power save, not including failed PS
565 * transitions
566 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300567 __le16 disable_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300568
569 /*
570 * the number of times the TSF counter was adjusted because
571 * of drift
572 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300573 __le32 fix_tsf_ps;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300574
575 /* Gives statistics about the spread continuous missed beacons.
576 * The 16 LSB are dedicated for the PS mode.
577 * The 16 MSB are dedicated for the PS mode.
578 * cont_miss_bcns_spread[0] - single missed beacon.
579 * cont_miss_bcns_spread[1] - two continuous missed beacons.
580 * cont_miss_bcns_spread[2] - three continuous missed beacons.
581 * ...
582 * cont_miss_bcns_spread[9] - ten and more continuous missed beacons.
583 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300584 __le32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300585
586 /* the number of beacons in awake mode */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300587 __le32 rcvd_awake_beacons;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000588} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300589
590struct acx_mic_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300591 __le32 rx_pkts;
592 __le32 calc_failure;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000593} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300594
595struct acx_aes_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300596 __le32 encrypt_fail;
597 __le32 decrypt_fail;
598 __le32 encrypt_packets;
599 __le32 decrypt_packets;
600 __le32 encrypt_interrupt;
601 __le32 decrypt_interrupt;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000602} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300603
604struct acx_event_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300605 __le32 heart_beat;
606 __le32 calibration;
607 __le32 rx_mismatch;
608 __le32 rx_mem_empty;
609 __le32 rx_pool;
610 __le32 oom_late;
611 __le32 phy_transmit_error;
612 __le32 tx_stuck;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000613} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300614
615struct acx_ps_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300616 __le32 pspoll_timeouts;
617 __le32 upsd_timeouts;
618 __le32 upsd_max_sptime;
619 __le32 upsd_max_apturn;
620 __le32 pspoll_max_apturn;
621 __le32 pspoll_utilization;
622 __le32 upsd_utilization;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000623} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300624
625struct acx_rxpipe_statistics {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300626 __le32 rx_prep_beacon_drop;
627 __le32 descr_host_int_trig_rx_data;
628 __le32 beacon_buffer_thres_host_int_trig_rx_data;
629 __le32 missed_beacon_host_int_trig_rx_data;
630 __le32 tx_xfr_host_int_trig_rx_data;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000631} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300632
633struct acx_statistics {
634 struct acx_header header;
635
636 struct acx_tx_statistics tx;
637 struct acx_rx_statistics rx;
638 struct acx_dma_statistics dma;
639 struct acx_isr_statistics isr;
640 struct acx_wep_statistics wep;
641 struct acx_pwr_statistics pwr;
642 struct acx_aes_statistics aes;
643 struct acx_mic_statistics mic;
644 struct acx_event_statistics event;
645 struct acx_ps_statistics ps;
646 struct acx_rxpipe_statistics rxpipe;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000647} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300648
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300649struct acx_rate_class {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300650 __le32 enabled_rates;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300651 u8 short_retry_limit;
652 u8 long_retry_limit;
653 u8 aflags;
654 u8 reserved;
655};
656
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200657#define ACX_TX_BASIC_RATE 0
658#define ACX_TX_AP_FULL_RATE 1
Arik Nemtsov79b223f2010-10-16 17:52:59 +0200659#define ACX_TX_AP_MODE_MGMT_RATE 4
660#define ACX_TX_AP_MODE_BCST_RATE 5
Eliad Peller7f0979882011-08-14 13:17:06 +0300661struct acx_rate_policy {
Arik Nemtsov79b223f2010-10-16 17:52:59 +0200662 struct acx_header header;
663
664 __le32 rate_policy_idx;
665 struct acx_rate_class rate_policy;
666} __packed;
667
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300668struct acx_ac_cfg {
669 struct acx_header header;
Eliad Peller7f0979882011-08-14 13:17:06 +0300670 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300671 u8 ac;
Eliad Peller7f0979882011-08-14 13:17:06 +0300672 u8 aifsn;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300673 u8 cw_min;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300674 __le16 cw_max;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300675 __le16 tx_op_limit;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000676} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300677
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300678struct acx_tid_config {
679 struct acx_header header;
Eliad Peller7f0979882011-08-14 13:17:06 +0300680 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300681 u8 queue_id;
682 u8 channel_type;
683 u8 tsid;
684 u8 ps_scheme;
685 u8 ack_policy;
Eliad Peller7f0979882011-08-14 13:17:06 +0300686 u8 padding[2];
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300687 __le32 apsd_conf[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000688} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300689
690struct acx_frag_threshold {
691 struct acx_header header;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300692 __le16 frag_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300693 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000694} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300695
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300696struct acx_tx_config_options {
697 struct acx_header header;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300698 __le16 tx_compl_timeout; /* msec */
699 __le16 tx_compl_threshold; /* number of packets */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000700} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300701
Eliad Peller7f0979882011-08-14 13:17:06 +0300702struct wl12xx_acx_config_memory {
Eliad Pellerc8bde242011-02-02 09:59:35 +0200703 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
Eliad Peller7f0979882011-08-14 13:17:06 +0300776 u8 role_id;
Juuso Oikarinen11f70f92009-10-13 12:47:46 +0300777 u8 enable;
778 u8 max_consecutive;
Eliad Peller7f0979882011-08-14 13:17:06 +0300779 u8 padding[1];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000780} __packed;
Juuso Oikarinen11f70f92009-10-13 12:47:46 +0300781
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300782#define ACX_IPV4_VERSION 4
783#define ACX_IPV6_VERSION 6
784#define ACX_IPV4_ADDR_SIZE 4
Eliad Pellerc5312772010-12-09 11:31:27 +0200785
786/* bitmap of enabled arp_filter features */
787#define ACX_ARP_FILTER_ARP_FILTERING BIT(0)
788#define ACX_ARP_FILTER_AUTO_ARP BIT(1)
789
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300790struct wl1271_acx_arp_filter {
791 struct acx_header header;
Eliad Peller7f0979882011-08-14 13:17:06 +0300792 u8 role_id;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300793 u8 version; /* ACX_IPV4_VERSION, ACX_IPV6_VERSION */
Eliad Pellerc5312772010-12-09 11:31:27 +0200794 u8 enable; /* bitmap of enabled ARP filtering features */
Eliad Peller7f0979882011-08-14 13:17:06 +0300795 u8 padding[1];
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300796 u8 address[16]; /* The configured device IP address - all ARP
797 requests directed to this IP address will pass
798 through. For IPv4, the first four bytes are
799 used. */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000800} __packed;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300801
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +0200802struct wl1271_acx_pm_config {
803 struct acx_header header;
804
805 __le32 host_clk_settling_time;
806 u8 host_fast_wakeup_support;
807 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000808} __packed;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300809
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200810struct wl1271_acx_keep_alive_mode {
811 struct acx_header header;
812
Eliad Peller7f0979882011-08-14 13:17:06 +0300813 u8 role_id;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200814 u8 enabled;
Eliad Peller7f0979882011-08-14 13:17:06 +0300815 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000816} __packed;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200817
818enum {
819 ACX_KEEP_ALIVE_NO_TX = 0,
820 ACX_KEEP_ALIVE_PERIOD_ONLY
821};
822
823enum {
824 ACX_KEEP_ALIVE_TPL_INVALID = 0,
825 ACX_KEEP_ALIVE_TPL_VALID
826};
827
828struct wl1271_acx_keep_alive_config {
829 struct acx_header header;
830
Eliad Peller7f0979882011-08-14 13:17:06 +0300831 u8 role_id;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200832 u8 index;
833 u8 tpl_validation;
834 u8 trigger;
Eliad Peller7f0979882011-08-14 13:17:06 +0300835 __le32 period;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000836} __packed;
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200837
Shahar Levi48a61472011-03-06 16:32:08 +0200838#define HOST_IF_CFG_RX_FIFO_ENABLE BIT(0)
839#define HOST_IF_CFG_TX_EXTRA_BLKS_SWAP BIT(1)
840#define HOST_IF_CFG_TX_PAD_TO_SDIO_BLK BIT(3)
841
842struct wl1271_acx_host_config_bitmap {
843 struct acx_header header;
844
845 __le32 host_cfg_bitmap;
846} __packed;
847
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300848enum {
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300849 WL1271_ACX_TRIG_TYPE_LEVEL = 0,
850 WL1271_ACX_TRIG_TYPE_EDGE,
851};
852
853enum {
854 WL1271_ACX_TRIG_DIR_LOW = 0,
855 WL1271_ACX_TRIG_DIR_HIGH,
856 WL1271_ACX_TRIG_DIR_BIDIR,
857};
858
859enum {
860 WL1271_ACX_TRIG_ENABLE = 1,
861 WL1271_ACX_TRIG_DISABLE,
862};
863
864enum {
865 WL1271_ACX_TRIG_METRIC_RSSI_BEACON = 0,
866 WL1271_ACX_TRIG_METRIC_RSSI_DATA,
867 WL1271_ACX_TRIG_METRIC_SNR_BEACON,
868 WL1271_ACX_TRIG_METRIC_SNR_DATA,
869};
870
871enum {
872 WL1271_ACX_TRIG_IDX_RSSI = 0,
873 WL1271_ACX_TRIG_COUNT = 8,
874};
875
876struct wl1271_acx_rssi_snr_trigger {
877 struct acx_header header;
878
Eliad Peller7f0979882011-08-14 13:17:06 +0300879 u8 role_id;
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300880 u8 metric;
881 u8 type;
882 u8 dir;
Eliad Peller7f0979882011-08-14 13:17:06 +0300883 __le16 threshold;
884 __le16 pacing; /* 0 - 60000 ms */
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300885 u8 hysteresis;
886 u8 index;
887 u8 enable;
Eliad Peller7f0979882011-08-14 13:17:06 +0300888 u8 padding[1];
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300889};
890
891struct wl1271_acx_rssi_snr_avg_weights {
892 struct acx_header header;
893
Eliad Peller7f0979882011-08-14 13:17:06 +0300894 u8 role_id;
895 u8 padding[3];
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300896 u8 rssi_beacon;
897 u8 rssi_data;
898 u8 snr_beacon;
899 u8 snr_data;
900};
901
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300902
903/* special capability bit (not employed by the 802.11n spec) */
904#define WL12XX_HT_CAP_HT_OPERATION BIT(16)
905
Shahar Levie8b03a22010-10-13 16:09:39 +0200906/*
907 * ACX_PEER_HT_CAP
908 * Configure HT capabilities - declare the capabilities of the peer
909 * we are connected to.
910 */
911struct wl1271_acx_ht_capabilities {
912 struct acx_header header;
913
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300914 /* bitmask of capability bits supported by the peer */
Shahar Levie8b03a22010-10-13 16:09:39 +0200915 __le32 ht_capabilites;
916
Eliad Peller7f0979882011-08-14 13:17:06 +0300917 /* Indicates to which link these capabilities apply. */
918 u8 hlid;
Shahar Levie8b03a22010-10-13 16:09:39 +0200919
920 /*
921 * This the maximum A-MPDU length supported by the AP. The FW may not
922 * exceed this length when sending A-MPDUs
923 */
924 u8 ampdu_max_length;
925
926 /* This is the minimal spacing required when sending A-MPDUs to the AP*/
927 u8 ampdu_min_spacing;
Eliad Peller7f0979882011-08-14 13:17:06 +0300928
929 u8 padding;
Shahar Levie8b03a22010-10-13 16:09:39 +0200930} __packed;
931
Shahar Levie8b03a22010-10-13 16:09:39 +0200932/*
933 * ACX_HT_BSS_OPERATION
934 * Configure HT capabilities - AP rules for behavior in the BSS.
935 */
936struct wl1271_acx_ht_information {
937 struct acx_header header;
938
Eliad Peller7f0979882011-08-14 13:17:06 +0300939 u8 role_id;
940
Shahar Levie8b03a22010-10-13 16:09:39 +0200941 /* Values: 0 - RIFS not allowed, 1 - RIFS allowed */
942 u8 rifs_mode;
943
944 /* Values: 0 - 3 like in spec */
945 u8 ht_protection;
946
947 /* Values: 0 - GF protection not required, 1 - GF protection required */
948 u8 gf_protection;
949
950 /*Values: 0 - TX Burst limit not required, 1 - TX Burst Limit required*/
951 u8 ht_tx_burst_limit;
952
953 /*
954 * Values: 0 - Dual CTS protection not required,
955 * 1 - Dual CTS Protection required
956 * Note: When this value is set to 1 FW will protect all TXOP with RTS
957 * frame and will not use CTS-to-self regardless of the value of the
958 * ACX_CTS_PROTECTION information element
959 */
960 u8 dual_cts_protection;
961
Eliad Peller7f0979882011-08-14 13:17:06 +0300962 u8 padding[2];
Shahar Levie8b03a22010-10-13 16:09:39 +0200963} __packed;
964
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300965#define RX_BA_MAX_SESSIONS 2
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100966
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300967struct wl1271_acx_ba_initiator_policy {
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100968 struct acx_header header;
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300969
970 /* Specifies role Id, Range 0-7, 0xFF means ANY role. */
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100971 u8 role_id;
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300972
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100973 /*
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300974 * Per TID setting for allowing TX BA. Set a bit to 1 to allow
975 * TX BA sessions for the corresponding TID.
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100976 */
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300977 u8 tid_bitmap;
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100978
979 /* Windows size in number of packets */
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300980 u8 win_size;
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100981
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300982 u8 padding1[1];
983
984 /* As initiator inactivity timeout in time units(TU) of 1024us */
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100985 u16 inactivity_timeout;
986
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300987 u8 padding[2];
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100988} __packed;
989
Levi, Shaharbbba3e62011-01-23 07:27:23 +0100990struct wl1271_acx_ba_receiver_setup {
991 struct acx_header header;
992
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300993 /* Specifies link id, range 0-31 */
994 u8 hlid;
Levi, Shaharbbba3e62011-01-23 07:27:23 +0100995
996 u8 tid;
997
998 u8 enable;
999
Levi, Shaharbbba3e62011-01-23 07:27:23 +01001000 /* Windows size in number of packets */
Arik Nemtsov0f9c8252011-08-17 10:45:49 +03001001 u8 win_size;
Levi, Shaharbbba3e62011-01-23 07:27:23 +01001002
1003 /* BA session starting sequence number. RANGE 0-FFF */
1004 u16 ssn;
Arik Nemtsov0f9c8252011-08-17 10:45:49 +03001005
1006 u8 padding[2];
Levi, Shaharbbba3e62011-01-23 07:27:23 +01001007} __packed;
1008
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001009struct wl1271_acx_fw_tsf_information {
1010 struct acx_header header;
1011
1012 __le32 current_tsf_high;
1013 __le32 current_tsf_low;
1014 __le32 last_bttt_high;
1015 __le32 last_tbtt_low;
1016 u8 last_dtim_count;
1017 u8 padding[3];
Luciano Coelho72e93e92010-07-09 14:10:58 +03001018} __packed;
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001019
Eliad Pellerf84673d2011-05-15 11:10:28 +03001020struct wl1271_acx_ps_rx_streaming {
1021 struct acx_header header;
1022
Eliad Peller7f0979882011-08-14 13:17:06 +03001023 u8 role_id;
Eliad Pellerf84673d2011-05-15 11:10:28 +03001024 u8 tid;
1025 u8 enable;
1026
1027 /* interval between triggers (10-100 msec) */
1028 u8 period;
1029
1030 /* timeout before first trigger (0-200 msec) */
1031 u8 timeout;
Eliad Peller7f0979882011-08-14 13:17:06 +03001032 u8 padding[3];
Eliad Pellerf84673d2011-05-15 11:10:28 +03001033} __packed;
1034
Arik Nemtsov3618f302011-06-26 10:36:03 +03001035struct wl1271_acx_ap_max_tx_retry {
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001036 struct acx_header header;
1037
Eliad Peller7f0979882011-08-14 13:17:06 +03001038 u8 role_id;
1039 u8 padding_1;
1040
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001041 /*
1042 * the number of frames transmission failures before
1043 * issuing the aging event.
1044 */
1045 __le16 max_tx_retry;
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001046} __packed;
1047
Eliad Pelleree608332011-02-02 09:59:34 +02001048struct wl1271_acx_config_ps {
1049 struct acx_header header;
1050
1051 u8 exit_retries;
1052 u8 enter_retries;
1053 u8 padding[2];
1054 __le32 null_data_rate;
1055} __packed;
1056
Arik Nemtsov99a27752011-02-23 00:22:25 +02001057struct wl1271_acx_inconnection_sta {
1058 struct acx_header header;
1059
1060 u8 addr[ETH_ALEN];
1061 u8 padding1[2];
1062} __packed;
1063
Shahar Leviff868432011-04-11 15:41:46 +03001064/*
1065 * ACX_FM_COEX_CFG
1066 * set the FM co-existence parameters.
1067 */
1068struct wl1271_acx_fm_coex {
1069 struct acx_header header;
1070 /* enable(1) / disable(0) the FM Coex feature */
1071 u8 enable;
1072 /*
1073 * Swallow period used in COEX PLL swallowing mechanism.
1074 * 0xFF = use FW default
1075 */
1076 u8 swallow_period;
1077 /*
1078 * The N divider used in COEX PLL swallowing mechanism for Fref of
1079 * 38.4/19.2 Mhz. 0xFF = use FW default
1080 */
1081 u8 n_divider_fref_set_1;
1082 /*
1083 * The N divider used in COEX PLL swallowing mechanism for Fref of
1084 * 26/52 Mhz. 0xFF = use FW default
1085 */
1086 u8 n_divider_fref_set_2;
1087 /*
1088 * The M divider used in COEX PLL swallowing mechanism for Fref of
1089 * 38.4/19.2 Mhz. 0xFFFF = use FW default
1090 */
1091 __le16 m_divider_fref_set_1;
1092 /*
1093 * The M divider used in COEX PLL swallowing mechanism for Fref of
1094 * 26/52 Mhz. 0xFFFF = use FW default
1095 */
1096 __le16 m_divider_fref_set_2;
1097 /*
1098 * The time duration in uSec required for COEX PLL to stabilize.
1099 * 0xFFFFFFFF = use FW default
1100 */
1101 __le32 coex_pll_stabilization_time;
1102 /*
1103 * The time duration in uSec required for LDO to stabilize.
1104 * 0xFFFFFFFF = use FW default
1105 */
1106 __le16 ldo_stabilization_time;
1107 /*
1108 * The disturbed frequency band margin around the disturbed frequency
1109 * center (single sided).
1110 * For example, if 2 is configured, the following channels will be
1111 * considered disturbed channel:
1112 * 80 +- 0.1 MHz, 91 +- 0.1 MHz, 98 +- 0.1 MHz, 102 +- 0.1 MH
1113 * 0xFF = use FW default
1114 */
1115 u8 fm_disturbed_band_margin;
1116 /*
1117 * The swallow clock difference of the swallowing mechanism.
1118 * 0xFF = use FW default
1119 */
1120 u8 swallow_clk_diff;
1121} __packed;
1122
Eliad Pellerfa6ad9f2011-08-14 13:17:14 +03001123#define ACX_RATE_MGMT_ALL_PARAMS 0xff
1124struct wl12xx_acx_set_rate_mgmt_params {
1125 struct acx_header header;
1126
1127 u8 index; /* 0xff to configure all params */
1128 u8 padding1;
1129 __le16 rate_retry_score;
1130 __le16 per_add;
1131 __le16 per_th1;
1132 __le16 per_th2;
1133 __le16 max_per;
1134 u8 inverse_curiosity_factor;
1135 u8 tx_fail_low_th;
1136 u8 tx_fail_high_th;
1137 u8 per_alpha_shift;
1138 u8 per_add_shift;
1139 u8 per_beta1_shift;
1140 u8 per_beta2_shift;
1141 u8 rate_check_up;
1142 u8 rate_check_down;
1143 u8 rate_retry_policy[ACX_RATE_MGMT_NUM_OF_RATES];
1144 u8 padding2[2];
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,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001154 ACX_MEDIUM_USAGE = 0x000F,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001155 ACX_TX_QUEUE_CFG = 0x0011, /* FIXME: only used by wl1251 */
1156 ACX_STATISTICS = 0x0013, /* Debug API */
1157 ACX_PWR_CONSUMPTION_STATISTICS = 0x0014,
1158 ACX_FEATURE_CFG = 0x0015,
1159 ACX_TID_CFG = 0x001A,
1160 ACX_PS_RX_STREAMING = 0x001B,
1161 ACX_BEACON_FILTER_OPT = 0x001F,
1162 ACX_NOISE_HIST = 0x0021,
1163 ACX_HDK_VERSION = 0x0022, /* ??? */
1164 ACX_PD_THRESHOLD = 0x0023,
1165 ACX_TX_CONFIG_OPT = 0x0024,
1166 ACX_CCA_THRESHOLD = 0x0025,
1167 ACX_EVENT_MBOX_MASK = 0x0026,
1168 ACX_CONN_MONIT_PARAMS = 0x002D,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001169 ACX_BCN_DTIM_OPTIONS = 0x0031,
1170 ACX_SG_ENABLE = 0x0032,
1171 ACX_SG_CFG = 0x0033,
Shahar Leviff868432011-04-11 15:41:46 +03001172 ACX_FM_COEX_CFG = 0x0034,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001173 ACX_BEACON_FILTER_TABLE = 0x0038,
1174 ACX_ARP_IP_FILTER = 0x0039,
1175 ACX_ROAMING_STATISTICS_TBL = 0x003B,
1176 ACX_RATE_POLICY = 0x003D,
1177 ACX_CTS_PROTECTION = 0x003E,
1178 ACX_SLEEP_AUTH = 0x003F,
1179 ACX_PREAMBLE_TYPE = 0x0040,
1180 ACX_ERROR_CNT = 0x0041,
1181 ACX_IBSS_FILTER = 0x0044,
1182 ACX_SERVICE_PERIOD_TIMEOUT = 0x0045,
1183 ACX_TSF_INFO = 0x0046,
1184 ACX_CONFIG_PS_WMM = 0x0049,
1185 ACX_ENABLE_RX_DATA_FILTER = 0x004A,
1186 ACX_SET_RX_DATA_FILTER = 0x004B,
1187 ACX_GET_DATA_FILTER_STATISTICS = 0x004C,
1188 ACX_RX_CONFIG_OPT = 0x004E,
1189 ACX_FRAG_CFG = 0x004F,
1190 ACX_BET_ENABLE = 0x0050,
1191 ACX_RSSI_SNR_TRIGGER = 0x0051,
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001192 ACX_RSSI_SNR_WEIGHTS = 0x0052,
Juuso Oikarinenc1899552010-03-26 12:53:32 +02001193 ACX_KEEP_ALIVE_MODE = 0x0053,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001194 ACX_SET_KEEP_ALIVE_CONFIG = 0x0054,
Arik Nemtsov0f9c8252011-08-17 10:45:49 +03001195 ACX_BA_SESSION_INIT_POLICY = 0x0055,
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001196 ACX_BA_SESSION_RX_SETUP = 0x0056,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001197 ACX_PEER_HT_CAP = 0x0057,
1198 ACX_HT_BSS_OPERATION = 0x0058,
1199 ACX_COEX_ACTIVITY = 0x0059,
Eliad Peller7f0979882011-08-14 13:17:06 +03001200 ACX_BURST_MODE = 0x005C,
1201 ACX_SET_RATE_MGMT_PARAMS = 0x005D,
1202 ACX_SET_RATE_ADAPT_PARAMS = 0x0060,
Luciano Coelho6e92b412009-12-11 15:40:50 +02001203 ACX_SET_DCO_ITRIM_PARAMS = 0x0061,
Eliad Pellerc8bde242011-02-02 09:59:35 +02001204 ACX_GEN_FW_CMD = 0x0070,
1205 ACX_HOST_IF_CFG_BITMAP = 0x0071,
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001206 ACX_MAX_TX_FAILURE = 0x0072,
Arik Nemtsov99a27752011-02-23 00:22:25 +02001207 ACX_UPDATE_INCONNECTION_STA_LIST = 0x0073,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001208 DOT11_RX_MSDU_LIFE_TIME = 0x1004,
1209 DOT11_CUR_TX_PWR = 0x100D,
1210 DOT11_RX_DOT11_MODE = 0x1012,
1211 DOT11_RTS_THRESHOLD = 0x1013,
1212 DOT11_GROUP_ADDRESS_TBL = 0x1014,
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001213 ACX_PM_CONFIG = 0x1016,
Eliad Pelleree608332011-02-02 09:59:34 +02001214 ACX_CONFIG_PS = 0x1017,
Eliad Pellerc8bde242011-02-02 09:59:35 +02001215 ACX_CONFIG_HANGOVER = 0x1018,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001216};
1217
1218
Juuso Oikarinen51f2be22009-10-13 12:47:42 +03001219int wl1271_acx_wake_up_conditions(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001220int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001221int wl1271_acx_tx_power(struct wl1271 *wl, int power);
1222int wl1271_acx_feature_cfg(struct wl1271 *wl);
1223int wl1271_acx_mem_map(struct wl1271 *wl,
1224 struct acx_header *mem_map, size_t len);
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +03001225int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001226int wl1271_acx_pd_threshold(struct wl1271 *wl);
1227int wl1271_acx_slot(struct wl1271 *wl, enum acx_slot_type slot_time);
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03001228int wl1271_acx_group_address_tbl(struct wl1271 *wl, bool enable,
1229 void *mc_list, u32 mc_list_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001230int wl1271_acx_service_period_timeout(struct wl1271 *wl);
Arik Nemtsov5f704d12011-04-18 14:15:21 +03001231int wl1271_acx_rts_threshold(struct wl1271 *wl, u32 rts_threshold);
Luciano Coelho6e92b412009-12-11 15:40:50 +02001232int wl1271_acx_dco_itrim_params(struct wl1271 *wl);
Juuso Oikarinen19221672009-10-08 21:56:35 +03001233int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, bool enable_filter);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001234int wl1271_acx_beacon_filter_table(struct wl1271 *wl);
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +02001235int wl1271_acx_conn_monit_params(struct wl1271 *wl, bool enable);
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02001236int wl1271_acx_sg_enable(struct wl1271 *wl, bool enable);
Eliad Peller3be41122011-08-14 13:17:19 +03001237int wl12xx_acx_sg_cfg(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001238int wl1271_acx_cca_threshold(struct wl1271 *wl);
1239int wl1271_acx_bcn_dtim_options(struct wl1271 *wl);
1240int wl1271_acx_aid(struct wl1271 *wl, u16 aid);
1241int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask);
1242int wl1271_acx_set_preamble(struct wl1271 *wl, enum acx_preamble_type preamble);
1243int wl1271_acx_cts_protect(struct wl1271 *wl,
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001244 enum acx_ctsprotect_type ctsprotect);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001245int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats);
Arik Nemtsov79b223f2010-10-16 17:52:59 +02001246int wl1271_acx_sta_rate_policies(struct wl1271 *wl);
1247int wl1271_acx_ap_rate_policy(struct wl1271 *wl, struct conf_tx_rate_class *c,
1248 u8 idx);
Kalle Valo243eeb52010-02-18 13:25:39 +02001249int wl1271_acx_ac_cfg(struct wl1271 *wl, u8 ac, u8 cw_min, u16 cw_max,
1250 u8 aifsn, u16 txop);
Kalle Valof2054df2010-02-18 13:25:40 +02001251int wl1271_acx_tid_cfg(struct wl1271 *wl, u8 queue_id, u8 channel_type,
1252 u8 tsid, u8 ps_scheme, u8 ack_policy,
1253 u32 apsd_conf0, u32 apsd_conf1);
Arik Nemtsov5f704d12011-04-18 14:15:21 +03001254int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001255int wl1271_acx_tx_config_options(struct wl1271 *wl);
Eliad Peller7f0979882011-08-14 13:17:06 +03001256int wl12xx_acx_mem_cfg(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001257int wl1271_acx_init_mem_config(struct wl1271 *wl);
Shahar Levi48a61472011-03-06 16:32:08 +02001258int wl1271_acx_host_if_cfg_bitmap(struct wl1271 *wl, u32 host_cfg_bitmap);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001259int wl1271_acx_init_rx_interrupt(struct wl1271 *wl);
Juuso Oikarinen3cfd6cf2009-10-12 15:08:52 +03001260int wl1271_acx_smart_reflex(struct wl1271 *wl);
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001261int wl1271_acx_bet_enable(struct wl1271 *wl, bool enable);
Eliad Pellerc5312772010-12-09 11:31:27 +02001262int wl1271_acx_arp_ip_filter(struct wl1271 *wl, u8 enable, __be32 address);
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001263int wl1271_acx_pm_config(struct wl1271 *wl);
Juuso Oikarinenc1899552010-03-26 12:53:32 +02001264int wl1271_acx_keep_alive_mode(struct wl1271 *wl, bool enable);
1265int wl1271_acx_keep_alive_config(struct wl1271 *wl, u8 index, u8 tpl_valid);
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03001266int wl1271_acx_rssi_snr_trigger(struct wl1271 *wl, bool enable,
1267 s16 thold, u8 hyst);
1268int wl1271_acx_rssi_snr_avg_weights(struct wl1271 *wl);
Shahar Levic4db1c82010-10-13 16:09:40 +02001269int wl1271_acx_set_ht_capabilities(struct wl1271 *wl,
1270 struct ieee80211_sta_ht_cap *ht_cap,
Arik Nemtsov0b932ab2011-08-14 13:17:27 +03001271 bool allow_ht_operation, u8 hlid);
Shahar Levic4db1c82010-10-13 16:09:40 +02001272int wl1271_acx_set_ht_information(struct wl1271 *wl,
1273 u16 ht_operation_mode);
Arik Nemtsov0f9c8252011-08-17 10:45:49 +03001274int wl12xx_acx_set_ba_initiator_policy(struct wl1271 *wl);
1275int wl12xx_acx_set_ba_receiver_session(struct wl1271 *wl, u8 tid_index,
1276 u16 ssn, bool enable, u8 peer_hlid);
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03001277int wl1271_acx_tsf_info(struct wl1271 *wl, u64 *mactime);
Eliad Pellerf84673d2011-05-15 11:10:28 +03001278int wl1271_acx_ps_rx_streaming(struct wl1271 *wl, bool enable);
Arik Nemtsov3618f302011-06-26 10:36:03 +03001279int wl1271_acx_ap_max_tx_retry(struct wl1271 *wl);
Eliad Pelleree608332011-02-02 09:59:34 +02001280int wl1271_acx_config_ps(struct wl1271 *wl);
Arik Nemtsov99a27752011-02-23 00:22:25 +02001281int wl1271_acx_set_inconnection_sta(struct wl1271 *wl, u8 *addr);
Shahar Leviff868432011-04-11 15:41:46 +03001282int wl1271_acx_fm_coex(struct wl1271 *wl);
Eliad Pellerfa6ad9f2011-08-14 13:17:14 +03001283int wl12xx_acx_set_rate_mgmt_params(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001284
1285#endif /* __WL1271_ACX_H__ */