wl1251: Add connection monitoring configuration
[safe/jmp/linux-2.6] / drivers / net / wireless / wl12xx / wl1251_acx.h
1 /*
2  * This file is part of wl1251
3  *
4  * Copyright (c) 1998-2007 Texas Instruments Incorporated
5  * Copyright (C) 2008 Nokia Corporation
6  *
7  * Contact: Kalle Valo <kalle.valo@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
25 #ifndef __WL1251_ACX_H__
26 #define __WL1251_ACX_H__
27
28 #include "wl1251.h"
29 #include "wl1251_cmd.h"
30
31 /* Target's information element */
32 struct acx_header {
33         struct wl1251_cmd_header cmd;
34
35         /* acx (or information element) header */
36         u16 id;
37
38         /* payload length (not including headers */
39         u16 len;
40 };
41
42 struct acx_error_counter {
43         struct acx_header header;
44
45         /* The number of PLCP errors since the last time this */
46         /* information element was interrogated. This field is */
47         /* automatically cleared when it is interrogated.*/
48         u32 PLCP_error;
49
50         /* The number of FCS errors since the last time this */
51         /* information element was interrogated. This field is */
52         /* automatically cleared when it is interrogated.*/
53         u32 FCS_error;
54
55         /* The number of MPDUs without PLCP header errors received*/
56         /* since the last time this information element was interrogated. */
57         /* This field is automatically cleared when it is interrogated.*/
58         u32 valid_frame;
59
60         /* the number of missed sequence numbers in the squentially */
61         /* values of frames seq numbers */
62         u32 seq_num_miss;
63 } __attribute__ ((packed));
64
65 struct acx_revision {
66         struct acx_header header;
67
68         /*
69          * The WiLink firmware version, an ASCII string x.x.x.x,
70          * that uniquely identifies the current firmware.
71          * The left most digit is incremented each time a
72          * significant change is made to the firmware, such as
73          * code redesign or new platform support.
74          * The second digit is incremented when major enhancements
75          * are added or major fixes are made.
76          * The third digit is incremented for each GA release.
77          * The fourth digit is incremented for each build.
78          * The first two digits identify a firmware release version,
79          * in other words, a unique set of features.
80          * The first three digits identify a GA release.
81          */
82         char fw_version[20];
83
84         /*
85          * This 4 byte field specifies the WiLink hardware version.
86          * bits 0  - 15: Reserved.
87          * bits 16 - 23: Version ID - The WiLink version ID
88          *              (1 = first spin, 2 = second spin, and so on).
89          * bits 24 - 31: Chip ID - The WiLink chip ID.
90          */
91         u32 hw_version;
92 } __attribute__ ((packed));
93
94 enum wl1251_psm_mode {
95         /* Active mode */
96         WL1251_PSM_CAM = 0,
97
98         /* Power save mode */
99         WL1251_PSM_PS = 1,
100
101         /* Extreme low power */
102         WL1251_PSM_ELP = 2,
103 };
104
105 struct acx_sleep_auth {
106         struct acx_header header;
107
108         /* The sleep level authorization of the device. */
109         /* 0 - Always active*/
110         /* 1 - Power down mode: light / fast sleep*/
111         /* 2 - ELP mode: Deep / Max sleep*/
112         u8  sleep_auth;
113         u8  padding[3];
114 } __attribute__ ((packed));
115
116 enum {
117         HOSTIF_PCI_MASTER_HOST_INDIRECT,
118         HOSTIF_PCI_MASTER_HOST_DIRECT,
119         HOSTIF_SLAVE,
120         HOSTIF_PKT_RING,
121         HOSTIF_DONTCARE = 0xFF
122 };
123
124 #define DEFAULT_UCAST_PRIORITY          0
125 #define DEFAULT_RX_Q_PRIORITY           0
126 #define DEFAULT_NUM_STATIONS            1
127 #define DEFAULT_RXQ_PRIORITY            0 /* low 0 .. 15 high  */
128 #define DEFAULT_RXQ_TYPE                0x07    /* All frames, Data/Ctrl/Mgmt */
129 #define TRACE_BUFFER_MAX_SIZE           256
130
131 #define  DP_RX_PACKET_RING_CHUNK_SIZE 1600
132 #define  DP_TX_PACKET_RING_CHUNK_SIZE 1600
133 #define  DP_RX_PACKET_RING_CHUNK_NUM 2
134 #define  DP_TX_PACKET_RING_CHUNK_NUM 2
135 #define  DP_TX_COMPLETE_TIME_OUT 20
136 #define  FW_TX_CMPLT_BLOCK_SIZE 16
137
138 struct acx_data_path_params {
139         struct acx_header header;
140
141         u16 rx_packet_ring_chunk_size;
142         u16 tx_packet_ring_chunk_size;
143
144         u8 rx_packet_ring_chunk_num;
145         u8 tx_packet_ring_chunk_num;
146
147         /*
148          * Maximum number of packets that can be gathered
149          * in the TX complete ring before an interrupt
150          * is generated.
151          */
152         u8 tx_complete_threshold;
153
154         /* Number of pending TX complete entries in cyclic ring.*/
155         u8 tx_complete_ring_depth;
156
157         /*
158          * Max num microseconds since a packet enters the TX
159          * complete ring until an interrupt is generated.
160          */
161         u32 tx_complete_timeout;
162 } __attribute__ ((packed));
163
164
165 struct acx_data_path_params_resp {
166         struct acx_header header;
167
168         u16 rx_packet_ring_chunk_size;
169         u16 tx_packet_ring_chunk_size;
170
171         u8 rx_packet_ring_chunk_num;
172         u8 tx_packet_ring_chunk_num;
173
174         u8 pad[2];
175
176         u32 rx_packet_ring_addr;
177         u32 tx_packet_ring_addr;
178
179         u32 rx_control_addr;
180         u32 tx_control_addr;
181
182         u32 tx_complete_addr;
183 } __attribute__ ((packed));
184
185 #define TX_MSDU_LIFETIME_MIN       0
186 #define TX_MSDU_LIFETIME_MAX       3000
187 #define TX_MSDU_LIFETIME_DEF       512
188 #define RX_MSDU_LIFETIME_MIN       0
189 #define RX_MSDU_LIFETIME_MAX       0xFFFFFFFF
190 #define RX_MSDU_LIFETIME_DEF       512000
191
192 struct acx_rx_msdu_lifetime {
193         struct acx_header header;
194
195         /*
196          * The maximum amount of time, in TU, before the
197          * firmware discards the MSDU.
198          */
199         u32 lifetime;
200 } __attribute__ ((packed));
201
202 /*
203  * RX Config Options Table
204  * Bit          Definition
205  * ===          ==========
206  * 31:14                Reserved
207  * 13           Copy RX Status - when set, write three receive status words
208  *              to top of rx'd MPDUs.
209  *              When cleared, do not write three status words (added rev 1.5)
210  * 12           Reserved
211  * 11           RX Complete upon FCS error - when set, give rx complete
212  *              interrupt for FCS errors, after the rx filtering, e.g. unicast
213  *              frames not to us with FCS error will not generate an interrupt.
214  * 10           SSID Filter Enable - When set, the WiLink discards all beacon,
215  *              probe request, and probe response frames with an SSID that does
216  *              not match the SSID specified by the host in the START/JOIN
217  *              command.
218  *              When clear, the WiLink receives frames with any SSID.
219  * 9            Broadcast Filter Enable - When set, the WiLink discards all
220  *              broadcast frames. When clear, the WiLink receives all received
221  *              broadcast frames.
222  * 8:6          Reserved
223  * 5            BSSID Filter Enable - When set, the WiLink discards any frames
224  *              with a BSSID that does not match the BSSID specified by the
225  *              host.
226  *              When clear, the WiLink receives frames from any BSSID.
227  * 4            MAC Addr Filter - When set, the WiLink discards any frames
228  *              with a destination address that does not match the MAC address
229  *              of the adaptor.
230  *              When clear, the WiLink receives frames destined to any MAC
231  *              address.
232  * 3            Promiscuous - When set, the WiLink receives all valid frames
233  *              (i.e., all frames that pass the FCS check).
234  *              When clear, only frames that pass the other filters specified
235  *              are received.
236  * 2            FCS - When set, the WiLink includes the FCS with the received
237  *              frame.
238  *              When cleared, the FCS is discarded.
239  * 1            PLCP header - When set, write all data from baseband to frame
240  *              buffer including PHY header.
241  * 0            Reserved - Always equal to 0.
242  *
243  * RX Filter Options Table
244  * Bit          Definition
245  * ===          ==========
246  * 31:12                Reserved - Always equal to 0.
247  * 11           Association - When set, the WiLink receives all association
248  *              related frames (association request/response, reassocation
249  *              request/response, and disassociation). When clear, these frames
250  *              are discarded.
251  * 10           Auth/De auth - When set, the WiLink receives all authentication
252  *              and de-authentication frames. When clear, these frames are
253  *              discarded.
254  * 9            Beacon - When set, the WiLink receives all beacon frames.
255  *              When clear, these frames are discarded.
256  * 8            Contention Free - When set, the WiLink receives all contention
257  *              free frames.
258  *              When clear, these frames are discarded.
259  * 7            Control - When set, the WiLink receives all control frames.
260  *              When clear, these frames are discarded.
261  * 6            Data - When set, the WiLink receives all data frames.
262  *              When clear, these frames are discarded.
263  * 5            FCS Error - When set, the WiLink receives frames that have FCS
264  *              errors.
265  *              When clear, these frames are discarded.
266  * 4            Management - When set, the WiLink receives all management
267  *              frames.
268  *              When clear, these frames are discarded.
269  * 3            Probe Request - When set, the WiLink receives all probe request
270  *              frames.
271  *              When clear, these frames are discarded.
272  * 2            Probe Response - When set, the WiLink receives all probe
273  *              response frames.
274  *              When clear, these frames are discarded.
275  * 1            RTS/CTS/ACK - When set, the WiLink receives all RTS, CTS and ACK
276  *              frames.
277  *              When clear, these frames are discarded.
278  * 0            Rsvd Type/Sub Type - When set, the WiLink receives all frames
279  *              that have reserved frame types and sub types as defined by the
280  *              802.11 specification.
281  *              When clear, these frames are discarded.
282  */
283 struct acx_rx_config {
284         struct acx_header header;
285
286         u32 config_options;
287         u32 filter_options;
288 } __attribute__ ((packed));
289
290 enum {
291         QOS_AC_BE = 0,
292         QOS_AC_BK,
293         QOS_AC_VI,
294         QOS_AC_VO,
295         QOS_HIGHEST_AC_INDEX = QOS_AC_VO,
296 };
297
298 #define MAX_NUM_OF_AC             (QOS_HIGHEST_AC_INDEX+1)
299 #define FIRST_AC_INDEX            QOS_AC_BE
300 #define MAX_NUM_OF_802_1d_TAGS    8
301 #define AC_PARAMS_MAX_TSID        15
302 #define MAX_APSD_CONF             0xffff
303
304 #define  QOS_TX_HIGH_MIN      (0)
305 #define  QOS_TX_HIGH_MAX      (100)
306
307 #define  QOS_TX_HIGH_BK_DEF   (25)
308 #define  QOS_TX_HIGH_BE_DEF   (35)
309 #define  QOS_TX_HIGH_VI_DEF   (35)
310 #define  QOS_TX_HIGH_VO_DEF   (35)
311
312 #define  QOS_TX_LOW_BK_DEF    (15)
313 #define  QOS_TX_LOW_BE_DEF    (25)
314 #define  QOS_TX_LOW_VI_DEF    (25)
315 #define  QOS_TX_LOW_VO_DEF    (25)
316
317 struct acx_tx_queue_qos_config {
318         struct acx_header header;
319
320         u8 qid;
321         u8 pad[3];
322
323         /* Max number of blocks allowd in the queue */
324         u16 high_threshold;
325
326         /* Lowest memory blocks guaranteed for this queue */
327         u16 low_threshold;
328 } __attribute__ ((packed));
329
330 struct acx_packet_detection {
331         struct acx_header header;
332
333         u32 threshold;
334 } __attribute__ ((packed));
335
336
337 enum acx_slot_type {
338         SLOT_TIME_LONG = 0,
339         SLOT_TIME_SHORT = 1,
340         DEFAULT_SLOT_TIME = SLOT_TIME_SHORT,
341         MAX_SLOT_TIMES = 0xFF
342 };
343
344 #define STATION_WONE_INDEX 0
345
346 struct acx_slot {
347         struct acx_header header;
348
349         u8 wone_index; /* Reserved */
350         u8 slot_time;
351         u8 reserved[6];
352 } __attribute__ ((packed));
353
354
355 #define ADDRESS_GROUP_MAX       (8)
356 #define ADDRESS_GROUP_MAX_LEN   (ETH_ALEN * ADDRESS_GROUP_MAX)
357
358 struct acx_dot11_grp_addr_tbl {
359         struct acx_header header;
360
361         u8 enabled;
362         u8 num_groups;
363         u8 pad[2];
364         u8 mac_table[ADDRESS_GROUP_MAX_LEN];
365 } __attribute__ ((packed));
366
367
368 #define  RX_TIMEOUT_PS_POLL_MIN    0
369 #define  RX_TIMEOUT_PS_POLL_MAX    (200000)
370 #define  RX_TIMEOUT_PS_POLL_DEF    (15)
371 #define  RX_TIMEOUT_UPSD_MIN       0
372 #define  RX_TIMEOUT_UPSD_MAX       (200000)
373 #define  RX_TIMEOUT_UPSD_DEF       (15)
374
375 struct acx_rx_timeout {
376         struct acx_header header;
377
378         /*
379          * The longest time the STA will wait to receive
380          * traffic from the AP after a PS-poll has been
381          * transmitted.
382          */
383         u16 ps_poll_timeout;
384
385         /*
386          * The longest time the STA will wait to receive
387          * traffic from the AP after a frame has been sent
388          * from an UPSD enabled queue.
389          */
390         u16 upsd_timeout;
391 } __attribute__ ((packed));
392
393 #define RTS_THRESHOLD_MIN              0
394 #define RTS_THRESHOLD_MAX              4096
395 #define RTS_THRESHOLD_DEF              2347
396
397 struct acx_rts_threshold {
398         struct acx_header header;
399
400         u16 threshold;
401         u8 pad[2];
402 } __attribute__ ((packed));
403
404 struct acx_beacon_filter_option {
405         struct acx_header header;
406
407         u8 enable;
408
409         /*
410          * The number of beacons without the unicast TIM
411          * bit set that the firmware buffers before
412          * signaling the host about ready frames.
413          * When set to 0 and the filter is enabled, beacons
414          * without the unicast TIM bit set are dropped.
415          */
416         u8 max_num_beacons;
417         u8 pad[2];
418 } __attribute__ ((packed));
419
420 /*
421  * ACXBeaconFilterEntry (not 221)
422  * Byte Offset     Size (Bytes)    Definition
423  * ===========     ============    ==========
424  * 0                            1               IE identifier
425  * 1               1               Treatment bit mask
426  *
427  * ACXBeaconFilterEntry (221)
428  * Byte Offset     Size (Bytes)    Definition
429  * ===========     ============    ==========
430  * 0               1               IE identifier
431  * 1               1               Treatment bit mask
432  * 2               3               OUI
433  * 5               1               Type
434  * 6               2               Version
435  *
436  *
437  * Treatment bit mask - The information element handling:
438  * bit 0 - The information element is compared and transferred
439  * in case of change.
440  * bit 1 - The information element is transferred to the host
441  * with each appearance or disappearance.
442  * Note that both bits can be set at the same time.
443  */
444 #define BEACON_FILTER_TABLE_MAX_IE_NUM                 (32)
445 #define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
446 #define BEACON_FILTER_TABLE_IE_ENTRY_SIZE              (2)
447 #define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
448 #define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
449                             BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
450                            (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
451                             BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))
452
453 struct acx_beacon_filter_ie_table {
454         struct acx_header header;
455
456         u8 num_ie;
457         u8 table[BEACON_FILTER_TABLE_MAX_SIZE];
458         u8 pad[3];
459 } __attribute__ ((packed));
460
461 #define SYNCH_FAIL_DEFAULT_THRESHOLD    5     /* number of beacons */
462 #define NO_BEACON_DEFAULT_TIMEOUT       (100) /* TU */
463
464 struct acx_conn_monit_params {
465         struct acx_header header;
466
467         u32 synch_fail_thold; /* number of beacons missed */
468         u32 bss_lose_timeout; /* number of TU's from synch fail */
469 };
470
471 enum {
472         SG_ENABLE = 0,
473         SG_DISABLE,
474         SG_SENSE_NO_ACTIVITY,
475         SG_SENSE_ACTIVE
476 };
477
478 struct acx_bt_wlan_coex {
479         struct acx_header header;
480
481         /*
482          * 0 -> PTA enabled
483          * 1 -> PTA disabled
484          * 2 -> sense no active mode, i.e.
485          *      an interrupt is sent upon
486          *      BT activity.
487          * 3 -> PTA is switched on in response
488          *      to the interrupt sending.
489          */
490         u8 enable;
491         u8 pad[3];
492 } __attribute__ ((packed));
493
494 #define PTA_ANTENNA_TYPE_DEF              (0)
495 #define PTA_BT_HP_MAXTIME_DEF             (2000)
496 #define PTA_WLAN_HP_MAX_TIME_DEF          (5000)
497 #define PTA_SENSE_DISABLE_TIMER_DEF       (1350)
498 #define PTA_PROTECTIVE_RX_TIME_DEF        (1500)
499 #define PTA_PROTECTIVE_TX_TIME_DEF        (1500)
500 #define PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF (3000)
501 #define PTA_SIGNALING_TYPE_DEF            (1)
502 #define PTA_AFH_LEVERAGE_ON_DEF           (0)
503 #define PTA_NUMBER_QUIET_CYCLE_DEF        (0)
504 #define PTA_MAX_NUM_CTS_DEF               (3)
505 #define PTA_NUMBER_OF_WLAN_PACKETS_DEF    (2)
506 #define PTA_NUMBER_OF_BT_PACKETS_DEF      (2)
507 #define PTA_PROTECTIVE_RX_TIME_FAST_DEF   (1500)
508 #define PTA_PROTECTIVE_TX_TIME_FAST_DEF   (3000)
509 #define PTA_CYCLE_TIME_FAST_DEF           (8700)
510 #define PTA_RX_FOR_AVALANCHE_DEF          (5)
511 #define PTA_ELP_HP_DEF                    (0)
512 #define PTA_ANTI_STARVE_PERIOD_DEF        (500)
513 #define PTA_ANTI_STARVE_NUM_CYCLE_DEF     (4)
514 #define PTA_ALLOW_PA_SD_DEF               (1)
515 #define PTA_TIME_BEFORE_BEACON_DEF        (6300)
516 #define PTA_HPDM_MAX_TIME_DEF             (1600)
517 #define PTA_TIME_OUT_NEXT_WLAN_DEF        (2550)
518 #define PTA_AUTO_MODE_NO_CTS_DEF          (0)
519 #define PTA_BT_HP_RESPECTED_DEF           (3)
520 #define PTA_WLAN_RX_MIN_RATE_DEF          (24)
521 #define PTA_ACK_MODE_DEF                  (1)
522
523 struct acx_bt_wlan_coex_param {
524         struct acx_header header;
525
526         /*
527          * The minimum rate of a received WLAN packet in the STA,
528          * during protective mode, of which a new BT-HP request
529          * during this Rx will always be respected and gain the antenna.
530          */
531         u32 min_rate;
532
533         /* Max time the BT HP will be respected. */
534         u16 bt_hp_max_time;
535
536         /* Max time the WLAN HP will be respected. */
537         u16 wlan_hp_max_time;
538
539         /*
540          * The time between the last BT activity
541          * and the moment when the sense mode returns
542          * to SENSE_INACTIVE.
543          */
544         u16 sense_disable_timer;
545
546         /* Time before the next BT HP instance */
547         u16 rx_time_bt_hp;
548         u16 tx_time_bt_hp;
549
550         /* range: 10-20000    default: 1500 */
551         u16 rx_time_bt_hp_fast;
552         u16 tx_time_bt_hp_fast;
553
554         /* range: 2000-65535  default: 8700 */
555         u16 wlan_cycle_fast;
556
557         /* range: 0 - 15000 (Msec) default: 1000 */
558         u16 bt_anti_starvation_period;
559
560         /* range 400-10000(Usec) default: 3000 */
561         u16 next_bt_lp_packet;
562
563         /* Deafult: worst case for BT DH5 traffic */
564         u16 wake_up_beacon;
565
566         /* range: 0-50000(Usec) default: 1050 */
567         u16 hp_dm_max_guard_time;
568
569         /*
570          * This is to prevent both BT & WLAN antenna
571          * starvation.
572          * Range: 100-50000(Usec) default:2550
573          */
574         u16 next_wlan_packet;
575
576         /* 0 -> shared antenna */
577         u8 antenna_type;
578
579         /*
580          * 0 -> TI legacy
581          * 1 -> Palau
582          */
583         u8 signal_type;
584
585         /*
586          * BT AFH status
587          * 0 -> no AFH
588          * 1 -> from dedicated GPIO
589          * 2 -> AFH on (from host)
590          */
591         u8 afh_leverage_on;
592
593         /*
594          * The number of cycles during which no
595          * TX will be sent after 1 cycle of RX
596          * transaction in protective mode
597          */
598         u8 quiet_cycle_num;
599
600         /*
601          * The maximum number of CTSs that will
602          * be sent for receiving RX packet in
603          * protective mode
604          */
605         u8 max_cts;
606
607         /*
608          * The number of WLAN packets
609          * transferred in common mode before
610          * switching to BT.
611          */
612         u8 wlan_packets_num;
613
614         /*
615          * The number of BT packets
616          * transferred in common mode before
617          * switching to WLAN.
618          */
619         u8 bt_packets_num;
620
621         /* range: 1-255  default: 5 */
622         u8 missed_rx_avalanche;
623
624         /* range: 0-1    default: 1 */
625         u8 wlan_elp_hp;
626
627         /* range: 0 - 15  default: 4 */
628         u8 bt_anti_starvation_cycles;
629
630         u8 ack_mode_dual_ant;
631
632         /*
633          * Allow PA_SD assertion/de-assertion
634          * during enabled BT activity.
635          */
636         u8 pa_sd_enable;
637
638         /*
639          * Enable/Disable PTA in auto mode:
640          * Support Both Active & P.S modes
641          */
642         u8 pta_auto_mode_enable;
643
644         /* range: 0 - 20  default: 1 */
645         u8 bt_hp_respected_num;
646 } __attribute__ ((packed));
647
648 #define CCA_THRSH_ENABLE_ENERGY_D       0x140A
649 #define CCA_THRSH_DISABLE_ENERGY_D      0xFFEF
650
651 struct acx_energy_detection {
652         struct acx_header header;
653
654         /* The RX Clear Channel Assessment threshold in the PHY */
655         u16 rx_cca_threshold;
656         u8 tx_energy_detection;
657         u8 pad;
658 } __attribute__ ((packed));
659
660 #define BCN_RX_TIMEOUT_DEF_VALUE        10000
661 #define BROADCAST_RX_TIMEOUT_DEF_VALUE  20000
662 #define RX_BROADCAST_IN_PS_DEF_VALUE    1
663 #define CONSECUTIVE_PS_POLL_FAILURE_DEF 4
664
665 struct acx_beacon_broadcast {
666         struct acx_header header;
667
668         u16 beacon_rx_timeout;
669         u16 broadcast_timeout;
670
671         /* Enables receiving of broadcast packets in PS mode */
672         u8 rx_broadcast_in_ps;
673
674         /* Consecutive PS Poll failures before updating the host */
675         u8 ps_poll_threshold;
676         u8 pad[2];
677 } __attribute__ ((packed));
678
679 struct acx_event_mask {
680         struct acx_header header;
681
682         u32 event_mask;
683         u32 high_event_mask; /* Unused */
684 } __attribute__ ((packed));
685
686 #define CFG_RX_FCS              BIT(2)
687 #define CFG_RX_ALL_GOOD         BIT(3)
688 #define CFG_UNI_FILTER_EN       BIT(4)
689 #define CFG_BSSID_FILTER_EN     BIT(5)
690 #define CFG_MC_FILTER_EN        BIT(6)
691 #define CFG_MC_ADDR0_EN         BIT(7)
692 #define CFG_MC_ADDR1_EN         BIT(8)
693 #define CFG_BC_REJECT_EN        BIT(9)
694 #define CFG_SSID_FILTER_EN      BIT(10)
695 #define CFG_RX_INT_FCS_ERROR    BIT(11)
696 #define CFG_RX_INT_ENCRYPTED    BIT(12)
697 #define CFG_RX_WR_RX_STATUS     BIT(13)
698 #define CFG_RX_FILTER_NULTI     BIT(14)
699 #define CFG_RX_RESERVE          BIT(15)
700 #define CFG_RX_TIMESTAMP_TSF    BIT(16)
701
702 #define CFG_RX_RSV_EN           BIT(0)
703 #define CFG_RX_RCTS_ACK         BIT(1)
704 #define CFG_RX_PRSP_EN          BIT(2)
705 #define CFG_RX_PREQ_EN          BIT(3)
706 #define CFG_RX_MGMT_EN          BIT(4)
707 #define CFG_RX_FCS_ERROR        BIT(5)
708 #define CFG_RX_DATA_EN          BIT(6)
709 #define CFG_RX_CTL_EN           BIT(7)
710 #define CFG_RX_CF_EN            BIT(8)
711 #define CFG_RX_BCN_EN           BIT(9)
712 #define CFG_RX_AUTH_EN          BIT(10)
713 #define CFG_RX_ASSOC_EN         BIT(11)
714
715 #define SCAN_PASSIVE            BIT(0)
716 #define SCAN_5GHZ_BAND          BIT(1)
717 #define SCAN_TRIGGERED          BIT(2)
718 #define SCAN_PRIORITY_HIGH      BIT(3)
719
720 struct acx_fw_gen_frame_rates {
721         struct acx_header header;
722
723         u8 tx_ctrl_frame_rate; /* RATE_* */
724         u8 tx_ctrl_frame_mod; /* CCK_* or PBCC_* */
725         u8 tx_mgt_frame_rate;
726         u8 tx_mgt_frame_mod;
727 } __attribute__ ((packed));
728
729 /* STA MAC */
730 struct acx_dot11_station_id {
731         struct acx_header header;
732
733         u8 mac[ETH_ALEN];
734         u8 pad[2];
735 } __attribute__ ((packed));
736
737 struct acx_feature_config {
738         struct acx_header header;
739
740         u32 options;
741         u32 data_flow_options;
742 } __attribute__ ((packed));
743
744 struct acx_current_tx_power {
745         struct acx_header header;
746
747         u8  current_tx_power;
748         u8  padding[3];
749 } __attribute__ ((packed));
750
751 struct acx_dot11_default_key {
752         struct acx_header header;
753
754         u8 id;
755         u8 pad[3];
756 } __attribute__ ((packed));
757
758 struct acx_tsf_info {
759         struct acx_header header;
760
761         u32 current_tsf_msb;
762         u32 current_tsf_lsb;
763         u32 last_TBTT_msb;
764         u32 last_TBTT_lsb;
765         u8 last_dtim_count;
766         u8 pad[3];
767 } __attribute__ ((packed));
768
769 enum acx_wake_up_event {
770         WAKE_UP_EVENT_BEACON_BITMAP     = 0x01, /* Wake on every Beacon*/
771         WAKE_UP_EVENT_DTIM_BITMAP       = 0x02, /* Wake on every DTIM*/
772         WAKE_UP_EVENT_N_DTIM_BITMAP     = 0x04, /* Wake on every Nth DTIM */
773         WAKE_UP_EVENT_N_BEACONS_BITMAP  = 0x08, /* Wake on every Nth Beacon */
774         WAKE_UP_EVENT_BITS_MASK         = 0x0F
775 };
776
777 struct acx_wake_up_condition {
778         struct acx_header header;
779
780         u8 wake_up_event; /* Only one bit can be set */
781         u8 listen_interval;
782         u8 pad[2];
783 } __attribute__ ((packed));
784
785 struct acx_aid {
786         struct acx_header header;
787
788         /*
789          * To be set when associated with an AP.
790          */
791         u16 aid;
792         u8 pad[2];
793 } __attribute__ ((packed));
794
795 enum acx_preamble_type {
796         ACX_PREAMBLE_LONG = 0,
797         ACX_PREAMBLE_SHORT = 1
798 };
799
800 struct acx_preamble {
801         struct acx_header header;
802
803         /*
804          * When set, the WiLink transmits the frames with a short preamble and
805          * when cleared, the WiLink transmits the frames with a long preamble.
806          */
807         u8 preamble;
808         u8 padding[3];
809 } __attribute__ ((packed));
810
811 enum acx_ctsprotect_type {
812         CTSPROTECT_DISABLE = 0,
813         CTSPROTECT_ENABLE = 1
814 };
815
816 struct acx_ctsprotect {
817         struct acx_header header;
818         u8 ctsprotect;
819         u8 padding[3];
820 } __attribute__ ((packed));
821
822 struct acx_tx_statistics {
823         u32 internal_desc_overflow;
824 }  __attribute__ ((packed));
825
826 struct acx_rx_statistics {
827         u32 out_of_mem;
828         u32 hdr_overflow;
829         u32 hw_stuck;
830         u32 dropped;
831         u32 fcs_err;
832         u32 xfr_hint_trig;
833         u32 path_reset;
834         u32 reset_counter;
835 } __attribute__ ((packed));
836
837 struct acx_dma_statistics {
838         u32 rx_requested;
839         u32 rx_errors;
840         u32 tx_requested;
841         u32 tx_errors;
842 }  __attribute__ ((packed));
843
844 struct acx_isr_statistics {
845         /* host command complete */
846         u32 cmd_cmplt;
847
848         /* fiqisr() */
849         u32 fiqs;
850
851         /* (INT_STS_ND & INT_TRIG_RX_HEADER) */
852         u32 rx_headers;
853
854         /* (INT_STS_ND & INT_TRIG_RX_CMPLT) */
855         u32 rx_completes;
856
857         /* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */
858         u32 rx_mem_overflow;
859
860         /* (INT_STS_ND & INT_TRIG_S_RX_RDY) */
861         u32 rx_rdys;
862
863         /* irqisr() */
864         u32 irqs;
865
866         /* (INT_STS_ND & INT_TRIG_TX_PROC) */
867         u32 tx_procs;
868
869         /* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */
870         u32 decrypt_done;
871
872         /* (INT_STS_ND & INT_TRIG_DMA0) */
873         u32 dma0_done;
874
875         /* (INT_STS_ND & INT_TRIG_DMA1) */
876         u32 dma1_done;
877
878         /* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */
879         u32 tx_exch_complete;
880
881         /* (INT_STS_ND & INT_TRIG_COMMAND) */
882         u32 commands;
883
884         /* (INT_STS_ND & INT_TRIG_RX_PROC) */
885         u32 rx_procs;
886
887         /* (INT_STS_ND & INT_TRIG_PM_802) */
888         u32 hw_pm_mode_changes;
889
890         /* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */
891         u32 host_acknowledges;
892
893         /* (INT_STS_ND & INT_TRIG_PM_PCI) */
894         u32 pci_pm;
895
896         /* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */
897         u32 wakeups;
898
899         /* (INT_STS_ND & INT_TRIG_LOW_RSSI) */
900         u32 low_rssi;
901 } __attribute__ ((packed));
902
903 struct acx_wep_statistics {
904         /* WEP address keys configured */
905         u32 addr_key_count;
906
907         /* default keys configured */
908         u32 default_key_count;
909
910         u32 reserved;
911
912         /* number of times that WEP key not found on lookup */
913         u32 key_not_found;
914
915         /* number of times that WEP key decryption failed */
916         u32 decrypt_fail;
917
918         /* WEP packets decrypted */
919         u32 packets;
920
921         /* WEP decrypt interrupts */
922         u32 interrupt;
923 } __attribute__ ((packed));
924
925 #define ACX_MISSED_BEACONS_SPREAD 10
926
927 struct acx_pwr_statistics {
928         /* the amount of enters into power save mode (both PD & ELP) */
929         u32 ps_enter;
930
931         /* the amount of enters into ELP mode */
932         u32 elp_enter;
933
934         /* the amount of missing beacon interrupts to the host */
935         u32 missing_bcns;
936
937         /* the amount of wake on host-access times */
938         u32 wake_on_host;
939
940         /* the amount of wake on timer-expire */
941         u32 wake_on_timer_exp;
942
943         /* the number of packets that were transmitted with PS bit set */
944         u32 tx_with_ps;
945
946         /* the number of packets that were transmitted with PS bit clear */
947         u32 tx_without_ps;
948
949         /* the number of received beacons */
950         u32 rcvd_beacons;
951
952         /* the number of entering into PowerOn (power save off) */
953         u32 power_save_off;
954
955         /* the number of entries into power save mode */
956         u16 enable_ps;
957
958         /*
959          * the number of exits from power save, not including failed PS
960          * transitions
961          */
962         u16 disable_ps;
963
964         /*
965          * the number of times the TSF counter was adjusted because
966          * of drift
967          */
968         u32 fix_tsf_ps;
969
970         /* Gives statistics about the spread continuous missed beacons.
971          * The 16 LSB are dedicated for the PS mode.
972          * The 16 MSB are dedicated for the PS mode.
973          * cont_miss_bcns_spread[0] - single missed beacon.
974          * cont_miss_bcns_spread[1] - two continuous missed beacons.
975          * cont_miss_bcns_spread[2] - three continuous missed beacons.
976          * ...
977          * cont_miss_bcns_spread[9] - ten and more continuous missed beacons.
978         */
979         u32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD];
980
981         /* the number of beacons in awake mode */
982         u32 rcvd_awake_beacons;
983 } __attribute__ ((packed));
984
985 struct acx_mic_statistics {
986         u32 rx_pkts;
987         u32 calc_failure;
988 } __attribute__ ((packed));
989
990 struct acx_aes_statistics {
991         u32 encrypt_fail;
992         u32 decrypt_fail;
993         u32 encrypt_packets;
994         u32 decrypt_packets;
995         u32 encrypt_interrupt;
996         u32 decrypt_interrupt;
997 } __attribute__ ((packed));
998
999 struct acx_event_statistics {
1000         u32 heart_beat;
1001         u32 calibration;
1002         u32 rx_mismatch;
1003         u32 rx_mem_empty;
1004         u32 rx_pool;
1005         u32 oom_late;
1006         u32 phy_transmit_error;
1007         u32 tx_stuck;
1008 } __attribute__ ((packed));
1009
1010 struct acx_ps_statistics {
1011         u32 pspoll_timeouts;
1012         u32 upsd_timeouts;
1013         u32 upsd_max_sptime;
1014         u32 upsd_max_apturn;
1015         u32 pspoll_max_apturn;
1016         u32 pspoll_utilization;
1017         u32 upsd_utilization;
1018 } __attribute__ ((packed));
1019
1020 struct acx_rxpipe_statistics {
1021         u32 rx_prep_beacon_drop;
1022         u32 descr_host_int_trig_rx_data;
1023         u32 beacon_buffer_thres_host_int_trig_rx_data;
1024         u32 missed_beacon_host_int_trig_rx_data;
1025         u32 tx_xfr_host_int_trig_rx_data;
1026 } __attribute__ ((packed));
1027
1028 struct acx_statistics {
1029         struct acx_header header;
1030
1031         struct acx_tx_statistics tx;
1032         struct acx_rx_statistics rx;
1033         struct acx_dma_statistics dma;
1034         struct acx_isr_statistics isr;
1035         struct acx_wep_statistics wep;
1036         struct acx_pwr_statistics pwr;
1037         struct acx_aes_statistics aes;
1038         struct acx_mic_statistics mic;
1039         struct acx_event_statistics event;
1040         struct acx_ps_statistics ps;
1041         struct acx_rxpipe_statistics rxpipe;
1042 } __attribute__ ((packed));
1043
1044 #define ACX_MAX_RATE_CLASSES       8
1045 #define ACX_RATE_MASK_UNSPECIFIED  0
1046 #define ACX_RATE_RETRY_LIMIT      10
1047
1048 struct acx_rate_class {
1049         u32 enabled_rates;
1050         u8 short_retry_limit;
1051         u8 long_retry_limit;
1052         u8 aflags;
1053         u8 reserved;
1054 };
1055
1056 struct acx_rate_policy {
1057         struct acx_header header;
1058
1059         u32 rate_class_cnt;
1060         struct acx_rate_class rate_class[ACX_MAX_RATE_CLASSES];
1061 } __attribute__ ((packed));
1062
1063 struct wl1251_acx_memory {
1064         __le16 num_stations; /* number of STAs to be supported. */
1065         u16 reserved_1;
1066
1067         /*
1068          * Nmber of memory buffers for the RX mem pool.
1069          * The actual number may be less if there are
1070          * not enough blocks left for the minimum num
1071          * of TX ones.
1072          */
1073         u8 rx_mem_block_num;
1074         u8 reserved_2;
1075         u8 num_tx_queues; /* From 1 to 16 */
1076         u8 host_if_options; /* HOST_IF* */
1077         u8 tx_min_mem_block_num;
1078         u8 num_ssid_profiles;
1079         __le16 debug_buffer_size;
1080 } __attribute__ ((packed));
1081
1082
1083 #define ACX_RX_DESC_MIN                1
1084 #define ACX_RX_DESC_MAX                127
1085 #define ACX_RX_DESC_DEF                32
1086 struct wl1251_acx_rx_queue_config {
1087         u8 num_descs;
1088         u8 pad;
1089         u8 type;
1090         u8 priority;
1091         __le32 dma_address;
1092 } __attribute__ ((packed));
1093
1094 #define ACX_TX_DESC_MIN                1
1095 #define ACX_TX_DESC_MAX                127
1096 #define ACX_TX_DESC_DEF                16
1097 struct wl1251_acx_tx_queue_config {
1098     u8 num_descs;
1099     u8 pad[2];
1100     u8 attributes;
1101 } __attribute__ ((packed));
1102
1103 #define MAX_TX_QUEUE_CONFIGS 5
1104 #define MAX_TX_QUEUES 4
1105 struct wl1251_acx_config_memory {
1106         struct acx_header header;
1107
1108         struct wl1251_acx_memory mem_config;
1109         struct wl1251_acx_rx_queue_config rx_queue_config;
1110         struct wl1251_acx_tx_queue_config tx_queue_config[MAX_TX_QUEUE_CONFIGS];
1111 } __attribute__ ((packed));
1112
1113 struct wl1251_acx_mem_map {
1114         struct acx_header header;
1115
1116         void *code_start;
1117         void *code_end;
1118
1119         void *wep_defkey_start;
1120         void *wep_defkey_end;
1121
1122         void *sta_table_start;
1123         void *sta_table_end;
1124
1125         void *packet_template_start;
1126         void *packet_template_end;
1127
1128         void *queue_memory_start;
1129         void *queue_memory_end;
1130
1131         void *packet_memory_pool_start;
1132         void *packet_memory_pool_end;
1133
1134         void *debug_buffer1_start;
1135         void *debug_buffer1_end;
1136
1137         void *debug_buffer2_start;
1138         void *debug_buffer2_end;
1139
1140         /* Number of blocks FW allocated for TX packets */
1141         u32 num_tx_mem_blocks;
1142
1143         /* Number of blocks FW allocated for RX packets */
1144         u32 num_rx_mem_blocks;
1145 } __attribute__ ((packed));
1146
1147 /*************************************************************************
1148
1149     Host Interrupt Register (WiLink -> Host)
1150
1151 **************************************************************************/
1152
1153 /* RX packet is ready in Xfer buffer #0 */
1154 #define WL1251_ACX_INTR_RX0_DATA      BIT(0)
1155
1156 /* TX result(s) are in the TX complete buffer */
1157 #define WL1251_ACX_INTR_TX_RESULT       BIT(1)
1158
1159 /* OBSOLETE */
1160 #define WL1251_ACX_INTR_TX_XFR          BIT(2)
1161
1162 /* RX packet is ready in Xfer buffer #1 */
1163 #define WL1251_ACX_INTR_RX1_DATA        BIT(3)
1164
1165 /* Event was entered to Event MBOX #A */
1166 #define WL1251_ACX_INTR_EVENT_A         BIT(4)
1167
1168 /* Event was entered to Event MBOX #B */
1169 #define WL1251_ACX_INTR_EVENT_B         BIT(5)
1170
1171 /* OBSOLETE */
1172 #define WL1251_ACX_INTR_WAKE_ON_HOST    BIT(6)
1173
1174 /* Trace meassge on MBOX #A */
1175 #define WL1251_ACX_INTR_TRACE_A         BIT(7)
1176
1177 /* Trace meassge on MBOX #B */
1178 #define WL1251_ACX_INTR_TRACE_B         BIT(8)
1179
1180 /* Command processing completion */
1181 #define WL1251_ACX_INTR_CMD_COMPLETE    BIT(9)
1182
1183 /* Init sequence is done */
1184 #define WL1251_ACX_INTR_INIT_COMPLETE   BIT(14)
1185
1186 #define WL1251_ACX_INTR_ALL           0xFFFFFFFF
1187
1188 enum {
1189         ACX_WAKE_UP_CONDITIONS      = 0x0002,
1190         ACX_MEM_CFG                 = 0x0003,
1191         ACX_SLOT                    = 0x0004,
1192         ACX_QUEUE_HEAD              = 0x0005, /* for MASTER mode only */
1193         ACX_AC_CFG                  = 0x0007,
1194         ACX_MEM_MAP                 = 0x0008,
1195         ACX_AID                     = 0x000A,
1196         ACX_RADIO_PARAM             = 0x000B, /* Not used */
1197         ACX_CFG                     = 0x000C, /* Not used */
1198         ACX_FW_REV                  = 0x000D,
1199         ACX_MEDIUM_USAGE            = 0x000F,
1200         ACX_RX_CFG                  = 0x0010,
1201         ACX_TX_QUEUE_CFG            = 0x0011, /* FIXME: only used by wl1251 */
1202         ACX_BSS_IN_PS               = 0x0012, /* for AP only */
1203         ACX_STATISTICS              = 0x0013, /* Debug API */
1204         ACX_FEATURE_CFG             = 0x0015,
1205         ACX_MISC_CFG                = 0x0017, /* Not used */
1206         ACX_TID_CFG                 = 0x001A,
1207         ACX_BEACON_FILTER_OPT       = 0x001F,
1208         ACX_LOW_RSSI                = 0x0020,
1209         ACX_NOISE_HIST              = 0x0021,
1210         ACX_HDK_VERSION             = 0x0022, /* ??? */
1211         ACX_PD_THRESHOLD            = 0x0023,
1212         ACX_DATA_PATH_PARAMS        = 0x0024, /* WO */
1213         ACX_DATA_PATH_RESP_PARAMS   = 0x0024, /* RO */
1214         ACX_CCA_THRESHOLD           = 0x0025,
1215         ACX_EVENT_MBOX_MASK         = 0x0026,
1216 #ifdef FW_RUNNING_AS_AP
1217         ACX_DTIM_PERIOD             = 0x0027, /* for AP only */
1218 #else
1219         ACX_WR_TBTT_AND_DTIM        = 0x0027, /* STA only */
1220 #endif
1221         ACX_ACI_OPTION_CFG          = 0x0029, /* OBSOLETE (for 1251)*/
1222         ACX_GPIO_CFG                = 0x002A, /* Not used */
1223         ACX_GPIO_SET                = 0x002B, /* Not used */
1224         ACX_PM_CFG                  = 0x002C, /* To Be Documented */
1225         ACX_CONN_MONIT_PARAMS       = 0x002D,
1226         ACX_AVERAGE_RSSI            = 0x002E, /* Not used */
1227         ACX_CONS_TX_FAILURE         = 0x002F,
1228         ACX_BCN_DTIM_OPTIONS        = 0x0031,
1229         ACX_SG_ENABLE               = 0x0032,
1230         ACX_SG_CFG                  = 0x0033,
1231         ACX_ANTENNA_DIVERSITY_CFG   = 0x0035, /* To Be Documented */
1232         ACX_LOW_SNR                 = 0x0037, /* To Be Documented */
1233         ACX_BEACON_FILTER_TABLE     = 0x0038,
1234         ACX_ARP_IP_FILTER           = 0x0039,
1235         ACX_ROAMING_STATISTICS_TBL  = 0x003B,
1236         ACX_RATE_POLICY             = 0x003D,
1237         ACX_CTS_PROTECTION          = 0x003E,
1238         ACX_SLEEP_AUTH              = 0x003F,
1239         ACX_PREAMBLE_TYPE           = 0x0040,
1240         ACX_ERROR_CNT               = 0x0041,
1241         ACX_FW_GEN_FRAME_RATES      = 0x0042,
1242         ACX_IBSS_FILTER             = 0x0044,
1243         ACX_SERVICE_PERIOD_TIMEOUT  = 0x0045,
1244         ACX_TSF_INFO                = 0x0046,
1245         ACX_CONFIG_PS_WMM           = 0x0049,
1246         ACX_ENABLE_RX_DATA_FILTER   = 0x004A,
1247         ACX_SET_RX_DATA_FILTER      = 0x004B,
1248         ACX_GET_DATA_FILTER_STATISTICS = 0x004C,
1249         ACX_POWER_LEVEL_TABLE       = 0x004D,
1250         ACX_BET_ENABLE              = 0x0050,
1251         DOT11_STATION_ID            = 0x1001,
1252         DOT11_RX_MSDU_LIFE_TIME     = 0x1004,
1253         DOT11_CUR_TX_PWR            = 0x100D,
1254         DOT11_DEFAULT_KEY           = 0x1010,
1255         DOT11_RX_DOT11_MODE         = 0x1012,
1256         DOT11_RTS_THRESHOLD         = 0x1013,
1257         DOT11_GROUP_ADDRESS_TBL     = 0x1014,
1258
1259         MAX_DOT11_IE = DOT11_GROUP_ADDRESS_TBL,
1260
1261         MAX_IE = 0xFFFF
1262 };
1263
1264
1265 int wl1251_acx_frame_rates(struct wl1251 *wl, u8 ctrl_rate, u8 ctrl_mod,
1266                            u8 mgt_rate, u8 mgt_mod);
1267 int wl1251_acx_station_id(struct wl1251 *wl);
1268 int wl1251_acx_default_key(struct wl1251 *wl, u8 key_id);
1269 int wl1251_acx_wake_up_conditions(struct wl1251 *wl, u8 wake_up_event,
1270                                   u8 listen_interval);
1271 int wl1251_acx_sleep_auth(struct wl1251 *wl, u8 sleep_auth);
1272 int wl1251_acx_fw_version(struct wl1251 *wl, char *buf, size_t len);
1273 int wl1251_acx_tx_power(struct wl1251 *wl, int power);
1274 int wl1251_acx_feature_cfg(struct wl1251 *wl);
1275 int wl1251_acx_mem_map(struct wl1251 *wl,
1276                        struct acx_header *mem_map, size_t len);
1277 int wl1251_acx_data_path_params(struct wl1251 *wl,
1278                                 struct acx_data_path_params_resp *data_path);
1279 int wl1251_acx_rx_msdu_life_time(struct wl1251 *wl, u32 life_time);
1280 int wl1251_acx_rx_config(struct wl1251 *wl, u32 config, u32 filter);
1281 int wl1251_acx_pd_threshold(struct wl1251 *wl);
1282 int wl1251_acx_slot(struct wl1251 *wl, enum acx_slot_type slot_time);
1283 int wl1251_acx_group_address_tbl(struct wl1251 *wl);
1284 int wl1251_acx_service_period_timeout(struct wl1251 *wl);
1285 int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold);
1286 int wl1251_acx_beacon_filter_opt(struct wl1251 *wl);
1287 int wl1251_acx_beacon_filter_table(struct wl1251 *wl);
1288 int wl1251_acx_conn_monit_params(struct wl1251 *wl);
1289 int wl1251_acx_sg_enable(struct wl1251 *wl);
1290 int wl1251_acx_sg_cfg(struct wl1251 *wl);
1291 int wl1251_acx_cca_threshold(struct wl1251 *wl);
1292 int wl1251_acx_bcn_dtim_options(struct wl1251 *wl);
1293 int wl1251_acx_aid(struct wl1251 *wl, u16 aid);
1294 int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask);
1295 int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble);
1296 int wl1251_acx_cts_protect(struct wl1251 *wl,
1297                             enum acx_ctsprotect_type ctsprotect);
1298 int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats);
1299 int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime);
1300 int wl1251_acx_rate_policies(struct wl1251 *wl);
1301 int wl1251_acx_mem_cfg(struct wl1251 *wl);
1302
1303 #endif /* __WL1251_ACX_H__ */