blob: c1773459bf55ecaa2de25fa6c1625dc221fd8dad [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.
5 * Copyright (C) 2008-2009 Nokia Corporation
6 *
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
25#ifndef __WL1271_ACX_H__
26#define __WL1271_ACX_H__
27
28#include "wl1271.h"
29#include "wl1271_cmd.h"
30
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)
50/* Trace meassge on MBOX #A */
51#define WL1271_ACX_INTR_TRACE_A BIT(7)
52/* Trace meassge on MBOX #B */
53#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
64#define WL1271_INTR_MASK (WL1271_ACX_INTR_EVENT_A | \
65 WL1271_ACX_INTR_EVENT_B | \
66 WL1271_ACX_INTR_DATA)
67
68/* Target's information element */
69struct acx_header {
70 struct wl1271_cmd_header cmd;
71
72 /* acx (or information element) header */
73 u16 id;
74
75 /* payload length (not including headers */
76 u16 len;
77};
78
79struct acx_error_counter {
80 struct acx_header header;
81
82 /* The number of PLCP errors since the last time this */
83 /* information element was interrogated. This field is */
84 /* automatically cleared when it is interrogated.*/
85 u32 PLCP_error;
86
87 /* The number of FCS errors since the last time this */
88 /* information element was interrogated. This field is */
89 /* automatically cleared when it is interrogated.*/
90 u32 FCS_error;
91
92 /* The number of MPDUs without PLCP header errors received*/
93 /* since the last time this information element was interrogated. */
94 /* This field is automatically cleared when it is interrogated.*/
95 u32 valid_frame;
96
97 /* the number of missed sequence numbers in the squentially */
98 /* values of frames seq numbers */
99 u32 seq_num_miss;
100} __attribute__ ((packed));
101
102struct acx_revision {
103 struct acx_header header;
104
105 /*
106 * The WiLink firmware version, an ASCII string x.x.x.x,
107 * that uniquely identifies the current firmware.
108 * The left most digit is incremented each time a
109 * significant change is made to the firmware, such as
110 * code redesign or new platform support.
111 * The second digit is incremented when major enhancements
112 * are added or major fixes are made.
113 * The third digit is incremented for each GA release.
114 * The fourth digit is incremented for each build.
115 * The first two digits identify a firmware release version,
116 * in other words, a unique set of features.
117 * The first three digits identify a GA release.
118 */
119 char fw_version[20];
120
121 /*
122 * This 4 byte field specifies the WiLink hardware version.
123 * bits 0 - 15: Reserved.
124 * bits 16 - 23: Version ID - The WiLink version ID
125 * (1 = first spin, 2 = second spin, and so on).
126 * bits 24 - 31: Chip ID - The WiLink chip ID.
127 */
128 u32 hw_version;
129} __attribute__ ((packed));
130
131enum wl1271_psm_mode {
132 /* Active mode */
133 WL1271_PSM_CAM = 0,
134
135 /* Power save mode */
136 WL1271_PSM_PS = 1,
137
138 /* Extreme low power */
139 WL1271_PSM_ELP = 2,
140};
141
142struct acx_sleep_auth {
143 struct acx_header header;
144
145 /* The sleep level authorization of the device. */
146 /* 0 - Always active*/
147 /* 1 - Power down mode: light / fast sleep*/
148 /* 2 - ELP mode: Deep / Max sleep*/
149 u8 sleep_auth;
150 u8 padding[3];
151} __attribute__ ((packed));
152
153enum {
154 HOSTIF_PCI_MASTER_HOST_INDIRECT,
155 HOSTIF_PCI_MASTER_HOST_DIRECT,
156 HOSTIF_SLAVE,
157 HOSTIF_PKT_RING,
158 HOSTIF_DONTCARE = 0xFF
159};
160
161#define DEFAULT_UCAST_PRIORITY 0
162#define DEFAULT_RX_Q_PRIORITY 0
163#define DEFAULT_NUM_STATIONS 1
164#define DEFAULT_RXQ_PRIORITY 0 /* low 0 .. 15 high */
165#define DEFAULT_RXQ_TYPE 0x07 /* All frames, Data/Ctrl/Mgmt */
166#define TRACE_BUFFER_MAX_SIZE 256
167
168#define DP_RX_PACKET_RING_CHUNK_SIZE 1600
169#define DP_TX_PACKET_RING_CHUNK_SIZE 1600
170#define DP_RX_PACKET_RING_CHUNK_NUM 2
171#define DP_TX_PACKET_RING_CHUNK_NUM 2
172#define DP_TX_COMPLETE_TIME_OUT 20
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300173
174#define TX_MSDU_LIFETIME_MIN 0
175#define TX_MSDU_LIFETIME_MAX 3000
176#define TX_MSDU_LIFETIME_DEF 512
177#define RX_MSDU_LIFETIME_MIN 0
178#define RX_MSDU_LIFETIME_MAX 0xFFFFFFFF
179#define RX_MSDU_LIFETIME_DEF 512000
180
181struct acx_rx_msdu_lifetime {
182 struct acx_header header;
183
184 /*
185 * The maximum amount of time, in TU, before the
186 * firmware discards the MSDU.
187 */
188 u32 lifetime;
189} __attribute__ ((packed));
190
191/*
192 * RX Config Options Table
193 * Bit Definition
194 * === ==========
195 * 31:14 Reserved
196 * 13 Copy RX Status - when set, write three receive status words
197 * to top of rx'd MPDUs.
198 * When cleared, do not write three status words (added rev 1.5)
199 * 12 Reserved
200 * 11 RX Complete upon FCS error - when set, give rx complete
201 * interrupt for FCS errors, after the rx filtering, e.g. unicast
202 * frames not to us with FCS error will not generate an interrupt.
203 * 10 SSID Filter Enable - When set, the WiLink discards all beacon,
204 * probe request, and probe response frames with an SSID that does
205 * not match the SSID specified by the host in the START/JOIN
206 * command.
207 * When clear, the WiLink receives frames with any SSID.
208 * 9 Broadcast Filter Enable - When set, the WiLink discards all
209 * broadcast frames. When clear, the WiLink receives all received
210 * broadcast frames.
211 * 8:6 Reserved
212 * 5 BSSID Filter Enable - When set, the WiLink discards any frames
213 * with a BSSID that does not match the BSSID specified by the
214 * host.
215 * When clear, the WiLink receives frames from any BSSID.
216 * 4 MAC Addr Filter - When set, the WiLink discards any frames
217 * with a destination address that does not match the MAC address
218 * of the adaptor.
219 * When clear, the WiLink receives frames destined to any MAC
220 * address.
221 * 3 Promiscuous - When set, the WiLink receives all valid frames
222 * (i.e., all frames that pass the FCS check).
223 * When clear, only frames that pass the other filters specified
224 * are received.
225 * 2 FCS - When set, the WiLink includes the FCS with the received
226 * frame.
227 * When cleared, the FCS is discarded.
228 * 1 PLCP header - When set, write all data from baseband to frame
229 * buffer including PHY header.
230 * 0 Reserved - Always equal to 0.
231 *
232 * RX Filter Options Table
233 * Bit Definition
234 * === ==========
235 * 31:12 Reserved - Always equal to 0.
236 * 11 Association - When set, the WiLink receives all association
237 * related frames (association request/response, reassocation
238 * request/response, and disassociation). When clear, these frames
239 * are discarded.
240 * 10 Auth/De auth - When set, the WiLink receives all authentication
241 * and de-authentication frames. When clear, these frames are
242 * discarded.
243 * 9 Beacon - When set, the WiLink receives all beacon frames.
244 * When clear, these frames are discarded.
245 * 8 Contention Free - When set, the WiLink receives all contention
246 * free frames.
247 * When clear, these frames are discarded.
248 * 7 Control - When set, the WiLink receives all control frames.
249 * When clear, these frames are discarded.
250 * 6 Data - When set, the WiLink receives all data frames.
251 * When clear, these frames are discarded.
252 * 5 FCS Error - When set, the WiLink receives frames that have FCS
253 * errors.
254 * When clear, these frames are discarded.
255 * 4 Management - When set, the WiLink receives all management
256 * frames.
257 * When clear, these frames are discarded.
258 * 3 Probe Request - When set, the WiLink receives all probe request
259 * frames.
260 * When clear, these frames are discarded.
261 * 2 Probe Response - When set, the WiLink receives all probe
262 * response frames.
263 * When clear, these frames are discarded.
264 * 1 RTS/CTS/ACK - When set, the WiLink receives all RTS, CTS and ACK
265 * frames.
266 * When clear, these frames are discarded.
267 * 0 Rsvd Type/Sub Type - When set, the WiLink receives all frames
268 * that have reserved frame types and sub types as defined by the
269 * 802.11 specification.
270 * When clear, these frames are discarded.
271 */
272struct acx_rx_config {
273 struct acx_header header;
274
275 u32 config_options;
276 u32 filter_options;
277} __attribute__ ((packed));
278
279struct acx_packet_detection {
280 struct acx_header header;
281
282 u32 threshold;
283} __attribute__ ((packed));
284
285
286enum acx_slot_type {
287 SLOT_TIME_LONG = 0,
288 SLOT_TIME_SHORT = 1,
289 DEFAULT_SLOT_TIME = SLOT_TIME_SHORT,
290 MAX_SLOT_TIMES = 0xFF
291};
292
293#define STATION_WONE_INDEX 0
294
295struct acx_slot {
296 struct acx_header header;
297
298 u8 wone_index; /* Reserved */
299 u8 slot_time;
300 u8 reserved[6];
301} __attribute__ ((packed));
302
303
304#define ADDRESS_GROUP_MAX (8)
305#define ADDRESS_GROUP_MAX_LEN (ETH_ALEN * ADDRESS_GROUP_MAX)
306
307struct acx_dot11_grp_addr_tbl {
308 struct acx_header header;
309
310 u8 enabled;
311 u8 num_groups;
312 u8 pad[2];
313 u8 mac_table[ADDRESS_GROUP_MAX_LEN];
314} __attribute__ ((packed));
315
316
317#define RX_TIMEOUT_PS_POLL_MIN 0
318#define RX_TIMEOUT_PS_POLL_MAX (200000)
319#define RX_TIMEOUT_PS_POLL_DEF (15)
320#define RX_TIMEOUT_UPSD_MIN 0
321#define RX_TIMEOUT_UPSD_MAX (200000)
322#define RX_TIMEOUT_UPSD_DEF (15)
323
324struct acx_rx_timeout {
325 struct acx_header header;
326
327 /*
328 * The longest time the STA will wait to receive
329 * traffic from the AP after a PS-poll has been
330 * transmitted.
331 */
332 u16 ps_poll_timeout;
333
334 /*
335 * The longest time the STA will wait to receive
336 * traffic from the AP after a frame has been sent
337 * from an UPSD enabled queue.
338 */
339 u16 upsd_timeout;
340} __attribute__ ((packed));
341
342#define RTS_THRESHOLD_MIN 0
343#define RTS_THRESHOLD_MAX 4096
344#define RTS_THRESHOLD_DEF 2347
345
346struct acx_rts_threshold {
347 struct acx_header header;
348
349 u16 threshold;
350 u8 pad[2];
351} __attribute__ ((packed));
352
353struct acx_beacon_filter_option {
354 struct acx_header header;
355
356 u8 enable;
357
358 /*
359 * The number of beacons without the unicast TIM
360 * bit set that the firmware buffers before
361 * signaling the host about ready frames.
362 * When set to 0 and the filter is enabled, beacons
363 * without the unicast TIM bit set are dropped.
364 */
365 u8 max_num_beacons;
366 u8 pad[2];
367} __attribute__ ((packed));
368
369/*
370 * ACXBeaconFilterEntry (not 221)
371 * Byte Offset Size (Bytes) Definition
372 * =========== ============ ==========
373 * 0 1 IE identifier
374 * 1 1 Treatment bit mask
375 *
376 * ACXBeaconFilterEntry (221)
377 * Byte Offset Size (Bytes) Definition
378 * =========== ============ ==========
379 * 0 1 IE identifier
380 * 1 1 Treatment bit mask
381 * 2 3 OUI
382 * 5 1 Type
383 * 6 2 Version
384 *
385 *
386 * Treatment bit mask - The information element handling:
387 * bit 0 - The information element is compared and transferred
388 * in case of change.
389 * bit 1 - The information element is transferred to the host
390 * with each appearance or disappearance.
391 * Note that both bits can be set at the same time.
392 */
393#define BEACON_FILTER_TABLE_MAX_IE_NUM (32)
394#define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
395#define BEACON_FILTER_TABLE_IE_ENTRY_SIZE (2)
396#define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
397#define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
398 BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
399 (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
400 BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))
401
402struct acx_beacon_filter_ie_table {
403 struct acx_header header;
404
405 u8 num_ie;
406 u8 table[BEACON_FILTER_TABLE_MAX_SIZE];
407 u8 pad[3];
408} __attribute__ ((packed));
409
410enum {
411 SG_ENABLE = 0,
412 SG_DISABLE,
413 SG_SENSE_NO_ACTIVITY,
414 SG_SENSE_ACTIVE
415};
416
417struct acx_bt_wlan_coex {
418 struct acx_header header;
419
420 /*
421 * 0 -> PTA enabled
422 * 1 -> PTA disabled
423 * 2 -> sense no active mode, i.e.
424 * an interrupt is sent upon
425 * BT activity.
426 * 3 -> PTA is switched on in response
427 * to the interrupt sending.
428 */
429 u8 enable;
430 u8 pad[3];
431} __attribute__ ((packed));
432
433#define PTA_ANTENNA_TYPE_DEF (0)
434#define PTA_BT_HP_MAXTIME_DEF (2000)
435#define PTA_WLAN_HP_MAX_TIME_DEF (5000)
436#define PTA_SENSE_DISABLE_TIMER_DEF (1350)
437#define PTA_PROTECTIVE_RX_TIME_DEF (1500)
438#define PTA_PROTECTIVE_TX_TIME_DEF (1500)
439#define PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF (3000)
440#define PTA_SIGNALING_TYPE_DEF (1)
441#define PTA_AFH_LEVERAGE_ON_DEF (0)
442#define PTA_NUMBER_QUIET_CYCLE_DEF (0)
443#define PTA_MAX_NUM_CTS_DEF (3)
444#define PTA_NUMBER_OF_WLAN_PACKETS_DEF (2)
445#define PTA_NUMBER_OF_BT_PACKETS_DEF (2)
446#define PTA_PROTECTIVE_RX_TIME_FAST_DEF (1500)
447#define PTA_PROTECTIVE_TX_TIME_FAST_DEF (3000)
448#define PTA_CYCLE_TIME_FAST_DEF (8700)
449#define PTA_RX_FOR_AVALANCHE_DEF (5)
450#define PTA_ELP_HP_DEF (0)
451#define PTA_ANTI_STARVE_PERIOD_DEF (500)
452#define PTA_ANTI_STARVE_NUM_CYCLE_DEF (4)
453#define PTA_ALLOW_PA_SD_DEF (1)
454#define PTA_TIME_BEFORE_BEACON_DEF (6300)
455#define PTA_HPDM_MAX_TIME_DEF (1600)
456#define PTA_TIME_OUT_NEXT_WLAN_DEF (2550)
457#define PTA_AUTO_MODE_NO_CTS_DEF (0)
458#define PTA_BT_HP_RESPECTED_DEF (3)
459#define PTA_WLAN_RX_MIN_RATE_DEF (24)
460#define PTA_ACK_MODE_DEF (1)
461
462struct acx_bt_wlan_coex_param {
463 struct acx_header header;
464
465 /*
466 * The minimum rate of a received WLAN packet in the STA,
467 * during protective mode, of which a new BT-HP request
468 * during this Rx will always be respected and gain the antenna.
469 */
470 u32 min_rate;
471
472 /* Max time the BT HP will be respected. */
473 u16 bt_hp_max_time;
474
475 /* Max time the WLAN HP will be respected. */
476 u16 wlan_hp_max_time;
477
478 /*
479 * The time between the last BT activity
480 * and the moment when the sense mode returns
481 * to SENSE_INACTIVE.
482 */
483 u16 sense_disable_timer;
484
485 /* Time before the next BT HP instance */
486 u16 rx_time_bt_hp;
487 u16 tx_time_bt_hp;
488
489 /* range: 10-20000 default: 1500 */
490 u16 rx_time_bt_hp_fast;
491 u16 tx_time_bt_hp_fast;
492
493 /* range: 2000-65535 default: 8700 */
494 u16 wlan_cycle_fast;
495
496 /* range: 0 - 15000 (Msec) default: 1000 */
497 u16 bt_anti_starvation_period;
498
499 /* range 400-10000(Usec) default: 3000 */
500 u16 next_bt_lp_packet;
501
502 /* Deafult: worst case for BT DH5 traffic */
503 u16 wake_up_beacon;
504
505 /* range: 0-50000(Usec) default: 1050 */
506 u16 hp_dm_max_guard_time;
507
508 /*
509 * This is to prevent both BT & WLAN antenna
510 * starvation.
511 * Range: 100-50000(Usec) default:2550
512 */
513 u16 next_wlan_packet;
514
515 /* 0 -> shared antenna */
516 u8 antenna_type;
517
518 /*
519 * 0 -> TI legacy
520 * 1 -> Palau
521 */
522 u8 signal_type;
523
524 /*
525 * BT AFH status
526 * 0 -> no AFH
527 * 1 -> from dedicated GPIO
528 * 2 -> AFH on (from host)
529 */
530 u8 afh_leverage_on;
531
532 /*
533 * The number of cycles during which no
534 * TX will be sent after 1 cycle of RX
535 * transaction in protective mode
536 */
537 u8 quiet_cycle_num;
538
539 /*
540 * The maximum number of CTSs that will
541 * be sent for receiving RX packet in
542 * protective mode
543 */
544 u8 max_cts;
545
546 /*
547 * The number of WLAN packets
548 * transferred in common mode before
549 * switching to BT.
550 */
551 u8 wlan_packets_num;
552
553 /*
554 * The number of BT packets
555 * transferred in common mode before
556 * switching to WLAN.
557 */
558 u8 bt_packets_num;
559
560 /* range: 1-255 default: 5 */
561 u8 missed_rx_avalanche;
562
563 /* range: 0-1 default: 1 */
564 u8 wlan_elp_hp;
565
566 /* range: 0 - 15 default: 4 */
567 u8 bt_anti_starvation_cycles;
568
569 u8 ack_mode_dual_ant;
570
571 /*
572 * Allow PA_SD assertion/de-assertion
573 * during enabled BT activity.
574 */
575 u8 pa_sd_enable;
576
577 /*
578 * Enable/Disable PTA in auto mode:
579 * Support Both Active & P.S modes
580 */
581 u8 pta_auto_mode_enable;
582
583 /* range: 0 - 20 default: 1 */
584 u8 bt_hp_respected_num;
585} __attribute__ ((packed));
586
587#define CCA_THRSH_ENABLE_ENERGY_D 0x140A
588#define CCA_THRSH_DISABLE_ENERGY_D 0xFFEF
589
590struct acx_energy_detection {
591 struct acx_header header;
592
593 /* The RX Clear Channel Assessment threshold in the PHY */
594 u16 rx_cca_threshold;
595 u8 tx_energy_detection;
596 u8 pad;
597} __attribute__ ((packed));
598
599#define BCN_RX_TIMEOUT_DEF_VALUE 10000
600#define BROADCAST_RX_TIMEOUT_DEF_VALUE 20000
601#define RX_BROADCAST_IN_PS_DEF_VALUE 1
602#define CONSECUTIVE_PS_POLL_FAILURE_DEF 4
603
604struct acx_beacon_broadcast {
605 struct acx_header header;
606
607 u16 beacon_rx_timeout;
608 u16 broadcast_timeout;
609
610 /* Enables receiving of broadcast packets in PS mode */
611 u8 rx_broadcast_in_ps;
612
613 /* Consecutive PS Poll failures before updating the host */
614 u8 ps_poll_threshold;
615 u8 pad[2];
616} __attribute__ ((packed));
617
618struct acx_event_mask {
619 struct acx_header header;
620
621 u32 event_mask;
622 u32 high_event_mask; /* Unused */
623} __attribute__ ((packed));
624
625#define CFG_RX_FCS BIT(2)
626#define CFG_RX_ALL_GOOD BIT(3)
627#define CFG_UNI_FILTER_EN BIT(4)
628#define CFG_BSSID_FILTER_EN BIT(5)
629#define CFG_MC_FILTER_EN BIT(6)
630#define CFG_MC_ADDR0_EN BIT(7)
631#define CFG_MC_ADDR1_EN BIT(8)
632#define CFG_BC_REJECT_EN BIT(9)
633#define CFG_SSID_FILTER_EN BIT(10)
634#define CFG_RX_INT_FCS_ERROR BIT(11)
635#define CFG_RX_INT_ENCRYPTED BIT(12)
636#define CFG_RX_WR_RX_STATUS BIT(13)
637#define CFG_RX_FILTER_NULTI BIT(14)
638#define CFG_RX_RESERVE BIT(15)
639#define CFG_RX_TIMESTAMP_TSF BIT(16)
640
641#define CFG_RX_RSV_EN BIT(0)
642#define CFG_RX_RCTS_ACK BIT(1)
643#define CFG_RX_PRSP_EN BIT(2)
644#define CFG_RX_PREQ_EN BIT(3)
645#define CFG_RX_MGMT_EN BIT(4)
646#define CFG_RX_FCS_ERROR BIT(5)
647#define CFG_RX_DATA_EN BIT(6)
648#define CFG_RX_CTL_EN BIT(7)
649#define CFG_RX_CF_EN BIT(8)
650#define CFG_RX_BCN_EN BIT(9)
651#define CFG_RX_AUTH_EN BIT(10)
652#define CFG_RX_ASSOC_EN BIT(11)
653
654#define SCAN_PASSIVE BIT(0)
655#define SCAN_5GHZ_BAND BIT(1)
656#define SCAN_TRIGGERED BIT(2)
657#define SCAN_PRIORITY_HIGH BIT(3)
658
659struct acx_feature_config {
660 struct acx_header header;
661
662 u32 options;
663 u32 data_flow_options;
664} __attribute__ ((packed));
665
666struct acx_current_tx_power {
667 struct acx_header header;
668
669 u8 current_tx_power;
670 u8 padding[3];
671} __attribute__ ((packed));
672
673enum acx_wake_up_event {
674 WAKE_UP_EVENT_BEACON_BITMAP = 0x01, /* Wake on every Beacon*/
675 WAKE_UP_EVENT_DTIM_BITMAP = 0x02, /* Wake on every DTIM*/
676 WAKE_UP_EVENT_N_DTIM_BITMAP = 0x04, /* Wake on every Nth DTIM */
677 WAKE_UP_EVENT_N_BEACONS_BITMAP = 0x08, /* Wake on every Nth Beacon */
678 WAKE_UP_EVENT_BITS_MASK = 0x0F
679};
680
681struct acx_wake_up_condition {
682 struct acx_header header;
683
684 u8 wake_up_event; /* Only one bit can be set */
685 u8 listen_interval;
686 u8 pad[2];
687} __attribute__ ((packed));
688
689struct acx_aid {
690 struct acx_header header;
691
692 /*
693 * To be set when associated with an AP.
694 */
695 u16 aid;
696 u8 pad[2];
697} __attribute__ ((packed));
698
699enum acx_preamble_type {
700 ACX_PREAMBLE_LONG = 0,
701 ACX_PREAMBLE_SHORT = 1
702};
703
704struct acx_preamble {
705 struct acx_header header;
706
707 /*
708 * When set, the WiLink transmits the frames with a short preamble and
709 * when cleared, the WiLink transmits the frames with a long preamble.
710 */
711 u8 preamble;
712 u8 padding[3];
713} __attribute__ ((packed));
714
715enum acx_ctsprotect_type {
716 CTSPROTECT_DISABLE = 0,
717 CTSPROTECT_ENABLE = 1
718};
719
720struct acx_ctsprotect {
721 struct acx_header header;
722 u8 ctsprotect;
723 u8 padding[3];
724} __attribute__ ((packed));
725
726struct acx_tx_statistics {
727 u32 internal_desc_overflow;
728} __attribute__ ((packed));
729
730struct acx_rx_statistics {
731 u32 out_of_mem;
732 u32 hdr_overflow;
733 u32 hw_stuck;
734 u32 dropped;
735 u32 fcs_err;
736 u32 xfr_hint_trig;
737 u32 path_reset;
738 u32 reset_counter;
739} __attribute__ ((packed));
740
741struct acx_dma_statistics {
742 u32 rx_requested;
743 u32 rx_errors;
744 u32 tx_requested;
745 u32 tx_errors;
746} __attribute__ ((packed));
747
748struct acx_isr_statistics {
749 /* host command complete */
750 u32 cmd_cmplt;
751
752 /* fiqisr() */
753 u32 fiqs;
754
755 /* (INT_STS_ND & INT_TRIG_RX_HEADER) */
756 u32 rx_headers;
757
758 /* (INT_STS_ND & INT_TRIG_RX_CMPLT) */
759 u32 rx_completes;
760
761 /* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */
762 u32 rx_mem_overflow;
763
764 /* (INT_STS_ND & INT_TRIG_S_RX_RDY) */
765 u32 rx_rdys;
766
767 /* irqisr() */
768 u32 irqs;
769
770 /* (INT_STS_ND & INT_TRIG_TX_PROC) */
771 u32 tx_procs;
772
773 /* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */
774 u32 decrypt_done;
775
776 /* (INT_STS_ND & INT_TRIG_DMA0) */
777 u32 dma0_done;
778
779 /* (INT_STS_ND & INT_TRIG_DMA1) */
780 u32 dma1_done;
781
782 /* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */
783 u32 tx_exch_complete;
784
785 /* (INT_STS_ND & INT_TRIG_COMMAND) */
786 u32 commands;
787
788 /* (INT_STS_ND & INT_TRIG_RX_PROC) */
789 u32 rx_procs;
790
791 /* (INT_STS_ND & INT_TRIG_PM_802) */
792 u32 hw_pm_mode_changes;
793
794 /* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */
795 u32 host_acknowledges;
796
797 /* (INT_STS_ND & INT_TRIG_PM_PCI) */
798 u32 pci_pm;
799
800 /* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */
801 u32 wakeups;
802
803 /* (INT_STS_ND & INT_TRIG_LOW_RSSI) */
804 u32 low_rssi;
805} __attribute__ ((packed));
806
807struct acx_wep_statistics {
808 /* WEP address keys configured */
809 u32 addr_key_count;
810
811 /* default keys configured */
812 u32 default_key_count;
813
814 u32 reserved;
815
816 /* number of times that WEP key not found on lookup */
817 u32 key_not_found;
818
819 /* number of times that WEP key decryption failed */
820 u32 decrypt_fail;
821
822 /* WEP packets decrypted */
823 u32 packets;
824
825 /* WEP decrypt interrupts */
826 u32 interrupt;
827} __attribute__ ((packed));
828
829#define ACX_MISSED_BEACONS_SPREAD 10
830
831struct acx_pwr_statistics {
832 /* the amount of enters into power save mode (both PD & ELP) */
833 u32 ps_enter;
834
835 /* the amount of enters into ELP mode */
836 u32 elp_enter;
837
838 /* the amount of missing beacon interrupts to the host */
839 u32 missing_bcns;
840
841 /* the amount of wake on host-access times */
842 u32 wake_on_host;
843
844 /* the amount of wake on timer-expire */
845 u32 wake_on_timer_exp;
846
847 /* the number of packets that were transmitted with PS bit set */
848 u32 tx_with_ps;
849
850 /* the number of packets that were transmitted with PS bit clear */
851 u32 tx_without_ps;
852
853 /* the number of received beacons */
854 u32 rcvd_beacons;
855
856 /* the number of entering into PowerOn (power save off) */
857 u32 power_save_off;
858
859 /* the number of entries into power save mode */
860 u16 enable_ps;
861
862 /*
863 * the number of exits from power save, not including failed PS
864 * transitions
865 */
866 u16 disable_ps;
867
868 /*
869 * the number of times the TSF counter was adjusted because
870 * of drift
871 */
872 u32 fix_tsf_ps;
873
874 /* Gives statistics about the spread continuous missed beacons.
875 * The 16 LSB are dedicated for the PS mode.
876 * The 16 MSB are dedicated for the PS mode.
877 * cont_miss_bcns_spread[0] - single missed beacon.
878 * cont_miss_bcns_spread[1] - two continuous missed beacons.
879 * cont_miss_bcns_spread[2] - three continuous missed beacons.
880 * ...
881 * cont_miss_bcns_spread[9] - ten and more continuous missed beacons.
882 */
883 u32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD];
884
885 /* the number of beacons in awake mode */
886 u32 rcvd_awake_beacons;
887} __attribute__ ((packed));
888
889struct acx_mic_statistics {
890 u32 rx_pkts;
891 u32 calc_failure;
892} __attribute__ ((packed));
893
894struct acx_aes_statistics {
895 u32 encrypt_fail;
896 u32 decrypt_fail;
897 u32 encrypt_packets;
898 u32 decrypt_packets;
899 u32 encrypt_interrupt;
900 u32 decrypt_interrupt;
901} __attribute__ ((packed));
902
903struct acx_event_statistics {
904 u32 heart_beat;
905 u32 calibration;
906 u32 rx_mismatch;
907 u32 rx_mem_empty;
908 u32 rx_pool;
909 u32 oom_late;
910 u32 phy_transmit_error;
911 u32 tx_stuck;
912} __attribute__ ((packed));
913
914struct acx_ps_statistics {
915 u32 pspoll_timeouts;
916 u32 upsd_timeouts;
917 u32 upsd_max_sptime;
918 u32 upsd_max_apturn;
919 u32 pspoll_max_apturn;
920 u32 pspoll_utilization;
921 u32 upsd_utilization;
922} __attribute__ ((packed));
923
924struct acx_rxpipe_statistics {
925 u32 rx_prep_beacon_drop;
926 u32 descr_host_int_trig_rx_data;
927 u32 beacon_buffer_thres_host_int_trig_rx_data;
928 u32 missed_beacon_host_int_trig_rx_data;
929 u32 tx_xfr_host_int_trig_rx_data;
930} __attribute__ ((packed));
931
932struct acx_statistics {
933 struct acx_header header;
934
935 struct acx_tx_statistics tx;
936 struct acx_rx_statistics rx;
937 struct acx_dma_statistics dma;
938 struct acx_isr_statistics isr;
939 struct acx_wep_statistics wep;
940 struct acx_pwr_statistics pwr;
941 struct acx_aes_statistics aes;
942 struct acx_mic_statistics mic;
943 struct acx_event_statistics event;
944 struct acx_ps_statistics ps;
945 struct acx_rxpipe_statistics rxpipe;
946} __attribute__ ((packed));
947
948#define ACX_MAX_RATE_CLASSES 8
949#define ACX_RATE_MASK_UNSPECIFIED 0
950#define ACX_RATE_MASK_ALL 0x1eff
951#define ACX_RATE_RETRY_LIMIT 10
952
953struct acx_rate_class {
954 u32 enabled_rates;
955 u8 short_retry_limit;
956 u8 long_retry_limit;
957 u8 aflags;
958 u8 reserved;
959};
960
961struct acx_rate_policy {
962 struct acx_header header;
963
964 u32 rate_class_cnt;
965 struct acx_rate_class rate_class[ACX_MAX_RATE_CLASSES];
966} __attribute__ ((packed));
967
968#define WL1271_ACX_AC_COUNT 4
969
970struct acx_ac_cfg {
971 struct acx_header header;
972 u8 ac;
973 u8 cw_min;
974 u16 cw_max;
975 u8 aifsn;
976 u8 reserved;
977 u16 tx_op_limit;
978} __attribute__ ((packed));
979
980enum wl1271_acx_ac {
981 WL1271_ACX_AC_BE = 0,
982 WL1271_ACX_AC_BK = 1,
983 WL1271_ACX_AC_VI = 2,
984 WL1271_ACX_AC_VO = 3,
985 WL1271_ACX_AC_CTS2SELF = 4,
986 WL1271_ACX_AC_ANY_TID = 0x1F,
987 WL1271_ACX_AC_INVALID = 0xFF,
988};
989
990enum wl1271_acx_ps_scheme {
991 WL1271_ACX_PS_SCHEME_LEGACY = 0,
992 WL1271_ACX_PS_SCHEME_UPSD_TRIGGER = 1,
993 WL1271_ACX_PS_SCHEME_LEGACY_PSPOLL = 2,
994 WL1271_ACX_PS_SCHEME_SAPSD = 3,
995};
996
997enum wl1271_acx_ack_policy {
998 WL1271_ACX_ACK_POLICY_LEGACY = 0,
999 WL1271_ACX_ACK_POLICY_NO_ACK = 1,
1000 WL1271_ACX_ACK_POLICY_BLOCK = 2,
1001};
1002
1003#define WL1271_ACX_TID_COUNT 7
1004
1005struct acx_tid_config {
1006 struct acx_header header;
1007 u8 queue_id;
1008 u8 channel_type;
1009 u8 tsid;
1010 u8 ps_scheme;
1011 u8 ack_policy;
1012 u8 padding[3];
1013 u32 apsd_conf[2];
1014} __attribute__ ((packed));
1015
1016struct acx_frag_threshold {
1017 struct acx_header header;
1018 u16 frag_threshold;
1019 u8 padding[2];
1020} __attribute__ ((packed));
1021
1022#define WL1271_ACX_TX_COMPL_TIMEOUT 5
1023#define WL1271_ACX_TX_COMPL_THRESHOLD 5
1024
1025struct acx_tx_config_options {
1026 struct acx_header header;
1027 u16 tx_compl_timeout; /* msec */
1028 u16 tx_compl_threshold; /* number of packets */
1029} __attribute__ ((packed));
1030
1031#define ACX_RX_MEM_BLOCKS 64
1032#define ACX_TX_MIN_MEM_BLOCKS 64
1033#define ACX_TX_DESCRIPTORS 32
1034#define ACX_NUM_SSID_PROFILES 1
1035
1036struct wl1271_acx_config_memory {
1037 struct acx_header header;
1038
1039 u8 rx_mem_block_num;
1040 u8 tx_min_mem_block_num;
1041 u8 num_stations;
1042 u8 num_ssid_profiles;
1043 u32 total_tx_descriptors;
1044} __attribute__ ((packed));
1045
1046struct wl1271_acx_mem_map {
1047 struct acx_header header;
1048
1049 void *code_start;
1050 void *code_end;
1051
1052 void *wep_defkey_start;
1053 void *wep_defkey_end;
1054
1055 void *sta_table_start;
1056 void *sta_table_end;
1057
1058 void *packet_template_start;
1059 void *packet_template_end;
1060
1061 /* Address of the TX result interface (control block) */
1062 u32 tx_result;
1063 u32 tx_result_queue_start;
1064
1065 void *queue_memory_start;
1066 void *queue_memory_end;
1067
1068 u32 packet_memory_pool_start;
1069 u32 packet_memory_pool_end;
1070
1071 void *debug_buffer1_start;
1072 void *debug_buffer1_end;
1073
1074 void *debug_buffer2_start;
1075 void *debug_buffer2_end;
1076
1077 /* Number of blocks FW allocated for TX packets */
1078 u32 num_tx_mem_blocks;
1079
1080 /* Number of blocks FW allocated for RX packets */
1081 u32 num_rx_mem_blocks;
1082
1083 /* the following 4 fields are valid in SLAVE mode only */
1084 u8 *tx_cbuf;
1085 u8 *rx_cbuf;
1086 void *rx_ctrl;
1087 void *tx_ctrl;
1088} __attribute__ ((packed));
1089
1090enum wl1271_acx_rx_queue_type {
1091 RX_QUEUE_TYPE_RX_LOW_PRIORITY, /* All except the high priority */
1092 RX_QUEUE_TYPE_RX_HIGH_PRIORITY, /* Management and voice packets */
1093 RX_QUEUE_TYPE_NUM,
1094 RX_QUEUE_TYPE_MAX = USHORT_MAX
1095};
1096
1097#define WL1271_RX_INTR_THRESHOLD_DEF 0 /* no pacing, send interrupt on
1098 * every event */
1099#define WL1271_RX_INTR_THRESHOLD_MIN 0
1100#define WL1271_RX_INTR_THRESHOLD_MAX 15
1101
1102#define WL1271_RX_INTR_TIMEOUT_DEF 5
1103#define WL1271_RX_INTR_TIMEOUT_MIN 1
1104#define WL1271_RX_INTR_TIMEOUT_MAX 100
1105
1106struct wl1271_acx_rx_config_opt {
1107 struct acx_header header;
1108
1109 u16 mblk_threshold;
1110 u16 threshold;
1111 u16 timeout;
1112 u8 queue_type;
1113 u8 reserved;
1114} __attribute__ ((packed));
1115
1116enum {
1117 ACX_WAKE_UP_CONDITIONS = 0x0002,
1118 ACX_MEM_CFG = 0x0003,
1119 ACX_SLOT = 0x0004,
1120 ACX_AC_CFG = 0x0007,
1121 ACX_MEM_MAP = 0x0008,
1122 ACX_AID = 0x000A,
1123 /* ACX_FW_REV is missing in the ref driver, but seems to work */
1124 ACX_FW_REV = 0x000D,
1125 ACX_MEDIUM_USAGE = 0x000F,
1126 ACX_RX_CFG = 0x0010,
1127 ACX_TX_QUEUE_CFG = 0x0011, /* FIXME: only used by wl1251 */
1128 ACX_STATISTICS = 0x0013, /* Debug API */
1129 ACX_PWR_CONSUMPTION_STATISTICS = 0x0014,
1130 ACX_FEATURE_CFG = 0x0015,
1131 ACX_TID_CFG = 0x001A,
1132 ACX_PS_RX_STREAMING = 0x001B,
1133 ACX_BEACON_FILTER_OPT = 0x001F,
1134 ACX_NOISE_HIST = 0x0021,
1135 ACX_HDK_VERSION = 0x0022, /* ??? */
1136 ACX_PD_THRESHOLD = 0x0023,
1137 ACX_TX_CONFIG_OPT = 0x0024,
1138 ACX_CCA_THRESHOLD = 0x0025,
1139 ACX_EVENT_MBOX_MASK = 0x0026,
1140 ACX_CONN_MONIT_PARAMS = 0x002D,
1141 ACX_CONS_TX_FAILURE = 0x002F,
1142 ACX_BCN_DTIM_OPTIONS = 0x0031,
1143 ACX_SG_ENABLE = 0x0032,
1144 ACX_SG_CFG = 0x0033,
1145 ACX_BEACON_FILTER_TABLE = 0x0038,
1146 ACX_ARP_IP_FILTER = 0x0039,
1147 ACX_ROAMING_STATISTICS_TBL = 0x003B,
1148 ACX_RATE_POLICY = 0x003D,
1149 ACX_CTS_PROTECTION = 0x003E,
1150 ACX_SLEEP_AUTH = 0x003F,
1151 ACX_PREAMBLE_TYPE = 0x0040,
1152 ACX_ERROR_CNT = 0x0041,
1153 ACX_IBSS_FILTER = 0x0044,
1154 ACX_SERVICE_PERIOD_TIMEOUT = 0x0045,
1155 ACX_TSF_INFO = 0x0046,
1156 ACX_CONFIG_PS_WMM = 0x0049,
1157 ACX_ENABLE_RX_DATA_FILTER = 0x004A,
1158 ACX_SET_RX_DATA_FILTER = 0x004B,
1159 ACX_GET_DATA_FILTER_STATISTICS = 0x004C,
1160 ACX_RX_CONFIG_OPT = 0x004E,
1161 ACX_FRAG_CFG = 0x004F,
1162 ACX_BET_ENABLE = 0x0050,
1163 ACX_RSSI_SNR_TRIGGER = 0x0051,
1164 ACX_RSSI_SNR_WEIGHTS = 0x0051,
1165 ACX_KEEP_ALIVE_MODE = 0x0052,
1166 ACX_SET_KEEP_ALIVE_CONFIG = 0x0054,
1167 ACX_BA_SESSION_RESPONDER_POLICY = 0x0055,
1168 ACX_BA_SESSION_INITIATOR_POLICY = 0x0056,
1169 ACX_PEER_HT_CAP = 0x0057,
1170 ACX_HT_BSS_OPERATION = 0x0058,
1171 ACX_COEX_ACTIVITY = 0x0059,
1172 DOT11_RX_MSDU_LIFE_TIME = 0x1004,
1173 DOT11_CUR_TX_PWR = 0x100D,
1174 DOT11_RX_DOT11_MODE = 0x1012,
1175 DOT11_RTS_THRESHOLD = 0x1013,
1176 DOT11_GROUP_ADDRESS_TBL = 0x1014,
1177
1178 MAX_DOT11_IE = DOT11_GROUP_ADDRESS_TBL,
1179
1180 MAX_IE = 0xFFFF
1181};
1182
1183
1184int wl1271_acx_wake_up_conditions(struct wl1271 *wl, u8 wake_up_event,
1185 u8 listen_interval);
1186int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth);
1187int wl1271_acx_fw_version(struct wl1271 *wl, char *buf, size_t len);
1188int wl1271_acx_tx_power(struct wl1271 *wl, int power);
1189int wl1271_acx_feature_cfg(struct wl1271 *wl);
1190int wl1271_acx_mem_map(struct wl1271 *wl,
1191 struct acx_header *mem_map, size_t len);
1192int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl, u32 life_time);
1193int wl1271_acx_rx_config(struct wl1271 *wl, u32 config, u32 filter);
1194int wl1271_acx_pd_threshold(struct wl1271 *wl);
1195int wl1271_acx_slot(struct wl1271 *wl, enum acx_slot_type slot_time);
1196int wl1271_acx_group_address_tbl(struct wl1271 *wl);
1197int wl1271_acx_service_period_timeout(struct wl1271 *wl);
1198int wl1271_acx_rts_threshold(struct wl1271 *wl, u16 rts_threshold);
1199int wl1271_acx_beacon_filter_opt(struct wl1271 *wl);
1200int wl1271_acx_beacon_filter_table(struct wl1271 *wl);
1201int wl1271_acx_sg_enable(struct wl1271 *wl);
1202int wl1271_acx_sg_cfg(struct wl1271 *wl);
1203int wl1271_acx_cca_threshold(struct wl1271 *wl);
1204int wl1271_acx_bcn_dtim_options(struct wl1271 *wl);
1205int wl1271_acx_aid(struct wl1271 *wl, u16 aid);
1206int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask);
1207int wl1271_acx_set_preamble(struct wl1271 *wl, enum acx_preamble_type preamble);
1208int wl1271_acx_cts_protect(struct wl1271 *wl,
1209 enum acx_ctsprotect_type ctsprotect);
1210int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats);
Juuso Oikarinen8a5a37a2009-10-08 21:56:24 +03001211int wl1271_acx_rate_policies(struct wl1271 *wl, u32 enabled_rates);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001212int wl1271_acx_ac_cfg(struct wl1271 *wl);
1213int wl1271_acx_tid_cfg(struct wl1271 *wl);
1214int wl1271_acx_frag_threshold(struct wl1271 *wl);
1215int wl1271_acx_tx_config_options(struct wl1271 *wl);
1216int wl1271_acx_mem_cfg(struct wl1271 *wl);
1217int wl1271_acx_init_mem_config(struct wl1271 *wl);
1218int wl1271_acx_init_rx_interrupt(struct wl1271 *wl);
1219
1220#endif /* __WL1271_ACX_H__ */