1 /* 2 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 3 * Use is subject to license terms. 4 */ 5 6 /* 7 * Copyright (c) 2005, 2006 8 * Damien Bergamini <damien.bergamini@free.fr> 9 * 10 * Permission to use, copy, modify, and distribute this software for any 11 * purpose with or without fee is hereby granted, provided that the above 12 * copyright notice and this permission notice appear in all copies. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 15 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 16 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 17 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 18 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 19 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 20 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 21 */ 22 23 #ifndef _RT2560_REG_H 24 #define _RT2560_REG_H 25 26 #ifdef __cplusplus 27 extern "C" { 28 #endif 29 30 #define RT2560_TX_RING_COUNT 250 /* 48 */ 31 #define RT2560_ATIM_RING_COUNT 4 32 #define RT2560_PRIO_RING_COUNT 32 /* 16 */ 33 #define RT2560_BEACON_RING_COUNT 1 34 #define RT2560_RX_RING_COUNT 250 /* 32 */ 35 36 #define RT2560_TX_DESC_SIZE (sizeof (struct rt2560_tx_desc)) 37 #define RT2560_RX_DESC_SIZE (sizeof (struct rt2560_rx_desc)) 38 39 #define RT2560_MAX_SCATTER 1 40 41 /* 42 * Control and status registers. 43 */ 44 #define RT2560_CSR0 0x0000 /* ASIC version number */ 45 #define RT2560_CSR1 0x0004 /* System control */ 46 #define RT2560_CSR3 0x000c /* STA MAC address 0 */ 47 #define RT2560_CSR4 0x0010 /* STA MAC address 1 */ 48 #define RT2560_CSR5 0x0014 /* BSSID 0 */ 49 #define RT2560_CSR6 0x0018 /* BSSID 1 */ 50 #define RT2560_CSR7 0x001c /* Interrupt source */ 51 #define RT2560_CSR8 0x0020 /* Interrupt mask */ 52 #define RT2560_CSR9 0x0024 /* Maximum frame length */ 53 #define RT2560_SECCSR0 0x0028 /* WEP control */ 54 #define RT2560_CSR11 0x002c /* Back-off control */ 55 #define RT2560_CSR12 0x0030 /* Synchronization configuration 0 */ 56 #define RT2560_CSR13 0x0034 /* Synchronization configuration 1 */ 57 #define RT2560_CSR14 0x0038 /* Synchronization control */ 58 #define RT2560_CSR15 0x003c /* Synchronization status */ 59 #define RT2560_CSR16 0x0040 /* TSF timer 0 */ 60 #define RT2560_CSR17 0x0044 /* TSF timer 1 */ 61 #define RT2560_CSR18 0x0048 /* IFS timer 0 */ 62 #define RT2560_CSR19 0x004c /* IFS timer 1 */ 63 #define RT2560_CSR20 0x0050 /* WAKEUP timer */ 64 #define RT2560_CSR21 0x0054 /* EEPROM control */ 65 #define RT2560_CSR22 0x0058 /* CFP control */ 66 #define RT2560_TXCSR0 0x0060 /* TX control */ 67 #define RT2560_TXCSR1 0x0064 /* TX configuration */ 68 #define RT2560_TXCSR2 0x0068 /* TX descriptor configuration */ 69 #define RT2560_TXCSR3 0x006c /* TX ring base address */ 70 #define RT2560_TXCSR4 0x0070 /* TX ATIM ring base address */ 71 #define RT2560_TXCSR5 0x0074 /* TX PRIO ring base address */ 72 #define RT2560_TXCSR6 0x0078 /* Beacon base address */ 73 #define RT2560_TXCSR7 0x007c /* AutoResponder control */ 74 #define RT2560_RXCSR0 0x0080 /* RX control */ 75 #define RT2560_RXCSR1 0x0084 /* RX descriptor configuration */ 76 #define RT2560_RXCSR2 0x0088 /* RX ring base address */ 77 #define RT2560_PCICSR 0x008c /* PCI control */ 78 #define RT2560_RXCSR3 0x0090 /* BBP ID 0 */ 79 #define RT2560_TXCSR9 0x0094 /* OFDM TX BBP */ 80 #define RT2560_ARSP_PLCP_0 0x0098 /* Auto Responder PLCP address */ 81 #define RT2560_ARSP_PLCP_1 0x009c /* Auto Responder Basic Rate mask */ 82 #define RT2560_CNT0 0x00a0 /* FCS error counter */ 83 #define RT2560_CNT1 0x00ac /* PLCP error counter */ 84 #define RT2560_CNT2 0x00b0 /* Long error counter */ 85 #define RT2560_CNT3 0x00b8 /* CCA false alarm counter */ 86 #define RT2560_CNT4 0x00bc /* RX FIFO Overflow counter */ 87 #define RT2560_CNT5 0x00c0 /* Tx FIFO Underrun counter */ 88 #define RT2560_PWRCSR0 0x00c4 /* Power mode configuration */ 89 #define RT2560_PSCSR0 0x00c8 /* Power state transition time */ 90 #define RT2560_PSCSR1 0x00cc /* Power state transition time */ 91 #define RT2560_PSCSR2 0x00d0 /* Power state transition time */ 92 #define RT2560_PSCSR3 0x00d4 /* Power state transition time */ 93 #define RT2560_PWRCSR1 0x00d8 /* Manual power control/status */ 94 #define RT2560_TIMECSR 0x00dc /* Timer control */ 95 #define RT2560_MACCSR0 0x00e0 /* MAC configuration */ 96 #define RT2560_MACCSR1 0x00e4 /* MAC configuration */ 97 #define RT2560_RALINKCSR 0x00e8 /* Ralink RX auto-reset BBCR */ 98 #define RT2560_BCNCSR 0x00ec /* Beacon interval control */ 99 #define RT2560_BBPCSR 0x00f0 /* BBP serial control */ 100 #define RT2560_RFCSR 0x00f4 /* RF serial control */ 101 #define RT2560_LEDCSR 0x00f8 /* LED control */ 102 #define RT2560_SECCSR3 0x00fc /* XXX not documented */ 103 #define RT2560_DMACSR0 0x0100 /* Current RX ring address */ 104 #define RT2560_DMACSR1 0x0104 /* Current Tx ring address */ 105 #define RT2560_DMACSR2 0x0104 /* Current Priority ring address */ 106 #define RT2560_DMACSR3 0x0104 /* Current ATIM ring address */ 107 #define RT2560_TXACKCSR0 0x0110 /* XXX not documented */ 108 #define RT2560_GPIOCSR 0x0120 /* */ 109 #define RT2560_BBBPPCSR 0x0124 /* BBP Pin Control */ 110 #define RT2560_FIFOCSR0 0x0128 /* TX FIFO pointer */ 111 #define RT2560_FIFOCSR1 0x012c /* RX FIFO pointer */ 112 #define RT2560_BCNOCSR 0x0130 /* Beacon time offset */ 113 #define RT2560_RLPWCSR 0x0134 /* RX_PE Low Width */ 114 #define RT2560_TESTCSR 0x0138 /* Test Mode Select */ 115 #define RT2560_PLCP1MCSR 0x013c /* Signal/Service/Length of ACK @1M */ 116 #define RT2560_PLCP2MCSR 0x0140 /* Signal/Service/Length of ACK @2M */ 117 #define RT2560_PLCP5p5MCSR 0x0144 /* Signal/Service/Length of ACK @5.5M */ 118 #define RT2560_PLCP11MCSR 0x0148 /* Signal/Service/Length of ACK @11M */ 119 #define RT2560_ACKPCTCSR 0x014c /* ACK/CTS padload consume time */ 120 #define RT2560_ARTCSR1 0x0150 /* ACK/CTS padload consume time */ 121 #define RT2560_ARTCSR2 0x0154 /* ACK/CTS padload consume time */ 122 #define RT2560_SECCSR1 0x0158 /* WEP control */ 123 #define RT2560_BBPCSR1 0x015c /* BBP TX Configuration */ 124 125 126 /* possible flags for register RXCSR0 */ 127 #define RT2560_DISABLE_RX (1 << 0) 128 #define RT2560_DROP_CRC_ERROR (1 << 1) 129 #define RT2560_DROP_PHY_ERROR (1 << 2) 130 #define RT2560_DROP_CTL (1 << 3) 131 #define RT2560_DROP_NOT_TO_ME (1 << 4) 132 #define RT2560_DROP_TODS (1 << 5) 133 #define RT2560_DROP_VERSION_ERROR (1 << 6) 134 135 /* possible flags for register CSR1 */ 136 #define RT2560_RESET_ASIC (1 << 0) 137 #define RT2560_RESET_BBP (1 << 1) 138 #define RT2560_HOST_READY (1 << 2) 139 140 /* possible flags for register CSR14 */ 141 #define RT2560_ENABLE_TSF (1 << 0) 142 #define RT2560_ENABLE_TSF_SYNC(x) (((x) & 0x3) << 1) 143 #define RT2560_ENABLE_TBCN (1 << 3) 144 #define RT2560_ENABLE_BEACON_GENERATOR (1 << 6) 145 146 /* possible flags for register CSR21 */ 147 #define RT2560_C (1 << 1) 148 #define RT2560_S (1 << 2) 149 #define RT2560_D (1 << 3) 150 #define RT2560_Q (1 << 4) 151 #define RT2560_93C46 (1 << 5) 152 153 #define RT2560_SHIFT_D 3 154 #define RT2560_SHIFT_Q 4 155 156 /* possible flags for register TXCSR0 */ 157 #define RT2560_KICK_TX (1 << 0) 158 #define RT2560_KICK_ATIM (1 << 1) 159 #define RT2560_KICK_PRIO (1 << 2) 160 #define RT2560_ABORT_TX (1 << 3) 161 162 /* possible flags for register SECCSR0 */ 163 #define RT2560_KICK_DECRYPT (1 << 0) 164 165 /* possible flags for register SECCSR1 */ 166 #define RT2560_KICK_ENCRYPT (1 << 0) 167 168 /* possible flags for register CSR7 */ 169 #define RT2560_BEACON_EXPIRE 0x00000001 170 #define RT2560_WAKEUP_EXPIRE 0x00000002 171 #define RT2560_ATIM_EXPIRE 0x00000004 172 #define RT2560_TX_DONE 0x00000008 173 #define RT2560_ATIM_DONE 0x00000010 174 #define RT2560_PRIO_DONE 0x00000020 175 #define RT2560_RX_DONE 0x00000040 176 #define RT2560_DECRYPTION_DONE 0x00000080 177 #define RT2560_ENCRYPTION_DONE 0x00000100 178 179 #define RT2560_INTR_MASK \ 180 (~(RT2560_BEACON_EXPIRE | RT2560_WAKEUP_EXPIRE | RT2560_TX_DONE | \ 181 RT2560_PRIO_DONE | RT2560_RX_DONE | RT2560_DECRYPTION_DONE | \ 182 RT2560_ENCRYPTION_DONE)) 183 184 #define RT2560_INTR_ALL \ 185 (RT2560_BEACON_EXPIRE | RT2560_WAKEUP_EXPIRE | RT2560_TX_DONE | \ 186 RT2560_PRIO_DONE | RT2560_RX_DONE | RT2560_DECRYPTION_DONE | \ 187 RT2560_ENCRYPTION_DONE) 188 189 #pragma pack(1) 190 /* Tx descriptor */ 191 struct rt2560_tx_desc { 192 uint32_t flags; 193 #define RT2560_TX_BUSY (1 << 0) 194 #define RT2560_TX_VALID (1 << 1) 195 196 #define RT2560_TX_RESULT_MASK 0x0000001c 197 #define RT2560_TX_SUCCESS (0 << 2) 198 #define RT2560_TX_SUCCESS_RETRY (1 << 2) 199 #define RT2560_TX_FAIL_RETRY (2 << 2) 200 #define RT2560_TX_FAIL_INVALID (3 << 2) 201 #define RT2560_TX_FAIL_OTHER (4 << 2) 202 203 #define RT2560_TX_MORE_FRAG (1 << 8) 204 #define RT2560_TX_ACK (1 << 9) 205 #define RT2560_TX_TIMESTAMP (1 << 10) 206 #define RT2560_TX_OFDM (1 << 11) 207 #define RT2560_TX_CIPHER_BUSY (1 << 12) 208 209 #define RT2560_TX_IFS_MASK 0x00006000 210 #define RT2560_TX_IFS_BACKOFF (0 << 13) 211 #define RT2560_TX_IFS_SIFS (1 << 13) 212 #define RT2560_TX_IFS_NEWBACKOFF (2 << 13) 213 #define RT2560_TX_IFS_NONE (3 << 13) 214 215 #define RT2560_TX_LONG_RETRY (1 << 15) 216 217 #define RT2560_TX_CIPHER_MASK 0xe0000000 218 #define RT2560_TX_CIPHER_NONE (0 << 29) 219 #define RT2560_TX_CIPHER_WEP40 (1 << 29) 220 #define RT2560_TX_CIPHER_WEP104 (2 << 29) 221 #define RT2560_TX_CIPHER_TKIP (3 << 29) 222 #define RT2560_TX_CIPHER_AES (4 << 29) 223 224 uint32_t physaddr; 225 uint16_t wme; 226 #define RT2560_LOGCWMAX(x) (((x) & 0xf) << 12) 227 #define RT2560_LOGCWMIN(x) (((x) & 0xf) << 8) 228 #define RT2560_AIFSN(x) (((x) & 0x3) << 6) 229 #define RT2560_IVOFFSET(x) (((x) & 0x3f)) 230 231 uint16_t reserved1; 232 uint8_t plcp_signal; 233 uint8_t plcp_service; 234 #define RT2560_PLCP_LENGEXT 0x80 235 236 uint8_t plcp_length_lo; 237 uint8_t plcp_length_hi; 238 uint32_t iv; 239 uint32_t eiv; 240 uint8_t key[IEEE80211_KEYBUF_SIZE]; 241 uint32_t reserved2[2]; 242 }; 243 #pragma pack() 244 245 #pragma pack(1) 246 /* Rx descriptor */ 247 struct rt2560_rx_desc { 248 uint32_t flags; 249 #define RT2560_RX_BUSY (1 << 0) 250 #define RT2560_RX_CRC_ERROR (1 << 5) 251 #define RT2560_RX_OFDM (1 << 6) 252 #define RT2560_RX_PHY_ERROR (1 << 7) 253 #define RT2560_RX_CIPHER_BUSY (1 << 8) 254 #define RT2560_RX_ICV_ERROR (1 << 9) 255 256 #define RT2560_RX_CIPHER_MASK 0xe0000000 257 #define RT2560_RX_CIPHER_NONE (0 << 29) 258 #define RT2560_RX_CIPHER_WEP40 (1 << 29) 259 #define RT2560_RX_CIPHER_WEP104 (2 << 29) 260 #define RT2560_RX_CIPHER_TKIP (3 << 29) 261 #define RT2560_RX_CIPHER_AES (4 << 29) 262 263 uint32_t physaddr; 264 uint8_t rate; 265 uint8_t rssi; 266 uint8_t ta[IEEE80211_ADDR_LEN]; 267 uint32_t iv; 268 uint32_t eiv; 269 uint8_t key[IEEE80211_KEYBUF_SIZE]; 270 uint32_t reserved[2]; 271 }; 272 #pragma pack() 273 274 #define RAL_RF1 0 275 #define RAL_RF2 2 276 #define RAL_RF3 1 277 #define RAL_RF4 3 278 279 #define RT2560_RF1_AUTOTUNE 0x08000 280 #define RT2560_RF3_AUTOTUNE 0x00040 281 282 #define RT2560_BBP_BUSY (1 << 15) 283 #define RT2560_BBP_WRITE (1 << 16) 284 #define RT2560_RF_20BIT (20 << 24) 285 #define RT2560_RF_BUSY ((uint32_t)1 << 31) 286 287 #define RT2560_RF_2522 0x00 288 #define RT2560_RF_2523 0x01 289 #define RT2560_RF_2524 0x02 290 #define RT2560_RF_2525 0x03 291 #define RT2560_RF_2525E 0x04 292 #define RT2560_RF_2526 0x05 293 /* dual-band RF */ 294 #define RT2560_RF_5222 0x10 295 296 #define RT2560_BBP_VERSION 0 297 #define RT2560_BBP_TX 2 298 #define RT2560_BBP_RX 14 299 300 #define RT2560_BBP_ANTA 0x00 301 #define RT2560_BBP_DIVERSITY 0x01 302 #define RT2560_BBP_ANTB 0x02 303 #define RT2560_BBP_ANTMASK 0x03 304 #define RT2560_BBP_FLIPIQ 0x04 305 306 #define RT2560_LED_MODE_DEFAULT 0 307 #define RT2560_LED_MODE_TXRX_ACTIVITY 1 308 #define RT2560_LED_MODE_SINGLE 2 309 #define RT2560_LED_MODE_ASUS 3 310 311 #define RT2560_JAPAN_FILTER 0x8 312 313 #define RT2560_EEPROM_DELAY 1 /* minimum hold time (microsecond) */ 314 315 #define RT2560_EEPROM_CONFIG0 16 316 #define RT2560_EEPROM_BBP_BASE 19 317 #define RT2560_EEPROM_TXPOWER 35 318 319 /* 320 * control and status registers access macros 321 */ 322 #define RAL_READ(sc, reg) \ 323 ddi_get32((sc)->sc_ioh, (uint32_t *)((uintptr_t)(sc)->sc_rbase + (reg))) 324 325 #define RAL_WRITE(sc, reg, val) \ 326 ddi_put32((sc)->sc_ioh, \ 327 (uint32_t *)((uintptr_t)(sc)->sc_rbase + (reg)), (val)) 328 329 330 /* 331 * EEPROM access macro 332 */ 333 #define RT2560_EEPROM_CTL(sc, val) do { \ 334 _NOTE(CONSTCOND) \ 335 RAL_WRITE((sc), RT2560_CSR21, (val)); \ 336 drv_usecwait(RT2560_EEPROM_DELAY); \ 337 _NOTE(CONSTCOND) \ 338 } while (/* CONSTCOND */0) 339 340 /* 341 * Default values for MAC registers; values taken from the reference driver. 342 */ 343 #define RT2560_DEF_MAC \ 344 { RT2560_PSCSR0, 0x00020002 }, \ 345 { RT2560_PSCSR1, 0x00000002 }, \ 346 { RT2560_PSCSR2, 0x00020002 }, \ 347 { RT2560_PSCSR3, 0x00000002 }, \ 348 { RT2560_TIMECSR, 0x00003f21 }, \ 349 { RT2560_CSR9, 0x00000780 }, \ 350 { RT2560_CSR11, 0x07041483 }, \ 351 { RT2560_CNT3, 0x00000000 }, \ 352 { RT2560_TXCSR1, 0x07614562 }, \ 353 { RT2560_ARSP_PLCP_0, 0x8c8d8b8a }, \ 354 { RT2560_ACKPCTCSR, 0x7038140a }, \ 355 { RT2560_ARTCSR1, 0x1d21252d }, \ 356 { RT2560_ARTCSR2, 0x1919191d }, \ 357 { RT2560_RXCSR0, 0xffffffff }, \ 358 { RT2560_RXCSR3, 0xb3aab3af }, \ 359 { RT2560_PCICSR, 0x000003b8 }, \ 360 { RT2560_PWRCSR0, 0x3f3b3100 }, \ 361 { RT2560_GPIOCSR, 0x0000ff00 }, \ 362 { RT2560_TESTCSR, 0x000000f0 }, \ 363 { RT2560_PWRCSR1, 0x000001ff }, \ 364 { RT2560_MACCSR0, 0x00213223 }, \ 365 { RT2560_MACCSR1, 0x00235518 }, \ 366 { RT2560_RLPWCSR, 0x00000040 }, \ 367 { RT2560_RALINKCSR, 0x9a009a11 }, \ 368 { RT2560_CSR7, 0xffffffff }, \ 369 { RT2560_BBPCSR1, 0x82188200 }, \ 370 { RT2560_TXACKCSR0, 0x00000020 }, \ 371 { RT2560_SECCSR3, 0x0000e78f } 372 373 /* 374 * Default values for BBP registers; values taken from the reference driver. 375 */ 376 #define RT2560_DEF_BBP \ 377 { 3, 0x02 }, \ 378 { 4, 0x19 }, \ 379 { 14, 0x1c }, \ 380 { 15, 0x30 }, \ 381 { 16, 0xac }, \ 382 { 17, 0x48 }, \ 383 { 18, 0x18 }, \ 384 { 19, 0xff }, \ 385 { 20, 0x1e }, \ 386 { 21, 0x08 }, \ 387 { 22, 0x08 }, \ 388 { 23, 0x08 }, \ 389 { 24, 0x80 }, \ 390 { 25, 0x50 }, \ 391 { 26, 0x08 }, \ 392 { 27, 0x23 }, \ 393 { 30, 0x10 }, \ 394 { 31, 0x2b }, \ 395 { 32, 0xb9 }, \ 396 { 34, 0x12 }, \ 397 { 35, 0x50 }, \ 398 { 39, 0xc4 }, \ 399 { 40, 0x02 }, \ 400 { 41, 0x60 }, \ 401 { 53, 0x10 }, \ 402 { 54, 0x18 }, \ 403 { 56, 0x08 }, \ 404 { 57, 0x10 }, \ 405 { 58, 0x08 }, \ 406 { 61, 0x60 }, \ 407 { 62, 0x10 }, \ 408 { 75, 0xff } 409 410 /* 411 * Default values for RF register R2 indexed by channel numbers; values taken 412 * from the reference driver. 413 */ 414 #define RT2560_RF2522_R2 \ 415 { \ 416 0x307f6, 0x307fb, 0x30800, 0x30805, 0x3080a, 0x3080f, 0x30814, \ 417 0x30819, 0x3081e, 0x30823, 0x30828, 0x3082d, 0x30832, 0x3083e \ 418 } 419 420 #define RT2560_RF2523_R2 \ 421 { \ 422 0x00327, 0x00328, 0x00329, 0x0032a, 0x0032b, 0x0032c, 0x0032d, \ 423 0x0032e, 0x0032f, 0x00340, 0x00341, 0x00342, 0x00343, 0x00346 \ 424 } 425 426 #define RT2560_RF2524_R2 \ 427 { \ 428 0x00327, 0x00328, 0x00329, 0x0032a, 0x0032b, 0x0032c, 0x0032d, \ 429 0x0032e, 0x0032f, 0x00340, 0x00341, 0x00342, 0x00343, 0x00346 \ 430 } 431 432 #define RT2560_RF2525_R2 \ 433 { \ 434 0x20327, 0x20328, 0x20329, 0x2032a, 0x2032b, 0x2032c, 0x2032d, \ 435 0x2032e, 0x2032f, 0x20340, 0x20341, 0x20342, 0x20343, 0x20346 \ 436 } 437 438 #define RT2560_RF2525_HI_R2 \ 439 { \ 440 0x2032f, 0x20340, 0x20341, 0x20342, 0x20343, 0x20344, 0x20345, \ 441 0x20346, 0x20347, 0x20348, 0x20349, 0x2034a, 0x2034b, 0x2034e \ 442 } 443 444 #define RT2560_RF2525E_R2 \ 445 { \ 446 0x2044d, 0x2044e, 0x2044f, 0x20460, 0x20461, 0x20462, 0x20463, \ 447 0x20464, 0x20465, 0x20466, 0x20467, 0x20468, 0x20469, 0x2046b \ 448 } 449 450 #define RT2560_RF2526_HI_R2 \ 451 { \ 452 0x0022a, 0x0022b, 0x0022b, 0x0022c, 0x0022c, 0x0022d, 0x0022d, \ 453 0x0022e, 0x0022e, 0x0022f, 0x0022d, 0x00240, 0x00240, 0x00241 \ 454 } 455 456 #define RT2560_RF2526_R2 \ 457 { \ 458 0x00226, 0x00227, 0x00227, 0x00228, 0x00228, 0x00229, 0x00229, \ 459 0x0022a, 0x0022a, 0x0022b, 0x0022b, 0x0022c, 0x0022c, 0x0022d \ 460 } 461 462 /* 463 * For dual-band RF, RF registers R1 and R4 also depend on channel number; 464 * values taken from the reference driver. 465 */ 466 #define RT2560_RF5222 \ 467 { 1, 0x08808, 0x0044d, 0x00282 }, \ 468 { 2, 0x08808, 0x0044e, 0x00282 }, \ 469 { 3, 0x08808, 0x0044f, 0x00282 }, \ 470 { 4, 0x08808, 0x00460, 0x00282 }, \ 471 { 5, 0x08808, 0x00461, 0x00282 }, \ 472 { 6, 0x08808, 0x00462, 0x00282 }, \ 473 { 7, 0x08808, 0x00463, 0x00282 }, \ 474 { 8, 0x08808, 0x00464, 0x00282 }, \ 475 { 9, 0x08808, 0x00465, 0x00282 }, \ 476 { 10, 0x08808, 0x00466, 0x00282 }, \ 477 { 11, 0x08808, 0x00467, 0x00282 }, \ 478 { 12, 0x08808, 0x00468, 0x00282 }, \ 479 { 13, 0x08808, 0x00469, 0x00282 }, \ 480 { 14, 0x08808, 0x0046b, 0x00286 }, \ 481 \ 482 { 36, 0x08804, 0x06225, 0x00287 }, \ 483 { 40, 0x08804, 0x06226, 0x00287 }, \ 484 { 44, 0x08804, 0x06227, 0x00287 }, \ 485 { 48, 0x08804, 0x06228, 0x00287 }, \ 486 { 52, 0x08804, 0x06229, 0x00287 }, \ 487 { 56, 0x08804, 0x0622a, 0x00287 }, \ 488 { 60, 0x08804, 0x0622b, 0x00287 }, \ 489 { 64, 0x08804, 0x0622c, 0x00287 }, \ 490 \ 491 { 100, 0x08804, 0x02200, 0x00283 }, \ 492 { 104, 0x08804, 0x02201, 0x00283 }, \ 493 { 108, 0x08804, 0x02202, 0x00283 }, \ 494 { 112, 0x08804, 0x02203, 0x00283 }, \ 495 { 116, 0x08804, 0x02204, 0x00283 }, \ 496 { 120, 0x08804, 0x02205, 0x00283 }, \ 497 { 124, 0x08804, 0x02206, 0x00283 }, \ 498 { 128, 0x08804, 0x02207, 0x00283 }, \ 499 { 132, 0x08804, 0x02208, 0x00283 }, \ 500 { 136, 0x08804, 0x02209, 0x00283 }, \ 501 { 140, 0x08804, 0x0220a, 0x00283 }, \ 502 \ 503 { 149, 0x08808, 0x02429, 0x00281 }, \ 504 { 153, 0x08808, 0x0242b, 0x00281 }, \ 505 { 157, 0x08808, 0x0242d, 0x00281 }, \ 506 { 161, 0x08808, 0x0242f, 0x00281 } 507 508 #ifdef __cplusplus 509 } 510 #endif 511 512 #endif /* _RT2560_REG_H */ 513