wl1271_acx.h 30.4 KB
Newer Older
L
Luciano Coelho 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
/*
 * This file is part of wl1271
 *
 * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
 * Copyright (C) 2008-2009 Nokia Corporation
 *
 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#ifndef __WL1271_ACX_H__
#define __WL1271_ACX_H__

#include "wl1271.h"
#include "wl1271_cmd.h"

/*************************************************************************

    Host Interrupt Register (WiLink -> Host)

**************************************************************************/
/* HW Initiated interrupt Watchdog timer expiration */
#define WL1271_ACX_INTR_WATCHDOG           BIT(0)
/* Init sequence is done (masked interrupt, detection through polling only ) */
#define WL1271_ACX_INTR_INIT_COMPLETE      BIT(1)
/* Event was entered to Event MBOX #A*/
#define WL1271_ACX_INTR_EVENT_A            BIT(2)
/* Event was entered to Event MBOX #B*/
#define WL1271_ACX_INTR_EVENT_B            BIT(3)
/* Command processing completion*/
#define WL1271_ACX_INTR_CMD_COMPLETE       BIT(4)
/* Signaling the host on HW wakeup */
#define WL1271_ACX_INTR_HW_AVAILABLE       BIT(5)
/* The MISC bit is used for aggregation of RX, TxComplete and TX rate update */
#define WL1271_ACX_INTR_DATA               BIT(6)
/* Trace meassge on MBOX #A */
#define WL1271_ACX_INTR_TRACE_A            BIT(7)
/* Trace meassge on MBOX #B */
#define WL1271_ACX_INTR_TRACE_B            BIT(8)

#define WL1271_ACX_INTR_ALL		   0xFFFFFFFF
#define WL1271_ACX_ALL_EVENTS_VECTOR       (WL1271_ACX_INTR_WATCHDOG      | \
					    WL1271_ACX_INTR_INIT_COMPLETE | \
					    WL1271_ACX_INTR_EVENT_A       | \
					    WL1271_ACX_INTR_EVENT_B       | \
					    WL1271_ACX_INTR_CMD_COMPLETE  | \
					    WL1271_ACX_INTR_HW_AVAILABLE  | \
					    WL1271_ACX_INTR_DATA)

64 65 66
#define WL1271_INTR_MASK                   (WL1271_ACX_INTR_EVENT_A      | \
					    WL1271_ACX_INTR_EVENT_B      | \
					    WL1271_ACX_INTR_HW_AVAILABLE | \
L
Luciano Coelho 已提交
67 68 69 70 71 72 73
					    WL1271_ACX_INTR_DATA)

/* Target's information element */
struct acx_header {
	struct wl1271_cmd_header cmd;

	/* acx (or information element) header */
L
Luciano Coelho 已提交
74
	__le16 id;
L
Luciano Coelho 已提交
75 76

	/* payload length (not including headers */
L
Luciano Coelho 已提交
77
	__le16 len;
78
} __attribute__ ((packed));
L
Luciano Coelho 已提交
79 80 81 82 83 84 85

struct acx_error_counter {
	struct acx_header header;

	/* The number of PLCP errors since the last time this */
	/* information element was interrogated. This field is */
	/* automatically cleared when it is interrogated.*/
L
Luciano Coelho 已提交
86
	__le32 PLCP_error;
L
Luciano Coelho 已提交
87 88 89 90

	/* The number of FCS errors since the last time this */
	/* information element was interrogated. This field is */
	/* automatically cleared when it is interrogated.*/
L
Luciano Coelho 已提交
91
	__le32 FCS_error;
L
Luciano Coelho 已提交
92 93 94 95

	/* The number of MPDUs without PLCP header errors received*/
	/* since the last time this information element was interrogated. */
	/* This field is automatically cleared when it is interrogated.*/
L
Luciano Coelho 已提交
96
	__le32 valid_frame;
L
Luciano Coelho 已提交
97 98 99

	/* the number of missed sequence numbers in the squentially */
	/* values of frames seq numbers */
L
Luciano Coelho 已提交
100
	__le32 seq_num_miss;
L
Luciano Coelho 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
} __attribute__ ((packed));

struct acx_revision {
	struct acx_header header;

	/*
	 * The WiLink firmware version, an ASCII string x.x.x.x,
	 * that uniquely identifies the current firmware.
	 * The left most digit is incremented each time a
	 * significant change is made to the firmware, such as
	 * code redesign or new platform support.
	 * The second digit is incremented when major enhancements
	 * are added or major fixes are made.
	 * The third digit is incremented for each GA release.
	 * The fourth digit is incremented for each build.
	 * The first two digits identify a firmware release version,
	 * in other words, a unique set of features.
	 * The first three digits identify a GA release.
	 */
	char fw_version[20];

	/*
	 * This 4 byte field specifies the WiLink hardware version.
	 * bits 0  - 15: Reserved.
	 * bits 16 - 23: Version ID - The WiLink version ID
	 *              (1 = first spin, 2 = second spin, and so on).
	 * bits 24 - 31: Chip ID - The WiLink chip ID.
	 */
L
Luciano Coelho 已提交
129
	__le32 hw_version;
L
Luciano Coelho 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
} __attribute__ ((packed));

enum wl1271_psm_mode {
	/* Active mode */
	WL1271_PSM_CAM = 0,

	/* Power save mode */
	WL1271_PSM_PS = 1,

	/* Extreme low power */
	WL1271_PSM_ELP = 2,
};

struct acx_sleep_auth {
	struct acx_header header;

	/* The sleep level authorization of the device. */
	/* 0 - Always active*/
	/* 1 - Power down mode: light / fast sleep*/
	/* 2 - ELP mode: Deep / Max sleep*/
	u8  sleep_auth;
	u8  padding[3];
} __attribute__ ((packed));

enum {
	HOSTIF_PCI_MASTER_HOST_INDIRECT,
	HOSTIF_PCI_MASTER_HOST_DIRECT,
	HOSTIF_SLAVE,
	HOSTIF_PKT_RING,
	HOSTIF_DONTCARE = 0xFF
};

#define DEFAULT_UCAST_PRIORITY          0
#define DEFAULT_RX_Q_PRIORITY           0
#define DEFAULT_NUM_STATIONS            1
#define DEFAULT_RXQ_PRIORITY            0 /* low 0 .. 15 high  */
#define DEFAULT_RXQ_TYPE                0x07    /* All frames, Data/Ctrl/Mgmt */
#define TRACE_BUFFER_MAX_SIZE           256

#define  DP_RX_PACKET_RING_CHUNK_SIZE 1600
#define  DP_TX_PACKET_RING_CHUNK_SIZE 1600
#define  DP_RX_PACKET_RING_CHUNK_NUM 2
#define  DP_TX_PACKET_RING_CHUNK_NUM 2
#define  DP_TX_COMPLETE_TIME_OUT 20

#define TX_MSDU_LIFETIME_MIN       0
#define TX_MSDU_LIFETIME_MAX       3000
#define TX_MSDU_LIFETIME_DEF       512
#define RX_MSDU_LIFETIME_MIN       0
#define RX_MSDU_LIFETIME_MAX       0xFFFFFFFF
#define RX_MSDU_LIFETIME_DEF       512000

struct acx_rx_msdu_lifetime {
	struct acx_header header;

	/*
	 * The maximum amount of time, in TU, before the
	 * firmware discards the MSDU.
	 */
L
Luciano Coelho 已提交
189
	__le32 lifetime;
L
Luciano Coelho 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
} __attribute__ ((packed));

/*
 * RX Config Options Table
 * Bit		Definition
 * ===		==========
 * 31:14		Reserved
 * 13		Copy RX Status - when set, write three receive status words
 *		to top of rx'd MPDUs.
 *		When cleared, do not write three status words (added rev 1.5)
 * 12		Reserved
 * 11		RX Complete upon FCS error - when set, give rx complete
 *		interrupt for FCS errors, after the rx filtering, e.g. unicast
 *		frames not to us with FCS error will not generate an interrupt.
 * 10		SSID Filter Enable - When set, the WiLink discards all beacon,
 *	        probe request, and probe response frames with an SSID that does
 *		not match the SSID specified by the host in the START/JOIN
 *		command.
 *		When clear, the WiLink receives frames with any SSID.
 * 9		Broadcast Filter Enable - When set, the WiLink discards all
 *		broadcast frames. When clear, the WiLink receives all received
 *		broadcast frames.
 * 8:6		Reserved
 * 5		BSSID Filter Enable - When set, the WiLink discards any frames
 *		with a BSSID that does not match the BSSID specified by the
 *		host.
 *		When clear, the WiLink receives frames from any BSSID.
 * 4		MAC Addr Filter - When set, the WiLink discards any frames
 *		with a destination address that does not match the MAC address
 *		of the adaptor.
 *		When clear, the WiLink receives frames destined to any MAC
 *		address.
 * 3		Promiscuous - When set, the WiLink receives all valid frames
 *		(i.e., all frames that pass the FCS check).
 *		When clear, only frames that pass the other filters specified
 *		are received.
 * 2		FCS - When set, the WiLink includes the FCS with the received
 *		frame.
 *		When cleared, the FCS is discarded.
 * 1		PLCP header - When set, write all data from baseband to frame
 *		buffer including PHY header.
 * 0		Reserved - Always equal to 0.
 *
 * RX Filter Options Table
 * Bit		Definition
 * ===		==========
 * 31:12		Reserved - Always equal to 0.
 * 11		Association - When set, the WiLink receives all association
 *		related frames (association request/response, reassocation
 *		request/response, and disassociation). When clear, these frames
 *		are discarded.
 * 10		Auth/De auth - When set, the WiLink receives all authentication
 *		and de-authentication frames. When clear, these frames are
 *		discarded.
 * 9		Beacon - When set, the WiLink receives all beacon frames.
 *		When clear, these frames are discarded.
 * 8		Contention Free - When set, the WiLink receives all contention
 *		free frames.
 *		When clear, these frames are discarded.
 * 7		Control - When set, the WiLink receives all control frames.
 *		When clear, these frames are discarded.
 * 6		Data - When set, the WiLink receives all data frames.
 *		When clear, these frames are discarded.
 * 5		FCS Error - When set, the WiLink receives frames that have FCS
 *		errors.
 *		When clear, these frames are discarded.
 * 4		Management - When set, the WiLink receives all management
 *		frames.
 *		When clear, these frames are discarded.
 * 3		Probe Request - When set, the WiLink receives all probe request
 *		frames.
 *		When clear, these frames are discarded.
 * 2		Probe Response - When set, the WiLink receives all probe
 *		response frames.
 *		When clear, these frames are discarded.
 * 1		RTS/CTS/ACK - When set, the WiLink receives all RTS, CTS and ACK
 *		frames.
 *		When clear, these frames are discarded.
 * 0		Rsvd Type/Sub Type - When set, the WiLink receives all frames
 *		that have reserved frame types and sub types as defined by the
 *		802.11 specification.
 *		When clear, these frames are discarded.
 */
struct acx_rx_config {
	struct acx_header header;

L
Luciano Coelho 已提交
276 277
	__le32 config_options;
	__le32 filter_options;
L
Luciano Coelho 已提交
278 279 280 281 282
} __attribute__ ((packed));

struct acx_packet_detection {
	struct acx_header header;

L
Luciano Coelho 已提交
283
	__le32 threshold;
L
Luciano Coelho 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
} __attribute__ ((packed));


enum acx_slot_type {
	SLOT_TIME_LONG = 0,
	SLOT_TIME_SHORT = 1,
	DEFAULT_SLOT_TIME = SLOT_TIME_SHORT,
	MAX_SLOT_TIMES = 0xFF
};

#define STATION_WONE_INDEX 0

struct acx_slot {
	struct acx_header header;

	u8 wone_index; /* Reserved */
	u8 slot_time;
	u8 reserved[6];
} __attribute__ ((packed));


305 306
#define ACX_MC_ADDRESS_GROUP_MAX	(8)
#define ADDRESS_GROUP_MAX_LEN	        (ETH_ALEN * ACX_MC_ADDRESS_GROUP_MAX)
L
Luciano Coelho 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319

struct acx_dot11_grp_addr_tbl {
	struct acx_header header;

	u8 enabled;
	u8 num_groups;
	u8 pad[2];
	u8 mac_table[ADDRESS_GROUP_MAX_LEN];
} __attribute__ ((packed));

struct acx_rx_timeout {
	struct acx_header header;

L
Luciano Coelho 已提交
320 321
	__le16 ps_poll_timeout;
	__le16 upsd_timeout;
L
Luciano Coelho 已提交
322 323 324 325 326
} __attribute__ ((packed));

struct acx_rts_threshold {
	struct acx_header header;

L
Luciano Coelho 已提交
327
	__le16 threshold;
L
Luciano Coelho 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
	u8 pad[2];
} __attribute__ ((packed));

struct acx_beacon_filter_option {
	struct acx_header header;

	u8 enable;

	/*
	 * The number of beacons without the unicast TIM
	 * bit set that the firmware buffers before
	 * signaling the host about ready frames.
	 * When set to 0 and the filter is enabled, beacons
	 * without the unicast TIM bit set are dropped.
	 */
	u8 max_num_beacons;
	u8 pad[2];
} __attribute__ ((packed));

/*
 * ACXBeaconFilterEntry (not 221)
 * Byte Offset     Size (Bytes)    Definition
 * ===========     ============    ==========
 * 0				1               IE identifier
 * 1               1               Treatment bit mask
 *
 * ACXBeaconFilterEntry (221)
 * Byte Offset     Size (Bytes)    Definition
 * ===========     ============    ==========
 * 0               1               IE identifier
 * 1               1               Treatment bit mask
 * 2               3               OUI
 * 5               1               Type
 * 6               2               Version
 *
 *
 * Treatment bit mask - The information element handling:
 * bit 0 - The information element is compared and transferred
 * in case of change.
 * bit 1 - The information element is transferred to the host
 * with each appearance or disappearance.
 * Note that both bits can be set at the same time.
 */
#define	BEACON_FILTER_TABLE_MAX_IE_NUM		       (32)
#define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
#define BEACON_FILTER_TABLE_IE_ENTRY_SIZE	       (2)
#define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
#define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
			    BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
			   (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
			    BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))

struct acx_beacon_filter_ie_table {
	struct acx_header header;

	u8 num_ie;
	u8 table[BEACON_FILTER_TABLE_MAX_SIZE];
	u8 pad[3];
} __attribute__ ((packed));

388 389 390
struct acx_conn_monit_params {
       struct acx_header header;

L
Luciano Coelho 已提交
391 392
       __le32 synch_fail_thold; /* number of beacons missed */
       __le32 bss_lose_timeout; /* number of TU's from synch fail */
393
} __attribute__ ((packed));
394

L
Luciano Coelho 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
enum {
	SG_ENABLE = 0,
	SG_DISABLE,
	SG_SENSE_NO_ACTIVITY,
	SG_SENSE_ACTIVE
};

struct acx_bt_wlan_coex {
	struct acx_header header;

	/*
	 * 0 -> PTA enabled
	 * 1 -> PTA disabled
	 * 2 -> sense no active mode, i.e.
	 *      an interrupt is sent upon
	 *      BT activity.
	 * 3 -> PTA is switched on in response
	 *      to the interrupt sending.
	 */
	u8 enable;
	u8 pad[3];
} __attribute__ ((packed));

J
Juuso Oikarinen 已提交
418 419 420 421 422
struct acx_smart_reflex_state {
	struct acx_header header;

	u8 enable;
	u8 padding[3];
423
} __attribute__ ((packed));
J
Juuso Oikarinen 已提交
424 425 426 427 428

struct smart_reflex_err_table {
	u8 len;
	s8 upper_limit;
	s8 values[14];
429
} __attribute__ ((packed));
J
Juuso Oikarinen 已提交
430 431 432 433 434

struct acx_smart_reflex_config_params {
	struct acx_header header;

	struct smart_reflex_err_table error_table[3];
435
} __attribute__ ((packed));
J
Juuso Oikarinen 已提交
436

L
Luciano Coelho 已提交
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
#define PTA_ANTENNA_TYPE_DEF		  (0)
#define PTA_BT_HP_MAXTIME_DEF		  (2000)
#define PTA_WLAN_HP_MAX_TIME_DEF	  (5000)
#define PTA_SENSE_DISABLE_TIMER_DEF	  (1350)
#define PTA_PROTECTIVE_RX_TIME_DEF	  (1500)
#define PTA_PROTECTIVE_TX_TIME_DEF	  (1500)
#define PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF (3000)
#define PTA_SIGNALING_TYPE_DEF		  (1)
#define PTA_AFH_LEVERAGE_ON_DEF		  (0)
#define PTA_NUMBER_QUIET_CYCLE_DEF	  (0)
#define PTA_MAX_NUM_CTS_DEF		  (3)
#define PTA_NUMBER_OF_WLAN_PACKETS_DEF	  (2)
#define PTA_NUMBER_OF_BT_PACKETS_DEF	  (2)
#define PTA_PROTECTIVE_RX_TIME_FAST_DEF	  (1500)
#define PTA_PROTECTIVE_TX_TIME_FAST_DEF	  (3000)
#define PTA_CYCLE_TIME_FAST_DEF		  (8700)
#define PTA_RX_FOR_AVALANCHE_DEF	  (5)
#define PTA_ELP_HP_DEF			  (0)
#define PTA_ANTI_STARVE_PERIOD_DEF	  (500)
#define PTA_ANTI_STARVE_NUM_CYCLE_DEF	  (4)
#define PTA_ALLOW_PA_SD_DEF		  (1)
#define PTA_TIME_BEFORE_BEACON_DEF	  (6300)
#define PTA_HPDM_MAX_TIME_DEF		  (1600)
#define PTA_TIME_OUT_NEXT_WLAN_DEF	  (2550)
#define PTA_AUTO_MODE_NO_CTS_DEF	  (0)
#define PTA_BT_HP_RESPECTED_DEF		  (3)
#define PTA_WLAN_RX_MIN_RATE_DEF	  (24)
#define PTA_ACK_MODE_DEF		  (1)

struct acx_bt_wlan_coex_param {
	struct acx_header header;

L
Luciano Coelho 已提交
469 470 471
	__le32 per_threshold;
	__le32 max_scan_compensation_time;
	__le16 nfs_sample_interval;
472 473 474 475 476 477
	u8 load_ratio;
	u8 auto_ps_mode;
	u8 probe_req_compensation;
	u8 scan_window_compensation;
	u8 antenna_config;
	u8 beacon_miss_threshold;
L
Luciano Coelho 已提交
478
	__le32 rate_adaptation_threshold;
479 480
	s8 rate_adaptation_snr;
	u8 padding[3];
L
Luciano Coelho 已提交
481 482 483 484 485 486
} __attribute__ ((packed));

struct acx_energy_detection {
	struct acx_header header;

	/* The RX Clear Channel Assessment threshold in the PHY */
L
Luciano Coelho 已提交
487
	__le16 rx_cca_threshold;
L
Luciano Coelho 已提交
488 489 490 491 492 493 494
	u8 tx_energy_detection;
	u8 pad;
} __attribute__ ((packed));

struct acx_beacon_broadcast {
	struct acx_header header;

L
Luciano Coelho 已提交
495 496
	__le16 beacon_rx_timeout;
	__le16 broadcast_timeout;
L
Luciano Coelho 已提交
497 498 499 500 501 502 503 504 505 506 507 508

	/* Enables receiving of broadcast packets in PS mode */
	u8 rx_broadcast_in_ps;

	/* Consecutive PS Poll failures before updating the host */
	u8 ps_poll_threshold;
	u8 pad[2];
} __attribute__ ((packed));

struct acx_event_mask {
	struct acx_header header;

L
Luciano Coelho 已提交
509 510
	__le32 event_mask;
	__le32 high_event_mask; /* Unused */
L
Luciano Coelho 已提交
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
} __attribute__ ((packed));

#define CFG_RX_FCS		BIT(2)
#define CFG_RX_ALL_GOOD		BIT(3)
#define CFG_UNI_FILTER_EN	BIT(4)
#define CFG_BSSID_FILTER_EN	BIT(5)
#define CFG_MC_FILTER_EN	BIT(6)
#define CFG_MC_ADDR0_EN		BIT(7)
#define CFG_MC_ADDR1_EN		BIT(8)
#define CFG_BC_REJECT_EN	BIT(9)
#define CFG_SSID_FILTER_EN	BIT(10)
#define CFG_RX_INT_FCS_ERROR	BIT(11)
#define CFG_RX_INT_ENCRYPTED	BIT(12)
#define CFG_RX_WR_RX_STATUS	BIT(13)
#define CFG_RX_FILTER_NULTI	BIT(14)
#define CFG_RX_RESERVE		BIT(15)
#define CFG_RX_TIMESTAMP_TSF	BIT(16)

#define CFG_RX_RSV_EN		BIT(0)
#define CFG_RX_RCTS_ACK		BIT(1)
#define CFG_RX_PRSP_EN		BIT(2)
#define CFG_RX_PREQ_EN		BIT(3)
#define CFG_RX_MGMT_EN		BIT(4)
#define CFG_RX_FCS_ERROR	BIT(5)
#define CFG_RX_DATA_EN		BIT(6)
#define CFG_RX_CTL_EN		BIT(7)
#define CFG_RX_CF_EN		BIT(8)
#define CFG_RX_BCN_EN		BIT(9)
#define CFG_RX_AUTH_EN		BIT(10)
#define CFG_RX_ASSOC_EN		BIT(11)

#define SCAN_PASSIVE		BIT(0)
#define SCAN_5GHZ_BAND		BIT(1)
#define SCAN_TRIGGERED		BIT(2)
#define SCAN_PRIORITY_HIGH	BIT(3)

547 548 549 550
/* When set, disable HW encryption */
#define DF_ENCRYPTION_DISABLE      0x01
#define DF_SNIFF_MODE_ENABLE       0x80

L
Luciano Coelho 已提交
551 552 553
struct acx_feature_config {
	struct acx_header header;

L
Luciano Coelho 已提交
554 555
	__le32 options;
	__le32 data_flow_options;
L
Luciano Coelho 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
} __attribute__ ((packed));

struct acx_current_tx_power {
	struct acx_header header;

	u8  current_tx_power;
	u8  padding[3];
} __attribute__ ((packed));

struct acx_wake_up_condition {
	struct acx_header header;

	u8 wake_up_event; /* Only one bit can be set */
	u8 listen_interval;
	u8 pad[2];
} __attribute__ ((packed));

struct acx_aid {
	struct acx_header header;

	/*
	 * To be set when associated with an AP.
	 */
L
Luciano Coelho 已提交
579
	__le16 aid;
L
Luciano Coelho 已提交
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
	u8 pad[2];
} __attribute__ ((packed));

enum acx_preamble_type {
	ACX_PREAMBLE_LONG = 0,
	ACX_PREAMBLE_SHORT = 1
};

struct acx_preamble {
	struct acx_header header;

	/*
	 * When set, the WiLink transmits the frames with a short preamble and
	 * when cleared, the WiLink transmits the frames with a long preamble.
	 */
	u8 preamble;
	u8 padding[3];
} __attribute__ ((packed));

enum acx_ctsprotect_type {
	CTSPROTECT_DISABLE = 0,
	CTSPROTECT_ENABLE = 1
};

struct acx_ctsprotect {
	struct acx_header header;
	u8 ctsprotect;
	u8 padding[3];
} __attribute__ ((packed));

struct acx_tx_statistics {
L
Luciano Coelho 已提交
611
	__le32 internal_desc_overflow;
L
Luciano Coelho 已提交
612 613 614
}  __attribute__ ((packed));

struct acx_rx_statistics {
L
Luciano Coelho 已提交
615 616 617 618 619 620 621 622
	__le32 out_of_mem;
	__le32 hdr_overflow;
	__le32 hw_stuck;
	__le32 dropped;
	__le32 fcs_err;
	__le32 xfr_hint_trig;
	__le32 path_reset;
	__le32 reset_counter;
L
Luciano Coelho 已提交
623 624 625
} __attribute__ ((packed));

struct acx_dma_statistics {
L
Luciano Coelho 已提交
626 627 628 629
	__le32 rx_requested;
	__le32 rx_errors;
	__le32 tx_requested;
	__le32 tx_errors;
L
Luciano Coelho 已提交
630 631 632 633
}  __attribute__ ((packed));

struct acx_isr_statistics {
	/* host command complete */
L
Luciano Coelho 已提交
634
	__le32 cmd_cmplt;
L
Luciano Coelho 已提交
635 636

	/* fiqisr() */
L
Luciano Coelho 已提交
637
	__le32 fiqs;
L
Luciano Coelho 已提交
638 639

	/* (INT_STS_ND & INT_TRIG_RX_HEADER) */
L
Luciano Coelho 已提交
640
	__le32 rx_headers;
L
Luciano Coelho 已提交
641 642

	/* (INT_STS_ND & INT_TRIG_RX_CMPLT) */
L
Luciano Coelho 已提交
643
	__le32 rx_completes;
L
Luciano Coelho 已提交
644 645

	/* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */
L
Luciano Coelho 已提交
646
	__le32 rx_mem_overflow;
L
Luciano Coelho 已提交
647 648

	/* (INT_STS_ND & INT_TRIG_S_RX_RDY) */
L
Luciano Coelho 已提交
649
	__le32 rx_rdys;
L
Luciano Coelho 已提交
650 651

	/* irqisr() */
L
Luciano Coelho 已提交
652
	__le32 irqs;
L
Luciano Coelho 已提交
653 654

	/* (INT_STS_ND & INT_TRIG_TX_PROC) */
L
Luciano Coelho 已提交
655
	__le32 tx_procs;
L
Luciano Coelho 已提交
656 657

	/* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */
L
Luciano Coelho 已提交
658
	__le32 decrypt_done;
L
Luciano Coelho 已提交
659 660

	/* (INT_STS_ND & INT_TRIG_DMA0) */
L
Luciano Coelho 已提交
661
	__le32 dma0_done;
L
Luciano Coelho 已提交
662 663

	/* (INT_STS_ND & INT_TRIG_DMA1) */
L
Luciano Coelho 已提交
664
	__le32 dma1_done;
L
Luciano Coelho 已提交
665 666

	/* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */
L
Luciano Coelho 已提交
667
	__le32 tx_exch_complete;
L
Luciano Coelho 已提交
668 669

	/* (INT_STS_ND & INT_TRIG_COMMAND) */
L
Luciano Coelho 已提交
670
	__le32 commands;
L
Luciano Coelho 已提交
671 672

	/* (INT_STS_ND & INT_TRIG_RX_PROC) */
L
Luciano Coelho 已提交
673
	__le32 rx_procs;
L
Luciano Coelho 已提交
674 675

	/* (INT_STS_ND & INT_TRIG_PM_802) */
L
Luciano Coelho 已提交
676
	__le32 hw_pm_mode_changes;
L
Luciano Coelho 已提交
677 678

	/* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */
L
Luciano Coelho 已提交
679
	__le32 host_acknowledges;
L
Luciano Coelho 已提交
680 681

	/* (INT_STS_ND & INT_TRIG_PM_PCI) */
L
Luciano Coelho 已提交
682
	__le32 pci_pm;
L
Luciano Coelho 已提交
683 684

	/* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */
L
Luciano Coelho 已提交
685
	__le32 wakeups;
L
Luciano Coelho 已提交
686 687

	/* (INT_STS_ND & INT_TRIG_LOW_RSSI) */
L
Luciano Coelho 已提交
688
	__le32 low_rssi;
L
Luciano Coelho 已提交
689 690 691 692
} __attribute__ ((packed));

struct acx_wep_statistics {
	/* WEP address keys configured */
L
Luciano Coelho 已提交
693
	__le32 addr_key_count;
L
Luciano Coelho 已提交
694 695

	/* default keys configured */
L
Luciano Coelho 已提交
696
	__le32 default_key_count;
L
Luciano Coelho 已提交
697

L
Luciano Coelho 已提交
698
	__le32 reserved;
L
Luciano Coelho 已提交
699 700

	/* number of times that WEP key not found on lookup */
L
Luciano Coelho 已提交
701
	__le32 key_not_found;
L
Luciano Coelho 已提交
702 703

	/* number of times that WEP key decryption failed */
L
Luciano Coelho 已提交
704
	__le32 decrypt_fail;
L
Luciano Coelho 已提交
705 706

	/* WEP packets decrypted */
L
Luciano Coelho 已提交
707
	__le32 packets;
L
Luciano Coelho 已提交
708 709

	/* WEP decrypt interrupts */
L
Luciano Coelho 已提交
710
	__le32 interrupt;
L
Luciano Coelho 已提交
711 712 713 714 715 716
} __attribute__ ((packed));

#define ACX_MISSED_BEACONS_SPREAD 10

struct acx_pwr_statistics {
	/* the amount of enters into power save mode (both PD & ELP) */
L
Luciano Coelho 已提交
717
	__le32 ps_enter;
L
Luciano Coelho 已提交
718 719

	/* the amount of enters into ELP mode */
L
Luciano Coelho 已提交
720
	__le32 elp_enter;
L
Luciano Coelho 已提交
721 722

	/* the amount of missing beacon interrupts to the host */
L
Luciano Coelho 已提交
723
	__le32 missing_bcns;
L
Luciano Coelho 已提交
724 725

	/* the amount of wake on host-access times */
L
Luciano Coelho 已提交
726
	__le32 wake_on_host;
L
Luciano Coelho 已提交
727 728

	/* the amount of wake on timer-expire */
L
Luciano Coelho 已提交
729
	__le32 wake_on_timer_exp;
L
Luciano Coelho 已提交
730 731

	/* the number of packets that were transmitted with PS bit set */
L
Luciano Coelho 已提交
732
	__le32 tx_with_ps;
L
Luciano Coelho 已提交
733 734

	/* the number of packets that were transmitted with PS bit clear */
L
Luciano Coelho 已提交
735
	__le32 tx_without_ps;
L
Luciano Coelho 已提交
736 737

	/* the number of received beacons */
L
Luciano Coelho 已提交
738
	__le32 rcvd_beacons;
L
Luciano Coelho 已提交
739 740

	/* the number of entering into PowerOn (power save off) */
L
Luciano Coelho 已提交
741
	__le32 power_save_off;
L
Luciano Coelho 已提交
742 743

	/* the number of entries into power save mode */
L
Luciano Coelho 已提交
744
	__le16 enable_ps;
L
Luciano Coelho 已提交
745 746 747 748 749

	/*
	 * the number of exits from power save, not including failed PS
	 * transitions
	 */
L
Luciano Coelho 已提交
750
	__le16 disable_ps;
L
Luciano Coelho 已提交
751 752 753 754 755

	/*
	 * the number of times the TSF counter was adjusted because
	 * of drift
	 */
L
Luciano Coelho 已提交
756
	__le32 fix_tsf_ps;
L
Luciano Coelho 已提交
757 758 759 760 761 762 763 764 765 766

	/* Gives statistics about the spread continuous missed beacons.
	 * The 16 LSB are dedicated for the PS mode.
	 * The 16 MSB are dedicated for the PS mode.
	 * cont_miss_bcns_spread[0] - single missed beacon.
	 * cont_miss_bcns_spread[1] - two continuous missed beacons.
	 * cont_miss_bcns_spread[2] - three continuous missed beacons.
	 * ...
	 * cont_miss_bcns_spread[9] - ten and more continuous missed beacons.
	*/
L
Luciano Coelho 已提交
767
	__le32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD];
L
Luciano Coelho 已提交
768 769

	/* the number of beacons in awake mode */
L
Luciano Coelho 已提交
770
	__le32 rcvd_awake_beacons;
L
Luciano Coelho 已提交
771 772 773
} __attribute__ ((packed));

struct acx_mic_statistics {
L
Luciano Coelho 已提交
774 775
	__le32 rx_pkts;
	__le32 calc_failure;
L
Luciano Coelho 已提交
776 777 778
} __attribute__ ((packed));

struct acx_aes_statistics {
L
Luciano Coelho 已提交
779 780 781 782 783 784
	__le32 encrypt_fail;
	__le32 decrypt_fail;
	__le32 encrypt_packets;
	__le32 decrypt_packets;
	__le32 encrypt_interrupt;
	__le32 decrypt_interrupt;
L
Luciano Coelho 已提交
785 786 787
} __attribute__ ((packed));

struct acx_event_statistics {
L
Luciano Coelho 已提交
788 789 790 791 792 793 794 795
	__le32 heart_beat;
	__le32 calibration;
	__le32 rx_mismatch;
	__le32 rx_mem_empty;
	__le32 rx_pool;
	__le32 oom_late;
	__le32 phy_transmit_error;
	__le32 tx_stuck;
L
Luciano Coelho 已提交
796 797 798
} __attribute__ ((packed));

struct acx_ps_statistics {
L
Luciano Coelho 已提交
799 800 801 802 803 804 805
	__le32 pspoll_timeouts;
	__le32 upsd_timeouts;
	__le32 upsd_max_sptime;
	__le32 upsd_max_apturn;
	__le32 pspoll_max_apturn;
	__le32 pspoll_utilization;
	__le32 upsd_utilization;
L
Luciano Coelho 已提交
806 807 808
} __attribute__ ((packed));

struct acx_rxpipe_statistics {
L
Luciano Coelho 已提交
809 810 811 812 813
	__le32 rx_prep_beacon_drop;
	__le32 descr_host_int_trig_rx_data;
	__le32 beacon_buffer_thres_host_int_trig_rx_data;
	__le32 missed_beacon_host_int_trig_rx_data;
	__le32 tx_xfr_host_int_trig_rx_data;
L
Luciano Coelho 已提交
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
} __attribute__ ((packed));

struct acx_statistics {
	struct acx_header header;

	struct acx_tx_statistics tx;
	struct acx_rx_statistics rx;
	struct acx_dma_statistics dma;
	struct acx_isr_statistics isr;
	struct acx_wep_statistics wep;
	struct acx_pwr_statistics pwr;
	struct acx_aes_statistics aes;
	struct acx_mic_statistics mic;
	struct acx_event_statistics event;
	struct acx_ps_statistics ps;
	struct acx_rxpipe_statistics rxpipe;
} __attribute__ ((packed));

struct acx_rate_class {
L
Luciano Coelho 已提交
833
	__le32 enabled_rates;
L
Luciano Coelho 已提交
834 835 836 837 838 839 840 841 842
	u8 short_retry_limit;
	u8 long_retry_limit;
	u8 aflags;
	u8 reserved;
};

struct acx_rate_policy {
	struct acx_header header;

L
Luciano Coelho 已提交
843
	__le32 rate_class_cnt;
844
	struct acx_rate_class rate_class[CONF_TX_MAX_RATE_CLASSES];
L
Luciano Coelho 已提交
845 846 847 848 849 850
} __attribute__ ((packed));

struct acx_ac_cfg {
	struct acx_header header;
	u8 ac;
	u8 cw_min;
L
Luciano Coelho 已提交
851
	__le16 cw_max;
L
Luciano Coelho 已提交
852 853
	u8 aifsn;
	u8 reserved;
L
Luciano Coelho 已提交
854
	__le16 tx_op_limit;
L
Luciano Coelho 已提交
855 856 857 858 859 860 861 862 863 864
} __attribute__ ((packed));

struct acx_tid_config {
	struct acx_header header;
	u8 queue_id;
	u8 channel_type;
	u8 tsid;
	u8 ps_scheme;
	u8 ack_policy;
	u8 padding[3];
L
Luciano Coelho 已提交
865
	__le32 apsd_conf[2];
L
Luciano Coelho 已提交
866 867 868 869
} __attribute__ ((packed));

struct acx_frag_threshold {
	struct acx_header header;
L
Luciano Coelho 已提交
870
	__le16 frag_threshold;
L
Luciano Coelho 已提交
871 872 873 874 875
	u8 padding[2];
} __attribute__ ((packed));

struct acx_tx_config_options {
	struct acx_header header;
L
Luciano Coelho 已提交
876 877
	__le16 tx_compl_timeout;     /* msec */
	__le16 tx_compl_threshold;   /* number of packets */
L
Luciano Coelho 已提交
878 879 880 881 882 883 884 885 886 887 888 889 890 891
} __attribute__ ((packed));

#define ACX_RX_MEM_BLOCKS     64
#define ACX_TX_MIN_MEM_BLOCKS 64
#define ACX_TX_DESCRIPTORS    32
#define ACX_NUM_SSID_PROFILES 1

struct wl1271_acx_config_memory {
	struct acx_header header;

	u8 rx_mem_block_num;
	u8 tx_min_mem_block_num;
	u8 num_stations;
	u8 num_ssid_profiles;
L
Luciano Coelho 已提交
892
	__le32 total_tx_descriptors;
L
Luciano Coelho 已提交
893 894 895 896 897
} __attribute__ ((packed));

struct wl1271_acx_mem_map {
	struct acx_header header;

L
Luciano Coelho 已提交
898 899
	__le32 code_start;
	__le32 code_end;
L
Luciano Coelho 已提交
900

L
Luciano Coelho 已提交
901 902
	__le32 wep_defkey_start;
	__le32 wep_defkey_end;
L
Luciano Coelho 已提交
903

L
Luciano Coelho 已提交
904 905
	__le32 sta_table_start;
	__le32 sta_table_end;
L
Luciano Coelho 已提交
906

L
Luciano Coelho 已提交
907 908
	__le32 packet_template_start;
	__le32 packet_template_end;
L
Luciano Coelho 已提交
909 910

	/* Address of the TX result interface (control block) */
L
Luciano Coelho 已提交
911 912
	__le32 tx_result;
	__le32 tx_result_queue_start;
L
Luciano Coelho 已提交
913

L
Luciano Coelho 已提交
914 915
	__le32 queue_memory_start;
	__le32 queue_memory_end;
L
Luciano Coelho 已提交
916

L
Luciano Coelho 已提交
917 918
	__le32 packet_memory_pool_start;
	__le32 packet_memory_pool_end;
L
Luciano Coelho 已提交
919

L
Luciano Coelho 已提交
920 921
	__le32 debug_buffer1_start;
	__le32 debug_buffer1_end;
L
Luciano Coelho 已提交
922

L
Luciano Coelho 已提交
923 924
	__le32 debug_buffer2_start;
	__le32 debug_buffer2_end;
L
Luciano Coelho 已提交
925 926

	/* Number of blocks FW allocated for TX packets */
L
Luciano Coelho 已提交
927
	__le32 num_tx_mem_blocks;
L
Luciano Coelho 已提交
928 929

	/* Number of blocks FW allocated for RX packets */
L
Luciano Coelho 已提交
930
	__le32 num_rx_mem_blocks;
L
Luciano Coelho 已提交
931 932 933 934

	/* the following 4 fields are valid in SLAVE mode only */
	u8 *tx_cbuf;
	u8 *rx_cbuf;
L
Luciano Coelho 已提交
935 936
	__le32 rx_ctrl;
	__le32 tx_ctrl;
L
Luciano Coelho 已提交
937 938 939 940 941
} __attribute__ ((packed));

struct wl1271_acx_rx_config_opt {
	struct acx_header header;

L
Luciano Coelho 已提交
942 943 944
	__le16 mblk_threshold;
	__le16 threshold;
	__le16 timeout;
L
Luciano Coelho 已提交
945 946 947 948
	u8 queue_type;
	u8 reserved;
} __attribute__ ((packed));

949 950 951 952 953 954 955 956 957

struct wl1271_acx_bet_enable {
	struct acx_header header;

	u8 enable;
	u8 max_consecutive;
	u8 padding[2];
} __attribute__ ((packed));

958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
#define ACX_IPV4_VERSION 4
#define ACX_IPV6_VERSION 6
#define ACX_IPV4_ADDR_SIZE 4
struct wl1271_acx_arp_filter {
	struct acx_header header;
	u8 version;         /* ACX_IPV4_VERSION, ACX_IPV6_VERSION */
	u8 enable;          /* 1 to enable ARP filtering, 0 to disable */
	u8 padding[2];
	u8 address[16];     /* The configured device IP address - all ARP
			       requests directed to this IP address will pass
			       through. For IPv4, the first four bytes are
			       used. */
} __attribute__((packed));


L
Luciano Coelho 已提交
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
enum {
	ACX_WAKE_UP_CONDITIONS      = 0x0002,
	ACX_MEM_CFG                 = 0x0003,
	ACX_SLOT                    = 0x0004,
	ACX_AC_CFG                  = 0x0007,
	ACX_MEM_MAP                 = 0x0008,
	ACX_AID                     = 0x000A,
	/* ACX_FW_REV is missing in the ref driver, but seems to work */
	ACX_FW_REV                  = 0x000D,
	ACX_MEDIUM_USAGE            = 0x000F,
	ACX_RX_CFG                  = 0x0010,
	ACX_TX_QUEUE_CFG            = 0x0011, /* FIXME: only used by wl1251 */
	ACX_STATISTICS              = 0x0013, /* Debug API */
	ACX_PWR_CONSUMPTION_STATISTICS = 0x0014,
	ACX_FEATURE_CFG             = 0x0015,
	ACX_TID_CFG                 = 0x001A,
	ACX_PS_RX_STREAMING         = 0x001B,
	ACX_BEACON_FILTER_OPT       = 0x001F,
	ACX_NOISE_HIST              = 0x0021,
	ACX_HDK_VERSION             = 0x0022, /* ??? */
	ACX_PD_THRESHOLD            = 0x0023,
	ACX_TX_CONFIG_OPT           = 0x0024,
	ACX_CCA_THRESHOLD           = 0x0025,
	ACX_EVENT_MBOX_MASK         = 0x0026,
	ACX_CONN_MONIT_PARAMS       = 0x002D,
	ACX_CONS_TX_FAILURE         = 0x002F,
	ACX_BCN_DTIM_OPTIONS        = 0x0031,
	ACX_SG_ENABLE               = 0x0032,
	ACX_SG_CFG                  = 0x0033,
	ACX_BEACON_FILTER_TABLE     = 0x0038,
	ACX_ARP_IP_FILTER           = 0x0039,
	ACX_ROAMING_STATISTICS_TBL  = 0x003B,
	ACX_RATE_POLICY             = 0x003D,
	ACX_CTS_PROTECTION          = 0x003E,
	ACX_SLEEP_AUTH              = 0x003F,
	ACX_PREAMBLE_TYPE	    = 0x0040,
	ACX_ERROR_CNT               = 0x0041,
	ACX_IBSS_FILTER		    = 0x0044,
	ACX_SERVICE_PERIOD_TIMEOUT  = 0x0045,
	ACX_TSF_INFO                = 0x0046,
	ACX_CONFIG_PS_WMM           = 0x0049,
	ACX_ENABLE_RX_DATA_FILTER   = 0x004A,
	ACX_SET_RX_DATA_FILTER      = 0x004B,
	ACX_GET_DATA_FILTER_STATISTICS = 0x004C,
	ACX_RX_CONFIG_OPT           = 0x004E,
	ACX_FRAG_CFG                = 0x004F,
	ACX_BET_ENABLE              = 0x0050,
	ACX_RSSI_SNR_TRIGGER        = 0x0051,
	ACX_RSSI_SNR_WEIGHTS        = 0x0051,
	ACX_KEEP_ALIVE_MODE         = 0x0052,
	ACX_SET_KEEP_ALIVE_CONFIG   = 0x0054,
	ACX_BA_SESSION_RESPONDER_POLICY = 0x0055,
	ACX_BA_SESSION_INITIATOR_POLICY = 0x0056,
	ACX_PEER_HT_CAP             = 0x0057,
	ACX_HT_BSS_OPERATION        = 0x0058,
	ACX_COEX_ACTIVITY           = 0x0059,
J
Juuso Oikarinen 已提交
1029 1030 1031
	ACX_SET_SMART_REFLEX_DEBUG  = 0x005A,
	ACX_SET_SMART_REFLEX_STATE  = 0x005B,
	ACX_SET_SMART_REFLEX_PARAMS = 0x005F,
L
Luciano Coelho 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
	DOT11_RX_MSDU_LIFE_TIME     = 0x1004,
	DOT11_CUR_TX_PWR            = 0x100D,
	DOT11_RX_DOT11_MODE         = 0x1012,
	DOT11_RTS_THRESHOLD         = 0x1013,
	DOT11_GROUP_ADDRESS_TBL     = 0x1014,

	MAX_DOT11_IE = DOT11_GROUP_ADDRESS_TBL,

	MAX_IE = 0xFFFF
};


1044
int wl1271_acx_wake_up_conditions(struct wl1271 *wl);
L
Luciano Coelho 已提交
1045 1046 1047 1048 1049 1050
int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth);
int wl1271_acx_fw_version(struct wl1271 *wl, char *buf, size_t len);
int wl1271_acx_tx_power(struct wl1271 *wl, int power);
int wl1271_acx_feature_cfg(struct wl1271 *wl);
int wl1271_acx_mem_map(struct wl1271 *wl,
		       struct acx_header *mem_map, size_t len);
1051
int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl);
L
Luciano Coelho 已提交
1052 1053 1054
int wl1271_acx_rx_config(struct wl1271 *wl, u32 config, u32 filter);
int wl1271_acx_pd_threshold(struct wl1271 *wl);
int wl1271_acx_slot(struct wl1271 *wl, enum acx_slot_type slot_time);
1055 1056
int wl1271_acx_group_address_tbl(struct wl1271 *wl, bool enable,
				 void *mc_list, u32 mc_list_len);
L
Luciano Coelho 已提交
1057 1058
int wl1271_acx_service_period_timeout(struct wl1271 *wl);
int wl1271_acx_rts_threshold(struct wl1271 *wl, u16 rts_threshold);
1059
int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, bool enable_filter);
L
Luciano Coelho 已提交
1060
int wl1271_acx_beacon_filter_table(struct wl1271 *wl);
1061
int wl1271_acx_conn_monit_params(struct wl1271 *wl);
L
Luciano Coelho 已提交
1062 1063 1064 1065 1066 1067 1068 1069
int wl1271_acx_sg_enable(struct wl1271 *wl);
int wl1271_acx_sg_cfg(struct wl1271 *wl);
int wl1271_acx_cca_threshold(struct wl1271 *wl);
int wl1271_acx_bcn_dtim_options(struct wl1271 *wl);
int wl1271_acx_aid(struct wl1271 *wl, u16 aid);
int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask);
int wl1271_acx_set_preamble(struct wl1271 *wl, enum acx_preamble_type preamble);
int wl1271_acx_cts_protect(struct wl1271 *wl,
1070
			   enum acx_ctsprotect_type ctsprotect);
L
Luciano Coelho 已提交
1071
int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats);
1072
int wl1271_acx_rate_policies(struct wl1271 *wl, u32 enabled_rates);
L
Luciano Coelho 已提交
1073 1074 1075 1076 1077 1078 1079
int wl1271_acx_ac_cfg(struct wl1271 *wl);
int wl1271_acx_tid_cfg(struct wl1271 *wl);
int wl1271_acx_frag_threshold(struct wl1271 *wl);
int wl1271_acx_tx_config_options(struct wl1271 *wl);
int wl1271_acx_mem_cfg(struct wl1271 *wl);
int wl1271_acx_init_mem_config(struct wl1271 *wl);
int wl1271_acx_init_rx_interrupt(struct wl1271 *wl);
J
Juuso Oikarinen 已提交
1080
int wl1271_acx_smart_reflex(struct wl1271 *wl);
1081
int wl1271_acx_bet_enable(struct wl1271 *wl, bool enable);
1082 1083
int wl1271_acx_arp_ip_filter(struct wl1271 *wl, bool enable, u8 *address,
			     u8 version);
L
Luciano Coelho 已提交
1084 1085

#endif /* __WL1271_ACX_H__ */