ar9003_phy.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457
  1. /*
  2. * Copyright (c) 2010-2011 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 <linux/export.h>
  17. #include "hw.h"
  18. #include "ar9003_phy.h"
  19. static const int firstep_table[] =
  20. /* level: 0 1 2 3 4 5 6 7 8 */
  21. { -4, -2, 0, 2, 4, 6, 8, 10, 12 }; /* lvl 0-8, default 2 */
  22. static const int cycpwrThr1_table[] =
  23. /* level: 0 1 2 3 4 5 6 7 8 */
  24. { -6, -4, -2, 0, 2, 4, 6, 8 }; /* lvl 0-7, default 3 */
  25. /*
  26. * register values to turn OFDM weak signal detection OFF
  27. */
  28. static const int m1ThreshLow_off = 127;
  29. static const int m2ThreshLow_off = 127;
  30. static const int m1Thresh_off = 127;
  31. static const int m2Thresh_off = 127;
  32. static const int m2CountThr_off = 31;
  33. static const int m2CountThrLow_off = 63;
  34. static const int m1ThreshLowExt_off = 127;
  35. static const int m2ThreshLowExt_off = 127;
  36. static const int m1ThreshExt_off = 127;
  37. static const int m2ThreshExt_off = 127;
  38. /**
  39. * ar9003_hw_set_channel - set channel on single-chip device
  40. * @ah: atheros hardware structure
  41. * @chan:
  42. *
  43. * This is the function to change channel on single-chip devices, that is
  44. * for AR9300 family of chipsets.
  45. *
  46. * This function takes the channel value in MHz and sets
  47. * hardware channel value. Assumes writes have been enabled to analog bus.
  48. *
  49. * Actual Expression,
  50. *
  51. * For 2GHz channel,
  52. * Channel Frequency = (3/4) * freq_ref * (chansel[8:0] + chanfrac[16:0]/2^17)
  53. * (freq_ref = 40MHz)
  54. *
  55. * For 5GHz channel,
  56. * Channel Frequency = (3/2) * freq_ref * (chansel[8:0] + chanfrac[16:0]/2^10)
  57. * (freq_ref = 40MHz/(24>>amodeRefSel))
  58. *
  59. * For 5GHz channels which are 5MHz spaced,
  60. * Channel Frequency = (3/2) * freq_ref * (chansel[8:0] + chanfrac[16:0]/2^17)
  61. * (freq_ref = 40MHz)
  62. */
  63. static int ar9003_hw_set_channel(struct ath_hw *ah, struct ath9k_channel *chan)
  64. {
  65. u16 bMode, fracMode = 0, aModeRefSel = 0;
  66. u32 freq, channelSel = 0, reg32 = 0;
  67. struct chan_centers centers;
  68. int loadSynthChannel;
  69. ath9k_hw_get_channel_centers(ah, chan, &centers);
  70. freq = centers.synth_center;
  71. if (freq < 4800) { /* 2 GHz, fractional mode */
  72. if (AR_SREV_9330(ah)) {
  73. u32 chan_frac;
  74. u32 div;
  75. if (ah->is_clk_25mhz)
  76. div = 75;
  77. else
  78. div = 120;
  79. channelSel = (freq * 4) / div;
  80. chan_frac = (((freq * 4) % div) * 0x20000) / div;
  81. channelSel = (channelSel << 17) | chan_frac;
  82. } else if (AR_SREV_9485(ah)) {
  83. u32 chan_frac;
  84. /*
  85. * freq_ref = 40 / (refdiva >> amoderefsel); where refdiva=1 and amoderefsel=0
  86. * ndiv = ((chan_mhz * 4) / 3) / freq_ref;
  87. * chansel = int(ndiv), chanfrac = (ndiv - chansel) * 0x20000
  88. */
  89. channelSel = (freq * 4) / 120;
  90. chan_frac = (((freq * 4) % 120) * 0x20000) / 120;
  91. channelSel = (channelSel << 17) | chan_frac;
  92. } else if (AR_SREV_9340(ah)) {
  93. if (ah->is_clk_25mhz) {
  94. u32 chan_frac;
  95. channelSel = (freq * 2) / 75;
  96. chan_frac = (((freq * 2) % 75) * 0x20000) / 75;
  97. channelSel = (channelSel << 17) | chan_frac;
  98. } else
  99. channelSel = CHANSEL_2G(freq) >> 1;
  100. } else
  101. channelSel = CHANSEL_2G(freq);
  102. /* Set to 2G mode */
  103. bMode = 1;
  104. } else {
  105. if (AR_SREV_9340(ah) && ah->is_clk_25mhz) {
  106. u32 chan_frac;
  107. channelSel = (freq * 2) / 75;
  108. chan_frac = (((freq * 2) % 75) * 0x20000) / 75;
  109. channelSel = (channelSel << 17) | chan_frac;
  110. } else {
  111. channelSel = CHANSEL_5G(freq);
  112. /* Doubler is ON, so, divide channelSel by 2. */
  113. channelSel >>= 1;
  114. }
  115. /* Set to 5G mode */
  116. bMode = 0;
  117. }
  118. /* Enable fractional mode for all channels */
  119. fracMode = 1;
  120. aModeRefSel = 0;
  121. loadSynthChannel = 0;
  122. reg32 = (bMode << 29);
  123. REG_WRITE(ah, AR_PHY_SYNTH_CONTROL, reg32);
  124. /* Enable Long shift Select for Synthesizer */
  125. REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_SYNTH4,
  126. AR_PHY_SYNTH4_LONG_SHIFT_SELECT, 1);
  127. /* Program Synth. setting */
  128. reg32 = (channelSel << 2) | (fracMode << 30) |
  129. (aModeRefSel << 28) | (loadSynthChannel << 31);
  130. REG_WRITE(ah, AR_PHY_65NM_CH0_SYNTH7, reg32);
  131. /* Toggle Load Synth channel bit */
  132. loadSynthChannel = 1;
  133. reg32 = (channelSel << 2) | (fracMode << 30) |
  134. (aModeRefSel << 28) | (loadSynthChannel << 31);
  135. REG_WRITE(ah, AR_PHY_65NM_CH0_SYNTH7, reg32);
  136. ah->curchan = chan;
  137. ah->curchan_rad_index = -1;
  138. return 0;
  139. }
  140. /**
  141. * ar9003_hw_spur_mitigate_mrc_cck - convert baseband spur frequency
  142. * @ah: atheros hardware structure
  143. * @chan:
  144. *
  145. * For single-chip solutions. Converts to baseband spur frequency given the
  146. * input channel frequency and compute register settings below.
  147. *
  148. * Spur mitigation for MRC CCK
  149. */
  150. static void ar9003_hw_spur_mitigate_mrc_cck(struct ath_hw *ah,
  151. struct ath9k_channel *chan)
  152. {
  153. static const u32 spur_freq[4] = { 2420, 2440, 2464, 2480 };
  154. int cur_bb_spur, negative = 0, cck_spur_freq;
  155. int i;
  156. int range, max_spur_cnts, synth_freq;
  157. u8 *spur_fbin_ptr = NULL;
  158. /*
  159. * Need to verify range +/- 10 MHz in control channel, otherwise spur
  160. * is out-of-band and can be ignored.
  161. */
  162. if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah)) {
  163. spur_fbin_ptr = ar9003_get_spur_chan_ptr(ah,
  164. IS_CHAN_2GHZ(chan));
  165. if (spur_fbin_ptr[0] == 0) /* No spur */
  166. return;
  167. max_spur_cnts = 5;
  168. if (IS_CHAN_HT40(chan)) {
  169. range = 19;
  170. if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
  171. AR_PHY_GC_DYN2040_PRI_CH) == 0)
  172. synth_freq = chan->channel + 10;
  173. else
  174. synth_freq = chan->channel - 10;
  175. } else {
  176. range = 10;
  177. synth_freq = chan->channel;
  178. }
  179. } else {
  180. range = AR_SREV_9462(ah) ? 5 : 10;
  181. max_spur_cnts = 4;
  182. synth_freq = chan->channel;
  183. }
  184. for (i = 0; i < max_spur_cnts; i++) {
  185. if (AR_SREV_9462(ah) && (i == 0 || i == 3))
  186. continue;
  187. negative = 0;
  188. if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah))
  189. cur_bb_spur = FBIN2FREQ(spur_fbin_ptr[i],
  190. IS_CHAN_2GHZ(chan)) - synth_freq;
  191. else
  192. cur_bb_spur = spur_freq[i] - synth_freq;
  193. if (cur_bb_spur < 0) {
  194. negative = 1;
  195. cur_bb_spur = -cur_bb_spur;
  196. }
  197. if (cur_bb_spur < range) {
  198. cck_spur_freq = (int)((cur_bb_spur << 19) / 11);
  199. if (negative == 1)
  200. cck_spur_freq = -cck_spur_freq;
  201. cck_spur_freq = cck_spur_freq & 0xfffff;
  202. REG_RMW_FIELD(ah, AR_PHY_AGC_CONTROL,
  203. AR_PHY_AGC_CONTROL_YCOK_MAX, 0x7);
  204. REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
  205. AR_PHY_CCK_SPUR_MIT_SPUR_RSSI_THR, 0x7f);
  206. REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
  207. AR_PHY_CCK_SPUR_MIT_SPUR_FILTER_TYPE,
  208. 0x2);
  209. REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
  210. AR_PHY_CCK_SPUR_MIT_USE_CCK_SPUR_MIT,
  211. 0x1);
  212. REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
  213. AR_PHY_CCK_SPUR_MIT_CCK_SPUR_FREQ,
  214. cck_spur_freq);
  215. return;
  216. }
  217. }
  218. REG_RMW_FIELD(ah, AR_PHY_AGC_CONTROL,
  219. AR_PHY_AGC_CONTROL_YCOK_MAX, 0x5);
  220. REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
  221. AR_PHY_CCK_SPUR_MIT_USE_CCK_SPUR_MIT, 0x0);
  222. REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
  223. AR_PHY_CCK_SPUR_MIT_CCK_SPUR_FREQ, 0x0);
  224. }
  225. /* Clean all spur register fields */
  226. static void ar9003_hw_spur_ofdm_clear(struct ath_hw *ah)
  227. {
  228. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  229. AR_PHY_TIMING4_ENABLE_SPUR_FILTER, 0);
  230. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  231. AR_PHY_TIMING11_SPUR_FREQ_SD, 0);
  232. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  233. AR_PHY_TIMING11_SPUR_DELTA_PHASE, 0);
  234. REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
  235. AR_PHY_SFCORR_EXT_SPUR_SUBCHANNEL_SD, 0);
  236. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  237. AR_PHY_TIMING11_USE_SPUR_FILTER_IN_AGC, 0);
  238. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  239. AR_PHY_TIMING11_USE_SPUR_FILTER_IN_SELFCOR, 0);
  240. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  241. AR_PHY_TIMING4_ENABLE_SPUR_RSSI, 0);
  242. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  243. AR_PHY_SPUR_REG_EN_VIT_SPUR_RSSI, 0);
  244. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  245. AR_PHY_SPUR_REG_ENABLE_NF_RSSI_SPUR_MIT, 0);
  246. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  247. AR_PHY_SPUR_REG_ENABLE_MASK_PPM, 0);
  248. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  249. AR_PHY_TIMING4_ENABLE_PILOT_MASK, 0);
  250. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  251. AR_PHY_TIMING4_ENABLE_CHAN_MASK, 0);
  252. REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
  253. AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_IDX_A, 0);
  254. REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
  255. AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_IDX_A, 0);
  256. REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
  257. AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_IDX_A, 0);
  258. REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
  259. AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_A, 0);
  260. REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
  261. AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_A, 0);
  262. REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
  263. AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_A, 0);
  264. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  265. AR_PHY_SPUR_REG_MASK_RATE_CNTL, 0);
  266. }
  267. static void ar9003_hw_spur_ofdm(struct ath_hw *ah,
  268. int freq_offset,
  269. int spur_freq_sd,
  270. int spur_delta_phase,
  271. int spur_subchannel_sd)
  272. {
  273. int mask_index = 0;
  274. /* OFDM Spur mitigation */
  275. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  276. AR_PHY_TIMING4_ENABLE_SPUR_FILTER, 0x1);
  277. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  278. AR_PHY_TIMING11_SPUR_FREQ_SD, spur_freq_sd);
  279. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  280. AR_PHY_TIMING11_SPUR_DELTA_PHASE, spur_delta_phase);
  281. REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
  282. AR_PHY_SFCORR_EXT_SPUR_SUBCHANNEL_SD, spur_subchannel_sd);
  283. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  284. AR_PHY_TIMING11_USE_SPUR_FILTER_IN_AGC, 0x1);
  285. REG_RMW_FIELD(ah, AR_PHY_TIMING11,
  286. AR_PHY_TIMING11_USE_SPUR_FILTER_IN_SELFCOR, 0x1);
  287. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  288. AR_PHY_TIMING4_ENABLE_SPUR_RSSI, 0x1);
  289. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  290. AR_PHY_SPUR_REG_SPUR_RSSI_THRESH, 34);
  291. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  292. AR_PHY_SPUR_REG_EN_VIT_SPUR_RSSI, 1);
  293. if (REG_READ_FIELD(ah, AR_PHY_MODE,
  294. AR_PHY_MODE_DYNAMIC) == 0x1)
  295. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  296. AR_PHY_SPUR_REG_ENABLE_NF_RSSI_SPUR_MIT, 1);
  297. mask_index = (freq_offset << 4) / 5;
  298. if (mask_index < 0)
  299. mask_index = mask_index - 1;
  300. mask_index = mask_index & 0x7f;
  301. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  302. AR_PHY_SPUR_REG_ENABLE_MASK_PPM, 0x1);
  303. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  304. AR_PHY_TIMING4_ENABLE_PILOT_MASK, 0x1);
  305. REG_RMW_FIELD(ah, AR_PHY_TIMING4,
  306. AR_PHY_TIMING4_ENABLE_CHAN_MASK, 0x1);
  307. REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
  308. AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_IDX_A, mask_index);
  309. REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
  310. AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_IDX_A, mask_index);
  311. REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
  312. AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_IDX_A, mask_index);
  313. REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
  314. AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_A, 0xc);
  315. REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
  316. AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_A, 0xc);
  317. REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
  318. AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_A, 0xa0);
  319. REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
  320. AR_PHY_SPUR_REG_MASK_RATE_CNTL, 0xff);
  321. }
  322. static void ar9003_hw_spur_ofdm_work(struct ath_hw *ah,
  323. struct ath9k_channel *chan,
  324. int freq_offset)
  325. {
  326. int spur_freq_sd = 0;
  327. int spur_subchannel_sd = 0;
  328. int spur_delta_phase = 0;
  329. if (IS_CHAN_HT40(chan)) {
  330. if (freq_offset < 0) {
  331. if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
  332. AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
  333. spur_subchannel_sd = 1;
  334. else
  335. spur_subchannel_sd = 0;
  336. spur_freq_sd = (freq_offset << 9) / 11;
  337. } else {
  338. if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
  339. AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
  340. spur_subchannel_sd = 0;
  341. else
  342. spur_subchannel_sd = 1;
  343. spur_freq_sd = (freq_offset << 9) / 11;
  344. }
  345. spur_delta_phase = (freq_offset << 17) / 5;
  346. } else {
  347. spur_subchannel_sd = 0;
  348. spur_freq_sd = (freq_offset << 9) /11;
  349. spur_delta_phase = (freq_offset << 18) / 5;
  350. }
  351. spur_freq_sd = spur_freq_sd & 0x3ff;
  352. spur_delta_phase = spur_delta_phase & 0xfffff;
  353. ar9003_hw_spur_ofdm(ah,
  354. freq_offset,
  355. spur_freq_sd,
  356. spur_delta_phase,
  357. spur_subchannel_sd);
  358. }
  359. /* Spur mitigation for OFDM */
  360. static void ar9003_hw_spur_mitigate_ofdm(struct ath_hw *ah,
  361. struct ath9k_channel *chan)
  362. {
  363. int synth_freq;
  364. int range = 10;
  365. int freq_offset = 0;
  366. int mode;
  367. u8* spurChansPtr;
  368. unsigned int i;
  369. struct ar9300_eeprom *eep = &ah->eeprom.ar9300_eep;
  370. if (IS_CHAN_5GHZ(chan)) {
  371. spurChansPtr = &(eep->modalHeader5G.spurChans[0]);
  372. mode = 0;
  373. }
  374. else {
  375. spurChansPtr = &(eep->modalHeader2G.spurChans[0]);
  376. mode = 1;
  377. }
  378. if (spurChansPtr[0] == 0)
  379. return; /* No spur in the mode */
  380. if (IS_CHAN_HT40(chan)) {
  381. range = 19;
  382. if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
  383. AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
  384. synth_freq = chan->channel - 10;
  385. else
  386. synth_freq = chan->channel + 10;
  387. } else {
  388. range = 10;
  389. synth_freq = chan->channel;
  390. }
  391. ar9003_hw_spur_ofdm_clear(ah);
  392. for (i = 0; i < AR_EEPROM_MODAL_SPURS && spurChansPtr[i]; i++) {
  393. freq_offset = FBIN2FREQ(spurChansPtr[i], mode) - synth_freq;
  394. if (abs(freq_offset) < range) {
  395. ar9003_hw_spur_ofdm_work(ah, chan, freq_offset);
  396. break;
  397. }
  398. }
  399. }
  400. static void ar9003_hw_spur_mitigate(struct ath_hw *ah,
  401. struct ath9k_channel *chan)
  402. {
  403. ar9003_hw_spur_mitigate_mrc_cck(ah, chan);
  404. ar9003_hw_spur_mitigate_ofdm(ah, chan);
  405. }
  406. static u32 ar9003_hw_compute_pll_control(struct ath_hw *ah,
  407. struct ath9k_channel *chan)
  408. {
  409. u32 pll;
  410. pll = SM(0x5, AR_RTC_9300_PLL_REFDIV);
  411. if (chan && IS_CHAN_HALF_RATE(chan))
  412. pll |= SM(0x1, AR_RTC_9300_PLL_CLKSEL);
  413. else if (chan && IS_CHAN_QUARTER_RATE(chan))
  414. pll |= SM(0x2, AR_RTC_9300_PLL_CLKSEL);
  415. pll |= SM(0x2c, AR_RTC_9300_PLL_DIV);
  416. return pll;
  417. }
  418. static void ar9003_hw_set_channel_regs(struct ath_hw *ah,
  419. struct ath9k_channel *chan)
  420. {
  421. u32 phymode;
  422. u32 enableDacFifo = 0;
  423. enableDacFifo =
  424. (REG_READ(ah, AR_PHY_GEN_CTRL) & AR_PHY_GC_ENABLE_DAC_FIFO);
  425. /* Enable 11n HT, 20 MHz */
  426. phymode = AR_PHY_GC_HT_EN | AR_PHY_GC_SINGLE_HT_LTF1 |
  427. AR_PHY_GC_SHORT_GI_40 | enableDacFifo;
  428. /* Configure baseband for dynamic 20/40 operation */
  429. if (IS_CHAN_HT40(chan)) {
  430. phymode |= AR_PHY_GC_DYN2040_EN;
  431. /* Configure control (primary) channel at +-10MHz */
  432. if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
  433. (chan->chanmode == CHANNEL_G_HT40PLUS))
  434. phymode |= AR_PHY_GC_DYN2040_PRI_CH;
  435. }
  436. /* make sure we preserve INI settings */
  437. phymode |= REG_READ(ah, AR_PHY_GEN_CTRL);
  438. /* turn off Green Field detection for STA for now */
  439. phymode &= ~AR_PHY_GC_GF_DETECT_EN;
  440. REG_WRITE(ah, AR_PHY_GEN_CTRL, phymode);
  441. /* Configure MAC for 20/40 operation */
  442. ath9k_hw_set11nmac2040(ah);
  443. /* global transmit timeout (25 TUs default)*/
  444. REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
  445. /* carrier sense timeout */
  446. REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
  447. }
  448. static void ar9003_hw_init_bb(struct ath_hw *ah,
  449. struct ath9k_channel *chan)
  450. {
  451. u32 synthDelay;
  452. /*
  453. * Wait for the frequency synth to settle (synth goes on
  454. * via AR_PHY_ACTIVE_EN). Read the phy active delay register.
  455. * Value is in 100ns increments.
  456. */
  457. synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
  458. if (IS_CHAN_B(chan))
  459. synthDelay = (4 * synthDelay) / 22;
  460. else
  461. synthDelay /= 10;
  462. /* Activate the PHY (includes baseband activate + synthesizer on) */
  463. REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
  464. /*
  465. * There is an issue if the AP starts the calibration before
  466. * the base band timeout completes. This could result in the
  467. * rx_clear false triggering. As a workaround we add delay an
  468. * extra BASE_ACTIVATE_DELAY usecs to ensure this condition
  469. * does not happen.
  470. */
  471. udelay(synthDelay + BASE_ACTIVATE_DELAY);
  472. }
  473. static void ar9003_hw_set_chain_masks(struct ath_hw *ah, u8 rx, u8 tx)
  474. {
  475. switch (rx) {
  476. case 0x5:
  477. REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
  478. AR_PHY_SWAP_ALT_CHAIN);
  479. case 0x3:
  480. case 0x1:
  481. case 0x2:
  482. case 0x7:
  483. REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx);
  484. REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx);
  485. break;
  486. default:
  487. break;
  488. }
  489. if ((ah->caps.hw_caps & ATH9K_HW_CAP_APM) && (tx == 0x7))
  490. REG_WRITE(ah, AR_SELFGEN_MASK, 0x3);
  491. else if (AR_SREV_9462(ah))
  492. /* xxx only when MCI support is enabled */
  493. REG_WRITE(ah, AR_SELFGEN_MASK, 0x3);
  494. else
  495. REG_WRITE(ah, AR_SELFGEN_MASK, tx);
  496. if (tx == 0x5) {
  497. REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
  498. AR_PHY_SWAP_ALT_CHAIN);
  499. }
  500. }
  501. /*
  502. * Override INI values with chip specific configuration.
  503. */
  504. static void ar9003_hw_override_ini(struct ath_hw *ah)
  505. {
  506. u32 val;
  507. /*
  508. * Set the RX_ABORT and RX_DIS and clear it only after
  509. * RXE is set for MAC. This prevents frames with
  510. * corrupted descriptor status.
  511. */
  512. REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
  513. /*
  514. * For AR9280 and above, there is a new feature that allows
  515. * Multicast search based on both MAC Address and Key ID. By default,
  516. * this feature is enabled. But since the driver is not using this
  517. * feature, we switch it off; otherwise multicast search based on
  518. * MAC addr only will fail.
  519. */
  520. val = REG_READ(ah, AR_PCU_MISC_MODE2) & (~AR_ADHOC_MCAST_KEYID_ENABLE);
  521. REG_WRITE(ah, AR_PCU_MISC_MODE2,
  522. val | AR_AGG_WEP_ENABLE_FIX | AR_AGG_WEP_ENABLE);
  523. REG_SET_BIT(ah, AR_PHY_CCK_DETECT,
  524. AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV);
  525. }
  526. static void ar9003_hw_prog_ini(struct ath_hw *ah,
  527. struct ar5416IniArray *iniArr,
  528. int column)
  529. {
  530. unsigned int i, regWrites = 0;
  531. /* New INI format: Array may be undefined (pre, core, post arrays) */
  532. if (!iniArr->ia_array)
  533. return;
  534. /*
  535. * New INI format: Pre, core, and post arrays for a given subsystem
  536. * may be modal (> 2 columns) or non-modal (2 columns). Determine if
  537. * the array is non-modal and force the column to 1.
  538. */
  539. if (column >= iniArr->ia_columns)
  540. column = 1;
  541. for (i = 0; i < iniArr->ia_rows; i++) {
  542. u32 reg = INI_RA(iniArr, i, 0);
  543. u32 val = INI_RA(iniArr, i, column);
  544. REG_WRITE(ah, reg, val);
  545. DO_DELAY(regWrites);
  546. }
  547. }
  548. static int ar9003_hw_process_ini(struct ath_hw *ah,
  549. struct ath9k_channel *chan)
  550. {
  551. unsigned int regWrites = 0, i;
  552. u32 modesIndex;
  553. switch (chan->chanmode) {
  554. case CHANNEL_A:
  555. case CHANNEL_A_HT20:
  556. modesIndex = 1;
  557. break;
  558. case CHANNEL_A_HT40PLUS:
  559. case CHANNEL_A_HT40MINUS:
  560. modesIndex = 2;
  561. break;
  562. case CHANNEL_G:
  563. case CHANNEL_G_HT20:
  564. case CHANNEL_B:
  565. modesIndex = 4;
  566. break;
  567. case CHANNEL_G_HT40PLUS:
  568. case CHANNEL_G_HT40MINUS:
  569. modesIndex = 3;
  570. break;
  571. default:
  572. return -EINVAL;
  573. }
  574. for (i = 0; i < ATH_INI_NUM_SPLIT; i++) {
  575. ar9003_hw_prog_ini(ah, &ah->iniSOC[i], modesIndex);
  576. ar9003_hw_prog_ini(ah, &ah->iniMac[i], modesIndex);
  577. ar9003_hw_prog_ini(ah, &ah->iniBB[i], modesIndex);
  578. ar9003_hw_prog_ini(ah, &ah->iniRadio[i], modesIndex);
  579. if (i == ATH_INI_POST && AR_SREV_9462_20(ah))
  580. ar9003_hw_prog_ini(ah,
  581. &ah->ini_radio_post_sys2ant,
  582. modesIndex);
  583. }
  584. REG_WRITE_ARRAY(&ah->iniModesRxGain, 1, regWrites);
  585. REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
  586. /*
  587. * For 5GHz channels requiring Fast Clock, apply
  588. * different modal values.
  589. */
  590. if (IS_CHAN_A_FAST_CLOCK(ah, chan))
  591. REG_WRITE_ARRAY(&ah->iniModesFastClock,
  592. modesIndex, regWrites);
  593. REG_WRITE_ARRAY(&ah->iniAdditional, 1, regWrites);
  594. if (AR_SREV_9462(ah))
  595. ar9003_hw_prog_ini(ah, &ah->ini_BTCOEX_MAX_TXPWR, 1);
  596. if (chan->channel == 2484)
  597. ar9003_hw_prog_ini(ah, &ah->ini_japan2484, 1);
  598. ah->modes_index = modesIndex;
  599. ar9003_hw_override_ini(ah);
  600. ar9003_hw_set_channel_regs(ah, chan);
  601. ar9003_hw_set_chain_masks(ah, ah->rxchainmask, ah->txchainmask);
  602. ath9k_hw_apply_txpower(ah, chan);
  603. if (AR_SREV_9462(ah)) {
  604. if (REG_READ_FIELD(ah, AR_PHY_TX_IQCAL_CONTROL_0,
  605. AR_PHY_TX_IQCAL_CONTROL_0_ENABLE_TXIQ_CAL))
  606. ah->enabled_cals |= TX_IQ_CAL;
  607. else
  608. ah->enabled_cals &= ~TX_IQ_CAL;
  609. if (REG_READ(ah, AR_PHY_CL_CAL_CTL) & AR_PHY_CL_CAL_ENABLE)
  610. ah->enabled_cals |= TX_CL_CAL;
  611. else
  612. ah->enabled_cals &= ~TX_CL_CAL;
  613. }
  614. return 0;
  615. }
  616. static void ar9003_hw_set_rfmode(struct ath_hw *ah,
  617. struct ath9k_channel *chan)
  618. {
  619. u32 rfMode = 0;
  620. if (chan == NULL)
  621. return;
  622. rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
  623. ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
  624. if (IS_CHAN_A_FAST_CLOCK(ah, chan))
  625. rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
  626. REG_WRITE(ah, AR_PHY_MODE, rfMode);
  627. }
  628. static void ar9003_hw_mark_phy_inactive(struct ath_hw *ah)
  629. {
  630. REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
  631. }
  632. static void ar9003_hw_set_delta_slope(struct ath_hw *ah,
  633. struct ath9k_channel *chan)
  634. {
  635. u32 coef_scaled, ds_coef_exp, ds_coef_man;
  636. u32 clockMhzScaled = 0x64000000;
  637. struct chan_centers centers;
  638. /*
  639. * half and quarter rate can divide the scaled clock by 2 or 4
  640. * scale for selected channel bandwidth
  641. */
  642. if (IS_CHAN_HALF_RATE(chan))
  643. clockMhzScaled = clockMhzScaled >> 1;
  644. else if (IS_CHAN_QUARTER_RATE(chan))
  645. clockMhzScaled = clockMhzScaled >> 2;
  646. /*
  647. * ALGO -> coef = 1e8/fcarrier*fclock/40;
  648. * scaled coef to provide precision for this floating calculation
  649. */
  650. ath9k_hw_get_channel_centers(ah, chan, &centers);
  651. coef_scaled = clockMhzScaled / centers.synth_center;
  652. ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
  653. &ds_coef_exp);
  654. REG_RMW_FIELD(ah, AR_PHY_TIMING3,
  655. AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
  656. REG_RMW_FIELD(ah, AR_PHY_TIMING3,
  657. AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
  658. /*
  659. * For Short GI,
  660. * scaled coeff is 9/10 that of normal coeff
  661. */
  662. coef_scaled = (9 * coef_scaled) / 10;
  663. ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
  664. &ds_coef_exp);
  665. /* for short gi */
  666. REG_RMW_FIELD(ah, AR_PHY_SGI_DELTA,
  667. AR_PHY_SGI_DSC_MAN, ds_coef_man);
  668. REG_RMW_FIELD(ah, AR_PHY_SGI_DELTA,
  669. AR_PHY_SGI_DSC_EXP, ds_coef_exp);
  670. }
  671. static bool ar9003_hw_rfbus_req(struct ath_hw *ah)
  672. {
  673. REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
  674. return ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
  675. AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT);
  676. }
  677. /*
  678. * Wait for the frequency synth to settle (synth goes on via PHY_ACTIVE_EN).
  679. * Read the phy active delay register. Value is in 100ns increments.
  680. */
  681. static void ar9003_hw_rfbus_done(struct ath_hw *ah)
  682. {
  683. u32 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
  684. if (IS_CHAN_B(ah->curchan))
  685. synthDelay = (4 * synthDelay) / 22;
  686. else
  687. synthDelay /= 10;
  688. udelay(synthDelay + BASE_ACTIVATE_DELAY);
  689. REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
  690. }
  691. static bool ar9003_hw_ani_control(struct ath_hw *ah,
  692. enum ath9k_ani_cmd cmd, int param)
  693. {
  694. struct ath_common *common = ath9k_hw_common(ah);
  695. struct ath9k_channel *chan = ah->curchan;
  696. struct ar5416AniState *aniState = &chan->ani;
  697. s32 value, value2;
  698. switch (cmd & ah->ani_function) {
  699. case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
  700. /*
  701. * on == 1 means ofdm weak signal detection is ON
  702. * on == 1 is the default, for less noise immunity
  703. *
  704. * on == 0 means ofdm weak signal detection is OFF
  705. * on == 0 means more noise imm
  706. */
  707. u32 on = param ? 1 : 0;
  708. if (on)
  709. REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
  710. AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
  711. else
  712. REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
  713. AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
  714. if (!on != aniState->ofdmWeakSigDetectOff) {
  715. ath_dbg(common, ANI,
  716. "** ch %d: ofdm weak signal: %s=>%s\n",
  717. chan->channel,
  718. !aniState->ofdmWeakSigDetectOff ?
  719. "on" : "off",
  720. on ? "on" : "off");
  721. if (on)
  722. ah->stats.ast_ani_ofdmon++;
  723. else
  724. ah->stats.ast_ani_ofdmoff++;
  725. aniState->ofdmWeakSigDetectOff = !on;
  726. }
  727. break;
  728. }
  729. case ATH9K_ANI_FIRSTEP_LEVEL:{
  730. u32 level = param;
  731. if (level >= ARRAY_SIZE(firstep_table)) {
  732. ath_dbg(common, ANI,
  733. "ATH9K_ANI_FIRSTEP_LEVEL: level out of range (%u > %zu)\n",
  734. level, ARRAY_SIZE(firstep_table));
  735. return false;
  736. }
  737. /*
  738. * make register setting relative to default
  739. * from INI file & cap value
  740. */
  741. value = firstep_table[level] -
  742. firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
  743. aniState->iniDef.firstep;
  744. if (value < ATH9K_SIG_FIRSTEP_SETTING_MIN)
  745. value = ATH9K_SIG_FIRSTEP_SETTING_MIN;
  746. if (value > ATH9K_SIG_FIRSTEP_SETTING_MAX)
  747. value = ATH9K_SIG_FIRSTEP_SETTING_MAX;
  748. REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
  749. AR_PHY_FIND_SIG_FIRSTEP,
  750. value);
  751. /*
  752. * we need to set first step low register too
  753. * make register setting relative to default
  754. * from INI file & cap value
  755. */
  756. value2 = firstep_table[level] -
  757. firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
  758. aniState->iniDef.firstepLow;
  759. if (value2 < ATH9K_SIG_FIRSTEP_SETTING_MIN)
  760. value2 = ATH9K_SIG_FIRSTEP_SETTING_MIN;
  761. if (value2 > ATH9K_SIG_FIRSTEP_SETTING_MAX)
  762. value2 = ATH9K_SIG_FIRSTEP_SETTING_MAX;
  763. REG_RMW_FIELD(ah, AR_PHY_FIND_SIG_LOW,
  764. AR_PHY_FIND_SIG_LOW_FIRSTEP_LOW, value2);
  765. if (level != aniState->firstepLevel) {
  766. ath_dbg(common, ANI,
  767. "** ch %d: level %d=>%d[def:%d] firstep[level]=%d ini=%d\n",
  768. chan->channel,
  769. aniState->firstepLevel,
  770. level,
  771. ATH9K_ANI_FIRSTEP_LVL_NEW,
  772. value,
  773. aniState->iniDef.firstep);
  774. ath_dbg(common, ANI,
  775. "** ch %d: level %d=>%d[def:%d] firstep_low[level]=%d ini=%d\n",
  776. chan->channel,
  777. aniState->firstepLevel,
  778. level,
  779. ATH9K_ANI_FIRSTEP_LVL_NEW,
  780. value2,
  781. aniState->iniDef.firstepLow);
  782. if (level > aniState->firstepLevel)
  783. ah->stats.ast_ani_stepup++;
  784. else if (level < aniState->firstepLevel)
  785. ah->stats.ast_ani_stepdown++;
  786. aniState->firstepLevel = level;
  787. }
  788. break;
  789. }
  790. case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
  791. u32 level = param;
  792. if (level >= ARRAY_SIZE(cycpwrThr1_table)) {
  793. ath_dbg(common, ANI,
  794. "ATH9K_ANI_SPUR_IMMUNITY_LEVEL: level out of range (%u > %zu)\n",
  795. level, ARRAY_SIZE(cycpwrThr1_table));
  796. return false;
  797. }
  798. /*
  799. * make register setting relative to default
  800. * from INI file & cap value
  801. */
  802. value = cycpwrThr1_table[level] -
  803. cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
  804. aniState->iniDef.cycpwrThr1;
  805. if (value < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
  806. value = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
  807. if (value > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
  808. value = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
  809. REG_RMW_FIELD(ah, AR_PHY_TIMING5,
  810. AR_PHY_TIMING5_CYCPWR_THR1,
  811. value);
  812. /*
  813. * set AR_PHY_EXT_CCA for extension channel
  814. * make register setting relative to default
  815. * from INI file & cap value
  816. */
  817. value2 = cycpwrThr1_table[level] -
  818. cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
  819. aniState->iniDef.cycpwrThr1Ext;
  820. if (value2 < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
  821. value2 = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
  822. if (value2 > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
  823. value2 = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
  824. REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
  825. AR_PHY_EXT_CYCPWR_THR1, value2);
  826. if (level != aniState->spurImmunityLevel) {
  827. ath_dbg(common, ANI,
  828. "** ch %d: level %d=>%d[def:%d] cycpwrThr1[level]=%d ini=%d\n",
  829. chan->channel,
  830. aniState->spurImmunityLevel,
  831. level,
  832. ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
  833. value,
  834. aniState->iniDef.cycpwrThr1);
  835. ath_dbg(common, ANI,
  836. "** ch %d: level %d=>%d[def:%d] cycpwrThr1Ext[level]=%d ini=%d\n",
  837. chan->channel,
  838. aniState->spurImmunityLevel,
  839. level,
  840. ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
  841. value2,
  842. aniState->iniDef.cycpwrThr1Ext);
  843. if (level > aniState->spurImmunityLevel)
  844. ah->stats.ast_ani_spurup++;
  845. else if (level < aniState->spurImmunityLevel)
  846. ah->stats.ast_ani_spurdown++;
  847. aniState->spurImmunityLevel = level;
  848. }
  849. break;
  850. }
  851. case ATH9K_ANI_MRC_CCK:{
  852. /*
  853. * is_on == 1 means MRC CCK ON (default, less noise imm)
  854. * is_on == 0 means MRC CCK is OFF (more noise imm)
  855. */
  856. bool is_on = param ? 1 : 0;
  857. REG_RMW_FIELD(ah, AR_PHY_MRC_CCK_CTRL,
  858. AR_PHY_MRC_CCK_ENABLE, is_on);
  859. REG_RMW_FIELD(ah, AR_PHY_MRC_CCK_CTRL,
  860. AR_PHY_MRC_CCK_MUX_REG, is_on);
  861. if (!is_on != aniState->mrcCCKOff) {
  862. ath_dbg(common, ANI, "** ch %d: MRC CCK: %s=>%s\n",
  863. chan->channel,
  864. !aniState->mrcCCKOff ? "on" : "off",
  865. is_on ? "on" : "off");
  866. if (is_on)
  867. ah->stats.ast_ani_ccklow++;
  868. else
  869. ah->stats.ast_ani_cckhigh++;
  870. aniState->mrcCCKOff = !is_on;
  871. }
  872. break;
  873. }
  874. case ATH9K_ANI_PRESENT:
  875. break;
  876. default:
  877. ath_dbg(common, ANI, "invalid cmd %u\n", cmd);
  878. return false;
  879. }
  880. ath_dbg(common, ANI,
  881. "ANI parameters: SI=%d, ofdmWS=%s FS=%d MRCcck=%s listenTime=%d ofdmErrs=%d cckErrs=%d\n",
  882. aniState->spurImmunityLevel,
  883. !aniState->ofdmWeakSigDetectOff ? "on" : "off",
  884. aniState->firstepLevel,
  885. !aniState->mrcCCKOff ? "on" : "off",
  886. aniState->listenTime,
  887. aniState->ofdmPhyErrCount,
  888. aniState->cckPhyErrCount);
  889. return true;
  890. }
  891. static void ar9003_hw_do_getnf(struct ath_hw *ah,
  892. int16_t nfarray[NUM_NF_READINGS])
  893. {
  894. #define AR_PHY_CH_MINCCA_PWR 0x1FF00000
  895. #define AR_PHY_CH_MINCCA_PWR_S 20
  896. #define AR_PHY_CH_EXT_MINCCA_PWR 0x01FF0000
  897. #define AR_PHY_CH_EXT_MINCCA_PWR_S 16
  898. int16_t nf;
  899. int i;
  900. for (i = 0; i < AR9300_MAX_CHAINS; i++) {
  901. if (ah->rxchainmask & BIT(i)) {
  902. nf = MS(REG_READ(ah, ah->nf_regs[i]),
  903. AR_PHY_CH_MINCCA_PWR);
  904. nfarray[i] = sign_extend32(nf, 8);
  905. if (IS_CHAN_HT40(ah->curchan)) {
  906. u8 ext_idx = AR9300_MAX_CHAINS + i;
  907. nf = MS(REG_READ(ah, ah->nf_regs[ext_idx]),
  908. AR_PHY_CH_EXT_MINCCA_PWR);
  909. nfarray[ext_idx] = sign_extend32(nf, 8);
  910. }
  911. }
  912. }
  913. }
  914. static void ar9003_hw_set_nf_limits(struct ath_hw *ah)
  915. {
  916. ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_2GHZ;
  917. ah->nf_2g.min = AR_PHY_CCA_MIN_GOOD_VAL_9300_2GHZ;
  918. ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_9300_2GHZ;
  919. ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_5GHZ;
  920. ah->nf_5g.min = AR_PHY_CCA_MIN_GOOD_VAL_9300_5GHZ;
  921. ah->nf_5g.nominal = AR_PHY_CCA_NOM_VAL_9300_5GHZ;
  922. if (AR_SREV_9330(ah))
  923. ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_9330_2GHZ;
  924. if (AR_SREV_9462(ah)) {
  925. ah->nf_2g.min = AR_PHY_CCA_MIN_GOOD_VAL_9462_2GHZ;
  926. ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_9462_2GHZ;
  927. ah->nf_5g.min = AR_PHY_CCA_MIN_GOOD_VAL_9462_5GHZ;
  928. ah->nf_5g.nominal = AR_PHY_CCA_NOM_VAL_9462_5GHZ;
  929. }
  930. }
  931. /*
  932. * Initialize the ANI register values with default (ini) values.
  933. * This routine is called during a (full) hardware reset after
  934. * all the registers are initialised from the INI.
  935. */
  936. static void ar9003_hw_ani_cache_ini_regs(struct ath_hw *ah)
  937. {
  938. struct ar5416AniState *aniState;
  939. struct ath_common *common = ath9k_hw_common(ah);
  940. struct ath9k_channel *chan = ah->curchan;
  941. struct ath9k_ani_default *iniDef;
  942. u32 val;
  943. aniState = &ah->curchan->ani;
  944. iniDef = &aniState->iniDef;
  945. ath_dbg(common, ANI, "ver %d.%d opmode %u chan %d Mhz/0x%x\n",
  946. ah->hw_version.macVersion,
  947. ah->hw_version.macRev,
  948. ah->opmode,
  949. chan->channel,
  950. chan->channelFlags);
  951. val = REG_READ(ah, AR_PHY_SFCORR);
  952. iniDef->m1Thresh = MS(val, AR_PHY_SFCORR_M1_THRESH);
  953. iniDef->m2Thresh = MS(val, AR_PHY_SFCORR_M2_THRESH);
  954. iniDef->m2CountThr = MS(val, AR_PHY_SFCORR_M2COUNT_THR);
  955. val = REG_READ(ah, AR_PHY_SFCORR_LOW);
  956. iniDef->m1ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M1_THRESH_LOW);
  957. iniDef->m2ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M2_THRESH_LOW);
  958. iniDef->m2CountThrLow = MS(val, AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW);
  959. val = REG_READ(ah, AR_PHY_SFCORR_EXT);
  960. iniDef->m1ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH);
  961. iniDef->m2ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH);
  962. iniDef->m1ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH_LOW);
  963. iniDef->m2ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH_LOW);
  964. iniDef->firstep = REG_READ_FIELD(ah,
  965. AR_PHY_FIND_SIG,
  966. AR_PHY_FIND_SIG_FIRSTEP);
  967. iniDef->firstepLow = REG_READ_FIELD(ah,
  968. AR_PHY_FIND_SIG_LOW,
  969. AR_PHY_FIND_SIG_LOW_FIRSTEP_LOW);
  970. iniDef->cycpwrThr1 = REG_READ_FIELD(ah,
  971. AR_PHY_TIMING5,
  972. AR_PHY_TIMING5_CYCPWR_THR1);
  973. iniDef->cycpwrThr1Ext = REG_READ_FIELD(ah,
  974. AR_PHY_EXT_CCA,
  975. AR_PHY_EXT_CYCPWR_THR1);
  976. /* these levels just got reset to defaults by the INI */
  977. aniState->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL_NEW;
  978. aniState->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW;
  979. aniState->ofdmWeakSigDetectOff = !ATH9K_ANI_USE_OFDM_WEAK_SIG;
  980. aniState->mrcCCKOff = !ATH9K_ANI_ENABLE_MRC_CCK;
  981. }
  982. static void ar9003_hw_set_radar_params(struct ath_hw *ah,
  983. struct ath_hw_radar_conf *conf)
  984. {
  985. u32 radar_0 = 0, radar_1 = 0;
  986. if (!conf) {
  987. REG_CLR_BIT(ah, AR_PHY_RADAR_0, AR_PHY_RADAR_0_ENA);
  988. return;
  989. }
  990. radar_0 |= AR_PHY_RADAR_0_ENA | AR_PHY_RADAR_0_FFT_ENA;
  991. radar_0 |= SM(conf->fir_power, AR_PHY_RADAR_0_FIRPWR);
  992. radar_0 |= SM(conf->radar_rssi, AR_PHY_RADAR_0_RRSSI);
  993. radar_0 |= SM(conf->pulse_height, AR_PHY_RADAR_0_HEIGHT);
  994. radar_0 |= SM(conf->pulse_rssi, AR_PHY_RADAR_0_PRSSI);
  995. radar_0 |= SM(conf->pulse_inband, AR_PHY_RADAR_0_INBAND);
  996. radar_1 |= AR_PHY_RADAR_1_MAX_RRSSI;
  997. radar_1 |= AR_PHY_RADAR_1_BLOCK_CHECK;
  998. radar_1 |= SM(conf->pulse_maxlen, AR_PHY_RADAR_1_MAXLEN);
  999. radar_1 |= SM(conf->pulse_inband_step, AR_PHY_RADAR_1_RELSTEP_THRESH);
  1000. radar_1 |= SM(conf->radar_inband, AR_PHY_RADAR_1_RELPWR_THRESH);
  1001. REG_WRITE(ah, AR_PHY_RADAR_0, radar_0);
  1002. REG_WRITE(ah, AR_PHY_RADAR_1, radar_1);
  1003. if (conf->ext_channel)
  1004. REG_SET_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
  1005. else
  1006. REG_CLR_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
  1007. }
  1008. static void ar9003_hw_set_radar_conf(struct ath_hw *ah)
  1009. {
  1010. struct ath_hw_radar_conf *conf = &ah->radar_conf;
  1011. conf->fir_power = -28;
  1012. conf->radar_rssi = 0;
  1013. conf->pulse_height = 10;
  1014. conf->pulse_rssi = 24;
  1015. conf->pulse_inband = 8;
  1016. conf->pulse_maxlen = 255;
  1017. conf->pulse_inband_step = 12;
  1018. conf->radar_inband = 8;
  1019. }
  1020. static void ar9003_hw_antdiv_comb_conf_get(struct ath_hw *ah,
  1021. struct ath_hw_antcomb_conf *antconf)
  1022. {
  1023. u32 regval;
  1024. regval = REG_READ(ah, AR_PHY_MC_GAIN_CTRL);
  1025. antconf->main_lna_conf = (regval & AR_PHY_9485_ANT_DIV_MAIN_LNACONF) >>
  1026. AR_PHY_9485_ANT_DIV_MAIN_LNACONF_S;
  1027. antconf->alt_lna_conf = (regval & AR_PHY_9485_ANT_DIV_ALT_LNACONF) >>
  1028. AR_PHY_9485_ANT_DIV_ALT_LNACONF_S;
  1029. antconf->fast_div_bias = (regval & AR_PHY_9485_ANT_FAST_DIV_BIAS) >>
  1030. AR_PHY_9485_ANT_FAST_DIV_BIAS_S;
  1031. if (AR_SREV_9330_11(ah)) {
  1032. antconf->lna1_lna2_delta = -9;
  1033. antconf->div_group = 1;
  1034. } else if (AR_SREV_9485(ah)) {
  1035. antconf->lna1_lna2_delta = -9;
  1036. antconf->div_group = 2;
  1037. } else {
  1038. antconf->lna1_lna2_delta = -3;
  1039. antconf->div_group = 0;
  1040. }
  1041. }
  1042. static void ar9003_hw_antdiv_comb_conf_set(struct ath_hw *ah,
  1043. struct ath_hw_antcomb_conf *antconf)
  1044. {
  1045. u32 regval;
  1046. regval = REG_READ(ah, AR_PHY_MC_GAIN_CTRL);
  1047. regval &= ~(AR_PHY_9485_ANT_DIV_MAIN_LNACONF |
  1048. AR_PHY_9485_ANT_DIV_ALT_LNACONF |
  1049. AR_PHY_9485_ANT_FAST_DIV_BIAS |
  1050. AR_PHY_9485_ANT_DIV_MAIN_GAINTB |
  1051. AR_PHY_9485_ANT_DIV_ALT_GAINTB);
  1052. regval |= ((antconf->main_lna_conf <<
  1053. AR_PHY_9485_ANT_DIV_MAIN_LNACONF_S)
  1054. & AR_PHY_9485_ANT_DIV_MAIN_LNACONF);
  1055. regval |= ((antconf->alt_lna_conf << AR_PHY_9485_ANT_DIV_ALT_LNACONF_S)
  1056. & AR_PHY_9485_ANT_DIV_ALT_LNACONF);
  1057. regval |= ((antconf->fast_div_bias << AR_PHY_9485_ANT_FAST_DIV_BIAS_S)
  1058. & AR_PHY_9485_ANT_FAST_DIV_BIAS);
  1059. regval |= ((antconf->main_gaintb << AR_PHY_9485_ANT_DIV_MAIN_GAINTB_S)
  1060. & AR_PHY_9485_ANT_DIV_MAIN_GAINTB);
  1061. regval |= ((antconf->alt_gaintb << AR_PHY_9485_ANT_DIV_ALT_GAINTB_S)
  1062. & AR_PHY_9485_ANT_DIV_ALT_GAINTB);
  1063. REG_WRITE(ah, AR_PHY_MC_GAIN_CTRL, regval);
  1064. }
  1065. static int ar9003_hw_fast_chan_change(struct ath_hw *ah,
  1066. struct ath9k_channel *chan,
  1067. u8 *ini_reloaded)
  1068. {
  1069. unsigned int regWrites = 0;
  1070. u32 modesIndex;
  1071. switch (chan->chanmode) {
  1072. case CHANNEL_A:
  1073. case CHANNEL_A_HT20:
  1074. modesIndex = 1;
  1075. break;
  1076. case CHANNEL_A_HT40PLUS:
  1077. case CHANNEL_A_HT40MINUS:
  1078. modesIndex = 2;
  1079. break;
  1080. case CHANNEL_G:
  1081. case CHANNEL_G_HT20:
  1082. case CHANNEL_B:
  1083. modesIndex = 4;
  1084. break;
  1085. case CHANNEL_G_HT40PLUS:
  1086. case CHANNEL_G_HT40MINUS:
  1087. modesIndex = 3;
  1088. break;
  1089. default:
  1090. return -EINVAL;
  1091. }
  1092. if (modesIndex == ah->modes_index) {
  1093. *ini_reloaded = false;
  1094. goto set_rfmode;
  1095. }
  1096. ar9003_hw_prog_ini(ah, &ah->iniSOC[ATH_INI_POST], modesIndex);
  1097. ar9003_hw_prog_ini(ah, &ah->iniMac[ATH_INI_POST], modesIndex);
  1098. ar9003_hw_prog_ini(ah, &ah->iniBB[ATH_INI_POST], modesIndex);
  1099. ar9003_hw_prog_ini(ah, &ah->iniRadio[ATH_INI_POST], modesIndex);
  1100. if (AR_SREV_9462_20(ah))
  1101. ar9003_hw_prog_ini(ah,
  1102. &ah->ini_radio_post_sys2ant,
  1103. modesIndex);
  1104. REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
  1105. /*
  1106. * For 5GHz channels requiring Fast Clock, apply
  1107. * different modal values.
  1108. */
  1109. if (IS_CHAN_A_FAST_CLOCK(ah, chan))
  1110. REG_WRITE_ARRAY(&ah->iniModesFastClock, modesIndex, regWrites);
  1111. REG_WRITE_ARRAY(&ah->iniAdditional, 1, regWrites);
  1112. ah->modes_index = modesIndex;
  1113. *ini_reloaded = true;
  1114. set_rfmode:
  1115. ar9003_hw_set_rfmode(ah, chan);
  1116. return 0;
  1117. }
  1118. void ar9003_hw_attach_phy_ops(struct ath_hw *ah)
  1119. {
  1120. struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
  1121. struct ath_hw_ops *ops = ath9k_hw_ops(ah);
  1122. static const u32 ar9300_cca_regs[6] = {
  1123. AR_PHY_CCA_0,
  1124. AR_PHY_CCA_1,
  1125. AR_PHY_CCA_2,
  1126. AR_PHY_EXT_CCA,
  1127. AR_PHY_EXT_CCA_1,
  1128. AR_PHY_EXT_CCA_2,
  1129. };
  1130. priv_ops->rf_set_freq = ar9003_hw_set_channel;
  1131. priv_ops->spur_mitigate_freq = ar9003_hw_spur_mitigate;
  1132. priv_ops->compute_pll_control = ar9003_hw_compute_pll_control;
  1133. priv_ops->set_channel_regs = ar9003_hw_set_channel_regs;
  1134. priv_ops->init_bb = ar9003_hw_init_bb;
  1135. priv_ops->process_ini = ar9003_hw_process_ini;
  1136. priv_ops->set_rfmode = ar9003_hw_set_rfmode;
  1137. priv_ops->mark_phy_inactive = ar9003_hw_mark_phy_inactive;
  1138. priv_ops->set_delta_slope = ar9003_hw_set_delta_slope;
  1139. priv_ops->rfbus_req = ar9003_hw_rfbus_req;
  1140. priv_ops->rfbus_done = ar9003_hw_rfbus_done;
  1141. priv_ops->ani_control = ar9003_hw_ani_control;
  1142. priv_ops->do_getnf = ar9003_hw_do_getnf;
  1143. priv_ops->ani_cache_ini_regs = ar9003_hw_ani_cache_ini_regs;
  1144. priv_ops->set_radar_params = ar9003_hw_set_radar_params;
  1145. priv_ops->fast_chan_change = ar9003_hw_fast_chan_change;
  1146. ops->antdiv_comb_conf_get = ar9003_hw_antdiv_comb_conf_get;
  1147. ops->antdiv_comb_conf_set = ar9003_hw_antdiv_comb_conf_set;
  1148. ar9003_hw_set_nf_limits(ah);
  1149. ar9003_hw_set_radar_conf(ah);
  1150. memcpy(ah->nf_regs, ar9300_cca_regs, sizeof(ah->nf_regs));
  1151. }
  1152. void ar9003_hw_bb_watchdog_config(struct ath_hw *ah)
  1153. {
  1154. struct ath_common *common = ath9k_hw_common(ah);
  1155. u32 idle_tmo_ms = ah->bb_watchdog_timeout_ms;
  1156. u32 val, idle_count;
  1157. if (!idle_tmo_ms) {
  1158. /* disable IRQ, disable chip-reset for BB panic */
  1159. REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2,
  1160. REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) &
  1161. ~(AR_PHY_WATCHDOG_RST_ENABLE |
  1162. AR_PHY_WATCHDOG_IRQ_ENABLE));
  1163. /* disable watchdog in non-IDLE mode, disable in IDLE mode */
  1164. REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1,
  1165. REG_READ(ah, AR_PHY_WATCHDOG_CTL_1) &
  1166. ~(AR_PHY_WATCHDOG_NON_IDLE_ENABLE |
  1167. AR_PHY_WATCHDOG_IDLE_ENABLE));
  1168. ath_dbg(common, RESET, "Disabled BB Watchdog\n");
  1169. return;
  1170. }
  1171. /* enable IRQ, disable chip-reset for BB watchdog */
  1172. val = REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) & AR_PHY_WATCHDOG_CNTL2_MASK;
  1173. REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2,
  1174. (val | AR_PHY_WATCHDOG_IRQ_ENABLE) &
  1175. ~AR_PHY_WATCHDOG_RST_ENABLE);
  1176. /* bound limit to 10 secs */
  1177. if (idle_tmo_ms > 10000)
  1178. idle_tmo_ms = 10000;
  1179. /*
  1180. * The time unit for watchdog event is 2^15 44/88MHz cycles.
  1181. *
  1182. * For HT20 we have a time unit of 2^15/44 MHz = .74 ms per tick
  1183. * For HT40 we have a time unit of 2^15/88 MHz = .37 ms per tick
  1184. *
  1185. * Given we use fast clock now in 5 GHz, these time units should
  1186. * be common for both 2 GHz and 5 GHz.
  1187. */
  1188. idle_count = (100 * idle_tmo_ms) / 74;
  1189. if (ah->curchan && IS_CHAN_HT40(ah->curchan))
  1190. idle_count = (100 * idle_tmo_ms) / 37;
  1191. /*
  1192. * enable watchdog in non-IDLE mode, disable in IDLE mode,
  1193. * set idle time-out.
  1194. */
  1195. REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1,
  1196. AR_PHY_WATCHDOG_NON_IDLE_ENABLE |
  1197. AR_PHY_WATCHDOG_IDLE_MASK |
  1198. (AR_PHY_WATCHDOG_NON_IDLE_MASK & (idle_count << 2)));
  1199. ath_dbg(common, RESET, "Enabled BB Watchdog timeout (%u ms)\n",
  1200. idle_tmo_ms);
  1201. }
  1202. void ar9003_hw_bb_watchdog_read(struct ath_hw *ah)
  1203. {
  1204. /*
  1205. * we want to avoid printing in ISR context so we save the
  1206. * watchdog status to be printed later in bottom half context.
  1207. */
  1208. ah->bb_watchdog_last_status = REG_READ(ah, AR_PHY_WATCHDOG_STATUS);
  1209. /*
  1210. * the watchdog timer should reset on status read but to be sure
  1211. * sure we write 0 to the watchdog status bit.
  1212. */
  1213. REG_WRITE(ah, AR_PHY_WATCHDOG_STATUS,
  1214. ah->bb_watchdog_last_status & ~AR_PHY_WATCHDOG_STATUS_CLR);
  1215. }
  1216. void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah)
  1217. {
  1218. struct ath_common *common = ath9k_hw_common(ah);
  1219. u32 status;
  1220. if (likely(!(common->debug_mask & ATH_DBG_RESET)))
  1221. return;
  1222. status = ah->bb_watchdog_last_status;
  1223. ath_dbg(common, RESET,
  1224. "\n==== BB update: BB status=0x%08x ====\n", status);
  1225. ath_dbg(common, RESET,
  1226. "** BB state: wd=%u det=%u rdar=%u rOFDM=%d rCCK=%u tOFDM=%u tCCK=%u agc=%u src=%u **\n",
  1227. MS(status, AR_PHY_WATCHDOG_INFO),
  1228. MS(status, AR_PHY_WATCHDOG_DET_HANG),
  1229. MS(status, AR_PHY_WATCHDOG_RADAR_SM),
  1230. MS(status, AR_PHY_WATCHDOG_RX_OFDM_SM),
  1231. MS(status, AR_PHY_WATCHDOG_RX_CCK_SM),
  1232. MS(status, AR_PHY_WATCHDOG_TX_OFDM_SM),
  1233. MS(status, AR_PHY_WATCHDOG_TX_CCK_SM),
  1234. MS(status, AR_PHY_WATCHDOG_AGC_SM),
  1235. MS(status, AR_PHY_WATCHDOG_SRCH_SM));
  1236. ath_dbg(common, RESET, "** BB WD cntl: cntl1=0x%08x cntl2=0x%08x **\n",
  1237. REG_READ(ah, AR_PHY_WATCHDOG_CTL_1),
  1238. REG_READ(ah, AR_PHY_WATCHDOG_CTL_2));
  1239. ath_dbg(common, RESET, "** BB mode: BB_gen_controls=0x%08x **\n",
  1240. REG_READ(ah, AR_PHY_GEN_CTRL));
  1241. #define PCT(_field) (common->cc_survey._field * 100 / common->cc_survey.cycles)
  1242. if (common->cc_survey.cycles)
  1243. ath_dbg(common, RESET,
  1244. "** BB busy times: rx_clear=%d%%, rx_frame=%d%%, tx_frame=%d%% **\n",
  1245. PCT(rx_busy), PCT(rx_frame), PCT(tx_frame));
  1246. ath_dbg(common, RESET, "==== BB update: done ====\n\n");
  1247. }
  1248. EXPORT_SYMBOL(ar9003_hw_bb_watchdog_dbg_info);
  1249. void ar9003_hw_disable_phy_restart(struct ath_hw *ah)
  1250. {
  1251. u32 val;
  1252. /* While receiving unsupported rate frame rx state machine
  1253. * gets into a state 0xb and if phy_restart happens in that
  1254. * state, BB would go hang. If RXSM is in 0xb state after
  1255. * first bb panic, ensure to disable the phy_restart.
  1256. */
  1257. if (!((MS(ah->bb_watchdog_last_status,
  1258. AR_PHY_WATCHDOG_RX_OFDM_SM) == 0xb) ||
  1259. ah->bb_hang_rx_ofdm))
  1260. return;
  1261. ah->bb_hang_rx_ofdm = true;
  1262. val = REG_READ(ah, AR_PHY_RESTART);
  1263. val &= ~AR_PHY_RESTART_ENA;
  1264. REG_WRITE(ah, AR_PHY_RESTART, val);
  1265. }
  1266. EXPORT_SYMBOL(ar9003_hw_disable_phy_restart);