1 /* 2 * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 3 * Use is subject to license terms. 4 */ 5 6 /* 7 * Copyright (c) 2009, Intel Corporation 8 * All rights reserved. 9 */ 10 11 /* 12 * Sun elects to use this software under the BSD license. 13 */ 14 15 /* 16 * This file is provided under a dual BSD/GPLv2 license. When using or 17 * redistributing this file, you may do so under either license. 18 * 19 * GPL LICENSE SUMMARY 20 * 21 * Copyright(c) 2005 - 2009 Intel Corporation. All rights reserved. 22 * 23 * This program is free software; you can redistribute it and/or modify 24 * it under the terms of version 2 of the GNU Geeral Public License as 25 * published by the Free Software Foundation. 26 * 27 * This program is distributed in the hope that it will be useful, but 28 * WITHOUT ANY WARRANTY; without even the implied warranty of 29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 30 * General Public License for more details. 31 * 32 * You should have received a copy of the GNU General Public License 33 * along with this program; if not, write to the Free Software 34 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, 35 * USA 36 * 37 * The full GNU General Public License is included in this distribution 38 * in the file called LICENSE.GPL. 39 * 40 * Contact Information: 41 * James P. Ketrenos <ipw2100-admin@linux.intel.com> 42 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 43 * 44 * BSD LICENSE 45 * 46 * Copyright(c) 2005 - 2009 Intel Corporation. All rights reserved. 47 * All rights reserved. 48 * 49 * Redistribution and use in source and binary forms, with or without 50 * modification, are permitted provided that the following conditions 51 * are met: 52 * 53 * * Redistributions of source code must retain the above copyright 54 * notice, this list of conditions and the following disclaimer. 55 * * Redistributions in binary form must reproduce the above copyright 56 * notice, this list of conditions and the following disclaimer in 57 * the documentation and/or other materials provided with the 58 * distribution. 59 * * Neither the name Intel Corporation nor the names of its 60 * contributors may be used to endorse or promote products derived 61 * from this software without specific prior written permission. 62 * 63 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 64 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 65 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 66 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 67 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 68 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 69 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 70 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 71 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 72 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 73 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 74 */ 75 76 #ifndef _IWH_HW_H_ 77 #define _IWH_HW_H_ 78 79 #ifdef __cplusplus 80 extern "C" { 81 #endif 82 83 /* 84 * maximum scatter/gather 85 */ 86 #define IWH_MAX_SCATTER (10) 87 88 /* 89 * Flow Handler Definitions 90 */ 91 #define FH_MEM_LOWER_BOUND (0x1000) 92 #define FH_MEM_UPPER_BOUND (0x1EF0) 93 94 #define IWH_FH_REGS_LOWER_BOUND (0x1000) 95 #define IWH_FH_REGS_UPPER_BOUND (0x2000) 96 97 /* 98 * TFDB Area - TFDs buffer table 99 */ 100 #define FH_MEM_TFDB_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x000) 101 #define FH_MEM_TFDB_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0x900) 102 103 /* 104 * channels 0 - 8 105 */ 106 #define FH_MEM_TFDB_CHNL_BUF0(x) (FH_MEM_TFDB_LOWER_BOUND + (x) * 0x100) 107 #define FH_MEM_TFDB_CHNL_BUF1(x) (FH_MEM_TFDB_LOWER_BOUND + 0x80 + (x) * 0x100) 108 109 /* 110 * TFDIB Area - TFD Immediate Buffer 111 */ 112 #define FH_MEM_TFDIB_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x900) 113 #define FH_MEM_TFDIB_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0x958) 114 115 /* 116 * channels 0 - 10 117 */ 118 #define FH_MEM_TFDIB_CHNL(x) (FH_MEM_TFDIB_LOWER_BOUND + (x) * 0x8) 119 120 /* 121 * TFDIB registers used in Service Mode 122 */ 123 #define FH_MEM_TFDIB_CHNL9_REG0 (FH_MEM_TFDIB_CHNL(9)) 124 #define FH_MEM_TFDIB_CHNL9_REG1 (FH_MEM_TFDIB_CHNL(9) + 4) 125 #define FH_MEM_TFDIB_CHNL10_REG0 (FH_MEM_TFDIB_CHNL(10)) 126 #define FH_MEM_TFDIB_CHNL10_REG1 (FH_MEM_TFDIB_CHNL(10) + 4) 127 128 /* 129 * Tx service channels 130 */ 131 #define FH_MEM_TFDIB_DRAM_ADDR_MSB_MASK (0xF00000000) 132 #define FH_MEM_TFDIB_TB_LENGTH_MASK (0x0001FFFF) /* bits 16:0 */ 133 134 #define FH_MEM_TFDIB_DRAM_ADDR_LSB_BITSHIFT (0) 135 #define FH_MEM_TFDIB_DRAM_ADDR_MSB_BITSHIFT (32) 136 #define FH_MEM_TFDIB_TB_LENGTH_BITSHIFT (0) 137 138 #define FH_MEM_TFDIB_REG0_ADDR_MASK (0xFFFFFFFF) 139 #define FH_MEM_TFDIB_REG1_ADDR_MASK (0xF0000000) 140 #define FH_MEM_TFDIB_REG1_LENGTH_MASK (0x0001FFFF) 141 142 #define FH_MEM_TFDIB_REG0_ADDR_BITSHIFT (0) 143 #define FH_MEM_TFDIB_REG1_ADDR_BITSHIFT (28) 144 #define FH_MEM_TFDIB_REG1_LENGTH_BITSHIFT (0) 145 #define FH_MEM_TFDIB_DRAM_ADDR_LSB_MASK (0xFFFFFFFF) 146 147 /* 148 * TRB Area - Transmit Request Buffers 149 */ 150 #define FH_MEM_TRB_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x0958) 151 #define FH_MEM_TRB_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0x0980) 152 153 /* 154 * channels 0 - 8 155 */ 156 #define FH_MEM_TRB_CHNL(x) (FH_MEM_TRB_LOWER_BOUND + (x) * 0x4) 157 158 /* 159 * Keep-Warm (KW) buffer base address. 160 * 161 * Driver must allocate a 4KByte buffer that is used by Shirely Peak(SP) for 162 * keeping the 163 * host DRAM powered on (via dummy accesses to DRAM) to maintain low-latency 164 * DRAM access when SP is Txing or Rxing. The dummy accesses prevent host 165 * from going into a power-savings mode that would cause higher DRAM latency, 166 * and possible data over/under-runs, before all Tx/Rx is complete. 167 * 168 * Driver loads IWH_FH_KW_MEM_ADDR_REG with the physical address (bits 35:4) 169 * of the buffer, which must be 4K aligned. Once this is set up, the SP 170 * automatically invokes keep-warm accesses when normal accesses might not 171 * be sufficient to maintain fast DRAM response. 172 * 173 * Bit fields: 174 * 31-0: Keep-warm buffer physical base address [35:4], must be 4K aligned 175 */ 176 #define IWH_FH_KW_MEM_ADDR_REG (FH_MEM_LOWER_BOUND + 0x97C) 177 178 /* 179 * STAGB Area - Scheduler TAG Buffer 180 */ 181 #define FH_MEM_STAGB_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x980) 182 #define FH_MEM_STAGB_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0x9D0) 183 184 /* 185 * channels 0 - 8 186 */ 187 #define FH_MEM_STAGB_0(x) (FH_MEM_STAGB_LOWER_BOUND + (x) * 0x8) 188 #define FH_MEM_STAGB_1(x) (FH_MEM_STAGB_LOWER_BOUND + 0x4 + (x) * 0x8) 189 190 /* 191 * Tx service channels 192 */ 193 #define FH_MEM_SRAM_ADDR_9 (FH_MEM_STAGB_LOWER_BOUND + 0x048) 194 #define FH_MEM_SRAM_ADDR_10 (FH_MEM_STAGB_LOWER_BOUND + 0x04C) 195 196 #define FH_MEM_STAGB_SRAM_ADDR_MASK (0x00FFFFFF) 197 198 /* 199 * TFD Circular Buffers Base (CBBC) addresses 200 * 201 * SP has 16 base pointer registers, one for each of 16 host-DRAM-resident 202 * circular buffers (CBs/queues) containing Transmit Frame Descriptors (TFDs) 203 * (see struct iwh_tfd_frame). These 16 pointer registers are offset by 0x04 204 * bytes from one another. Each TFD circular buffer in DRAM must be 256-byte 205 * aligned (address bits 0-7 must be 0). 206 * 207 * Bit fields in each pointer register: 208 * 27-0: TFD CB physical base address [35:8], must be 256-byte aligned 209 */ 210 #define FH_MEM_CBBC_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x9D0) 211 #define FH_MEM_CBBC_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xA10) 212 213 /* 214 * queues 0 - 15 215 */ 216 #define FH_MEM_CBBC_QUEUE(x) (FH_MEM_CBBC_LOWER_BOUND + (x) * 0x4) 217 218 /* 219 * TAGR Area - TAG reconstruct table 220 */ 221 #define FH_MEM_TAGR_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xA10) 222 #define FH_MEM_TAGR_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xA70) 223 224 /* 225 * TDBGR Area - Tx Debug Registers 226 */ 227 #define FH_MEM_TDBGR_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x0A70) 228 #define FH_MEM_TDBGR_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0x0B20) 229 230 /* 231 * channels 0 - 10 232 */ 233 #define FH_MEM_TDBGR_CHNL(x) (FH_MEM_TDBGR_LOWER_BOUND + (x) * 0x10) 234 235 #define FH_MEM_TDBGR_CHNL_REG_0(x) (FH_MEM_TDBGR_CHNL(x)) 236 #define FH_MEM_TDBGR_CHNL_REG_1(x) (FH_MEM_TDBGR_CHNL_REG_0(x) + 0x4) 237 238 #define FH_MEM_TDBGR_CHNL_BYTES_TO_FIFO_MASK (0x000FFFFF) 239 #define FH_MEM_TDBGR_CHNL_BYTES_TO_FIFO_BITSHIFT (0) 240 241 /* 242 * RDBUF Area 243 */ 244 #define FH_MEM_RDBUF_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xB80) 245 #define FH_MEM_RDBUF_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xBC0) 246 #define FH_MEM_RDBUF_CHNL0 (FH_MEM_RDBUF_LOWER_BOUND) 247 248 /* 249 * Rx SRAM Control and Status Registers (RSCSR) 250 * 251 * These registers provide handshake between driver and Shirley Peak for 252 * the Rx queue 253 * (this queue handles *all* command responses, notifications, Rx data, etc. 254 * sent from SP uCode to host driver). Unlike Tx, there is only one Rx 255 * queue, and only one Rx DMA/FIFO channel. Also unlike Tx, which can 256 * concatenate up to 20 DRAM buffers to form a Tx frame, each Receive Buffer 257 * Descriptor (RBD) points to only one Rx Buffer (RB); there is a 1:1 258 * mapping between RBDs and RBs. 259 * 260 * Driver must allocate host DRAM memory for the following, and set the 261 * physical address of each into SP registers: 262 * 263 * 1) Receive Buffer Descriptor (RBD) circular buffer (CB), typically with 256 264 * entries (although any power of 2, up to 4096, is selectable by driver). 265 * Each entry (1 dword) points to a receive buffer (RB) of consistent size 266 * (typically 4K, although 8K or 16K are also selectable by driver). 267 * Driver sets up RB size and number of RBDs in the CB via Rx config 268 * register FH_MEM_RCSR_CHNL0_CONFIG_REG. 269 * 270 * Bit fields within one RBD: 271 * 27-0: Receive Buffer physical address bits [35:8], 256-byte aligned. 272 * 273 * Driver sets physical address [35:8] of base of RBD circular buffer 274 * into FH_RSCSR_CHNL0_RBDCB_BASE_REG [27:0]. 275 * 276 * 2) Rx status buffer, 8 bytes, in which SP indicates which Rx Buffers 277 * (RBs) have been filled, via a "write pointer", actually the index of 278 * the RB's corresponding RBD within the circular buffer. Driver sets 279 * physical address [35:4] into FH_RSCSR_CHNL0_STTS_WPTR_REG [31:0]. 280 * 281 * Bit fields in lower dword of Rx status buffer (upper dword not used 282 * by driver; see struct iwh_shared, val0): 283 * 31-12: Not used by driver 284 * 11- 0: Index of last filled Rx buffer descriptor 285 * (SP writes, driver reads this value) 286 * 287 * As the driver prepares Receive Buffers (RBs) for SP to fill, driver must 288 * enter pointers to these RBs into contiguous RBD circular buffer entries, 289 * and update the SP's "write" index register, FH_RSCSR_CHNL0_RBDCB_WPTR_REG. 290 * 291 * This "write" index corresponds to the *next* RBD that the driver will make 292 * available, i.e. one RBD past the the tail of the ready-to-fill RBDs within 293 * the circular buffer. This value should initially be 0 (before preparing any 294 * RBs), should be 8 after preparing the first 8 RBs (for example), and must 295 * wrap back to 0 at the end of the circular buffer (but don't wrap before 296 * "read" index has advanced past 1! See below). 297 * NOTE: SP EXPECTS THE WRITE INDEX TO BE INCREMENTED IN MULTIPLES OF 8. 298 * 299 * As the SP fills RBs (referenced from contiguous RBDs within the circular 300 * buffer), it updates the Rx status buffer in DRAM, 2) described above, 301 * to tell the driver the index of the latest filled RBD. The driver must 302 * read this "read" index from DRAM after receiving an Rx interrupt from SP. 303 * 304 * The driver must also internally keep track of a third index, which is the 305 * next RBD to process. When receiving an Rx interrupt, driver should process 306 * all filled but unprocessed RBs up to, but not including, the RB 307 * corresponding to the "read" index. For example, if "read" index becomes "1", 308 * driver may process the RB pointed to by RBD 0. Depending on volume of 309 * traffic, there may be many RBs to process. 310 * 311 * If read index == write index, SP thinks there is no room to put new data. 312 * Due to this, the maximum number of filled RBs is 255, instead of 256. To 313 * be safe, make sure that there is a gap of at least 2 RBDs between "write" 314 * and "read" indexes; that is, make sure that there are no more than 254 315 * buffers waiting to be filled. 316 */ 317 #define FH_MEM_RSCSR_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xBC0) 318 #define FH_MEM_RSCSR_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xC00) 319 #define FH_MEM_RSCSR_CHNL0 (FH_MEM_RSCSR_LOWER_BOUND) 320 #define FH_MEM_RSCSR_CHNL1 (FH_MEM_RSCSR_LOWER_BOUND + 0x020) 321 322 /* 323 * Physical base address of 8-byte Rx Status buffer. 324 * Bit fields: 325 * 31-0: Rx status buffer physical base address [35:4], must 16-byte aligned. 326 */ 327 328 #define FH_RSCSR_CHNL0_STTS_WPTR_REG (FH_MEM_RSCSR_CHNL0) 329 330 /* 331 * Physical base address of Rx Buffer Descriptor Circular Buffer. 332 * Bit fields: 333 * 27-0: RBD CD physical base address [35:8], must be 256-byte aligned. 334 */ 335 #define FH_RSCSR_CHNL0_RBDCB_BASE_REG (FH_MEM_RSCSR_CHNL0 + 0x004) 336 337 /* 338 * Rx write pointer (index, really!). 339 * Bit fields: 340 * 11-0: Index of driver's most recent prepared-to-be-filled RBD, + 1. 341 * NOTE: For 256-entry circular buffer, use only bits [7:0]. 342 */ 343 #define FH_RSCSR_CHNL0_RBDCB_WPTR_REG (FH_MEM_RSCSR_CHNL0 + 0x008) 344 #define FH_RSCSR_CHNL0_RBDCB_RPTR_REG (FH_MEM_RSCSR_CHNL0 + 0x00c) 345 346 347 /* 348 * RSCSR registers used in Service mode 349 */ 350 #define FH_RSCSR_CHNL1_RB_WPTR_REG (FH_MEM_RSCSR_CHNL1) 351 #define FH_RSCSR_CHNL1_RB_WPTR_OFFSET_REG (FH_MEM_RSCSR_CHNL1 + 0x004) 352 #define FH_RSCSR_CHNL1_RB_CHUNK_NUM_REG (FH_MEM_RSCSR_CHNL1 + 0x008) 353 #define FH_RSCSR_CHNL1_SRAM_ADDR_REG (FH_MEM_RSCSR_CHNL1 + 0x00C) 354 355 /* 356 * Rx Config/Status Registers (RCSR) 357 * Rx Config Reg for channel 0 (only channel used) 358 * 359 * Driver must initialize FH_MEM_RCSR_CHNL0_CONFIG_REG as follows for 360 * normal operation (see bit fields). 361 * 362 * Clearing FH_MEM_RCSR_CHNL0_CONFIG_REG to 0 turns off Rx DMA. 363 * Driver should poll FH_MEM_RSSR_RX_STATUS_REG for 364 * FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE (bit 24) before continuing. 365 * 366 * Bit fields: 367 * 31-30: Rx DMA channel enable: '00' off/pause, '01' pause at end of frame, 368 * '10' operate normally 369 * 29-24: reserved 370 * 23-20: # RBDs in circular buffer = 2^value; use "8" for 256 RBDs (normal), 371 * min "5" for 32 RBDs, max "12" for 4096 RBDs. 372 * 19-18: reserved 373 * 17-16: size of each receive buffer; '00' 4K (normal), '01' 8K, 374 * '10' 12K, '11' 16K. 375 * 15-14: reserved 376 * 13-12: IRQ destination; '00' none, '01' host driver (normal operation) 377 * 11- 4: timeout for closing Rx buffer and interrupting host (units 32 usec) 378 * typical value 0x10 (about 1/2 msec) 379 * 3- 0: reserved 380 */ 381 #define FH_MEM_RCSR_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xC00) 382 #define FH_MEM_RCSR_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xCC0) 383 #define FH_MEM_RCSR_CHNL0 (FH_MEM_RCSR_LOWER_BOUND) 384 #define FH_MEM_RCSR_CHNL1 (FH_MEM_RCSR_LOWER_BOUND + 0x020) 385 386 #define FH_MEM_RCSR_CHNL0_CONFIG_REG (FH_MEM_RCSR_CHNL0) 387 #define FH_MEM_RCSR_CHNL0_CREDIT_REG (FH_MEM_RCSR_CHNL0 + 0x004) 388 #define FH_MEM_RCSR_CHNL0_RBD_STTS_REG (FH_MEM_RCSR_CHNL0 + 0x008) 389 #define FH_MEM_RCSR_CHNL0_RB_STTS_REG (FH_MEM_RCSR_CHNL0 + 0x00C) 390 #define FH_MEM_RCSR_CHNL0_RXPD_STTS_REG (FH_MEM_RCSR_CHNL0 + 0x010) 391 392 #define FH_MEM_RCSR_CHNL0_RBD_STTS_FRAME_RB_CNT_MASK (0x7FFFFFF0) 393 394 /* 395 * RCSR registers used in Service mode 396 */ 397 #define FH_MEM_RCSR_CHNL1_CONFIG_REG (FH_MEM_RCSR_CHNL1) 398 #define FH_MEM_RCSR_CHNL1_RB_STTS_REG (FH_MEM_RCSR_CHNL1 + 0x00C) 399 #define FH_MEM_RCSR_CHNL1_RX_PD_STTS_REG (FH_MEM_RCSR_CHNL1 + 0x010) 400 401 /* 402 * Rx Shared Status Registers (RSSR) 403 * 404 * After stopping Rx DMA channel (writing 0 to FH_MEM_RCSR_CHNL0_CONFIG_REG), 405 * driver must poll FH_MEM_RSSR_RX_STATUS_REG until Rx channel is idle. 406 * 407 * Bit fields: 408 * 24: 1 = Channel 0 is idle 409 * 410 * FH_MEM_RSSR_SHARED_CTRL_REG and FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV contain 411 * default values that should not be altered by the driver. 412 */ 413 #define FH_MEM_RSSR_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xC40) 414 #define FH_MEM_RSSR_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xD00) 415 #define FH_MEM_RSSR_SHARED_CTRL_REG (FH_MEM_RSSR_LOWER_BOUND) 416 #define FH_MEM_RSSR_RX_STATUS_REG (FH_MEM_RSSR_LOWER_BOUND + 0x004) 417 #define FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV (FH_MEM_RSSR_LOWER_BOUND + 0x008) 418 419 /* 420 * Transmit DMA Channel Control/Status Registers (TCSR) 421 * 422 * SP has one configuration register for each of 8 Tx DMA/FIFO channels 423 * supported in hardware; config regs are separated by 0x20 bytes. 424 * 425 * To use a Tx DMA channel, driver must initialize its 426 * 427 * 428 * All other bits should be 0. 429 * 430 * Bit fields: 431 * 31-30: Tx DMA channel enable: '00' off/pause, '01' pause at end of frame, 432 * '10' operate normally 433 * 29- 4: Reserved, set to "0" 434 * 3: Enable internal DMA requests (1, normal operation), disable (0) 435 * 2- 0: Reserved, set to "0" 436 */ 437 #define IWH_FH_TCSR_UPPER_BOUND (IWH_FH_REGS_LOWER_BOUND + 0xE60) 438 439 #define IWH_FH_TCSR_CHNL_NUM (7) 440 441 /* 442 * Tx Shared Status Registers (TSSR) 443 * 444 * After stopping Tx DMA channel (writing 0 to 445 * IWH_FH_TSSR_TX_STATUS_REG until selected Tx channel is idle 446 * (channel's buffers empty | no pending requests). 447 * 448 * Bit fields: 449 * 31-24: 1 = Channel buffers empty (channel 7:0) 450 * 23-16: 1 = No pending requests (channel 7:0) 451 */ 452 #define IWH_FH_TSSR_LOWER_BOUND (IWH_FH_REGS_LOWER_BOUND + 0xEA0) 453 #define IWH_FH_TSSR_UPPER_BOUND (IWH_FH_REGS_LOWER_BOUND + 0xEC0) 454 455 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG (IWH_FH_TSSR_LOWER_BOUND + 0x008) 456 #define IWH_FH_TSSR_TX_STATUS_REG (IWH_FH_TSSR_LOWER_BOUND + 0x010) 457 458 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TXPD_ON (0xFF000000) 459 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_TXPD_ON (0x00FF0000) 460 461 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_MAX_FRAG_SIZE_64B (0x00000000) 462 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_MAX_FRAG_SIZE_128B (0x00000400) 463 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_MAX_FRAG_SIZE_256B (0x00000800) 464 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_MAX_FRAG_SIZE_512B (0x00000C00) 465 466 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TFD_ON (0x00000100) 467 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_CBB_ON (0x00000080) 468 469 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RSP_WAIT_TH (0x00000020) 470 #define IWH_FH_TSSR_TX_MSG_CONFIG_REG_VAL_RSP_WAIT_TH (0x00000005) 471 472 #define IWH_FH_TSSR_TX_STATUS_REG_BIT_BUFS_EMPTY(_chnl) \ 473 ((1 << (_chnl)) << 24) 474 #define IWH_FH_TSSR_TX_STATUS_REG_BIT_NO_PEND_REQ(_chnl) \ 475 ((1 << (_chnl)) << 16) 476 477 #define IWH_FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(_chnl) \ 478 (IWH_FH_TSSR_TX_STATUS_REG_BIT_BUFS_EMPTY(_chnl) | \ 479 IWH_FH_TSSR_TX_STATUS_REG_BIT_NO_PEND_REQ(_chnl)) 480 481 /* 482 * TFDIB 483 */ 484 #define IWH_FH_TFDIB_UPPER_BOUND (IWH_FH_REGS_LOWER_BOUND + 0x958) 485 #define IWH_FH_TFDIB_CTRL1_REG_POS_MSB (28) 486 #define IWH_FH_TFDIB_LOWER_BOUND (IWH_FH_REGS_LOWER_BOUND + 0x900) 487 488 #define IWH_FH_TFDIB_CTRL0_REG(_chnl)\ 489 (IWH_FH_TFDIB_LOWER_BOUND + 0x8 * _chnl) 490 491 #define IWH_FH_TFDIB_CTRL1_REG(_chnl)\ 492 (IWH_FH_TFDIB_LOWER_BOUND + 0x8 * _chnl + 0x4) 493 494 /* 495 * Debug Monitor Area 496 */ 497 #define FH_MEM_DM_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xEE0) 498 #define FH_MEM_DM_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xEF0) 499 #define FH_MEM_DM_CONTROL_MASK_REG (FH_MEM_DM_LOWER_BOUND) 500 #define FH_MEM_DM_CONTROL_START_REG (FH_MEM_DM_LOWER_BOUND + 0x004) 501 #define FH_MEM_DM_CONTROL_STATUS_REG (FH_MEM_DM_LOWER_BOUND + 0x008) 502 #define FH_MEM_DM_MONITOR_REG (FH_MEM_DM_LOWER_BOUND + 0x00C) 503 504 #define FH_TB1_ADDR_LOW_MASK (0xFFFFFFFF) /* bits 31:0 */ 505 #define FH_TB1_ADDR_HIGH_MASK (0xF00000000) /* bits 35:32 */ 506 #define FH_TB2_ADDR_LOW_MASK (0x0000FFFF) /* bits 15:0 */ 507 #define FH_TB2_ADDR_HIGH_MASK (0xFFFFF0000) /* bits 35:16 */ 508 509 #define FH_TB1_ADDR_LOW_BITSHIFT (0) 510 #define FH_TB1_ADDR_HIGH_BITSHIFT (32) 511 #define FH_TB2_ADDR_LOW_BITSHIFT (0) 512 #define FH_TB2_ADDR_HIGH_BITSHIFT (16) 513 514 #define FH_TB1_LENGTH_MASK (0x00000FFF) /* bits 11:0 */ 515 #define FH_TB2_LENGTH_MASK (0x00000FFF) /* bits 11:0 */ 516 517 /* 518 * number of FH channels including 2 service mode 519 */ 520 #define NUM_OF_FH_CHANNELS (10) 521 522 /* 523 * ctrl field bitology 524 */ 525 #define FH_TFD_CTRL_PADDING_MASK (0xC0000000) /* bits 31:30 */ 526 #define FH_TFD_CTRL_NUMTB_MASK (0x1F000000) /* bits 28:24 */ 527 528 #define FH_TFD_CTRL_PADDING_BITSHIFT (30) 529 #define FH_TFD_CTRL_NUMTB_BITSHIFT (24) 530 531 #define FH_TFD_GET_NUM_TBS(ctrl) \ 532 ((ctrl & FH_TFD_CTRL_NUMTB_MASK) >> FH_TFD_CTRL_NUMTB_BITSHIFT) 533 #define FH_TFD_GET_PADDING(ctrl) \ 534 ((ctrl & FH_TFD_CTRL_PADDING_MASK) >> FH_TFD_CTRL_PADDING_BITSHIFT) 535 536 /* 537 * TCSR: tx_config register values 538 */ 539 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_TXF (0x00000000) 540 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_DRIVER (0x00000001) 541 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_ARC (0x00000002) 542 543 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL (0x00000008) 544 545 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_NOINT (0x00000000) 546 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_IFTFD (0x00200000) 547 548 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_NOINT (0x00000000) 549 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_ENDTFD (0x00400000) 550 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_IFTFD (0x00800000) 551 552 553 #define IWH_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_EMPTY (0x00000000) 554 #define IWH_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_WAIT (0x00002000) 555 556 #define IWH_FH_TCSR_CHNL_TX_BUF_STS_REG_BIT_TFDB_WPTR (0x00000001) 557 558 #define IWH_FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM (20) 559 #define IWH_FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX (12) 560 561 #define IWH_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID (0x00000003) 562 563 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE (0x80000000) 564 565 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE_VAL (0x00000000) 566 567 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD (0x00100000) 568 569 #define IWH_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE (0x00000000) 570 571 #define IWH_FH_TCSR_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xD00) 572 573 #define IWH_FH_TCSR_CHNL_TX_CONFIG_REG(_chnl)\ 574 (IWH_FH_TCSR_LOWER_BOUND + 0x20 * _chnl) 575 576 #define IWH_FH_TCSR_CHNL_TX_CREDIT_REG(_chnl)\ 577 (IWH_FH_TCSR_LOWER_BOUND + 0x20 * _chnl + 0x4) 578 579 #define IWH_FH_TCSR_CHNL_TX_BUF_STS_REG(_chnl)\ 580 (IWH_FH_TCSR_LOWER_BOUND + 0x20 * _chnl + 0x8) 581 #define IWH_FH_TCSR_CHNL_NUM (7) 582 583 /* 584 * CBB table 585 */ 586 #define FH_CBB_ADDR_MASK 0x0FFFFFFF /* bits 27:0 */ 587 #define FH_CBB_ADDR_BIT_SHIFT (8) 588 589 /* 590 * RCSR: channel 0 rx_config register defines 591 */ 592 #define FH_RCSR_CHNL0_RX_CONFIG_DMA_CHNL_EN_MASK (0xC0000000) /* bits 30-31 */ 593 #define FH_RCSR_CHNL0_RX_CONFIG_RBDBC_SIZE_MASK (0x00F00000) /* bits 20-23 */ 594 #define FH_RCSR_CHNL0_RX_CONFIG_RB_SIZE_MASK (0x00030000) /* bits 16-17 */ 595 #define FH_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MASK (0x00008000) /* bit 15 */ 596 #define FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_MASK (0x00001000) /* bit 12 */ 597 #define FH_RCSR_CHNL0_RX_CONFIG_RB_TIMEOUT_MASK (0x00000FF0) /* bit 4-11 */ 598 599 #define FH_RCSR_RX_CONFIG_RBDCB_SIZE_BITSHIFT (20) 600 #define FH_RCSR_RX_CONFIG_RB_SIZE_BITSHIFT (16) 601 602 #define FH_RCSR_GET_RDBC_SIZE(reg) \ 603 ((reg & FH_RCSR_RX_CONFIG_RDBC_SIZE_MASK) >> \ 604 FH_RCSR_RX_CONFIG_RDBC_SIZE_BITSHIFT) 605 606 /* 607 * RCSR: channel 1 rx_config register defines 608 */ 609 #define FH_RCSR_CHNL1_RX_CONFIG_DMA_CHNL_EN_MASK (0xC0000000) /* bits 30-31 */ 610 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_MASK (0x00003000) /* bits 12-13 */ 611 612 /* 613 * RCSR: rx_config register values 614 */ 615 #define FH_RCSR_RX_CONFIG_CHNL_EN_PAUSE_VAL (0x00000000) 616 #define FH_RCSR_RX_CONFIG_CHNL_EN_PAUSE_EOF_VAL (0x40000000) 617 #define FH_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL (0x80000000) 618 #define FH_RCSR_RX_CONFIG_SINGLE_FRAME_MODE (0x00008000) 619 620 #define FH_RCSR_RX_CONFIG_RDRBD_DISABLE_VAL (0x00000000) 621 #define FH_RCSR_RX_CONFIG_RDRBD_ENABLE_VAL (0x20000000) 622 623 #define IWH_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K (0x00000000) 624 #define IWH_TX_RTS_RETRY_LIMIT (60) 625 #define IWH_TX_DATA_RETRY_LIMIT (15) 626 627 #define IWH_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K (0x00010000) 628 #define IWH_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_12K (0x00020000) 629 #define IWH_FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_16K (0x00030000) 630 631 /* 632 * RCSR channel 0 config register values 633 */ 634 #define FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_NO_INT_VAL (0x00000000) 635 #define FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL (0x00001000) 636 637 /* 638 * RCSR channel 1 config register values 639 */ 640 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_NO_INT_VAL (0x00000000) 641 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_INT_HOST_VAL (0x00001000) 642 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_INT_RTC_VAL (0x00002000) 643 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_INT_HOST_RTC_VAL (0x00003000) 644 645 /* 646 * RCSR: rb status register defines 647 */ 648 #define FH_RCSR_RB_BYTE_TO_SEND_MASK (0x0001FFFF) /* bits 0-16 */ 649 650 /* 651 * RSCSR: defs used in normal mode 652 */ 653 #define FH_RSCSR_CHNL0_RBDCB_WPTR_MASK (0x00000FFF) /* bits 0-11 */ 654 655 /* 656 * RSCSR: defs used in service mode 657 */ 658 #define FH_RSCSR_CHNL1_SRAM_ADDR_MASK (0x00FFFFFF) /* bits 0-23 */ 659 #define FH_RSCSR_CHNL1_RB_WPTR_MASK (0x0FFFFFFF) /* bits 0-27 */ 660 #define FH_RSCSR_CHNL1_RB_WPTR_OFFSET_MASK (0x000000FF) /* bits 0-7 */ 661 662 /* 663 * RSSR: RX Enable Error IRQ to Driver register defines 664 */ 665 #define FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV_NO_RBD (0x00400000) /* bit 22 */ 666 667 #define FH_DRAM2SRAM_DRAM_ADDR_HIGH_MASK (0xFFFFFFF00) /* bits 8-35 */ 668 #define FH_DRAM2SRAM_DRAM_ADDR_LOW_MASK (0x000000FF) /* bits 0-7 */ 669 670 #define FH_DRAM2SRAM_DRAM_ADDR_HIGH_BITSHIFT (8) /* bits 8-35 */ 671 672 /* 673 * RX DRAM status regs definitions 674 */ 675 #define FH_RX_RB_NUM_MASK (0x00000FFF) /* bits 0-11 */ 676 #define FH_RX_FRAME_NUM_MASK (0x0FFF0000) /* bits 16-27 */ 677 678 #define FH_RX_RB_NUM_BITSHIFT (0) 679 #define FH_RX_FRAME_NUM_BITSHIFT (16) 680 681 /* 682 * Tx Scheduler 683 * 684 * The Tx Scheduler selects the next frame to be transmitted, chosing TFDs 685 * (Transmit Frame Descriptors) from up to 16 circular queues resident in 686 * host DRAM. It steers each frame's Tx command (which contains the frame 687 * data) through one of up to 7 prioritized Tx DMA FIFO channels within the 688 * device. A queue maps to only one (selectable by driver) Tx DMA channel, 689 * but one DMA channel may take input from several queues. 690 * 691 * Tx DMA channels have dedicated purposes. For SP, and are used as follows: 692 * BMC TODO: CONFIRM channel assignments, esp for 0/1 693 * 694 * 0 -- EDCA BK (background) frames, lowest priority 695 * 1 -- EDCA BE (best effort) frames, normal priority 696 * 2 -- EDCA VI (video) frames, higher priority 697 * 3 -- EDCA VO (voice) and management frames, highest priority 698 * 4 -- Commands (e.g. RXON, etc.) 699 * 5 -- HCCA short frames 700 * 6 -- HCCA long frames 701 * 7 -- not used by driver (device-internal only) 702 * 703 * Driver should normally map queues 0-6 to Tx DMA/FIFO channels 0-6. 704 * In addition, driver can map queues 7-15 to Tx DMA/FIFO channels 0-3 to 705 * support 11n aggregation via EDCA DMA channels. BMC confirm. 706 * 707 * The driver sets up each queue to work in one of two modes: 708 * 709 * 1) Scheduler-Ack, in which the scheduler automatically supports a 710 * block-ack (BA) window of up to 64 TFDs. In this mode, each queue 711 * contains TFDs for a unique combination of Recipient Address (RA) 712 * and Traffic Identifier (TID), that is, traffic of a given 713 * Quality-Of-Service (QOS) priority, destined for a single station. 714 * 715 * In scheduler-ack mode, the scheduler keeps track of the Tx status of 716 * each frame within the BA window, including whether it's been transmitted, 717 * and whether it's been acknowledged by the receiving station. The device 718 * automatically processes block-acks received from the receiving STA, 719 * and reschedules un-acked frames to be retransmitted (successful 720 * Tx completion may end up being out-of-order). 721 * 722 * The driver must maintain the queue's Byte Count table in host DRAM 723 * (struct iwh_sched_queue_byte_cnt_tbl) for this mode. 724 * This mode does not support fragmentation. 725 * 726 * 2) FIFO (a.k.a. non-Scheduler-ACK), in which each TFD is processed in order. 727 * The device may automatically retry Tx, but will retry only one frame 728 * at a time, until receiving ACK from receiving station, or reaching 729 * retry limit and giving up. 730 * 731 * The command queue (#4) must use this mode! 732 * This mode does not require use of the Byte Count table in host DRAM. 733 * 734 * Driver controls scheduler operation via 3 means: 735 * 1) Scheduler registers 736 * 2) Shared scheduler data base in internal 4956 SRAM 737 * 3) Shared data in host DRAM 738 * 739 * Initialization: 740 * 741 * When loading, driver should allocate memory for: 742 * 1) 16 TFD circular buffers, each with space for (typically) 256 TFDs. 743 * 2) 16 Byte Count circular buffers in 16 KBytes contiguous memory 744 * (1024 bytes for each queue). 745 * 746 * After receiving "Alive" response from uCode, driver must initialize 747 * the following (especially for queue #4, the command queue, otherwise 748 * the driver can't issue commands!): 749 * 750 * 1) SP's scheduler data base area in SRAM: 751 * a) Read SRAM address of data base area from SCD_SRAM_BASE_ADDR 752 * b) Clear and Init SCD_CONTEXT_DATA_OFFSET area (size 128 bytes) 753 * c) Clear SCD_TX_STTS_BITMAP_OFFSET area (size 256 bytes) 754 * d) Clear (BMC and init?) SCD_TRANSLATE_TBL_OFFSET (size 32 bytes) 755 * 756 * 2) Init SCD_DRAM_BASE_ADDR with physical base of Tx byte count circular 757 * buffer array, allocated by driver in host DRAM. 758 * 759 * 3) 760 */ 761 762 /* 763 * Max Tx window size is the max number of contiguous TFDs that the scheduler 764 * can keep track of at one time when creating block-ack chains of frames. 765 * Note that "64" matches the number of ack bits in a block-ack. 766 * Driver should use SCD_WIN_SIZE and SCD_FRAME_LIMIT values to initialize 767 * SCD_CONTEXT_QUEUE_OFFSET(x) values. 768 */ 769 #define SCD_WIN_SIZE 64 770 #define SCD_FRAME_LIMIT 64 771 772 /* 773 * Driver may need to update queue-empty bits after changing queue's 774 * write and read pointers (indexes) during (re-)initialization (i.e. when 775 * scheduler is not tracking what's happening). 776 * Bit fields: 777 * 31-16: Write mask -- 1: update empty bit, 0: don't change empty bit 778 * 15-00: Empty state, one for each queue -- 1: empty, 0: non-empty 779 * NOTE BMC: THIS REGISTER NOT USED BY LINUX DRIVER. 780 */ 781 #define SCD_EMPTY_BITS (SCD_START_OFFSET + 0x4) 782 783 /* 784 * Physical base address of array of byte count (BC) circular buffers (CBs). 785 * Each Tx queue has a BC CB in host DRAM to support Scheduler-ACK mode. 786 * This register points to BC CB for queue 0, must be on 1024-byte boundary. 787 * Others are spaced by 1024 bytes. 788 * Each BC CB is 2 bytes * (256 + 64) = 740 bytes, followed by 384 bytes pad. 789 * (Index into a queue's BC CB) = (index into queue's TFD CB) = (SSN & 0xff). 790 * Bit fields: 791 * 25-00: Byte Count CB physical address [35:10], must be 1024-byte aligned. 792 */ 793 #define SCD_AIT (SCD_START_OFFSET + 0x18) 794 795 /* 796 * Queue (x) Write Pointers (indexes, really!), one for each Tx queue. 797 * Initialized and updated by driver as new TFDs are added to queue. 798 * NOTE: If using Block Ack, index must correspond to frame's 799 * Start Sequence Number; index = (SSN & 0xff) 800 * NOTE BMC: Alternative to HBUS_TARG_WRPTR, which is what Linux driver uses? 801 */ 802 #define SCD_QUEUE_WRPTR(x) (SCD_START_OFFSET + 0x24 + (x) * 4) 803 804 /* 805 * Queue (x) Read Pointers (indexes, really!), one for each Tx queue. 806 * For FIFO mode, index indicates next frame to transmit. 807 * For Scheduler-ACK mode, index indicates first frame in Tx window. 808 * Initialized by driver, updated by scheduler. 809 */ 810 #define SCD_QUEUE_RDPTR(x) (SCD_START_OFFSET + 0x64 + (x) * 4) 811 #define SCD_SETQUEUENUM (SCD_START_OFFSET + 0xa4) 812 #define SCD_SET_TXSTAT_TXED (SCD_START_OFFSET + 0xa8) 813 #define SCD_SET_TXSTAT_DONE (SCD_START_OFFSET + 0xac) 814 #define SCD_SET_TXSTAT_NOT_SCHD (SCD_START_OFFSET + 0xb0) 815 #define SCD_DECREASE_CREDIT (SCD_START_OFFSET + 0xb4) 816 #define SCD_DECREASE_SCREDIT (SCD_START_OFFSET + 0xb8) 817 #define SCD_LOAD_CREDIT (SCD_START_OFFSET + 0xbc) 818 #define SCD_LOAD_SCREDIT (SCD_START_OFFSET + 0xc0) 819 #define SCD_BAR (SCD_START_OFFSET + 0xc4) 820 #define SCD_BAR_DW0 (SCD_START_OFFSET + 0xc8) 821 #define SCD_BAR_DW1 (SCD_START_OFFSET + 0xcc) 822 823 /* 824 * Select which queues work in chain mode (1) vs. not (0). 825 * Use chain mode to build chains of aggregated frames. 826 * Bit fields: 827 * 31-16: Reserved 828 * 15-00: Mode, one bit for each queue -- 1: Chain mode, 0: one-at-a-time 829 * NOTE: If driver sets up queue for chain mode, it should be also set up 830 * Scheduler-ACK mode as well, via SCD_QUEUE_STATUS_BITS(x). 831 */ 832 #define SCD_QUERY_REQ (SCD_START_OFFSET + 0xd8) 833 #define SCD_QUERY_RES (SCD_START_OFFSET + 0xdc) 834 #define SCD_PENDING_FRAMES (SCD_START_OFFSET + 0xe0) 835 836 /* 837 * Select which queues interrupt driver when read pointer (index) increments. 838 * Bit fields: 839 * 31-16: Reserved 840 * 15-00: Interrupt enable, one bit for each queue -- 1: enabled, 0: disabled 841 * NOTE BMC: THIS FUNCTIONALITY IS APPARENTLY A NO-OP. 842 */ 843 #define SCD_INTERRUPT_THRESHOLD (SCD_START_OFFSET + 0xe8) 844 #define SCD_QUERY_MIN_FRAME_SIZE (SCD_START_OFFSET + 0x100) 845 846 847 /* 848 * SP internal SRAM structures for scheduler, shared with driver ... 849 * Driver should clear and initialize the following areas after receiving 850 * "Alive" response from SP uCode, i.e. after initial 851 * uCode load, or after a uCode load done for error recovery: 852 * 853 * SCD_CONTEXT_DATA_OFFSET (size 128 bytes) 854 * SCD_TX_STTS_BITMAP_OFFSET (size 256 bytes) 855 * SCD_TRANSLATE_TBL_OFFSET (size 32 bytes) 856 * 857 * Driver reads base address of this scheduler area from SCD_SRAM_BASE_ADDR. 858 * All OFFSET values must be added to this base address. 859 * Use HBUS_TARG_MEM_* registers to access SRAM. 860 */ 861 862 /* 863 * Queue context. One 8-byte entry for each of 16 queues. 864 * 865 * Driver should clear this entire area (size 0x80) to 0 after receiving 866 * "Alive" notification from uCode. Additionally, driver should init 867 * each queue's entry as follows: 868 * 869 * LS Dword bit fields: 870 * 0-06: Max Tx window size for Scheduler-ACK. Driver should init to 64. 871 * 872 * MS Dword bit fields: 873 * 16-22: Frame limit. Driver should init to 10 (0xa). 874 * 875 * Driver should init all other bits to 0. 876 * 877 * Init must be done after driver receives "Alive" response from SP uCode, 878 * and when setting up queue for aggregation. 879 */ 880 #define SCD_CONTEXT_DATA_OFFSET 0x380 881 882 /* 883 * Tx Status Bitmap 884 * 885 * Driver should clear this entire area (size 0x100) to 0 after receiving 886 * "Alive" notification from uCode. Area is used only by device itself; 887 * no other support (besides clearing) is required from driver. 888 */ 889 #define SCD_TX_STTS_BITMAP_OFFSET 0x400 890 891 /* 892 * RAxTID to queue translation mapping. 893 * 894 * When queue is in Scheduler-ACK mode, frames placed in a that queue must be 895 * for only one combination of receiver address (RA) and traffic ID (TID), i.e. 896 * one QOS priority level destined for one station (for this link, not final 897 * destination). The SCD_TRANSLATE_TABLE area provides 16 16-bit mappings, 898 * one for each of the 16 queues. If queue is not in Scheduler-ACK mode, the 899 * device ignores the mapping value. 900 * 901 * Bit fields, for each 16-bit map: 902 * 15-9: Reserved, set to 0 903 * 8-4: Index into device's station table for recipient station 904 * 3-0: Traffic ID (tid), range 0-15 905 * 906 * Driver should clear this entire area (size 32 bytes) to 0 after receiving 907 * "Alive" notification from uCode. To update a 16-bit map value, driver 908 * must read a dword-aligned value from device SRAM, replace the 16-bit map 909 * value of interest, and write the dword value back into device SRAM. 910 */ 911 #define SCD_TRANSLATE_TBL_OFFSET 0x500 912 #define SCD_CONTEXT_QUEUE_OFFSET(x) (SCD_CONTEXT_DATA_OFFSET + ((x) * 8)) 913 #define SCD_TRANSLATE_TBL_OFFSET_QUEUE(x) \ 914 ((SCD_TRANSLATE_TBL_OFFSET + ((x) * 2)) & 0xfffffffc) 915 916 /* 917 * Mask to enable contiguous Tx DMA/FIFO channels between "lo" and "hi". 918 */ 919 #define SCD_TXFACT_REG_TXFIFO_MASK(lo, hi) \ 920 ((1<<(hi))|((1<<(hi))-(1<<(lo)))) 921 922 #define SCD_MODE_REG_BIT_SEARCH_MODE (1<<0) 923 #define SCD_MODE_REG_BIT_SBYP_MODE (1<<1) 924 925 #define SCD_TXFIFO_POS_TID (0) 926 #define SCD_TXFIFO_POS_RA (4) 927 #define SCD_QUEUE_STTS_REG_POS_SCD_ACK (8) 928 #define SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN (10) 929 930 #define SCD_QUEUE_RA_TID_MAP_RATID_MSK (0x01FF) 931 932 #define SCD_QUEUE_CTX_REG1_WIN_SIZE_POS (0) 933 #define SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK (0x0000007F) 934 #define SCD_QUEUE_CTX_REG1_CREDIT_POS (8) 935 #define SCD_QUEUE_CTX_REG1_CREDIT_MSK (0x00FFFF00) 936 #define SCD_QUEUE_CTX_REG1_SUPER_CREDIT_POS (24) 937 #define SCD_QUEUE_CTX_REG1_SUPER_CREDIT_MSK (0xFF000000) 938 #define SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS (16) 939 #define SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK (0x007F0000) 940 941 #define CSR_HW_IF_CONFIG_REG_BIT_KEDRON_R (0x00000010) 942 #define CSR_HW_IF_CONFIG_REG_MSK_BOARD_VER (0x00000C00) 943 #define CSR_HW_IF_CONFIG_REG_BIT_MAC_SI (0x00000100) 944 #define CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI (0x00000200) 945 #define CSR_HW_IF_CONFIG_REG_EEP_SEM (0x00200000) 946 #define IWH_CSR_ANA_PLL_CFG (0x00880300) 947 948 /* IWH-END */ 949 950 951 #define STATISTICS_FLG_CLEAR (0x1) 952 #define STATISTICS_FLG_DISABLE_NOTIFICATION (0x2) 953 954 #define STATISTICS_REPLY_FLG_CLEAR (0x1) 955 #define STATISTICS_REPLY_FLG_BAND_24G_MSK (0x2) 956 #define STATISTICS_REPLY_FLG_TGJ_NARROW_BAND_MSK (0x4) 957 #define STATISTICS_REPLY_FLG_FAT_MODE_MSK (0x8) 958 #define RX_PHY_FLAGS_ANTENNAE_OFFSET (4) 959 #define RX_PHY_FLAGS_ANTENNAE_MASK (0x70) 960 961 /* 962 * Register and values 963 */ 964 #define CSR_BASE (0x0) 965 #define HBUS_BASE (0x400) 966 967 #define HBUS_TARG_MBX_C (HBUS_BASE+0x030) 968 969 /* 970 * CSR (control and status registers) 971 */ 972 #define CSR_SW_VER (CSR_BASE+0x000) 973 #define CSR_HW_IF_CONFIG_REG (CSR_BASE+0x000) /* hardware interface config */ 974 #define CSR_INT_COALESCING (CSR_BASE+0x004) /* accum ints, 32-usec units */ 975 #define CSR_INT (CSR_BASE+0x008) /* host interrupt status/ack */ 976 #define CSR_INT_MASK (CSR_BASE+0x00c) /* host interrupt enable */ 977 #define CSR_FH_INT_STATUS (CSR_BASE+0x010) /* busmaster int status/ack */ 978 #define CSR_GPIO_IN (CSR_BASE+0x018) /* read external chip pins */ 979 #define CSR_RESET (CSR_BASE+0x020) /* busmaster enable, NMI, etc */ 980 #define CSR_GP_CNTRL (CSR_BASE+0x024) 981 #define CSR_HW_REV (CSR_BASE+0x028) 982 #define CSR_EEPROM_REG (CSR_BASE+0x02c) 983 #define CSR_EEPROM_GP (CSR_BASE+0x030) 984 #define CSR_UCODE_DRV_GP1 (CSR_BASE+0x054) 985 #define CSR_UCODE_DRV_GP1_SET (CSR_BASE+0x058) 986 #define CSR_UCODE_DRV_GP1_CLR (CSR_BASE+0x05c) 987 #define CSR_UCODE_DRV_GP2 (CSR_BASE+0x060) 988 #define CSR_GIO_CHICKEN_BITS (CSR_BASE+0x100) 989 #define CSR_ANA_PLL_CFG (CSR_BASE+0x20c) 990 #define CSR_HW_REV_WA_REG (CSR_BASE+0x22C) 991 992 /* 993 * BSM (Bootstrap State Machine) 994 */ 995 #define BSM_BASE (CSR_BASE + 0x3400) 996 997 #define BSM_WR_CTRL_REG (BSM_BASE + 0x000) /* ctl and status */ 998 #define BSM_WR_MEM_SRC_REG (BSM_BASE + 0x004) /* source in BSM mem */ 999 #define BSM_WR_MEM_DST_REG (BSM_BASE + 0x008) /* dest in SRAM mem */ 1000 #define BSM_WR_DWCOUNT_REG (BSM_BASE + 0x00C) /* bytes */ 1001 #define BSM_WR_STATUS_REG (BSM_BASE + 0x010) /* bit 0: 1 == done */ 1002 1003 /* 1004 * BSM special memory, stays powered during power-save sleeps 1005 */ 1006 #define BSM_SRAM_LOWER_BOUND (CSR_BASE + 0x3800) 1007 #define BSM_SRAM_SIZE (1024) 1008 1009 1010 /* 1011 * card static random access memory (SRAM) for processor data and instructs 1012 */ 1013 #define RTC_INST_LOWER_BOUND (0x00000) 1014 #define ALM_RTC_INST_UPPER_BOUND (0x14000) 1015 1016 #define RTC_DATA_LOWER_BOUND (0x800000) 1017 #define ALM_RTC_DATA_UPPER_BOUND (0x808000) 1018 1019 /* 1020 * HBUS (Host-side bus) 1021 */ 1022 #define HBUS_TARG_MEM_RADDR (HBUS_BASE+0x00c) 1023 #define HBUS_TARG_MEM_WADDR (HBUS_BASE+0x010) 1024 #define HBUS_TARG_MEM_WDAT (HBUS_BASE+0x018) 1025 #define HBUS_TARG_MEM_RDAT (HBUS_BASE+0x01c) 1026 #define HBUS_TARG_PRPH_WADDR (HBUS_BASE+0x044) 1027 #define HBUS_TARG_PRPH_RADDR (HBUS_BASE+0x048) 1028 #define HBUS_TARG_PRPH_WDAT (HBUS_BASE+0x04c) 1029 #define HBUS_TARG_PRPH_RDAT (HBUS_BASE+0x050) 1030 #define HBUS_TARG_WRPTR (HBUS_BASE+0x060) 1031 1032 /* 1033 * HW I/F configuration 1034 */ 1035 #define CSR_HW_IF_CONFIG_REG_BIT_ALMAGOR_MB (0x00000100) 1036 #define CSR_HW_IF_CONFIG_REG_BIT_ALMAGOR_MM (0x00000200) 1037 #define CSR_HW_IF_CONFIG_REG_BIT_SKU_MRC (0x00000400) 1038 #define CSR_HW_IF_CONFIG_REG_BIT_BOARD_TYPE (0x00000800) 1039 #define CSR_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_A (0x00000000) 1040 #define CSR_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_B (0x00001000) 1041 1042 #define CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP (0x00000001) 1043 #define CSR_UCODE_SW_BIT_RFKILL (0x00000002) 1044 #define CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED (0x00000004) 1045 #define CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT (0x00000008) 1046 1047 #define CSR_GPIO_IN_BIT_AUX_POWER (0x00000200) 1048 #define CSR_GPIO_IN_VAL_VAUX_PWR_SRC (0x00000000) 1049 #define CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX (0x00800000) 1050 #define CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER (0x20000000) 1051 #define CSR_GPIO_IN_VAL_VMAIN_PWR_SRC CSR_GPIO_IN_BIT_AUX_POWER 1052 1053 #define PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT (0x80000000) 1054 1055 /* 1056 * interrupt flags in INTA, set by uCode or hardware (e.g. dma), 1057 * acknowledged (reset) by host writing "1" to flagged bits. 1058 */ 1059 #define BIT_INT_FH_RX \ 1060 (((uint32_t)1) << 31) /* Rx DMA, cmd responses, FH_INT[17:16] */ 1061 #define BIT_INT_ERR (1<<29) /* DMA hardware error FH_INT[31] */ 1062 #define BIT_INT_FH_TX (1<<27) /* Tx DMA FH_INT[1:0] */ 1063 #define BIT_INT_MAC_CLK_ACTV (1<<26) /* NIC controller's clock toggled on/off */ 1064 #define BIT_INT_SWERROR (1<<25) /* uCode error */ 1065 #define BIT_INT_RF_KILL (1<<7) /* HW RFKILL switch GP_CNTRL[27] toggled */ 1066 #define BIT_INT_CT_KILL (1<<6) /* Critical temp (chip too hot) rfkill */ 1067 #define BIT_INT_SW_RX (1<<3) /* Rx, command responses, 3945 */ 1068 #define BIT_INT_WAKEUP (1<<1) /* NIC controller waking up (pwr mgmt) */ 1069 #define BIT_INT_ALIVE (1<<0) /* uCode interrupts once it initializes */ 1070 1071 #define CSR_INI_SET_MASK (BIT_INT_FH_RX | \ 1072 BIT_INT_ERR | \ 1073 BIT_INT_FH_TX | \ 1074 BIT_INT_SWERROR | \ 1075 BIT_INT_RF_KILL | \ 1076 BIT_INT_SW_RX | \ 1077 BIT_INT_WAKEUP | \ 1078 BIT_INT_ALIVE) 1079 1080 /* 1081 * interrupt flags in FH (flow handler) (PCI busmaster DMA) 1082 */ 1083 #define BIT_FH_INT_ERR (((uint32_t)1) << 31) /* Error */ 1084 #define BIT_FH_INT_HI_PRIOR (1<<30) /* High priority Rx,bypass coalescing */ 1085 #define BIT_FH_INT_RX_CHNL2 (1<<18) /* Rx channel 2 (3945 only) */ 1086 #define BIT_FH_INT_RX_CHNL1 (1<<17) /* Rx channel 1 */ 1087 #define BIT_FH_INT_RX_CHNL0 (1<<16) /* Rx channel 0 */ 1088 #define BIT_FH_INT_TX_CHNL6 (1<<6) /* Tx channel 6 (3945 only) */ 1089 #define BIT_FH_INT_TX_CHNL1 (1<<1) /* Tx channel 1 */ 1090 #define BIT_FH_INT_TX_CHNL0 (1<<0) /* Tx channel 0 */ 1091 1092 #define FH_INT_RX_MASK (BIT_FH_INT_HI_PRIOR | \ 1093 BIT_FH_INT_RX_CHNL1 | \ 1094 BIT_FH_INT_RX_CHNL0) 1095 1096 #define FH_INT_TX_MASK (BIT_FH_INT_TX_CHNL6 | \ 1097 BIT_FH_INT_TX_CHNL1 | \ 1098 BIT_FH_INT_TX_CHNL0) 1099 1100 /* 1101 * RESET 1102 */ 1103 #define CSR_RESET_REG_FLAG_NEVO_RESET (0x00000001) 1104 #define CSR_RESET_REG_FLAG_FORCE_NMI (0x00000002) 1105 #define CSR_RESET_REG_FLAG_SW_RESET (0x00000080) 1106 #define CSR_RESET_REG_FLAG_MASTER_DISABLED (0x00000100) 1107 #define CSR_RESET_REG_FLAG_STOP_MASTER (0x00000200) 1108 1109 /* 1110 * GP (general purpose) CONTROL 1111 */ 1112 #define CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY (0x00000001) 1113 #define CSR_GP_CNTRL_REG_FLAG_INIT_DONE (0x00000004) 1114 #define CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ (0x00000008) 1115 #define CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP (0x00000010) 1116 1117 #define CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN (0x00000001) 1118 1119 #define CSR_GP_CNTRL_REG_MSK_POWER_SAVE_TYPE (0x07000000) 1120 #define CSR_GP_CNTRL_REG_FLAG_MAC_POWER_SAVE (0x04000000) 1121 #define CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW (0x08000000) 1122 1123 /* 1124 * APMG (power management) constants 1125 */ 1126 #define APMG_CLK_CTRL_REG (0x003000) 1127 #define ALM_APMG_CLK_EN (0x003004) 1128 #define ALM_APMG_CLK_DIS (0x003008) 1129 #define ALM_APMG_PS_CTL (0x00300c) 1130 #define ALM_APMG_PCIDEV_STT (0x003010) 1131 #define ALM_APMG_RFKILL (0x003014) 1132 #define ALM_APMG_LARC_INT (0x00301c) 1133 #define ALM_APMG_LARC_INT_MSK (0x003020) 1134 1135 #define APMG_CLK_REG_VAL_DMA_CLK_RQT (0x00000200) 1136 #define APMG_CLK_REG_VAL_BSM_CLK_RQT (0x00000800) 1137 1138 #define APMG_PS_CTRL_REG_VAL_ALM_R_RESET_REQ (0x04000000) 1139 1140 #define APMG_DEV_STATE_REG_VAL_L1_ACTIVE_DISABLE (0x00000800) 1141 1142 #define APMG_PS_CTRL_REG_MSK_POWER_SRC (0x03000000) 1143 #define APMG_PS_CTRL_REG_VAL_POWER_SRC_VMAIN (0x00000000) 1144 #define APMG_PS_CTRL_REG_VAL_POWER_SRC_VAUX (0x01000000) 1145 1146 /* 1147 * BSM (bootstrap state machine) 1148 */ 1149 /* 1150 * start boot load now 1151 */ 1152 #define BSM_WR_CTRL_REG_BIT_START (0x80000000) 1153 /* 1154 * enable boot after power up 1155 */ 1156 #define BSM_WR_CTRL_REG_BIT_START_EN (0x40000000) 1157 1158 /* 1159 * DBM 1160 */ 1161 #define ALM_FH_SRVC_CHNL (6) 1162 #define IWH_FH_SRVC_LOWER_BOUND (IWH_FH_REGS_LOWER_BOUND + 0x9C8) 1163 #define IWH_FH_SRVC_CHNL (9) 1164 1165 1166 #define IWH_FH_SRVC_CHNL_SRAM_ADDR_REG(_chnl)\ 1167 (IWH_FH_SRVC_LOWER_BOUND + (_chnl - 9) * 0x4) 1168 1169 #define ALM_FH_RCSR_RX_CONFIG_REG_POS_RBDC_SIZE (20) 1170 #define ALM_FH_RCSR_RX_CONFIG_REG_POS_IRQ_RBTH (4) 1171 1172 #define ALM_FH_RCSR_RX_CONFIG_REG_BIT_WR_STTS_EN (0x08000000) 1173 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_DMA_CHNL_EN_ENABLE (0x80000000) 1174 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_RDRBD_EN_ENABLE (0x20000000) 1175 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_MAX_FRAG_SIZE_128 (0x01000000) 1176 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_IRQ_DEST_INT_HOST (0x00001000) 1177 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_MSG_MODE_FH (0x00000000) 1178 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_TXF (0x00000000) 1179 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_DRIVER (0x00000001) 1180 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE_VAL (0x00000000) 1181 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL (0x00000008) 1182 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_IFTFD (0x00200000) 1183 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_NOINT (0x00000000) 1184 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE (0x00000000) 1185 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE (0x80000000) 1186 #define ALM_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID (0x00004000) 1187 #define ALM_FH_TCSR_CHNL_TX_BUF_STS_REG_BIT_TFDB_WPTR (0x00000001) 1188 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TXPD_ON (0xFF000000) 1189 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_TXPD_ON (0x00FF0000) 1190 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_MAX_FRAG_SIZE_128B (0x00000400) 1191 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TFD_ON (0x00000100) 1192 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_CBB_ON (0x00000080) 1193 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RSP_WAIT_TH (0x00000020) 1194 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_RSP_WAIT_TH (0x00000005) 1195 1196 #define ALM_TB_MAX_BYTES_COUNT (0xFFF0) 1197 1198 #define ALM_FH_TSSR_TX_STATUS_REG_BIT_BUFS_EMPTY(_channel) \ 1199 ((1LU << _channel) << 24) 1200 #define ALM_FH_TSSR_TX_STATUS_REG_BIT_NO_PEND_REQ(_channel) \ 1201 ((1LU << _channel) << 16) 1202 1203 #define ALM_FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(_channel) \ 1204 (ALM_FH_TSSR_TX_STATUS_REG_BIT_BUFS_EMPTY(_channel) | \ 1205 ALM_FH_TSSR_TX_STATUS_REG_BIT_NO_PEND_REQ(_channel)) 1206 #define PCI_CFG_REV_ID_BIT_BASIC_SKU (0x40) /* bit 6 */ 1207 #define PCI_CFG_REV_ID_BIT_RTP (0x80) /* bit 7 */ 1208 1209 #define HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED (0x00000004) 1210 1211 #define TFD_QUEUE_MIN 0 1212 #define TFD_QUEUE_MAX 6 1213 #define TFD_QUEUE_SIZE_MAX (256) 1214 1215 /* 1216 * spectrum and channel data structures 1217 */ 1218 #define IWH_NUM_SCAN_RATES (2) 1219 1220 #define IWH_SCAN_FLAG_24GHZ (1<<0) 1221 #define IWH_SCAN_FLAG_52GHZ (1<<1) 1222 #define IWH_SCAN_FLAG_ACTIVE (1<<2) 1223 #define IWH_SCAN_FLAG_DIRECT (1<<3) 1224 1225 #define IWH_MAX_CMD_SIZE 1024 1226 1227 #define IWH_DEFAULT_TX_RETRY 15 1228 #define IWH_MAX_TX_RETRY 16 1229 1230 #define RFD_SIZE 4 1231 #define NUM_TFD_CHUNKS 4 1232 1233 #define RX_QUEUE_SIZE 256 1234 #define RX_QUEUE_SIZE_LOG 8 1235 1236 /* 1237 * TX Queue Flag Definitions 1238 */ 1239 /* 1240 * use short preamble 1241 */ 1242 #define DCT_FLAG_LONG_PREAMBLE 0x00 1243 #define DCT_FLAG_SHORT_PREAMBLE 0x04 1244 1245 /* 1246 * ACK rx is expected to follow 1247 */ 1248 #define DCT_FLAG_ACK_REQD 0x80 1249 1250 #define IWH_MB_DISASSOCIATE_THRESHOLD_DEFAULT 24 1251 #define IWH_MB_ROAMING_THRESHOLD_DEFAULT 8 1252 #define IWH_REAL_RATE_RX_PACKET_THRESHOLD 300 1253 1254 /* 1255 * QoS definitions 1256 */ 1257 1258 #define AC_NUM (4) /* the number of access category */ 1259 1260 /* 1261 * index of every AC in firmware 1262 */ 1263 #define QOS_AC_BK (0) 1264 #define QOS_AC_BE (1) 1265 #define QOS_AC_VI (2) 1266 #define QOS_AC_VO (3) 1267 #define QOS_AC_INVALID (-1) 1268 1269 #define QOS_CW_RANGE_MIN (0) /* exponential of 2 */ 1270 #define QOS_CW_RANGE_MAX (15) /* exponential of 2 */ 1271 #define QOS_TXOP_MIN (0) /* unit of 32 microsecond */ 1272 #define QOS_TXOP_MAX (255) /* unit of 32 microsecond */ 1273 #define QOS_AIFSN_MIN (2) 1274 #define QOS_AIFSN_MAX (15) /* undefined */ 1275 1276 /* 1277 * masks for flags of QoS parameter command 1278 */ 1279 #define QOS_PARAM_FLG_UPDATE_EDCA (0x01) 1280 #define QOS_PARAM_FLG_TGN (0x02) 1281 1282 /* 1283 * index of TX queue for every AC 1284 */ 1285 #define QOS_AC_BK_TO_TXQ (3) 1286 #define QOS_AC_BE_TO_TXQ (2) 1287 #define QOS_AC_VI_TO_TXQ (1) 1288 #define QOS_AC_VO_TO_TXQ (0) 1289 #define TXQ_FOR_AC_MIN (0) 1290 #define TXQ_FOR_AC_MAX (3) 1291 #define TXQ_FOR_AC_INVALID (-1) 1292 #define NON_QOS_TXQ QOS_AC_BE_TO_TXQ 1293 #define QOS_TXQ_FOR_MGT QOS_AC_VO_TO_TXQ 1294 1295 #define WME_TID_MIN (0) 1296 #define WME_TID_MAX (7) 1297 #define WME_TID_INVALID (-1) 1298 1299 /* 1300 * HT definitions 1301 */ 1302 1303 /* 1304 * HT capabilities masks 1305 */ 1306 #define HT_CAP_SUP_WIDTH (0x0002) 1307 #define HT_CAP_MIMO_PS (0x000c) 1308 #define HT_CAP_GRN_FLD (0x0010) 1309 #define HT_CAP_SGI_20 (0x0020) 1310 #define HT_CAP_SGI_40 (0x0040) 1311 #define HT_CAP_DELAY_BA (0x0400) 1312 #define HT_CAP_MAX_AMSDU (0x0800) 1313 #define HT_CAP_MCS_TX_DEFINED (0x01) 1314 #define HT_CAP_MCS_TX_RX_DIFF (0x02) 1315 #define HT_CAP_MCS_TX_STREAMS (0x0c) 1316 #define HT_CAP_MCS_TX_UEQM (0x10) 1317 1318 #define HT_CAP_MIMO_PS_STATIC (0) 1319 #define HT_CAP_MIMO_PS_DYNAMIC (1) 1320 #define HT_CAP_MIMO_PS_INVALID (2) 1321 #define HT_CAP_MIMO_PS_NONE (3) 1322 1323 #define HT_RX_AMPDU_FACTOR_8K (0x0) 1324 #define HT_RX_AMPDU_FACTOR_16K (0x1) 1325 #define HT_RX_AMPDU_FACTOR_32K (0x2) 1326 #define HT_RX_AMPDU_FACTOR_64K (0x3) 1327 #define HT_RX_AMPDU_FACTOR HT_RX_AMPDU_FACTOR_8K 1328 #define HT_RX_AMPDU_FACTOR_MSK (0x3) 1329 1330 #define HT_MPDU_DENSITY_4USEC (0x5) 1331 #define HT_MPDU_DENSITY_8USEC (0x6) 1332 #define HT_MPDU_DENSITY HT_MPDU_DENSITY_4USEC 1333 #define HT_MPDU_DENSITY_MSK (0x1c) 1334 #define HT_MPDU_DENSITY_POS (2) 1335 1336 #define HT_RATESET_NUM (16) 1337 #define HT_1CHAIN_RATE_MIN_IDX (0x0) 1338 #define HT_1CHAIN_RATE_MAX_IDX (0x7) 1339 #define HT_2CHAIN_RATE_MIN_IDX (0x8) 1340 #define HT_2CHAIN_RATE_MAX_IDX (0xf) 1341 1342 struct iwh_ampdu_param { 1343 uint8_t factor; 1344 uint8_t density; 1345 }; 1346 1347 typedef struct iwh_ht_conf { 1348 uint8_t ht_support; 1349 uint16_t cap; 1350 struct iwh_ampdu_param ampdu_p; 1351 uint8_t tx_support_mcs[HT_RATESET_NUM]; 1352 uint8_t rx_support_mcs[HT_RATESET_NUM]; 1353 uint8_t valid_chains; 1354 uint8_t tx_stream_count; 1355 uint8_t rx_stream_count; 1356 uint8_t ht_protection; 1357 } iwh_ht_conf_t; 1358 1359 #define NO_HT_PROT (0) 1360 #define HT_PROT_CHAN_NON_HT (1) 1361 #define HT_PROT_FAT (2) 1362 #define HT_PROT_ASSOC_NON_HT (3) 1363 1364 /* 1365 * HT flags for RXON command. 1366 */ 1367 #define RXON_FLG_CONTROL_CHANNEL_LOCATION_MSK 0x400000 1368 #define RXON_FLG_CONTROL_CHANNEL_LOC_LOW_MSK 0x000000 1369 #define RXON_FLG_CONTROL_CHANNEL_LOC_HIGH_MSK 0x400000 1370 1371 #define RXON_FLG_HT_OPERATING_MODE_POS (23) 1372 #define RXON_FLG_HT_PROT_MSK 0x800000 1373 #define RXON_FLG_FAT_PROT_MSK 0x1000000 1374 1375 #define RXON_FLG_CHANNEL_MODE_POS (25) 1376 #define RXON_FLG_CHANNEL_MODE_MSK 0x06000000 1377 #define RXON_FLG_CHANNEL_MODE_LEGACY_MSK 0x00000000 1378 #define RXON_FLG_CHANNEL_MODE_PURE_40_MSK 0x02000000 1379 #define RXON_FLG_CHANNEL_MODE_MIXED_MSK 0x04000000 1380 1381 #define RXON_RX_CHAIN_DRIVER_FORCE_MSK (0x1<<0) 1382 #define RXON_RX_CHAIN_VALID_MSK (0x7<<1) 1383 #define RXON_RX_CHAIN_VALID_POS (1) 1384 #define RXON_RX_CHAIN_FORCE_SEL_MSK (0x7<<4) 1385 #define RXON_RX_CHAIN_FORCE_SEL_POS (4) 1386 #define RXON_RX_CHAIN_FORCE_MIMO_SEL_MSK (0x7<<7) 1387 #define RXON_RX_CHAIN_FORCE_MIMO_SEL_POS (7) 1388 #define RXON_RX_CHAIN_CNT_MSK (0x3<<10) 1389 #define RXON_RX_CHAIN_CNT_POS (10) 1390 #define RXON_RX_CHAIN_MIMO_CNT_MSK (0x3<<12) 1391 #define RXON_RX_CHAIN_MIMO_CNT_POS (12) 1392 #define RXON_RX_CHAIN_MIMO_FORCE_MSK (0x1<<14) 1393 #define RXON_RX_CHAIN_MIMO_FORCE_POS (14) 1394 #define RXON_RX_CHAIN_A_MSK (1) 1395 #define RXON_RX_CHAIN_B_MSK (2) 1396 #define RXON_RX_CHAIN_C_MSK (4) 1397 1398 /* 1399 * Generic queue structure 1400 * 1401 * Contains common data for Rx and Tx queues 1402 */ 1403 #define TFD_CTL_COUNT_SET(n) (n<<24) 1404 #define TFD_CTL_COUNT_GET(ctl) ((ctl>>24) & 7) 1405 #define TFD_CTL_PAD_SET(n) (n<<28) 1406 #define TFD_CTL_PAD_GET(ctl) (ctl>>28) 1407 1408 #define TFD_TX_CMD_SLOTS 64 1409 #define TFD_CMD_SLOTS 32 1410 1411 /* 1412 * Tx/Rx Queues 1413 * 1414 * Most communication between driver and SP is via queues of data buffers. 1415 * For example, all commands that the driver issues to device's embedded 1416 * controller (uCode) are via the command queue (one of the Tx queues). All 1417 * uCode command responses/replies/notifications, including Rx frames, are 1418 * conveyed from uCode to driver via the Rx queue. 1419 * 1420 * Most support for these queues, including handshake support, resides in 1421 * structures in host DRAM, shared between the driver and the device. When 1422 * allocating this memory, the driver must make sure that data written by 1423 * the host CPU updates DRAM immediately (and does not get "stuck" in CPU's 1424 * cache memory), so DRAM and cache are consistent, and the device can 1425 * immediately see changes made by the driver. 1426 * 1427 * SP supports up to 16 DRAM-based Tx queues, and services these queues via 1428 * up to 7 DMA channels (FIFOs). Each Tx queue is supported by a circular array 1429 * in DRAM containing 256 Transmit Frame Descriptors (TFDs). 1430 */ 1431 #define IWH_MAX_WIN_SIZE 64 1432 #define IWH_QUEUE_SIZE 256 1433 #define IWH_NUM_FIFOS 7 1434 #define IWH_NUM_QUEUES 20 1435 #define IWH_CMD_QUEUE_NUM 4 1436 #define IWH_KW_SIZE 0x1000 /* 4k */ 1437 #define IWH_CMD_FIFO_NUM 7 1438 1439 struct iwh_rate { 1440 union { 1441 struct { 1442 uint8_t rate; 1443 uint8_t flags; 1444 uint16_t ext_flags; 1445 } s; 1446 uint32_t rate_n_flags; 1447 } r; 1448 }; 1449 1450 struct iwh_dram_scratch { 1451 uint8_t try_cnt; 1452 uint8_t bt_kill_cnt; 1453 uint16_t reserved; 1454 }; 1455 1456 1457 struct iwh_tx_power { 1458 uint8_t tx_gain; /* gain for analog radio */ 1459 uint8_t dsp_atten; /* gain for DSP */ 1460 }; 1461 1462 1463 union iwh_tx_power_triple_stream { 1464 struct { 1465 uint8_t radio_tx_gain[3]; 1466 uint8_t reserved1; 1467 uint8_t dsp_predis_atten[3]; 1468 uint8_t reserved2; 1469 }s; 1470 uint32_t val1; 1471 uint32_t val2; 1472 }; 1473 1474 struct iwh_tx_power_db { 1475 union iwh_tx_power_triple_stream ht_ofdm_power[24]; 1476 union iwh_tx_power_triple_stream cck_power[2]; 1477 }; 1478 1479 typedef struct iwh_tx_power_table_cmd { 1480 uint8_t band; 1481 uint8_t pa_measurements; 1482 uint8_t channel; 1483 uint8_t max_mcs; 1484 struct iwh_tx_power_db db; 1485 } iwh_tx_power_table_cmd_t; 1486 1487 /* 1488 * Hardware rate scaling set by iwh_ap_lq function. 1489 * Given a particular initial rate and mode, the driver uses the 1490 * following formula to fill the rs_table[LINK_QUAL_MAX_RETRY_NUM] 1491 * rate table in the Link Quality command: 1492 * 1493 * 1) If using High-throughput(HT)(SISO or MIMO) initial rate: 1494 * a) Use this same initial rate for first 3 entries. 1495 * b) Find next lower available rate using same mode(SISO or MIMO), 1496 * use for next 3 entries. If no lower rate available, switch to 1497 * legacy mode(no FAT channel, no MIMO, no short guard interval). 1498 * c) If using MIMO, set command's mimo_delimeter to number of 1499 * entries using MIMO(3 or 6). 1500 * d) After trying 2 HT rates, switch to legacy mode(no FAT channel, 1501 * no MIMO, no short qguard interval), at the next lower bit rate 1502 * (e.g. if second HT bit rate was 54, try 48 legacy),and follow 1503 * legacy procedure for remaining table entries. 1504 * 1505 * 2) If using legacy initial rate: 1506 * a) Use the initial rate for only one entry. 1507 * b) For each following entry, reduce the rate to next lower available 1508 * rate, until reaching the lowest available rate. 1509 * c) When reducing rate, also switch antenna selection. 1510 * b) Once lowest available rate is reached, repreat this rate until 1511 * rate table is filled(16 entries),switching antenna each entry. 1512 */ 1513 1514 /* 1515 * OFDM HT rate masks 1516 */ 1517 #define R_MCS_6M_MSK 0x1 1518 #define R_MCS_12M_MSK 0x2 1519 #define R_MCS_18M_MSK 0x4 1520 #define R_MCS_24M_MSK 0x8 1521 #define R_MCS_36M_MSK 0x10 1522 #define R_MCS_48M_MSK 0x20 1523 #define R_MCS_54M_MSK 0x40 1524 #define R_MCS_60M_MSK 0x80 1525 #define R_MCS_12M_DUAL_MSK 0x100 1526 #define R_MCS_24M_DUAL_MSK 0x200 1527 #define R_MCS_36M_DUAL_MSK 0x400 1528 #define R_MCS_48M_DUAL_MSK 0x800 1529 1530 #define RATE_MCS_CODE_MSK 0x7 1531 #define RATE_MCS_MIMO_POS 3 1532 #define RATE_MCS_MIMO_MSK 0x8 1533 #define RATE_MCS_HT_DUP_POS 5 1534 #define RATE_MCS_HT_DUP_MSK 0x20 1535 #define RATE_MCS_FLAGS_POS 8 1536 #define RATE_MCS_HT_POS 8 1537 #define RATE_MCS_HT_MSK 0x100 1538 #define RATE_MCS_CCK_POS 9 1539 #define RATE_MCS_CCK_MSK 0x200 1540 #define RATE_MCS_GF_POS 10 1541 #define RATE_MCS_GF_MSK 0x400 1542 1543 #define RATE_MCS_FAT_POS 11 1544 #define RATE_MCS_FAT_MSK 0x800 1545 #define RATE_MCS_DUP_POS 12 1546 #define RATE_MCS_DUP_MSK 0x1000 1547 #define RATE_MCS_SGI_POS 13 1548 #define RATE_MCS_SGI_MSK 0x2000 1549 1550 #define EEPROM_SEM_TIMEOUT 10 1551 #define EEPROM_SEM_RETRY_LIMIT 1000 1552 1553 /* 1554 * Antenna masks: 1555 * bit14:15 01 B inactive, A active 1556 * 10 B active, A inactive 1557 * 11 Both active 1558 */ 1559 #define RATE_MCS_ANT_A_POS 14 1560 #define RATE_MCS_ANT_B_POS 15 1561 #define RATE_MCS_ANT_A_MSK 0x4000 1562 #define RATE_MCS_ANT_B_MSK 0x8000 1563 #define RATE_MCS_ANT_AB_MSK 0xc000 1564 1565 #define is_legacy(tbl) (((tbl) == LQ_G) || ((tbl) == LQ_A)) 1566 #define is_siso(tbl) (((tbl) == LQ_SISO)) 1567 #define is_mimo(tbl) (((tbl) == LQ_MIMO)) 1568 #define is_Ht(tbl) (is_siso(tbl) || is_mimo(tbl)) 1569 #define is_a_band(tbl) (((tbl) == LQ_A)) 1570 #define is_g_and(tbl) (((tbl) == LQ_G)) 1571 1572 /* 1573 * RS_NEW_API: only TLC_RTS remains and moved to bit 0 1574 */ 1575 #define LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK (1<<0) 1576 1577 #define LINK_QUAL_AC_NUM 4 1578 #define LINK_QUAL_MAX_RETRY_NUM 16 1579 1580 #define LINK_QUAL_ANT_A_MSK (1<<0) 1581 #define LINK_QUAL_ANT_B_MSK (1<<1) 1582 #define LINK_QUAL_ANT_MSK (LINK_QUAL_ANT_A_MSK|LINK_QUAL_ANT_B_MSK) 1583 1584 struct iwh_link_qual_general_params { 1585 uint8_t flags; 1586 uint8_t mimo_delimiter; 1587 uint8_t single_stream_ant_msk; 1588 uint8_t dual_stream_ant_msk; 1589 uint8_t start_rate_index[LINK_QUAL_AC_NUM]; 1590 }; 1591 1592 struct iwh_link_qual_agg_params { 1593 uint16_t agg_time_limit; 1594 uint8_t agg_dis_start_th; 1595 uint8_t agg_frame_cnt_limit; 1596 uint32_t reserved; 1597 }; 1598 1599 typedef struct iwh_link_quality_cmd { 1600 uint8_t sta_id; 1601 uint8_t reserved1; 1602 uint16_t control; 1603 struct iwh_link_qual_general_params general_params; 1604 struct iwh_link_qual_agg_params agg_params; 1605 uint32_t rate_n_flags[LINK_QUAL_MAX_RETRY_NUM]; 1606 uint32_t reserved2; 1607 } iwh_link_quality_cmd_t; 1608 1609 struct iwh_rx_mpdu_body_size { 1610 uint16_t byte_count; 1611 uint16_t reserved; 1612 }; 1613 1614 typedef struct iwh_rx_phy_res { 1615 uint8_t non_cfg_phy_cnt; /* non configurable DSP phy data byte count */ 1616 uint8_t cfg_phy_cnt; /* configurable DSP phy data byte count */ 1617 uint8_t stat_id; /* configurable DSP phy data set ID */ 1618 uint8_t reserved1; 1619 uint32_t timestampl; /* TSF at on air rise */ 1620 uint32_t timestamph; 1621 uint32_t beacon_time_stamp; /* beacon at on-air rise */ 1622 uint16_t phy_flags; /* general phy flags: band, modulation, ... */ 1623 uint16_t channel; /* channel number */ 1624 /* for various implementations of non_cfg_phy */ 1625 uint8_t non_cfg_phy[32]; 1626 struct iwh_rate rate; /* rate in ucode internal format */ 1627 uint16_t byte_count; /* frame's byte-count */ 1628 uint16_t reserved3; 1629 } iwh_rx_phy_res_t; 1630 1631 struct iwh_rx_mpdu_res_start { 1632 uint16_t byte_count; 1633 uint16_t reserved; 1634 }; 1635 1636 #define IWH_AGC_DB_MASK (0x3f80) /* MASK(7,13) */ 1637 #define IWH_AGC_DB_POS (7) 1638 1639 #define IWH_RX_RES_PHY_CNT (8) 1640 #define IWH_RX_RES_AGC_IDX (1) 1641 #define IWH_RX_RES_RSSI_AB_IDX (2) 1642 #define IWH_RX_RES_RSSI_C_IDX (3) 1643 #define IWH_OFDM_AGC_MSK (0xFE00) 1644 #define IWH_OFDM_AGC_BIT_POS (9) 1645 #define IWH_OFDM_RSSI_A_MSK (0x00FF) 1646 #define IWH_OFDM_RSSI_A_BIT_POS (0) 1647 #define IWH_OFDM_RSSI_B_MSK (0xFF0000) 1648 #define IWH_OFDM_RSSI_B_BIT_POS (16) 1649 #define IWH_OFDM_RSSI_C_MSK (0x00FF) 1650 #define IWH_OFDM_RSSI_C_BIT_POS (0) 1651 #define IWH_RSSI_OFFSET (44) 1652 1653 /* 1654 * Fixed (non-configurable) rx data from phy 1655 */ 1656 struct iwh_rx_non_cfg_phy { 1657 uint32_t non_cfg_phy[IWH_RX_RES_PHY_CNT]; /* upto 8 phy entries */ 1658 }; 1659 1660 /* 1661 * Byte Count Table Entry 1662 * 1663 * Bit fields: 1664 * 15-12: reserved 1665 * 11- 0: total to-be-transmitted byte count of frame (does not include command) 1666 */ 1667 struct iwh_queue_byte_cnt_entry { 1668 uint16_t val; 1669 }; 1670 1671 /* 1672 * Byte Count table 1673 * 1674 * Each Tx queue uses a byte-count table containing 320 entries: 1675 * one 16-bit entry for each of 256 TFDs, plus an additional 64 entries that 1676 * duplicate the first 64 entries (to avoid wrap-around within a Tx window; 1677 * max Tx window is 64 TFDs). 1678 * 1679 * When driver sets up a new TFD, it must also enter the total byte count 1680 * of the frame to be transmitted into the corresponding entry in the byte 1681 * count table for the chosen Tx queue. If the TFD index is 0-63, the driver 1682 * must duplicate the byte count entry in corresponding index 256-319. 1683 * 1684 * "dont_care" padding puts each byte count table on a 1024-byte boundary; 1685 * SP assumes tables are separated by 1024 bytes. 1686 */ 1687 struct iwh_sched_queue_byte_cnt_tbl { 1688 struct iwh_queue_byte_cnt_entry tfd_offset[IWH_QUEUE_SIZE + 1689 IWH_MAX_WIN_SIZE]; 1690 }; 1691 1692 /* 1693 * struct iwh_shared, handshake area for Tx and Rx 1694 * 1695 * For convenience in allocating memory, this structure combines 2 areas of 1696 * DRAM which must be shared between driver and SP. These do not need to 1697 * be combined, if better allocation would result from keeping them separate: 1698 * TODO: Split these; carried over from 3945, doesn't work well for SP. 1699 * 1700 * 1) The Tx byte count tables occupy 1024 bytes each (16 KBytes total for 1701 * 16 queues). Driver uses SCD_DRAM_BASE_ADDR to tell SP where to find 1702 * the first of these tables. SP assumes tables are 1024 bytes apart. 1703 * 1704 * 2) The Rx status (val0 and val1) occupies only 8 bytes. Driver uses 1705 * FH_RSCSR_CHNL0_STTS_WPTR_REG to tell SP where to find this area. 1706 * Driver reads val0 to determine the latest Receive Buffer Descriptor (RBD) 1707 * that has been filled by the SP. 1708 * 1709 * Bit fields val0: 1710 * 31-12: Not used 1711 * 11- 0: Index of last filled Rx buffer descriptor (SP writes, driver reads) 1712 * 1713 * Bit fields val1: 1714 * 31- 0: Not used 1715 */ 1716 typedef struct iwh_shared { 1717 struct iwh_sched_queue_byte_cnt_tbl 1718 queues_byte_cnt_tbls[IWH_NUM_QUEUES]; 1719 uint32_t val0; 1720 uint32_t val1; 1721 uint32_t padding1; /* so that allocation will be aligned to 16B */ 1722 uint32_t padding2; 1723 } iwh_shared_t; 1724 1725 1726 /* 1727 * struct iwh_tfd_frame_data 1728 * 1729 * Describes up to 2 buffers containing (contiguous) portions of a Tx frame. 1730 * Each buffer must be on dword boundary. 1731 * Up to 10 iwh_tfd_frame_data structures, describing up to 20 buffers, 1732 * may be filled within a TFD (iwh_tfd_frame). 1733 * 1734 * Bit fields in tb1_addr: 1735 * 31- 0: Tx buffer 1 address bits [31:0] 1736 * 1737 * Bit fields in val1: 1738 * 31-16: Tx buffer 2 address bits [15:0] 1739 * 15- 4: Tx buffer 1 length (bytes) 1740 * 3- 0: Tx buffer 1 address bits [32:32] 1741 * 1742 * Bit fields in val2: 1743 * 31-20: Tx buffer 2 length (bytes) 1744 * 19- 0: Tx buffer 2 address bits [35:16] 1745 */ 1746 struct iwh_tfd_frame_data { 1747 uint32_t tb1_addr; 1748 uint32_t val1; 1749 uint32_t val2; 1750 }; 1751 1752 typedef struct iwh_tx_desc { 1753 uint32_t val0; 1754 struct iwh_tfd_frame_data pa[10]; 1755 uint32_t reserved; 1756 } iwh_tx_desc_t; 1757 1758 struct agg_tx_status { 1759 uint16_t status; 1760 uint16_t sequence; 1761 }; 1762 1763 typedef struct iwh_tx_stat { 1764 uint8_t frame_count; 1765 uint8_t bt_kill_count; 1766 uint8_t nrts; 1767 uint8_t ntries; 1768 struct iwh_rate rate; 1769 uint16_t duration; 1770 uint16_t reserved; 1771 uint32_t pa_power1; 1772 uint32_t pa_power2; 1773 uint32_t tfd_info; 1774 uint16_t seq_ctl; 1775 uint16_t byte_cnt; 1776 uint32_t tlc_info; 1777 struct agg_tx_status status; 1778 } iwh_tx_stat_t; 1779 1780 struct iwh_cmd_header { 1781 uint8_t type; 1782 uint8_t flags; 1783 uint8_t idx; 1784 uint8_t qid; 1785 }; 1786 1787 typedef struct iwh_rx_desc { 1788 uint32_t len; 1789 struct iwh_cmd_header hdr; 1790 } iwh_rx_desc_t; 1791 1792 typedef struct iwh_rx_stat { 1793 uint8_t len; 1794 uint8_t id; 1795 uint8_t rssi; /* received signal strength */ 1796 uint8_t agc; /* access gain control */ 1797 uint16_t signal; 1798 uint16_t noise; 1799 } iwh_rx_stat_t; 1800 1801 typedef struct iwh_rx_head { 1802 uint16_t chan; 1803 uint16_t flags; 1804 uint8_t reserved; 1805 uint8_t rate; 1806 uint16_t len; 1807 } iwh_rx_head_t; 1808 1809 typedef struct iwh_rx_tail { 1810 uint32_t flags; 1811 uint32_t timestampl; 1812 uint32_t timestamph; 1813 uint32_t tbeacon; 1814 } iwh_rx_tail_t; 1815 1816 enum { 1817 IWH_AP_ID = 0, 1818 IWH_MULTICAST_ID, 1819 IWH_STA_ID, 1820 IWH_BROADCAST_ID = 15, 1821 IWH_STATION_COUNT = 16, 1822 IWH_INVALID_STATION 1823 }; 1824 1825 /* 1826 * key flags 1827 */ 1828 enum { 1829 STA_KEY_FLG_ENCRYPT_MSK = 0x7, 1830 STA_KEY_FLG_NO_ENC = 0x0, 1831 STA_KEY_FLG_WEP = 0x1, 1832 STA_KEY_FLG_CCMP = 0x2, 1833 STA_KEY_FLG_TKIP = 0x3, 1834 1835 STA_KEY_FLG_KEYID_POS = 8, 1836 STA_KEY_FLG_INVALID = 0x0800, 1837 }; 1838 1839 /* 1840 * modify flags 1841 */ 1842 enum { 1843 STA_MODIFY_KEY_MASK = 0x01, 1844 STA_MODIFY_TID_DISABLE_TX = 0x02, 1845 STA_MODIFY_TX_RATE_MSK = 0x04 1846 }; 1847 1848 enum { 1849 RX_RES_STATUS_NO_CRC32_ERROR = (1 << 0), 1850 RX_RES_STATUS_NO_RXE_OVERFLOW = (1 << 1), 1851 }; 1852 1853 enum { 1854 RX_RES_PHY_FLAGS_BAND_24_MSK = (1 << 0), 1855 RX_RES_PHY_FLAGS_MOD_CCK_MSK = (1 << 1), 1856 RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK = (1 << 2), 1857 RX_RES_PHY_FLAGS_NARROW_BAND_MSK = (1 << 3), 1858 RX_RES_PHY_FLAGS_ANTENNA_MSK = 0xf0, 1859 1860 RX_RES_STATUS_SEC_TYPE_MSK = (0x7 << 8), 1861 RX_RES_STATUS_SEC_TYPE_NONE = (STA_KEY_FLG_NO_ENC << 8), 1862 RX_RES_STATUS_SEC_TYPE_WEP = (STA_KEY_FLG_WEP << 8), 1863 RX_RES_STATUS_SEC_TYPE_TKIP = (STA_KEY_FLG_TKIP << 8), 1864 RX_RES_STATUS_SEC_TYPE_CCMP = (STA_KEY_FLG_CCMP << 8), 1865 1866 RX_RES_STATUS_DECRYPT_TYPE_MSK = (0x3 << 11), 1867 RX_RES_STATUS_NOT_DECRYPT = (0x0 << 11), 1868 RX_RES_STATUS_DECRYPT_OK = (0x3 << 11), 1869 RX_RES_STATUS_BAD_ICV_MIC = (0x1 << 11), 1870 RX_RES_STATUS_BAD_KEY_TTAK = (0x2 << 11), 1871 }; 1872 1873 enum { 1874 REPLY_ALIVE = 0x1, 1875 REPLY_ERROR = 0x2, 1876 1877 /* RXON state commands */ 1878 REPLY_RXON = 0x10, 1879 REPLY_RXON_ASSOC = 0x11, 1880 REPLY_QOS_PARAM = 0x13, 1881 REPLY_RXON_TIMING = 0x14, 1882 1883 /* Multi-Station support */ 1884 REPLY_ADD_STA = 0x18, 1885 REPLY_REMOVE_STA = 0x19, 1886 REPLY_REMOVE_ALL_STA = 0x1a, 1887 1888 /* RX, TX */ 1889 1890 REPLY_TX = 0x1c, 1891 1892 /* timers commands */ 1893 REPLY_BCON = 0x27, 1894 1895 REPLY_SHUTDOWN = 0x40, 1896 1897 /* MISC commands */ 1898 REPLY_RATE_SCALE = 0x47, 1899 REPLY_LEDS_CMD = 0x48, 1900 REPLY_TX_LINK_QUALITY_CMD = 0x4e, 1901 1902 COEX_PRIORITY_TABLE_CMD = 0x5a, 1903 CALIBRATION_CFG_CMD = 0x65, 1904 CALIBRATION_RES_NOTIFICATION = 0x66, 1905 CALIBRATION_COMPLETE_NOTIFICATION = 0x67, 1906 1907 /* 802.11h related */ 1908 RADAR_NOTIFICATION = 0x70, 1909 REPLY_QUIET_CMD = 0x71, 1910 REPLY_CHANNEL_SWITCH = 0x72, 1911 CHANNEL_SWITCH_NOTIFICATION = 0x73, 1912 REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74, 1913 SPECTRUM_MEASURE_NOTIFICATION = 0x75, 1914 1915 /* Power Management *** */ 1916 POWER_TABLE_CMD = 0x77, 1917 PM_SLEEP_NOTIFICATION = 0x7A, 1918 PM_DEBUG_STATISTIC_NOTIFIC = 0x7B, 1919 1920 /* Scan commands and notifications */ 1921 REPLY_SCAN_CMD = 0x80, 1922 REPLY_SCAN_ABORT_CMD = 0x81, 1923 1924 SCAN_START_NOTIFICATION = 0x82, 1925 SCAN_RESULTS_NOTIFICATION = 0x83, 1926 SCAN_COMPLETE_NOTIFICATION = 0x84, 1927 1928 /* IBSS/AP commands */ 1929 BEACON_NOTIFICATION = 0x90, 1930 REPLY_TX_BEACON = 0x91, 1931 WHO_IS_AWAKE_NOTIFICATION = 0x94, 1932 1933 QUIET_NOTIFICATION = 0x96, 1934 REPLY_TX_PWR_TABLE_CMD = 0x97, 1935 MEASURE_ABORT_NOTIFICATION = 0x99, 1936 1937 REPLY_CALIBRATION_TUNE = 0x9a, 1938 1939 /* BT config command */ 1940 REPLY_BT_CONFIG = 0x9b, 1941 REPLY_STATISTICS_CMD = 0x9c, 1942 STATISTICS_NOTIFICATION = 0x9d, 1943 1944 /* RF-KILL commands and notifications *** */ 1945 REPLY_CARD_STATE_CMD = 0xa0, 1946 CARD_STATE_NOTIFICATION = 0xa1, 1947 1948 /* Missed beacons notification */ 1949 MISSED_BEACONS_NOTIFICATION = 0xa2, 1950 MISSED_BEACONS_NOTIFICATION_TH_CMD = 0xa3, 1951 1952 REPLY_CT_KILL_CONFIG_CMD = 0xa4, 1953 SENSITIVITY_CMD = 0xa8, 1954 REPLY_PHY_CALIBRATION_CMD = 0xb0, 1955 REPLY_RX_PHY_CMD = 0xc0, 1956 REPLY_RX_MPDU_CMD = 0xc1, 1957 REPLY_SP_RX = 0xc3, 1958 REPLY_COMPRESSED_BA = 0xc5, 1959 REPLY_MAX = 0xff 1960 }; 1961 1962 typedef struct iwh_cmd { 1963 struct iwh_cmd_header hdr; 1964 uint8_t data[1024]; 1965 } iwh_cmd_t; 1966 1967 /* 1968 * Alive Command & Response 1969 */ 1970 #define UCODE_VALID_OK (0x1) 1971 #define INITIALIZE_SUBTYPE (9) 1972 1973 struct iwh_alive_resp { 1974 uint8_t ucode_minor; 1975 uint8_t ucode_major; 1976 uint16_t reserved1; 1977 uint8_t sw_rev[8]; 1978 uint8_t ver_type; 1979 uint8_t ver_subtype; 1980 uint16_t reserved2; 1981 uint32_t log_event_table_ptr; 1982 uint32_t error_event_table_ptr; 1983 uint32_t timestamp; 1984 uint32_t is_valid; 1985 }; 1986 1987 struct iwh_init_alive_resp { 1988 struct iwh_alive_resp s; 1989 /* calibration values from "initialize" uCode */ 1990 uint32_t voltage; /* signed */ 1991 uint32_t therm_r1[2]; /* signed 1st for normal, 2nd for FAT channel */ 1992 uint32_t therm_r2[2]; /* signed */ 1993 uint32_t therm_r3[2]; /* signed */ 1994 uint32_t therm_r4[2]; /* signed */ 1995 /* 1996 * signed MIMO gain comp, 5 freq groups, 2 Tx chains 1997 */ 1998 uint32_t tx_atten[5][2]; 1999 }; 2000 2001 /* 2002 * Rx config defines & structure 2003 */ 2004 /* 2005 * rx_config device types 2006 */ 2007 enum { 2008 RXON_DEV_TYPE_AP = 1, 2009 RXON_DEV_TYPE_ESS = 3, 2010 RXON_DEV_TYPE_IBSS = 4, 2011 RXON_DEV_TYPE_SNIFFER = 6, 2012 }; 2013 2014 /* 2015 * rx_config flags 2016 */ 2017 enum { 2018 /* band & modulation selection */ 2019 RXON_FLG_BAND_24G_MSK = (1 << 0), 2020 RXON_FLG_CCK_MSK = (1 << 1), 2021 /* auto detection enable */ 2022 RXON_FLG_AUTO_DETECT_MSK = (1 << 2), 2023 /* TGg protection when tx */ 2024 RXON_FLG_TGG_PROTECT_MSK = (1 << 3), 2025 /* cck short slot & preamble */ 2026 RXON_FLG_SHORT_SLOT_MSK = (1 << 4), 2027 RXON_FLG_SHORT_PREAMBLE_MSK = (1 << 5), 2028 /* antenna selection */ 2029 RXON_FLG_DIS_DIV_MSK = (1 << 7), 2030 RXON_FLG_ANT_SEL_MSK = 0x0f00, 2031 RXON_FLG_ANT_A_MSK = (1 << 8), 2032 RXON_FLG_ANT_B_MSK = (1 << 9), 2033 /* radar detection enable */ 2034 RXON_FLG_RADAR_DETECT_MSK = (1 << 12), 2035 RXON_FLG_TGJ_NARROW_BAND_MSK = (1 << 13), 2036 /* 2037 * rx response to host with 8-byte TSF 2038 * (according to ON_AIR deassertion) 2039 */ 2040 RXON_FLG_TSF2HOST_MSK = (1 << 15), 2041 RXON_FLG_DIS_ACQUISITION = (1 << 27), 2042 RXON_FLG_DIS_RE_ACQUISITION = (1 << 28), 2043 RXON_FLG_DIS_BEAMFORM = (1 << 29) 2044 }; 2045 2046 /* 2047 * rx_config filter flags 2048 */ 2049 enum { 2050 /* accept all data frames */ 2051 RXON_FILTER_PROMISC_MSK = (1 << 0), 2052 /* pass control & management to host */ 2053 RXON_FILTER_CTL2HOST_MSK = (1 << 1), 2054 /* accept multi-cast */ 2055 RXON_FILTER_ACCEPT_GRP_MSK = (1 << 2), 2056 /* don't decrypt uni-cast frames */ 2057 RXON_FILTER_DIS_DECRYPT_MSK = (1 << 3), 2058 /* don't decrypt multi-cast frames */ 2059 RXON_FILTER_DIS_GRP_DECRYPT_MSK = (1 << 4), 2060 /* STA is associated */ 2061 RXON_FILTER_ASSOC_MSK = (1 << 5), 2062 /* transfer to host non bssid beacons in associated state */ 2063 RXON_FILTER_BCON_AWARE_MSK = (1 << 6) 2064 }; 2065 2066 2067 /* 2068 * structure for RXON Command & Response 2069 */ 2070 typedef struct iwh_rxon_cmd { 2071 uint8_t node_addr[IEEE80211_ADDR_LEN]; 2072 uint16_t reserved1; 2073 uint8_t bssid[IEEE80211_ADDR_LEN]; 2074 uint16_t reserved2; 2075 uint8_t wlap_bssid[IEEE80211_ADDR_LEN]; 2076 uint16_t reserved3; 2077 uint8_t dev_type; 2078 uint8_t air_propagation; 2079 uint16_t rx_chain; 2080 uint8_t ofdm_basic_rates; 2081 uint8_t cck_basic_rates; 2082 uint16_t assoc_id; 2083 uint32_t flags; 2084 uint32_t filter_flags; 2085 uint16_t chan; 2086 uint8_t ofdm_ht_single_stream_basic_rates; 2087 uint8_t ofdm_ht_dual_stream_basic_rates; 2088 uint8_t ofdm_ht_triple_stream_basic_rates; 2089 uint8_t reserved4; 2090 uint16_t acquisition_data; 2091 uint16_t reserved5; 2092 } iwh_rxon_cmd_t; 2093 2094 typedef struct iwh_compressed_ba_resp { 2095 uint32_t sta_addr_lo32; 2096 uint16_t sta_addr_hi16; 2097 uint16_t reserved; 2098 uint8_t sta_id; 2099 uint8_t tid; 2100 uint16_t ba_seq_ctl; 2101 uint32_t ba_bitmap0; 2102 uint32_t ba_bitmap1; 2103 uint16_t scd_flow; 2104 uint16_t scd_ssn; 2105 } iwh_compressed_ba_resp_t; 2106 2107 #define PHY_CALIBRATE_DIFF_GAIN_CMD (7) 2108 #define PHY_CALIBRATE_LO_CMD (9) 2109 #define PHY_CALIBRATE_TX_IQ_CMD (11) 2110 #define PHY_CALIBRATE_CRYSTAL_FRQ_CMD (15) 2111 #define PHY_CALIBRATE_TX_IQ_PERD_CMD (17) 2112 #define HD_TABLE_SIZE (11) 2113 2114 /* 2115 * Param table within SENSITIVITY_CMD 2116 */ 2117 #define HD_MIN_ENERGY_CCK_DET_INDEX (0) 2118 #define HD_MIN_ENERGY_OFDM_DET_INDEX (1) 2119 #define HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX (2) 2120 #define HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX (3) 2121 #define HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX (4) 2122 #define HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX (5) 2123 #define HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX (6) 2124 #define HD_BARKER_CORR_TH_ADD_MIN_INDEX (7) 2125 #define HD_BARKER_CORR_TH_ADD_MIN_MRC_INDEX (8) 2126 #define HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX (9) 2127 #define HD_OFDM_ENERGY_TH_IN_INDEX (10) 2128 2129 typedef struct iwh_sensitivity_cmd { 2130 uint16_t control; 2131 uint16_t table[HD_TABLE_SIZE]; 2132 } iwh_sensitivity_cmd_t; 2133 2134 typedef struct iwh_calibration_cmd { 2135 uint8_t opCode; 2136 uint8_t flags; 2137 uint16_t reserved; 2138 char diff_gain_a; 2139 char diff_gain_b; 2140 char diff_gain_c; 2141 uint8_t reserved1; 2142 } iwh_calibation_cmd_t; 2143 2144 2145 struct iwh_calib_hdr { 2146 uint8_t op_code; 2147 uint8_t first_group; 2148 uint8_t groups_num; 2149 uint8_t data_valid; 2150 }; 2151 2152 #define FH_RSCSR_FRAME_SIZE_MASK (0x00003FFF) 2153 2154 struct iwh_calib_results { 2155 void *tx_iq_res; 2156 uint32_t tx_iq_res_len; 2157 void *tx_iq_perd_res; 2158 uint32_t tx_iq_perd_res_len; 2159 void *lo_res; 2160 uint32_t lo_res_len; 2161 }; 2162 2163 #define IWH_CALIB_INIT_CFG_ALL (0xFFFFFFFF) 2164 2165 struct iwh_calib_cfg_elmnt_s { 2166 uint32_t is_enable; 2167 uint32_t start; 2168 uint32_t send_res; 2169 uint32_t apply_res; 2170 uint32_t resered; 2171 }; 2172 2173 struct iwh_calib_cfg_status_s { 2174 struct iwh_calib_cfg_elmnt_s once; 2175 struct iwh_calib_cfg_elmnt_s perd; 2176 uint32_t flags; 2177 }; 2178 2179 struct iwh_calib_cfg_cmd { 2180 struct iwh_calib_cfg_status_s ucd_calib_cfg; 2181 struct iwh_calib_cfg_status_s drv_calib_cfg; 2182 uint32_t reserved1; 2183 }; 2184 2185 struct iwh_cal_crystal_freq { 2186 uint8_t cap_pin1; 2187 uint8_t cap_pin2; 2188 }; 2189 2190 typedef struct iwh_calibration_crystal_cmd { 2191 uint8_t opCode; 2192 uint8_t first_group; 2193 uint8_t num_group; 2194 uint8_t all_data_valid; 2195 struct iwh_cal_crystal_freq data; 2196 } iwh_calibration_crystal_cmd_t; 2197 2198 #define COEX_NUM_OF_EVENTS (16) 2199 2200 struct iwh_wimax_coex_event_entry { 2201 uint8_t request_prio; 2202 uint8_t win_medium_prio; 2203 uint8_t reserved; 2204 uint8_t flags; 2205 }; 2206 2207 typedef struct iwh_wimax_coex_cmd { 2208 uint8_t flags; 2209 uint8_t reserved[3]; 2210 struct iwh_wimax_coex_event_entry sta_prio[COEX_NUM_OF_EVENTS]; 2211 } iwh_wimax_coex_cmd_t; 2212 2213 typedef struct iwh_missed_beacon_notif { 2214 uint32_t consequtive_missed_beacons; 2215 uint32_t total_missed_becons; 2216 uint32_t num_expected_beacons; 2217 uint32_t num_recvd_beacons; 2218 } iwh_missed_beacon_notif_t; 2219 2220 typedef struct iwh_ct_kill_config { 2221 uint32_t reserved; 2222 uint32_t critical_temperature_M; 2223 uint32_t critical_temperature_R; 2224 } iwh_ct_kill_config_t; 2225 2226 /* 2227 * structure for command IWH_CMD_ASSOCIATE 2228 */ 2229 typedef struct iwh_assoc { 2230 uint32_t flags; 2231 uint32_t filter; 2232 uint8_t ofdm_mask; 2233 uint8_t cck_mask; 2234 uint8_t ofdm_ht_single_stream_basic_rates; 2235 uint8_t ofdm_ht_dual_stream_basic_rates; 2236 uint16_t rx_chain_select_flags; 2237 uint16_t reserved; 2238 } iwh_assoc_t; 2239 2240 /* 2241 * structure for command IWH_CMD_TSF 2242 */ 2243 typedef struct iwh_cmd_tsf { 2244 uint32_t timestampl; 2245 uint32_t timestamph; 2246 uint16_t bintval; 2247 uint16_t atim; 2248 uint32_t binitval; 2249 uint16_t lintval; 2250 uint16_t reserved; 2251 } iwh_cmd_tsf_t; 2252 2253 /* 2254 * structure for IWH_CMD_ADD_NODE 2255 */ 2256 #define STA_MODE_ADD_MSK (0) 2257 #define STA_MODE_MODIFY_MSK (1) 2258 2259 #define STA_FLG_RTS_MIMO_PROT (1 << 17) 2260 #define STA_FLG_MAX_AMPDU_POS (19) 2261 #define STA_FLG_AMPDU_DENSITY_POS (23) 2262 #define STA_FLG_FAT_EN (1 << 21) 2263 2264 #define STA_MODIFY_KEY_MASK (0x01) 2265 #define STA_MODIFY_TID_DISABLE_TX (0x02) 2266 #define STA_MODIFY_TX_RATE_MSK (0x04) 2267 #define STA_MODIFY_ADDBA_TID_MSK (0x08) 2268 #define STA_MODIFY_DELBA_TID_MSK (0x10) 2269 2270 struct sta_id_modify { 2271 uint8_t addr[6]; 2272 uint16_t reserved1; 2273 uint8_t sta_id; 2274 uint8_t modify_mask; 2275 uint16_t reserved2; 2276 }; 2277 2278 struct iwh_keyinfo { 2279 uint16_t key_flags; 2280 uint8_t tkip_rx_tsc_byte2; 2281 uint8_t reserved1; 2282 uint16_t tkip_rx_ttak[5]; 2283 uint8_t key_offset; 2284 uint8_t reserved2; 2285 uint8_t key[16]; 2286 uint32_t tx_secur_seq_cnt1; 2287 uint32_t tx_secur_seq_cnt2; 2288 uint32_t hw_tkip_mic_rx_key1; 2289 uint32_t hw_tkip_mic_rx_key2; 2290 uint32_t hw_tkip_mic_tx_key1; 2291 uint32_t hw_tkip_mic_tx_key2; 2292 }; 2293 typedef struct iwh_add_sta { 2294 uint8_t mode; 2295 uint8_t reserved[3]; 2296 struct sta_id_modify sta; 2297 struct iwh_keyinfo key; 2298 uint32_t station_flags; 2299 uint32_t station_flags_msk; 2300 uint16_t disable_tx; 2301 uint16_t reserved1; 2302 uint8_t add_immediate_ba_tid; 2303 uint8_t remove_immediate_ba_tid; 2304 uint16_t add_immediate_ba_ssn; 2305 uint32_t reserved2; 2306 } iwh_add_sta_t; 2307 2308 typedef struct iwh_rem_sta { 2309 uint8_t num_sta; /* number of removed stations */ 2310 uint8_t reserved1[3]; 2311 uint8_t addr[6]; /* MAC address of the first station */ 2312 uint8_t reserved2[2]; 2313 } iwh_rem_sta_t; 2314 2315 /* 2316 * Tx flags 2317 */ 2318 enum { 2319 TX_CMD_FLG_RTS_MSK = (1 << 1), 2320 TX_CMD_FLG_CTS_MSK = (1 << 2), 2321 TX_CMD_FLG_ACK_MSK = (1 << 3), 2322 TX_CMD_FLG_STA_RATE_MSK = (1 << 4), 2323 TX_CMD_FLG_IMM_BA_RSP_MASK = (1 << 6), 2324 TX_CMD_FLG_FULL_TXOP_PROT_MSK = (1 << 7), 2325 TX_CMD_FLG_ANT_SEL_MSK = 0xf00, 2326 TX_CMD_FLG_ANT_A_MSK = (1 << 8), 2327 TX_CMD_FLG_ANT_B_MSK = (1 << 9), 2328 2329 /* ucode ignores BT priority for this frame */ 2330 TX_CMD_FLG_BT_DIS_MSK = (1 << 12), 2331 2332 /* ucode overrides sequence control */ 2333 TX_CMD_FLG_SEQ_CTL_MSK = (1 << 13), 2334 2335 /* signal that this frame is non-last MPDU */ 2336 TX_CMD_FLG_MORE_FRAG_MSK = (1 << 14), 2337 2338 /* calculate TSF in outgoing frame */ 2339 TX_CMD_FLG_TSF_MSK = (1 << 16), 2340 2341 /* activate TX calibration. */ 2342 TX_CMD_FLG_CALIB_MSK = (1 << 17), 2343 2344 /* 2345 * signals that 2 bytes pad was inserted 2346 * after the MAC header 2347 */ 2348 TX_CMD_FLG_MH_PAD_MSK = (1 << 20), 2349 2350 /* HCCA-AP - disable duration overwriting. */ 2351 TX_CMD_FLG_DUR_MSK = (1 << 25), 2352 }; 2353 2354 2355 /* 2356 * structure for command IWH_CMD_TX_DATA 2357 */ 2358 typedef struct iwh_tx_cmd { 2359 uint16_t len; 2360 uint16_t next_frame_len; 2361 uint32_t tx_flags; 2362 struct iwh_dram_scratch scratch; 2363 struct iwh_rate rate; 2364 uint8_t sta_id; 2365 uint8_t sec_ctl; 2366 uint8_t initial_rate_index; 2367 uint8_t reserved; 2368 uint8_t key[16]; 2369 uint16_t next_frame_flags; 2370 uint16_t reserved2; 2371 union { 2372 uint32_t life_time; 2373 uint32_t attempt; 2374 } stop_time; 2375 uint32_t dram_lsb_ptr; 2376 uint8_t dram_msb_ptr; 2377 uint8_t rts_retry_limit; 2378 uint8_t data_retry_limit; 2379 uint8_t tid_tspec; 2380 union { 2381 uint16_t pm_frame_timeout; 2382 uint16_t attempt_duration; 2383 } timeout; 2384 uint16_t driver_txop; 2385 } iwh_tx_cmd_t; 2386 2387 2388 /* 2389 * structure for command "TX beacon" 2390 */ 2391 2392 typedef struct iwh_tx_beacon_cmd { 2393 iwh_tx_cmd_t config; 2394 uint16_t tim_idx; 2395 uint8_t tim_size; 2396 uint8_t reserved; 2397 uint8_t bcon_frame[2342]; 2398 } iwh_tx_beacon_cmd_t; 2399 2400 2401 /* 2402 * LEDs Command & Response 2403 * REPLY_LEDS_CMD = 0x48 (command, has simple generic response) 2404 * 2405 * For each of 3 possible LEDs (Activity/Link/Tech, selected by "id" field), 2406 * this command turns it on or off, or sets up a periodic blinking cycle. 2407 */ 2408 typedef struct iwh_led_cmd { 2409 uint32_t interval; /* "interval" in uSec */ 2410 uint8_t id; /* 1: Activity, 2: Link, 3: Tech */ 2411 /* 2412 * # intervals off while blinking; 2413 * "0", with > 0 "on" value, turns LED on 2414 */ 2415 uint8_t off; 2416 /* 2417 * # intervals on while blinking; 2418 * "0", regardless of "off", turns LED off 2419 */ 2420 uint8_t on; 2421 uint8_t reserved; 2422 } iwh_led_cmd_t; 2423 2424 /* 2425 * structure for IWH_CMD_SET_POWER_MODE 2426 */ 2427 typedef struct iwh_powertable_cmd { 2428 uint16_t flags; 2429 uint8_t keep_alive_seconds; 2430 uint8_t debug_flags; 2431 uint32_t rx_timeout; 2432 uint32_t tx_timeout; 2433 uint32_t sleep[5]; 2434 uint32_t keep_alive_beacons; 2435 } iwh_powertable_cmd_t; 2436 2437 struct iwh_ssid_ie { 2438 uint8_t id; 2439 uint8_t len; 2440 uint8_t ssid[32]; 2441 }; 2442 /* 2443 * structure for command IWH_CMD_SCAN 2444 */ 2445 typedef struct iwh_scan_hdr { 2446 uint16_t len; 2447 uint8_t reserved1; 2448 uint8_t nchan; 2449 /* 2450 * dwell only this long on quiet chnl 2451 * (active scan) 2452 */ 2453 uint16_t quiet_time; 2454 uint16_t quiet_plcp_th; /* quiet chnl is < this # pkts (typ. 1) */ 2455 uint16_t good_crc_th; /* passive -> active promotion threshold */ 2456 uint16_t rx_chain; 2457 /* 2458 * max usec to be out of associated (service) 2459 * chnl 2460 */ 2461 uint32_t max_out_time; 2462 /* 2463 * pause scan this long when returning to svc 2464 * chnl. 2465 * SP -- 31:22 # beacons, 21:0 additional usec. 2466 */ 2467 uint32_t suspend_time; 2468 uint32_t flags; 2469 uint32_t filter_flags; 2470 struct iwh_tx_cmd tx_cmd; 2471 struct iwh_ssid_ie direct_scan[20]; 2472 /* followed by probe request body */ 2473 /* followed by nchan x iwh_scan_chan */ 2474 } iwh_scan_hdr_t; 2475 2476 typedef struct iwh_scan_chan { 2477 uint32_t type; 2478 uint16_t chan; 2479 struct iwh_tx_power tpc; 2480 uint16_t active_dwell; /* dwell time */ 2481 uint16_t passive_dwell; /* dwell time */ 2482 } iwh_scan_chan_t; 2483 2484 /* 2485 * structure for IWH_CMD_BLUETOOTH 2486 */ 2487 typedef struct iwh_bt_cmd { 2488 uint8_t flags; 2489 uint8_t lead_time; 2490 uint8_t max_kill; 2491 uint8_t reserved; 2492 uint32_t kill_ack_mask; 2493 uint32_t kill_cts_mask; 2494 } iwh_bt_cmd_t; 2495 2496 typedef struct iwh_wme_param { 2497 uint8_t aifsn; 2498 uint8_t cwmin_e; 2499 uint8_t cwmax_e; 2500 uint16_t txop; 2501 } iwh_wme_param_t; 2502 /* 2503 * QoS parameter command (REPLY_QOS_PARAM = 0x13) 2504 * FIFO0-background, FIFO1-best effort, FIFO2-video, FIFO3-voice 2505 */ 2506 2507 struct iwh_edca_param { 2508 uint16_t cw_min; 2509 uint16_t cw_max; 2510 uint8_t aifsn; 2511 uint8_t reserved; 2512 uint16_t txop; 2513 }; 2514 2515 typedef struct iwh_qos_param_cmd { 2516 uint32_t flags; 2517 struct iwh_edca_param ac[AC_NUM]; 2518 } iwh_qos_param_cmd_t; 2519 2520 /* 2521 * firmware image header 2522 */ 2523 typedef struct iwh_firmware_hdr { 2524 uint32_t version; 2525 uint32_t textsz; 2526 uint32_t datasz; 2527 uint32_t init_textsz; 2528 uint32_t init_datasz; 2529 uint32_t bootsz; 2530 } iwh_firmware_hdr_t; 2531 2532 /* 2533 * structure for IWH_START_SCAN notification 2534 */ 2535 typedef struct iwh_start_scan { 2536 uint32_t timestampl; 2537 uint32_t timestamph; 2538 uint32_t tbeacon; 2539 uint8_t chan; 2540 uint8_t band; 2541 uint16_t reserved; 2542 uint32_t status; 2543 } iwh_start_scan_t; 2544 2545 /* 2546 * structure for IWK_SCAN_COMPLETE notification 2547 */ 2548 typedef struct iwh_stop_scan { 2549 uint8_t nchan; 2550 uint8_t status; 2551 uint8_t reserved; 2552 uint8_t chan; 2553 uint8_t tsf; 2554 } iwh_stop_scan_t; 2555 2556 2557 #define IWH_READ(sc, reg) \ 2558 ddi_get32((sc)->sc_handle, (uint32_t *)((sc)->sc_base + (reg))) 2559 2560 #define IWH_WRITE(sc, reg, val) \ 2561 ddi_put32((sc)->sc_handle, (uint32_t *)((sc)->sc_base + (reg)), (val)) 2562 2563 /* 2564 * Driver can access peripheral registers 2565 * and ram via HBUS_TARG_PRPH_* registers. 2566 */ 2567 2568 #define PRPH_BASE (0x00000) 2569 #define PRPH_END (0xFFFFF) 2570 2571 #define IWH_SCD_BASE (PRPH_BASE + 0xA02C00) 2572 2573 #define IWH_SCD_SRAM_BASE_ADDR (IWH_SCD_BASE + 0x0) 2574 #define IWH_SCD_DRAM_BASE_ADDR (IWH_SCD_BASE + 0x8) 2575 #define IWH_SCD_QUEUECHAIN_SEL (IWH_SCD_BASE + 0xE8) 2576 #define IWH_SCD_AGGR_SEL (IWH_SCD_BASE + 0x248) 2577 #define IWH_SCD_QUEUE_RDPTR(x) (IWH_SCD_BASE + 0x68 + (x) * 4) 2578 #define IWH_SCD_INTERRUPT_MASK (IWH_SCD_BASE + 0x108) 2579 #define IWH_SCD_TXFACT (IWH_SCD_BASE + 0x1C) 2580 #define IWH_SCD_QUEUE_STATUS_BITS(x) (IWH_SCD_BASE + 0x10C + (x) * 4) 2581 2582 #define IWH_SCD_CONTEXT_DATA_OFFSET (0x600) 2583 #define IWH_SCD_TX_STTS_BITMAP_OFFSET (0x7B1) 2584 #define IWH_SCD_TRANSLATE_TBL_OFFSET (0x7E0) 2585 2586 #define IWH_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS (0) 2587 #define IWH_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK (0x0000007F) 2588 #define IWH_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS (16) 2589 #define IWH_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK (0x007F0000) 2590 2591 #define IWH_SCD_QUEUECHAIN_SEL_ALL(x) (((1 << (x)) - 1) &\ 2592 (~(1 << IWH_CMD_QUEUE_NUM))) 2593 2594 #define IWH_SCD_CONTEXT_QUEUE_OFFSET(x)\ 2595 (IWH_SCD_CONTEXT_DATA_OFFSET + (x) * 8) 2596 2597 #define IWH_SCD_QUEUE_STTS_REG_POS_TXF (0) 2598 #define IWH_SCD_QUEUE_STTS_REG_POS_ACTIVE (3) 2599 #define IWH_SCD_QUEUE_STTS_REG_POS_WSL (4) 2600 #define IWH_SCD_QUEUE_STTS_REG_MSK (0x00FF0000) 2601 2602 /* TX command security control */ 2603 #define TX_CMD_SEC_WEP (0x01) 2604 #define TX_CMD_SEC_CCM (0x02) 2605 #define TX_CMD_SEC_TKIP (0x03) 2606 #define TX_CMD_SEC_MSK (0x03) 2607 #define TX_CMD_SEC_SHIFT (6) 2608 #define TX_CMD_SEC_KEY128 (0x08) 2609 2610 #define WEP_IV_LEN (4) 2611 #define WEP_ICV_LEN (4) 2612 #define CCMP_MIC_LEN (8) 2613 #define TKIP_ICV_LEN (4) 2614 2615 #ifdef __cplusplus 2616 } 2617 #endif 2618 2619 #endif /* _IWH_HW_H_ */ 2620