Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2008 Atheros Communications Inc. |
| 3 | * |
| 4 | * Permission to use, copy, modify, and/or distribute this software for any |
| 5 | * purpose with or without fee is hereby granted, provided that the above |
| 6 | * copyright notice and this permission notice appear in all copies. |
| 7 | * |
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 15 | */ |
| 16 | |
| 17 | #ifndef HW_H |
| 18 | #define HW_H |
| 19 | |
| 20 | #include <linux/if_ether.h> |
| 21 | #include <linux/delay.h> |
| 22 | |
Luis R. Rodriguez | a085ff7 | 2008-12-23 15:58:51 -0800 | [diff] [blame] | 23 | extern const struct hal_percal_data iq_cal_multi_sample; |
| 24 | extern const struct hal_percal_data iq_cal_single_sample; |
| 25 | extern const struct hal_percal_data adc_gain_cal_multi_sample; |
| 26 | extern const struct hal_percal_data adc_gain_cal_single_sample; |
| 27 | extern const struct hal_percal_data adc_dc_cal_multi_sample; |
| 28 | extern const struct hal_percal_data adc_dc_cal_single_sample; |
| 29 | extern const struct hal_percal_data adc_init_dc_cal; |
| 30 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 31 | struct ar5416_desc { |
| 32 | u32 ds_link; |
| 33 | u32 ds_data; |
| 34 | u32 ds_ctl0; |
| 35 | u32 ds_ctl1; |
| 36 | union { |
| 37 | struct { |
| 38 | u32 ctl2; |
| 39 | u32 ctl3; |
| 40 | u32 ctl4; |
| 41 | u32 ctl5; |
| 42 | u32 ctl6; |
| 43 | u32 ctl7; |
| 44 | u32 ctl8; |
| 45 | u32 ctl9; |
| 46 | u32 ctl10; |
| 47 | u32 ctl11; |
| 48 | u32 status0; |
| 49 | u32 status1; |
| 50 | u32 status2; |
| 51 | u32 status3; |
| 52 | u32 status4; |
| 53 | u32 status5; |
| 54 | u32 status6; |
| 55 | u32 status7; |
| 56 | u32 status8; |
| 57 | u32 status9; |
| 58 | } tx; |
| 59 | struct { |
| 60 | u32 status0; |
| 61 | u32 status1; |
| 62 | u32 status2; |
| 63 | u32 status3; |
| 64 | u32 status4; |
| 65 | u32 status5; |
| 66 | u32 status6; |
| 67 | u32 status7; |
| 68 | u32 status8; |
| 69 | } rx; |
| 70 | } u; |
| 71 | } __packed; |
| 72 | |
| 73 | #define AR5416DESC(_ds) ((struct ar5416_desc *)(_ds)) |
| 74 | #define AR5416DESC_CONST(_ds) ((const struct ar5416_desc *)(_ds)) |
| 75 | |
| 76 | #define ds_ctl2 u.tx.ctl2 |
| 77 | #define ds_ctl3 u.tx.ctl3 |
| 78 | #define ds_ctl4 u.tx.ctl4 |
| 79 | #define ds_ctl5 u.tx.ctl5 |
| 80 | #define ds_ctl6 u.tx.ctl6 |
| 81 | #define ds_ctl7 u.tx.ctl7 |
| 82 | #define ds_ctl8 u.tx.ctl8 |
| 83 | #define ds_ctl9 u.tx.ctl9 |
| 84 | #define ds_ctl10 u.tx.ctl10 |
| 85 | #define ds_ctl11 u.tx.ctl11 |
| 86 | |
| 87 | #define ds_txstatus0 u.tx.status0 |
| 88 | #define ds_txstatus1 u.tx.status1 |
| 89 | #define ds_txstatus2 u.tx.status2 |
| 90 | #define ds_txstatus3 u.tx.status3 |
| 91 | #define ds_txstatus4 u.tx.status4 |
| 92 | #define ds_txstatus5 u.tx.status5 |
| 93 | #define ds_txstatus6 u.tx.status6 |
| 94 | #define ds_txstatus7 u.tx.status7 |
| 95 | #define ds_txstatus8 u.tx.status8 |
| 96 | #define ds_txstatus9 u.tx.status9 |
| 97 | |
| 98 | #define ds_rxstatus0 u.rx.status0 |
| 99 | #define ds_rxstatus1 u.rx.status1 |
| 100 | #define ds_rxstatus2 u.rx.status2 |
| 101 | #define ds_rxstatus3 u.rx.status3 |
| 102 | #define ds_rxstatus4 u.rx.status4 |
| 103 | #define ds_rxstatus5 u.rx.status5 |
| 104 | #define ds_rxstatus6 u.rx.status6 |
| 105 | #define ds_rxstatus7 u.rx.status7 |
| 106 | #define ds_rxstatus8 u.rx.status8 |
| 107 | |
| 108 | #define AR_FrameLen 0x00000fff |
| 109 | #define AR_VirtMoreFrag 0x00001000 |
| 110 | #define AR_TxCtlRsvd00 0x0000e000 |
| 111 | #define AR_XmitPower 0x003f0000 |
| 112 | #define AR_XmitPower_S 16 |
| 113 | #define AR_RTSEnable 0x00400000 |
| 114 | #define AR_VEOL 0x00800000 |
| 115 | #define AR_ClrDestMask 0x01000000 |
| 116 | #define AR_TxCtlRsvd01 0x1e000000 |
| 117 | #define AR_TxIntrReq 0x20000000 |
| 118 | #define AR_DestIdxValid 0x40000000 |
| 119 | #define AR_CTSEnable 0x80000000 |
| 120 | |
| 121 | #define AR_BufLen 0x00000fff |
| 122 | #define AR_TxMore 0x00001000 |
| 123 | #define AR_DestIdx 0x000fe000 |
| 124 | #define AR_DestIdx_S 13 |
| 125 | #define AR_FrameType 0x00f00000 |
| 126 | #define AR_FrameType_S 20 |
| 127 | #define AR_NoAck 0x01000000 |
| 128 | #define AR_InsertTS 0x02000000 |
| 129 | #define AR_CorruptFCS 0x04000000 |
| 130 | #define AR_ExtOnly 0x08000000 |
| 131 | #define AR_ExtAndCtl 0x10000000 |
| 132 | #define AR_MoreAggr 0x20000000 |
| 133 | #define AR_IsAggr 0x40000000 |
| 134 | |
| 135 | #define AR_BurstDur 0x00007fff |
| 136 | #define AR_BurstDur_S 0 |
| 137 | #define AR_DurUpdateEna 0x00008000 |
| 138 | #define AR_XmitDataTries0 0x000f0000 |
| 139 | #define AR_XmitDataTries0_S 16 |
| 140 | #define AR_XmitDataTries1 0x00f00000 |
| 141 | #define AR_XmitDataTries1_S 20 |
| 142 | #define AR_XmitDataTries2 0x0f000000 |
| 143 | #define AR_XmitDataTries2_S 24 |
| 144 | #define AR_XmitDataTries3 0xf0000000 |
| 145 | #define AR_XmitDataTries3_S 28 |
| 146 | |
| 147 | #define AR_XmitRate0 0x000000ff |
| 148 | #define AR_XmitRate0_S 0 |
| 149 | #define AR_XmitRate1 0x0000ff00 |
| 150 | #define AR_XmitRate1_S 8 |
| 151 | #define AR_XmitRate2 0x00ff0000 |
| 152 | #define AR_XmitRate2_S 16 |
| 153 | #define AR_XmitRate3 0xff000000 |
| 154 | #define AR_XmitRate3_S 24 |
| 155 | |
| 156 | #define AR_PacketDur0 0x00007fff |
| 157 | #define AR_PacketDur0_S 0 |
| 158 | #define AR_RTSCTSQual0 0x00008000 |
| 159 | #define AR_PacketDur1 0x7fff0000 |
| 160 | #define AR_PacketDur1_S 16 |
| 161 | #define AR_RTSCTSQual1 0x80000000 |
| 162 | |
| 163 | #define AR_PacketDur2 0x00007fff |
| 164 | #define AR_PacketDur2_S 0 |
| 165 | #define AR_RTSCTSQual2 0x00008000 |
| 166 | #define AR_PacketDur3 0x7fff0000 |
| 167 | #define AR_PacketDur3_S 16 |
| 168 | #define AR_RTSCTSQual3 0x80000000 |
| 169 | |
| 170 | #define AR_AggrLen 0x0000ffff |
| 171 | #define AR_AggrLen_S 0 |
| 172 | #define AR_TxCtlRsvd60 0x00030000 |
| 173 | #define AR_PadDelim 0x03fc0000 |
| 174 | #define AR_PadDelim_S 18 |
| 175 | #define AR_EncrType 0x0c000000 |
| 176 | #define AR_EncrType_S 26 |
| 177 | #define AR_TxCtlRsvd61 0xf0000000 |
| 178 | |
| 179 | #define AR_2040_0 0x00000001 |
| 180 | #define AR_GI0 0x00000002 |
| 181 | #define AR_ChainSel0 0x0000001c |
| 182 | #define AR_ChainSel0_S 2 |
| 183 | #define AR_2040_1 0x00000020 |
| 184 | #define AR_GI1 0x00000040 |
| 185 | #define AR_ChainSel1 0x00000380 |
| 186 | #define AR_ChainSel1_S 7 |
| 187 | #define AR_2040_2 0x00000400 |
| 188 | #define AR_GI2 0x00000800 |
| 189 | #define AR_ChainSel2 0x00007000 |
| 190 | #define AR_ChainSel2_S 12 |
| 191 | #define AR_2040_3 0x00008000 |
| 192 | #define AR_GI3 0x00010000 |
| 193 | #define AR_ChainSel3 0x000e0000 |
| 194 | #define AR_ChainSel3_S 17 |
| 195 | #define AR_RTSCTSRate 0x0ff00000 |
| 196 | #define AR_RTSCTSRate_S 20 |
| 197 | #define AR_TxCtlRsvd70 0xf0000000 |
| 198 | |
| 199 | #define AR_TxRSSIAnt00 0x000000ff |
| 200 | #define AR_TxRSSIAnt00_S 0 |
| 201 | #define AR_TxRSSIAnt01 0x0000ff00 |
| 202 | #define AR_TxRSSIAnt01_S 8 |
| 203 | #define AR_TxRSSIAnt02 0x00ff0000 |
| 204 | #define AR_TxRSSIAnt02_S 16 |
| 205 | #define AR_TxStatusRsvd00 0x3f000000 |
| 206 | #define AR_TxBaStatus 0x40000000 |
| 207 | #define AR_TxStatusRsvd01 0x80000000 |
| 208 | |
| 209 | #define AR_FrmXmitOK 0x00000001 |
| 210 | #define AR_ExcessiveRetries 0x00000002 |
| 211 | #define AR_FIFOUnderrun 0x00000004 |
| 212 | #define AR_Filtered 0x00000008 |
| 213 | #define AR_RTSFailCnt 0x000000f0 |
| 214 | #define AR_RTSFailCnt_S 4 |
| 215 | #define AR_DataFailCnt 0x00000f00 |
| 216 | #define AR_DataFailCnt_S 8 |
| 217 | #define AR_VirtRetryCnt 0x0000f000 |
| 218 | #define AR_VirtRetryCnt_S 12 |
| 219 | #define AR_TxDelimUnderrun 0x00010000 |
| 220 | #define AR_TxDataUnderrun 0x00020000 |
| 221 | #define AR_DescCfgErr 0x00040000 |
| 222 | #define AR_TxTimerExpired 0x00080000 |
| 223 | #define AR_TxStatusRsvd10 0xfff00000 |
| 224 | |
| 225 | #define AR_SendTimestamp ds_txstatus2 |
| 226 | #define AR_BaBitmapLow ds_txstatus3 |
| 227 | #define AR_BaBitmapHigh ds_txstatus4 |
| 228 | |
| 229 | #define AR_TxRSSIAnt10 0x000000ff |
| 230 | #define AR_TxRSSIAnt10_S 0 |
| 231 | #define AR_TxRSSIAnt11 0x0000ff00 |
| 232 | #define AR_TxRSSIAnt11_S 8 |
| 233 | #define AR_TxRSSIAnt12 0x00ff0000 |
| 234 | #define AR_TxRSSIAnt12_S 16 |
| 235 | #define AR_TxRSSICombined 0xff000000 |
| 236 | #define AR_TxRSSICombined_S 24 |
| 237 | |
| 238 | #define AR_TxEVM0 ds_txstatus5 |
| 239 | #define AR_TxEVM1 ds_txstatus6 |
| 240 | #define AR_TxEVM2 ds_txstatus7 |
| 241 | |
| 242 | #define AR_TxDone 0x00000001 |
| 243 | #define AR_SeqNum 0x00001ffe |
| 244 | #define AR_SeqNum_S 1 |
| 245 | #define AR_TxStatusRsvd80 0x0001e000 |
| 246 | #define AR_TxOpExceeded 0x00020000 |
| 247 | #define AR_TxStatusRsvd81 0x001c0000 |
| 248 | #define AR_FinalTxIdx 0x00600000 |
| 249 | #define AR_FinalTxIdx_S 21 |
| 250 | #define AR_TxStatusRsvd82 0x01800000 |
| 251 | #define AR_PowerMgmt 0x02000000 |
| 252 | #define AR_TxStatusRsvd83 0xfc000000 |
| 253 | |
| 254 | #define AR_RxCTLRsvd00 0xffffffff |
| 255 | |
| 256 | #define AR_BufLen 0x00000fff |
| 257 | #define AR_RxCtlRsvd00 0x00001000 |
| 258 | #define AR_RxIntrReq 0x00002000 |
| 259 | #define AR_RxCtlRsvd01 0xffffc000 |
| 260 | |
| 261 | #define AR_RxRSSIAnt00 0x000000ff |
| 262 | #define AR_RxRSSIAnt00_S 0 |
| 263 | #define AR_RxRSSIAnt01 0x0000ff00 |
| 264 | #define AR_RxRSSIAnt01_S 8 |
| 265 | #define AR_RxRSSIAnt02 0x00ff0000 |
| 266 | #define AR_RxRSSIAnt02_S 16 |
| 267 | #define AR_RxRate 0xff000000 |
| 268 | #define AR_RxRate_S 24 |
| 269 | #define AR_RxStatusRsvd00 0xff000000 |
| 270 | |
| 271 | #define AR_DataLen 0x00000fff |
| 272 | #define AR_RxMore 0x00001000 |
| 273 | #define AR_NumDelim 0x003fc000 |
| 274 | #define AR_NumDelim_S 14 |
| 275 | #define AR_RxStatusRsvd10 0xff800000 |
| 276 | |
| 277 | #define AR_RcvTimestamp ds_rxstatus2 |
| 278 | |
| 279 | #define AR_GI 0x00000001 |
| 280 | #define AR_2040 0x00000002 |
| 281 | #define AR_Parallel40 0x00000004 |
| 282 | #define AR_Parallel40_S 2 |
| 283 | #define AR_RxStatusRsvd30 0x000000f8 |
| 284 | #define AR_RxAntenna 0xffffff00 |
| 285 | #define AR_RxAntenna_S 8 |
| 286 | |
| 287 | #define AR_RxRSSIAnt10 0x000000ff |
| 288 | #define AR_RxRSSIAnt10_S 0 |
| 289 | #define AR_RxRSSIAnt11 0x0000ff00 |
| 290 | #define AR_RxRSSIAnt11_S 8 |
| 291 | #define AR_RxRSSIAnt12 0x00ff0000 |
| 292 | #define AR_RxRSSIAnt12_S 16 |
| 293 | #define AR_RxRSSICombined 0xff000000 |
| 294 | #define AR_RxRSSICombined_S 24 |
| 295 | |
| 296 | #define AR_RxEVM0 ds_rxstatus4 |
| 297 | #define AR_RxEVM1 ds_rxstatus5 |
| 298 | #define AR_RxEVM2 ds_rxstatus6 |
| 299 | |
| 300 | #define AR_RxDone 0x00000001 |
| 301 | #define AR_RxFrameOK 0x00000002 |
| 302 | #define AR_CRCErr 0x00000004 |
| 303 | #define AR_DecryptCRCErr 0x00000008 |
| 304 | #define AR_PHYErr 0x00000010 |
| 305 | #define AR_MichaelErr 0x00000020 |
| 306 | #define AR_PreDelimCRCErr 0x00000040 |
| 307 | #define AR_RxStatusRsvd70 0x00000080 |
| 308 | #define AR_RxKeyIdxValid 0x00000100 |
| 309 | #define AR_KeyIdx 0x0000fe00 |
| 310 | #define AR_KeyIdx_S 9 |
| 311 | #define AR_PHYErrCode 0x0000ff00 |
| 312 | #define AR_PHYErrCode_S 8 |
| 313 | #define AR_RxMoreAggr 0x00010000 |
| 314 | #define AR_RxAggr 0x00020000 |
| 315 | #define AR_PostDelimCRCErr 0x00040000 |
| 316 | #define AR_RxStatusRsvd71 0x3ff80000 |
| 317 | #define AR_DecryptBusyErr 0x40000000 |
| 318 | #define AR_KeyMiss 0x80000000 |
| 319 | |
| 320 | #define AR5416_MAGIC 0x19641014 |
| 321 | |
| 322 | #define RXSTATUS_RATE(ah, ads) (AR_SREV_5416_V20_OR_LATER(ah) ? \ |
| 323 | MS(ads->ds_rxstatus0, AR_RxRate) : \ |
| 324 | (ads->ds_rxstatus3 >> 2) & 0xFF) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 325 | |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 326 | #define set11nTries(_series, _index) \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 327 | (SM((_series)[_index].Tries, AR_XmitDataTries##_index)) |
| 328 | |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 329 | #define set11nRate(_series, _index) \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 330 | (SM((_series)[_index].Rate, AR_XmitRate##_index)) |
| 331 | |
| 332 | #define set11nPktDurRTSCTS(_series, _index) \ |
| 333 | (SM((_series)[_index].PktDuration, AR_PacketDur##_index) | \ |
| 334 | ((_series)[_index].RateFlags & ATH9K_RATESERIES_RTS_CTS ? \ |
| 335 | AR_RTSCTSQual##_index : 0)) |
| 336 | |
| 337 | #define set11nRateFlags(_series, _index) \ |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 338 | (((_series)[_index].RateFlags & ATH9K_RATESERIES_2040 ? \ |
| 339 | AR_2040_##_index : 0) \ |
| 340 | |((_series)[_index].RateFlags & ATH9K_RATESERIES_HALFGI ? \ |
| 341 | AR_GI##_index : 0) \ |
| 342 | |SM((_series)[_index].ChSel, AR_ChainSel##_index)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 343 | |
| 344 | #define AR_SREV_9100(ah) ((ah->ah_macVersion) == AR_SREV_VERSION_9100) |
| 345 | |
| 346 | #define INIT_CONFIG_STATUS 0x00000000 |
| 347 | #define INIT_RSSI_THR 0x00000700 |
| 348 | #define INIT_BCON_CNTRL_REG 0x00000000 |
| 349 | |
| 350 | #define MIN_TX_FIFO_THRESHOLD 0x1 |
| 351 | #define MAX_TX_FIFO_THRESHOLD ((4096 / 64) - 1) |
| 352 | #define INIT_TX_FIFO_THRESHOLD MIN_TX_FIFO_THRESHOLD |
| 353 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 354 | struct ar5416AniState { |
| 355 | struct ath9k_channel c; |
| 356 | u8 noiseImmunityLevel; |
| 357 | u8 spurImmunityLevel; |
| 358 | u8 firstepLevel; |
| 359 | u8 ofdmWeakSigDetectOff; |
| 360 | u8 cckWeakSigThreshold; |
| 361 | u32 listenTime; |
| 362 | u32 ofdmTrigHigh; |
| 363 | u32 ofdmTrigLow; |
| 364 | int32_t cckTrigHigh; |
| 365 | int32_t cckTrigLow; |
| 366 | int32_t rssiThrLow; |
| 367 | int32_t rssiThrHigh; |
| 368 | u32 noiseFloor; |
| 369 | u32 txFrameCount; |
| 370 | u32 rxFrameCount; |
| 371 | u32 cycleCount; |
| 372 | u32 ofdmPhyErrCount; |
| 373 | u32 cckPhyErrCount; |
| 374 | u32 ofdmPhyErrBase; |
| 375 | u32 cckPhyErrBase; |
| 376 | int16_t pktRssi[2]; |
| 377 | int16_t ofdmErrRssi[2]; |
| 378 | int16_t cckErrRssi[2]; |
| 379 | }; |
| 380 | |
| 381 | #define HAL_PROCESS_ANI 0x00000001 |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 382 | #define DO_ANI(ah) \ |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 383 | ((AH5416(ah)->ah_procPhyErr & HAL_PROCESS_ANI)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 384 | |
| 385 | struct ar5416Stats { |
| 386 | u32 ast_ani_niup; |
| 387 | u32 ast_ani_nidown; |
| 388 | u32 ast_ani_spurup; |
| 389 | u32 ast_ani_spurdown; |
| 390 | u32 ast_ani_ofdmon; |
| 391 | u32 ast_ani_ofdmoff; |
| 392 | u32 ast_ani_cckhigh; |
| 393 | u32 ast_ani_ccklow; |
| 394 | u32 ast_ani_stepup; |
| 395 | u32 ast_ani_stepdown; |
| 396 | u32 ast_ani_ofdmerrs; |
| 397 | u32 ast_ani_cckerrs; |
| 398 | u32 ast_ani_reset; |
| 399 | u32 ast_ani_lzero; |
| 400 | u32 ast_ani_lneg; |
| 401 | struct ath9k_mib_stats ast_mibstats; |
| 402 | struct ath9k_node_stats ast_nodestats; |
| 403 | }; |
| 404 | |
| 405 | #define AR5416_OPFLAGS_11A 0x01 |
| 406 | #define AR5416_OPFLAGS_11G 0x02 |
| 407 | #define AR5416_OPFLAGS_N_5G_HT40 0x04 |
| 408 | #define AR5416_OPFLAGS_N_2G_HT40 0x08 |
| 409 | #define AR5416_OPFLAGS_N_5G_HT20 0x10 |
| 410 | #define AR5416_OPFLAGS_N_2G_HT20 0x20 |
| 411 | |
| 412 | #define EEP_RFSILENT_ENABLED 0x0001 |
| 413 | #define EEP_RFSILENT_ENABLED_S 0 |
| 414 | #define EEP_RFSILENT_POLARITY 0x0002 |
| 415 | #define EEP_RFSILENT_POLARITY_S 1 |
| 416 | #define EEP_RFSILENT_GPIO_SEL 0x001c |
| 417 | #define EEP_RFSILENT_GPIO_SEL_S 2 |
| 418 | |
| 419 | #define AR5416_EEP_NO_BACK_VER 0x1 |
| 420 | #define AR5416_EEP_VER 0xE |
| 421 | #define AR5416_EEP_VER_MINOR_MASK 0x0FFF |
| 422 | #define AR5416_EEP_MINOR_VER_2 0x2 |
| 423 | #define AR5416_EEP_MINOR_VER_3 0x3 |
| 424 | #define AR5416_EEP_MINOR_VER_7 0x7 |
| 425 | #define AR5416_EEP_MINOR_VER_9 0x9 |
Senthil Balasubramanian | 9f80420 | 2008-11-13 17:58:41 +0530 | [diff] [blame] | 426 | #define AR5416_EEP_MINOR_VER_16 0x10 |
| 427 | #define AR5416_EEP_MINOR_VER_17 0x11 |
| 428 | #define AR5416_EEP_MINOR_VER_19 0x13 |
Senthil Balasubramanian | cb33c41 | 2008-12-24 18:03:58 +0530 | [diff] [blame] | 429 | #define AR5416_EEP_MINOR_VER_20 0x14 |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 430 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 431 | #define AR5416_NUM_5G_CAL_PIERS 8 |
| 432 | #define AR5416_NUM_2G_CAL_PIERS 4 |
| 433 | #define AR5416_NUM_5G_20_TARGET_POWERS 8 |
| 434 | #define AR5416_NUM_5G_40_TARGET_POWERS 8 |
| 435 | #define AR5416_NUM_2G_CCK_TARGET_POWERS 3 |
| 436 | #define AR5416_NUM_2G_20_TARGET_POWERS 4 |
| 437 | #define AR5416_NUM_2G_40_TARGET_POWERS 4 |
| 438 | #define AR5416_NUM_CTLS 24 |
| 439 | #define AR5416_NUM_BAND_EDGES 8 |
| 440 | #define AR5416_NUM_PD_GAINS 4 |
| 441 | #define AR5416_PD_GAINS_IN_MASK 4 |
| 442 | #define AR5416_PD_GAIN_ICEPTS 5 |
| 443 | #define AR5416_EEPROM_MODAL_SPURS 5 |
| 444 | #define AR5416_MAX_RATE_POWER 63 |
| 445 | #define AR5416_NUM_PDADC_VALUES 128 |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 446 | #define AR5416_BCHAN_UNUSED 0xFF |
| 447 | #define AR5416_MAX_PWR_RANGE_IN_HALF_DB 64 |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 448 | #define AR5416_MAX_CHAINS 3 |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 449 | #define AR5416_PWR_TABLE_OFFSET -5 |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 450 | |
Senthil Balasubramanian | 9f80420 | 2008-11-13 17:58:41 +0530 | [diff] [blame] | 451 | /* Rx gain type values */ |
| 452 | #define AR5416_EEP_RXGAIN_23DB_BACKOFF 0 |
| 453 | #define AR5416_EEP_RXGAIN_13DB_BACKOFF 1 |
| 454 | #define AR5416_EEP_RXGAIN_ORIG 2 |
| 455 | |
| 456 | /* Tx gain type values */ |
| 457 | #define AR5416_EEP_TXGAIN_ORIGINAL 0 |
| 458 | #define AR5416_EEP_TXGAIN_HIGH_POWER 1 |
| 459 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 460 | #define AR5416_EEP4K_START_LOC 64 |
| 461 | #define AR5416_EEP4K_NUM_2G_CAL_PIERS 3 |
| 462 | #define AR5416_EEP4K_NUM_2G_CCK_TARGET_POWERS 3 |
| 463 | #define AR5416_EEP4K_NUM_2G_20_TARGET_POWERS 3 |
| 464 | #define AR5416_EEP4K_NUM_2G_40_TARGET_POWERS 3 |
| 465 | #define AR5416_EEP4K_NUM_CTLS 12 |
| 466 | #define AR5416_EEP4K_NUM_BAND_EDGES 4 |
| 467 | #define AR5416_EEP4K_NUM_PD_GAINS 2 |
| 468 | #define AR5416_EEP4K_PD_GAINS_IN_MASK 4 |
| 469 | #define AR5416_EEP4K_PD_GAIN_ICEPTS 5 |
| 470 | #define AR5416_EEP4K_MAX_CHAINS 1 |
Senthil Balasubramanian | 9f80420 | 2008-11-13 17:58:41 +0530 | [diff] [blame] | 471 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 472 | enum eeprom_param { |
| 473 | EEP_NFTHRESH_5, |
| 474 | EEP_NFTHRESH_2, |
| 475 | EEP_MAC_MSW, |
| 476 | EEP_MAC_MID, |
| 477 | EEP_MAC_LSW, |
| 478 | EEP_REG_0, |
| 479 | EEP_REG_1, |
| 480 | EEP_OP_CAP, |
| 481 | EEP_OP_MODE, |
| 482 | EEP_RF_SILENT, |
| 483 | EEP_OB_5, |
| 484 | EEP_DB_5, |
| 485 | EEP_OB_2, |
| 486 | EEP_DB_2, |
| 487 | EEP_MINOR_REV, |
| 488 | EEP_TX_MASK, |
| 489 | EEP_RX_MASK, |
Senthil Balasubramanian | 9f80420 | 2008-11-13 17:58:41 +0530 | [diff] [blame] | 490 | EEP_RXGAIN_TYPE, |
| 491 | EEP_TXGAIN_TYPE, |
Senthil Balasubramanian | cb33c41 | 2008-12-24 18:03:58 +0530 | [diff] [blame] | 492 | EEP_DAC_HPWR_5G, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 493 | }; |
| 494 | |
| 495 | enum ar5416_rates { |
| 496 | rate6mb, rate9mb, rate12mb, rate18mb, |
| 497 | rate24mb, rate36mb, rate48mb, rate54mb, |
| 498 | rate1l, rate2l, rate2s, rate5_5l, |
| 499 | rate5_5s, rate11l, rate11s, rateXr, |
| 500 | rateHt20_0, rateHt20_1, rateHt20_2, rateHt20_3, |
| 501 | rateHt20_4, rateHt20_5, rateHt20_6, rateHt20_7, |
| 502 | rateHt40_0, rateHt40_1, rateHt40_2, rateHt40_3, |
| 503 | rateHt40_4, rateHt40_5, rateHt40_6, rateHt40_7, |
| 504 | rateDupCck, rateDupOfdm, rateExtCck, rateExtOfdm, |
| 505 | Ar5416RateSize |
| 506 | }; |
| 507 | |
Senthil Balasubramanian | 2df1bff | 2008-12-08 19:43:49 +0530 | [diff] [blame] | 508 | enum ath9k_hal_freq_band { |
| 509 | ATH9K_HAL_FREQ_BAND_5GHZ = 0, |
| 510 | ATH9K_HAL_FREQ_BAND_2GHZ = 1 |
| 511 | }; |
| 512 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 513 | struct base_eep_header { |
| 514 | u16 length; |
| 515 | u16 checksum; |
| 516 | u16 version; |
| 517 | u8 opCapFlags; |
| 518 | u8 eepMisc; |
| 519 | u16 regDmn[2]; |
| 520 | u8 macAddr[6]; |
| 521 | u8 rxMask; |
| 522 | u8 txMask; |
| 523 | u16 rfSilent; |
| 524 | u16 blueToothOptions; |
| 525 | u16 deviceCap; |
| 526 | u32 binBuildNumber; |
| 527 | u8 deviceType; |
| 528 | u8 pwdclkind; |
Senthil Balasubramanian | 9f80420 | 2008-11-13 17:58:41 +0530 | [diff] [blame] | 529 | u8 futureBase_1[2]; |
| 530 | u8 rxGainType; |
Senthil Balasubramanian | cb33c41 | 2008-12-24 18:03:58 +0530 | [diff] [blame] | 531 | u8 dacHiPwrMode_5G; |
| 532 | u8 futureBase_2; |
| 533 | u8 dacLpMode; |
Senthil Balasubramanian | 9f80420 | 2008-11-13 17:58:41 +0530 | [diff] [blame] | 534 | u8 txGainType; |
Senthil Balasubramanian | cb33c41 | 2008-12-24 18:03:58 +0530 | [diff] [blame] | 535 | u8 rcChainMask; |
| 536 | u8 desiredScaleCCK; |
| 537 | u8 futureBase_3[23]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 538 | } __packed; |
| 539 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 540 | struct base_eep_header_4k { |
| 541 | u16 length; |
| 542 | u16 checksum; |
| 543 | u16 version; |
| 544 | u8 opCapFlags; |
| 545 | u8 eepMisc; |
| 546 | u16 regDmn[2]; |
| 547 | u8 macAddr[6]; |
| 548 | u8 rxMask; |
| 549 | u8 txMask; |
| 550 | u16 rfSilent; |
| 551 | u16 blueToothOptions; |
| 552 | u16 deviceCap; |
| 553 | u32 binBuildNumber; |
| 554 | u8 deviceType; |
| 555 | u8 futureBase[1]; |
| 556 | } __packed; |
| 557 | |
| 558 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 559 | struct spur_chan { |
| 560 | u16 spurChan; |
| 561 | u8 spurRangeLow; |
| 562 | u8 spurRangeHigh; |
| 563 | } __packed; |
| 564 | |
| 565 | struct modal_eep_header { |
| 566 | u32 antCtrlChain[AR5416_MAX_CHAINS]; |
| 567 | u32 antCtrlCommon; |
| 568 | u8 antennaGainCh[AR5416_MAX_CHAINS]; |
| 569 | u8 switchSettling; |
| 570 | u8 txRxAttenCh[AR5416_MAX_CHAINS]; |
| 571 | u8 rxTxMarginCh[AR5416_MAX_CHAINS]; |
| 572 | u8 adcDesiredSize; |
| 573 | u8 pgaDesiredSize; |
| 574 | u8 xlnaGainCh[AR5416_MAX_CHAINS]; |
| 575 | u8 txEndToXpaOff; |
| 576 | u8 txEndToRxOn; |
| 577 | u8 txFrameToXpaOn; |
| 578 | u8 thresh62; |
| 579 | u8 noiseFloorThreshCh[AR5416_MAX_CHAINS]; |
| 580 | u8 xpdGain; |
| 581 | u8 xpd; |
| 582 | u8 iqCalICh[AR5416_MAX_CHAINS]; |
| 583 | u8 iqCalQCh[AR5416_MAX_CHAINS]; |
| 584 | u8 pdGainOverlap; |
| 585 | u8 ob; |
| 586 | u8 db; |
| 587 | u8 xpaBiasLvl; |
| 588 | u8 pwrDecreaseFor2Chain; |
| 589 | u8 pwrDecreaseFor3Chain; |
| 590 | u8 txFrameToDataStart; |
| 591 | u8 txFrameToPaOn; |
| 592 | u8 ht40PowerIncForPdadc; |
| 593 | u8 bswAtten[AR5416_MAX_CHAINS]; |
| 594 | u8 bswMargin[AR5416_MAX_CHAINS]; |
| 595 | u8 swSettleHt40; |
| 596 | u8 xatten2Db[AR5416_MAX_CHAINS]; |
| 597 | u8 xatten2Margin[AR5416_MAX_CHAINS]; |
| 598 | u8 ob_ch1; |
| 599 | u8 db_ch1; |
| 600 | u8 useAnt1:1, |
| 601 | force_xpaon:1, |
| 602 | local_bias:1, |
| 603 | femBandSelectUsed:1, xlnabufin:1, xlnaisel:2, xlnabufmode:1; |
Senthil Balasubramanian | cb33c41 | 2008-12-24 18:03:58 +0530 | [diff] [blame] | 604 | u8 miscBits; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 605 | u16 xpaBiasLvlFreq[3]; |
| 606 | u8 futureModal[6]; |
| 607 | |
| 608 | struct spur_chan spurChans[AR5416_EEPROM_MODAL_SPURS]; |
| 609 | } __packed; |
| 610 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 611 | struct modal_eep_4k_header { |
| 612 | u32 antCtrlChain[AR5416_EEP4K_MAX_CHAINS]; |
| 613 | u32 antCtrlCommon; |
| 614 | u8 antennaGainCh[AR5416_EEP4K_MAX_CHAINS]; |
| 615 | u8 switchSettling; |
| 616 | u8 txRxAttenCh[AR5416_EEP4K_MAX_CHAINS]; |
| 617 | u8 rxTxMarginCh[AR5416_EEP4K_MAX_CHAINS]; |
| 618 | u8 adcDesiredSize; |
| 619 | u8 pgaDesiredSize; |
| 620 | u8 xlnaGainCh[AR5416_EEP4K_MAX_CHAINS]; |
| 621 | u8 txEndToXpaOff; |
| 622 | u8 txEndToRxOn; |
| 623 | u8 txFrameToXpaOn; |
| 624 | u8 thresh62; |
| 625 | u8 noiseFloorThreshCh[AR5416_EEP4K_MAX_CHAINS]; |
| 626 | u8 xpdGain; |
| 627 | u8 xpd; |
| 628 | u8 iqCalICh[AR5416_EEP4K_MAX_CHAINS]; |
| 629 | u8 iqCalQCh[AR5416_EEP4K_MAX_CHAINS]; |
| 630 | u8 pdGainOverlap; |
| 631 | u8 ob_01; |
| 632 | u8 db1_01; |
| 633 | u8 xpaBiasLvl; |
| 634 | u8 txFrameToDataStart; |
| 635 | u8 txFrameToPaOn; |
| 636 | u8 ht40PowerIncForPdadc; |
| 637 | u8 bswAtten[AR5416_EEP4K_MAX_CHAINS]; |
| 638 | u8 bswMargin[AR5416_EEP4K_MAX_CHAINS]; |
| 639 | u8 swSettleHt40; |
| 640 | u8 xatten2Db[AR5416_EEP4K_MAX_CHAINS]; |
| 641 | u8 xatten2Margin[AR5416_EEP4K_MAX_CHAINS]; |
| 642 | u8 db2_01; |
| 643 | u8 version; |
| 644 | u16 ob_234; |
| 645 | u16 db1_234; |
| 646 | u16 db2_234; |
| 647 | u8 futureModal[4]; |
| 648 | |
| 649 | struct spur_chan spurChans[AR5416_EEPROM_MODAL_SPURS]; |
| 650 | } __packed; |
| 651 | |
| 652 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 653 | struct cal_data_per_freq { |
| 654 | u8 pwrPdg[AR5416_NUM_PD_GAINS][AR5416_PD_GAIN_ICEPTS]; |
| 655 | u8 vpdPdg[AR5416_NUM_PD_GAINS][AR5416_PD_GAIN_ICEPTS]; |
| 656 | } __packed; |
| 657 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 658 | struct cal_data_per_freq_4k { |
| 659 | u8 pwrPdg[AR5416_EEP4K_NUM_PD_GAINS][AR5416_EEP4K_PD_GAIN_ICEPTS]; |
| 660 | u8 vpdPdg[AR5416_EEP4K_NUM_PD_GAINS][AR5416_EEP4K_PD_GAIN_ICEPTS]; |
| 661 | } __packed; |
| 662 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 663 | struct cal_target_power_leg { |
| 664 | u8 bChannel; |
| 665 | u8 tPow2x[4]; |
| 666 | } __packed; |
| 667 | |
| 668 | struct cal_target_power_ht { |
| 669 | u8 bChannel; |
| 670 | u8 tPow2x[8]; |
| 671 | } __packed; |
| 672 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 673 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 674 | #ifdef __BIG_ENDIAN_BITFIELD |
| 675 | struct cal_ctl_edges { |
| 676 | u8 bChannel; |
| 677 | u8 flag:2, tPower:6; |
| 678 | } __packed; |
| 679 | #else |
| 680 | struct cal_ctl_edges { |
| 681 | u8 bChannel; |
| 682 | u8 tPower:6, flag:2; |
| 683 | } __packed; |
| 684 | #endif |
| 685 | |
| 686 | struct cal_ctl_data { |
| 687 | struct cal_ctl_edges |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 688 | ctlEdges[AR5416_MAX_CHAINS][AR5416_NUM_BAND_EDGES]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 689 | } __packed; |
| 690 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 691 | struct cal_ctl_data_4k { |
| 692 | struct cal_ctl_edges |
| 693 | ctlEdges[AR5416_EEP4K_MAX_CHAINS][AR5416_EEP4K_NUM_BAND_EDGES]; |
| 694 | } __packed; |
| 695 | |
| 696 | struct ar5416_eeprom_def { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 697 | struct base_eep_header baseEepHeader; |
| 698 | u8 custData[64]; |
| 699 | struct modal_eep_header modalHeader[2]; |
| 700 | u8 calFreqPier5G[AR5416_NUM_5G_CAL_PIERS]; |
| 701 | u8 calFreqPier2G[AR5416_NUM_2G_CAL_PIERS]; |
| 702 | struct cal_data_per_freq |
| 703 | calPierData5G[AR5416_MAX_CHAINS][AR5416_NUM_5G_CAL_PIERS]; |
| 704 | struct cal_data_per_freq |
| 705 | calPierData2G[AR5416_MAX_CHAINS][AR5416_NUM_2G_CAL_PIERS]; |
| 706 | struct cal_target_power_leg |
| 707 | calTargetPower5G[AR5416_NUM_5G_20_TARGET_POWERS]; |
| 708 | struct cal_target_power_ht |
| 709 | calTargetPower5GHT20[AR5416_NUM_5G_20_TARGET_POWERS]; |
| 710 | struct cal_target_power_ht |
| 711 | calTargetPower5GHT40[AR5416_NUM_5G_40_TARGET_POWERS]; |
| 712 | struct cal_target_power_leg |
| 713 | calTargetPowerCck[AR5416_NUM_2G_CCK_TARGET_POWERS]; |
| 714 | struct cal_target_power_leg |
| 715 | calTargetPower2G[AR5416_NUM_2G_20_TARGET_POWERS]; |
| 716 | struct cal_target_power_ht |
| 717 | calTargetPower2GHT20[AR5416_NUM_2G_20_TARGET_POWERS]; |
| 718 | struct cal_target_power_ht |
| 719 | calTargetPower2GHT40[AR5416_NUM_2G_40_TARGET_POWERS]; |
| 720 | u8 ctlIndex[AR5416_NUM_CTLS]; |
| 721 | struct cal_ctl_data ctlData[AR5416_NUM_CTLS]; |
| 722 | u8 padding; |
| 723 | } __packed; |
| 724 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 725 | struct ar5416_eeprom_4k { |
| 726 | struct base_eep_header_4k baseEepHeader; |
| 727 | u8 custData[20]; |
| 728 | struct modal_eep_4k_header modalHeader; |
| 729 | u8 calFreqPier2G[AR5416_EEP4K_NUM_2G_CAL_PIERS]; |
| 730 | struct cal_data_per_freq_4k |
| 731 | calPierData2G[AR5416_EEP4K_MAX_CHAINS][AR5416_EEP4K_NUM_2G_CAL_PIERS]; |
| 732 | struct cal_target_power_leg |
| 733 | calTargetPowerCck[AR5416_EEP4K_NUM_2G_CCK_TARGET_POWERS]; |
| 734 | struct cal_target_power_leg |
| 735 | calTargetPower2G[AR5416_EEP4K_NUM_2G_20_TARGET_POWERS]; |
| 736 | struct cal_target_power_ht |
| 737 | calTargetPower2GHT20[AR5416_EEP4K_NUM_2G_20_TARGET_POWERS]; |
| 738 | struct cal_target_power_ht |
| 739 | calTargetPower2GHT40[AR5416_EEP4K_NUM_2G_40_TARGET_POWERS]; |
| 740 | u8 ctlIndex[AR5416_EEP4K_NUM_CTLS]; |
| 741 | struct cal_ctl_data_4k ctlData[AR5416_EEP4K_NUM_CTLS]; |
| 742 | u8 padding; |
| 743 | } __packed; |
| 744 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 745 | struct ar5416IniArray { |
| 746 | u32 *ia_array; |
| 747 | u32 ia_rows; |
| 748 | u32 ia_columns; |
| 749 | }; |
| 750 | |
| 751 | #define INIT_INI_ARRAY(iniarray, array, rows, columns) do { \ |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 752 | (iniarray)->ia_array = (u32 *)(array); \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 753 | (iniarray)->ia_rows = (rows); \ |
| 754 | (iniarray)->ia_columns = (columns); \ |
| 755 | } while (0) |
| 756 | |
| 757 | #define INI_RA(iniarray, row, column) \ |
| 758 | (((iniarray)->ia_array)[(row) * ((iniarray)->ia_columns) + (column)]) |
| 759 | |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 760 | #define INIT_CAL(_perCal) do { \ |
| 761 | (_perCal)->calState = CAL_WAITING; \ |
| 762 | (_perCal)->calNext = NULL; \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 763 | } while (0) |
| 764 | |
| 765 | #define INSERT_CAL(_ahp, _perCal) \ |
| 766 | do { \ |
| 767 | if ((_ahp)->ah_cal_list_last == NULL) { \ |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 768 | (_ahp)->ah_cal_list = \ |
| 769 | (_ahp)->ah_cal_list_last = (_perCal); \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 770 | ((_ahp)->ah_cal_list_last)->calNext = (_perCal); \ |
| 771 | } else { \ |
| 772 | ((_ahp)->ah_cal_list_last)->calNext = (_perCal); \ |
| 773 | (_ahp)->ah_cal_list_last = (_perCal); \ |
| 774 | (_perCal)->calNext = (_ahp)->ah_cal_list; \ |
| 775 | } \ |
| 776 | } while (0) |
| 777 | |
| 778 | enum hal_cal_types { |
| 779 | ADC_DC_INIT_CAL = 0x1, |
| 780 | ADC_GAIN_CAL = 0x2, |
| 781 | ADC_DC_CAL = 0x4, |
| 782 | IQ_MISMATCH_CAL = 0x8 |
| 783 | }; |
| 784 | |
| 785 | enum hal_cal_state { |
| 786 | CAL_INACTIVE, |
| 787 | CAL_WAITING, |
| 788 | CAL_RUNNING, |
| 789 | CAL_DONE |
| 790 | }; |
| 791 | |
| 792 | #define MIN_CAL_SAMPLES 1 |
| 793 | #define MAX_CAL_SAMPLES 64 |
| 794 | #define INIT_LOG_COUNT 5 |
| 795 | #define PER_MIN_LOG_COUNT 2 |
| 796 | #define PER_MAX_LOG_COUNT 10 |
| 797 | |
| 798 | struct hal_percal_data { |
| 799 | enum hal_cal_types calType; |
| 800 | u32 calNumSamples; |
| 801 | u32 calCountMax; |
| 802 | void (*calCollect) (struct ath_hal *); |
| 803 | void (*calPostProc) (struct ath_hal *, u8); |
| 804 | }; |
| 805 | |
| 806 | struct hal_cal_list { |
| 807 | const struct hal_percal_data *calData; |
| 808 | enum hal_cal_state calState; |
| 809 | struct hal_cal_list *calNext; |
| 810 | }; |
| 811 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 812 | /* |
| 813 | * Enum to indentify the eeprom mappings |
| 814 | */ |
| 815 | enum hal_eep_map { |
| 816 | EEP_MAP_DEFAULT = 0x0, |
| 817 | EEP_MAP_4KBITS, |
| 818 | EEP_MAP_MAX |
| 819 | }; |
| 820 | |
| 821 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 822 | struct ath_hal_5416 { |
| 823 | struct ath_hal ah; |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 824 | union { |
| 825 | struct ar5416_eeprom_def def; |
| 826 | struct ar5416_eeprom_4k map4k; |
| 827 | } ah_eeprom; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 828 | struct ar5416Stats ah_stats; |
| 829 | struct ath9k_tx_queue_info ah_txq[ATH9K_NUM_TX_QUEUES]; |
| 830 | void __iomem *ah_cal_mem; |
| 831 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 832 | u8 ah_macaddr[ETH_ALEN]; |
| 833 | u8 ah_bssid[ETH_ALEN]; |
| 834 | u8 ah_bssidmask[ETH_ALEN]; |
| 835 | u16 ah_assocId; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 836 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 837 | int16_t ah_curchanRadIndex; |
| 838 | u32 ah_maskReg; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 839 | u32 ah_txOkInterruptMask; |
| 840 | u32 ah_txErrInterruptMask; |
| 841 | u32 ah_txDescInterruptMask; |
| 842 | u32 ah_txEolInterruptMask; |
| 843 | u32 ah_txUrnInterruptMask; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 844 | bool ah_chipFullSleep; |
| 845 | u32 ah_atimWindow; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 846 | u16 ah_antennaSwitchSwap; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 847 | enum ath9k_ant_setting ah_diversityControl; |
| 848 | |
| 849 | /* Calibration */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 850 | enum hal_cal_types ah_suppCals; |
| 851 | struct hal_cal_list ah_iqCalData; |
| 852 | struct hal_cal_list ah_adcGainCalData; |
| 853 | struct hal_cal_list ah_adcDcCalInitData; |
| 854 | struct hal_cal_list ah_adcDcCalData; |
| 855 | struct hal_cal_list *ah_cal_list; |
| 856 | struct hal_cal_list *ah_cal_list_last; |
| 857 | struct hal_cal_list *ah_cal_list_curr; |
| 858 | #define ah_totalPowerMeasI ah_Meas0.unsign |
| 859 | #define ah_totalPowerMeasQ ah_Meas1.unsign |
| 860 | #define ah_totalIqCorrMeas ah_Meas2.sign |
| 861 | #define ah_totalAdcIOddPhase ah_Meas0.unsign |
| 862 | #define ah_totalAdcIEvenPhase ah_Meas1.unsign |
| 863 | #define ah_totalAdcQOddPhase ah_Meas2.unsign |
| 864 | #define ah_totalAdcQEvenPhase ah_Meas3.unsign |
| 865 | #define ah_totalAdcDcOffsetIOddPhase ah_Meas0.sign |
| 866 | #define ah_totalAdcDcOffsetIEvenPhase ah_Meas1.sign |
| 867 | #define ah_totalAdcDcOffsetQOddPhase ah_Meas2.sign |
| 868 | #define ah_totalAdcDcOffsetQEvenPhase ah_Meas3.sign |
| 869 | union { |
| 870 | u32 unsign[AR5416_MAX_CHAINS]; |
| 871 | int32_t sign[AR5416_MAX_CHAINS]; |
| 872 | } ah_Meas0; |
| 873 | union { |
| 874 | u32 unsign[AR5416_MAX_CHAINS]; |
| 875 | int32_t sign[AR5416_MAX_CHAINS]; |
| 876 | } ah_Meas1; |
| 877 | union { |
| 878 | u32 unsign[AR5416_MAX_CHAINS]; |
| 879 | int32_t sign[AR5416_MAX_CHAINS]; |
| 880 | } ah_Meas2; |
| 881 | union { |
| 882 | u32 unsign[AR5416_MAX_CHAINS]; |
| 883 | int32_t sign[AR5416_MAX_CHAINS]; |
| 884 | } ah_Meas3; |
| 885 | u16 ah_CalSamples; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 886 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 887 | u32 ah_staId1Defaults; |
| 888 | u32 ah_miscMode; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 889 | enum { |
| 890 | AUTO_32KHZ, |
| 891 | USE_32KHZ, |
| 892 | DONT_USE_32KHZ, |
| 893 | } ah_enable32kHzClock; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 894 | |
| 895 | /* RF */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 896 | u32 *ah_analogBank0Data; |
| 897 | u32 *ah_analogBank1Data; |
| 898 | u32 *ah_analogBank2Data; |
| 899 | u32 *ah_analogBank3Data; |
| 900 | u32 *ah_analogBank6Data; |
| 901 | u32 *ah_analogBank6TPCData; |
| 902 | u32 *ah_analogBank7Data; |
| 903 | u32 *ah_addac5416_21; |
| 904 | u32 *ah_bank6Temp; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 905 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 906 | int16_t ah_txPowerIndexOffset; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 907 | u32 ah_beaconInterval; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 908 | u32 ah_slottime; |
| 909 | u32 ah_acktimeout; |
| 910 | u32 ah_ctstimeout; |
| 911 | u32 ah_globaltxtimeout; |
| 912 | u8 ah_gBeaconRate; |
| 913 | u32 ah_gpioSelect; |
| 914 | u32 ah_polarity; |
| 915 | u32 ah_gpioBit; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 916 | |
| 917 | /* ANI */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 918 | u32 ah_procPhyErr; |
| 919 | bool ah_hasHwPhyCounters; |
| 920 | u32 ah_aniPeriod; |
| 921 | struct ar5416AniState *ah_curani; |
| 922 | struct ar5416AniState ah_ani[255]; |
| 923 | int ah_totalSizeDesired[5]; |
| 924 | int ah_coarseHigh[5]; |
| 925 | int ah_coarseLow[5]; |
| 926 | int ah_firpwr[5]; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 927 | enum ath9k_ani_cmd ah_ani_function; |
| 928 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 929 | u32 ah_intrTxqs; |
| 930 | bool ah_intrMitigation; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 931 | enum ath9k_ht_extprotspacing ah_extprotspacing; |
| 932 | u8 ah_txchainmask; |
| 933 | u8 ah_rxchainmask; |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 934 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 935 | struct ar5416IniArray ah_iniModes; |
| 936 | struct ar5416IniArray ah_iniCommon; |
| 937 | struct ar5416IniArray ah_iniBank0; |
| 938 | struct ar5416IniArray ah_iniBB_RfGain; |
| 939 | struct ar5416IniArray ah_iniBank1; |
| 940 | struct ar5416IniArray ah_iniBank2; |
| 941 | struct ar5416IniArray ah_iniBank3; |
| 942 | struct ar5416IniArray ah_iniBank6; |
| 943 | struct ar5416IniArray ah_iniBank6TPC; |
| 944 | struct ar5416IniArray ah_iniBank7; |
| 945 | struct ar5416IniArray ah_iniAddac; |
| 946 | struct ar5416IniArray ah_iniPcieSerdes; |
| 947 | struct ar5416IniArray ah_iniModesAdditional; |
Senthil Balasubramanian | 9f80420 | 2008-11-13 17:58:41 +0530 | [diff] [blame] | 948 | struct ar5416IniArray ah_iniModesRxGain; |
| 949 | struct ar5416IniArray ah_iniModesTxGain; |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 950 | /* To indicate EEPROM mapping used */ |
| 951 | enum hal_eep_map ah_eep_map; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 952 | }; |
| 953 | #define AH5416(_ah) ((struct ath_hal_5416 *)(_ah)) |
| 954 | |
| 955 | #define FREQ2FBIN(x, y) ((y) ? ((x) - 2300) : (((x) - 4800) / 5)) |
| 956 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 957 | #define ar5416RfDetach(ah) do { \ |
| 958 | if (AH5416(ah)->ah_rfHal.rfDetach != NULL) \ |
| 959 | AH5416(ah)->ah_rfHal.rfDetach(ah); \ |
| 960 | } while (0) |
| 961 | |
| 962 | #define ath9k_hw_use_flash(_ah) \ |
| 963 | (!(_ah->ah_flags & AH_USE_EEPROM)) |
| 964 | |
| 965 | |
| 966 | #define DO_DELAY(x) do { \ |
| 967 | if ((++(x) % 64) == 0) \ |
| 968 | udelay(1); \ |
| 969 | } while (0) |
| 970 | |
| 971 | #define REG_WRITE_ARRAY(iniarray, column, regWr) do { \ |
| 972 | int r; \ |
| 973 | for (r = 0; r < ((iniarray)->ia_rows); r++) { \ |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 974 | REG_WRITE(ah, INI_RA((iniarray), (r), 0), \ |
| 975 | INI_RA((iniarray), r, (column))); \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 976 | DO_DELAY(regWr); \ |
| 977 | } \ |
| 978 | } while (0) |
| 979 | |
| 980 | #define BASE_ACTIVATE_DELAY 100 |
| 981 | #define RTC_PLL_SETTLE_DELAY 1000 |
| 982 | #define COEF_SCALE_S 24 |
| 983 | #define HT40_CHANNEL_CENTER_SHIFT 10 |
| 984 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 985 | #define AR5416_EEPROM_MAGIC_OFFSET 0x0 |
| 986 | |
| 987 | #define AR5416_EEPROM_S 2 |
| 988 | #define AR5416_EEPROM_OFFSET 0x2000 |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 989 | #define AR5416_EEPROM_START_ADDR \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 990 | (AR_SREV_9100(ah)) ? 0x1fff1000 : 0x503f1200 |
| 991 | #define AR5416_EEPROM_MAX 0xae0 |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 992 | #define ar5416_get_eep_ver(_ahp) \ |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 993 | (((_ahp)->ah_eeprom.def.baseEepHeader.version >> 12) & 0xF) |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 994 | #define ar5416_get_eep_rev(_ahp) \ |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 995 | (((_ahp)->ah_eeprom.def.baseEepHeader.version) & 0xFFF) |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 996 | #define ar5416_get_ntxchains(_txchainmask) \ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 997 | (((_txchainmask >> 2) & 1) + \ |
| 998 | ((_txchainmask >> 1) & 1) + (_txchainmask & 1)) |
| 999 | |
Senthil Balasubramanian | e759407 | 2008-12-08 19:43:48 +0530 | [diff] [blame] | 1000 | /* EEPROM 4K bit map definations */ |
| 1001 | #define ar5416_get_eep4k_ver(_ahp) \ |
| 1002 | (((_ahp)->ah_eeprom.map4k.baseEepHeader.version >> 12) & 0xF) |
| 1003 | #define ar5416_get_eep4k_rev(_ahp) \ |
| 1004 | (((_ahp)->ah_eeprom.map4k.baseEepHeader.version) & 0xFFF) |
| 1005 | |
| 1006 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1007 | #ifdef __BIG_ENDIAN |
| 1008 | #define AR5416_EEPROM_MAGIC 0x5aa5 |
| 1009 | #else |
| 1010 | #define AR5416_EEPROM_MAGIC 0xa55a |
| 1011 | #endif |
| 1012 | |
| 1013 | #define ATH9K_POW_SM(_r, _s) (((_r) & 0x3f) << (_s)) |
| 1014 | |
| 1015 | #define ATH9K_ANTENNA0_CHAINMASK 0x1 |
| 1016 | #define ATH9K_ANTENNA1_CHAINMASK 0x2 |
| 1017 | |
| 1018 | #define ATH9K_NUM_DMA_DEBUG_REGS 8 |
| 1019 | #define ATH9K_NUM_QUEUES 10 |
| 1020 | |
| 1021 | #define HAL_NOISE_IMMUNE_MAX 4 |
| 1022 | #define HAL_SPUR_IMMUNE_MAX 7 |
| 1023 | #define HAL_FIRST_STEP_MAX 2 |
| 1024 | |
| 1025 | #define ATH9K_ANI_OFDM_TRIG_HIGH 500 |
| 1026 | #define ATH9K_ANI_OFDM_TRIG_LOW 200 |
| 1027 | #define ATH9K_ANI_CCK_TRIG_HIGH 200 |
| 1028 | #define ATH9K_ANI_CCK_TRIG_LOW 100 |
| 1029 | #define ATH9K_ANI_NOISE_IMMUNE_LVL 4 |
| 1030 | #define ATH9K_ANI_USE_OFDM_WEAK_SIG true |
| 1031 | #define ATH9K_ANI_CCK_WEAK_SIG_THR false |
| 1032 | #define ATH9K_ANI_SPUR_IMMUNE_LVL 7 |
| 1033 | #define ATH9K_ANI_FIRSTEP_LVL 0 |
| 1034 | #define ATH9K_ANI_RSSI_THR_HIGH 40 |
| 1035 | #define ATH9K_ANI_RSSI_THR_LOW 7 |
| 1036 | #define ATH9K_ANI_PERIOD 100 |
| 1037 | |
| 1038 | #define AR_GPIOD_MASK 0x00001FFF |
| 1039 | #define AR_GPIO_BIT(_gpio) (1 << (_gpio)) |
| 1040 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1041 | #define HAL_EP_RND(x, mul) \ |
| 1042 | ((((x)%(mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul)) |
| 1043 | #define BEACON_RSSI(ahp) \ |
| 1044 | HAL_EP_RND(ahp->ah_stats.ast_nodestats.ns_avgbrssi, \ |
| 1045 | ATH9K_RSSI_EP_MULTIPLIER) |
| 1046 | |
| 1047 | #define ah_mibStats ah_stats.ast_mibstats |
| 1048 | |
| 1049 | #define AH_TIMEOUT 100000 |
| 1050 | #define AH_TIME_QUANTUM 10 |
| 1051 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1052 | #define AR_KEYTABLE_SIZE 128 |
| 1053 | #define POWER_UP_TIME 200000 |
| 1054 | |
| 1055 | #define EXT_ADDITIVE (0x8000) |
| 1056 | #define CTL_11A_EXT (CTL_11A | EXT_ADDITIVE) |
| 1057 | #define CTL_11G_EXT (CTL_11G | EXT_ADDITIVE) |
| 1058 | #define CTL_11B_EXT (CTL_11B | EXT_ADDITIVE) |
| 1059 | |
| 1060 | #define SUB_NUM_CTL_MODES_AT_5G_40 2 |
| 1061 | #define SUB_NUM_CTL_MODES_AT_2G_40 3 |
| 1062 | #define SPUR_RSSI_THRESH 40 |
| 1063 | |
| 1064 | #define TU_TO_USEC(_tu) ((_tu) << 10) |
| 1065 | |
| 1066 | #define CAB_TIMEOUT_VAL 10 |
| 1067 | #define BEACON_TIMEOUT_VAL 10 |
| 1068 | #define MIN_BEACON_TIMEOUT_VAL 1 |
| 1069 | #define SLEEP_SLOP 3 |
| 1070 | |
| 1071 | #define CCK_SIFS_TIME 10 |
| 1072 | #define CCK_PREAMBLE_BITS 144 |
| 1073 | #define CCK_PLCP_BITS 48 |
| 1074 | |
| 1075 | #define OFDM_SIFS_TIME 16 |
| 1076 | #define OFDM_PREAMBLE_TIME 20 |
| 1077 | #define OFDM_PLCP_BITS 22 |
| 1078 | #define OFDM_SYMBOL_TIME 4 |
| 1079 | |
| 1080 | #define OFDM_SIFS_TIME_HALF 32 |
| 1081 | #define OFDM_PREAMBLE_TIME_HALF 40 |
| 1082 | #define OFDM_PLCP_BITS_HALF 22 |
| 1083 | #define OFDM_SYMBOL_TIME_HALF 8 |
| 1084 | |
| 1085 | #define OFDM_SIFS_TIME_QUARTER 64 |
| 1086 | #define OFDM_PREAMBLE_TIME_QUARTER 80 |
| 1087 | #define OFDM_PLCP_BITS_QUARTER 22 |
| 1088 | #define OFDM_SYMBOL_TIME_QUARTER 16 |
| 1089 | |
Sujith | f1dc560 | 2008-10-29 10:16:30 +0530 | [diff] [blame] | 1090 | u32 ath9k_hw_get_eeprom(struct ath_hal *ah, |
Sujith | 6a2b9e8 | 2008-08-11 14:04:32 +0530 | [diff] [blame] | 1091 | enum eeprom_param param); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1092 | |
| 1093 | #endif |