Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of wl1271 |
| 3 | * |
| 4 | * Copyright (C) 1998-2009 Texas Instruments. All rights reserved. |
Juuso Oikarinen | 1937e74 | 2010-02-18 13:25:52 +0200 | [diff] [blame] | 5 | * Copyright (C) 2008-2010 Nokia Corporation |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 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 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 25 | #ifndef __ACX_H__ |
| 26 | #define __ACX_H__ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 27 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 28 | #include "wl12xx.h" |
| 29 | #include "cmd.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 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) |
Stefan Weil | e8a8b25 | 2011-01-02 15:12:42 +0100 | [diff] [blame] | 50 | /* Trace message on MBOX #A */ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 51 | #define WL1271_ACX_INTR_TRACE_A BIT(7) |
Stefan Weil | e8a8b25 | 2011-01-02 15:12:42 +0100 | [diff] [blame] | 52 | /* Trace message on MBOX #B */ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 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 | |
Eliad Peller | ccc83b0 | 2010-10-27 14:09:57 +0200 | [diff] [blame] | 64 | #define WL1271_INTR_MASK (WL1271_ACX_INTR_WATCHDOG | \ |
| 65 | WL1271_ACX_INTR_EVENT_A | \ |
Luciano Coelho | 37079a8 | 2009-10-12 15:08:45 +0300 | [diff] [blame] | 66 | WL1271_ACX_INTR_EVENT_B | \ |
| 67 | WL1271_ACX_INTR_HW_AVAILABLE | \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 68 | WL1271_ACX_INTR_DATA) |
| 69 | |
| 70 | /* Target's information element */ |
| 71 | struct acx_header { |
| 72 | struct wl1271_cmd_header cmd; |
| 73 | |
| 74 | /* acx (or information element) header */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 75 | __le16 id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 76 | |
| 77 | /* payload length (not including headers */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 78 | __le16 len; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 79 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 80 | |
| 81 | struct acx_error_counter { |
| 82 | struct acx_header header; |
| 83 | |
| 84 | /* The number of PLCP errors since the last time this */ |
| 85 | /* information element was interrogated. This field is */ |
| 86 | /* automatically cleared when it is interrogated.*/ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 87 | __le32 PLCP_error; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 88 | |
| 89 | /* The number of FCS errors since the last time this */ |
| 90 | /* information element was interrogated. This field is */ |
| 91 | /* automatically cleared when it is interrogated.*/ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 92 | __le32 FCS_error; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 93 | |
| 94 | /* The number of MPDUs without PLCP header errors received*/ |
| 95 | /* since the last time this information element was interrogated. */ |
| 96 | /* This field is automatically cleared when it is interrogated.*/ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 97 | __le32 valid_frame; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 98 | |
| 99 | /* the number of missed sequence numbers in the squentially */ |
| 100 | /* values of frames seq numbers */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 101 | __le32 seq_num_miss; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 102 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 103 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 104 | enum wl12xx_role { |
| 105 | WL1271_ROLE_STA = 0, |
| 106 | WL1271_ROLE_IBSS, |
| 107 | WL1271_ROLE_AP, |
| 108 | WL1271_ROLE_DEVICE, |
| 109 | WL1271_ROLE_P2P_CL, |
| 110 | WL1271_ROLE_P2P_GO, |
| 111 | |
| 112 | WL12XX_INVALID_ROLE_TYPE = 0xff |
| 113 | }; |
| 114 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 115 | enum wl1271_psm_mode { |
| 116 | /* Active mode */ |
| 117 | WL1271_PSM_CAM = 0, |
| 118 | |
| 119 | /* Power save mode */ |
| 120 | WL1271_PSM_PS = 1, |
| 121 | |
| 122 | /* Extreme low power */ |
| 123 | WL1271_PSM_ELP = 2, |
| 124 | }; |
| 125 | |
| 126 | struct acx_sleep_auth { |
| 127 | struct acx_header header; |
| 128 | |
| 129 | /* The sleep level authorization of the device. */ |
| 130 | /* 0 - Always active*/ |
| 131 | /* 1 - Power down mode: light / fast sleep*/ |
| 132 | /* 2 - ELP mode: Deep / Max sleep*/ |
| 133 | u8 sleep_auth; |
| 134 | u8 padding[3]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 135 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 136 | |
| 137 | enum { |
| 138 | HOSTIF_PCI_MASTER_HOST_INDIRECT, |
| 139 | HOSTIF_PCI_MASTER_HOST_DIRECT, |
| 140 | HOSTIF_SLAVE, |
| 141 | HOSTIF_PKT_RING, |
| 142 | HOSTIF_DONTCARE = 0xFF |
| 143 | }; |
| 144 | |
| 145 | #define DEFAULT_UCAST_PRIORITY 0 |
| 146 | #define DEFAULT_RX_Q_PRIORITY 0 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 147 | #define DEFAULT_RXQ_PRIORITY 0 /* low 0 .. 15 high */ |
| 148 | #define DEFAULT_RXQ_TYPE 0x07 /* All frames, Data/Ctrl/Mgmt */ |
| 149 | #define TRACE_BUFFER_MAX_SIZE 256 |
| 150 | |
| 151 | #define DP_RX_PACKET_RING_CHUNK_SIZE 1600 |
| 152 | #define DP_TX_PACKET_RING_CHUNK_SIZE 1600 |
| 153 | #define DP_RX_PACKET_RING_CHUNK_NUM 2 |
| 154 | #define DP_TX_PACKET_RING_CHUNK_NUM 2 |
| 155 | #define DP_TX_COMPLETE_TIME_OUT 20 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 156 | |
| 157 | #define TX_MSDU_LIFETIME_MIN 0 |
| 158 | #define TX_MSDU_LIFETIME_MAX 3000 |
| 159 | #define TX_MSDU_LIFETIME_DEF 512 |
| 160 | #define RX_MSDU_LIFETIME_MIN 0 |
| 161 | #define RX_MSDU_LIFETIME_MAX 0xFFFFFFFF |
| 162 | #define RX_MSDU_LIFETIME_DEF 512000 |
| 163 | |
| 164 | struct acx_rx_msdu_lifetime { |
| 165 | struct acx_header header; |
| 166 | |
| 167 | /* |
| 168 | * The maximum amount of time, in TU, before the |
| 169 | * firmware discards the MSDU. |
| 170 | */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 171 | __le32 lifetime; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 172 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 173 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 174 | enum acx_slot_type { |
| 175 | SLOT_TIME_LONG = 0, |
| 176 | SLOT_TIME_SHORT = 1, |
| 177 | DEFAULT_SLOT_TIME = SLOT_TIME_SHORT, |
| 178 | MAX_SLOT_TIMES = 0xFF |
| 179 | }; |
| 180 | |
| 181 | #define STATION_WONE_INDEX 0 |
| 182 | |
| 183 | struct acx_slot { |
| 184 | struct acx_header header; |
| 185 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 186 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 187 | u8 wone_index; /* Reserved */ |
| 188 | u8 slot_time; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 189 | u8 reserved[5]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 190 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 191 | |
| 192 | |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 193 | #define ACX_MC_ADDRESS_GROUP_MAX (8) |
| 194 | #define ADDRESS_GROUP_MAX_LEN (ETH_ALEN * ACX_MC_ADDRESS_GROUP_MAX) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 195 | |
| 196 | struct acx_dot11_grp_addr_tbl { |
| 197 | struct acx_header header; |
| 198 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 199 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 200 | u8 enabled; |
| 201 | u8 num_groups; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 202 | u8 pad[1]; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 203 | u8 mac_table[ADDRESS_GROUP_MAX_LEN]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 204 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 205 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 206 | struct acx_rx_timeout { |
| 207 | struct acx_header header; |
| 208 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 209 | u8 role_id; |
| 210 | u8 reserved; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 211 | __le16 ps_poll_timeout; |
| 212 | __le16 upsd_timeout; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 213 | u8 padding[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 214 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 215 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 216 | struct acx_rts_threshold { |
| 217 | struct acx_header header; |
| 218 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 219 | u8 role_id; |
| 220 | u8 reserved; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 221 | __le16 threshold; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 222 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 223 | |
| 224 | struct acx_beacon_filter_option { |
| 225 | struct acx_header header; |
| 226 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 227 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 228 | u8 enable; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 229 | /* |
| 230 | * The number of beacons without the unicast TIM |
| 231 | * bit set that the firmware buffers before |
| 232 | * signaling the host about ready frames. |
| 233 | * When set to 0 and the filter is enabled, beacons |
| 234 | * without the unicast TIM bit set are dropped. |
| 235 | */ |
| 236 | u8 max_num_beacons; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 237 | u8 pad[1]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 238 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 239 | |
| 240 | /* |
| 241 | * ACXBeaconFilterEntry (not 221) |
| 242 | * Byte Offset Size (Bytes) Definition |
| 243 | * =========== ============ ========== |
Juuso Oikarinen | 1937e74 | 2010-02-18 13:25:52 +0200 | [diff] [blame] | 244 | * 0 1 IE identifier |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 245 | * 1 1 Treatment bit mask |
| 246 | * |
| 247 | * ACXBeaconFilterEntry (221) |
| 248 | * Byte Offset Size (Bytes) Definition |
| 249 | * =========== ============ ========== |
| 250 | * 0 1 IE identifier |
| 251 | * 1 1 Treatment bit mask |
| 252 | * 2 3 OUI |
| 253 | * 5 1 Type |
| 254 | * 6 2 Version |
| 255 | * |
| 256 | * |
| 257 | * Treatment bit mask - The information element handling: |
| 258 | * bit 0 - The information element is compared and transferred |
| 259 | * in case of change. |
| 260 | * bit 1 - The information element is transferred to the host |
| 261 | * with each appearance or disappearance. |
| 262 | * Note that both bits can be set at the same time. |
| 263 | */ |
| 264 | #define BEACON_FILTER_TABLE_MAX_IE_NUM (32) |
| 265 | #define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6) |
| 266 | #define BEACON_FILTER_TABLE_IE_ENTRY_SIZE (2) |
| 267 | #define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6) |
| 268 | #define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \ |
| 269 | BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \ |
| 270 | (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \ |
| 271 | BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE)) |
| 272 | |
| 273 | struct acx_beacon_filter_ie_table { |
| 274 | struct acx_header header; |
| 275 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 276 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 277 | u8 num_ie; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 278 | u8 pad[2]; |
Juuso Oikarinen | 1937e74 | 2010-02-18 13:25:52 +0200 | [diff] [blame] | 279 | u8 table[BEACON_FILTER_TABLE_MAX_SIZE]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 280 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 281 | |
Juuso Oikarinen | 3441523 | 2009-10-08 21:56:33 +0300 | [diff] [blame] | 282 | struct acx_conn_monit_params { |
| 283 | struct acx_header header; |
| 284 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 285 | u8 role_id; |
| 286 | u8 padding[3]; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 287 | __le32 synch_fail_thold; /* number of beacons missed */ |
| 288 | __le32 bss_lose_timeout; /* number of TU's from synch fail */ |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 289 | } __packed; |
Juuso Oikarinen | 3441523 | 2009-10-08 21:56:33 +0300 | [diff] [blame] | 290 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 291 | struct acx_bt_wlan_coex { |
| 292 | struct acx_header header; |
| 293 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 294 | u8 enable; |
| 295 | u8 pad[3]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 296 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 297 | |
Eliad Peller | 3be4112 | 2011-08-14 13:17:19 +0300 | [diff] [blame] | 298 | struct acx_bt_wlan_coex_param { |
Juuso Oikarinen | 885c990 | 2010-03-18 12:26:29 +0200 | [diff] [blame] | 299 | struct acx_header header; |
| 300 | |
Eliad Peller | 3be4112 | 2011-08-14 13:17:19 +0300 | [diff] [blame] | 301 | __le32 params[CONF_SG_PARAMS_MAX]; |
Juuso Oikarinen | 885c990 | 2010-03-18 12:26:29 +0200 | [diff] [blame] | 302 | u8 param_idx; |
| 303 | u8 padding[3]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 304 | } __packed; |
Juuso Oikarinen | 885c990 | 2010-03-18 12:26:29 +0200 | [diff] [blame] | 305 | |
Luciano Coelho | 6e92b41 | 2009-12-11 15:40:50 +0200 | [diff] [blame] | 306 | struct acx_dco_itrim_params { |
| 307 | struct acx_header header; |
| 308 | |
| 309 | u8 enable; |
| 310 | u8 padding[3]; |
| 311 | __le32 timeout; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 312 | } __packed; |
Luciano Coelho | 6e92b41 | 2009-12-11 15:40:50 +0200 | [diff] [blame] | 313 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 314 | struct acx_energy_detection { |
| 315 | struct acx_header header; |
| 316 | |
| 317 | /* The RX Clear Channel Assessment threshold in the PHY */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 318 | __le16 rx_cca_threshold; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 319 | u8 tx_energy_detection; |
| 320 | u8 pad; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 321 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 322 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 323 | struct acx_beacon_broadcast { |
| 324 | struct acx_header header; |
| 325 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 326 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 327 | /* Enables receiving of broadcast packets in PS mode */ |
| 328 | u8 rx_broadcast_in_ps; |
| 329 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 330 | __le16 beacon_rx_timeout; |
| 331 | __le16 broadcast_timeout; |
| 332 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 333 | /* Consecutive PS Poll failures before updating the host */ |
| 334 | u8 ps_poll_threshold; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 335 | u8 pad[1]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 336 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 337 | |
| 338 | struct acx_event_mask { |
| 339 | struct acx_header header; |
| 340 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 341 | __le32 event_mask; |
| 342 | __le32 high_event_mask; /* Unused */ |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 343 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 344 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 345 | #define SCAN_PASSIVE BIT(0) |
| 346 | #define SCAN_5GHZ_BAND BIT(1) |
| 347 | #define SCAN_TRIGGERED BIT(2) |
| 348 | #define SCAN_PRIORITY_HIGH BIT(3) |
| 349 | |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 350 | /* When set, disable HW encryption */ |
| 351 | #define DF_ENCRYPTION_DISABLE 0x01 |
| 352 | #define DF_SNIFF_MODE_ENABLE 0x80 |
| 353 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 354 | struct acx_feature_config { |
| 355 | struct acx_header header; |
| 356 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 357 | u8 role_id; |
| 358 | u8 padding[3]; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 359 | __le32 options; |
| 360 | __le32 data_flow_options; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 361 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 362 | |
| 363 | struct acx_current_tx_power { |
| 364 | struct acx_header header; |
| 365 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 366 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 367 | u8 current_tx_power; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 368 | u8 padding[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 369 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 370 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 371 | struct acx_wake_up_condition { |
| 372 | struct acx_header header; |
| 373 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 374 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 375 | u8 wake_up_event; /* Only one bit can be set */ |
| 376 | u8 listen_interval; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 377 | u8 pad[1]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 378 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 379 | |
| 380 | struct acx_aid { |
| 381 | struct acx_header header; |
| 382 | |
| 383 | /* |
| 384 | * To be set when associated with an AP. |
| 385 | */ |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 386 | u8 role_id; |
| 387 | u8 reserved; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 388 | __le16 aid; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 389 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 390 | |
| 391 | enum acx_preamble_type { |
| 392 | ACX_PREAMBLE_LONG = 0, |
| 393 | ACX_PREAMBLE_SHORT = 1 |
| 394 | }; |
| 395 | |
| 396 | struct acx_preamble { |
| 397 | struct acx_header header; |
| 398 | |
| 399 | /* |
| 400 | * When set, the WiLink transmits the frames with a short preamble and |
| 401 | * when cleared, the WiLink transmits the frames with a long preamble. |
| 402 | */ |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 403 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 404 | u8 preamble; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 405 | u8 padding[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 406 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 407 | |
| 408 | enum acx_ctsprotect_type { |
| 409 | CTSPROTECT_DISABLE = 0, |
| 410 | CTSPROTECT_ENABLE = 1 |
| 411 | }; |
| 412 | |
| 413 | struct acx_ctsprotect { |
| 414 | struct acx_header header; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 415 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 416 | u8 ctsprotect; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 417 | u8 padding[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 418 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 419 | |
| 420 | struct acx_tx_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 421 | __le32 internal_desc_overflow; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 422 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 423 | |
| 424 | struct acx_rx_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 425 | __le32 out_of_mem; |
| 426 | __le32 hdr_overflow; |
| 427 | __le32 hw_stuck; |
| 428 | __le32 dropped; |
| 429 | __le32 fcs_err; |
| 430 | __le32 xfr_hint_trig; |
| 431 | __le32 path_reset; |
| 432 | __le32 reset_counter; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 433 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 434 | |
| 435 | struct acx_dma_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 436 | __le32 rx_requested; |
| 437 | __le32 rx_errors; |
| 438 | __le32 tx_requested; |
| 439 | __le32 tx_errors; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 440 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 441 | |
| 442 | struct acx_isr_statistics { |
| 443 | /* host command complete */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 444 | __le32 cmd_cmplt; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 445 | |
| 446 | /* fiqisr() */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 447 | __le32 fiqs; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 448 | |
| 449 | /* (INT_STS_ND & INT_TRIG_RX_HEADER) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 450 | __le32 rx_headers; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 451 | |
| 452 | /* (INT_STS_ND & INT_TRIG_RX_CMPLT) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 453 | __le32 rx_completes; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 454 | |
| 455 | /* (INT_STS_ND & INT_TRIG_NO_RX_BUF) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 456 | __le32 rx_mem_overflow; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 457 | |
| 458 | /* (INT_STS_ND & INT_TRIG_S_RX_RDY) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 459 | __le32 rx_rdys; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 460 | |
| 461 | /* irqisr() */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 462 | __le32 irqs; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 463 | |
| 464 | /* (INT_STS_ND & INT_TRIG_TX_PROC) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 465 | __le32 tx_procs; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 466 | |
| 467 | /* (INT_STS_ND & INT_TRIG_DECRYPT_DONE) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 468 | __le32 decrypt_done; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 469 | |
| 470 | /* (INT_STS_ND & INT_TRIG_DMA0) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 471 | __le32 dma0_done; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 472 | |
| 473 | /* (INT_STS_ND & INT_TRIG_DMA1) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 474 | __le32 dma1_done; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 475 | |
| 476 | /* (INT_STS_ND & INT_TRIG_TX_EXC_CMPLT) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 477 | __le32 tx_exch_complete; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 478 | |
| 479 | /* (INT_STS_ND & INT_TRIG_COMMAND) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 480 | __le32 commands; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 481 | |
| 482 | /* (INT_STS_ND & INT_TRIG_RX_PROC) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 483 | __le32 rx_procs; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 484 | |
| 485 | /* (INT_STS_ND & INT_TRIG_PM_802) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 486 | __le32 hw_pm_mode_changes; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 487 | |
| 488 | /* (INT_STS_ND & INT_TRIG_ACKNOWLEDGE) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 489 | __le32 host_acknowledges; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 490 | |
| 491 | /* (INT_STS_ND & INT_TRIG_PM_PCI) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 492 | __le32 pci_pm; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 493 | |
| 494 | /* (INT_STS_ND & INT_TRIG_ACM_WAKEUP) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 495 | __le32 wakeups; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 496 | |
| 497 | /* (INT_STS_ND & INT_TRIG_LOW_RSSI) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 498 | __le32 low_rssi; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 499 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 500 | |
| 501 | struct acx_wep_statistics { |
| 502 | /* WEP address keys configured */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 503 | __le32 addr_key_count; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 504 | |
| 505 | /* default keys configured */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 506 | __le32 default_key_count; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 507 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 508 | __le32 reserved; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 509 | |
| 510 | /* number of times that WEP key not found on lookup */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 511 | __le32 key_not_found; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 512 | |
| 513 | /* number of times that WEP key decryption failed */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 514 | __le32 decrypt_fail; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 515 | |
| 516 | /* WEP packets decrypted */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 517 | __le32 packets; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 518 | |
| 519 | /* WEP decrypt interrupts */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 520 | __le32 interrupt; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 521 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 522 | |
| 523 | #define ACX_MISSED_BEACONS_SPREAD 10 |
| 524 | |
| 525 | struct acx_pwr_statistics { |
| 526 | /* the amount of enters into power save mode (both PD & ELP) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 527 | __le32 ps_enter; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 528 | |
| 529 | /* the amount of enters into ELP mode */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 530 | __le32 elp_enter; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 531 | |
| 532 | /* the amount of missing beacon interrupts to the host */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 533 | __le32 missing_bcns; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 534 | |
| 535 | /* the amount of wake on host-access times */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 536 | __le32 wake_on_host; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 537 | |
| 538 | /* the amount of wake on timer-expire */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 539 | __le32 wake_on_timer_exp; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 540 | |
| 541 | /* the number of packets that were transmitted with PS bit set */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 542 | __le32 tx_with_ps; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 543 | |
| 544 | /* the number of packets that were transmitted with PS bit clear */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 545 | __le32 tx_without_ps; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 546 | |
| 547 | /* the number of received beacons */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 548 | __le32 rcvd_beacons; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 549 | |
| 550 | /* the number of entering into PowerOn (power save off) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 551 | __le32 power_save_off; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 552 | |
| 553 | /* the number of entries into power save mode */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 554 | __le16 enable_ps; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 555 | |
| 556 | /* |
| 557 | * the number of exits from power save, not including failed PS |
| 558 | * transitions |
| 559 | */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 560 | __le16 disable_ps; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 561 | |
| 562 | /* |
| 563 | * the number of times the TSF counter was adjusted because |
| 564 | * of drift |
| 565 | */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 566 | __le32 fix_tsf_ps; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 567 | |
| 568 | /* Gives statistics about the spread continuous missed beacons. |
| 569 | * The 16 LSB are dedicated for the PS mode. |
| 570 | * The 16 MSB are dedicated for the PS mode. |
| 571 | * cont_miss_bcns_spread[0] - single missed beacon. |
| 572 | * cont_miss_bcns_spread[1] - two continuous missed beacons. |
| 573 | * cont_miss_bcns_spread[2] - three continuous missed beacons. |
| 574 | * ... |
| 575 | * cont_miss_bcns_spread[9] - ten and more continuous missed beacons. |
| 576 | */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 577 | __le32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD]; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 578 | |
| 579 | /* the number of beacons in awake mode */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 580 | __le32 rcvd_awake_beacons; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 581 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 582 | |
| 583 | struct acx_mic_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 584 | __le32 rx_pkts; |
| 585 | __le32 calc_failure; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 586 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 587 | |
| 588 | struct acx_aes_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 589 | __le32 encrypt_fail; |
| 590 | __le32 decrypt_fail; |
| 591 | __le32 encrypt_packets; |
| 592 | __le32 decrypt_packets; |
| 593 | __le32 encrypt_interrupt; |
| 594 | __le32 decrypt_interrupt; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 595 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 596 | |
| 597 | struct acx_event_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 598 | __le32 heart_beat; |
| 599 | __le32 calibration; |
| 600 | __le32 rx_mismatch; |
| 601 | __le32 rx_mem_empty; |
| 602 | __le32 rx_pool; |
| 603 | __le32 oom_late; |
| 604 | __le32 phy_transmit_error; |
| 605 | __le32 tx_stuck; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 606 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 607 | |
| 608 | struct acx_ps_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 609 | __le32 pspoll_timeouts; |
| 610 | __le32 upsd_timeouts; |
| 611 | __le32 upsd_max_sptime; |
| 612 | __le32 upsd_max_apturn; |
| 613 | __le32 pspoll_max_apturn; |
| 614 | __le32 pspoll_utilization; |
| 615 | __le32 upsd_utilization; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 616 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 617 | |
| 618 | struct acx_rxpipe_statistics { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 619 | __le32 rx_prep_beacon_drop; |
| 620 | __le32 descr_host_int_trig_rx_data; |
| 621 | __le32 beacon_buffer_thres_host_int_trig_rx_data; |
| 622 | __le32 missed_beacon_host_int_trig_rx_data; |
| 623 | __le32 tx_xfr_host_int_trig_rx_data; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 624 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 625 | |
| 626 | struct acx_statistics { |
| 627 | struct acx_header header; |
| 628 | |
| 629 | struct acx_tx_statistics tx; |
| 630 | struct acx_rx_statistics rx; |
| 631 | struct acx_dma_statistics dma; |
| 632 | struct acx_isr_statistics isr; |
| 633 | struct acx_wep_statistics wep; |
| 634 | struct acx_pwr_statistics pwr; |
| 635 | struct acx_aes_statistics aes; |
| 636 | struct acx_mic_statistics mic; |
| 637 | struct acx_event_statistics event; |
| 638 | struct acx_ps_statistics ps; |
| 639 | struct acx_rxpipe_statistics rxpipe; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 640 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 641 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 642 | struct acx_rate_class { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 643 | __le32 enabled_rates; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 644 | u8 short_retry_limit; |
| 645 | u8 long_retry_limit; |
| 646 | u8 aflags; |
| 647 | u8 reserved; |
| 648 | }; |
| 649 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 650 | struct acx_rate_policy { |
Arik Nemtsov | 79b223f | 2010-10-16 17:52:59 +0200 | [diff] [blame] | 651 | struct acx_header header; |
| 652 | |
| 653 | __le32 rate_policy_idx; |
| 654 | struct acx_rate_class rate_policy; |
| 655 | } __packed; |
| 656 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 657 | struct acx_ac_cfg { |
| 658 | struct acx_header header; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 659 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 660 | u8 ac; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 661 | u8 aifsn; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 662 | u8 cw_min; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 663 | __le16 cw_max; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 664 | __le16 tx_op_limit; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 665 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 666 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 667 | struct acx_tid_config { |
| 668 | struct acx_header header; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 669 | u8 role_id; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 670 | u8 queue_id; |
| 671 | u8 channel_type; |
| 672 | u8 tsid; |
| 673 | u8 ps_scheme; |
| 674 | u8 ack_policy; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 675 | u8 padding[2]; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 676 | __le32 apsd_conf[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 677 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 678 | |
| 679 | struct acx_frag_threshold { |
| 680 | struct acx_header header; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 681 | __le16 frag_threshold; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 682 | u8 padding[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 683 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 684 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 685 | struct acx_tx_config_options { |
| 686 | struct acx_header header; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 687 | __le16 tx_compl_timeout; /* msec */ |
| 688 | __le16 tx_compl_threshold; /* number of packets */ |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 689 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 690 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 691 | struct wl12xx_acx_config_memory { |
Eliad Peller | c8bde24 | 2011-02-02 09:59:35 +0200 | [diff] [blame] | 692 | struct acx_header header; |
| 693 | |
| 694 | u8 rx_mem_block_num; |
| 695 | u8 tx_min_mem_block_num; |
| 696 | u8 num_stations; |
| 697 | u8 num_ssid_profiles; |
| 698 | __le32 total_tx_descriptors; |
| 699 | u8 dyn_mem_enable; |
| 700 | u8 tx_free_req; |
| 701 | u8 rx_free_req; |
| 702 | u8 tx_min; |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 703 | u8 fwlog_blocks; |
| 704 | u8 padding[3]; |
Eliad Peller | c8bde24 | 2011-02-02 09:59:35 +0200 | [diff] [blame] | 705 | } __packed; |
| 706 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 707 | struct wl1271_acx_mem_map { |
| 708 | struct acx_header header; |
| 709 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 710 | __le32 code_start; |
| 711 | __le32 code_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 712 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 713 | __le32 wep_defkey_start; |
| 714 | __le32 wep_defkey_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 715 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 716 | __le32 sta_table_start; |
| 717 | __le32 sta_table_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 718 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 719 | __le32 packet_template_start; |
| 720 | __le32 packet_template_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 721 | |
| 722 | /* Address of the TX result interface (control block) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 723 | __le32 tx_result; |
| 724 | __le32 tx_result_queue_start; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 725 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 726 | __le32 queue_memory_start; |
| 727 | __le32 queue_memory_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 728 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 729 | __le32 packet_memory_pool_start; |
| 730 | __le32 packet_memory_pool_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 731 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 732 | __le32 debug_buffer1_start; |
| 733 | __le32 debug_buffer1_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 734 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 735 | __le32 debug_buffer2_start; |
| 736 | __le32 debug_buffer2_end; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 737 | |
| 738 | /* Number of blocks FW allocated for TX packets */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 739 | __le32 num_tx_mem_blocks; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 740 | |
| 741 | /* Number of blocks FW allocated for RX packets */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 742 | __le32 num_rx_mem_blocks; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 743 | |
| 744 | /* the following 4 fields are valid in SLAVE mode only */ |
| 745 | u8 *tx_cbuf; |
| 746 | u8 *rx_cbuf; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 747 | __le32 rx_ctrl; |
| 748 | __le32 tx_ctrl; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 749 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 750 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 751 | struct wl1271_acx_rx_config_opt { |
| 752 | struct acx_header header; |
| 753 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 754 | __le16 mblk_threshold; |
| 755 | __le16 threshold; |
| 756 | __le16 timeout; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 757 | u8 queue_type; |
| 758 | u8 reserved; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 759 | } __packed; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 760 | |
Juuso Oikarinen | 11f70f9 | 2009-10-13 12:47:46 +0300 | [diff] [blame] | 761 | |
| 762 | struct wl1271_acx_bet_enable { |
| 763 | struct acx_header header; |
| 764 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 765 | u8 role_id; |
Juuso Oikarinen | 11f70f9 | 2009-10-13 12:47:46 +0300 | [diff] [blame] | 766 | u8 enable; |
| 767 | u8 max_consecutive; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 768 | u8 padding[1]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 769 | } __packed; |
Juuso Oikarinen | 11f70f9 | 2009-10-13 12:47:46 +0300 | [diff] [blame] | 770 | |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 771 | #define ACX_IPV4_VERSION 4 |
| 772 | #define ACX_IPV6_VERSION 6 |
| 773 | #define ACX_IPV4_ADDR_SIZE 4 |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 774 | |
| 775 | /* bitmap of enabled arp_filter features */ |
| 776 | #define ACX_ARP_FILTER_ARP_FILTERING BIT(0) |
| 777 | #define ACX_ARP_FILTER_AUTO_ARP BIT(1) |
| 778 | |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 779 | struct wl1271_acx_arp_filter { |
| 780 | struct acx_header header; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 781 | u8 role_id; |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 782 | u8 version; /* ACX_IPV4_VERSION, ACX_IPV6_VERSION */ |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 783 | u8 enable; /* bitmap of enabled ARP filtering features */ |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 784 | u8 padding[1]; |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 785 | u8 address[16]; /* The configured device IP address - all ARP |
| 786 | requests directed to this IP address will pass |
| 787 | through. For IPv4, the first four bytes are |
| 788 | used. */ |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 789 | } __packed; |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 790 | |
Juuso Oikarinen | 38ad2d8 | 2009-12-11 15:41:08 +0200 | [diff] [blame] | 791 | struct wl1271_acx_pm_config { |
| 792 | struct acx_header header; |
| 793 | |
| 794 | __le32 host_clk_settling_time; |
| 795 | u8 host_fast_wakeup_support; |
| 796 | u8 padding[3]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 797 | } __packed; |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 798 | |
Juuso Oikarinen | c189955 | 2010-03-26 12:53:32 +0200 | [diff] [blame] | 799 | struct wl1271_acx_keep_alive_mode { |
| 800 | struct acx_header header; |
| 801 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 802 | u8 role_id; |
Juuso Oikarinen | c189955 | 2010-03-26 12:53:32 +0200 | [diff] [blame] | 803 | u8 enabled; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 804 | u8 padding[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 805 | } __packed; |
Juuso Oikarinen | c189955 | 2010-03-26 12:53:32 +0200 | [diff] [blame] | 806 | |
| 807 | enum { |
| 808 | ACX_KEEP_ALIVE_NO_TX = 0, |
| 809 | ACX_KEEP_ALIVE_PERIOD_ONLY |
| 810 | }; |
| 811 | |
| 812 | enum { |
| 813 | ACX_KEEP_ALIVE_TPL_INVALID = 0, |
| 814 | ACX_KEEP_ALIVE_TPL_VALID |
| 815 | }; |
| 816 | |
| 817 | struct wl1271_acx_keep_alive_config { |
| 818 | struct acx_header header; |
| 819 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 820 | u8 role_id; |
Juuso Oikarinen | c189955 | 2010-03-26 12:53:32 +0200 | [diff] [blame] | 821 | u8 index; |
| 822 | u8 tpl_validation; |
| 823 | u8 trigger; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 824 | __le32 period; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 825 | } __packed; |
Juuso Oikarinen | c189955 | 2010-03-26 12:53:32 +0200 | [diff] [blame] | 826 | |
Shahar Levi | 48a6147 | 2011-03-06 16:32:08 +0200 | [diff] [blame] | 827 | #define HOST_IF_CFG_RX_FIFO_ENABLE BIT(0) |
| 828 | #define HOST_IF_CFG_TX_EXTRA_BLKS_SWAP BIT(1) |
| 829 | #define HOST_IF_CFG_TX_PAD_TO_SDIO_BLK BIT(3) |
| 830 | |
| 831 | struct wl1271_acx_host_config_bitmap { |
| 832 | struct acx_header header; |
| 833 | |
| 834 | __le32 host_cfg_bitmap; |
| 835 | } __packed; |
| 836 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 837 | enum { |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 838 | WL1271_ACX_TRIG_TYPE_LEVEL = 0, |
| 839 | WL1271_ACX_TRIG_TYPE_EDGE, |
| 840 | }; |
| 841 | |
| 842 | enum { |
| 843 | WL1271_ACX_TRIG_DIR_LOW = 0, |
| 844 | WL1271_ACX_TRIG_DIR_HIGH, |
| 845 | WL1271_ACX_TRIG_DIR_BIDIR, |
| 846 | }; |
| 847 | |
| 848 | enum { |
| 849 | WL1271_ACX_TRIG_ENABLE = 1, |
| 850 | WL1271_ACX_TRIG_DISABLE, |
| 851 | }; |
| 852 | |
| 853 | enum { |
| 854 | WL1271_ACX_TRIG_METRIC_RSSI_BEACON = 0, |
| 855 | WL1271_ACX_TRIG_METRIC_RSSI_DATA, |
| 856 | WL1271_ACX_TRIG_METRIC_SNR_BEACON, |
| 857 | WL1271_ACX_TRIG_METRIC_SNR_DATA, |
| 858 | }; |
| 859 | |
| 860 | enum { |
| 861 | WL1271_ACX_TRIG_IDX_RSSI = 0, |
| 862 | WL1271_ACX_TRIG_COUNT = 8, |
| 863 | }; |
| 864 | |
| 865 | struct wl1271_acx_rssi_snr_trigger { |
| 866 | struct acx_header header; |
| 867 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 868 | u8 role_id; |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 869 | u8 metric; |
| 870 | u8 type; |
| 871 | u8 dir; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 872 | __le16 threshold; |
| 873 | __le16 pacing; /* 0 - 60000 ms */ |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 874 | u8 hysteresis; |
| 875 | u8 index; |
| 876 | u8 enable; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 877 | u8 padding[1]; |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 878 | }; |
| 879 | |
| 880 | struct wl1271_acx_rssi_snr_avg_weights { |
| 881 | struct acx_header header; |
| 882 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 883 | u8 role_id; |
| 884 | u8 padding[3]; |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 885 | u8 rssi_beacon; |
| 886 | u8 rssi_data; |
| 887 | u8 snr_beacon; |
| 888 | u8 snr_data; |
| 889 | }; |
| 890 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 891 | |
| 892 | /* special capability bit (not employed by the 802.11n spec) */ |
| 893 | #define WL12XX_HT_CAP_HT_OPERATION BIT(16) |
| 894 | |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 895 | /* |
| 896 | * ACX_PEER_HT_CAP |
| 897 | * Configure HT capabilities - declare the capabilities of the peer |
| 898 | * we are connected to. |
| 899 | */ |
| 900 | struct wl1271_acx_ht_capabilities { |
| 901 | struct acx_header header; |
| 902 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 903 | /* bitmask of capability bits supported by the peer */ |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 904 | __le32 ht_capabilites; |
| 905 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 906 | /* Indicates to which link these capabilities apply. */ |
| 907 | u8 hlid; |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 908 | |
| 909 | /* |
| 910 | * This the maximum A-MPDU length supported by the AP. The FW may not |
| 911 | * exceed this length when sending A-MPDUs |
| 912 | */ |
| 913 | u8 ampdu_max_length; |
| 914 | |
| 915 | /* This is the minimal spacing required when sending A-MPDUs to the AP*/ |
| 916 | u8 ampdu_min_spacing; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 917 | |
| 918 | u8 padding; |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 919 | } __packed; |
| 920 | |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 921 | /* |
| 922 | * ACX_HT_BSS_OPERATION |
| 923 | * Configure HT capabilities - AP rules for behavior in the BSS. |
| 924 | */ |
| 925 | struct wl1271_acx_ht_information { |
| 926 | struct acx_header header; |
| 927 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 928 | u8 role_id; |
| 929 | |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 930 | /* Values: 0 - RIFS not allowed, 1 - RIFS allowed */ |
| 931 | u8 rifs_mode; |
| 932 | |
| 933 | /* Values: 0 - 3 like in spec */ |
| 934 | u8 ht_protection; |
| 935 | |
| 936 | /* Values: 0 - GF protection not required, 1 - GF protection required */ |
| 937 | u8 gf_protection; |
| 938 | |
| 939 | /*Values: 0 - TX Burst limit not required, 1 - TX Burst Limit required*/ |
| 940 | u8 ht_tx_burst_limit; |
| 941 | |
| 942 | /* |
| 943 | * Values: 0 - Dual CTS protection not required, |
| 944 | * 1 - Dual CTS Protection required |
| 945 | * Note: When this value is set to 1 FW will protect all TXOP with RTS |
| 946 | * frame and will not use CTS-to-self regardless of the value of the |
| 947 | * ACX_CTS_PROTECTION information element |
| 948 | */ |
| 949 | u8 dual_cts_protection; |
| 950 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 951 | u8 padding[2]; |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 952 | } __packed; |
| 953 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 954 | #define RX_BA_MAX_SESSIONS 2 |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 955 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 956 | struct wl1271_acx_ba_initiator_policy { |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 957 | struct acx_header header; |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 958 | |
| 959 | /* Specifies role Id, Range 0-7, 0xFF means ANY role. */ |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 960 | u8 role_id; |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 961 | |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 962 | /* |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 963 | * Per TID setting for allowing TX BA. Set a bit to 1 to allow |
| 964 | * TX BA sessions for the corresponding TID. |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 965 | */ |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 966 | u8 tid_bitmap; |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 967 | |
| 968 | /* Windows size in number of packets */ |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 969 | u8 win_size; |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 970 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 971 | u8 padding1[1]; |
| 972 | |
| 973 | /* As initiator inactivity timeout in time units(TU) of 1024us */ |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 974 | u16 inactivity_timeout; |
| 975 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 976 | u8 padding[2]; |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 977 | } __packed; |
| 978 | |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 979 | struct wl1271_acx_ba_receiver_setup { |
| 980 | struct acx_header header; |
| 981 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 982 | /* Specifies link id, range 0-31 */ |
| 983 | u8 hlid; |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 984 | |
| 985 | u8 tid; |
| 986 | |
| 987 | u8 enable; |
| 988 | |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 989 | /* Windows size in number of packets */ |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 990 | u8 win_size; |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 991 | |
| 992 | /* BA session starting sequence number. RANGE 0-FFF */ |
| 993 | u16 ssn; |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 994 | |
| 995 | u8 padding[2]; |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 996 | } __packed; |
| 997 | |
Eliad Peller | 9c53114 | 2012-01-31 11:57:18 +0200 | [diff] [blame] | 998 | struct wl12xx_acx_fw_tsf_information { |
Juuso Oikarinen | bbbb538 | 2010-07-08 17:49:57 +0300 | [diff] [blame] | 999 | struct acx_header header; |
| 1000 | |
Eliad Peller | 9c53114 | 2012-01-31 11:57:18 +0200 | [diff] [blame] | 1001 | u8 role_id; |
| 1002 | u8 padding1[3]; |
Juuso Oikarinen | bbbb538 | 2010-07-08 17:49:57 +0300 | [diff] [blame] | 1003 | __le32 current_tsf_high; |
| 1004 | __le32 current_tsf_low; |
| 1005 | __le32 last_bttt_high; |
| 1006 | __le32 last_tbtt_low; |
| 1007 | u8 last_dtim_count; |
Eliad Peller | 9c53114 | 2012-01-31 11:57:18 +0200 | [diff] [blame] | 1008 | u8 padding2[3]; |
Luciano Coelho | 72e93e9 | 2010-07-09 14:10:58 +0300 | [diff] [blame] | 1009 | } __packed; |
Juuso Oikarinen | bbbb538 | 2010-07-08 17:49:57 +0300 | [diff] [blame] | 1010 | |
Eliad Peller | f84673d | 2011-05-15 11:10:28 +0300 | [diff] [blame] | 1011 | struct wl1271_acx_ps_rx_streaming { |
| 1012 | struct acx_header header; |
| 1013 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 1014 | u8 role_id; |
Eliad Peller | f84673d | 2011-05-15 11:10:28 +0300 | [diff] [blame] | 1015 | u8 tid; |
| 1016 | u8 enable; |
| 1017 | |
| 1018 | /* interval between triggers (10-100 msec) */ |
| 1019 | u8 period; |
| 1020 | |
| 1021 | /* timeout before first trigger (0-200 msec) */ |
| 1022 | u8 timeout; |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 1023 | u8 padding[3]; |
Eliad Peller | f84673d | 2011-05-15 11:10:28 +0300 | [diff] [blame] | 1024 | } __packed; |
| 1025 | |
Arik Nemtsov | 3618f30 | 2011-06-26 10:36:03 +0300 | [diff] [blame] | 1026 | struct wl1271_acx_ap_max_tx_retry { |
Arik Nemtsov | 79b223f | 2010-10-16 17:52:59 +0200 | [diff] [blame] | 1027 | struct acx_header header; |
| 1028 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 1029 | u8 role_id; |
| 1030 | u8 padding_1; |
| 1031 | |
Arik Nemtsov | 79b223f | 2010-10-16 17:52:59 +0200 | [diff] [blame] | 1032 | /* |
| 1033 | * the number of frames transmission failures before |
| 1034 | * issuing the aging event. |
| 1035 | */ |
| 1036 | __le16 max_tx_retry; |
Arik Nemtsov | 79b223f | 2010-10-16 17:52:59 +0200 | [diff] [blame] | 1037 | } __packed; |
| 1038 | |
Eliad Peller | ee60833 | 2011-02-02 09:59:34 +0200 | [diff] [blame] | 1039 | struct wl1271_acx_config_ps { |
| 1040 | struct acx_header header; |
| 1041 | |
| 1042 | u8 exit_retries; |
| 1043 | u8 enter_retries; |
| 1044 | u8 padding[2]; |
| 1045 | __le32 null_data_rate; |
| 1046 | } __packed; |
| 1047 | |
Arik Nemtsov | 99a2775 | 2011-02-23 00:22:25 +0200 | [diff] [blame] | 1048 | struct wl1271_acx_inconnection_sta { |
| 1049 | struct acx_header header; |
| 1050 | |
| 1051 | u8 addr[ETH_ALEN]; |
| 1052 | u8 padding1[2]; |
| 1053 | } __packed; |
| 1054 | |
Shahar Levi | ff86843 | 2011-04-11 15:41:46 +0300 | [diff] [blame] | 1055 | /* |
| 1056 | * ACX_FM_COEX_CFG |
| 1057 | * set the FM co-existence parameters. |
| 1058 | */ |
| 1059 | struct wl1271_acx_fm_coex { |
| 1060 | struct acx_header header; |
| 1061 | /* enable(1) / disable(0) the FM Coex feature */ |
| 1062 | u8 enable; |
| 1063 | /* |
| 1064 | * Swallow period used in COEX PLL swallowing mechanism. |
| 1065 | * 0xFF = use FW default |
| 1066 | */ |
| 1067 | u8 swallow_period; |
| 1068 | /* |
| 1069 | * The N divider used in COEX PLL swallowing mechanism for Fref of |
| 1070 | * 38.4/19.2 Mhz. 0xFF = use FW default |
| 1071 | */ |
| 1072 | u8 n_divider_fref_set_1; |
| 1073 | /* |
| 1074 | * The N divider used in COEX PLL swallowing mechanism for Fref of |
| 1075 | * 26/52 Mhz. 0xFF = use FW default |
| 1076 | */ |
| 1077 | u8 n_divider_fref_set_2; |
| 1078 | /* |
| 1079 | * The M divider used in COEX PLL swallowing mechanism for Fref of |
| 1080 | * 38.4/19.2 Mhz. 0xFFFF = use FW default |
| 1081 | */ |
| 1082 | __le16 m_divider_fref_set_1; |
| 1083 | /* |
| 1084 | * The M divider used in COEX PLL swallowing mechanism for Fref of |
| 1085 | * 26/52 Mhz. 0xFFFF = use FW default |
| 1086 | */ |
| 1087 | __le16 m_divider_fref_set_2; |
| 1088 | /* |
| 1089 | * The time duration in uSec required for COEX PLL to stabilize. |
| 1090 | * 0xFFFFFFFF = use FW default |
| 1091 | */ |
| 1092 | __le32 coex_pll_stabilization_time; |
| 1093 | /* |
| 1094 | * The time duration in uSec required for LDO to stabilize. |
| 1095 | * 0xFFFFFFFF = use FW default |
| 1096 | */ |
| 1097 | __le16 ldo_stabilization_time; |
| 1098 | /* |
| 1099 | * The disturbed frequency band margin around the disturbed frequency |
| 1100 | * center (single sided). |
| 1101 | * For example, if 2 is configured, the following channels will be |
| 1102 | * considered disturbed channel: |
| 1103 | * 80 +- 0.1 MHz, 91 +- 0.1 MHz, 98 +- 0.1 MHz, 102 +- 0.1 MH |
| 1104 | * 0xFF = use FW default |
| 1105 | */ |
| 1106 | u8 fm_disturbed_band_margin; |
| 1107 | /* |
| 1108 | * The swallow clock difference of the swallowing mechanism. |
| 1109 | * 0xFF = use FW default |
| 1110 | */ |
| 1111 | u8 swallow_clk_diff; |
| 1112 | } __packed; |
| 1113 | |
Eliad Peller | fa6ad9f | 2011-08-14 13:17:14 +0300 | [diff] [blame] | 1114 | #define ACX_RATE_MGMT_ALL_PARAMS 0xff |
| 1115 | struct wl12xx_acx_set_rate_mgmt_params { |
| 1116 | struct acx_header header; |
| 1117 | |
| 1118 | u8 index; /* 0xff to configure all params */ |
| 1119 | u8 padding1; |
| 1120 | __le16 rate_retry_score; |
| 1121 | __le16 per_add; |
| 1122 | __le16 per_th1; |
| 1123 | __le16 per_th2; |
| 1124 | __le16 max_per; |
| 1125 | u8 inverse_curiosity_factor; |
| 1126 | u8 tx_fail_low_th; |
| 1127 | u8 tx_fail_high_th; |
| 1128 | u8 per_alpha_shift; |
| 1129 | u8 per_add_shift; |
| 1130 | u8 per_beta1_shift; |
| 1131 | u8 per_beta2_shift; |
| 1132 | u8 rate_check_up; |
| 1133 | u8 rate_check_down; |
| 1134 | u8 rate_retry_policy[ACX_RATE_MGMT_NUM_OF_RATES]; |
| 1135 | u8 padding2[2]; |
| 1136 | } __packed; |
| 1137 | |
Eliad Peller | 9487775 | 2011-08-28 15:11:56 +0300 | [diff] [blame] | 1138 | struct wl12xx_acx_config_hangover { |
| 1139 | struct acx_header header; |
| 1140 | |
| 1141 | __le32 recover_time; |
| 1142 | u8 hangover_period; |
| 1143 | u8 dynamic_mode; |
| 1144 | u8 early_termination_mode; |
| 1145 | u8 max_period; |
| 1146 | u8 min_period; |
| 1147 | u8 increase_delta; |
| 1148 | u8 decrease_delta; |
| 1149 | u8 quiet_time; |
| 1150 | u8 increase_time; |
| 1151 | u8 window_size; |
| 1152 | u8 padding[2]; |
| 1153 | } __packed; |
| 1154 | |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 1155 | enum { |
Eliad Peller | 8332f0f | 2012-01-31 11:57:19 +0200 | [diff] [blame] | 1156 | ACX_WAKE_UP_CONDITIONS = 0x0000, |
| 1157 | ACX_MEM_CFG = 0x0001, |
| 1158 | ACX_SLOT = 0x0002, |
| 1159 | ACX_AC_CFG = 0x0003, |
| 1160 | ACX_MEM_MAP = 0x0004, |
| 1161 | ACX_AID = 0x0005, |
| 1162 | ACX_MEDIUM_USAGE = 0x0006, |
| 1163 | ACX_STATISTICS = 0x0007, |
| 1164 | ACX_PWR_CONSUMPTION_STATISTICS = 0x0008, |
| 1165 | ACX_TID_CFG = 0x0009, |
| 1166 | ACX_PS_RX_STREAMING = 0x000A, |
| 1167 | ACX_BEACON_FILTER_OPT = 0x000B, |
| 1168 | ACX_NOISE_HIST = 0x000C, |
| 1169 | ACX_HDK_VERSION = 0x000D, |
| 1170 | ACX_PD_THRESHOLD = 0x000E, |
| 1171 | ACX_TX_CONFIG_OPT = 0x000F, |
| 1172 | ACX_CCA_THRESHOLD = 0x0010, |
| 1173 | ACX_EVENT_MBOX_MASK = 0x0011, |
| 1174 | ACX_CONN_MONIT_PARAMS = 0x0012, |
| 1175 | ACX_DISABLE_BROADCASTS = 0x0013, |
| 1176 | ACX_BCN_DTIM_OPTIONS = 0x0014, |
| 1177 | ACX_SG_ENABLE = 0x0015, |
| 1178 | ACX_SG_CFG = 0x0016, |
| 1179 | ACX_FM_COEX_CFG = 0x0017, |
| 1180 | ACX_BEACON_FILTER_TABLE = 0x0018, |
| 1181 | ACX_ARP_IP_FILTER = 0x0019, |
| 1182 | ACX_ROAMING_STATISTICS_TBL = 0x001A, |
| 1183 | ACX_RATE_POLICY = 0x001B, |
| 1184 | ACX_CTS_PROTECTION = 0x001C, |
| 1185 | ACX_SLEEP_AUTH = 0x001D, |
| 1186 | ACX_PREAMBLE_TYPE = 0x001E, |
| 1187 | ACX_ERROR_CNT = 0x001F, |
| 1188 | ACX_IBSS_FILTER = 0x0020, |
| 1189 | ACX_SERVICE_PERIOD_TIMEOUT = 0x0021, |
| 1190 | ACX_TSF_INFO = 0x0022, |
| 1191 | ACX_CONFIG_PS_WMM = 0x0023, |
| 1192 | ACX_ENABLE_RX_DATA_FILTER = 0x0024, |
| 1193 | ACX_SET_RX_DATA_FILTER = 0x0025, |
| 1194 | ACX_GET_DATA_FILTER_STATISTICS = 0x0026, |
| 1195 | ACX_RX_CONFIG_OPT = 0x0027, |
| 1196 | ACX_FRAG_CFG = 0x0028, |
| 1197 | ACX_BET_ENABLE = 0x0029, |
| 1198 | ACX_RSSI_SNR_TRIGGER = 0x002A, |
| 1199 | ACX_RSSI_SNR_WEIGHTS = 0x002B, |
| 1200 | ACX_KEEP_ALIVE_MODE = 0x002C, |
| 1201 | ACX_SET_KEEP_ALIVE_CONFIG = 0x002D, |
| 1202 | ACX_BA_SESSION_INIT_POLICY = 0x002E, |
| 1203 | ACX_BA_SESSION_RX_SETUP = 0x002F, |
| 1204 | ACX_PEER_HT_CAP = 0x0030, |
| 1205 | ACX_HT_BSS_OPERATION = 0x0031, |
| 1206 | ACX_COEX_ACTIVITY = 0x0032, |
| 1207 | ACX_BURST_MODE = 0x0033, |
| 1208 | ACX_SET_RATE_MGMT_PARAMS = 0x0034, |
| 1209 | ACX_GET_RATE_MGMT_PARAMS = 0x0035, |
| 1210 | ACX_SET_RATE_ADAPT_PARAMS = 0x0036, |
| 1211 | ACX_SET_DCO_ITRIM_PARAMS = 0x0037, |
| 1212 | ACX_GEN_FW_CMD = 0x0038, |
| 1213 | ACX_HOST_IF_CFG_BITMAP = 0x0039, |
| 1214 | ACX_MAX_TX_FAILURE = 0x003A, |
| 1215 | ACX_UPDATE_INCONNECTION_STA_LIST = 0x003B, |
| 1216 | DOT11_RX_MSDU_LIFE_TIME = 0x003C, |
| 1217 | DOT11_CUR_TX_PWR = 0x003D, |
| 1218 | DOT11_RTS_THRESHOLD = 0x003E, |
| 1219 | DOT11_GROUP_ADDRESS_TBL = 0x003F, |
| 1220 | ACX_PM_CONFIG = 0x0040, |
| 1221 | ACX_CONFIG_PS = 0x0041, |
| 1222 | ACX_CONFIG_HANGOVER = 0x0042, |
| 1223 | ACX_FEATURE_CFG = 0x0043, |
| 1224 | ACX_PROTECTION_CFG = 0x0044, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1225 | }; |
| 1226 | |
| 1227 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1228 | int wl1271_acx_wake_up_conditions(struct wl1271 *wl, |
Eyal Shapira | dae728f | 2012-02-02 12:03:39 +0200 | [diff] [blame] | 1229 | struct wl12xx_vif *wlvif, |
| 1230 | u8 wake_up_event, u8 listen_interval); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1231 | int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1232 | int wl1271_acx_tx_power(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1233 | int power); |
| 1234 | int wl1271_acx_feature_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1235 | int wl1271_acx_mem_map(struct wl1271 *wl, |
| 1236 | struct acx_header *mem_map, size_t len); |
Juuso Oikarinen | 8793f9b | 2009-10-13 12:47:40 +0300 | [diff] [blame] | 1237 | int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1238 | int wl1271_acx_slot(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1239 | enum acx_slot_type slot_time); |
| 1240 | int wl1271_acx_group_address_tbl(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1241 | bool enable, void *mc_list, u32 mc_list_len); |
| 1242 | int wl1271_acx_service_period_timeout(struct wl1271 *wl, |
| 1243 | struct wl12xx_vif *wlvif); |
| 1244 | int wl1271_acx_rts_threshold(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1245 | u32 rts_threshold); |
Luciano Coelho | 6e92b41 | 2009-12-11 15:40:50 +0200 | [diff] [blame] | 1246 | int wl1271_acx_dco_itrim_params(struct wl1271 *wl); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1247 | int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1248 | bool enable_filter); |
| 1249 | int wl1271_acx_beacon_filter_table(struct wl1271 *wl, |
| 1250 | struct wl12xx_vif *wlvif); |
| 1251 | int wl1271_acx_conn_monit_params(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1252 | bool enable); |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 1253 | int wl1271_acx_sg_enable(struct wl1271 *wl, bool enable); |
Eliad Peller | 3be4112 | 2011-08-14 13:17:19 +0300 | [diff] [blame] | 1254 | int wl12xx_acx_sg_cfg(struct wl1271 *wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1255 | int wl1271_acx_cca_threshold(struct wl1271 *wl); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1256 | int wl1271_acx_bcn_dtim_options(struct wl1271 *wl, struct wl12xx_vif *wlvif); |
| 1257 | int wl1271_acx_aid(struct wl1271 *wl, struct wl12xx_vif *wlvif, u16 aid); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1258 | int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1259 | int wl1271_acx_set_preamble(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1260 | enum acx_preamble_type preamble); |
| 1261 | int wl1271_acx_cts_protect(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
Juuso Oikarinen | 11f70f9 | 2009-10-13 12:47:46 +0300 | [diff] [blame] | 1262 | enum acx_ctsprotect_type ctsprotect); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1263 | int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats); |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 1264 | int wl1271_acx_sta_rate_policies(struct wl1271 *wl, struct wl12xx_vif *wlvif); |
Arik Nemtsov | 79b223f | 2010-10-16 17:52:59 +0200 | [diff] [blame] | 1265 | int wl1271_acx_ap_rate_policy(struct wl1271 *wl, struct conf_tx_rate_class *c, |
| 1266 | u8 idx); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1267 | int wl1271_acx_ac_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1268 | u8 ac, u8 cw_min, u16 cw_max, u8 aifsn, u16 txop); |
| 1269 | int wl1271_acx_tid_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1270 | u8 queue_id, u8 channel_type, |
Kalle Valo | f2054df | 2010-02-18 13:25:40 +0200 | [diff] [blame] | 1271 | u8 tsid, u8 ps_scheme, u8 ack_policy, |
| 1272 | u32 apsd_conf0, u32 apsd_conf1); |
Arik Nemtsov | 5f704d1 | 2011-04-18 14:15:21 +0300 | [diff] [blame] | 1273 | int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1274 | int wl1271_acx_tx_config_options(struct wl1271 *wl); |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 1275 | int wl12xx_acx_mem_cfg(struct wl1271 *wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1276 | int wl1271_acx_init_mem_config(struct wl1271 *wl); |
Shahar Levi | 48a6147 | 2011-03-06 16:32:08 +0200 | [diff] [blame] | 1277 | int wl1271_acx_host_if_cfg_bitmap(struct wl1271 *wl, u32 host_cfg_bitmap); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1278 | int wl1271_acx_init_rx_interrupt(struct wl1271 *wl); |
Juuso Oikarinen | 3cfd6cf | 2009-10-12 15:08:52 +0300 | [diff] [blame] | 1279 | int wl1271_acx_smart_reflex(struct wl1271 *wl); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1280 | int wl1271_acx_bet_enable(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1281 | bool enable); |
| 1282 | int wl1271_acx_arp_ip_filter(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1283 | u8 enable, __be32 address); |
Juuso Oikarinen | 38ad2d8 | 2009-12-11 15:41:08 +0200 | [diff] [blame] | 1284 | int wl1271_acx_pm_config(struct wl1271 *wl); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1285 | int wl1271_acx_keep_alive_mode(struct wl1271 *wl, struct wl12xx_vif *vif, |
| 1286 | bool enable); |
| 1287 | int wl1271_acx_keep_alive_config(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1288 | u8 index, u8 tpl_valid); |
| 1289 | int wl1271_acx_rssi_snr_trigger(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1290 | bool enable, s16 thold, u8 hyst); |
| 1291 | int wl1271_acx_rssi_snr_avg_weights(struct wl1271 *wl, |
| 1292 | struct wl12xx_vif *wlvif); |
Shahar Levi | c4db1c8 | 2010-10-13 16:09:40 +0200 | [diff] [blame] | 1293 | int wl1271_acx_set_ht_capabilities(struct wl1271 *wl, |
| 1294 | struct ieee80211_sta_ht_cap *ht_cap, |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 1295 | bool allow_ht_operation, u8 hlid); |
Shahar Levi | c4db1c8 | 2010-10-13 16:09:40 +0200 | [diff] [blame] | 1296 | int wl1271_acx_set_ht_information(struct wl1271 *wl, |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1297 | struct wl12xx_vif *wlvif, |
Shahar Levi | c4db1c8 | 2010-10-13 16:09:40 +0200 | [diff] [blame] | 1298 | u16 ht_operation_mode); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1299 | int wl12xx_acx_set_ba_initiator_policy(struct wl1271 *wl, |
| 1300 | struct wl12xx_vif *wlvif); |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 1301 | int wl12xx_acx_set_ba_receiver_session(struct wl1271 *wl, u8 tid_index, |
| 1302 | u16 ssn, bool enable, u8 peer_hlid); |
Eliad Peller | 9c53114 | 2012-01-31 11:57:18 +0200 | [diff] [blame] | 1303 | int wl12xx_acx_tsf_info(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1304 | u64 *mactime); |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 1305 | int wl1271_acx_ps_rx_streaming(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 1306 | bool enable); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1307 | int wl1271_acx_ap_max_tx_retry(struct wl1271 *wl, struct wl12xx_vif *wlvif); |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 1308 | int wl12xx_acx_config_ps(struct wl1271 *wl, struct wl12xx_vif *wlvif); |
Arik Nemtsov | 99a2775 | 2011-02-23 00:22:25 +0200 | [diff] [blame] | 1309 | int wl1271_acx_set_inconnection_sta(struct wl1271 *wl, u8 *addr); |
Shahar Levi | ff86843 | 2011-04-11 15:41:46 +0300 | [diff] [blame] | 1310 | int wl1271_acx_fm_coex(struct wl1271 *wl); |
Eliad Peller | fa6ad9f | 2011-08-14 13:17:14 +0300 | [diff] [blame] | 1311 | int wl12xx_acx_set_rate_mgmt_params(struct wl1271 *wl); |
Eliad Peller | 9487775 | 2011-08-28 15:11:56 +0300 | [diff] [blame] | 1312 | int wl12xx_acx_config_hangover(struct wl1271 *wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1313 | |
| 1314 | #endif /* __WL1271_ACX_H__ */ |