1 /* 2 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 3 * Use is subject to license terms. 4 */ 5 6 /* 7 * Copyright (c) 2008, 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 - 2008 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 - 2008 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 625 /* 626 * RCSR channel 0 config register values 627 */ 628 #define FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_NO_INT_VAL (0x00000000) 629 #define FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL (0x00001000) 630 631 /* 632 * RCSR channel 1 config register values 633 */ 634 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_NO_INT_VAL (0x00000000) 635 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_INT_HOST_VAL (0x00001000) 636 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_INT_RTC_VAL (0x00002000) 637 #define FH_RCSR_CHNL1_RX_CONFIG_IRQ_DEST_INT_HOST_RTC_VAL (0x00003000) 638 639 /* 640 * RCSR: rb status register defines 641 */ 642 #define FH_RCSR_RB_BYTE_TO_SEND_MASK (0x0001FFFF) /* bits 0-16 */ 643 644 /* 645 * RSCSR: defs used in normal mode 646 */ 647 #define FH_RSCSR_CHNL0_RBDCB_WPTR_MASK (0x00000FFF) /* bits 0-11 */ 648 649 /* 650 * RSCSR: defs used in service mode 651 */ 652 #define FH_RSCSR_CHNL1_SRAM_ADDR_MASK (0x00FFFFFF) /* bits 0-23 */ 653 #define FH_RSCSR_CHNL1_RB_WPTR_MASK (0x0FFFFFFF) /* bits 0-27 */ 654 #define FH_RSCSR_CHNL1_RB_WPTR_OFFSET_MASK (0x000000FF) /* bits 0-7 */ 655 656 /* 657 * RSSR: RX Enable Error IRQ to Driver register defines 658 */ 659 #define FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV_NO_RBD (0x00400000) /* bit 22 */ 660 661 #define FH_DRAM2SRAM_DRAM_ADDR_HIGH_MASK (0xFFFFFFF00) /* bits 8-35 */ 662 #define FH_DRAM2SRAM_DRAM_ADDR_LOW_MASK (0x000000FF) /* bits 0-7 */ 663 664 #define FH_DRAM2SRAM_DRAM_ADDR_HIGH_BITSHIFT (8) /* bits 8-35 */ 665 666 /* 667 * RX DRAM status regs definitions 668 */ 669 #define FH_RX_RB_NUM_MASK (0x00000FFF) /* bits 0-11 */ 670 #define FH_RX_FRAME_NUM_MASK (0x0FFF0000) /* bits 16-27 */ 671 672 #define FH_RX_RB_NUM_BITSHIFT (0) 673 #define FH_RX_FRAME_NUM_BITSHIFT (16) 674 675 /* 676 * Tx Scheduler 677 * 678 * The Tx Scheduler selects the next frame to be transmitted, chosing TFDs 679 * (Transmit Frame Descriptors) from up to 16 circular queues resident in 680 * host DRAM. It steers each frame's Tx command (which contains the frame 681 * data) through one of up to 7 prioritized Tx DMA FIFO channels within the 682 * device. A queue maps to only one (selectable by driver) Tx DMA channel, 683 * but one DMA channel may take input from several queues. 684 * 685 * Tx DMA channels have dedicated purposes. For SP, and are used as follows: 686 * BMC TODO: CONFIRM channel assignments, esp for 0/1 687 * 688 * 0 -- EDCA BK (background) frames, lowest priority 689 * 1 -- EDCA BE (best effort) frames, normal priority 690 * 2 -- EDCA VI (video) frames, higher priority 691 * 3 -- EDCA VO (voice) and management frames, highest priority 692 * 4 -- Commands (e.g. RXON, etc.) 693 * 5 -- HCCA short frames 694 * 6 -- HCCA long frames 695 * 7 -- not used by driver (device-internal only) 696 * 697 * Driver should normally map queues 0-6 to Tx DMA/FIFO channels 0-6. 698 * In addition, driver can map queues 7-15 to Tx DMA/FIFO channels 0-3 to 699 * support 11n aggregation via EDCA DMA channels. BMC confirm. 700 * 701 * The driver sets up each queue to work in one of two modes: 702 * 703 * 1) Scheduler-Ack, in which the scheduler automatically supports a 704 * block-ack (BA) window of up to 64 TFDs. In this mode, each queue 705 * contains TFDs for a unique combination of Recipient Address (RA) 706 * and Traffic Identifier (TID), that is, traffic of a given 707 * Quality-Of-Service (QOS) priority, destined for a single station. 708 * 709 * In scheduler-ack mode, the scheduler keeps track of the Tx status of 710 * each frame within the BA window, including whether it's been transmitted, 711 * and whether it's been acknowledged by the receiving station. The device 712 * automatically processes block-acks received from the receiving STA, 713 * and reschedules un-acked frames to be retransmitted (successful 714 * Tx completion may end up being out-of-order). 715 * 716 * The driver must maintain the queue's Byte Count table in host DRAM 717 * (struct iwh_sched_queue_byte_cnt_tbl) for this mode. 718 * This mode does not support fragmentation. 719 * 720 * 2) FIFO (a.k.a. non-Scheduler-ACK), in which each TFD is processed in order. 721 * The device may automatically retry Tx, but will retry only one frame 722 * at a time, until receiving ACK from receiving station, or reaching 723 * retry limit and giving up. 724 * 725 * The command queue (#4) must use this mode! 726 * This mode does not require use of the Byte Count table in host DRAM. 727 * 728 * Driver controls scheduler operation via 3 means: 729 * 1) Scheduler registers 730 * 2) Shared scheduler data base in internal 4956 SRAM 731 * 3) Shared data in host DRAM 732 * 733 * Initialization: 734 * 735 * When loading, driver should allocate memory for: 736 * 1) 16 TFD circular buffers, each with space for (typically) 256 TFDs. 737 * 2) 16 Byte Count circular buffers in 16 KBytes contiguous memory 738 * (1024 bytes for each queue). 739 * 740 * After receiving "Alive" response from uCode, driver must initialize 741 * the following (especially for queue #4, the command queue, otherwise 742 * the driver can't issue commands!): 743 * 744 * 1) SP's scheduler data base area in SRAM: 745 * a) Read SRAM address of data base area from SCD_SRAM_BASE_ADDR 746 * b) Clear and Init SCD_CONTEXT_DATA_OFFSET area (size 128 bytes) 747 * c) Clear SCD_TX_STTS_BITMAP_OFFSET area (size 256 bytes) 748 * d) Clear (BMC and init?) SCD_TRANSLATE_TBL_OFFSET (size 32 bytes) 749 * 750 * 2) Init SCD_DRAM_BASE_ADDR with physical base of Tx byte count circular 751 * buffer array, allocated by driver in host DRAM. 752 * 753 * 3) 754 */ 755 756 /* 757 * Max Tx window size is the max number of contiguous TFDs that the scheduler 758 * can keep track of at one time when creating block-ack chains of frames. 759 * Note that "64" matches the number of ack bits in a block-ack. 760 * Driver should use SCD_WIN_SIZE and SCD_FRAME_LIMIT values to initialize 761 * SCD_CONTEXT_QUEUE_OFFSET(x) values. 762 */ 763 #define SCD_WIN_SIZE 64 764 #define SCD_FRAME_LIMIT 64 765 766 /* 767 * Driver may need to update queue-empty bits after changing queue's 768 * write and read pointers (indexes) during (re-)initialization (i.e. when 769 * scheduler is not tracking what's happening). 770 * Bit fields: 771 * 31-16: Write mask -- 1: update empty bit, 0: don't change empty bit 772 * 15-00: Empty state, one for each queue -- 1: empty, 0: non-empty 773 * NOTE BMC: THIS REGISTER NOT USED BY LINUX DRIVER. 774 */ 775 #define SCD_EMPTY_BITS (SCD_START_OFFSET + 0x4) 776 777 /* 778 * Physical base address of array of byte count (BC) circular buffers (CBs). 779 * Each Tx queue has a BC CB in host DRAM to support Scheduler-ACK mode. 780 * This register points to BC CB for queue 0, must be on 1024-byte boundary. 781 * Others are spaced by 1024 bytes. 782 * Each BC CB is 2 bytes * (256 + 64) = 740 bytes, followed by 384 bytes pad. 783 * (Index into a queue's BC CB) = (index into queue's TFD CB) = (SSN & 0xff). 784 * Bit fields: 785 * 25-00: Byte Count CB physical address [35:10], must be 1024-byte aligned. 786 */ 787 #define SCD_AIT (SCD_START_OFFSET + 0x18) 788 789 /* 790 * Queue (x) Write Pointers (indexes, really!), one for each Tx queue. 791 * Initialized and updated by driver as new TFDs are added to queue. 792 * NOTE: If using Block Ack, index must correspond to frame's 793 * Start Sequence Number; index = (SSN & 0xff) 794 * NOTE BMC: Alternative to HBUS_TARG_WRPTR, which is what Linux driver uses? 795 */ 796 #define SCD_QUEUE_WRPTR(x) (SCD_START_OFFSET + 0x24 + (x) * 4) 797 798 /* 799 * Queue (x) Read Pointers (indexes, really!), one for each Tx queue. 800 * For FIFO mode, index indicates next frame to transmit. 801 * For Scheduler-ACK mode, index indicates first frame in Tx window. 802 * Initialized by driver, updated by scheduler. 803 */ 804 #define SCD_QUEUE_RDPTR(x) (SCD_START_OFFSET + 0x64 + (x) * 4) 805 #define SCD_SETQUEUENUM (SCD_START_OFFSET + 0xa4) 806 #define SCD_SET_TXSTAT_TXED (SCD_START_OFFSET + 0xa8) 807 #define SCD_SET_TXSTAT_DONE (SCD_START_OFFSET + 0xac) 808 #define SCD_SET_TXSTAT_NOT_SCHD (SCD_START_OFFSET + 0xb0) 809 #define SCD_DECREASE_CREDIT (SCD_START_OFFSET + 0xb4) 810 #define SCD_DECREASE_SCREDIT (SCD_START_OFFSET + 0xb8) 811 #define SCD_LOAD_CREDIT (SCD_START_OFFSET + 0xbc) 812 #define SCD_LOAD_SCREDIT (SCD_START_OFFSET + 0xc0) 813 #define SCD_BAR (SCD_START_OFFSET + 0xc4) 814 #define SCD_BAR_DW0 (SCD_START_OFFSET + 0xc8) 815 #define SCD_BAR_DW1 (SCD_START_OFFSET + 0xcc) 816 817 /* 818 * Select which queues work in chain mode (1) vs. not (0). 819 * Use chain mode to build chains of aggregated frames. 820 * Bit fields: 821 * 31-16: Reserved 822 * 15-00: Mode, one bit for each queue -- 1: Chain mode, 0: one-at-a-time 823 * NOTE: If driver sets up queue for chain mode, it should be also set up 824 * Scheduler-ACK mode as well, via SCD_QUEUE_STATUS_BITS(x). 825 */ 826 #define SCD_QUERY_REQ (SCD_START_OFFSET + 0xd8) 827 #define SCD_QUERY_RES (SCD_START_OFFSET + 0xdc) 828 #define SCD_PENDING_FRAMES (SCD_START_OFFSET + 0xe0) 829 830 /* 831 * Select which queues interrupt driver when read pointer (index) increments. 832 * Bit fields: 833 * 31-16: Reserved 834 * 15-00: Interrupt enable, one bit for each queue -- 1: enabled, 0: disabled 835 * NOTE BMC: THIS FUNCTIONALITY IS APPARENTLY A NO-OP. 836 */ 837 #define SCD_INTERRUPT_THRESHOLD (SCD_START_OFFSET + 0xe8) 838 #define SCD_QUERY_MIN_FRAME_SIZE (SCD_START_OFFSET + 0x100) 839 840 841 /* 842 * SP internal SRAM structures for scheduler, shared with driver ... 843 * Driver should clear and initialize the following areas after receiving 844 * "Alive" response from SP uCode, i.e. after initial 845 * uCode load, or after a uCode load done for error recovery: 846 * 847 * SCD_CONTEXT_DATA_OFFSET (size 128 bytes) 848 * SCD_TX_STTS_BITMAP_OFFSET (size 256 bytes) 849 * SCD_TRANSLATE_TBL_OFFSET (size 32 bytes) 850 * 851 * Driver reads base address of this scheduler area from SCD_SRAM_BASE_ADDR. 852 * All OFFSET values must be added to this base address. 853 * Use HBUS_TARG_MEM_* registers to access SRAM. 854 */ 855 856 /* 857 * Queue context. One 8-byte entry for each of 16 queues. 858 * 859 * Driver should clear this entire area (size 0x80) to 0 after receiving 860 * "Alive" notification from uCode. Additionally, driver should init 861 * each queue's entry as follows: 862 * 863 * LS Dword bit fields: 864 * 0-06: Max Tx window size for Scheduler-ACK. Driver should init to 64. 865 * 866 * MS Dword bit fields: 867 * 16-22: Frame limit. Driver should init to 10 (0xa). 868 * 869 * Driver should init all other bits to 0. 870 * 871 * Init must be done after driver receives "Alive" response from SP uCode, 872 * and when setting up queue for aggregation. 873 */ 874 #define SCD_CONTEXT_DATA_OFFSET 0x380 875 876 /* 877 * Tx Status Bitmap 878 * 879 * Driver should clear this entire area (size 0x100) to 0 after receiving 880 * "Alive" notification from uCode. Area is used only by device itself; 881 * no other support (besides clearing) is required from driver. 882 */ 883 #define SCD_TX_STTS_BITMAP_OFFSET 0x400 884 885 /* 886 * RAxTID to queue translation mapping. 887 * 888 * When queue is in Scheduler-ACK mode, frames placed in a that queue must be 889 * for only one combination of receiver address (RA) and traffic ID (TID), i.e. 890 * one QOS priority level destined for one station (for this link, not final 891 * destination). The SCD_TRANSLATE_TABLE area provides 16 16-bit mappings, 892 * one for each of the 16 queues. If queue is not in Scheduler-ACK mode, the 893 * device ignores the mapping value. 894 * 895 * Bit fields, for each 16-bit map: 896 * 15-9: Reserved, set to 0 897 * 8-4: Index into device's station table for recipient station 898 * 3-0: Traffic ID (tid), range 0-15 899 * 900 * Driver should clear this entire area (size 32 bytes) to 0 after receiving 901 * "Alive" notification from uCode. To update a 16-bit map value, driver 902 * must read a dword-aligned value from device SRAM, replace the 16-bit map 903 * value of interest, and write the dword value back into device SRAM. 904 */ 905 #define SCD_TRANSLATE_TBL_OFFSET 0x500 906 #define SCD_CONTEXT_QUEUE_OFFSET(x) (SCD_CONTEXT_DATA_OFFSET + ((x) * 8)) 907 #define SCD_TRANSLATE_TBL_OFFSET_QUEUE(x) \ 908 ((SCD_TRANSLATE_TBL_OFFSET + ((x) * 2)) & 0xfffffffc) 909 910 /* 911 * Mask to enable contiguous Tx DMA/FIFO channels between "lo" and "hi". 912 */ 913 #define SCD_TXFACT_REG_TXFIFO_MASK(lo, hi) \ 914 ((1<<(hi))|((1<<(hi))-(1<<(lo)))) 915 916 #define SCD_MODE_REG_BIT_SEARCH_MODE (1<<0) 917 #define SCD_MODE_REG_BIT_SBYP_MODE (1<<1) 918 919 #define SCD_TXFIFO_POS_TID (0) 920 #define SCD_TXFIFO_POS_RA (4) 921 #define SCD_QUEUE_STTS_REG_POS_SCD_ACK (8) 922 #define SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN (10) 923 924 #define SCD_QUEUE_RA_TID_MAP_RATID_MSK (0x01FF) 925 926 #define SCD_QUEUE_CTX_REG1_WIN_SIZE_POS (0) 927 #define SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK (0x0000007F) 928 #define SCD_QUEUE_CTX_REG1_CREDIT_POS (8) 929 #define SCD_QUEUE_CTX_REG1_CREDIT_MSK (0x00FFFF00) 930 #define SCD_QUEUE_CTX_REG1_SUPER_CREDIT_POS (24) 931 #define SCD_QUEUE_CTX_REG1_SUPER_CREDIT_MSK (0xFF000000) 932 #define SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS (16) 933 #define SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK (0x007F0000) 934 935 #define CSR_HW_IF_CONFIG_REG_BIT_KEDRON_R (0x00000010) 936 #define CSR_HW_IF_CONFIG_REG_MSK_BOARD_VER (0x00000C00) 937 #define CSR_HW_IF_CONFIG_REG_BIT_MAC_SI (0x00000100) 938 #define CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI (0x00000200) 939 #define CSR_HW_IF_CONFIG_REG_EEP_SEM (0x00200000) 940 #define IWH_CSR_ANA_PLL_CFG (0x00880300) 941 942 /* IWH-END */ 943 944 945 #define STATISTICS_FLG_CLEAR (0x1) 946 #define STATISTICS_FLG_DISABLE_NOTIFICATION (0x2) 947 948 #define STATISTICS_REPLY_FLG_CLEAR (0x1) 949 #define STATISTICS_REPLY_FLG_BAND_24G_MSK (0x2) 950 #define STATISTICS_REPLY_FLG_TGJ_NARROW_BAND_MSK (0x4) 951 #define STATISTICS_REPLY_FLG_FAT_MODE_MSK (0x8) 952 #define RX_PHY_FLAGS_ANTENNAE_OFFSET (4) 953 #define RX_PHY_FLAGS_ANTENNAE_MASK (0x70) 954 955 /* 956 * Register and values 957 */ 958 #define CSR_BASE (0x0) 959 #define HBUS_BASE (0x400) 960 961 #define HBUS_TARG_MBX_C (HBUS_BASE+0x030) 962 963 /* 964 * CSR (control and status registers) 965 */ 966 #define CSR_SW_VER (CSR_BASE+0x000) 967 #define CSR_HW_IF_CONFIG_REG (CSR_BASE+0x000) /* hardware interface config */ 968 #define CSR_INT_COALESCING (CSR_BASE+0x004) /* accum ints, 32-usec units */ 969 #define CSR_INT (CSR_BASE+0x008) /* host interrupt status/ack */ 970 #define CSR_INT_MASK (CSR_BASE+0x00c) /* host interrupt enable */ 971 #define CSR_FH_INT_STATUS (CSR_BASE+0x010) /* busmaster int status/ack */ 972 #define CSR_GPIO_IN (CSR_BASE+0x018) /* read external chip pins */ 973 #define CSR_RESET (CSR_BASE+0x020) /* busmaster enable, NMI, etc */ 974 #define CSR_GP_CNTRL (CSR_BASE+0x024) 975 #define CSR_HW_REV (CSR_BASE+0x028) 976 #define CSR_EEPROM_REG (CSR_BASE+0x02c) 977 #define CSR_EEPROM_GP (CSR_BASE+0x030) 978 #define CSR_UCODE_DRV_GP1 (CSR_BASE+0x054) 979 #define CSR_UCODE_DRV_GP1_SET (CSR_BASE+0x058) 980 #define CSR_UCODE_DRV_GP1_CLR (CSR_BASE+0x05c) 981 #define CSR_UCODE_DRV_GP2 (CSR_BASE+0x060) 982 #define CSR_GIO_CHICKEN_BITS (CSR_BASE+0x100) 983 #define CSR_ANA_PLL_CFG (CSR_BASE+0x20c) 984 #define CSR_HW_REV_WA_REG (CSR_BASE+0x22C) 985 986 /* 987 * BSM (Bootstrap State Machine) 988 */ 989 #define BSM_BASE (CSR_BASE + 0x3400) 990 991 #define BSM_WR_CTRL_REG (BSM_BASE + 0x000) /* ctl and status */ 992 #define BSM_WR_MEM_SRC_REG (BSM_BASE + 0x004) /* source in BSM mem */ 993 #define BSM_WR_MEM_DST_REG (BSM_BASE + 0x008) /* dest in SRAM mem */ 994 #define BSM_WR_DWCOUNT_REG (BSM_BASE + 0x00C) /* bytes */ 995 #define BSM_WR_STATUS_REG (BSM_BASE + 0x010) /* bit 0: 1 == done */ 996 997 /* 998 * BSM special memory, stays powered during power-save sleeps 999 */ 1000 #define BSM_SRAM_LOWER_BOUND (CSR_BASE + 0x3800) 1001 #define BSM_SRAM_SIZE (1024) 1002 1003 1004 /* 1005 * card static random access memory (SRAM) for processor data and instructs 1006 */ 1007 #define RTC_INST_LOWER_BOUND (0x00000) 1008 #define ALM_RTC_INST_UPPER_BOUND (0x14000) 1009 1010 #define RTC_DATA_LOWER_BOUND (0x800000) 1011 #define ALM_RTC_DATA_UPPER_BOUND (0x808000) 1012 1013 /* 1014 * HBUS (Host-side bus) 1015 */ 1016 #define HBUS_TARG_MEM_RADDR (HBUS_BASE+0x00c) 1017 #define HBUS_TARG_MEM_WADDR (HBUS_BASE+0x010) 1018 #define HBUS_TARG_MEM_WDAT (HBUS_BASE+0x018) 1019 #define HBUS_TARG_MEM_RDAT (HBUS_BASE+0x01c) 1020 #define HBUS_TARG_PRPH_WADDR (HBUS_BASE+0x044) 1021 #define HBUS_TARG_PRPH_RADDR (HBUS_BASE+0x048) 1022 #define HBUS_TARG_PRPH_WDAT (HBUS_BASE+0x04c) 1023 #define HBUS_TARG_PRPH_RDAT (HBUS_BASE+0x050) 1024 #define HBUS_TARG_WRPTR (HBUS_BASE+0x060) 1025 1026 /* 1027 * HW I/F configuration 1028 */ 1029 #define CSR_HW_IF_CONFIG_REG_BIT_ALMAGOR_MB (0x00000100) 1030 #define CSR_HW_IF_CONFIG_REG_BIT_ALMAGOR_MM (0x00000200) 1031 #define CSR_HW_IF_CONFIG_REG_BIT_SKU_MRC (0x00000400) 1032 #define CSR_HW_IF_CONFIG_REG_BIT_BOARD_TYPE (0x00000800) 1033 #define CSR_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_A (0x00000000) 1034 #define CSR_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_B (0x00001000) 1035 1036 #define CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP (0x00000001) 1037 #define CSR_UCODE_SW_BIT_RFKILL (0x00000002) 1038 #define CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED (0x00000004) 1039 #define CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT (0x00000008) 1040 1041 #define CSR_GPIO_IN_BIT_AUX_POWER (0x00000200) 1042 #define CSR_GPIO_IN_VAL_VAUX_PWR_SRC (0x00000000) 1043 #define CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX (0x00800000) 1044 #define CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER (0x20000000) 1045 #define CSR_GPIO_IN_VAL_VMAIN_PWR_SRC CSR_GPIO_IN_BIT_AUX_POWER 1046 1047 #define PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT (0x80000000) 1048 1049 /* 1050 * interrupt flags in INTA, set by uCode or hardware (e.g. dma), 1051 * acknowledged (reset) by host writing "1" to flagged bits. 1052 */ 1053 #define BIT_INT_FH_RX \ 1054 (((uint32_t)1) << 31) /* Rx DMA, cmd responses, FH_INT[17:16] */ 1055 #define BIT_INT_ERR (1<<29) /* DMA hardware error FH_INT[31] */ 1056 #define BIT_INT_FH_TX (1<<27) /* Tx DMA FH_INT[1:0] */ 1057 #define BIT_INT_MAC_CLK_ACTV (1<<26) /* NIC controller's clock toggled on/off */ 1058 #define BIT_INT_SWERROR (1<<25) /* uCode error */ 1059 #define BIT_INT_RF_KILL (1<<7) /* HW RFKILL switch GP_CNTRL[27] toggled */ 1060 #define BIT_INT_CT_KILL (1<<6) /* Critical temp (chip too hot) rfkill */ 1061 #define BIT_INT_SW_RX (1<<3) /* Rx, command responses, 3945 */ 1062 #define BIT_INT_WAKEUP (1<<1) /* NIC controller waking up (pwr mgmt) */ 1063 #define BIT_INT_ALIVE (1<<0) /* uCode interrupts once it initializes */ 1064 1065 #define CSR_INI_SET_MASK (BIT_INT_FH_RX | \ 1066 BIT_INT_ERR | \ 1067 BIT_INT_FH_TX | \ 1068 BIT_INT_SWERROR | \ 1069 BIT_INT_RF_KILL | \ 1070 BIT_INT_SW_RX | \ 1071 BIT_INT_WAKEUP | \ 1072 BIT_INT_ALIVE) 1073 1074 /* 1075 * interrupt flags in FH (flow handler) (PCI busmaster DMA) 1076 */ 1077 #define BIT_FH_INT_ERR (((uint32_t)1) << 31) /* Error */ 1078 #define BIT_FH_INT_HI_PRIOR (1<<30) /* High priority Rx,bypass coalescing */ 1079 #define BIT_FH_INT_RX_CHNL2 (1<<18) /* Rx channel 2 (3945 only) */ 1080 #define BIT_FH_INT_RX_CHNL1 (1<<17) /* Rx channel 1 */ 1081 #define BIT_FH_INT_RX_CHNL0 (1<<16) /* Rx channel 0 */ 1082 #define BIT_FH_INT_TX_CHNL6 (1<<6) /* Tx channel 6 (3945 only) */ 1083 #define BIT_FH_INT_TX_CHNL1 (1<<1) /* Tx channel 1 */ 1084 #define BIT_FH_INT_TX_CHNL0 (1<<0) /* Tx channel 0 */ 1085 1086 #define FH_INT_RX_MASK (BIT_FH_INT_HI_PRIOR | \ 1087 BIT_FH_INT_RX_CHNL1 | \ 1088 BIT_FH_INT_RX_CHNL0) 1089 1090 #define FH_INT_TX_MASK (BIT_FH_INT_TX_CHNL6 | \ 1091 BIT_FH_INT_TX_CHNL1 | \ 1092 BIT_FH_INT_TX_CHNL0) 1093 1094 /* 1095 * RESET 1096 */ 1097 #define CSR_RESET_REG_FLAG_NEVO_RESET (0x00000001) 1098 #define CSR_RESET_REG_FLAG_FORCE_NMI (0x00000002) 1099 #define CSR_RESET_REG_FLAG_SW_RESET (0x00000080) 1100 #define CSR_RESET_REG_FLAG_MASTER_DISABLED (0x00000100) 1101 #define CSR_RESET_REG_FLAG_STOP_MASTER (0x00000200) 1102 1103 /* 1104 * GP (general purpose) CONTROL 1105 */ 1106 #define CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY (0x00000001) 1107 #define CSR_GP_CNTRL_REG_FLAG_INIT_DONE (0x00000004) 1108 #define CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ (0x00000008) 1109 #define CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP (0x00000010) 1110 1111 #define CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN (0x00000001) 1112 1113 #define CSR_GP_CNTRL_REG_MSK_POWER_SAVE_TYPE (0x07000000) 1114 #define CSR_GP_CNTRL_REG_FLAG_MAC_POWER_SAVE (0x04000000) 1115 #define CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW (0x08000000) 1116 1117 /* 1118 * APMG (power management) constants 1119 */ 1120 #define APMG_CLK_CTRL_REG (0x003000) 1121 #define ALM_APMG_CLK_EN (0x003004) 1122 #define ALM_APMG_CLK_DIS (0x003008) 1123 #define ALM_APMG_PS_CTL (0x00300c) 1124 #define ALM_APMG_PCIDEV_STT (0x003010) 1125 #define ALM_APMG_RFKILL (0x003014) 1126 #define ALM_APMG_LARC_INT (0x00301c) 1127 #define ALM_APMG_LARC_INT_MSK (0x003020) 1128 1129 #define APMG_CLK_REG_VAL_DMA_CLK_RQT (0x00000200) 1130 #define APMG_CLK_REG_VAL_BSM_CLK_RQT (0x00000800) 1131 1132 #define APMG_PS_CTRL_REG_VAL_ALM_R_RESET_REQ (0x04000000) 1133 1134 #define APMG_DEV_STATE_REG_VAL_L1_ACTIVE_DISABLE (0x00000800) 1135 1136 #define APMG_PS_CTRL_REG_MSK_POWER_SRC (0x03000000) 1137 #define APMG_PS_CTRL_REG_VAL_POWER_SRC_VMAIN (0x00000000) 1138 #define APMG_PS_CTRL_REG_VAL_POWER_SRC_VAUX (0x01000000) 1139 1140 /* 1141 * BSM (bootstrap state machine) 1142 */ 1143 /* 1144 * start boot load now 1145 */ 1146 #define BSM_WR_CTRL_REG_BIT_START (0x80000000) 1147 /* 1148 * enable boot after power up 1149 */ 1150 #define BSM_WR_CTRL_REG_BIT_START_EN (0x40000000) 1151 1152 /* 1153 * DBM 1154 */ 1155 #define ALM_FH_SRVC_CHNL (6) 1156 #define IWH_FH_SRVC_LOWER_BOUND (IWH_FH_REGS_LOWER_BOUND + 0x9C8) 1157 #define IWH_FH_SRVC_CHNL (9) 1158 1159 1160 #define IWH_FH_SRVC_CHNL_SRAM_ADDR_REG(_chnl)\ 1161 (IWH_FH_SRVC_LOWER_BOUND + (_chnl - 9) * 0x4) 1162 1163 #define ALM_FH_RCSR_RX_CONFIG_REG_POS_RBDC_SIZE (20) 1164 #define ALM_FH_RCSR_RX_CONFIG_REG_POS_IRQ_RBTH (4) 1165 1166 #define ALM_FH_RCSR_RX_CONFIG_REG_BIT_WR_STTS_EN (0x08000000) 1167 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_DMA_CHNL_EN_ENABLE (0x80000000) 1168 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_RDRBD_EN_ENABLE (0x20000000) 1169 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_MAX_FRAG_SIZE_128 (0x01000000) 1170 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_IRQ_DEST_INT_HOST (0x00001000) 1171 #define ALM_FH_RCSR_RX_CONFIG_REG_VAL_MSG_MODE_FH (0x00000000) 1172 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_TXF (0x00000000) 1173 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_DRIVER (0x00000001) 1174 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE_VAL (0x00000000) 1175 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL (0x00000008) 1176 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_IFTFD (0x00200000) 1177 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_NOINT (0x00000000) 1178 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE (0x00000000) 1179 #define ALM_FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE (0x80000000) 1180 #define ALM_FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID (0x00004000) 1181 #define ALM_FH_TCSR_CHNL_TX_BUF_STS_REG_BIT_TFDB_WPTR (0x00000001) 1182 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TXPD_ON (0xFF000000) 1183 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_TXPD_ON (0x00FF0000) 1184 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_MAX_FRAG_SIZE_128B (0x00000400) 1185 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TFD_ON (0x00000100) 1186 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_CBB_ON (0x00000080) 1187 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RSP_WAIT_TH (0x00000020) 1188 #define ALM_FH_TSSR_TX_MSG_CONFIG_REG_VAL_RSP_WAIT_TH (0x00000005) 1189 1190 #define ALM_TB_MAX_BYTES_COUNT (0xFFF0) 1191 1192 #define ALM_FH_TSSR_TX_STATUS_REG_BIT_BUFS_EMPTY(_channel) \ 1193 ((1LU << _channel) << 24) 1194 #define ALM_FH_TSSR_TX_STATUS_REG_BIT_NO_PEND_REQ(_channel) \ 1195 ((1LU << _channel) << 16) 1196 1197 #define ALM_FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(_channel) \ 1198 (ALM_FH_TSSR_TX_STATUS_REG_BIT_BUFS_EMPTY(_channel) | \ 1199 ALM_FH_TSSR_TX_STATUS_REG_BIT_NO_PEND_REQ(_channel)) 1200 #define PCI_CFG_REV_ID_BIT_BASIC_SKU (0x40) /* bit 6 */ 1201 #define PCI_CFG_REV_ID_BIT_RTP (0x80) /* bit 7 */ 1202 1203 #define HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED (0x00000004) 1204 1205 #define TFD_QUEUE_MIN 0 1206 #define TFD_QUEUE_MAX 6 1207 #define TFD_QUEUE_SIZE_MAX (256) 1208 1209 /* 1210 * spectrum and channel data structures 1211 */ 1212 #define IWH_NUM_SCAN_RATES (2) 1213 1214 #define IWH_SCAN_FLAG_24GHZ (1<<0) 1215 #define IWH_SCAN_FLAG_52GHZ (1<<1) 1216 #define IWH_SCAN_FLAG_ACTIVE (1<<2) 1217 #define IWH_SCAN_FLAG_DIRECT (1<<3) 1218 1219 #define IWH_MAX_CMD_SIZE 1024 1220 1221 #define IWH_DEFAULT_TX_RETRY 15 1222 #define IWH_MAX_TX_RETRY 16 1223 1224 #define RFD_SIZE 4 1225 #define NUM_TFD_CHUNKS 4 1226 1227 #define RX_QUEUE_SIZE 256 1228 #define RX_QUEUE_SIZE_LOG 8 1229 1230 /* 1231 * TX Queue Flag Definitions 1232 */ 1233 /* 1234 * use short preamble 1235 */ 1236 #define DCT_FLAG_LONG_PREAMBLE 0x00 1237 #define DCT_FLAG_SHORT_PREAMBLE 0x04 1238 1239 /* 1240 * ACK rx is expected to follow 1241 */ 1242 #define DCT_FLAG_ACK_REQD 0x80 1243 1244 #define IWH_MB_DISASSOCIATE_THRESHOLD_DEFAULT 24 1245 #define IWH_MB_ROAMING_THRESHOLD_DEFAULT 8 1246 #define IWH_REAL_RATE_RX_PACKET_THRESHOLD 300 1247 1248 /* 1249 * QoS definitions 1250 */ 1251 #define CW_MIN_OFDM 15 1252 #define CW_MAX_OFDM 1023 1253 #define CW_MIN_CCK 31 1254 #define CW_MAX_CCK 1023 1255 1256 #define QOS_TX0_CW_MIN_OFDM CW_MIN_OFDM 1257 #define QOS_TX1_CW_MIN_OFDM CW_MIN_OFDM 1258 #define QOS_TX2_CW_MIN_OFDM ((CW_MIN_OFDM + 1) / 2 - 1) 1259 #define QOS_TX3_CW_MIN_OFDM ((CW_MIN_OFDM + 1) / 4 - 1) 1260 1261 #define QOS_TX0_CW_MIN_CCK CW_MIN_CCK 1262 #define QOS_TX1_CW_MIN_CCK CW_MIN_CCK 1263 #define QOS_TX2_CW_MIN_CCK ((CW_MIN_CCK + 1) / 2 - 1) 1264 #define QOS_TX3_CW_MIN_CCK ((CW_MIN_CCK + 1) / 4 - 1) 1265 1266 #define QOS_TX0_CW_MAX_OFDM CW_MAX_OFDM 1267 #define QOS_TX1_CW_MAX_OFDM CW_MAX_OFDM 1268 #define QOS_TX2_CW_MAX_OFDM CW_MIN_OFDM 1269 #define QOS_TX3_CW_MAX_OFDM ((CW_MIN_OFDM + 1) / 2 - 1) 1270 1271 #define QOS_TX0_CW_MAX_CCK CW_MAX_CCK 1272 #define QOS_TX1_CW_MAX_CCK CW_MAX_CCK 1273 #define QOS_TX2_CW_MAX_CCK CW_MIN_CCK 1274 #define QOS_TX3_CW_MAX_CCK ((CW_MIN_CCK + 1) / 2 - 1) 1275 1276 #define QOS_TX0_AIFS (3) 1277 #define QOS_TX1_AIFS (7) 1278 #define QOS_TX2_AIFS (2) 1279 #define QOS_TX3_AIFS (2) 1280 1281 #define QOS_TX0_ACM 0 1282 #define QOS_TX1_ACM 0 1283 #define QOS_TX2_ACM 0 1284 #define QOS_TX3_ACM 0 1285 1286 #define QOS_TX0_TXOP_LIMIT_CCK 0 1287 #define QOS_TX1_TXOP_LIMIT_CCK 0 1288 #define QOS_TX2_TXOP_LIMIT_CCK 6016 1289 #define QOS_TX3_TXOP_LIMIT_CCK 3264 1290 1291 #define QOS_TX0_TXOP_LIMIT_OFDM 0 1292 #define QOS_TX1_TXOP_LIMIT_OFDM 0 1293 #define QOS_TX2_TXOP_LIMIT_OFDM 3008 1294 #define QOS_TX3_TXOP_LIMIT_OFDM 1504 1295 1296 #define DEF_TX0_CW_MIN_OFDM CW_MIN_OFDM 1297 #define DEF_TX1_CW_MIN_OFDM CW_MIN_OFDM 1298 #define DEF_TX2_CW_MIN_OFDM CW_MIN_OFDM 1299 #define DEF_TX3_CW_MIN_OFDM CW_MIN_OFDM 1300 1301 #define DEF_TX0_CW_MIN_CCK CW_MIN_CCK 1302 #define DEF_TX1_CW_MIN_CCK CW_MIN_CCK 1303 #define DEF_TX2_CW_MIN_CCK CW_MIN_CCK 1304 #define DEF_TX3_CW_MIN_CCK CW_MIN_CCK 1305 1306 #define DEF_TX0_CW_MAX_OFDM CW_MAX_OFDM 1307 #define DEF_TX1_CW_MAX_OFDM CW_MAX_OFDM 1308 #define DEF_TX2_CW_MAX_OFDM CW_MAX_OFDM 1309 #define DEF_TX3_CW_MAX_OFDM CW_MAX_OFDM 1310 1311 #define DEF_TX0_CW_MAX_CCK CW_MAX_CCK 1312 #define DEF_TX1_CW_MAX_CCK CW_MAX_CCK 1313 #define DEF_TX2_CW_MAX_CCK CW_MAX_CCK 1314 #define DEF_TX3_CW_MAX_CCK CW_MAX_CCK 1315 1316 #define DEF_TX0_AIFS (2) 1317 #define DEF_TX1_AIFS (2) 1318 #define DEF_TX2_AIFS (2) 1319 #define DEF_TX3_AIFS (2) 1320 1321 #define DEF_TX0_ACM (0) 1322 #define DEF_TX1_ACM (0) 1323 #define DEF_TX2_ACM (0) 1324 #define DEF_TX3_ACM (0) 1325 1326 #define DEF_TX0_TXOP_LIMIT_CCK (0) 1327 #define DEF_TX1_TXOP_LIMIT_CCK (0) 1328 #define DEF_TX2_TXOP_LIMIT_CCK (0) 1329 #define DEF_TX3_TXOP_LIMIT_CCK (0) 1330 1331 #define DEF_TX0_TXOP_LIMIT_OFDM (0) 1332 #define DEF_TX1_TXOP_LIMIT_OFDM (0) 1333 #define DEF_TX2_TXOP_LIMIT_OFDM (0) 1334 #define DEF_TX3_TXOP_LIMIT_OFDM (0) 1335 1336 #define QOS_QOS_SETS (3) 1337 #define QOS_PARAM_SET_ACTIVE (0) 1338 #define QOS_PARAM_SET_DEF_CCK (1) 1339 #define QOS_PARAM_SET_DEF_OFDM (2) 1340 1341 #define CTRL_QOS_NO_ACK (0x0020) 1342 #define DCT_FLAG_EXT_QOS_ENABLED (0x10) 1343 1344 #define IWH_TX_QUEUE_AC0 (0) 1345 #define IWH_TX_QUEUE_AC1 (1) 1346 #define IWH_TX_QUEUE_AC2 (2) 1347 #define IWH_TX_QUEUE_AC3 (3) 1348 #define IWH_TX_QUEUE_HCCA_1 (5) 1349 #define IWH_TX_QUEUE_HCCA_2 (6) 1350 1351 #define U32_PAD(n) ((4-(n%4))%4) 1352 1353 #define AC_BE_TID_MASK 0x9 /* TID 0 and 3 */ 1354 #define AC_BK_TID_MASK 0x6 /* TID 1 and 2 */ 1355 1356 /* 1357 * Generic queue structure 1358 * 1359 * Contains common data for Rx and Tx queues 1360 */ 1361 #define TFD_CTL_COUNT_SET(n) (n<<24) 1362 #define TFD_CTL_COUNT_GET(ctl) ((ctl>>24) & 7) 1363 #define TFD_CTL_PAD_SET(n) (n<<28) 1364 #define TFD_CTL_PAD_GET(ctl) (ctl>>28) 1365 1366 #define TFD_TX_CMD_SLOTS 64 1367 #define TFD_CMD_SLOTS 32 1368 1369 /* 1370 * Tx/Rx Queues 1371 * 1372 * Most communication between driver and SP is via queues of data buffers. 1373 * For example, all commands that the driver issues to device's embedded 1374 * controller (uCode) are via the command queue (one of the Tx queues). All 1375 * uCode command responses/replies/notifications, including Rx frames, are 1376 * conveyed from uCode to driver via the Rx queue. 1377 * 1378 * Most support for these queues, including handshake support, resides in 1379 * structures in host DRAM, shared between the driver and the device. When 1380 * allocating this memory, the driver must make sure that data written by 1381 * the host CPU updates DRAM immediately (and does not get "stuck" in CPU's 1382 * cache memory), so DRAM and cache are consistent, and the device can 1383 * immediately see changes made by the driver. 1384 * 1385 * SP supports up to 16 DRAM-based Tx queues, and services these queues via 1386 * up to 7 DMA channels (FIFOs). Each Tx queue is supported by a circular array 1387 * in DRAM containing 256 Transmit Frame Descriptors (TFDs). 1388 */ 1389 #define IWH_MAX_WIN_SIZE 64 1390 #define IWH_QUEUE_SIZE 256 1391 #define IWH_NUM_FIFOS 7 1392 #define IWH_NUM_QUEUES 20 1393 #define IWH_CMD_QUEUE_NUM 4 1394 #define IWH_KW_SIZE 0x1000 /* 4k */ 1395 #define IWH_CMD_FIFO_NUM 7 1396 1397 struct iwh_rate { 1398 union { 1399 struct { 1400 uint8_t rate; 1401 uint8_t flags; 1402 uint16_t ext_flags; 1403 } s; 1404 uint32_t rate_n_flags; 1405 } r; 1406 }; 1407 1408 struct iwh_dram_scratch { 1409 uint8_t try_cnt; 1410 uint8_t bt_kill_cnt; 1411 uint16_t reserved; 1412 }; 1413 1414 1415 struct iwh_tx_power { 1416 uint8_t tx_gain; /* gain for analog radio */ 1417 uint8_t dsp_atten; /* gain for DSP */ 1418 }; 1419 1420 1421 union iwh_tx_power_triple_stream { 1422 struct { 1423 uint8_t radio_tx_gain[3]; 1424 uint8_t reserved1; 1425 uint8_t dsp_predis_atten[3]; 1426 uint8_t reserved2; 1427 }s; 1428 uint32_t val1; 1429 uint32_t val2; 1430 }; 1431 1432 struct iwh_tx_power_db { 1433 union iwh_tx_power_triple_stream ht_ofdm_power[24]; 1434 union iwh_tx_power_triple_stream cck_power[2]; 1435 }; 1436 1437 typedef struct iwh_tx_power_table_cmd { 1438 uint8_t band; 1439 uint8_t pa_measurements; 1440 uint8_t channel; 1441 uint8_t max_mcs; 1442 struct iwh_tx_power_db db; 1443 } iwh_tx_power_table_cmd_t; 1444 1445 1446 1447 /* 1448 * HT flags 1449 */ 1450 #define RXON_FLG_CONTROL_CHANNEL_LOCATION_MSK 0x400000 1451 #define RXON_FLG_CONTROL_CHANNEL_LOC_LOW_MSK 0x000000 1452 #define RXON_FLG_CONTROL_CHANNEL_LOC_HIGH_MSK 0x400000 1453 1454 #define RXON_FLG_HT_OPERATING_MODE_POS (23) 1455 #define RXON_FLG_HT_PROT_MSK 0x800000 1456 #define RXON_FLG_FAT_PROT_MSK 0x1000000 1457 1458 #define RXON_FLG_CHANNEL_MODE_POS (25) 1459 #define RXON_FLG_CHANNEL_MODE_MSK 0x06000000 1460 #define RXON_FLG_CHANNEL_MODE_LEGACY_MSK 0x00000000 1461 #define RXON_FLG_CHANNEL_MODE_PURE_40_MSK 0x02000000 1462 #define RXON_FLG_CHANNEL_MODE_MIXED_MSK 0x04000000 1463 1464 #define RXON_RX_CHAIN_DRIVER_FORCE_MSK (0x1<<0) 1465 #define RXON_RX_CHAIN_VALID_MSK (0x7<<1) 1466 #define RXON_RX_CHAIN_VALID_POS (1) 1467 #define RXON_RX_CHAIN_FORCE_SEL_MSK (0x7<<4) 1468 #define RXON_RX_CHAIN_FORCE_SEL_POS (4) 1469 #define RXON_RX_CHAIN_FORCE_MIMO_SEL_MSK (0x7<<7) 1470 #define RXON_RX_CHAIN_FORCE_MIMO_SEL_POS (7) 1471 #define RXON_RX_CHAIN_CNT_MSK (0x3<<10) 1472 #define RXON_RX_CHAIN_CNT_POS (10) 1473 #define RXON_RX_CHAIN_MIMO_CNT_MSK (0x3<<12) 1474 #define RXON_RX_CHAIN_MIMO_CNT_POS (12) 1475 #define RXON_RX_CHAIN_MIMO_FORCE_MSK (0x1<<14) 1476 #define RXON_RX_CHAIN_MIMO_FORCE_POS (14) 1477 1478 #define MCS_DUP_6M_PLCP (0x20) 1479 1480 /* 1481 * OFDM HT rate masks 1482 */ 1483 #define R_MCS_6M_MSK 0x1 1484 #define R_MCS_12M_MSK 0x2 1485 #define R_MCS_18M_MSK 0x4 1486 #define R_MCS_24M_MSK 0x8 1487 #define R_MCS_36M_MSK 0x10 1488 #define R_MCS_48M_MSK 0x20 1489 #define R_MCS_54M_MSK 0x40 1490 #define R_MCS_60M_MSK 0x80 1491 #define R_MCS_12M_DUAL_MSK 0x100 1492 #define R_MCS_24M_DUAL_MSK 0x200 1493 #define R_MCS_36M_DUAL_MSK 0x400 1494 #define R_MCS_48M_DUAL_MSK 0x800 1495 1496 #define RATE_MCS_CODE_MSK 0x7 1497 #define RATE_MCS_MIMO_POS 3 1498 #define RATE_MCS_MIMO_MSK 0x8 1499 #define RATE_MCS_HT_DUP_POS 5 1500 #define RATE_MCS_HT_DUP_MSK 0x20 1501 #define RATE_MCS_FLAGS_POS 8 1502 #define RATE_MCS_HT_POS 8 1503 #define RATE_MCS_HT_MSK 0x100 1504 #define RATE_MCS_CCK_POS 9 1505 #define RATE_MCS_CCK_MSK 0x200 1506 #define RATE_MCS_GF_POS 10 1507 #define RATE_MCS_GF_MSK 0x400 1508 1509 #define RATE_MCS_FAT_POS 11 1510 #define RATE_MCS_FAT_MSK 0x800 1511 #define RATE_MCS_DUP_POS 12 1512 #define RATE_MCS_DUP_MSK 0x1000 1513 #define RATE_MCS_SGI_POS 13 1514 #define RATE_MCS_SGI_MSK 0x2000 1515 1516 #define EEPROM_SEM_TIMEOUT 10 1517 #define EEPROM_SEM_RETRY_LIMIT 1000 1518 1519 /* 1520 * Antenna masks: 1521 * bit14:15 01 B inactive, A active 1522 * 10 B active, A inactive 1523 * 11 Both active 1524 */ 1525 #define RATE_MCS_ANT_A_POS 14 1526 #define RATE_MCS_ANT_B_POS 15 1527 #define RATE_MCS_ANT_A_MSK 0x4000 1528 #define RATE_MCS_ANT_B_MSK 0x8000 1529 #define RATE_MCS_ANT_AB_MSK 0xc000 1530 1531 #define is_legacy(tbl) (((tbl) == LQ_G) || ((tbl) == LQ_A)) 1532 #define is_siso(tbl) (((tbl) == LQ_SISO)) 1533 #define is_mimo(tbl) (((tbl) == LQ_MIMO)) 1534 #define is_Ht(tbl) (is_siso(tbl) || is_mimo(tbl)) 1535 #define is_a_band(tbl) (((tbl) == LQ_A)) 1536 #define is_g_and(tbl) (((tbl) == LQ_G)) 1537 1538 /* 1539 * RS_NEW_API: only TLC_RTS remains and moved to bit 0 1540 */ 1541 #define LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK (1<<0) 1542 1543 #define LINK_QUAL_AC_NUM 4 1544 #define LINK_QUAL_MAX_RETRY_NUM 16 1545 1546 #define LINK_QUAL_ANT_A_MSK (1<<0) 1547 #define LINK_QUAL_ANT_B_MSK (1<<1) 1548 #define LINK_QUAL_ANT_MSK (LINK_QUAL_ANT_A_MSK|LINK_QUAL_ANT_B_MSK) 1549 1550 struct iwh_link_qual_general_params { 1551 uint8_t flags; 1552 uint8_t mimo_delimiter; 1553 uint8_t single_stream_ant_msk; 1554 uint8_t dual_stream_ant_msk; 1555 uint8_t start_rate_index[LINK_QUAL_AC_NUM]; 1556 }; 1557 1558 struct iwh_link_qual_agg_params { 1559 uint16_t agg_time_limit; 1560 uint8_t agg_dis_start_th; 1561 uint8_t agg_frame_cnt_limit; 1562 uint32_t reserved; 1563 }; 1564 1565 typedef struct iwh_link_quality_cmd { 1566 uint8_t sta_id; 1567 uint8_t reserved1; 1568 uint16_t control; 1569 struct iwh_link_qual_general_params general_params; 1570 struct iwh_link_qual_agg_params agg_params; 1571 uint32_t rate_n_flags[LINK_QUAL_MAX_RETRY_NUM]; 1572 uint32_t reserved2; 1573 } iwh_link_quality_cmd_t; 1574 1575 struct iwh_rx_mpdu_body_size { 1576 uint16_t byte_count; 1577 uint16_t reserved; 1578 }; 1579 1580 typedef struct iwh_rx_phy_res { 1581 uint8_t non_cfg_phy_cnt; /* non configurable DSP phy data byte count */ 1582 uint8_t cfg_phy_cnt; /* configurable DSP phy data byte count */ 1583 uint8_t stat_id; /* configurable DSP phy data set ID */ 1584 uint8_t reserved1; 1585 uint32_t timestampl; /* TSF at on air rise */ 1586 uint32_t timestamph; 1587 uint32_t beacon_time_stamp; /* beacon at on-air rise */ 1588 uint16_t phy_flags; /* general phy flags: band, modulation, ... */ 1589 uint16_t channel; /* channel number */ 1590 /* for various implementations of non_cfg_phy */ 1591 uint8_t non_cfg_phy[32]; 1592 struct iwh_rate rate; /* rate in ucode internal format */ 1593 uint16_t byte_count; /* frame's byte-count */ 1594 uint16_t reserved3; 1595 } iwh_rx_phy_res_t; 1596 1597 struct iwh_rx_mpdu_res_start { 1598 uint16_t byte_count; 1599 uint16_t reserved; 1600 }; 1601 1602 #define IWH_AGC_DB_MASK (0x3f80) /* MASK(7,13) */ 1603 #define IWH_AGC_DB_POS (7) 1604 1605 #define IWH_RX_RES_PHY_CNT (8) 1606 #define IWH_RX_RES_AGC_IDX (1) 1607 #define IWH_RX_RES_RSSI_AB_IDX (2) 1608 #define IWH_RX_RES_RSSI_C_IDX (3) 1609 #define IWH_OFDM_AGC_MSK (0xFE00) 1610 #define IWH_OFDM_AGC_BIT_POS (9) 1611 #define IWH_OFDM_RSSI_A_MSK (0x00FF) 1612 #define IWH_OFDM_RSSI_A_BIT_POS (0) 1613 #define IWH_OFDM_RSSI_B_MSK (0xFF0000) 1614 #define IWH_OFDM_RSSI_B_BIT_POS (16) 1615 #define IWH_OFDM_RSSI_C_MSK (0x00FF) 1616 #define IWH_OFDM_RSSI_C_BIT_POS (0) 1617 #define IWH_RSSI_OFFSET (44) 1618 1619 /* 1620 * Fixed (non-configurable) rx data from phy 1621 */ 1622 struct iwh_rx_non_cfg_phy { 1623 uint32_t non_cfg_phy[IWH_RX_RES_PHY_CNT]; /* upto 8 phy entries */ 1624 }; 1625 1626 /* 1627 * Byte Count Table Entry 1628 * 1629 * Bit fields: 1630 * 15-12: reserved 1631 * 11- 0: total to-be-transmitted byte count of frame (does not include command) 1632 */ 1633 struct iwh_queue_byte_cnt_entry { 1634 uint16_t val; 1635 }; 1636 1637 /* 1638 * Byte Count table 1639 * 1640 * Each Tx queue uses a byte-count table containing 320 entries: 1641 * one 16-bit entry for each of 256 TFDs, plus an additional 64 entries that 1642 * duplicate the first 64 entries (to avoid wrap-around within a Tx window; 1643 * max Tx window is 64 TFDs). 1644 * 1645 * When driver sets up a new TFD, it must also enter the total byte count 1646 * of the frame to be transmitted into the corresponding entry in the byte 1647 * count table for the chosen Tx queue. If the TFD index is 0-63, the driver 1648 * must duplicate the byte count entry in corresponding index 256-319. 1649 * 1650 * "dont_care" padding puts each byte count table on a 1024-byte boundary; 1651 * SP assumes tables are separated by 1024 bytes. 1652 */ 1653 struct iwh_sched_queue_byte_cnt_tbl { 1654 struct iwh_queue_byte_cnt_entry tfd_offset[IWH_QUEUE_SIZE + 1655 IWH_MAX_WIN_SIZE]; 1656 }; 1657 1658 /* 1659 * struct iwh_shared, handshake area for Tx and Rx 1660 * 1661 * For convenience in allocating memory, this structure combines 2 areas of 1662 * DRAM which must be shared between driver and SP. These do not need to 1663 * be combined, if better allocation would result from keeping them separate: 1664 * TODO: Split these; carried over from 3945, doesn't work well for SP. 1665 * 1666 * 1) The Tx byte count tables occupy 1024 bytes each (16 KBytes total for 1667 * 16 queues). Driver uses SCD_DRAM_BASE_ADDR to tell SP where to find 1668 * the first of these tables. SP assumes tables are 1024 bytes apart. 1669 * 1670 * 2) The Rx status (val0 and val1) occupies only 8 bytes. Driver uses 1671 * FH_RSCSR_CHNL0_STTS_WPTR_REG to tell SP where to find this area. 1672 * Driver reads val0 to determine the latest Receive Buffer Descriptor (RBD) 1673 * that has been filled by the SP. 1674 * 1675 * Bit fields val0: 1676 * 31-12: Not used 1677 * 11- 0: Index of last filled Rx buffer descriptor (SP writes, driver reads) 1678 * 1679 * Bit fields val1: 1680 * 31- 0: Not used 1681 */ 1682 typedef struct iwh_shared { 1683 struct iwh_sched_queue_byte_cnt_tbl 1684 queues_byte_cnt_tbls[IWH_NUM_QUEUES]; 1685 uint32_t val0; 1686 uint32_t val1; 1687 uint32_t padding1; /* so that allocation will be aligned to 16B */ 1688 uint32_t padding2; 1689 } iwh_shared_t; 1690 1691 1692 /* 1693 * struct iwh_tfd_frame_data 1694 * 1695 * Describes up to 2 buffers containing (contiguous) portions of a Tx frame. 1696 * Each buffer must be on dword boundary. 1697 * Up to 10 iwh_tfd_frame_data structures, describing up to 20 buffers, 1698 * may be filled within a TFD (iwh_tfd_frame). 1699 * 1700 * Bit fields in tb1_addr: 1701 * 31- 0: Tx buffer 1 address bits [31:0] 1702 * 1703 * Bit fields in val1: 1704 * 31-16: Tx buffer 2 address bits [15:0] 1705 * 15- 4: Tx buffer 1 length (bytes) 1706 * 3- 0: Tx buffer 1 address bits [32:32] 1707 * 1708 * Bit fields in val2: 1709 * 31-20: Tx buffer 2 length (bytes) 1710 * 19- 0: Tx buffer 2 address bits [35:16] 1711 */ 1712 struct iwh_tfd_frame_data { 1713 uint32_t tb1_addr; 1714 uint32_t val1; 1715 uint32_t val2; 1716 }; 1717 1718 typedef struct iwh_tx_desc { 1719 uint32_t val0; 1720 struct iwh_tfd_frame_data pa[10]; 1721 uint32_t reserved; 1722 } iwh_tx_desc_t; 1723 1724 struct agg_tx_status { 1725 uint16_t status; 1726 uint16_t sequence; 1727 }; 1728 1729 typedef struct iwh_tx_stat { 1730 uint8_t frame_count; 1731 uint8_t bt_kill_count; 1732 uint8_t nrts; 1733 uint8_t ntries; 1734 struct iwh_rate rate; 1735 uint16_t duration; 1736 uint16_t reserved; 1737 uint32_t pa_power1; 1738 uint32_t pa_power2; 1739 uint32_t tfd_info; 1740 uint16_t seq_ctl; 1741 uint16_t byte_cnt; 1742 uint32_t tlc_info; 1743 struct agg_tx_status status; 1744 } iwh_tx_stat_t; 1745 1746 struct iwh_cmd_header { 1747 uint8_t type; 1748 uint8_t flags; 1749 uint8_t idx; 1750 uint8_t qid; 1751 }; 1752 1753 typedef struct iwh_rx_desc { 1754 uint32_t len; 1755 struct iwh_cmd_header hdr; 1756 } iwh_rx_desc_t; 1757 1758 typedef struct iwh_rx_stat { 1759 uint8_t len; 1760 uint8_t id; 1761 uint8_t rssi; /* received signal strength */ 1762 uint8_t agc; /* access gain control */ 1763 uint16_t signal; 1764 uint16_t noise; 1765 } iwh_rx_stat_t; 1766 1767 typedef struct iwh_rx_head { 1768 uint16_t chan; 1769 uint16_t flags; 1770 uint8_t reserved; 1771 uint8_t rate; 1772 uint16_t len; 1773 } iwh_rx_head_t; 1774 1775 typedef struct iwh_rx_tail { 1776 uint32_t flags; 1777 uint32_t timestampl; 1778 uint32_t timestamph; 1779 uint32_t tbeacon; 1780 } iwh_rx_tail_t; 1781 1782 enum { 1783 IWH_AP_ID = 0, 1784 IWH_MULTICAST_ID, 1785 IWH_STA_ID, 1786 IWH_BROADCAST_ID = 15, 1787 IWH_STATION_COUNT = 16, 1788 IWH_INVALID_STATION 1789 }; 1790 1791 /* 1792 * key flags 1793 */ 1794 enum { 1795 STA_KEY_FLG_ENCRYPT_MSK = 0x7, 1796 STA_KEY_FLG_NO_ENC = 0x0, 1797 STA_KEY_FLG_WEP = 0x1, 1798 STA_KEY_FLG_CCMP = 0x2, 1799 STA_KEY_FLG_TKIP = 0x3, 1800 1801 STA_KEY_FLG_KEYID_POS = 8, 1802 STA_KEY_FLG_INVALID = 0x0800, 1803 }; 1804 1805 /* 1806 * modify flags 1807 */ 1808 enum { 1809 STA_MODIFY_KEY_MASK = 0x01, 1810 STA_MODIFY_TID_DISABLE_TX = 0x02, 1811 STA_MODIFY_TX_RATE_MSK = 0x04 1812 }; 1813 1814 enum { 1815 RX_RES_STATUS_NO_CRC32_ERROR = (1 << 0), 1816 RX_RES_STATUS_NO_RXE_OVERFLOW = (1 << 1), 1817 }; 1818 1819 enum { 1820 RX_RES_PHY_FLAGS_BAND_24_MSK = (1 << 0), 1821 RX_RES_PHY_FLAGS_MOD_CCK_MSK = (1 << 1), 1822 RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK = (1 << 2), 1823 RX_RES_PHY_FLAGS_NARROW_BAND_MSK = (1 << 3), 1824 RX_RES_PHY_FLAGS_ANTENNA_MSK = 0xf0, 1825 1826 RX_RES_STATUS_SEC_TYPE_MSK = (0x7 << 8), 1827 RX_RES_STATUS_SEC_TYPE_NONE = (STA_KEY_FLG_NO_ENC << 8), 1828 RX_RES_STATUS_SEC_TYPE_WEP = (STA_KEY_FLG_WEP << 8), 1829 RX_RES_STATUS_SEC_TYPE_TKIP = (STA_KEY_FLG_TKIP << 8), 1830 RX_RES_STATUS_SEC_TYPE_CCMP = (STA_KEY_FLG_CCMP << 8), 1831 1832 RX_RES_STATUS_DECRYPT_TYPE_MSK = (0x3 << 11), 1833 RX_RES_STATUS_NOT_DECRYPT = (0x0 << 11), 1834 RX_RES_STATUS_DECRYPT_OK = (0x3 << 11), 1835 RX_RES_STATUS_BAD_ICV_MIC = (0x1 << 11), 1836 RX_RES_STATUS_BAD_KEY_TTAK = (0x2 << 11), 1837 }; 1838 1839 enum { 1840 REPLY_ALIVE = 0x1, 1841 REPLY_ERROR = 0x2, 1842 1843 /* RXON state commands */ 1844 REPLY_RXON = 0x10, 1845 REPLY_RXON_ASSOC = 0x11, 1846 REPLY_QOS_PARAM = 0x13, 1847 REPLY_RXON_TIMING = 0x14, 1848 1849 /* Multi-Station support */ 1850 REPLY_ADD_STA = 0x18, 1851 REPLY_REMOVE_STA = 0x19, 1852 REPLY_REMOVE_ALL_STA = 0x1a, 1853 1854 /* RX, TX */ 1855 1856 REPLY_TX = 0x1c, 1857 1858 /* timers commands */ 1859 REPLY_BCON = 0x27, 1860 1861 REPLY_SHUTDOWN = 0x40, 1862 1863 /* MISC commands */ 1864 REPLY_RATE_SCALE = 0x47, 1865 REPLY_LEDS_CMD = 0x48, 1866 REPLY_TX_LINK_QUALITY_CMD = 0x4e, 1867 1868 COEX_PRIORITY_TABLE_CMD = 0x5a, 1869 CALIBRATION_CFG_CMD = 0x65, 1870 CALIBRATION_RES_NOTIFICATION = 0x66, 1871 CALIBRATION_COMPLETE_NOTIFICATION = 0x67, 1872 1873 /* 802.11h related */ 1874 RADAR_NOTIFICATION = 0x70, 1875 REPLY_QUIET_CMD = 0x71, 1876 REPLY_CHANNEL_SWITCH = 0x72, 1877 CHANNEL_SWITCH_NOTIFICATION = 0x73, 1878 REPLY_SPECTRUM_MEASUREMENT_CMD = 0x74, 1879 SPECTRUM_MEASURE_NOTIFICATION = 0x75, 1880 1881 /* Power Management *** */ 1882 POWER_TABLE_CMD = 0x77, 1883 PM_SLEEP_NOTIFICATION = 0x7A, 1884 PM_DEBUG_STATISTIC_NOTIFIC = 0x7B, 1885 1886 /* Scan commands and notifications */ 1887 REPLY_SCAN_CMD = 0x80, 1888 REPLY_SCAN_ABORT_CMD = 0x81, 1889 1890 SCAN_START_NOTIFICATION = 0x82, 1891 SCAN_RESULTS_NOTIFICATION = 0x83, 1892 SCAN_COMPLETE_NOTIFICATION = 0x84, 1893 1894 /* IBSS/AP commands */ 1895 BEACON_NOTIFICATION = 0x90, 1896 REPLY_TX_BEACON = 0x91, 1897 WHO_IS_AWAKE_NOTIFICATION = 0x94, 1898 1899 QUIET_NOTIFICATION = 0x96, 1900 REPLY_TX_PWR_TABLE_CMD = 0x97, 1901 MEASURE_ABORT_NOTIFICATION = 0x99, 1902 1903 REPLY_CALIBRATION_TUNE = 0x9a, 1904 1905 /* BT config command */ 1906 REPLY_BT_CONFIG = 0x9b, 1907 REPLY_STATISTICS_CMD = 0x9c, 1908 STATISTICS_NOTIFICATION = 0x9d, 1909 1910 /* RF-KILL commands and notifications *** */ 1911 REPLY_CARD_STATE_CMD = 0xa0, 1912 CARD_STATE_NOTIFICATION = 0xa1, 1913 1914 /* Missed beacons notification */ 1915 MISSED_BEACONS_NOTIFICATION = 0xa2, 1916 MISSED_BEACONS_NOTIFICATION_TH_CMD = 0xa3, 1917 1918 REPLY_CT_KILL_CONFIG_CMD = 0xa4, 1919 SENSITIVITY_CMD = 0xa8, 1920 REPLY_PHY_CALIBRATION_CMD = 0xb0, 1921 REPLY_RX_PHY_CMD = 0xc0, 1922 REPLY_RX_MPDU_CMD = 0xc1, 1923 REPLY_SP_RX = 0xc3, 1924 REPLY_COMPRESSED_BA = 0xc5, 1925 REPLY_MAX = 0xff 1926 }; 1927 1928 typedef struct iwh_cmd { 1929 struct iwh_cmd_header hdr; 1930 uint8_t data[1024]; 1931 } iwh_cmd_t; 1932 1933 /* 1934 * Alive Command & Response 1935 */ 1936 #define UCODE_VALID_OK (0x1) 1937 #define INITIALIZE_SUBTYPE (9) 1938 1939 struct iwh_alive_resp { 1940 uint8_t ucode_minor; 1941 uint8_t ucode_major; 1942 uint16_t reserved1; 1943 uint8_t sw_rev[8]; 1944 uint8_t ver_type; 1945 uint8_t ver_subtype; 1946 uint16_t reserved2; 1947 uint32_t log_event_table_ptr; 1948 uint32_t error_event_table_ptr; 1949 uint32_t timestamp; 1950 uint32_t is_valid; 1951 }; 1952 1953 struct iwh_init_alive_resp { 1954 struct iwh_alive_resp s; 1955 /* calibration values from "initialize" uCode */ 1956 uint32_t voltage; /* signed */ 1957 uint32_t therm_r1[2]; /* signed 1st for normal, 2nd for FAT channel */ 1958 uint32_t therm_r2[2]; /* signed */ 1959 uint32_t therm_r3[2]; /* signed */ 1960 uint32_t therm_r4[2]; /* signed */ 1961 /* 1962 * signed MIMO gain comp, 5 freq groups, 2 Tx chains 1963 */ 1964 uint32_t tx_atten[5][2]; 1965 }; 1966 1967 /* 1968 * Rx config defines & structure 1969 */ 1970 /* 1971 * rx_config device types 1972 */ 1973 enum { 1974 RXON_DEV_TYPE_AP = 1, 1975 RXON_DEV_TYPE_ESS = 3, 1976 RXON_DEV_TYPE_IBSS = 4, 1977 RXON_DEV_TYPE_SNIFFER = 6, 1978 }; 1979 1980 /* 1981 * rx_config flags 1982 */ 1983 enum { 1984 /* band & modulation selection */ 1985 RXON_FLG_BAND_24G_MSK = (1 << 0), 1986 RXON_FLG_CCK_MSK = (1 << 1), 1987 /* auto detection enable */ 1988 RXON_FLG_AUTO_DETECT_MSK = (1 << 2), 1989 /* TGg protection when tx */ 1990 RXON_FLG_TGG_PROTECT_MSK = (1 << 3), 1991 /* cck short slot & preamble */ 1992 RXON_FLG_SHORT_SLOT_MSK = (1 << 4), 1993 RXON_FLG_SHORT_PREAMBLE_MSK = (1 << 5), 1994 /* antenna selection */ 1995 RXON_FLG_DIS_DIV_MSK = (1 << 7), 1996 RXON_FLG_ANT_SEL_MSK = 0x0f00, 1997 RXON_FLG_ANT_A_MSK = (1 << 8), 1998 RXON_FLG_ANT_B_MSK = (1 << 9), 1999 /* radar detection enable */ 2000 RXON_FLG_RADAR_DETECT_MSK = (1 << 12), 2001 RXON_FLG_TGJ_NARROW_BAND_MSK = (1 << 13), 2002 /* 2003 * rx response to host with 8-byte TSF 2004 * (according to ON_AIR deassertion) 2005 */ 2006 RXON_FLG_TSF2HOST_MSK = (1 << 15), 2007 RXON_FLG_DIS_ACQUISITION = (1 << 27), 2008 RXON_FLG_DIS_RE_ACQUISITION = (1 << 28), 2009 RXON_FLG_DIS_BEAMFORM = (1 << 29) 2010 }; 2011 2012 /* 2013 * rx_config filter flags 2014 */ 2015 enum { 2016 /* accept all data frames */ 2017 RXON_FILTER_PROMISC_MSK = (1 << 0), 2018 /* pass control & management to host */ 2019 RXON_FILTER_CTL2HOST_MSK = (1 << 1), 2020 /* accept multi-cast */ 2021 RXON_FILTER_ACCEPT_GRP_MSK = (1 << 2), 2022 /* don't decrypt uni-cast frames */ 2023 RXON_FILTER_DIS_DECRYPT_MSK = (1 << 3), 2024 /* don't decrypt multi-cast frames */ 2025 RXON_FILTER_DIS_GRP_DECRYPT_MSK = (1 << 4), 2026 /* STA is associated */ 2027 RXON_FILTER_ASSOC_MSK = (1 << 5), 2028 /* transfer to host non bssid beacons in associated state */ 2029 RXON_FILTER_BCON_AWARE_MSK = (1 << 6) 2030 }; 2031 2032 2033 /* 2034 * structure for RXON Command & Response 2035 */ 2036 typedef struct iwh_rxon_cmd { 2037 uint8_t node_addr[IEEE80211_ADDR_LEN]; 2038 uint16_t reserved1; 2039 uint8_t bssid[IEEE80211_ADDR_LEN]; 2040 uint16_t reserved2; 2041 uint8_t wlap_bssid[IEEE80211_ADDR_LEN]; 2042 uint16_t reserved3; 2043 uint8_t dev_type; 2044 uint8_t air_propagation; 2045 uint16_t rx_chain; 2046 uint8_t ofdm_basic_rates; 2047 uint8_t cck_basic_rates; 2048 uint16_t assoc_id; 2049 uint32_t flags; 2050 uint32_t filter_flags; 2051 uint16_t chan; 2052 uint8_t ofdm_ht_single_stream_basic_rates; 2053 uint8_t ofdm_ht_dual_stream_basic_rates; 2054 uint8_t ofdm_ht_triple_stream_basic_rates; 2055 uint8_t reserved4; 2056 uint16_t acquisition_data; 2057 uint16_t reserved5; 2058 } iwh_rxon_cmd_t; 2059 2060 typedef struct iwh_compressed_ba_resp { 2061 uint32_t sta_addr_lo32; 2062 uint16_t sta_addr_hi16; 2063 uint16_t reserved; 2064 uint8_t sta_id; 2065 uint8_t tid; 2066 uint16_t ba_seq_ctl; 2067 uint32_t ba_bitmap0; 2068 uint32_t ba_bitmap1; 2069 uint16_t scd_flow; 2070 uint16_t scd_ssn; 2071 } iwh_compressed_ba_resp_t; 2072 2073 #define PHY_CALIBRATE_DIFF_GAIN_CMD (7) 2074 #define PHY_CALIBRATE_LO_CMD (9) 2075 #define PHY_CALIBRATE_TX_IQ_CMD (11) 2076 #define PHY_CALIBRATE_CRYSTAL_FRQ_CMD (15) 2077 #define PHY_CALIBRATE_TX_IQ_PERD_CMD (17) 2078 #define HD_TABLE_SIZE (11) 2079 2080 /* 2081 * Param table within SENSITIVITY_CMD 2082 */ 2083 #define HD_MIN_ENERGY_CCK_DET_INDEX (0) 2084 #define HD_MIN_ENERGY_OFDM_DET_INDEX (1) 2085 #define HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX (2) 2086 #define HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX (3) 2087 #define HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX (4) 2088 #define HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX (5) 2089 #define HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX (6) 2090 #define HD_BARKER_CORR_TH_ADD_MIN_INDEX (7) 2091 #define HD_BARKER_CORR_TH_ADD_MIN_MRC_INDEX (8) 2092 #define HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX (9) 2093 #define HD_OFDM_ENERGY_TH_IN_INDEX (10) 2094 2095 typedef struct iwh_sensitivity_cmd { 2096 uint16_t control; 2097 uint16_t table[HD_TABLE_SIZE]; 2098 } iwh_sensitivity_cmd_t; 2099 2100 typedef struct iwh_calibration_cmd { 2101 uint8_t opCode; 2102 uint8_t flags; 2103 uint16_t reserved; 2104 char diff_gain_a; 2105 char diff_gain_b; 2106 char diff_gain_c; 2107 uint8_t reserved1; 2108 } iwh_calibation_cmd_t; 2109 2110 2111 struct iwh_calib_hdr { 2112 uint8_t op_code; 2113 uint8_t first_group; 2114 uint8_t groups_num; 2115 uint8_t data_valid; 2116 }; 2117 2118 #define FH_RSCSR_FRAME_SIZE_MASK (0x00003FFF) 2119 2120 struct iwh_calib_results { 2121 void *tx_iq_res; 2122 uint32_t tx_iq_res_len; 2123 void *tx_iq_perd_res; 2124 uint32_t tx_iq_perd_res_len; 2125 void *lo_res; 2126 uint32_t lo_res_len; 2127 }; 2128 2129 #define IWH_CALIB_INIT_CFG_ALL (0xFFFFFFFF) 2130 2131 struct iwh_calib_cfg_elmnt_s { 2132 uint32_t is_enable; 2133 uint32_t start; 2134 uint32_t send_res; 2135 uint32_t apply_res; 2136 uint32_t resered; 2137 }; 2138 2139 struct iwh_calib_cfg_status_s { 2140 struct iwh_calib_cfg_elmnt_s once; 2141 struct iwh_calib_cfg_elmnt_s perd; 2142 uint32_t flags; 2143 }; 2144 2145 struct iwh_calib_cfg_cmd { 2146 struct iwh_calib_cfg_status_s ucd_calib_cfg; 2147 struct iwh_calib_cfg_status_s drv_calib_cfg; 2148 uint32_t reserved1; 2149 }; 2150 2151 struct iwh_cal_crystal_freq { 2152 uint8_t cap_pin1; 2153 uint8_t cap_pin2; 2154 }; 2155 2156 typedef struct iwh_calibration_crystal_cmd { 2157 uint8_t opCode; 2158 uint8_t first_group; 2159 uint8_t num_group; 2160 uint8_t all_data_valid; 2161 struct iwh_cal_crystal_freq data; 2162 } iwh_calibration_crystal_cmd_t; 2163 2164 #define COEX_NUM_OF_EVENTS (16) 2165 2166 struct iwh_wimax_coex_event_entry { 2167 uint8_t request_prio; 2168 uint8_t win_medium_prio; 2169 uint8_t reserved; 2170 uint8_t flags; 2171 }; 2172 2173 typedef struct iwh_wimax_coex_cmd { 2174 uint8_t flags; 2175 uint8_t reserved[3]; 2176 struct iwh_wimax_coex_event_entry sta_prio[COEX_NUM_OF_EVENTS]; 2177 } iwh_wimax_coex_cmd_t; 2178 2179 typedef struct iwh_missed_beacon_notif { 2180 uint32_t consequtive_missed_beacons; 2181 uint32_t total_missed_becons; 2182 uint32_t num_expected_beacons; 2183 uint32_t num_recvd_beacons; 2184 } iwh_missed_beacon_notif_t; 2185 2186 typedef struct iwh_ct_kill_config { 2187 uint32_t reserved; 2188 uint32_t critical_temperature_M; 2189 uint32_t critical_temperature_R; 2190 } iwh_ct_kill_config_t; 2191 2192 /* 2193 * structure for command IWH_CMD_ASSOCIATE 2194 */ 2195 typedef struct iwh_assoc { 2196 uint32_t flags; 2197 uint32_t filter; 2198 uint8_t ofdm_mask; 2199 uint8_t cck_mask; 2200 uint8_t ofdm_ht_single_stream_basic_rates; 2201 uint8_t ofdm_ht_dual_stream_basic_rates; 2202 uint16_t rx_chain_select_flags; 2203 uint16_t reserved; 2204 } iwh_assoc_t; 2205 2206 /* 2207 * structure for command IWH_CMD_SET_WME 2208 */ 2209 typedef struct iwh_wme_setup { 2210 uint32_t flags; 2211 struct { 2212 uint16_t cwmin; 2213 uint16_t cwmax; 2214 uint8_t aifsn; 2215 uint8_t reserved; 2216 uint16_t txop; 2217 } ac[WME_NUM_AC]; 2218 } iwh_wme_setup_t; 2219 2220 /* 2221 * structure for command IWH_CMD_TSF 2222 */ 2223 typedef struct iwh_cmd_tsf { 2224 uint32_t timestampl; 2225 uint32_t timestamph; 2226 uint16_t bintval; 2227 uint16_t atim; 2228 uint32_t binitval; 2229 uint16_t lintval; 2230 uint16_t reserved; 2231 } iwh_cmd_tsf_t; 2232 2233 /* 2234 * structure for IWH_CMD_ADD_NODE 2235 */ 2236 struct sta_id_modify { 2237 uint8_t addr[6]; 2238 uint16_t reserved1; 2239 uint8_t sta_id; 2240 uint8_t modify_mask; 2241 uint16_t reserved2; 2242 }; 2243 2244 struct iwh_keyinfo { 2245 uint16_t key_flags; 2246 uint8_t tkip_rx_tsc_byte2; 2247 uint8_t reserved1; 2248 uint16_t tkip_rx_ttak[5]; 2249 uint8_t key_offset; 2250 uint8_t reserved2; 2251 uint8_t key[16]; 2252 uint32_t tx_secur_seq_cnt1; 2253 uint32_t tx_secur_seq_cnt2; 2254 uint32_t hw_tkip_mic_rx_key1; 2255 uint32_t hw_tkip_mic_rx_key2; 2256 uint32_t hw_tkip_mic_tx_key1; 2257 uint32_t hw_tkip_mic_tx_key2; 2258 }; 2259 typedef struct iwh_add_sta { 2260 uint8_t mode; 2261 uint8_t reserved[3]; 2262 struct sta_id_modify sta; 2263 struct iwh_keyinfo key; 2264 uint32_t station_flags; 2265 uint32_t station_flags_msk; 2266 uint16_t disable_tx; 2267 uint16_t reserved1; 2268 uint8_t add_immediate_ba_tid; 2269 uint8_t remove_immediate_ba_tid; 2270 uint16_t add_immediate_ba_ssn; 2271 uint32_t reserved2; 2272 } iwh_add_sta_t; 2273 2274 typedef struct iwh_rem_sta { 2275 uint8_t num_sta; /* number of removed stations */ 2276 uint8_t reserved1[3]; 2277 uint8_t addr[6]; /* MAC address of the first station */ 2278 uint8_t reserved2[2]; 2279 } iwh_rem_sta_t; 2280 2281 /* 2282 * Tx flags 2283 */ 2284 enum { 2285 TX_CMD_FLG_RTS_MSK = (1 << 1), 2286 TX_CMD_FLG_CTS_MSK = (1 << 2), 2287 TX_CMD_FLG_ACK_MSK = (1 << 3), 2288 TX_CMD_FLG_STA_RATE_MSK = (1 << 4), 2289 TX_CMD_FLG_IMM_BA_RSP_MASK = (1 << 6), 2290 TX_CMD_FLG_FULL_TXOP_PROT_MSK = (1 << 7), 2291 TX_CMD_FLG_ANT_SEL_MSK = 0xf00, 2292 TX_CMD_FLG_ANT_A_MSK = (1 << 8), 2293 TX_CMD_FLG_ANT_B_MSK = (1 << 9), 2294 2295 /* ucode ignores BT priority for this frame */ 2296 TX_CMD_FLG_BT_DIS_MSK = (1 << 12), 2297 2298 /* ucode overrides sequence control */ 2299 TX_CMD_FLG_SEQ_CTL_MSK = (1 << 13), 2300 2301 /* signal that this frame is non-last MPDU */ 2302 TX_CMD_FLG_MORE_FRAG_MSK = (1 << 14), 2303 2304 /* calculate TSF in outgoing frame */ 2305 TX_CMD_FLG_TSF_MSK = (1 << 16), 2306 2307 /* activate TX calibration. */ 2308 TX_CMD_FLG_CALIB_MSK = (1 << 17), 2309 2310 /* 2311 * signals that 2 bytes pad was inserted 2312 * after the MAC header 2313 */ 2314 TX_CMD_FLG_MH_PAD_MSK = (1 << 20), 2315 2316 /* HCCA-AP - disable duration overwriting. */ 2317 TX_CMD_FLG_DUR_MSK = (1 << 25), 2318 }; 2319 2320 2321 /* 2322 * structure for command IWH_CMD_TX_DATA 2323 */ 2324 typedef struct iwh_tx_cmd { 2325 uint16_t len; 2326 uint16_t next_frame_len; 2327 uint32_t tx_flags; 2328 struct iwh_dram_scratch scratch; 2329 struct iwh_rate rate; 2330 uint8_t sta_id; 2331 uint8_t sec_ctl; 2332 uint8_t initial_rate_index; 2333 uint8_t reserved; 2334 uint8_t key[16]; 2335 uint16_t next_frame_flags; 2336 uint16_t reserved2; 2337 union { 2338 uint32_t life_time; 2339 uint32_t attempt; 2340 } stop_time; 2341 uint32_t dram_lsb_ptr; 2342 uint8_t dram_msb_ptr; 2343 uint8_t rts_retry_limit; 2344 uint8_t data_retry_limit; 2345 uint8_t tid_tspec; 2346 union { 2347 uint16_t pm_frame_timeout; 2348 uint16_t attempt_duration; 2349 } timeout; 2350 uint16_t driver_txop; 2351 } iwh_tx_cmd_t; 2352 2353 2354 /* 2355 * structure for command "TX beacon" 2356 */ 2357 2358 typedef struct iwh_tx_beacon_cmd { 2359 iwh_tx_cmd_t config; 2360 uint16_t tim_idx; 2361 uint8_t tim_size; 2362 uint8_t reserved; 2363 uint8_t bcon_frame[2342]; 2364 } iwh_tx_beacon_cmd_t; 2365 2366 2367 /* 2368 * LEDs Command & Response 2369 * REPLY_LEDS_CMD = 0x48 (command, has simple generic response) 2370 * 2371 * For each of 3 possible LEDs (Activity/Link/Tech, selected by "id" field), 2372 * this command turns it on or off, or sets up a periodic blinking cycle. 2373 */ 2374 typedef struct iwh_led_cmd { 2375 uint32_t interval; /* "interval" in uSec */ 2376 uint8_t id; /* 1: Activity, 2: Link, 3: Tech */ 2377 /* 2378 * # intervals off while blinking; 2379 * "0", with > 0 "on" value, turns LED on 2380 */ 2381 uint8_t off; 2382 /* 2383 * # intervals on while blinking; 2384 * "0", regardless of "off", turns LED off 2385 */ 2386 uint8_t on; 2387 uint8_t reserved; 2388 } iwh_led_cmd_t; 2389 2390 /* 2391 * structure for IWH_CMD_SET_POWER_MODE 2392 */ 2393 typedef struct iwh_powertable_cmd { 2394 uint16_t flags; 2395 uint8_t keep_alive_seconds; 2396 uint8_t debug_flags; 2397 uint32_t rx_timeout; 2398 uint32_t tx_timeout; 2399 uint32_t sleep[5]; 2400 uint32_t keep_alive_beacons; 2401 } iwh_powertable_cmd_t; 2402 2403 struct iwh_ssid_ie { 2404 uint8_t id; 2405 uint8_t len; 2406 uint8_t ssid[32]; 2407 }; 2408 /* 2409 * structure for command IWH_CMD_SCAN 2410 */ 2411 typedef struct iwh_scan_hdr { 2412 uint16_t len; 2413 uint8_t reserved1; 2414 uint8_t nchan; 2415 /* 2416 * dwell only this long on quiet chnl 2417 * (active scan) 2418 */ 2419 uint16_t quiet_time; 2420 uint16_t quiet_plcp_th; /* quiet chnl is < this # pkts (typ. 1) */ 2421 uint16_t good_crc_th; /* passive -> active promotion threshold */ 2422 uint16_t rx_chain; 2423 /* 2424 * max usec to be out of associated (service) 2425 * chnl 2426 */ 2427 uint32_t max_out_time; 2428 /* 2429 * pause scan this long when returning to svc 2430 * chnl. 2431 * SP -- 31:22 # beacons, 21:0 additional usec. 2432 */ 2433 uint32_t suspend_time; 2434 uint32_t flags; 2435 uint32_t filter_flags; 2436 struct iwh_tx_cmd tx_cmd; 2437 struct iwh_ssid_ie direct_scan[20]; 2438 /* followed by probe request body */ 2439 /* followed by nchan x iwh_scan_chan */ 2440 } iwh_scan_hdr_t; 2441 2442 typedef struct iwh_scan_chan { 2443 uint32_t type; 2444 uint16_t chan; 2445 struct iwh_tx_power tpc; 2446 uint16_t active_dwell; /* dwell time */ 2447 uint16_t passive_dwell; /* dwell time */ 2448 } iwh_scan_chan_t; 2449 2450 /* 2451 * structure for IWH_CMD_BLUETOOTH 2452 */ 2453 typedef struct iwh_bt_cmd { 2454 uint8_t flags; 2455 uint8_t lead_time; 2456 uint8_t max_kill; 2457 uint8_t reserved; 2458 uint32_t kill_ack_mask; 2459 uint32_t kill_cts_mask; 2460 } iwh_bt_cmd_t; 2461 2462 /* 2463 * firmware image header 2464 */ 2465 typedef struct iwh_firmware_hdr { 2466 uint32_t version; 2467 uint32_t textsz; 2468 uint32_t datasz; 2469 uint32_t init_textsz; 2470 uint32_t init_datasz; 2471 uint32_t bootsz; 2472 } iwh_firmware_hdr_t; 2473 2474 /* 2475 * structure for IWH_START_SCAN notification 2476 */ 2477 typedef struct iwh_start_scan { 2478 uint32_t timestampl; 2479 uint32_t timestamph; 2480 uint32_t tbeacon; 2481 uint8_t chan; 2482 uint8_t band; 2483 uint16_t reserved; 2484 uint32_t status; 2485 } iwh_start_scan_t; 2486 2487 /* 2488 * structure for IWK_SCAN_COMPLETE notification 2489 */ 2490 typedef struct iwh_stop_scan { 2491 uint8_t nchan; 2492 uint8_t status; 2493 uint8_t reserved; 2494 uint8_t chan; 2495 uint8_t tsf; 2496 } iwh_stop_scan_t; 2497 2498 2499 #define IWH_READ(sc, reg) \ 2500 ddi_get32((sc)->sc_handle, (uint32_t *)((sc)->sc_base + (reg))) 2501 2502 #define IWH_WRITE(sc, reg, val) \ 2503 ddi_put32((sc)->sc_handle, (uint32_t *)((sc)->sc_base + (reg)), (val)) 2504 2505 /* 2506 * Driver can access peripheral registers 2507 * and ram via HBUS_TARG_PRPH_* registers. 2508 */ 2509 2510 #define PRPH_BASE (0x00000) 2511 #define PRPH_END (0xFFFFF) 2512 2513 #define IWH_SCD_BASE (PRPH_BASE + 0xA02C00) 2514 2515 #define IWH_SCD_SRAM_BASE_ADDR (IWH_SCD_BASE + 0x0) 2516 #define IWH_SCD_DRAM_BASE_ADDR (IWH_SCD_BASE + 0x8) 2517 #define IWH_SCD_QUEUECHAIN_SEL (IWH_SCD_BASE + 0xE8) 2518 #define IWH_SCD_AGGR_SEL (IWH_SCD_BASE + 0x248) 2519 #define IWH_SCD_QUEUE_RDPTR(x) (IWH_SCD_BASE + 0x68 + (x) * 4) 2520 #define IWH_SCD_INTERRUPT_MASK (IWH_SCD_BASE + 0x108) 2521 #define IWH_SCD_TXFACT (IWH_SCD_BASE + 0x1C) 2522 #define IWH_SCD_QUEUE_STATUS_BITS(x) (IWH_SCD_BASE + 0x10C + (x) * 4) 2523 2524 #define IWH_SCD_CONTEXT_DATA_OFFSET (0x600) 2525 #define IWH_SCD_TX_STTS_BITMAP_OFFSET (0x7B1) 2526 #define IWH_SCD_TRANSLATE_TBL_OFFSET (0x7E0) 2527 2528 #define IWH_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS (0) 2529 #define IWH_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK (0x0000007F) 2530 #define IWH_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS (16) 2531 #define IWH_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK (0x007F0000) 2532 2533 #define IWH_SCD_QUEUECHAIN_SEL_ALL(x) (((1 << (x)) - 1) &\ 2534 (~(1 << IWH_CMD_QUEUE_NUM))) 2535 2536 #define IWH_SCD_CONTEXT_QUEUE_OFFSET(x)\ 2537 (IWH_SCD_CONTEXT_DATA_OFFSET + (x) * 8) 2538 2539 #define IWH_SCD_QUEUE_STTS_REG_POS_TXF (0) 2540 #define IWH_SCD_QUEUE_STTS_REG_POS_ACTIVE (3) 2541 #define IWH_SCD_QUEUE_STTS_REG_POS_WSL (4) 2542 #define IWH_SCD_QUEUE_STTS_REG_MSK (0x00FF0000) 2543 2544 /* TX command security control */ 2545 #define TX_CMD_SEC_WEP (0x01) 2546 #define TX_CMD_SEC_CCM (0x02) 2547 #define TX_CMD_SEC_TKIP (0x03) 2548 #define TX_CMD_SEC_MSK (0x03) 2549 #define TX_CMD_SEC_SHIFT (6) 2550 #define TX_CMD_SEC_KEY128 (0x08) 2551 2552 #define WEP_IV_LEN (4) 2553 #define WEP_ICV_LEN (4) 2554 #define CCMP_MIC_LEN (8) 2555 #define TKIP_ICV_LEN (4) 2556 2557 #ifdef __cplusplus 2558 } 2559 #endif 2560 2561 #endif /* _IWH_HW_H_ */ 2562