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