2 * This file is part of wl1271
4 * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
5 * Copyright (C) 2008-2009 Nokia Corporation
7 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
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.
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.
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
25 #ifndef __WL1271_ACX_H__
26 #define __WL1271_ACX_H__
29 #include "wl1271_cmd.h"
31 /*************************************************************************
33 Host Interrupt Register (WiLink -> Host)
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)
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 | \
64 #define WL1271_INTR_MASK (WL1271_ACX_INTR_EVENT_A | \
65 WL1271_ACX_INTR_EVENT_B | \
66 WL1271_ACX_INTR_HW_AVAILABLE | \
69 /* Target's information element */
71 struct wl1271_cmd_header cmd
;
73 /* acx (or information element) header */
76 /* payload length (not including headers */
78 } __attribute__ ((packed
));
80 struct acx_error_counter
{
81 struct acx_header header
;
83 /* The number of PLCP errors since the last time this */
84 /* information element was interrogated. This field is */
85 /* automatically cleared when it is interrogated.*/
88 /* The number of FCS errors since the last time this */
89 /* information element was interrogated. This field is */
90 /* automatically cleared when it is interrogated.*/
93 /* The number of MPDUs without PLCP header errors received*/
94 /* since the last time this information element was interrogated. */
95 /* This field is automatically cleared when it is interrogated.*/
98 /* the number of missed sequence numbers in the squentially */
99 /* values of frames seq numbers */
101 } __attribute__ ((packed
));
103 struct acx_revision
{
104 struct acx_header header
;
107 * The WiLink firmware version, an ASCII string x.x.x.x,
108 * that uniquely identifies the current firmware.
109 * The left most digit is incremented each time a
110 * significant change is made to the firmware, such as
111 * code redesign or new platform support.
112 * The second digit is incremented when major enhancements
113 * are added or major fixes are made.
114 * The third digit is incremented for each GA release.
115 * The fourth digit is incremented for each build.
116 * The first two digits identify a firmware release version,
117 * in other words, a unique set of features.
118 * The first three digits identify a GA release.
123 * This 4 byte field specifies the WiLink hardware version.
124 * bits 0 - 15: Reserved.
125 * bits 16 - 23: Version ID - The WiLink version ID
126 * (1 = first spin, 2 = second spin, and so on).
127 * bits 24 - 31: Chip ID - The WiLink chip ID.
130 } __attribute__ ((packed
));
132 enum wl1271_psm_mode
{
136 /* Power save mode */
139 /* Extreme low power */
143 struct acx_sleep_auth
{
144 struct acx_header header
;
146 /* The sleep level authorization of the device. */
147 /* 0 - Always active*/
148 /* 1 - Power down mode: light / fast sleep*/
149 /* 2 - ELP mode: Deep / Max sleep*/
152 } __attribute__ ((packed
));
155 HOSTIF_PCI_MASTER_HOST_INDIRECT
,
156 HOSTIF_PCI_MASTER_HOST_DIRECT
,
159 HOSTIF_DONTCARE
= 0xFF
162 #define DEFAULT_UCAST_PRIORITY 0
163 #define DEFAULT_RX_Q_PRIORITY 0
164 #define DEFAULT_NUM_STATIONS 1
165 #define DEFAULT_RXQ_PRIORITY 0 /* low 0 .. 15 high */
166 #define DEFAULT_RXQ_TYPE 0x07 /* All frames, Data/Ctrl/Mgmt */
167 #define TRACE_BUFFER_MAX_SIZE 256
169 #define DP_RX_PACKET_RING_CHUNK_SIZE 1600
170 #define DP_TX_PACKET_RING_CHUNK_SIZE 1600
171 #define DP_RX_PACKET_RING_CHUNK_NUM 2
172 #define DP_TX_PACKET_RING_CHUNK_NUM 2
173 #define DP_TX_COMPLETE_TIME_OUT 20
175 #define TX_MSDU_LIFETIME_MIN 0
176 #define TX_MSDU_LIFETIME_MAX 3000
177 #define TX_MSDU_LIFETIME_DEF 512
178 #define RX_MSDU_LIFETIME_MIN 0
179 #define RX_MSDU_LIFETIME_MAX 0xFFFFFFFF
180 #define RX_MSDU_LIFETIME_DEF 512000
182 struct acx_rx_msdu_lifetime
{
183 struct acx_header header
;
186 * The maximum amount of time, in TU, before the
187 * firmware discards the MSDU.
190 } __attribute__ ((packed
));
193 * RX Config Options Table
197 * 13 Copy RX Status - when set, write three receive status words
198 * to top of rx'd MPDUs.
199 * When cleared, do not write three status words (added rev 1.5)
201 * 11 RX Complete upon FCS error - when set, give rx complete
202 * interrupt for FCS errors, after the rx filtering, e.g. unicast
203 * frames not to us with FCS error will not generate an interrupt.
204 * 10 SSID Filter Enable - When set, the WiLink discards all beacon,
205 * probe request, and probe response frames with an SSID that does
206 * not match the SSID specified by the host in the START/JOIN
208 * When clear, the WiLink receives frames with any SSID.
209 * 9 Broadcast Filter Enable - When set, the WiLink discards all
210 * broadcast frames. When clear, the WiLink receives all received
213 * 5 BSSID Filter Enable - When set, the WiLink discards any frames
214 * with a BSSID that does not match the BSSID specified by the
216 * When clear, the WiLink receives frames from any BSSID.
217 * 4 MAC Addr Filter - When set, the WiLink discards any frames
218 * with a destination address that does not match the MAC address
220 * When clear, the WiLink receives frames destined to any MAC
222 * 3 Promiscuous - When set, the WiLink receives all valid frames
223 * (i.e., all frames that pass the FCS check).
224 * When clear, only frames that pass the other filters specified
226 * 2 FCS - When set, the WiLink includes the FCS with the received
228 * When cleared, the FCS is discarded.
229 * 1 PLCP header - When set, write all data from baseband to frame
230 * buffer including PHY header.
231 * 0 Reserved - Always equal to 0.
233 * RX Filter Options Table
236 * 31:12 Reserved - Always equal to 0.
237 * 11 Association - When set, the WiLink receives all association
238 * related frames (association request/response, reassocation
239 * request/response, and disassociation). When clear, these frames
241 * 10 Auth/De auth - When set, the WiLink receives all authentication
242 * and de-authentication frames. When clear, these frames are
244 * 9 Beacon - When set, the WiLink receives all beacon frames.
245 * When clear, these frames are discarded.
246 * 8 Contention Free - When set, the WiLink receives all contention
248 * When clear, these frames are discarded.
249 * 7 Control - When set, the WiLink receives all control frames.
250 * When clear, these frames are discarded.
251 * 6 Data - When set, the WiLink receives all data frames.
252 * When clear, these frames are discarded.
253 * 5 FCS Error - When set, the WiLink receives frames that have FCS
255 * When clear, these frames are discarded.
256 * 4 Management - When set, the WiLink receives all management
258 * When clear, these frames are discarded.
259 * 3 Probe Request - When set, the WiLink receives all probe request
261 * When clear, these frames are discarded.
262 * 2 Probe Response - When set, the WiLink receives all probe
264 * When clear, these frames are discarded.
265 * 1 RTS/CTS/ACK - When set, the WiLink receives all RTS, CTS and ACK
267 * When clear, these frames are discarded.
268 * 0 Rsvd Type/Sub Type - When set, the WiLink receives all frames
269 * that have reserved frame types and sub types as defined by the
270 * 802.11 specification.
271 * When clear, these frames are discarded.
273 struct acx_rx_config
{
274 struct acx_header header
;
276 __le32 config_options
;
277 __le32 filter_options
;
278 } __attribute__ ((packed
));
280 struct acx_packet_detection
{
281 struct acx_header header
;
284 } __attribute__ ((packed
));
290 DEFAULT_SLOT_TIME
= SLOT_TIME_SHORT
,
291 MAX_SLOT_TIMES
= 0xFF
294 #define STATION_WONE_INDEX 0
297 struct acx_header header
;
299 u8 wone_index
; /* Reserved */
302 } __attribute__ ((packed
));
305 #define ACX_MC_ADDRESS_GROUP_MAX (8)
306 #define ADDRESS_GROUP_MAX_LEN (ETH_ALEN * ACX_MC_ADDRESS_GROUP_MAX)
308 struct acx_dot11_grp_addr_tbl
{
309 struct acx_header header
;
314 u8 mac_table
[ADDRESS_GROUP_MAX_LEN
];
315 } __attribute__ ((packed
));
317 struct acx_rx_timeout
{
318 struct acx_header header
;
320 __le16 ps_poll_timeout
;
322 } __attribute__ ((packed
));
324 struct acx_rts_threshold
{
325 struct acx_header header
;
329 } __attribute__ ((packed
));
331 struct acx_beacon_filter_option
{
332 struct acx_header header
;
337 * The number of beacons without the unicast TIM
338 * bit set that the firmware buffers before
339 * signaling the host about ready frames.
340 * When set to 0 and the filter is enabled, beacons
341 * without the unicast TIM bit set are dropped.
345 } __attribute__ ((packed
));
348 * ACXBeaconFilterEntry (not 221)
349 * Byte Offset Size (Bytes) Definition
350 * =========== ============ ==========
352 * 1 1 Treatment bit mask
354 * ACXBeaconFilterEntry (221)
355 * Byte Offset Size (Bytes) Definition
356 * =========== ============ ==========
358 * 1 1 Treatment bit mask
364 * Treatment bit mask - The information element handling:
365 * bit 0 - The information element is compared and transferred
367 * bit 1 - The information element is transferred to the host
368 * with each appearance or disappearance.
369 * Note that both bits can be set at the same time.
371 #define BEACON_FILTER_TABLE_MAX_IE_NUM (32)
372 #define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
373 #define BEACON_FILTER_TABLE_IE_ENTRY_SIZE (2)
374 #define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
375 #define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
376 BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
377 (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
378 BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))
380 struct acx_beacon_filter_ie_table
{
381 struct acx_header header
;
384 u8 table
[BEACON_FILTER_TABLE_MAX_SIZE
];
386 } __attribute__ ((packed
));
388 struct acx_conn_monit_params
{
389 struct acx_header header
;
391 __le32 synch_fail_thold
; /* number of beacons missed */
392 __le32 bss_lose_timeout
; /* number of TU's from synch fail */
393 } __attribute__ ((packed
));
398 SG_SENSE_NO_ACTIVITY
,
402 struct acx_bt_wlan_coex
{
403 struct acx_header header
;
408 * 2 -> sense no active mode, i.e.
409 * an interrupt is sent upon
411 * 3 -> PTA is switched on in response
412 * to the interrupt sending.
416 } __attribute__ ((packed
));
418 struct acx_smart_reflex_state
{
419 struct acx_header header
;
423 } __attribute__ ((packed
));
425 struct smart_reflex_err_table
{
429 } __attribute__ ((packed
));
431 struct acx_smart_reflex_config_params
{
432 struct acx_header header
;
434 struct smart_reflex_err_table error_table
[3];
435 } __attribute__ ((packed
));
437 #define PTA_ANTENNA_TYPE_DEF (0)
438 #define PTA_BT_HP_MAXTIME_DEF (2000)
439 #define PTA_WLAN_HP_MAX_TIME_DEF (5000)
440 #define PTA_SENSE_DISABLE_TIMER_DEF (1350)
441 #define PTA_PROTECTIVE_RX_TIME_DEF (1500)
442 #define PTA_PROTECTIVE_TX_TIME_DEF (1500)
443 #define PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF (3000)
444 #define PTA_SIGNALING_TYPE_DEF (1)
445 #define PTA_AFH_LEVERAGE_ON_DEF (0)
446 #define PTA_NUMBER_QUIET_CYCLE_DEF (0)
447 #define PTA_MAX_NUM_CTS_DEF (3)
448 #define PTA_NUMBER_OF_WLAN_PACKETS_DEF (2)
449 #define PTA_NUMBER_OF_BT_PACKETS_DEF (2)
450 #define PTA_PROTECTIVE_RX_TIME_FAST_DEF (1500)
451 #define PTA_PROTECTIVE_TX_TIME_FAST_DEF (3000)
452 #define PTA_CYCLE_TIME_FAST_DEF (8700)
453 #define PTA_RX_FOR_AVALANCHE_DEF (5)
454 #define PTA_ELP_HP_DEF (0)
455 #define PTA_ANTI_STARVE_PERIOD_DEF (500)
456 #define PTA_ANTI_STARVE_NUM_CYCLE_DEF (4)
457 #define PTA_ALLOW_PA_SD_DEF (1)
458 #define PTA_TIME_BEFORE_BEACON_DEF (6300)
459 #define PTA_HPDM_MAX_TIME_DEF (1600)
460 #define PTA_TIME_OUT_NEXT_WLAN_DEF (2550)
461 #define PTA_AUTO_MODE_NO_CTS_DEF (0)
462 #define PTA_BT_HP_RESPECTED_DEF (3)
463 #define PTA_WLAN_RX_MIN_RATE_DEF (24)
464 #define PTA_ACK_MODE_DEF (1)
466 struct acx_bt_wlan_coex_param
{
467 struct acx_header header
;
469 __le32 per_threshold
;
470 __le32 max_scan_compensation_time
;
471 __le16 nfs_sample_interval
;
474 u8 probe_req_compensation
;
475 u8 scan_window_compensation
;
477 u8 beacon_miss_threshold
;
478 __le32 rate_adaptation_threshold
;
479 s8 rate_adaptation_snr
;
481 } __attribute__ ((packed
));
483 struct acx_energy_detection
{
484 struct acx_header header
;
486 /* The RX Clear Channel Assessment threshold in the PHY */
487 __le16 rx_cca_threshold
;
488 u8 tx_energy_detection
;
490 } __attribute__ ((packed
));
492 struct acx_beacon_broadcast
{
493 struct acx_header header
;
495 __le16 beacon_rx_timeout
;
496 __le16 broadcast_timeout
;
498 /* Enables receiving of broadcast packets in PS mode */
499 u8 rx_broadcast_in_ps
;
501 /* Consecutive PS Poll failures before updating the host */
502 u8 ps_poll_threshold
;
504 } __attribute__ ((packed
));
506 struct acx_event_mask
{
507 struct acx_header header
;
510 __le32 high_event_mask
; /* Unused */
511 } __attribute__ ((packed
));
513 #define CFG_RX_FCS BIT(2)
514 #define CFG_RX_ALL_GOOD BIT(3)
515 #define CFG_UNI_FILTER_EN BIT(4)
516 #define CFG_BSSID_FILTER_EN BIT(5)
517 #define CFG_MC_FILTER_EN BIT(6)
518 #define CFG_MC_ADDR0_EN BIT(7)
519 #define CFG_MC_ADDR1_EN BIT(8)
520 #define CFG_BC_REJECT_EN BIT(9)
521 #define CFG_SSID_FILTER_EN BIT(10)
522 #define CFG_RX_INT_FCS_ERROR BIT(11)
523 #define CFG_RX_INT_ENCRYPTED BIT(12)
524 #define CFG_RX_WR_RX_STATUS BIT(13)
525 #define CFG_RX_FILTER_NULTI BIT(14)
526 #define CFG_RX_RESERVE BIT(15)
527 #define CFG_RX_TIMESTAMP_TSF BIT(16)
529 #define CFG_RX_RSV_EN BIT(0)
530 #define CFG_RX_RCTS_ACK BIT(1)
531 #define CFG_RX_PRSP_EN BIT(2)
532 #define CFG_RX_PREQ_EN BIT(3)
533 #define CFG_RX_MGMT_EN BIT(4)
534 #define CFG_RX_FCS_ERROR BIT(5)
535 #define CFG_RX_DATA_EN BIT(6)
536 #define CFG_RX_CTL_EN BIT(7)
537 #define CFG_RX_CF_EN BIT(8)
538 #define CFG_RX_BCN_EN BIT(9)
539 #define CFG_RX_AUTH_EN BIT(10)
540 #define CFG_RX_ASSOC_EN BIT(11)
542 #define SCAN_PASSIVE BIT(0)
543 #define SCAN_5GHZ_BAND BIT(1)
544 #define SCAN_TRIGGERED BIT(2)
545 #define SCAN_PRIORITY_HIGH BIT(3)
547 /* When set, disable HW encryption */
548 #define DF_ENCRYPTION_DISABLE 0x01
549 #define DF_SNIFF_MODE_ENABLE 0x80
551 struct acx_feature_config
{
552 struct acx_header header
;
555 __le32 data_flow_options
;
556 } __attribute__ ((packed
));
558 struct acx_current_tx_power
{
559 struct acx_header header
;
563 } __attribute__ ((packed
));
565 struct acx_wake_up_condition
{
566 struct acx_header header
;
568 u8 wake_up_event
; /* Only one bit can be set */
571 } __attribute__ ((packed
));
574 struct acx_header header
;
577 * To be set when associated with an AP.
581 } __attribute__ ((packed
));
583 enum acx_preamble_type
{
584 ACX_PREAMBLE_LONG
= 0,
585 ACX_PREAMBLE_SHORT
= 1
588 struct acx_preamble
{
589 struct acx_header header
;
592 * When set, the WiLink transmits the frames with a short preamble and
593 * when cleared, the WiLink transmits the frames with a long preamble.
597 } __attribute__ ((packed
));
599 enum acx_ctsprotect_type
{
600 CTSPROTECT_DISABLE
= 0,
601 CTSPROTECT_ENABLE
= 1
604 struct acx_ctsprotect
{
605 struct acx_header header
;
608 } __attribute__ ((packed
));
610 struct acx_tx_statistics
{
611 __le32 internal_desc_overflow
;
612 } __attribute__ ((packed
));
614 struct acx_rx_statistics
{
620 __le32 xfr_hint_trig
;
622 __le32 reset_counter
;
623 } __attribute__ ((packed
));
625 struct acx_dma_statistics
{
630 } __attribute__ ((packed
));
632 struct acx_isr_statistics
{
633 /* host command complete */
639 /* (INT_STS_ND & INT_TRIG_RX_HEADER) */
642 /* (INT_STS_ND & INT_TRIG_RX_CMPLT) */
645 /* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */
646 __le32 rx_mem_overflow
;
648 /* (INT_STS_ND & INT_TRIG_S_RX_RDY) */
654 /* (INT_STS_ND & INT_TRIG_TX_PROC) */
657 /* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */
660 /* (INT_STS_ND & INT_TRIG_DMA0) */
663 /* (INT_STS_ND & INT_TRIG_DMA1) */
666 /* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */
667 __le32 tx_exch_complete
;
669 /* (INT_STS_ND & INT_TRIG_COMMAND) */
672 /* (INT_STS_ND & INT_TRIG_RX_PROC) */
675 /* (INT_STS_ND & INT_TRIG_PM_802) */
676 __le32 hw_pm_mode_changes
;
678 /* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */
679 __le32 host_acknowledges
;
681 /* (INT_STS_ND & INT_TRIG_PM_PCI) */
684 /* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */
687 /* (INT_STS_ND & INT_TRIG_LOW_RSSI) */
689 } __attribute__ ((packed
));
691 struct acx_wep_statistics
{
692 /* WEP address keys configured */
693 __le32 addr_key_count
;
695 /* default keys configured */
696 __le32 default_key_count
;
700 /* number of times that WEP key not found on lookup */
701 __le32 key_not_found
;
703 /* number of times that WEP key decryption failed */
706 /* WEP packets decrypted */
709 /* WEP decrypt interrupts */
711 } __attribute__ ((packed
));
713 #define ACX_MISSED_BEACONS_SPREAD 10
715 struct acx_pwr_statistics
{
716 /* the amount of enters into power save mode (both PD & ELP) */
719 /* the amount of enters into ELP mode */
722 /* the amount of missing beacon interrupts to the host */
725 /* the amount of wake on host-access times */
728 /* the amount of wake on timer-expire */
729 __le32 wake_on_timer_exp
;
731 /* the number of packets that were transmitted with PS bit set */
734 /* the number of packets that were transmitted with PS bit clear */
735 __le32 tx_without_ps
;
737 /* the number of received beacons */
740 /* the number of entering into PowerOn (power save off) */
741 __le32 power_save_off
;
743 /* the number of entries into power save mode */
747 * the number of exits from power save, not including failed PS
753 * the number of times the TSF counter was adjusted because
758 /* Gives statistics about the spread continuous missed beacons.
759 * The 16 LSB are dedicated for the PS mode.
760 * The 16 MSB are dedicated for the PS mode.
761 * cont_miss_bcns_spread[0] - single missed beacon.
762 * cont_miss_bcns_spread[1] - two continuous missed beacons.
763 * cont_miss_bcns_spread[2] - three continuous missed beacons.
765 * cont_miss_bcns_spread[9] - ten and more continuous missed beacons.
767 __le32 cont_miss_bcns_spread
[ACX_MISSED_BEACONS_SPREAD
];
769 /* the number of beacons in awake mode */
770 __le32 rcvd_awake_beacons
;
771 } __attribute__ ((packed
));
773 struct acx_mic_statistics
{
776 } __attribute__ ((packed
));
778 struct acx_aes_statistics
{
781 __le32 encrypt_packets
;
782 __le32 decrypt_packets
;
783 __le32 encrypt_interrupt
;
784 __le32 decrypt_interrupt
;
785 } __attribute__ ((packed
));
787 struct acx_event_statistics
{
794 __le32 phy_transmit_error
;
796 } __attribute__ ((packed
));
798 struct acx_ps_statistics
{
799 __le32 pspoll_timeouts
;
800 __le32 upsd_timeouts
;
801 __le32 upsd_max_sptime
;
802 __le32 upsd_max_apturn
;
803 __le32 pspoll_max_apturn
;
804 __le32 pspoll_utilization
;
805 __le32 upsd_utilization
;
806 } __attribute__ ((packed
));
808 struct acx_rxpipe_statistics
{
809 __le32 rx_prep_beacon_drop
;
810 __le32 descr_host_int_trig_rx_data
;
811 __le32 beacon_buffer_thres_host_int_trig_rx_data
;
812 __le32 missed_beacon_host_int_trig_rx_data
;
813 __le32 tx_xfr_host_int_trig_rx_data
;
814 } __attribute__ ((packed
));
816 struct acx_statistics
{
817 struct acx_header header
;
819 struct acx_tx_statistics tx
;
820 struct acx_rx_statistics rx
;
821 struct acx_dma_statistics dma
;
822 struct acx_isr_statistics isr
;
823 struct acx_wep_statistics wep
;
824 struct acx_pwr_statistics pwr
;
825 struct acx_aes_statistics aes
;
826 struct acx_mic_statistics mic
;
827 struct acx_event_statistics event
;
828 struct acx_ps_statistics ps
;
829 struct acx_rxpipe_statistics rxpipe
;
830 } __attribute__ ((packed
));
832 struct acx_rate_class
{
833 __le32 enabled_rates
;
834 u8 short_retry_limit
;
840 struct acx_rate_policy
{
841 struct acx_header header
;
843 __le32 rate_class_cnt
;
844 struct acx_rate_class rate_class
[CONF_TX_MAX_RATE_CLASSES
];
845 } __attribute__ ((packed
));
848 struct acx_header header
;
855 } __attribute__ ((packed
));
857 struct acx_tid_config
{
858 struct acx_header header
;
866 } __attribute__ ((packed
));
868 struct acx_frag_threshold
{
869 struct acx_header header
;
870 __le16 frag_threshold
;
872 } __attribute__ ((packed
));
874 struct acx_tx_config_options
{
875 struct acx_header header
;
876 __le16 tx_compl_timeout
; /* msec */
877 __le16 tx_compl_threshold
; /* number of packets */
878 } __attribute__ ((packed
));
880 #define ACX_RX_MEM_BLOCKS 64
881 #define ACX_TX_MIN_MEM_BLOCKS 64
882 #define ACX_TX_DESCRIPTORS 32
883 #define ACX_NUM_SSID_PROFILES 1
885 struct wl1271_acx_config_memory
{
886 struct acx_header header
;
889 u8 tx_min_mem_block_num
;
891 u8 num_ssid_profiles
;
892 __le32 total_tx_descriptors
;
893 } __attribute__ ((packed
));
895 struct wl1271_acx_mem_map
{
896 struct acx_header header
;
901 __le32 wep_defkey_start
;
902 __le32 wep_defkey_end
;
904 __le32 sta_table_start
;
905 __le32 sta_table_end
;
907 __le32 packet_template_start
;
908 __le32 packet_template_end
;
910 /* Address of the TX result interface (control block) */
912 __le32 tx_result_queue_start
;
914 __le32 queue_memory_start
;
915 __le32 queue_memory_end
;
917 __le32 packet_memory_pool_start
;
918 __le32 packet_memory_pool_end
;
920 __le32 debug_buffer1_start
;
921 __le32 debug_buffer1_end
;
923 __le32 debug_buffer2_start
;
924 __le32 debug_buffer2_end
;
926 /* Number of blocks FW allocated for TX packets */
927 __le32 num_tx_mem_blocks
;
929 /* Number of blocks FW allocated for RX packets */
930 __le32 num_rx_mem_blocks
;
932 /* the following 4 fields are valid in SLAVE mode only */
937 } __attribute__ ((packed
));
939 struct wl1271_acx_rx_config_opt
{
940 struct acx_header header
;
942 __le16 mblk_threshold
;
947 } __attribute__ ((packed
));
950 struct wl1271_acx_bet_enable
{
951 struct acx_header header
;
956 } __attribute__ ((packed
));
958 #define ACX_IPV4_VERSION 4
959 #define ACX_IPV6_VERSION 6
960 #define ACX_IPV4_ADDR_SIZE 4
961 struct wl1271_acx_arp_filter
{
962 struct acx_header header
;
963 u8 version
; /* ACX_IPV4_VERSION, ACX_IPV6_VERSION */
964 u8 enable
; /* 1 to enable ARP filtering, 0 to disable */
966 u8 address
[16]; /* The configured device IP address - all ARP
967 requests directed to this IP address will pass
968 through. For IPv4, the first four bytes are
970 } __attribute__((packed
));
974 ACX_WAKE_UP_CONDITIONS
= 0x0002,
975 ACX_MEM_CFG
= 0x0003,
978 ACX_MEM_MAP
= 0x0008,
980 /* ACX_FW_REV is missing in the ref driver, but seems to work */
982 ACX_MEDIUM_USAGE
= 0x000F,
984 ACX_TX_QUEUE_CFG
= 0x0011, /* FIXME: only used by wl1251 */
985 ACX_STATISTICS
= 0x0013, /* Debug API */
986 ACX_PWR_CONSUMPTION_STATISTICS
= 0x0014,
987 ACX_FEATURE_CFG
= 0x0015,
988 ACX_TID_CFG
= 0x001A,
989 ACX_PS_RX_STREAMING
= 0x001B,
990 ACX_BEACON_FILTER_OPT
= 0x001F,
991 ACX_NOISE_HIST
= 0x0021,
992 ACX_HDK_VERSION
= 0x0022, /* ??? */
993 ACX_PD_THRESHOLD
= 0x0023,
994 ACX_TX_CONFIG_OPT
= 0x0024,
995 ACX_CCA_THRESHOLD
= 0x0025,
996 ACX_EVENT_MBOX_MASK
= 0x0026,
997 ACX_CONN_MONIT_PARAMS
= 0x002D,
998 ACX_CONS_TX_FAILURE
= 0x002F,
999 ACX_BCN_DTIM_OPTIONS
= 0x0031,
1000 ACX_SG_ENABLE
= 0x0032,
1001 ACX_SG_CFG
= 0x0033,
1002 ACX_BEACON_FILTER_TABLE
= 0x0038,
1003 ACX_ARP_IP_FILTER
= 0x0039,
1004 ACX_ROAMING_STATISTICS_TBL
= 0x003B,
1005 ACX_RATE_POLICY
= 0x003D,
1006 ACX_CTS_PROTECTION
= 0x003E,
1007 ACX_SLEEP_AUTH
= 0x003F,
1008 ACX_PREAMBLE_TYPE
= 0x0040,
1009 ACX_ERROR_CNT
= 0x0041,
1010 ACX_IBSS_FILTER
= 0x0044,
1011 ACX_SERVICE_PERIOD_TIMEOUT
= 0x0045,
1012 ACX_TSF_INFO
= 0x0046,
1013 ACX_CONFIG_PS_WMM
= 0x0049,
1014 ACX_ENABLE_RX_DATA_FILTER
= 0x004A,
1015 ACX_SET_RX_DATA_FILTER
= 0x004B,
1016 ACX_GET_DATA_FILTER_STATISTICS
= 0x004C,
1017 ACX_RX_CONFIG_OPT
= 0x004E,
1018 ACX_FRAG_CFG
= 0x004F,
1019 ACX_BET_ENABLE
= 0x0050,
1020 ACX_RSSI_SNR_TRIGGER
= 0x0051,
1021 ACX_RSSI_SNR_WEIGHTS
= 0x0051,
1022 ACX_KEEP_ALIVE_MODE
= 0x0052,
1023 ACX_SET_KEEP_ALIVE_CONFIG
= 0x0054,
1024 ACX_BA_SESSION_RESPONDER_POLICY
= 0x0055,
1025 ACX_BA_SESSION_INITIATOR_POLICY
= 0x0056,
1026 ACX_PEER_HT_CAP
= 0x0057,
1027 ACX_HT_BSS_OPERATION
= 0x0058,
1028 ACX_COEX_ACTIVITY
= 0x0059,
1029 ACX_SET_SMART_REFLEX_DEBUG
= 0x005A,
1030 ACX_SET_SMART_REFLEX_STATE
= 0x005B,
1031 ACX_SET_SMART_REFLEX_PARAMS
= 0x005F,
1032 DOT11_RX_MSDU_LIFE_TIME
= 0x1004,
1033 DOT11_CUR_TX_PWR
= 0x100D,
1034 DOT11_RX_DOT11_MODE
= 0x1012,
1035 DOT11_RTS_THRESHOLD
= 0x1013,
1036 DOT11_GROUP_ADDRESS_TBL
= 0x1014,
1038 MAX_DOT11_IE
= DOT11_GROUP_ADDRESS_TBL
,
1044 int wl1271_acx_wake_up_conditions(struct wl1271
*wl
);
1045 int wl1271_acx_sleep_auth(struct wl1271
*wl
, u8 sleep_auth
);
1046 int wl1271_acx_fw_version(struct wl1271
*wl
, char *buf
, size_t len
);
1047 int wl1271_acx_tx_power(struct wl1271
*wl
, int power
);
1048 int wl1271_acx_feature_cfg(struct wl1271
*wl
);
1049 int wl1271_acx_mem_map(struct wl1271
*wl
,
1050 struct acx_header
*mem_map
, size_t len
);
1051 int wl1271_acx_rx_msdu_life_time(struct wl1271
*wl
);
1052 int wl1271_acx_rx_config(struct wl1271
*wl
, u32 config
, u32 filter
);
1053 int wl1271_acx_pd_threshold(struct wl1271
*wl
);
1054 int wl1271_acx_slot(struct wl1271
*wl
, enum acx_slot_type slot_time
);
1055 int wl1271_acx_group_address_tbl(struct wl1271
*wl
, bool enable
,
1056 void *mc_list
, u32 mc_list_len
);
1057 int wl1271_acx_service_period_timeout(struct wl1271
*wl
);
1058 int wl1271_acx_rts_threshold(struct wl1271
*wl
, u16 rts_threshold
);
1059 int wl1271_acx_beacon_filter_opt(struct wl1271
*wl
, bool enable_filter
);
1060 int wl1271_acx_beacon_filter_table(struct wl1271
*wl
);
1061 int wl1271_acx_conn_monit_params(struct wl1271
*wl
);
1062 int wl1271_acx_sg_enable(struct wl1271
*wl
);
1063 int wl1271_acx_sg_cfg(struct wl1271
*wl
);
1064 int wl1271_acx_cca_threshold(struct wl1271
*wl
);
1065 int wl1271_acx_bcn_dtim_options(struct wl1271
*wl
);
1066 int wl1271_acx_aid(struct wl1271
*wl
, u16 aid
);
1067 int wl1271_acx_event_mbox_mask(struct wl1271
*wl
, u32 event_mask
);
1068 int wl1271_acx_set_preamble(struct wl1271
*wl
, enum acx_preamble_type preamble
);
1069 int wl1271_acx_cts_protect(struct wl1271
*wl
,
1070 enum acx_ctsprotect_type ctsprotect
);
1071 int wl1271_acx_statistics(struct wl1271
*wl
, struct acx_statistics
*stats
);
1072 int wl1271_acx_rate_policies(struct wl1271
*wl
, u32 enabled_rates
);
1073 int wl1271_acx_ac_cfg(struct wl1271
*wl
);
1074 int wl1271_acx_tid_cfg(struct wl1271
*wl
);
1075 int wl1271_acx_frag_threshold(struct wl1271
*wl
);
1076 int wl1271_acx_tx_config_options(struct wl1271
*wl
);
1077 int wl1271_acx_mem_cfg(struct wl1271
*wl
);
1078 int wl1271_acx_init_mem_config(struct wl1271
*wl
);
1079 int wl1271_acx_init_rx_interrupt(struct wl1271
*wl
);
1080 int wl1271_acx_smart_reflex(struct wl1271
*wl
);
1081 int wl1271_acx_bet_enable(struct wl1271
*wl
, bool enable
);
1082 int wl1271_acx_arp_ip_filter(struct wl1271
*wl
, bool enable
, u8
*address
,
1085 #endif /* __WL1271_ACX_H__ */