eeprom_def.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499
  1. /*
  2. * Copyright (c) 2008-2009 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. #include "hw.h"
  17. #include "ar9002_phy.h"
  18. static void ath9k_get_txgain_index(struct ath_hw *ah,
  19. struct ath9k_channel *chan,
  20. struct calDataPerFreqOpLoop *rawDatasetOpLoop,
  21. u8 *calChans, u16 availPiers, u8 *pwr, u8 *pcdacIdx)
  22. {
  23. u8 pcdac, i = 0;
  24. u16 idxL = 0, idxR = 0, numPiers;
  25. bool match;
  26. struct chan_centers centers;
  27. ath9k_hw_get_channel_centers(ah, chan, &centers);
  28. for (numPiers = 0; numPiers < availPiers; numPiers++)
  29. if (calChans[numPiers] == AR5416_BCHAN_UNUSED)
  30. break;
  31. match = ath9k_hw_get_lower_upper_index(
  32. (u8)FREQ2FBIN(centers.synth_center, IS_CHAN_2GHZ(chan)),
  33. calChans, numPiers, &idxL, &idxR);
  34. if (match) {
  35. pcdac = rawDatasetOpLoop[idxL].pcdac[0][0];
  36. *pwr = rawDatasetOpLoop[idxL].pwrPdg[0][0];
  37. } else {
  38. pcdac = rawDatasetOpLoop[idxR].pcdac[0][0];
  39. *pwr = (rawDatasetOpLoop[idxL].pwrPdg[0][0] +
  40. rawDatasetOpLoop[idxR].pwrPdg[0][0])/2;
  41. }
  42. while (pcdac > ah->originalGain[i] &&
  43. i < (AR9280_TX_GAIN_TABLE_SIZE - 1))
  44. i++;
  45. *pcdacIdx = i;
  46. }
  47. static void ath9k_olc_get_pdadcs(struct ath_hw *ah,
  48. u32 initTxGain,
  49. int txPower,
  50. u8 *pPDADCValues)
  51. {
  52. u32 i;
  53. u32 offset;
  54. REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL6_0,
  55. AR_PHY_TX_PWRCTRL_ERR_EST_MODE, 3);
  56. REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL6_1,
  57. AR_PHY_TX_PWRCTRL_ERR_EST_MODE, 3);
  58. REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL7,
  59. AR_PHY_TX_PWRCTRL_INIT_TX_GAIN, initTxGain);
  60. offset = txPower;
  61. for (i = 0; i < AR5416_NUM_PDADC_VALUES; i++)
  62. if (i < offset)
  63. pPDADCValues[i] = 0x0;
  64. else
  65. pPDADCValues[i] = 0xFF;
  66. }
  67. static int ath9k_hw_def_get_eeprom_ver(struct ath_hw *ah)
  68. {
  69. return ((ah->eeprom.def.baseEepHeader.version >> 12) & 0xF);
  70. }
  71. static int ath9k_hw_def_get_eeprom_rev(struct ath_hw *ah)
  72. {
  73. return ((ah->eeprom.def.baseEepHeader.version) & 0xFFF);
  74. }
  75. static bool ath9k_hw_def_fill_eeprom(struct ath_hw *ah)
  76. {
  77. #define SIZE_EEPROM_DEF (sizeof(struct ar5416_eeprom_def) / sizeof(u16))
  78. struct ath_common *common = ath9k_hw_common(ah);
  79. u16 *eep_data = (u16 *)&ah->eeprom.def;
  80. int addr, ar5416_eep_start_loc = 0x100;
  81. for (addr = 0; addr < SIZE_EEPROM_DEF; addr++) {
  82. if (!ath9k_hw_nvram_read(common, addr + ar5416_eep_start_loc,
  83. eep_data)) {
  84. ath_err(ath9k_hw_common(ah),
  85. "Unable to read eeprom region\n");
  86. return false;
  87. }
  88. eep_data++;
  89. }
  90. return true;
  91. #undef SIZE_EEPROM_DEF
  92. }
  93. static int ath9k_hw_def_check_eeprom(struct ath_hw *ah)
  94. {
  95. struct ar5416_eeprom_def *eep =
  96. (struct ar5416_eeprom_def *) &ah->eeprom.def;
  97. struct ath_common *common = ath9k_hw_common(ah);
  98. u16 *eepdata, temp, magic, magic2;
  99. u32 sum = 0, el;
  100. bool need_swap = false;
  101. int i, addr, size;
  102. if (!ath9k_hw_nvram_read(common, AR5416_EEPROM_MAGIC_OFFSET, &magic)) {
  103. ath_err(common, "Reading Magic # failed\n");
  104. return false;
  105. }
  106. if (!ath9k_hw_use_flash(ah)) {
  107. ath_dbg(common, ATH_DBG_EEPROM,
  108. "Read Magic = 0x%04X\n", magic);
  109. if (magic != AR5416_EEPROM_MAGIC) {
  110. magic2 = swab16(magic);
  111. if (magic2 == AR5416_EEPROM_MAGIC) {
  112. size = sizeof(struct ar5416_eeprom_def);
  113. need_swap = true;
  114. eepdata = (u16 *) (&ah->eeprom);
  115. for (addr = 0; addr < size / sizeof(u16); addr++) {
  116. temp = swab16(*eepdata);
  117. *eepdata = temp;
  118. eepdata++;
  119. }
  120. } else {
  121. ath_err(common,
  122. "Invalid EEPROM Magic. Endianness mismatch.\n");
  123. return -EINVAL;
  124. }
  125. }
  126. }
  127. ath_dbg(common, ATH_DBG_EEPROM, "need_swap = %s.\n",
  128. need_swap ? "True" : "False");
  129. if (need_swap)
  130. el = swab16(ah->eeprom.def.baseEepHeader.length);
  131. else
  132. el = ah->eeprom.def.baseEepHeader.length;
  133. if (el > sizeof(struct ar5416_eeprom_def))
  134. el = sizeof(struct ar5416_eeprom_def) / sizeof(u16);
  135. else
  136. el = el / sizeof(u16);
  137. eepdata = (u16 *)(&ah->eeprom);
  138. for (i = 0; i < el; i++)
  139. sum ^= *eepdata++;
  140. if (need_swap) {
  141. u32 integer, j;
  142. u16 word;
  143. ath_dbg(common, ATH_DBG_EEPROM,
  144. "EEPROM Endianness is not native.. Changing.\n");
  145. word = swab16(eep->baseEepHeader.length);
  146. eep->baseEepHeader.length = word;
  147. word = swab16(eep->baseEepHeader.checksum);
  148. eep->baseEepHeader.checksum = word;
  149. word = swab16(eep->baseEepHeader.version);
  150. eep->baseEepHeader.version = word;
  151. word = swab16(eep->baseEepHeader.regDmn[0]);
  152. eep->baseEepHeader.regDmn[0] = word;
  153. word = swab16(eep->baseEepHeader.regDmn[1]);
  154. eep->baseEepHeader.regDmn[1] = word;
  155. word = swab16(eep->baseEepHeader.rfSilent);
  156. eep->baseEepHeader.rfSilent = word;
  157. word = swab16(eep->baseEepHeader.blueToothOptions);
  158. eep->baseEepHeader.blueToothOptions = word;
  159. word = swab16(eep->baseEepHeader.deviceCap);
  160. eep->baseEepHeader.deviceCap = word;
  161. for (j = 0; j < ARRAY_SIZE(eep->modalHeader); j++) {
  162. struct modal_eep_header *pModal =
  163. &eep->modalHeader[j];
  164. integer = swab32(pModal->antCtrlCommon);
  165. pModal->antCtrlCommon = integer;
  166. for (i = 0; i < AR5416_MAX_CHAINS; i++) {
  167. integer = swab32(pModal->antCtrlChain[i]);
  168. pModal->antCtrlChain[i] = integer;
  169. }
  170. for (i = 0; i < AR5416_EEPROM_MODAL_SPURS; i++) {
  171. word = swab16(pModal->spurChans[i].spurChan);
  172. pModal->spurChans[i].spurChan = word;
  173. }
  174. }
  175. }
  176. if (sum != 0xffff || ah->eep_ops->get_eeprom_ver(ah) != AR5416_EEP_VER ||
  177. ah->eep_ops->get_eeprom_rev(ah) < AR5416_EEP_NO_BACK_VER) {
  178. ath_err(common, "Bad EEPROM checksum 0x%x or revision 0x%04x\n",
  179. sum, ah->eep_ops->get_eeprom_ver(ah));
  180. return -EINVAL;
  181. }
  182. /* Enable fixup for AR_AN_TOP2 if necessary */
  183. if (AR_SREV_9280_20_OR_LATER(ah) &&
  184. (eep->baseEepHeader.version & 0xff) > 0x0a &&
  185. eep->baseEepHeader.pwdclkind == 0)
  186. ah->need_an_top2_fixup = 1;
  187. return 0;
  188. }
  189. static u32 ath9k_hw_def_get_eeprom(struct ath_hw *ah,
  190. enum eeprom_param param)
  191. {
  192. struct ar5416_eeprom_def *eep = &ah->eeprom.def;
  193. struct modal_eep_header *pModal = eep->modalHeader;
  194. struct base_eep_header *pBase = &eep->baseEepHeader;
  195. switch (param) {
  196. case EEP_NFTHRESH_5:
  197. return pModal[0].noiseFloorThreshCh[0];
  198. case EEP_NFTHRESH_2:
  199. return pModal[1].noiseFloorThreshCh[0];
  200. case EEP_MAC_LSW:
  201. return pBase->macAddr[0] << 8 | pBase->macAddr[1];
  202. case EEP_MAC_MID:
  203. return pBase->macAddr[2] << 8 | pBase->macAddr[3];
  204. case EEP_MAC_MSW:
  205. return pBase->macAddr[4] << 8 | pBase->macAddr[5];
  206. case EEP_REG_0:
  207. return pBase->regDmn[0];
  208. case EEP_REG_1:
  209. return pBase->regDmn[1];
  210. case EEP_OP_CAP:
  211. return pBase->deviceCap;
  212. case EEP_OP_MODE:
  213. return pBase->opCapFlags;
  214. case EEP_RF_SILENT:
  215. return pBase->rfSilent;
  216. case EEP_OB_5:
  217. return pModal[0].ob;
  218. case EEP_DB_5:
  219. return pModal[0].db;
  220. case EEP_OB_2:
  221. return pModal[1].ob;
  222. case EEP_DB_2:
  223. return pModal[1].db;
  224. case EEP_MINOR_REV:
  225. return AR5416_VER_MASK;
  226. case EEP_TX_MASK:
  227. return pBase->txMask;
  228. case EEP_RX_MASK:
  229. return pBase->rxMask;
  230. case EEP_FSTCLK_5G:
  231. return pBase->fastClk5g;
  232. case EEP_RXGAIN_TYPE:
  233. return pBase->rxGainType;
  234. case EEP_TXGAIN_TYPE:
  235. return pBase->txGainType;
  236. case EEP_OL_PWRCTRL:
  237. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_19)
  238. return pBase->openLoopPwrCntl ? true : false;
  239. else
  240. return false;
  241. case EEP_RC_CHAIN_MASK:
  242. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_19)
  243. return pBase->rcChainMask;
  244. else
  245. return 0;
  246. case EEP_DAC_HPWR_5G:
  247. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_20)
  248. return pBase->dacHiPwrMode_5G;
  249. else
  250. return 0;
  251. case EEP_FRAC_N_5G:
  252. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_22)
  253. return pBase->frac_n_5g;
  254. else
  255. return 0;
  256. case EEP_PWR_TABLE_OFFSET:
  257. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_21)
  258. return pBase->pwr_table_offset;
  259. else
  260. return AR5416_PWR_TABLE_OFFSET_DB;
  261. default:
  262. return 0;
  263. }
  264. }
  265. static void ath9k_hw_def_set_gain(struct ath_hw *ah,
  266. struct modal_eep_header *pModal,
  267. struct ar5416_eeprom_def *eep,
  268. u8 txRxAttenLocal, int regChainOffset, int i)
  269. {
  270. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_3) {
  271. txRxAttenLocal = pModal->txRxAttenCh[i];
  272. if (AR_SREV_9280_20_OR_LATER(ah)) {
  273. REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
  274. AR_PHY_GAIN_2GHZ_XATTEN1_MARGIN,
  275. pModal->bswMargin[i]);
  276. REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
  277. AR_PHY_GAIN_2GHZ_XATTEN1_DB,
  278. pModal->bswAtten[i]);
  279. REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
  280. AR_PHY_GAIN_2GHZ_XATTEN2_MARGIN,
  281. pModal->xatten2Margin[i]);
  282. REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
  283. AR_PHY_GAIN_2GHZ_XATTEN2_DB,
  284. pModal->xatten2Db[i]);
  285. } else {
  286. REG_WRITE(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
  287. (REG_READ(ah, AR_PHY_GAIN_2GHZ + regChainOffset) &
  288. ~AR_PHY_GAIN_2GHZ_BSW_MARGIN)
  289. | SM(pModal-> bswMargin[i],
  290. AR_PHY_GAIN_2GHZ_BSW_MARGIN));
  291. REG_WRITE(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
  292. (REG_READ(ah, AR_PHY_GAIN_2GHZ + regChainOffset) &
  293. ~AR_PHY_GAIN_2GHZ_BSW_ATTEN)
  294. | SM(pModal->bswAtten[i],
  295. AR_PHY_GAIN_2GHZ_BSW_ATTEN));
  296. }
  297. }
  298. if (AR_SREV_9280_20_OR_LATER(ah)) {
  299. REG_RMW_FIELD(ah,
  300. AR_PHY_RXGAIN + regChainOffset,
  301. AR9280_PHY_RXGAIN_TXRX_ATTEN, txRxAttenLocal);
  302. REG_RMW_FIELD(ah,
  303. AR_PHY_RXGAIN + regChainOffset,
  304. AR9280_PHY_RXGAIN_TXRX_MARGIN, pModal->rxTxMarginCh[i]);
  305. } else {
  306. REG_WRITE(ah,
  307. AR_PHY_RXGAIN + regChainOffset,
  308. (REG_READ(ah, AR_PHY_RXGAIN + regChainOffset) &
  309. ~AR_PHY_RXGAIN_TXRX_ATTEN)
  310. | SM(txRxAttenLocal, AR_PHY_RXGAIN_TXRX_ATTEN));
  311. REG_WRITE(ah,
  312. AR_PHY_GAIN_2GHZ + regChainOffset,
  313. (REG_READ(ah, AR_PHY_GAIN_2GHZ + regChainOffset) &
  314. ~AR_PHY_GAIN_2GHZ_RXTX_MARGIN) |
  315. SM(pModal->rxTxMarginCh[i], AR_PHY_GAIN_2GHZ_RXTX_MARGIN));
  316. }
  317. }
  318. static void ath9k_hw_def_set_board_values(struct ath_hw *ah,
  319. struct ath9k_channel *chan)
  320. {
  321. struct modal_eep_header *pModal;
  322. struct ar5416_eeprom_def *eep = &ah->eeprom.def;
  323. int i, regChainOffset;
  324. u8 txRxAttenLocal;
  325. pModal = &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
  326. txRxAttenLocal = IS_CHAN_2GHZ(chan) ? 23 : 44;
  327. REG_WRITE(ah, AR_PHY_SWITCH_COM,
  328. ah->eep_ops->get_eeprom_antenna_cfg(ah, chan));
  329. for (i = 0; i < AR5416_MAX_CHAINS; i++) {
  330. if (AR_SREV_9280(ah)) {
  331. if (i >= 2)
  332. break;
  333. }
  334. if (AR_SREV_5416_20_OR_LATER(ah) &&
  335. (ah->rxchainmask == 5 || ah->txchainmask == 5) && (i != 0))
  336. regChainOffset = (i == 1) ? 0x2000 : 0x1000;
  337. else
  338. regChainOffset = i * 0x1000;
  339. REG_WRITE(ah, AR_PHY_SWITCH_CHAIN_0 + regChainOffset,
  340. pModal->antCtrlChain[i]);
  341. REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset,
  342. (REG_READ(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset) &
  343. ~(AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF |
  344. AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF)) |
  345. SM(pModal->iqCalICh[i],
  346. AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF) |
  347. SM(pModal->iqCalQCh[i],
  348. AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF));
  349. if ((i == 0) || AR_SREV_5416_20_OR_LATER(ah))
  350. ath9k_hw_def_set_gain(ah, pModal, eep, txRxAttenLocal,
  351. regChainOffset, i);
  352. }
  353. if (AR_SREV_9280_20_OR_LATER(ah)) {
  354. if (IS_CHAN_2GHZ(chan)) {
  355. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH0,
  356. AR_AN_RF2G1_CH0_OB,
  357. AR_AN_RF2G1_CH0_OB_S,
  358. pModal->ob);
  359. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH0,
  360. AR_AN_RF2G1_CH0_DB,
  361. AR_AN_RF2G1_CH0_DB_S,
  362. pModal->db);
  363. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH1,
  364. AR_AN_RF2G1_CH1_OB,
  365. AR_AN_RF2G1_CH1_OB_S,
  366. pModal->ob_ch1);
  367. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH1,
  368. AR_AN_RF2G1_CH1_DB,
  369. AR_AN_RF2G1_CH1_DB_S,
  370. pModal->db_ch1);
  371. } else {
  372. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH0,
  373. AR_AN_RF5G1_CH0_OB5,
  374. AR_AN_RF5G1_CH0_OB5_S,
  375. pModal->ob);
  376. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH0,
  377. AR_AN_RF5G1_CH0_DB5,
  378. AR_AN_RF5G1_CH0_DB5_S,
  379. pModal->db);
  380. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH1,
  381. AR_AN_RF5G1_CH1_OB5,
  382. AR_AN_RF5G1_CH1_OB5_S,
  383. pModal->ob_ch1);
  384. ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH1,
  385. AR_AN_RF5G1_CH1_DB5,
  386. AR_AN_RF5G1_CH1_DB5_S,
  387. pModal->db_ch1);
  388. }
  389. ath9k_hw_analog_shift_rmw(ah, AR_AN_TOP2,
  390. AR_AN_TOP2_XPABIAS_LVL,
  391. AR_AN_TOP2_XPABIAS_LVL_S,
  392. pModal->xpaBiasLvl);
  393. ath9k_hw_analog_shift_rmw(ah, AR_AN_TOP2,
  394. AR_AN_TOP2_LOCALBIAS,
  395. AR_AN_TOP2_LOCALBIAS_S,
  396. !!(pModal->lna_ctl &
  397. LNA_CTL_LOCAL_BIAS));
  398. REG_RMW_FIELD(ah, AR_PHY_XPA_CFG, AR_PHY_FORCE_XPA_CFG,
  399. !!(pModal->lna_ctl & LNA_CTL_FORCE_XPA));
  400. }
  401. REG_RMW_FIELD(ah, AR_PHY_SETTLING, AR_PHY_SETTLING_SWITCH,
  402. pModal->switchSettling);
  403. REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ, AR_PHY_DESIRED_SZ_ADC,
  404. pModal->adcDesiredSize);
  405. if (!AR_SREV_9280_20_OR_LATER(ah))
  406. REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ,
  407. AR_PHY_DESIRED_SZ_PGA,
  408. pModal->pgaDesiredSize);
  409. REG_WRITE(ah, AR_PHY_RF_CTL4,
  410. SM(pModal->txEndToXpaOff, AR_PHY_RF_CTL4_TX_END_XPAA_OFF)
  411. | SM(pModal->txEndToXpaOff,
  412. AR_PHY_RF_CTL4_TX_END_XPAB_OFF)
  413. | SM(pModal->txFrameToXpaOn,
  414. AR_PHY_RF_CTL4_FRAME_XPAA_ON)
  415. | SM(pModal->txFrameToXpaOn,
  416. AR_PHY_RF_CTL4_FRAME_XPAB_ON));
  417. REG_RMW_FIELD(ah, AR_PHY_RF_CTL3, AR_PHY_TX_END_TO_A2_RX_ON,
  418. pModal->txEndToRxOn);
  419. if (AR_SREV_9280_20_OR_LATER(ah)) {
  420. REG_RMW_FIELD(ah, AR_PHY_CCA, AR9280_PHY_CCA_THRESH62,
  421. pModal->thresh62);
  422. REG_RMW_FIELD(ah, AR_PHY_EXT_CCA0,
  423. AR_PHY_EXT_CCA0_THRESH62,
  424. pModal->thresh62);
  425. } else {
  426. REG_RMW_FIELD(ah, AR_PHY_CCA, AR_PHY_CCA_THRESH62,
  427. pModal->thresh62);
  428. REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
  429. AR_PHY_EXT_CCA_THRESH62,
  430. pModal->thresh62);
  431. }
  432. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_2) {
  433. REG_RMW_FIELD(ah, AR_PHY_RF_CTL2,
  434. AR_PHY_TX_END_DATA_START,
  435. pModal->txFrameToDataStart);
  436. REG_RMW_FIELD(ah, AR_PHY_RF_CTL2, AR_PHY_TX_END_PA_ON,
  437. pModal->txFrameToPaOn);
  438. }
  439. if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_3) {
  440. if (IS_CHAN_HT40(chan))
  441. REG_RMW_FIELD(ah, AR_PHY_SETTLING,
  442. AR_PHY_SETTLING_SWITCH,
  443. pModal->swSettleHt40);
  444. }
  445. if (AR_SREV_9280_20_OR_LATER(ah) &&
  446. AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_19)
  447. REG_RMW_FIELD(ah, AR_PHY_CCK_TX_CTRL,
  448. AR_PHY_CCK_TX_CTRL_TX_DAC_SCALE_CCK,
  449. pModal->miscBits);
  450. if (AR_SREV_9280_20(ah) && AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_20) {
  451. if (IS_CHAN_2GHZ(chan))
  452. REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE,
  453. eep->baseEepHeader.dacLpMode);
  454. else if (eep->baseEepHeader.dacHiPwrMode_5G)
  455. REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE, 0);
  456. else
  457. REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE,
  458. eep->baseEepHeader.dacLpMode);
  459. udelay(100);
  460. REG_RMW_FIELD(ah, AR_PHY_FRAME_CTL, AR_PHY_FRAME_CTL_TX_CLIP,
  461. pModal->miscBits >> 2);
  462. REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL9,
  463. AR_PHY_TX_DESIRED_SCALE_CCK,
  464. eep->baseEepHeader.desiredScaleCCK);
  465. }
  466. }
  467. static void ath9k_hw_def_set_addac(struct ath_hw *ah,
  468. struct ath9k_channel *chan)
  469. {
  470. #define XPA_LVL_FREQ(cnt) (pModal->xpaBiasLvlFreq[cnt])
  471. struct modal_eep_header *pModal;
  472. struct ar5416_eeprom_def *eep = &ah->eeprom.def;
  473. u8 biaslevel;
  474. if (ah->hw_version.macVersion != AR_SREV_VERSION_9160)
  475. return;
  476. if (ah->eep_ops->get_eeprom_rev(ah) < AR5416_EEP_MINOR_VER_7)
  477. return;
  478. pModal = &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
  479. if (pModal->xpaBiasLvl != 0xff) {
  480. biaslevel = pModal->xpaBiasLvl;
  481. } else {
  482. u16 resetFreqBin, freqBin, freqCount = 0;
  483. struct chan_centers centers;
  484. ath9k_hw_get_channel_centers(ah, chan, &centers);
  485. resetFreqBin = FREQ2FBIN(centers.synth_center,
  486. IS_CHAN_2GHZ(chan));
  487. freqBin = XPA_LVL_FREQ(0) & 0xff;
  488. biaslevel = (u8) (XPA_LVL_FREQ(0) >> 14);
  489. freqCount++;
  490. while (freqCount < 3) {
  491. if (XPA_LVL_FREQ(freqCount) == 0x0)
  492. break;
  493. freqBin = XPA_LVL_FREQ(freqCount) & 0xff;
  494. if (resetFreqBin >= freqBin)
  495. biaslevel = (u8)(XPA_LVL_FREQ(freqCount) >> 14);
  496. else
  497. break;
  498. freqCount++;
  499. }
  500. }
  501. if (IS_CHAN_2GHZ(chan)) {
  502. INI_RA(&ah->iniAddac, 7, 1) = (INI_RA(&ah->iniAddac,
  503. 7, 1) & (~0x18)) | biaslevel << 3;
  504. } else {
  505. INI_RA(&ah->iniAddac, 6, 1) = (INI_RA(&ah->iniAddac,
  506. 6, 1) & (~0xc0)) | biaslevel << 6;
  507. }
  508. #undef XPA_LVL_FREQ
  509. }
  510. static void ath9k_hw_get_def_gain_boundaries_pdadcs(struct ath_hw *ah,
  511. struct ath9k_channel *chan,
  512. struct cal_data_per_freq *pRawDataSet,
  513. u8 *bChans, u16 availPiers,
  514. u16 tPdGainOverlap,
  515. u16 *pPdGainBoundaries, u8 *pPDADCValues,
  516. u16 numXpdGains)
  517. {
  518. int i, j, k;
  519. int16_t ss;
  520. u16 idxL = 0, idxR = 0, numPiers;
  521. static u8 vpdTableL[AR5416_NUM_PD_GAINS]
  522. [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
  523. static u8 vpdTableR[AR5416_NUM_PD_GAINS]
  524. [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
  525. static u8 vpdTableI[AR5416_NUM_PD_GAINS]
  526. [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
  527. u8 *pVpdL, *pVpdR, *pPwrL, *pPwrR;
  528. u8 minPwrT4[AR5416_NUM_PD_GAINS];
  529. u8 maxPwrT4[AR5416_NUM_PD_GAINS];
  530. int16_t vpdStep;
  531. int16_t tmpVal;
  532. u16 sizeCurrVpdTable, maxIndex, tgtIndex;
  533. bool match;
  534. int16_t minDelta = 0;
  535. struct chan_centers centers;
  536. memset(&minPwrT4, 0, AR9287_NUM_PD_GAINS);
  537. ath9k_hw_get_channel_centers(ah, chan, &centers);
  538. for (numPiers = 0; numPiers < availPiers; numPiers++) {
  539. if (bChans[numPiers] == AR5416_BCHAN_UNUSED)
  540. break;
  541. }
  542. match = ath9k_hw_get_lower_upper_index((u8)FREQ2FBIN(centers.synth_center,
  543. IS_CHAN_2GHZ(chan)),
  544. bChans, numPiers, &idxL, &idxR);
  545. if (match) {
  546. for (i = 0; i < numXpdGains; i++) {
  547. minPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][0];
  548. maxPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][4];
  549. ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
  550. pRawDataSet[idxL].pwrPdg[i],
  551. pRawDataSet[idxL].vpdPdg[i],
  552. AR5416_PD_GAIN_ICEPTS,
  553. vpdTableI[i]);
  554. }
  555. } else {
  556. for (i = 0; i < numXpdGains; i++) {
  557. pVpdL = pRawDataSet[idxL].vpdPdg[i];
  558. pPwrL = pRawDataSet[idxL].pwrPdg[i];
  559. pVpdR = pRawDataSet[idxR].vpdPdg[i];
  560. pPwrR = pRawDataSet[idxR].pwrPdg[i];
  561. minPwrT4[i] = max(pPwrL[0], pPwrR[0]);
  562. maxPwrT4[i] =
  563. min(pPwrL[AR5416_PD_GAIN_ICEPTS - 1],
  564. pPwrR[AR5416_PD_GAIN_ICEPTS - 1]);
  565. ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
  566. pPwrL, pVpdL,
  567. AR5416_PD_GAIN_ICEPTS,
  568. vpdTableL[i]);
  569. ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
  570. pPwrR, pVpdR,
  571. AR5416_PD_GAIN_ICEPTS,
  572. vpdTableR[i]);
  573. for (j = 0; j <= (maxPwrT4[i] - minPwrT4[i]) / 2; j++) {
  574. vpdTableI[i][j] =
  575. (u8)(ath9k_hw_interpolate((u16)
  576. FREQ2FBIN(centers.
  577. synth_center,
  578. IS_CHAN_2GHZ
  579. (chan)),
  580. bChans[idxL], bChans[idxR],
  581. vpdTableL[i][j], vpdTableR[i][j]));
  582. }
  583. }
  584. }
  585. k = 0;
  586. for (i = 0; i < numXpdGains; i++) {
  587. if (i == (numXpdGains - 1))
  588. pPdGainBoundaries[i] =
  589. (u16)(maxPwrT4[i] / 2);
  590. else
  591. pPdGainBoundaries[i] =
  592. (u16)((maxPwrT4[i] + minPwrT4[i + 1]) / 4);
  593. pPdGainBoundaries[i] =
  594. min((u16)AR5416_MAX_RATE_POWER, pPdGainBoundaries[i]);
  595. if ((i == 0) && !AR_SREV_5416_20_OR_LATER(ah)) {
  596. minDelta = pPdGainBoundaries[0] - 23;
  597. pPdGainBoundaries[0] = 23;
  598. } else {
  599. minDelta = 0;
  600. }
  601. if (i == 0) {
  602. if (AR_SREV_9280_20_OR_LATER(ah))
  603. ss = (int16_t)(0 - (minPwrT4[i] / 2));
  604. else
  605. ss = 0;
  606. } else {
  607. ss = (int16_t)((pPdGainBoundaries[i - 1] -
  608. (minPwrT4[i] / 2)) -
  609. tPdGainOverlap + 1 + minDelta);
  610. }
  611. vpdStep = (int16_t)(vpdTableI[i][1] - vpdTableI[i][0]);
  612. vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep);
  613. while ((ss < 0) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
  614. tmpVal = (int16_t)(vpdTableI[i][0] + ss * vpdStep);
  615. pPDADCValues[k++] = (u8)((tmpVal < 0) ? 0 : tmpVal);
  616. ss++;
  617. }
  618. sizeCurrVpdTable = (u8) ((maxPwrT4[i] - minPwrT4[i]) / 2 + 1);
  619. tgtIndex = (u8)(pPdGainBoundaries[i] + tPdGainOverlap -
  620. (minPwrT4[i] / 2));
  621. maxIndex = (tgtIndex < sizeCurrVpdTable) ?
  622. tgtIndex : sizeCurrVpdTable;
  623. while ((ss < maxIndex) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
  624. pPDADCValues[k++] = vpdTableI[i][ss++];
  625. }
  626. vpdStep = (int16_t)(vpdTableI[i][sizeCurrVpdTable - 1] -
  627. vpdTableI[i][sizeCurrVpdTable - 2]);
  628. vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep);
  629. if (tgtIndex >= maxIndex) {
  630. while ((ss <= tgtIndex) &&
  631. (k < (AR5416_NUM_PDADC_VALUES - 1))) {
  632. tmpVal = (int16_t)((vpdTableI[i][sizeCurrVpdTable - 1] +
  633. (ss - maxIndex + 1) * vpdStep));
  634. pPDADCValues[k++] = (u8)((tmpVal > 255) ?
  635. 255 : tmpVal);
  636. ss++;
  637. }
  638. }
  639. }
  640. while (i < AR5416_PD_GAINS_IN_MASK) {
  641. pPdGainBoundaries[i] = pPdGainBoundaries[i - 1];
  642. i++;
  643. }
  644. while (k < AR5416_NUM_PDADC_VALUES) {
  645. pPDADCValues[k] = pPDADCValues[k - 1];
  646. k++;
  647. }
  648. }
  649. static int16_t ath9k_change_gain_boundary_setting(struct ath_hw *ah,
  650. u16 *gb,
  651. u16 numXpdGain,
  652. u16 pdGainOverlap_t2,
  653. int8_t pwr_table_offset,
  654. int16_t *diff)
  655. {
  656. u16 k;
  657. /* Prior to writing the boundaries or the pdadc vs. power table
  658. * into the chip registers the default starting point on the pdadc
  659. * vs. power table needs to be checked and the curve boundaries
  660. * adjusted accordingly
  661. */
  662. if (AR_SREV_9280_20_OR_LATER(ah)) {
  663. u16 gb_limit;
  664. if (AR5416_PWR_TABLE_OFFSET_DB != pwr_table_offset) {
  665. /* get the difference in dB */
  666. *diff = (u16)(pwr_table_offset - AR5416_PWR_TABLE_OFFSET_DB);
  667. /* get the number of half dB steps */
  668. *diff *= 2;
  669. /* change the original gain boundary settings
  670. * by the number of half dB steps
  671. */
  672. for (k = 0; k < numXpdGain; k++)
  673. gb[k] = (u16)(gb[k] - *diff);
  674. }
  675. /* Because of a hardware limitation, ensure the gain boundary
  676. * is not larger than (63 - overlap)
  677. */
  678. gb_limit = (u16)(AR5416_MAX_RATE_POWER - pdGainOverlap_t2);
  679. for (k = 0; k < numXpdGain; k++)
  680. gb[k] = (u16)min(gb_limit, gb[k]);
  681. }
  682. return *diff;
  683. }
  684. static void ath9k_adjust_pdadc_values(struct ath_hw *ah,
  685. int8_t pwr_table_offset,
  686. int16_t diff,
  687. u8 *pdadcValues)
  688. {
  689. #define NUM_PDADC(diff) (AR5416_NUM_PDADC_VALUES - diff)
  690. u16 k;
  691. /* If this is a board that has a pwrTableOffset that differs from
  692. * the default AR5416_PWR_TABLE_OFFSET_DB then the start of the
  693. * pdadc vs pwr table needs to be adjusted prior to writing to the
  694. * chip.
  695. */
  696. if (AR_SREV_9280_20_OR_LATER(ah)) {
  697. if (AR5416_PWR_TABLE_OFFSET_DB != pwr_table_offset) {
  698. /* shift the table to start at the new offset */
  699. for (k = 0; k < (u16)NUM_PDADC(diff); k++ ) {
  700. pdadcValues[k] = pdadcValues[k + diff];
  701. }
  702. /* fill the back of the table */
  703. for (k = (u16)NUM_PDADC(diff); k < NUM_PDADC(0); k++) {
  704. pdadcValues[k] = pdadcValues[NUM_PDADC(diff)];
  705. }
  706. }
  707. }
  708. #undef NUM_PDADC
  709. }
  710. static void ath9k_hw_set_def_power_cal_table(struct ath_hw *ah,
  711. struct ath9k_channel *chan,
  712. int16_t *pTxPowerIndexOffset)
  713. {
  714. #define SM_PD_GAIN(x) SM(0x38, AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_##x)
  715. #define SM_PDGAIN_B(x, y) \
  716. SM((gainBoundaries[x]), AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_##y)
  717. struct ath_common *common = ath9k_hw_common(ah);
  718. struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
  719. struct cal_data_per_freq *pRawDataset;
  720. u8 *pCalBChans = NULL;
  721. u16 pdGainOverlap_t2;
  722. static u8 pdadcValues[AR5416_NUM_PDADC_VALUES];
  723. u16 gainBoundaries[AR5416_PD_GAINS_IN_MASK];
  724. u16 numPiers, i, j;
  725. int16_t diff = 0;
  726. u16 numXpdGain, xpdMask;
  727. u16 xpdGainValues[AR5416_NUM_PD_GAINS] = { 0, 0, 0, 0 };
  728. u32 reg32, regOffset, regChainOffset;
  729. int16_t modalIdx;
  730. int8_t pwr_table_offset;
  731. modalIdx = IS_CHAN_2GHZ(chan) ? 1 : 0;
  732. xpdMask = pEepData->modalHeader[modalIdx].xpdGain;
  733. pwr_table_offset = ah->eep_ops->get_eeprom(ah, EEP_PWR_TABLE_OFFSET);
  734. if ((pEepData->baseEepHeader.version & AR5416_EEP_VER_MINOR_MASK) >=
  735. AR5416_EEP_MINOR_VER_2) {
  736. pdGainOverlap_t2 =
  737. pEepData->modalHeader[modalIdx].pdGainOverlap;
  738. } else {
  739. pdGainOverlap_t2 = (u16)(MS(REG_READ(ah, AR_PHY_TPCRG5),
  740. AR_PHY_TPCRG5_PD_GAIN_OVERLAP));
  741. }
  742. if (IS_CHAN_2GHZ(chan)) {
  743. pCalBChans = pEepData->calFreqPier2G;
  744. numPiers = AR5416_NUM_2G_CAL_PIERS;
  745. } else {
  746. pCalBChans = pEepData->calFreqPier5G;
  747. numPiers = AR5416_NUM_5G_CAL_PIERS;
  748. }
  749. if (OLC_FOR_AR9280_20_LATER && IS_CHAN_2GHZ(chan)) {
  750. pRawDataset = pEepData->calPierData2G[0];
  751. ah->initPDADC = ((struct calDataPerFreqOpLoop *)
  752. pRawDataset)->vpdPdg[0][0];
  753. }
  754. numXpdGain = 0;
  755. for (i = 1; i <= AR5416_PD_GAINS_IN_MASK; i++) {
  756. if ((xpdMask >> (AR5416_PD_GAINS_IN_MASK - i)) & 1) {
  757. if (numXpdGain >= AR5416_NUM_PD_GAINS)
  758. break;
  759. xpdGainValues[numXpdGain] =
  760. (u16)(AR5416_PD_GAINS_IN_MASK - i);
  761. numXpdGain++;
  762. }
  763. }
  764. REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_NUM_PD_GAIN,
  765. (numXpdGain - 1) & 0x3);
  766. REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_1,
  767. xpdGainValues[0]);
  768. REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_2,
  769. xpdGainValues[1]);
  770. REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_3,
  771. xpdGainValues[2]);
  772. for (i = 0; i < AR5416_MAX_CHAINS; i++) {
  773. if (AR_SREV_5416_20_OR_LATER(ah) &&
  774. (ah->rxchainmask == 5 || ah->txchainmask == 5) &&
  775. (i != 0)) {
  776. regChainOffset = (i == 1) ? 0x2000 : 0x1000;
  777. } else
  778. regChainOffset = i * 0x1000;
  779. if (pEepData->baseEepHeader.txMask & (1 << i)) {
  780. if (IS_CHAN_2GHZ(chan))
  781. pRawDataset = pEepData->calPierData2G[i];
  782. else
  783. pRawDataset = pEepData->calPierData5G[i];
  784. if (OLC_FOR_AR9280_20_LATER) {
  785. u8 pcdacIdx;
  786. u8 txPower;
  787. ath9k_get_txgain_index(ah, chan,
  788. (struct calDataPerFreqOpLoop *)pRawDataset,
  789. pCalBChans, numPiers, &txPower, &pcdacIdx);
  790. ath9k_olc_get_pdadcs(ah, pcdacIdx,
  791. txPower/2, pdadcValues);
  792. } else {
  793. ath9k_hw_get_def_gain_boundaries_pdadcs(ah,
  794. chan, pRawDataset,
  795. pCalBChans, numPiers,
  796. pdGainOverlap_t2,
  797. gainBoundaries,
  798. pdadcValues,
  799. numXpdGain);
  800. }
  801. diff = ath9k_change_gain_boundary_setting(ah,
  802. gainBoundaries,
  803. numXpdGain,
  804. pdGainOverlap_t2,
  805. pwr_table_offset,
  806. &diff);
  807. if ((i == 0) || AR_SREV_5416_20_OR_LATER(ah)) {
  808. if (OLC_FOR_AR9280_20_LATER) {
  809. REG_WRITE(ah,
  810. AR_PHY_TPCRG5 + regChainOffset,
  811. SM(0x6,
  812. AR_PHY_TPCRG5_PD_GAIN_OVERLAP) |
  813. SM_PD_GAIN(1) | SM_PD_GAIN(2) |
  814. SM_PD_GAIN(3) | SM_PD_GAIN(4));
  815. } else {
  816. REG_WRITE(ah,
  817. AR_PHY_TPCRG5 + regChainOffset,
  818. SM(pdGainOverlap_t2,
  819. AR_PHY_TPCRG5_PD_GAIN_OVERLAP)|
  820. SM_PDGAIN_B(0, 1) |
  821. SM_PDGAIN_B(1, 2) |
  822. SM_PDGAIN_B(2, 3) |
  823. SM_PDGAIN_B(3, 4));
  824. }
  825. }
  826. ath9k_adjust_pdadc_values(ah, pwr_table_offset,
  827. diff, pdadcValues);
  828. regOffset = AR_PHY_BASE + (672 << 2) + regChainOffset;
  829. for (j = 0; j < 32; j++) {
  830. reg32 = ((pdadcValues[4 * j + 0] & 0xFF) << 0) |
  831. ((pdadcValues[4 * j + 1] & 0xFF) << 8) |
  832. ((pdadcValues[4 * j + 2] & 0xFF) << 16)|
  833. ((pdadcValues[4 * j + 3] & 0xFF) << 24);
  834. REG_WRITE(ah, regOffset, reg32);
  835. ath_dbg(common, ATH_DBG_EEPROM,
  836. "PDADC (%d,%4x): %4.4x %8.8x\n",
  837. i, regChainOffset, regOffset,
  838. reg32);
  839. ath_dbg(common, ATH_DBG_EEPROM,
  840. "PDADC: Chain %d | PDADC %3d "
  841. "Value %3d | PDADC %3d Value %3d | "
  842. "PDADC %3d Value %3d | PDADC %3d "
  843. "Value %3d |\n",
  844. i, 4 * j, pdadcValues[4 * j],
  845. 4 * j + 1, pdadcValues[4 * j + 1],
  846. 4 * j + 2, pdadcValues[4 * j + 2],
  847. 4 * j + 3, pdadcValues[4 * j + 3]);
  848. regOffset += 4;
  849. }
  850. }
  851. }
  852. *pTxPowerIndexOffset = 0;
  853. #undef SM_PD_GAIN
  854. #undef SM_PDGAIN_B
  855. }
  856. static void ath9k_hw_set_def_power_per_rate_table(struct ath_hw *ah,
  857. struct ath9k_channel *chan,
  858. int16_t *ratesArray,
  859. u16 cfgCtl,
  860. u16 AntennaReduction,
  861. u16 twiceMaxRegulatoryPower,
  862. u16 powerLimit)
  863. {
  864. #define REDUCE_SCALED_POWER_BY_TWO_CHAIN 6 /* 10*log10(2)*2 */
  865. #define REDUCE_SCALED_POWER_BY_THREE_CHAIN 9 /* 10*log10(3)*2 */
  866. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  867. struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
  868. u16 twiceMaxEdgePower = AR5416_MAX_RATE_POWER;
  869. static const u16 tpScaleReductionTable[5] =
  870. { 0, 3, 6, 9, AR5416_MAX_RATE_POWER };
  871. int i;
  872. int16_t twiceLargestAntenna;
  873. struct cal_ctl_data *rep;
  874. struct cal_target_power_leg targetPowerOfdm, targetPowerCck = {
  875. 0, { 0, 0, 0, 0}
  876. };
  877. struct cal_target_power_leg targetPowerOfdmExt = {
  878. 0, { 0, 0, 0, 0} }, targetPowerCckExt = {
  879. 0, { 0, 0, 0, 0 }
  880. };
  881. struct cal_target_power_ht targetPowerHt20, targetPowerHt40 = {
  882. 0, {0, 0, 0, 0}
  883. };
  884. u16 scaledPower = 0, minCtlPower, maxRegAllowedPower;
  885. static const u16 ctlModesFor11a[] = {
  886. CTL_11A, CTL_5GHT20, CTL_11A_EXT, CTL_5GHT40
  887. };
  888. static const u16 ctlModesFor11g[] = {
  889. CTL_11B, CTL_11G, CTL_2GHT20,
  890. CTL_11B_EXT, CTL_11G_EXT, CTL_2GHT40
  891. };
  892. u16 numCtlModes;
  893. const u16 *pCtlMode;
  894. u16 ctlMode, freq;
  895. struct chan_centers centers;
  896. int tx_chainmask;
  897. u16 twiceMinEdgePower;
  898. tx_chainmask = ah->txchainmask;
  899. ath9k_hw_get_channel_centers(ah, chan, &centers);
  900. twiceLargestAntenna = max(
  901. pEepData->modalHeader
  902. [IS_CHAN_2GHZ(chan)].antennaGainCh[0],
  903. pEepData->modalHeader
  904. [IS_CHAN_2GHZ(chan)].antennaGainCh[1]);
  905. twiceLargestAntenna = max((u8)twiceLargestAntenna,
  906. pEepData->modalHeader
  907. [IS_CHAN_2GHZ(chan)].antennaGainCh[2]);
  908. twiceLargestAntenna = (int16_t)min(AntennaReduction -
  909. twiceLargestAntenna, 0);
  910. maxRegAllowedPower = twiceMaxRegulatoryPower + twiceLargestAntenna;
  911. if (regulatory->tp_scale != ATH9K_TP_SCALE_MAX) {
  912. maxRegAllowedPower -=
  913. (tpScaleReductionTable[(regulatory->tp_scale)] * 2);
  914. }
  915. scaledPower = min(powerLimit, maxRegAllowedPower);
  916. switch (ar5416_get_ntxchains(tx_chainmask)) {
  917. case 1:
  918. break;
  919. case 2:
  920. if (scaledPower > REDUCE_SCALED_POWER_BY_TWO_CHAIN)
  921. scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN;
  922. else
  923. scaledPower = 0;
  924. break;
  925. case 3:
  926. if (scaledPower > REDUCE_SCALED_POWER_BY_THREE_CHAIN)
  927. scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN;
  928. else
  929. scaledPower = 0;
  930. break;
  931. }
  932. if (IS_CHAN_2GHZ(chan)) {
  933. numCtlModes = ARRAY_SIZE(ctlModesFor11g) -
  934. SUB_NUM_CTL_MODES_AT_2G_40;
  935. pCtlMode = ctlModesFor11g;
  936. ath9k_hw_get_legacy_target_powers(ah, chan,
  937. pEepData->calTargetPowerCck,
  938. AR5416_NUM_2G_CCK_TARGET_POWERS,
  939. &targetPowerCck, 4, false);
  940. ath9k_hw_get_legacy_target_powers(ah, chan,
  941. pEepData->calTargetPower2G,
  942. AR5416_NUM_2G_20_TARGET_POWERS,
  943. &targetPowerOfdm, 4, false);
  944. ath9k_hw_get_target_powers(ah, chan,
  945. pEepData->calTargetPower2GHT20,
  946. AR5416_NUM_2G_20_TARGET_POWERS,
  947. &targetPowerHt20, 8, false);
  948. if (IS_CHAN_HT40(chan)) {
  949. numCtlModes = ARRAY_SIZE(ctlModesFor11g);
  950. ath9k_hw_get_target_powers(ah, chan,
  951. pEepData->calTargetPower2GHT40,
  952. AR5416_NUM_2G_40_TARGET_POWERS,
  953. &targetPowerHt40, 8, true);
  954. ath9k_hw_get_legacy_target_powers(ah, chan,
  955. pEepData->calTargetPowerCck,
  956. AR5416_NUM_2G_CCK_TARGET_POWERS,
  957. &targetPowerCckExt, 4, true);
  958. ath9k_hw_get_legacy_target_powers(ah, chan,
  959. pEepData->calTargetPower2G,
  960. AR5416_NUM_2G_20_TARGET_POWERS,
  961. &targetPowerOfdmExt, 4, true);
  962. }
  963. } else {
  964. numCtlModes = ARRAY_SIZE(ctlModesFor11a) -
  965. SUB_NUM_CTL_MODES_AT_5G_40;
  966. pCtlMode = ctlModesFor11a;
  967. ath9k_hw_get_legacy_target_powers(ah, chan,
  968. pEepData->calTargetPower5G,
  969. AR5416_NUM_5G_20_TARGET_POWERS,
  970. &targetPowerOfdm, 4, false);
  971. ath9k_hw_get_target_powers(ah, chan,
  972. pEepData->calTargetPower5GHT20,
  973. AR5416_NUM_5G_20_TARGET_POWERS,
  974. &targetPowerHt20, 8, false);
  975. if (IS_CHAN_HT40(chan)) {
  976. numCtlModes = ARRAY_SIZE(ctlModesFor11a);
  977. ath9k_hw_get_target_powers(ah, chan,
  978. pEepData->calTargetPower5GHT40,
  979. AR5416_NUM_5G_40_TARGET_POWERS,
  980. &targetPowerHt40, 8, true);
  981. ath9k_hw_get_legacy_target_powers(ah, chan,
  982. pEepData->calTargetPower5G,
  983. AR5416_NUM_5G_20_TARGET_POWERS,
  984. &targetPowerOfdmExt, 4, true);
  985. }
  986. }
  987. for (ctlMode = 0; ctlMode < numCtlModes; ctlMode++) {
  988. bool isHt40CtlMode = (pCtlMode[ctlMode] == CTL_5GHT40) ||
  989. (pCtlMode[ctlMode] == CTL_2GHT40);
  990. if (isHt40CtlMode)
  991. freq = centers.synth_center;
  992. else if (pCtlMode[ctlMode] & EXT_ADDITIVE)
  993. freq = centers.ext_center;
  994. else
  995. freq = centers.ctl_center;
  996. if (ah->eep_ops->get_eeprom_ver(ah) == 14 &&
  997. ah->eep_ops->get_eeprom_rev(ah) <= 2)
  998. twiceMaxEdgePower = AR5416_MAX_RATE_POWER;
  999. for (i = 0; (i < AR5416_NUM_CTLS) && pEepData->ctlIndex[i]; i++) {
  1000. if ((((cfgCtl & ~CTL_MODE_M) |
  1001. (pCtlMode[ctlMode] & CTL_MODE_M)) ==
  1002. pEepData->ctlIndex[i]) ||
  1003. (((cfgCtl & ~CTL_MODE_M) |
  1004. (pCtlMode[ctlMode] & CTL_MODE_M)) ==
  1005. ((pEepData->ctlIndex[i] & CTL_MODE_M) | SD_NO_CTL))) {
  1006. rep = &(pEepData->ctlData[i]);
  1007. twiceMinEdgePower = ath9k_hw_get_max_edge_power(freq,
  1008. rep->ctlEdges[ar5416_get_ntxchains(tx_chainmask) - 1],
  1009. IS_CHAN_2GHZ(chan), AR5416_NUM_BAND_EDGES);
  1010. if ((cfgCtl & ~CTL_MODE_M) == SD_NO_CTL) {
  1011. twiceMaxEdgePower = min(twiceMaxEdgePower,
  1012. twiceMinEdgePower);
  1013. } else {
  1014. twiceMaxEdgePower = twiceMinEdgePower;
  1015. break;
  1016. }
  1017. }
  1018. }
  1019. minCtlPower = min(twiceMaxEdgePower, scaledPower);
  1020. switch (pCtlMode[ctlMode]) {
  1021. case CTL_11B:
  1022. for (i = 0; i < ARRAY_SIZE(targetPowerCck.tPow2x); i++) {
  1023. targetPowerCck.tPow2x[i] =
  1024. min((u16)targetPowerCck.tPow2x[i],
  1025. minCtlPower);
  1026. }
  1027. break;
  1028. case CTL_11A:
  1029. case CTL_11G:
  1030. for (i = 0; i < ARRAY_SIZE(targetPowerOfdm.tPow2x); i++) {
  1031. targetPowerOfdm.tPow2x[i] =
  1032. min((u16)targetPowerOfdm.tPow2x[i],
  1033. minCtlPower);
  1034. }
  1035. break;
  1036. case CTL_5GHT20:
  1037. case CTL_2GHT20:
  1038. for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++) {
  1039. targetPowerHt20.tPow2x[i] =
  1040. min((u16)targetPowerHt20.tPow2x[i],
  1041. minCtlPower);
  1042. }
  1043. break;
  1044. case CTL_11B_EXT:
  1045. targetPowerCckExt.tPow2x[0] = min((u16)
  1046. targetPowerCckExt.tPow2x[0],
  1047. minCtlPower);
  1048. break;
  1049. case CTL_11A_EXT:
  1050. case CTL_11G_EXT:
  1051. targetPowerOfdmExt.tPow2x[0] = min((u16)
  1052. targetPowerOfdmExt.tPow2x[0],
  1053. minCtlPower);
  1054. break;
  1055. case CTL_5GHT40:
  1056. case CTL_2GHT40:
  1057. for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
  1058. targetPowerHt40.tPow2x[i] =
  1059. min((u16)targetPowerHt40.tPow2x[i],
  1060. minCtlPower);
  1061. }
  1062. break;
  1063. default:
  1064. break;
  1065. }
  1066. }
  1067. ratesArray[rate6mb] = ratesArray[rate9mb] = ratesArray[rate12mb] =
  1068. ratesArray[rate18mb] = ratesArray[rate24mb] =
  1069. targetPowerOfdm.tPow2x[0];
  1070. ratesArray[rate36mb] = targetPowerOfdm.tPow2x[1];
  1071. ratesArray[rate48mb] = targetPowerOfdm.tPow2x[2];
  1072. ratesArray[rate54mb] = targetPowerOfdm.tPow2x[3];
  1073. ratesArray[rateXr] = targetPowerOfdm.tPow2x[0];
  1074. for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++)
  1075. ratesArray[rateHt20_0 + i] = targetPowerHt20.tPow2x[i];
  1076. if (IS_CHAN_2GHZ(chan)) {
  1077. ratesArray[rate1l] = targetPowerCck.tPow2x[0];
  1078. ratesArray[rate2s] = ratesArray[rate2l] =
  1079. targetPowerCck.tPow2x[1];
  1080. ratesArray[rate5_5s] = ratesArray[rate5_5l] =
  1081. targetPowerCck.tPow2x[2];
  1082. ratesArray[rate11s] = ratesArray[rate11l] =
  1083. targetPowerCck.tPow2x[3];
  1084. }
  1085. if (IS_CHAN_HT40(chan)) {
  1086. for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
  1087. ratesArray[rateHt40_0 + i] =
  1088. targetPowerHt40.tPow2x[i];
  1089. }
  1090. ratesArray[rateDupOfdm] = targetPowerHt40.tPow2x[0];
  1091. ratesArray[rateDupCck] = targetPowerHt40.tPow2x[0];
  1092. ratesArray[rateExtOfdm] = targetPowerOfdmExt.tPow2x[0];
  1093. if (IS_CHAN_2GHZ(chan)) {
  1094. ratesArray[rateExtCck] =
  1095. targetPowerCckExt.tPow2x[0];
  1096. }
  1097. }
  1098. }
  1099. static void ath9k_hw_def_set_txpower(struct ath_hw *ah,
  1100. struct ath9k_channel *chan,
  1101. u16 cfgCtl,
  1102. u8 twiceAntennaReduction,
  1103. u8 twiceMaxRegulatoryPower,
  1104. u8 powerLimit, bool test)
  1105. {
  1106. #define RT_AR_DELTA(x) (ratesArray[x] - cck_ofdm_delta)
  1107. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  1108. struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
  1109. struct modal_eep_header *pModal =
  1110. &(pEepData->modalHeader[IS_CHAN_2GHZ(chan)]);
  1111. int16_t ratesArray[Ar5416RateSize];
  1112. int16_t txPowerIndexOffset = 0;
  1113. u8 ht40PowerIncForPdadc = 2;
  1114. int i, cck_ofdm_delta = 0;
  1115. memset(ratesArray, 0, sizeof(ratesArray));
  1116. if ((pEepData->baseEepHeader.version & AR5416_EEP_VER_MINOR_MASK) >=
  1117. AR5416_EEP_MINOR_VER_2) {
  1118. ht40PowerIncForPdadc = pModal->ht40PowerIncForPdadc;
  1119. }
  1120. ath9k_hw_set_def_power_per_rate_table(ah, chan,
  1121. &ratesArray[0], cfgCtl,
  1122. twiceAntennaReduction,
  1123. twiceMaxRegulatoryPower,
  1124. powerLimit);
  1125. ath9k_hw_set_def_power_cal_table(ah, chan, &txPowerIndexOffset);
  1126. regulatory->max_power_level = 0;
  1127. for (i = 0; i < ARRAY_SIZE(ratesArray); i++) {
  1128. ratesArray[i] = (int16_t)(txPowerIndexOffset + ratesArray[i]);
  1129. if (ratesArray[i] > AR5416_MAX_RATE_POWER)
  1130. ratesArray[i] = AR5416_MAX_RATE_POWER;
  1131. if (ratesArray[i] > regulatory->max_power_level)
  1132. regulatory->max_power_level = ratesArray[i];
  1133. }
  1134. if (!test) {
  1135. i = rate6mb;
  1136. if (IS_CHAN_HT40(chan))
  1137. i = rateHt40_0;
  1138. else if (IS_CHAN_HT20(chan))
  1139. i = rateHt20_0;
  1140. regulatory->max_power_level = ratesArray[i];
  1141. }
  1142. switch(ar5416_get_ntxchains(ah->txchainmask)) {
  1143. case 1:
  1144. break;
  1145. case 2:
  1146. regulatory->max_power_level += INCREASE_MAXPOW_BY_TWO_CHAIN;
  1147. break;
  1148. case 3:
  1149. regulatory->max_power_level += INCREASE_MAXPOW_BY_THREE_CHAIN;
  1150. break;
  1151. default:
  1152. ath_dbg(ath9k_hw_common(ah), ATH_DBG_EEPROM,
  1153. "Invalid chainmask configuration\n");
  1154. break;
  1155. }
  1156. if (test)
  1157. return;
  1158. if (AR_SREV_9280_20_OR_LATER(ah)) {
  1159. for (i = 0; i < Ar5416RateSize; i++) {
  1160. int8_t pwr_table_offset;
  1161. pwr_table_offset = ah->eep_ops->get_eeprom(ah,
  1162. EEP_PWR_TABLE_OFFSET);
  1163. ratesArray[i] -= pwr_table_offset * 2;
  1164. }
  1165. }
  1166. REG_WRITE(ah, AR_PHY_POWER_TX_RATE1,
  1167. ATH9K_POW_SM(ratesArray[rate18mb], 24)
  1168. | ATH9K_POW_SM(ratesArray[rate12mb], 16)
  1169. | ATH9K_POW_SM(ratesArray[rate9mb], 8)
  1170. | ATH9K_POW_SM(ratesArray[rate6mb], 0));
  1171. REG_WRITE(ah, AR_PHY_POWER_TX_RATE2,
  1172. ATH9K_POW_SM(ratesArray[rate54mb], 24)
  1173. | ATH9K_POW_SM(ratesArray[rate48mb], 16)
  1174. | ATH9K_POW_SM(ratesArray[rate36mb], 8)
  1175. | ATH9K_POW_SM(ratesArray[rate24mb], 0));
  1176. if (IS_CHAN_2GHZ(chan)) {
  1177. if (OLC_FOR_AR9280_20_LATER) {
  1178. cck_ofdm_delta = 2;
  1179. REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
  1180. ATH9K_POW_SM(RT_AR_DELTA(rate2s), 24)
  1181. | ATH9K_POW_SM(RT_AR_DELTA(rate2l), 16)
  1182. | ATH9K_POW_SM(ratesArray[rateXr], 8)
  1183. | ATH9K_POW_SM(RT_AR_DELTA(rate1l), 0));
  1184. REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
  1185. ATH9K_POW_SM(RT_AR_DELTA(rate11s), 24)
  1186. | ATH9K_POW_SM(RT_AR_DELTA(rate11l), 16)
  1187. | ATH9K_POW_SM(RT_AR_DELTA(rate5_5s), 8)
  1188. | ATH9K_POW_SM(RT_AR_DELTA(rate5_5l), 0));
  1189. } else {
  1190. REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
  1191. ATH9K_POW_SM(ratesArray[rate2s], 24)
  1192. | ATH9K_POW_SM(ratesArray[rate2l], 16)
  1193. | ATH9K_POW_SM(ratesArray[rateXr], 8)
  1194. | ATH9K_POW_SM(ratesArray[rate1l], 0));
  1195. REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
  1196. ATH9K_POW_SM(ratesArray[rate11s], 24)
  1197. | ATH9K_POW_SM(ratesArray[rate11l], 16)
  1198. | ATH9K_POW_SM(ratesArray[rate5_5s], 8)
  1199. | ATH9K_POW_SM(ratesArray[rate5_5l], 0));
  1200. }
  1201. }
  1202. REG_WRITE(ah, AR_PHY_POWER_TX_RATE5,
  1203. ATH9K_POW_SM(ratesArray[rateHt20_3], 24)
  1204. | ATH9K_POW_SM(ratesArray[rateHt20_2], 16)
  1205. | ATH9K_POW_SM(ratesArray[rateHt20_1], 8)
  1206. | ATH9K_POW_SM(ratesArray[rateHt20_0], 0));
  1207. REG_WRITE(ah, AR_PHY_POWER_TX_RATE6,
  1208. ATH9K_POW_SM(ratesArray[rateHt20_7], 24)
  1209. | ATH9K_POW_SM(ratesArray[rateHt20_6], 16)
  1210. | ATH9K_POW_SM(ratesArray[rateHt20_5], 8)
  1211. | ATH9K_POW_SM(ratesArray[rateHt20_4], 0));
  1212. if (IS_CHAN_HT40(chan)) {
  1213. REG_WRITE(ah, AR_PHY_POWER_TX_RATE7,
  1214. ATH9K_POW_SM(ratesArray[rateHt40_3] +
  1215. ht40PowerIncForPdadc, 24)
  1216. | ATH9K_POW_SM(ratesArray[rateHt40_2] +
  1217. ht40PowerIncForPdadc, 16)
  1218. | ATH9K_POW_SM(ratesArray[rateHt40_1] +
  1219. ht40PowerIncForPdadc, 8)
  1220. | ATH9K_POW_SM(ratesArray[rateHt40_0] +
  1221. ht40PowerIncForPdadc, 0));
  1222. REG_WRITE(ah, AR_PHY_POWER_TX_RATE8,
  1223. ATH9K_POW_SM(ratesArray[rateHt40_7] +
  1224. ht40PowerIncForPdadc, 24)
  1225. | ATH9K_POW_SM(ratesArray[rateHt40_6] +
  1226. ht40PowerIncForPdadc, 16)
  1227. | ATH9K_POW_SM(ratesArray[rateHt40_5] +
  1228. ht40PowerIncForPdadc, 8)
  1229. | ATH9K_POW_SM(ratesArray[rateHt40_4] +
  1230. ht40PowerIncForPdadc, 0));
  1231. if (OLC_FOR_AR9280_20_LATER) {
  1232. REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
  1233. ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
  1234. | ATH9K_POW_SM(RT_AR_DELTA(rateExtCck), 16)
  1235. | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
  1236. | ATH9K_POW_SM(RT_AR_DELTA(rateDupCck), 0));
  1237. } else {
  1238. REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
  1239. ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
  1240. | ATH9K_POW_SM(ratesArray[rateExtCck], 16)
  1241. | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
  1242. | ATH9K_POW_SM(ratesArray[rateDupCck], 0));
  1243. }
  1244. }
  1245. REG_WRITE(ah, AR_PHY_POWER_TX_SUB,
  1246. ATH9K_POW_SM(pModal->pwrDecreaseFor3Chain, 6)
  1247. | ATH9K_POW_SM(pModal->pwrDecreaseFor2Chain, 0));
  1248. }
  1249. static u8 ath9k_hw_def_get_num_ant_config(struct ath_hw *ah,
  1250. enum ath9k_hal_freq_band freq_band)
  1251. {
  1252. struct ar5416_eeprom_def *eep = &ah->eeprom.def;
  1253. struct modal_eep_header *pModal =
  1254. &(eep->modalHeader[freq_band]);
  1255. struct base_eep_header *pBase = &eep->baseEepHeader;
  1256. u8 num_ant_config;
  1257. num_ant_config = 1;
  1258. if (pBase->version >= 0x0E0D &&
  1259. (pModal->lna_ctl & LNA_CTL_USE_ANT1))
  1260. num_ant_config += 1;
  1261. return num_ant_config;
  1262. }
  1263. static u32 ath9k_hw_def_get_eeprom_antenna_cfg(struct ath_hw *ah,
  1264. struct ath9k_channel *chan)
  1265. {
  1266. struct ar5416_eeprom_def *eep = &ah->eeprom.def;
  1267. struct modal_eep_header *pModal =
  1268. &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
  1269. return pModal->antCtrlCommon;
  1270. }
  1271. static u16 ath9k_hw_def_get_spur_channel(struct ath_hw *ah, u16 i, bool is2GHz)
  1272. {
  1273. #define EEP_DEF_SPURCHAN \
  1274. (ah->eeprom.def.modalHeader[is2GHz].spurChans[i].spurChan)
  1275. struct ath_common *common = ath9k_hw_common(ah);
  1276. u16 spur_val = AR_NO_SPUR;
  1277. ath_dbg(common, ATH_DBG_ANI,
  1278. "Getting spur idx:%d is2Ghz:%d val:%x\n",
  1279. i, is2GHz, ah->config.spurchans[i][is2GHz]);
  1280. switch (ah->config.spurmode) {
  1281. case SPUR_DISABLE:
  1282. break;
  1283. case SPUR_ENABLE_IOCTL:
  1284. spur_val = ah->config.spurchans[i][is2GHz];
  1285. ath_dbg(common, ATH_DBG_ANI,
  1286. "Getting spur val from new loc. %d\n", spur_val);
  1287. break;
  1288. case SPUR_ENABLE_EEPROM:
  1289. spur_val = EEP_DEF_SPURCHAN;
  1290. break;
  1291. }
  1292. return spur_val;
  1293. #undef EEP_DEF_SPURCHAN
  1294. }
  1295. const struct eeprom_ops eep_def_ops = {
  1296. .check_eeprom = ath9k_hw_def_check_eeprom,
  1297. .get_eeprom = ath9k_hw_def_get_eeprom,
  1298. .fill_eeprom = ath9k_hw_def_fill_eeprom,
  1299. .get_eeprom_ver = ath9k_hw_def_get_eeprom_ver,
  1300. .get_eeprom_rev = ath9k_hw_def_get_eeprom_rev,
  1301. .get_num_ant_config = ath9k_hw_def_get_num_ant_config,
  1302. .get_eeprom_antenna_cfg = ath9k_hw_def_get_eeprom_antenna_cfg,
  1303. .set_board_values = ath9k_hw_def_set_board_values,
  1304. .set_addac = ath9k_hw_def_set_addac,
  1305. .set_txpower = ath9k_hw_def_set_txpower,
  1306. .get_spur_channel = ath9k_hw_def_get_spur_channel
  1307. };