phy.c 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387
  1. /*
  2. * PHY functions
  3. *
  4. * Copyright (c) 2004-2007 Reyk Floeter <reyk@openbsd.org>
  5. * Copyright (c) 2006-2009 Nick Kossifidis <mickflemm@gmail.com>
  6. * Copyright (c) 2007-2008 Jiri Slaby <jirislaby@gmail.com>
  7. * Copyright (c) 2008-2009 Felix Fietkau <nbd@openwrt.org>
  8. *
  9. * Permission to use, copy, modify, and distribute this software for any
  10. * purpose with or without fee is hereby granted, provided that the above
  11. * copyright notice and this permission notice appear in all copies.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  14. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  15. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  16. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  17. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  18. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  19. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  20. *
  21. */
  22. #include <linux/delay.h>
  23. #include <linux/slab.h>
  24. #include "ath5k.h"
  25. #include "reg.h"
  26. #include "base.h"
  27. #include "rfbuffer.h"
  28. #include "rfgain.h"
  29. /******************\
  30. * Helper functions *
  31. \******************/
  32. /*
  33. * Get the PHY Chip revision
  34. */
  35. u16 ath5k_hw_radio_revision(struct ath5k_hw *ah, unsigned int chan)
  36. {
  37. unsigned int i;
  38. u32 srev;
  39. u16 ret;
  40. /*
  41. * Set the radio chip access register
  42. */
  43. switch (chan) {
  44. case CHANNEL_2GHZ:
  45. ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_2GHZ, AR5K_PHY(0));
  46. break;
  47. case CHANNEL_5GHZ:
  48. ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ, AR5K_PHY(0));
  49. break;
  50. default:
  51. return 0;
  52. }
  53. mdelay(2);
  54. /* ...wait until PHY is ready and read the selected radio revision */
  55. ath5k_hw_reg_write(ah, 0x00001c16, AR5K_PHY(0x34));
  56. for (i = 0; i < 8; i++)
  57. ath5k_hw_reg_write(ah, 0x00010000, AR5K_PHY(0x20));
  58. if (ah->ah_version == AR5K_AR5210) {
  59. srev = ath5k_hw_reg_read(ah, AR5K_PHY(256) >> 28) & 0xf;
  60. ret = (u16)ath5k_hw_bitswap(srev, 4) + 1;
  61. } else {
  62. srev = (ath5k_hw_reg_read(ah, AR5K_PHY(0x100)) >> 24) & 0xff;
  63. ret = (u16)ath5k_hw_bitswap(((srev & 0xf0) >> 4) |
  64. ((srev & 0x0f) << 4), 8);
  65. }
  66. /* Reset to the 5GHz mode */
  67. ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ, AR5K_PHY(0));
  68. return ret;
  69. }
  70. /*
  71. * Check if a channel is supported
  72. */
  73. bool ath5k_channel_ok(struct ath5k_hw *ah, u16 freq, unsigned int flags)
  74. {
  75. /* Check if the channel is in our supported range */
  76. if (flags & CHANNEL_2GHZ) {
  77. if ((freq >= ah->ah_capabilities.cap_range.range_2ghz_min) &&
  78. (freq <= ah->ah_capabilities.cap_range.range_2ghz_max))
  79. return true;
  80. } else if (flags & CHANNEL_5GHZ)
  81. if ((freq >= ah->ah_capabilities.cap_range.range_5ghz_min) &&
  82. (freq <= ah->ah_capabilities.cap_range.range_5ghz_max))
  83. return true;
  84. return false;
  85. }
  86. bool ath5k_hw_chan_has_spur_noise(struct ath5k_hw *ah,
  87. struct ieee80211_channel *channel)
  88. {
  89. u8 refclk_freq;
  90. if ((ah->ah_radio == AR5K_RF5112) ||
  91. (ah->ah_radio == AR5K_RF5413) ||
  92. (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4)))
  93. refclk_freq = 40;
  94. else
  95. refclk_freq = 32;
  96. if ((channel->center_freq % refclk_freq != 0) &&
  97. ((channel->center_freq % refclk_freq < 10) ||
  98. (channel->center_freq % refclk_freq > 22)))
  99. return true;
  100. else
  101. return false;
  102. }
  103. /*
  104. * Used to modify RF Banks before writing them to AR5K_RF_BUFFER
  105. */
  106. static unsigned int ath5k_hw_rfb_op(struct ath5k_hw *ah,
  107. const struct ath5k_rf_reg *rf_regs,
  108. u32 val, u8 reg_id, bool set)
  109. {
  110. const struct ath5k_rf_reg *rfreg = NULL;
  111. u8 offset, bank, num_bits, col, position;
  112. u16 entry;
  113. u32 mask, data, last_bit, bits_shifted, first_bit;
  114. u32 *rfb;
  115. s32 bits_left;
  116. int i;
  117. data = 0;
  118. rfb = ah->ah_rf_banks;
  119. for (i = 0; i < ah->ah_rf_regs_count; i++) {
  120. if (rf_regs[i].index == reg_id) {
  121. rfreg = &rf_regs[i];
  122. break;
  123. }
  124. }
  125. if (rfb == NULL || rfreg == NULL) {
  126. ATH5K_PRINTF("Rf register not found!\n");
  127. /* should not happen */
  128. return 0;
  129. }
  130. bank = rfreg->bank;
  131. num_bits = rfreg->field.len;
  132. first_bit = rfreg->field.pos;
  133. col = rfreg->field.col;
  134. /* first_bit is an offset from bank's
  135. * start. Since we have all banks on
  136. * the same array, we use this offset
  137. * to mark each bank's start */
  138. offset = ah->ah_offset[bank];
  139. /* Boundary check */
  140. if (!(col <= 3 && num_bits <= 32 && first_bit + num_bits <= 319)) {
  141. ATH5K_PRINTF("invalid values at offset %u\n", offset);
  142. return 0;
  143. }
  144. entry = ((first_bit - 1) / 8) + offset;
  145. position = (first_bit - 1) % 8;
  146. if (set)
  147. data = ath5k_hw_bitswap(val, num_bits);
  148. for (bits_shifted = 0, bits_left = num_bits; bits_left > 0;
  149. position = 0, entry++) {
  150. last_bit = (position + bits_left > 8) ? 8 :
  151. position + bits_left;
  152. mask = (((1 << last_bit) - 1) ^ ((1 << position) - 1)) <<
  153. (col * 8);
  154. if (set) {
  155. rfb[entry] &= ~mask;
  156. rfb[entry] |= ((data << position) << (col * 8)) & mask;
  157. data >>= (8 - position);
  158. } else {
  159. data |= (((rfb[entry] & mask) >> (col * 8)) >> position)
  160. << bits_shifted;
  161. bits_shifted += last_bit - position;
  162. }
  163. bits_left -= 8 - position;
  164. }
  165. data = set ? 1 : ath5k_hw_bitswap(data, num_bits);
  166. return data;
  167. }
  168. /**
  169. * ath5k_hw_write_ofdm_timings - set OFDM timings on AR5212
  170. *
  171. * @ah: the &struct ath5k_hw
  172. * @channel: the currently set channel upon reset
  173. *
  174. * Write the delta slope coefficient (used on pilot tracking ?) for OFDM
  175. * operation on the AR5212 upon reset. This is a helper for ath5k_hw_phy_init.
  176. *
  177. * Since delta slope is floating point we split it on its exponent and
  178. * mantissa and provide these values on hw.
  179. *
  180. * For more infos i think this patent is related
  181. * http://www.freepatentsonline.com/7184495.html
  182. */
  183. static inline int ath5k_hw_write_ofdm_timings(struct ath5k_hw *ah,
  184. struct ieee80211_channel *channel)
  185. {
  186. /* Get exponent and mantissa and set it */
  187. u32 coef_scaled, coef_exp, coef_man,
  188. ds_coef_exp, ds_coef_man, clock;
  189. BUG_ON(!(ah->ah_version == AR5K_AR5212) ||
  190. !(channel->hw_value & CHANNEL_OFDM));
  191. /* Get coefficient
  192. * ALGO: coef = (5 * clock / carrier_freq) / 2
  193. * we scale coef by shifting clock value by 24 for
  194. * better precision since we use integers */
  195. /* TODO: Half/quarter rate */
  196. clock = (channel->hw_value & CHANNEL_TURBO) ? 80 : 40;
  197. coef_scaled = ((5 * (clock << 24)) / 2) / channel->center_freq;
  198. /* Get exponent
  199. * ALGO: coef_exp = 14 - highest set bit position */
  200. coef_exp = ilog2(coef_scaled);
  201. /* Doesn't make sense if it's zero*/
  202. if (!coef_scaled || !coef_exp)
  203. return -EINVAL;
  204. /* Note: we've shifted coef_scaled by 24 */
  205. coef_exp = 14 - (coef_exp - 24);
  206. /* Get mantissa (significant digits)
  207. * ALGO: coef_mant = floor(coef_scaled* 2^coef_exp+0.5) */
  208. coef_man = coef_scaled +
  209. (1 << (24 - coef_exp - 1));
  210. /* Calculate delta slope coefficient exponent
  211. * and mantissa (remove scaling) and set them on hw */
  212. ds_coef_man = coef_man >> (24 - coef_exp);
  213. ds_coef_exp = coef_exp - 16;
  214. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_3,
  215. AR5K_PHY_TIMING_3_DSC_MAN, ds_coef_man);
  216. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_3,
  217. AR5K_PHY_TIMING_3_DSC_EXP, ds_coef_exp);
  218. return 0;
  219. }
  220. int ath5k_hw_phy_disable(struct ath5k_hw *ah)
  221. {
  222. /*Just a try M.F.*/
  223. ath5k_hw_reg_write(ah, AR5K_PHY_ACT_DISABLE, AR5K_PHY_ACT);
  224. return 0;
  225. }
  226. /**********************\
  227. * RF Gain optimization *
  228. \**********************/
  229. /*
  230. * This code is used to optimize RF gain on different environments
  231. * (temperature mostly) based on feedback from a power detector.
  232. *
  233. * It's only used on RF5111 and RF5112, later RF chips seem to have
  234. * auto adjustment on hw -notice they have a much smaller BANK 7 and
  235. * no gain optimization ladder-.
  236. *
  237. * For more infos check out this patent doc
  238. * http://www.freepatentsonline.com/7400691.html
  239. *
  240. * This paper describes power drops as seen on the receiver due to
  241. * probe packets
  242. * http://www.cnri.dit.ie/publications/ICT08%20-%20Practical%20Issues
  243. * %20of%20Power%20Control.pdf
  244. *
  245. * And this is the MadWiFi bug entry related to the above
  246. * http://madwifi-project.org/ticket/1659
  247. * with various measurements and diagrams
  248. *
  249. * TODO: Deal with power drops due to probes by setting an apropriate
  250. * tx power on the probe packets ! Make this part of the calibration process.
  251. */
  252. /* Initialize ah_gain durring attach */
  253. int ath5k_hw_rfgain_opt_init(struct ath5k_hw *ah)
  254. {
  255. /* Initialize the gain optimization values */
  256. switch (ah->ah_radio) {
  257. case AR5K_RF5111:
  258. ah->ah_gain.g_step_idx = rfgain_opt_5111.go_default;
  259. ah->ah_gain.g_low = 20;
  260. ah->ah_gain.g_high = 35;
  261. ah->ah_gain.g_state = AR5K_RFGAIN_ACTIVE;
  262. break;
  263. case AR5K_RF5112:
  264. ah->ah_gain.g_step_idx = rfgain_opt_5112.go_default;
  265. ah->ah_gain.g_low = 20;
  266. ah->ah_gain.g_high = 85;
  267. ah->ah_gain.g_state = AR5K_RFGAIN_ACTIVE;
  268. break;
  269. default:
  270. return -EINVAL;
  271. }
  272. return 0;
  273. }
  274. /* Schedule a gain probe check on the next transmited packet.
  275. * That means our next packet is going to be sent with lower
  276. * tx power and a Peak to Average Power Detector (PAPD) will try
  277. * to measure the gain.
  278. *
  279. * XXX: How about forcing a tx packet (bypassing PCU arbitrator etc)
  280. * just after we enable the probe so that we don't mess with
  281. * standard traffic ? Maybe it's time to use sw interrupts and
  282. * a probe tasklet !!!
  283. */
  284. static void ath5k_hw_request_rfgain_probe(struct ath5k_hw *ah)
  285. {
  286. /* Skip if gain calibration is inactive or
  287. * we already handle a probe request */
  288. if (ah->ah_gain.g_state != AR5K_RFGAIN_ACTIVE)
  289. return;
  290. /* Send the packet with 2dB below max power as
  291. * patent doc suggest */
  292. ath5k_hw_reg_write(ah, AR5K_REG_SM(ah->ah_txpower.txp_ofdm - 4,
  293. AR5K_PHY_PAPD_PROBE_TXPOWER) |
  294. AR5K_PHY_PAPD_PROBE_TX_NEXT, AR5K_PHY_PAPD_PROBE);
  295. ah->ah_gain.g_state = AR5K_RFGAIN_READ_REQUESTED;
  296. }
  297. /* Calculate gain_F measurement correction
  298. * based on the current step for RF5112 rev. 2 */
  299. static u32 ath5k_hw_rf_gainf_corr(struct ath5k_hw *ah)
  300. {
  301. u32 mix, step;
  302. u32 *rf;
  303. const struct ath5k_gain_opt *go;
  304. const struct ath5k_gain_opt_step *g_step;
  305. const struct ath5k_rf_reg *rf_regs;
  306. /* Only RF5112 Rev. 2 supports it */
  307. if ((ah->ah_radio != AR5K_RF5112) ||
  308. (ah->ah_radio_5ghz_revision <= AR5K_SREV_RAD_5112A))
  309. return 0;
  310. go = &rfgain_opt_5112;
  311. rf_regs = rf_regs_5112a;
  312. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_5112a);
  313. g_step = &go->go_step[ah->ah_gain.g_step_idx];
  314. if (ah->ah_rf_banks == NULL)
  315. return 0;
  316. rf = ah->ah_rf_banks;
  317. ah->ah_gain.g_f_corr = 0;
  318. /* No VGA (Variable Gain Amplifier) override, skip */
  319. if (ath5k_hw_rfb_op(ah, rf_regs, 0, AR5K_RF_MIXVGA_OVR, false) != 1)
  320. return 0;
  321. /* Mix gain stepping */
  322. step = ath5k_hw_rfb_op(ah, rf_regs, 0, AR5K_RF_MIXGAIN_STEP, false);
  323. /* Mix gain override */
  324. mix = g_step->gos_param[0];
  325. switch (mix) {
  326. case 3:
  327. ah->ah_gain.g_f_corr = step * 2;
  328. break;
  329. case 2:
  330. ah->ah_gain.g_f_corr = (step - 5) * 2;
  331. break;
  332. case 1:
  333. ah->ah_gain.g_f_corr = step;
  334. break;
  335. default:
  336. ah->ah_gain.g_f_corr = 0;
  337. break;
  338. }
  339. return ah->ah_gain.g_f_corr;
  340. }
  341. /* Check if current gain_F measurement is in the range of our
  342. * power detector windows. If we get a measurement outside range
  343. * we know it's not accurate (detectors can't measure anything outside
  344. * their detection window) so we must ignore it */
  345. static bool ath5k_hw_rf_check_gainf_readback(struct ath5k_hw *ah)
  346. {
  347. const struct ath5k_rf_reg *rf_regs;
  348. u32 step, mix_ovr, level[4];
  349. u32 *rf;
  350. if (ah->ah_rf_banks == NULL)
  351. return false;
  352. rf = ah->ah_rf_banks;
  353. if (ah->ah_radio == AR5K_RF5111) {
  354. rf_regs = rf_regs_5111;
  355. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_5111);
  356. step = ath5k_hw_rfb_op(ah, rf_regs, 0, AR5K_RF_RFGAIN_STEP,
  357. false);
  358. level[0] = 0;
  359. level[1] = (step == 63) ? 50 : step + 4;
  360. level[2] = (step != 63) ? 64 : level[0];
  361. level[3] = level[2] + 50 ;
  362. ah->ah_gain.g_high = level[3] -
  363. (step == 63 ? AR5K_GAIN_DYN_ADJUST_HI_MARGIN : -5);
  364. ah->ah_gain.g_low = level[0] +
  365. (step == 63 ? AR5K_GAIN_DYN_ADJUST_LO_MARGIN : 0);
  366. } else {
  367. rf_regs = rf_regs_5112;
  368. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_5112);
  369. mix_ovr = ath5k_hw_rfb_op(ah, rf_regs, 0, AR5K_RF_MIXVGA_OVR,
  370. false);
  371. level[0] = level[2] = 0;
  372. if (mix_ovr == 1) {
  373. level[1] = level[3] = 83;
  374. } else {
  375. level[1] = level[3] = 107;
  376. ah->ah_gain.g_high = 55;
  377. }
  378. }
  379. return (ah->ah_gain.g_current >= level[0] &&
  380. ah->ah_gain.g_current <= level[1]) ||
  381. (ah->ah_gain.g_current >= level[2] &&
  382. ah->ah_gain.g_current <= level[3]);
  383. }
  384. /* Perform gain_F adjustment by choosing the right set
  385. * of parameters from RF gain optimization ladder */
  386. static s8 ath5k_hw_rf_gainf_adjust(struct ath5k_hw *ah)
  387. {
  388. const struct ath5k_gain_opt *go;
  389. const struct ath5k_gain_opt_step *g_step;
  390. int ret = 0;
  391. switch (ah->ah_radio) {
  392. case AR5K_RF5111:
  393. go = &rfgain_opt_5111;
  394. break;
  395. case AR5K_RF5112:
  396. go = &rfgain_opt_5112;
  397. break;
  398. default:
  399. return 0;
  400. }
  401. g_step = &go->go_step[ah->ah_gain.g_step_idx];
  402. if (ah->ah_gain.g_current >= ah->ah_gain.g_high) {
  403. /* Reached maximum */
  404. if (ah->ah_gain.g_step_idx == 0)
  405. return -1;
  406. for (ah->ah_gain.g_target = ah->ah_gain.g_current;
  407. ah->ah_gain.g_target >= ah->ah_gain.g_high &&
  408. ah->ah_gain.g_step_idx > 0;
  409. g_step = &go->go_step[ah->ah_gain.g_step_idx])
  410. ah->ah_gain.g_target -= 2 *
  411. (go->go_step[--(ah->ah_gain.g_step_idx)].gos_gain -
  412. g_step->gos_gain);
  413. ret = 1;
  414. goto done;
  415. }
  416. if (ah->ah_gain.g_current <= ah->ah_gain.g_low) {
  417. /* Reached minimum */
  418. if (ah->ah_gain.g_step_idx == (go->go_steps_count - 1))
  419. return -2;
  420. for (ah->ah_gain.g_target = ah->ah_gain.g_current;
  421. ah->ah_gain.g_target <= ah->ah_gain.g_low &&
  422. ah->ah_gain.g_step_idx < go->go_steps_count-1;
  423. g_step = &go->go_step[ah->ah_gain.g_step_idx])
  424. ah->ah_gain.g_target -= 2 *
  425. (go->go_step[++ah->ah_gain.g_step_idx].gos_gain -
  426. g_step->gos_gain);
  427. ret = 2;
  428. goto done;
  429. }
  430. done:
  431. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_CALIBRATE,
  432. "ret %d, gain step %u, current gain %u, target gain %u\n",
  433. ret, ah->ah_gain.g_step_idx, ah->ah_gain.g_current,
  434. ah->ah_gain.g_target);
  435. return ret;
  436. }
  437. /* Main callback for thermal RF gain calibration engine
  438. * Check for a new gain reading and schedule an adjustment
  439. * if needed.
  440. *
  441. * TODO: Use sw interrupt to schedule reset if gain_F needs
  442. * adjustment */
  443. enum ath5k_rfgain ath5k_hw_gainf_calibrate(struct ath5k_hw *ah)
  444. {
  445. u32 data, type;
  446. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  447. if (ah->ah_rf_banks == NULL ||
  448. ah->ah_gain.g_state == AR5K_RFGAIN_INACTIVE)
  449. return AR5K_RFGAIN_INACTIVE;
  450. /* No check requested, either engine is inactive
  451. * or an adjustment is already requested */
  452. if (ah->ah_gain.g_state != AR5K_RFGAIN_READ_REQUESTED)
  453. goto done;
  454. /* Read the PAPD (Peak to Average Power Detector)
  455. * register */
  456. data = ath5k_hw_reg_read(ah, AR5K_PHY_PAPD_PROBE);
  457. /* No probe is scheduled, read gain_F measurement */
  458. if (!(data & AR5K_PHY_PAPD_PROBE_TX_NEXT)) {
  459. ah->ah_gain.g_current = data >> AR5K_PHY_PAPD_PROBE_GAINF_S;
  460. type = AR5K_REG_MS(data, AR5K_PHY_PAPD_PROBE_TYPE);
  461. /* If tx packet is CCK correct the gain_F measurement
  462. * by cck ofdm gain delta */
  463. if (type == AR5K_PHY_PAPD_PROBE_TYPE_CCK) {
  464. if (ah->ah_radio_5ghz_revision >= AR5K_SREV_RAD_5112A)
  465. ah->ah_gain.g_current +=
  466. ee->ee_cck_ofdm_gain_delta;
  467. else
  468. ah->ah_gain.g_current +=
  469. AR5K_GAIN_CCK_PROBE_CORR;
  470. }
  471. /* Further correct gain_F measurement for
  472. * RF5112A radios */
  473. if (ah->ah_radio_5ghz_revision >= AR5K_SREV_RAD_5112A) {
  474. ath5k_hw_rf_gainf_corr(ah);
  475. ah->ah_gain.g_current =
  476. ah->ah_gain.g_current >= ah->ah_gain.g_f_corr ?
  477. (ah->ah_gain.g_current-ah->ah_gain.g_f_corr) :
  478. 0;
  479. }
  480. /* Check if measurement is ok and if we need
  481. * to adjust gain, schedule a gain adjustment,
  482. * else switch back to the acive state */
  483. if (ath5k_hw_rf_check_gainf_readback(ah) &&
  484. AR5K_GAIN_CHECK_ADJUST(&ah->ah_gain) &&
  485. ath5k_hw_rf_gainf_adjust(ah)) {
  486. ah->ah_gain.g_state = AR5K_RFGAIN_NEED_CHANGE;
  487. } else {
  488. ah->ah_gain.g_state = AR5K_RFGAIN_ACTIVE;
  489. }
  490. }
  491. done:
  492. return ah->ah_gain.g_state;
  493. }
  494. /* Write initial RF gain table to set the RF sensitivity
  495. * this one works on all RF chips and has nothing to do
  496. * with gain_F calibration */
  497. static int ath5k_hw_rfgain_init(struct ath5k_hw *ah, unsigned int freq)
  498. {
  499. const struct ath5k_ini_rfgain *ath5k_rfg;
  500. unsigned int i, size;
  501. switch (ah->ah_radio) {
  502. case AR5K_RF5111:
  503. ath5k_rfg = rfgain_5111;
  504. size = ARRAY_SIZE(rfgain_5111);
  505. break;
  506. case AR5K_RF5112:
  507. ath5k_rfg = rfgain_5112;
  508. size = ARRAY_SIZE(rfgain_5112);
  509. break;
  510. case AR5K_RF2413:
  511. ath5k_rfg = rfgain_2413;
  512. size = ARRAY_SIZE(rfgain_2413);
  513. break;
  514. case AR5K_RF2316:
  515. ath5k_rfg = rfgain_2316;
  516. size = ARRAY_SIZE(rfgain_2316);
  517. break;
  518. case AR5K_RF5413:
  519. ath5k_rfg = rfgain_5413;
  520. size = ARRAY_SIZE(rfgain_5413);
  521. break;
  522. case AR5K_RF2317:
  523. case AR5K_RF2425:
  524. ath5k_rfg = rfgain_2425;
  525. size = ARRAY_SIZE(rfgain_2425);
  526. break;
  527. default:
  528. return -EINVAL;
  529. }
  530. switch (freq) {
  531. case AR5K_INI_RFGAIN_2GHZ:
  532. case AR5K_INI_RFGAIN_5GHZ:
  533. break;
  534. default:
  535. return -EINVAL;
  536. }
  537. for (i = 0; i < size; i++) {
  538. AR5K_REG_WAIT(i);
  539. ath5k_hw_reg_write(ah, ath5k_rfg[i].rfg_value[freq],
  540. (u32)ath5k_rfg[i].rfg_register);
  541. }
  542. return 0;
  543. }
  544. /********************\
  545. * RF Registers setup *
  546. \********************/
  547. /*
  548. * Setup RF registers by writing RF buffer on hw
  549. */
  550. static int ath5k_hw_rfregs_init(struct ath5k_hw *ah,
  551. struct ieee80211_channel *channel, unsigned int mode)
  552. {
  553. const struct ath5k_rf_reg *rf_regs;
  554. const struct ath5k_ini_rfbuffer *ini_rfb;
  555. const struct ath5k_gain_opt *go = NULL;
  556. const struct ath5k_gain_opt_step *g_step;
  557. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  558. u8 ee_mode = 0;
  559. u32 *rfb;
  560. int i, obdb = -1, bank = -1;
  561. switch (ah->ah_radio) {
  562. case AR5K_RF5111:
  563. rf_regs = rf_regs_5111;
  564. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_5111);
  565. ini_rfb = rfb_5111;
  566. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_5111);
  567. go = &rfgain_opt_5111;
  568. break;
  569. case AR5K_RF5112:
  570. if (ah->ah_radio_5ghz_revision >= AR5K_SREV_RAD_5112A) {
  571. rf_regs = rf_regs_5112a;
  572. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_5112a);
  573. ini_rfb = rfb_5112a;
  574. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_5112a);
  575. } else {
  576. rf_regs = rf_regs_5112;
  577. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_5112);
  578. ini_rfb = rfb_5112;
  579. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_5112);
  580. }
  581. go = &rfgain_opt_5112;
  582. break;
  583. case AR5K_RF2413:
  584. rf_regs = rf_regs_2413;
  585. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_2413);
  586. ini_rfb = rfb_2413;
  587. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_2413);
  588. break;
  589. case AR5K_RF2316:
  590. rf_regs = rf_regs_2316;
  591. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_2316);
  592. ini_rfb = rfb_2316;
  593. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_2316);
  594. break;
  595. case AR5K_RF5413:
  596. rf_regs = rf_regs_5413;
  597. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_5413);
  598. ini_rfb = rfb_5413;
  599. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_5413);
  600. break;
  601. case AR5K_RF2317:
  602. rf_regs = rf_regs_2425;
  603. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_2425);
  604. ini_rfb = rfb_2317;
  605. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_2317);
  606. break;
  607. case AR5K_RF2425:
  608. rf_regs = rf_regs_2425;
  609. ah->ah_rf_regs_count = ARRAY_SIZE(rf_regs_2425);
  610. if (ah->ah_mac_srev < AR5K_SREV_AR2417) {
  611. ini_rfb = rfb_2425;
  612. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_2425);
  613. } else {
  614. ini_rfb = rfb_2417;
  615. ah->ah_rf_banks_size = ARRAY_SIZE(rfb_2417);
  616. }
  617. break;
  618. default:
  619. return -EINVAL;
  620. }
  621. /* If it's the first time we set RF buffer, allocate
  622. * ah->ah_rf_banks based on ah->ah_rf_banks_size
  623. * we set above */
  624. if (ah->ah_rf_banks == NULL) {
  625. ah->ah_rf_banks = kmalloc(sizeof(u32) * ah->ah_rf_banks_size,
  626. GFP_KERNEL);
  627. if (ah->ah_rf_banks == NULL) {
  628. ATH5K_ERR(ah->ah_sc, "out of memory\n");
  629. return -ENOMEM;
  630. }
  631. }
  632. /* Copy values to modify them */
  633. rfb = ah->ah_rf_banks;
  634. for (i = 0; i < ah->ah_rf_banks_size; i++) {
  635. if (ini_rfb[i].rfb_bank >= AR5K_MAX_RF_BANKS) {
  636. ATH5K_ERR(ah->ah_sc, "invalid bank\n");
  637. return -EINVAL;
  638. }
  639. /* Bank changed, write down the offset */
  640. if (bank != ini_rfb[i].rfb_bank) {
  641. bank = ini_rfb[i].rfb_bank;
  642. ah->ah_offset[bank] = i;
  643. }
  644. rfb[i] = ini_rfb[i].rfb_mode_data[mode];
  645. }
  646. /* Set Output and Driver bias current (OB/DB) */
  647. if (channel->hw_value & CHANNEL_2GHZ) {
  648. if (channel->hw_value & CHANNEL_CCK)
  649. ee_mode = AR5K_EEPROM_MODE_11B;
  650. else
  651. ee_mode = AR5K_EEPROM_MODE_11G;
  652. /* For RF511X/RF211X combination we
  653. * use b_OB and b_DB parameters stored
  654. * in eeprom on ee->ee_ob[ee_mode][0]
  655. *
  656. * For all other chips we use OB/DB for 2Ghz
  657. * stored in the b/g modal section just like
  658. * 802.11a on ee->ee_ob[ee_mode][1] */
  659. if ((ah->ah_radio == AR5K_RF5111) ||
  660. (ah->ah_radio == AR5K_RF5112))
  661. obdb = 0;
  662. else
  663. obdb = 1;
  664. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_ob[ee_mode][obdb],
  665. AR5K_RF_OB_2GHZ, true);
  666. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_db[ee_mode][obdb],
  667. AR5K_RF_DB_2GHZ, true);
  668. /* RF5111 always needs OB/DB for 5GHz, even if we use 2GHz */
  669. } else if ((channel->hw_value & CHANNEL_5GHZ) ||
  670. (ah->ah_radio == AR5K_RF5111)) {
  671. /* For 11a, Turbo and XR we need to choose
  672. * OB/DB based on frequency range */
  673. ee_mode = AR5K_EEPROM_MODE_11A;
  674. obdb = channel->center_freq >= 5725 ? 3 :
  675. (channel->center_freq >= 5500 ? 2 :
  676. (channel->center_freq >= 5260 ? 1 :
  677. (channel->center_freq > 4000 ? 0 : -1)));
  678. if (obdb < 0)
  679. return -EINVAL;
  680. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_ob[ee_mode][obdb],
  681. AR5K_RF_OB_5GHZ, true);
  682. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_db[ee_mode][obdb],
  683. AR5K_RF_DB_5GHZ, true);
  684. }
  685. g_step = &go->go_step[ah->ah_gain.g_step_idx];
  686. /* Bank Modifications (chip-specific) */
  687. if (ah->ah_radio == AR5K_RF5111) {
  688. /* Set gain_F settings according to current step */
  689. if (channel->hw_value & CHANNEL_OFDM) {
  690. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_FRAME_CTL,
  691. AR5K_PHY_FRAME_CTL_TX_CLIP,
  692. g_step->gos_param[0]);
  693. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[1],
  694. AR5K_RF_PWD_90, true);
  695. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[2],
  696. AR5K_RF_PWD_84, true);
  697. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[3],
  698. AR5K_RF_RFGAIN_SEL, true);
  699. /* We programmed gain_F parameters, switch back
  700. * to active state */
  701. ah->ah_gain.g_state = AR5K_RFGAIN_ACTIVE;
  702. }
  703. /* Bank 6/7 setup */
  704. ath5k_hw_rfb_op(ah, rf_regs, !ee->ee_xpd[ee_mode],
  705. AR5K_RF_PWD_XPD, true);
  706. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_x_gain[ee_mode],
  707. AR5K_RF_XPD_GAIN, true);
  708. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_i_gain[ee_mode],
  709. AR5K_RF_GAIN_I, true);
  710. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_xpd[ee_mode],
  711. AR5K_RF_PLO_SEL, true);
  712. /* Tweak power detectors for half/quarter rate support */
  713. if (ah->ah_bwmode == AR5K_BWMODE_5MHZ ||
  714. ah->ah_bwmode == AR5K_BWMODE_10MHZ) {
  715. u8 wait_i;
  716. ath5k_hw_rfb_op(ah, rf_regs, 0x1f,
  717. AR5K_RF_WAIT_S, true);
  718. wait_i = (ah->ah_bwmode == AR5K_BWMODE_5MHZ) ?
  719. 0x1f : 0x10;
  720. ath5k_hw_rfb_op(ah, rf_regs, wait_i,
  721. AR5K_RF_WAIT_I, true);
  722. ath5k_hw_rfb_op(ah, rf_regs, 3,
  723. AR5K_RF_MAX_TIME, true);
  724. }
  725. }
  726. if (ah->ah_radio == AR5K_RF5112) {
  727. /* Set gain_F settings according to current step */
  728. if (channel->hw_value & CHANNEL_OFDM) {
  729. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[0],
  730. AR5K_RF_MIXGAIN_OVR, true);
  731. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[1],
  732. AR5K_RF_PWD_138, true);
  733. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[2],
  734. AR5K_RF_PWD_137, true);
  735. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[3],
  736. AR5K_RF_PWD_136, true);
  737. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[4],
  738. AR5K_RF_PWD_132, true);
  739. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[5],
  740. AR5K_RF_PWD_131, true);
  741. ath5k_hw_rfb_op(ah, rf_regs, g_step->gos_param[6],
  742. AR5K_RF_PWD_130, true);
  743. /* We programmed gain_F parameters, switch back
  744. * to active state */
  745. ah->ah_gain.g_state = AR5K_RFGAIN_ACTIVE;
  746. }
  747. /* Bank 6/7 setup */
  748. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_xpd[ee_mode],
  749. AR5K_RF_XPD_SEL, true);
  750. if (ah->ah_radio_5ghz_revision < AR5K_SREV_RAD_5112A) {
  751. /* Rev. 1 supports only one xpd */
  752. ath5k_hw_rfb_op(ah, rf_regs,
  753. ee->ee_x_gain[ee_mode],
  754. AR5K_RF_XPD_GAIN, true);
  755. } else {
  756. u8 *pdg_curve_to_idx = ee->ee_pdc_to_idx[ee_mode];
  757. if (ee->ee_pd_gains[ee_mode] > 1) {
  758. ath5k_hw_rfb_op(ah, rf_regs,
  759. pdg_curve_to_idx[0],
  760. AR5K_RF_PD_GAIN_LO, true);
  761. ath5k_hw_rfb_op(ah, rf_regs,
  762. pdg_curve_to_idx[1],
  763. AR5K_RF_PD_GAIN_HI, true);
  764. } else {
  765. ath5k_hw_rfb_op(ah, rf_regs,
  766. pdg_curve_to_idx[0],
  767. AR5K_RF_PD_GAIN_LO, true);
  768. ath5k_hw_rfb_op(ah, rf_regs,
  769. pdg_curve_to_idx[0],
  770. AR5K_RF_PD_GAIN_HI, true);
  771. }
  772. /* Lower synth voltage on Rev 2 */
  773. ath5k_hw_rfb_op(ah, rf_regs, 2,
  774. AR5K_RF_HIGH_VC_CP, true);
  775. ath5k_hw_rfb_op(ah, rf_regs, 2,
  776. AR5K_RF_MID_VC_CP, true);
  777. ath5k_hw_rfb_op(ah, rf_regs, 2,
  778. AR5K_RF_LOW_VC_CP, true);
  779. ath5k_hw_rfb_op(ah, rf_regs, 2,
  780. AR5K_RF_PUSH_UP, true);
  781. /* Decrease power consumption on 5213+ BaseBand */
  782. if (ah->ah_phy_revision >= AR5K_SREV_PHY_5212A) {
  783. ath5k_hw_rfb_op(ah, rf_regs, 1,
  784. AR5K_RF_PAD2GND, true);
  785. ath5k_hw_rfb_op(ah, rf_regs, 1,
  786. AR5K_RF_XB2_LVL, true);
  787. ath5k_hw_rfb_op(ah, rf_regs, 1,
  788. AR5K_RF_XB5_LVL, true);
  789. ath5k_hw_rfb_op(ah, rf_regs, 1,
  790. AR5K_RF_PWD_167, true);
  791. ath5k_hw_rfb_op(ah, rf_regs, 1,
  792. AR5K_RF_PWD_166, true);
  793. }
  794. }
  795. ath5k_hw_rfb_op(ah, rf_regs, ee->ee_i_gain[ee_mode],
  796. AR5K_RF_GAIN_I, true);
  797. /* Tweak power detector for half/quarter rates */
  798. if (ah->ah_bwmode == AR5K_BWMODE_5MHZ ||
  799. ah->ah_bwmode == AR5K_BWMODE_10MHZ) {
  800. u8 pd_delay;
  801. pd_delay = (ah->ah_bwmode == AR5K_BWMODE_5MHZ) ?
  802. 0xf : 0x8;
  803. ath5k_hw_rfb_op(ah, rf_regs, pd_delay,
  804. AR5K_RF_PD_PERIOD_A, true);
  805. ath5k_hw_rfb_op(ah, rf_regs, 0xf,
  806. AR5K_RF_PD_DELAY_A, true);
  807. }
  808. }
  809. if (ah->ah_radio == AR5K_RF5413 &&
  810. channel->hw_value & CHANNEL_2GHZ) {
  811. ath5k_hw_rfb_op(ah, rf_regs, 1, AR5K_RF_DERBY_CHAN_SEL_MODE,
  812. true);
  813. /* Set optimum value for early revisions (on pci-e chips) */
  814. if (ah->ah_mac_srev >= AR5K_SREV_AR5424 &&
  815. ah->ah_mac_srev < AR5K_SREV_AR5413)
  816. ath5k_hw_rfb_op(ah, rf_regs, ath5k_hw_bitswap(6, 3),
  817. AR5K_RF_PWD_ICLOBUF_2G, true);
  818. }
  819. /* Write RF banks on hw */
  820. for (i = 0; i < ah->ah_rf_banks_size; i++) {
  821. AR5K_REG_WAIT(i);
  822. ath5k_hw_reg_write(ah, rfb[i], ini_rfb[i].rfb_ctrl_register);
  823. }
  824. return 0;
  825. }
  826. /**************************\
  827. PHY/RF channel functions
  828. \**************************/
  829. /*
  830. * Convertion needed for RF5110
  831. */
  832. static u32 ath5k_hw_rf5110_chan2athchan(struct ieee80211_channel *channel)
  833. {
  834. u32 athchan;
  835. /*
  836. * Convert IEEE channel/MHz to an internal channel value used
  837. * by the AR5210 chipset. This has not been verified with
  838. * newer chipsets like the AR5212A who have a completely
  839. * different RF/PHY part.
  840. */
  841. athchan = (ath5k_hw_bitswap(
  842. (ieee80211_frequency_to_channel(
  843. channel->center_freq) - 24) / 2, 5)
  844. << 1) | (1 << 6) | 0x1;
  845. return athchan;
  846. }
  847. /*
  848. * Set channel on RF5110
  849. */
  850. static int ath5k_hw_rf5110_channel(struct ath5k_hw *ah,
  851. struct ieee80211_channel *channel)
  852. {
  853. u32 data;
  854. /*
  855. * Set the channel and wait
  856. */
  857. data = ath5k_hw_rf5110_chan2athchan(channel);
  858. ath5k_hw_reg_write(ah, data, AR5K_RF_BUFFER);
  859. ath5k_hw_reg_write(ah, 0, AR5K_RF_BUFFER_CONTROL_0);
  860. mdelay(1);
  861. return 0;
  862. }
  863. /*
  864. * Convertion needed for 5111
  865. */
  866. static int ath5k_hw_rf5111_chan2athchan(unsigned int ieee,
  867. struct ath5k_athchan_2ghz *athchan)
  868. {
  869. int channel;
  870. /* Cast this value to catch negative channel numbers (>= -19) */
  871. channel = (int)ieee;
  872. /*
  873. * Map 2GHz IEEE channel to 5GHz Atheros channel
  874. */
  875. if (channel <= 13) {
  876. athchan->a2_athchan = 115 + channel;
  877. athchan->a2_flags = 0x46;
  878. } else if (channel == 14) {
  879. athchan->a2_athchan = 124;
  880. athchan->a2_flags = 0x44;
  881. } else if (channel >= 15 && channel <= 26) {
  882. athchan->a2_athchan = ((channel - 14) * 4) + 132;
  883. athchan->a2_flags = 0x46;
  884. } else
  885. return -EINVAL;
  886. return 0;
  887. }
  888. /*
  889. * Set channel on 5111
  890. */
  891. static int ath5k_hw_rf5111_channel(struct ath5k_hw *ah,
  892. struct ieee80211_channel *channel)
  893. {
  894. struct ath5k_athchan_2ghz ath5k_channel_2ghz;
  895. unsigned int ath5k_channel =
  896. ieee80211_frequency_to_channel(channel->center_freq);
  897. u32 data0, data1, clock;
  898. int ret;
  899. /*
  900. * Set the channel on the RF5111 radio
  901. */
  902. data0 = data1 = 0;
  903. if (channel->hw_value & CHANNEL_2GHZ) {
  904. /* Map 2GHz channel to 5GHz Atheros channel ID */
  905. ret = ath5k_hw_rf5111_chan2athchan(
  906. ieee80211_frequency_to_channel(channel->center_freq),
  907. &ath5k_channel_2ghz);
  908. if (ret)
  909. return ret;
  910. ath5k_channel = ath5k_channel_2ghz.a2_athchan;
  911. data0 = ((ath5k_hw_bitswap(ath5k_channel_2ghz.a2_flags, 8) & 0xff)
  912. << 5) | (1 << 4);
  913. }
  914. if (ath5k_channel < 145 || !(ath5k_channel & 1)) {
  915. clock = 1;
  916. data1 = ((ath5k_hw_bitswap(ath5k_channel - 24, 8) & 0xff) << 2) |
  917. (clock << 1) | (1 << 10) | 1;
  918. } else {
  919. clock = 0;
  920. data1 = ((ath5k_hw_bitswap((ath5k_channel - 24) / 2, 8) & 0xff)
  921. << 2) | (clock << 1) | (1 << 10) | 1;
  922. }
  923. ath5k_hw_reg_write(ah, (data1 & 0xff) | ((data0 & 0xff) << 8),
  924. AR5K_RF_BUFFER);
  925. ath5k_hw_reg_write(ah, ((data1 >> 8) & 0xff) | (data0 & 0xff00),
  926. AR5K_RF_BUFFER_CONTROL_3);
  927. return 0;
  928. }
  929. /*
  930. * Set channel on 5112 and newer
  931. */
  932. static int ath5k_hw_rf5112_channel(struct ath5k_hw *ah,
  933. struct ieee80211_channel *channel)
  934. {
  935. u32 data, data0, data1, data2;
  936. u16 c;
  937. data = data0 = data1 = data2 = 0;
  938. c = channel->center_freq;
  939. if (c < 4800) {
  940. if (!((c - 2224) % 5)) {
  941. data0 = ((2 * (c - 704)) - 3040) / 10;
  942. data1 = 1;
  943. } else if (!((c - 2192) % 5)) {
  944. data0 = ((2 * (c - 672)) - 3040) / 10;
  945. data1 = 0;
  946. } else
  947. return -EINVAL;
  948. data0 = ath5k_hw_bitswap((data0 << 2) & 0xff, 8);
  949. } else if ((c % 5) != 2 || c > 5435) {
  950. if (!(c % 20) && c >= 5120) {
  951. data0 = ath5k_hw_bitswap(((c - 4800) / 20 << 2), 8);
  952. data2 = ath5k_hw_bitswap(3, 2);
  953. } else if (!(c % 10)) {
  954. data0 = ath5k_hw_bitswap(((c - 4800) / 10 << 1), 8);
  955. data2 = ath5k_hw_bitswap(2, 2);
  956. } else if (!(c % 5)) {
  957. data0 = ath5k_hw_bitswap((c - 4800) / 5, 8);
  958. data2 = ath5k_hw_bitswap(1, 2);
  959. } else
  960. return -EINVAL;
  961. } else {
  962. data0 = ath5k_hw_bitswap((10 * (c - 2 - 4800)) / 25 + 1, 8);
  963. data2 = ath5k_hw_bitswap(0, 2);
  964. }
  965. data = (data0 << 4) | (data1 << 1) | (data2 << 2) | 0x1001;
  966. ath5k_hw_reg_write(ah, data & 0xff, AR5K_RF_BUFFER);
  967. ath5k_hw_reg_write(ah, (data >> 8) & 0x7f, AR5K_RF_BUFFER_CONTROL_5);
  968. return 0;
  969. }
  970. /*
  971. * Set the channel on the RF2425
  972. */
  973. static int ath5k_hw_rf2425_channel(struct ath5k_hw *ah,
  974. struct ieee80211_channel *channel)
  975. {
  976. u32 data, data0, data2;
  977. u16 c;
  978. data = data0 = data2 = 0;
  979. c = channel->center_freq;
  980. if (c < 4800) {
  981. data0 = ath5k_hw_bitswap((c - 2272), 8);
  982. data2 = 0;
  983. /* ? 5GHz ? */
  984. } else if ((c % 5) != 2 || c > 5435) {
  985. if (!(c % 20) && c < 5120)
  986. data0 = ath5k_hw_bitswap(((c - 4800) / 20 << 2), 8);
  987. else if (!(c % 10))
  988. data0 = ath5k_hw_bitswap(((c - 4800) / 10 << 1), 8);
  989. else if (!(c % 5))
  990. data0 = ath5k_hw_bitswap((c - 4800) / 5, 8);
  991. else
  992. return -EINVAL;
  993. data2 = ath5k_hw_bitswap(1, 2);
  994. } else {
  995. data0 = ath5k_hw_bitswap((10 * (c - 2 - 4800)) / 25 + 1, 8);
  996. data2 = ath5k_hw_bitswap(0, 2);
  997. }
  998. data = (data0 << 4) | data2 << 2 | 0x1001;
  999. ath5k_hw_reg_write(ah, data & 0xff, AR5K_RF_BUFFER);
  1000. ath5k_hw_reg_write(ah, (data >> 8) & 0x7f, AR5K_RF_BUFFER_CONTROL_5);
  1001. return 0;
  1002. }
  1003. /*
  1004. * Set a channel on the radio chip
  1005. */
  1006. static int ath5k_hw_channel(struct ath5k_hw *ah,
  1007. struct ieee80211_channel *channel)
  1008. {
  1009. int ret;
  1010. /*
  1011. * Check bounds supported by the PHY (we don't care about regultory
  1012. * restrictions at this point). Note: hw_value already has the band
  1013. * (CHANNEL_2GHZ, or CHANNEL_5GHZ) so we inform ath5k_channel_ok()
  1014. * of the band by that */
  1015. if (!ath5k_channel_ok(ah, channel->center_freq, channel->hw_value)) {
  1016. ATH5K_ERR(ah->ah_sc,
  1017. "channel frequency (%u MHz) out of supported "
  1018. "band range\n",
  1019. channel->center_freq);
  1020. return -EINVAL;
  1021. }
  1022. /*
  1023. * Set the channel and wait
  1024. */
  1025. switch (ah->ah_radio) {
  1026. case AR5K_RF5110:
  1027. ret = ath5k_hw_rf5110_channel(ah, channel);
  1028. break;
  1029. case AR5K_RF5111:
  1030. ret = ath5k_hw_rf5111_channel(ah, channel);
  1031. break;
  1032. case AR5K_RF2425:
  1033. ret = ath5k_hw_rf2425_channel(ah, channel);
  1034. break;
  1035. default:
  1036. ret = ath5k_hw_rf5112_channel(ah, channel);
  1037. break;
  1038. }
  1039. if (ret)
  1040. return ret;
  1041. /* Set JAPAN setting for channel 14 */
  1042. if (channel->center_freq == 2484) {
  1043. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_CCKTXCTL,
  1044. AR5K_PHY_CCKTXCTL_JAPAN);
  1045. } else {
  1046. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_CCKTXCTL,
  1047. AR5K_PHY_CCKTXCTL_WORLD);
  1048. }
  1049. ah->ah_current_channel = channel;
  1050. return 0;
  1051. }
  1052. /*****************\
  1053. PHY calibration
  1054. \*****************/
  1055. static s32 ath5k_hw_read_measured_noise_floor(struct ath5k_hw *ah)
  1056. {
  1057. s32 val;
  1058. val = ath5k_hw_reg_read(ah, AR5K_PHY_NF);
  1059. return sign_extend32(AR5K_REG_MS(val, AR5K_PHY_NF_MINCCA_PWR), 8);
  1060. }
  1061. void ath5k_hw_init_nfcal_hist(struct ath5k_hw *ah)
  1062. {
  1063. int i;
  1064. ah->ah_nfcal_hist.index = 0;
  1065. for (i = 0; i < ATH5K_NF_CAL_HIST_MAX; i++)
  1066. ah->ah_nfcal_hist.nfval[i] = AR5K_TUNE_CCA_MAX_GOOD_VALUE;
  1067. }
  1068. static void ath5k_hw_update_nfcal_hist(struct ath5k_hw *ah, s16 noise_floor)
  1069. {
  1070. struct ath5k_nfcal_hist *hist = &ah->ah_nfcal_hist;
  1071. hist->index = (hist->index + 1) & (ATH5K_NF_CAL_HIST_MAX-1);
  1072. hist->nfval[hist->index] = noise_floor;
  1073. }
  1074. static s16 ath5k_hw_get_median_noise_floor(struct ath5k_hw *ah)
  1075. {
  1076. s16 sort[ATH5K_NF_CAL_HIST_MAX];
  1077. s16 tmp;
  1078. int i, j;
  1079. memcpy(sort, ah->ah_nfcal_hist.nfval, sizeof(sort));
  1080. for (i = 0; i < ATH5K_NF_CAL_HIST_MAX - 1; i++) {
  1081. for (j = 1; j < ATH5K_NF_CAL_HIST_MAX - i; j++) {
  1082. if (sort[j] > sort[j-1]) {
  1083. tmp = sort[j];
  1084. sort[j] = sort[j-1];
  1085. sort[j-1] = tmp;
  1086. }
  1087. }
  1088. }
  1089. for (i = 0; i < ATH5K_NF_CAL_HIST_MAX; i++) {
  1090. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_CALIBRATE,
  1091. "cal %d:%d\n", i, sort[i]);
  1092. }
  1093. return sort[(ATH5K_NF_CAL_HIST_MAX-1) / 2];
  1094. }
  1095. /*
  1096. * When we tell the hardware to perform a noise floor calibration
  1097. * by setting the AR5K_PHY_AGCCTL_NF bit, it will periodically
  1098. * sample-and-hold the minimum noise level seen at the antennas.
  1099. * This value is then stored in a ring buffer of recently measured
  1100. * noise floor values so we have a moving window of the last few
  1101. * samples.
  1102. *
  1103. * The median of the values in the history is then loaded into the
  1104. * hardware for its own use for RSSI and CCA measurements.
  1105. */
  1106. void ath5k_hw_update_noise_floor(struct ath5k_hw *ah)
  1107. {
  1108. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  1109. u32 val;
  1110. s16 nf, threshold;
  1111. u8 ee_mode;
  1112. /* keep last value if calibration hasn't completed */
  1113. if (ath5k_hw_reg_read(ah, AR5K_PHY_AGCCTL) & AR5K_PHY_AGCCTL_NF) {
  1114. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_CALIBRATE,
  1115. "NF did not complete in calibration window\n");
  1116. return;
  1117. }
  1118. switch (ah->ah_current_channel->hw_value & CHANNEL_MODES) {
  1119. case CHANNEL_A:
  1120. case CHANNEL_T:
  1121. case CHANNEL_XR:
  1122. ee_mode = AR5K_EEPROM_MODE_11A;
  1123. break;
  1124. case CHANNEL_G:
  1125. case CHANNEL_TG:
  1126. ee_mode = AR5K_EEPROM_MODE_11G;
  1127. break;
  1128. default:
  1129. case CHANNEL_B:
  1130. ee_mode = AR5K_EEPROM_MODE_11B;
  1131. break;
  1132. }
  1133. /* completed NF calibration, test threshold */
  1134. nf = ath5k_hw_read_measured_noise_floor(ah);
  1135. threshold = ee->ee_noise_floor_thr[ee_mode];
  1136. if (nf > threshold) {
  1137. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_CALIBRATE,
  1138. "noise floor failure detected; "
  1139. "read %d, threshold %d\n",
  1140. nf, threshold);
  1141. nf = AR5K_TUNE_CCA_MAX_GOOD_VALUE;
  1142. }
  1143. ath5k_hw_update_nfcal_hist(ah, nf);
  1144. nf = ath5k_hw_get_median_noise_floor(ah);
  1145. /* load noise floor (in .5 dBm) so the hardware will use it */
  1146. val = ath5k_hw_reg_read(ah, AR5K_PHY_NF) & ~AR5K_PHY_NF_M;
  1147. val |= (nf * 2) & AR5K_PHY_NF_M;
  1148. ath5k_hw_reg_write(ah, val, AR5K_PHY_NF);
  1149. AR5K_REG_MASKED_BITS(ah, AR5K_PHY_AGCCTL, AR5K_PHY_AGCCTL_NF,
  1150. ~(AR5K_PHY_AGCCTL_NF_EN | AR5K_PHY_AGCCTL_NF_NOUPDATE));
  1151. ath5k_hw_register_timeout(ah, AR5K_PHY_AGCCTL, AR5K_PHY_AGCCTL_NF,
  1152. 0, false);
  1153. /*
  1154. * Load a high max CCA Power value (-50 dBm in .5 dBm units)
  1155. * so that we're not capped by the median we just loaded.
  1156. * This will be used as the initial value for the next noise
  1157. * floor calibration.
  1158. */
  1159. val = (val & ~AR5K_PHY_NF_M) | ((-50 * 2) & AR5K_PHY_NF_M);
  1160. ath5k_hw_reg_write(ah, val, AR5K_PHY_NF);
  1161. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGCCTL,
  1162. AR5K_PHY_AGCCTL_NF_EN |
  1163. AR5K_PHY_AGCCTL_NF_NOUPDATE |
  1164. AR5K_PHY_AGCCTL_NF);
  1165. ah->ah_noise_floor = nf;
  1166. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_CALIBRATE,
  1167. "noise floor calibrated: %d\n", nf);
  1168. }
  1169. /*
  1170. * Perform a PHY calibration on RF5110
  1171. * -Fix BPSK/QAM Constellation (I/Q correction)
  1172. */
  1173. static int ath5k_hw_rf5110_calibrate(struct ath5k_hw *ah,
  1174. struct ieee80211_channel *channel)
  1175. {
  1176. u32 phy_sig, phy_agc, phy_sat, beacon;
  1177. int ret;
  1178. /*
  1179. * Disable beacons and RX/TX queues, wait
  1180. */
  1181. AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW_5210,
  1182. AR5K_DIAG_SW_DIS_TX_5210 | AR5K_DIAG_SW_DIS_RX_5210);
  1183. beacon = ath5k_hw_reg_read(ah, AR5K_BEACON_5210);
  1184. ath5k_hw_reg_write(ah, beacon & ~AR5K_BEACON_ENABLE, AR5K_BEACON_5210);
  1185. mdelay(2);
  1186. /*
  1187. * Set the channel (with AGC turned off)
  1188. */
  1189. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGC, AR5K_PHY_AGC_DISABLE);
  1190. udelay(10);
  1191. ret = ath5k_hw_channel(ah, channel);
  1192. /*
  1193. * Activate PHY and wait
  1194. */
  1195. ath5k_hw_reg_write(ah, AR5K_PHY_ACT_ENABLE, AR5K_PHY_ACT);
  1196. mdelay(1);
  1197. AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_AGC, AR5K_PHY_AGC_DISABLE);
  1198. if (ret)
  1199. return ret;
  1200. /*
  1201. * Calibrate the radio chip
  1202. */
  1203. /* Remember normal state */
  1204. phy_sig = ath5k_hw_reg_read(ah, AR5K_PHY_SIG);
  1205. phy_agc = ath5k_hw_reg_read(ah, AR5K_PHY_AGCCOARSE);
  1206. phy_sat = ath5k_hw_reg_read(ah, AR5K_PHY_ADCSAT);
  1207. /* Update radio registers */
  1208. ath5k_hw_reg_write(ah, (phy_sig & ~(AR5K_PHY_SIG_FIRPWR)) |
  1209. AR5K_REG_SM(-1, AR5K_PHY_SIG_FIRPWR), AR5K_PHY_SIG);
  1210. ath5k_hw_reg_write(ah, (phy_agc & ~(AR5K_PHY_AGCCOARSE_HI |
  1211. AR5K_PHY_AGCCOARSE_LO)) |
  1212. AR5K_REG_SM(-1, AR5K_PHY_AGCCOARSE_HI) |
  1213. AR5K_REG_SM(-127, AR5K_PHY_AGCCOARSE_LO), AR5K_PHY_AGCCOARSE);
  1214. ath5k_hw_reg_write(ah, (phy_sat & ~(AR5K_PHY_ADCSAT_ICNT |
  1215. AR5K_PHY_ADCSAT_THR)) |
  1216. AR5K_REG_SM(2, AR5K_PHY_ADCSAT_ICNT) |
  1217. AR5K_REG_SM(12, AR5K_PHY_ADCSAT_THR), AR5K_PHY_ADCSAT);
  1218. udelay(20);
  1219. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGC, AR5K_PHY_AGC_DISABLE);
  1220. udelay(10);
  1221. ath5k_hw_reg_write(ah, AR5K_PHY_RFSTG_DISABLE, AR5K_PHY_RFSTG);
  1222. AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_AGC, AR5K_PHY_AGC_DISABLE);
  1223. mdelay(1);
  1224. /*
  1225. * Enable calibration and wait until completion
  1226. */
  1227. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGCCTL, AR5K_PHY_AGCCTL_CAL);
  1228. ret = ath5k_hw_register_timeout(ah, AR5K_PHY_AGCCTL,
  1229. AR5K_PHY_AGCCTL_CAL, 0, false);
  1230. /* Reset to normal state */
  1231. ath5k_hw_reg_write(ah, phy_sig, AR5K_PHY_SIG);
  1232. ath5k_hw_reg_write(ah, phy_agc, AR5K_PHY_AGCCOARSE);
  1233. ath5k_hw_reg_write(ah, phy_sat, AR5K_PHY_ADCSAT);
  1234. if (ret) {
  1235. ATH5K_ERR(ah->ah_sc, "calibration timeout (%uMHz)\n",
  1236. channel->center_freq);
  1237. return ret;
  1238. }
  1239. /*
  1240. * Re-enable RX/TX and beacons
  1241. */
  1242. AR5K_REG_DISABLE_BITS(ah, AR5K_DIAG_SW_5210,
  1243. AR5K_DIAG_SW_DIS_TX_5210 | AR5K_DIAG_SW_DIS_RX_5210);
  1244. ath5k_hw_reg_write(ah, beacon, AR5K_BEACON_5210);
  1245. return 0;
  1246. }
  1247. /*
  1248. * Perform I/Q calibration on RF5111/5112 and newer chips
  1249. */
  1250. static int
  1251. ath5k_hw_rf511x_iq_calibrate(struct ath5k_hw *ah)
  1252. {
  1253. u32 i_pwr, q_pwr;
  1254. s32 iq_corr, i_coff, i_coffd, q_coff, q_coffd;
  1255. int i;
  1256. if (!ah->ah_calibration ||
  1257. ath5k_hw_reg_read(ah, AR5K_PHY_IQ) & AR5K_PHY_IQ_RUN)
  1258. return 0;
  1259. /* Calibration has finished, get the results and re-run */
  1260. /* work around empty results which can apparently happen on 5212 */
  1261. for (i = 0; i <= 10; i++) {
  1262. iq_corr = ath5k_hw_reg_read(ah, AR5K_PHY_IQRES_CAL_CORR);
  1263. i_pwr = ath5k_hw_reg_read(ah, AR5K_PHY_IQRES_CAL_PWR_I);
  1264. q_pwr = ath5k_hw_reg_read(ah, AR5K_PHY_IQRES_CAL_PWR_Q);
  1265. ATH5K_DBG_UNLIMIT(ah->ah_sc, ATH5K_DEBUG_CALIBRATE,
  1266. "iq_corr:%x i_pwr:%x q_pwr:%x", iq_corr, i_pwr, q_pwr);
  1267. if (i_pwr && q_pwr)
  1268. break;
  1269. }
  1270. i_coffd = ((i_pwr >> 1) + (q_pwr >> 1)) >> 7;
  1271. if (ah->ah_version == AR5K_AR5211)
  1272. q_coffd = q_pwr >> 6;
  1273. else
  1274. q_coffd = q_pwr >> 7;
  1275. /* protect against divide by 0 and loss of sign bits */
  1276. if (i_coffd == 0 || q_coffd < 2)
  1277. return 0;
  1278. i_coff = (-iq_corr) / i_coffd;
  1279. i_coff = clamp(i_coff, -32, 31); /* signed 6 bit */
  1280. if (ah->ah_version == AR5K_AR5211)
  1281. q_coff = (i_pwr / q_coffd) - 64;
  1282. else
  1283. q_coff = (i_pwr / q_coffd) - 128;
  1284. q_coff = clamp(q_coff, -16, 15); /* signed 5 bit */
  1285. ATH5K_DBG_UNLIMIT(ah->ah_sc, ATH5K_DEBUG_CALIBRATE,
  1286. "new I:%d Q:%d (i_coffd:%x q_coffd:%x)",
  1287. i_coff, q_coff, i_coffd, q_coffd);
  1288. /* Commit new I/Q values (set enable bit last to match HAL sources) */
  1289. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_I_COFF, i_coff);
  1290. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_Q_COFF, q_coff);
  1291. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_ENABLE);
  1292. /* Re-enable calibration -if we don't we'll commit
  1293. * the same values again and again */
  1294. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ,
  1295. AR5K_PHY_IQ_CAL_NUM_LOG_MAX, 15);
  1296. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_RUN);
  1297. return 0;
  1298. }
  1299. /*
  1300. * Perform a PHY calibration
  1301. */
  1302. int ath5k_hw_phy_calibrate(struct ath5k_hw *ah,
  1303. struct ieee80211_channel *channel)
  1304. {
  1305. int ret;
  1306. if (ah->ah_radio == AR5K_RF5110)
  1307. ret = ath5k_hw_rf5110_calibrate(ah, channel);
  1308. else {
  1309. ret = ath5k_hw_rf511x_iq_calibrate(ah);
  1310. ath5k_hw_request_rfgain_probe(ah);
  1311. }
  1312. return ret;
  1313. }
  1314. /***************************\
  1315. * Spur mitigation functions *
  1316. \***************************/
  1317. static void
  1318. ath5k_hw_set_spur_mitigation_filter(struct ath5k_hw *ah,
  1319. struct ieee80211_channel *channel)
  1320. {
  1321. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  1322. u32 mag_mask[4] = {0, 0, 0, 0};
  1323. u32 pilot_mask[2] = {0, 0};
  1324. /* Note: fbin values are scaled up by 2 */
  1325. u16 spur_chan_fbin, chan_fbin, symbol_width, spur_detection_window;
  1326. s32 spur_delta_phase, spur_freq_sigma_delta;
  1327. s32 spur_offset, num_symbols_x16;
  1328. u8 num_symbol_offsets, i, freq_band;
  1329. /* Convert current frequency to fbin value (the same way channels
  1330. * are stored on EEPROM, check out ath5k_eeprom_bin2freq) and scale
  1331. * up by 2 so we can compare it later */
  1332. if (channel->hw_value & CHANNEL_2GHZ) {
  1333. chan_fbin = (channel->center_freq - 2300) * 10;
  1334. freq_band = AR5K_EEPROM_BAND_2GHZ;
  1335. } else {
  1336. chan_fbin = (channel->center_freq - 4900) * 10;
  1337. freq_band = AR5K_EEPROM_BAND_5GHZ;
  1338. }
  1339. /* Check if any spur_chan_fbin from EEPROM is
  1340. * within our current channel's spur detection range */
  1341. spur_chan_fbin = AR5K_EEPROM_NO_SPUR;
  1342. spur_detection_window = AR5K_SPUR_CHAN_WIDTH;
  1343. /* XXX: Half/Quarter channels ?*/
  1344. if (ah->ah_bwmode == AR5K_BWMODE_40MHZ)
  1345. spur_detection_window *= 2;
  1346. for (i = 0; i < AR5K_EEPROM_N_SPUR_CHANS; i++) {
  1347. spur_chan_fbin = ee->ee_spur_chans[i][freq_band];
  1348. /* Note: mask cleans AR5K_EEPROM_NO_SPUR flag
  1349. * so it's zero if we got nothing from EEPROM */
  1350. if (spur_chan_fbin == AR5K_EEPROM_NO_SPUR) {
  1351. spur_chan_fbin &= AR5K_EEPROM_SPUR_CHAN_MASK;
  1352. break;
  1353. }
  1354. if ((chan_fbin - spur_detection_window <=
  1355. (spur_chan_fbin & AR5K_EEPROM_SPUR_CHAN_MASK)) &&
  1356. (chan_fbin + spur_detection_window >=
  1357. (spur_chan_fbin & AR5K_EEPROM_SPUR_CHAN_MASK))) {
  1358. spur_chan_fbin &= AR5K_EEPROM_SPUR_CHAN_MASK;
  1359. break;
  1360. }
  1361. }
  1362. /* We need to enable spur filter for this channel */
  1363. if (spur_chan_fbin) {
  1364. spur_offset = spur_chan_fbin - chan_fbin;
  1365. /*
  1366. * Calculate deltas:
  1367. * spur_freq_sigma_delta -> spur_offset / sample_freq << 21
  1368. * spur_delta_phase -> spur_offset / chip_freq << 11
  1369. * Note: Both values have 100Hz resolution
  1370. */
  1371. switch (ah->ah_bwmode) {
  1372. case AR5K_BWMODE_40MHZ:
  1373. /* Both sample_freq and chip_freq are 80MHz */
  1374. spur_delta_phase = (spur_offset << 16) / 25;
  1375. spur_freq_sigma_delta = (spur_delta_phase >> 10);
  1376. symbol_width = AR5K_SPUR_SYMBOL_WIDTH_BASE_100Hz * 2;
  1377. break;
  1378. case AR5K_BWMODE_10MHZ:
  1379. /* Both sample_freq and chip_freq are 20MHz (?) */
  1380. spur_delta_phase = (spur_offset << 18) / 25;
  1381. spur_freq_sigma_delta = (spur_delta_phase >> 10);
  1382. symbol_width = AR5K_SPUR_SYMBOL_WIDTH_BASE_100Hz / 2;
  1383. case AR5K_BWMODE_5MHZ:
  1384. /* Both sample_freq and chip_freq are 10MHz (?) */
  1385. spur_delta_phase = (spur_offset << 19) / 25;
  1386. spur_freq_sigma_delta = (spur_delta_phase >> 10);
  1387. symbol_width = AR5K_SPUR_SYMBOL_WIDTH_BASE_100Hz / 4;
  1388. default:
  1389. if (channel->hw_value == CHANNEL_A) {
  1390. /* Both sample_freq and chip_freq are 40MHz */
  1391. spur_delta_phase = (spur_offset << 17) / 25;
  1392. spur_freq_sigma_delta =
  1393. (spur_delta_phase >> 10);
  1394. symbol_width =
  1395. AR5K_SPUR_SYMBOL_WIDTH_BASE_100Hz;
  1396. } else {
  1397. /* sample_freq -> 40MHz chip_freq -> 44MHz
  1398. * (for b compatibility) */
  1399. spur_delta_phase = (spur_offset << 17) / 25;
  1400. spur_freq_sigma_delta =
  1401. (spur_offset << 8) / 55;
  1402. symbol_width =
  1403. AR5K_SPUR_SYMBOL_WIDTH_BASE_100Hz;
  1404. }
  1405. break;
  1406. }
  1407. /* Calculate pilot and magnitude masks */
  1408. /* Scale up spur_offset by 1000 to switch to 100HZ resolution
  1409. * and divide by symbol_width to find how many symbols we have
  1410. * Note: number of symbols is scaled up by 16 */
  1411. num_symbols_x16 = ((spur_offset * 1000) << 4) / symbol_width;
  1412. /* Spur is on a symbol if num_symbols_x16 % 16 is zero */
  1413. if (!(num_symbols_x16 & 0xF))
  1414. /* _X_ */
  1415. num_symbol_offsets = 3;
  1416. else
  1417. /* _xx_ */
  1418. num_symbol_offsets = 4;
  1419. for (i = 0; i < num_symbol_offsets; i++) {
  1420. /* Calculate pilot mask */
  1421. s32 curr_sym_off =
  1422. (num_symbols_x16 / 16) + i + 25;
  1423. /* Pilot magnitude mask seems to be a way to
  1424. * declare the boundaries for our detection
  1425. * window or something, it's 2 for the middle
  1426. * value(s) where the symbol is expected to be
  1427. * and 1 on the boundary values */
  1428. u8 plt_mag_map =
  1429. (i == 0 || i == (num_symbol_offsets - 1))
  1430. ? 1 : 2;
  1431. if (curr_sym_off >= 0 && curr_sym_off <= 32) {
  1432. if (curr_sym_off <= 25)
  1433. pilot_mask[0] |= 1 << curr_sym_off;
  1434. else if (curr_sym_off >= 27)
  1435. pilot_mask[0] |= 1 << (curr_sym_off - 1);
  1436. } else if (curr_sym_off >= 33 && curr_sym_off <= 52)
  1437. pilot_mask[1] |= 1 << (curr_sym_off - 33);
  1438. /* Calculate magnitude mask (for viterbi decoder) */
  1439. if (curr_sym_off >= -1 && curr_sym_off <= 14)
  1440. mag_mask[0] |=
  1441. plt_mag_map << (curr_sym_off + 1) * 2;
  1442. else if (curr_sym_off >= 15 && curr_sym_off <= 30)
  1443. mag_mask[1] |=
  1444. plt_mag_map << (curr_sym_off - 15) * 2;
  1445. else if (curr_sym_off >= 31 && curr_sym_off <= 46)
  1446. mag_mask[2] |=
  1447. plt_mag_map << (curr_sym_off - 31) * 2;
  1448. else if (curr_sym_off >= 47 && curr_sym_off <= 53)
  1449. mag_mask[3] |=
  1450. plt_mag_map << (curr_sym_off - 47) * 2;
  1451. }
  1452. /* Write settings on hw to enable spur filter */
  1453. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_BIN_MASK_CTL,
  1454. AR5K_PHY_BIN_MASK_CTL_RATE, 0xff);
  1455. /* XXX: Self correlator also ? */
  1456. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ,
  1457. AR5K_PHY_IQ_PILOT_MASK_EN |
  1458. AR5K_PHY_IQ_CHAN_MASK_EN |
  1459. AR5K_PHY_IQ_SPUR_FILT_EN);
  1460. /* Set delta phase and freq sigma delta */
  1461. ath5k_hw_reg_write(ah,
  1462. AR5K_REG_SM(spur_delta_phase,
  1463. AR5K_PHY_TIMING_11_SPUR_DELTA_PHASE) |
  1464. AR5K_REG_SM(spur_freq_sigma_delta,
  1465. AR5K_PHY_TIMING_11_SPUR_FREQ_SD) |
  1466. AR5K_PHY_TIMING_11_USE_SPUR_IN_AGC,
  1467. AR5K_PHY_TIMING_11);
  1468. /* Write pilot masks */
  1469. ath5k_hw_reg_write(ah, pilot_mask[0], AR5K_PHY_TIMING_7);
  1470. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_8,
  1471. AR5K_PHY_TIMING_8_PILOT_MASK_2,
  1472. pilot_mask[1]);
  1473. ath5k_hw_reg_write(ah, pilot_mask[0], AR5K_PHY_TIMING_9);
  1474. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_10,
  1475. AR5K_PHY_TIMING_10_PILOT_MASK_2,
  1476. pilot_mask[1]);
  1477. /* Write magnitude masks */
  1478. ath5k_hw_reg_write(ah, mag_mask[0], AR5K_PHY_BIN_MASK_1);
  1479. ath5k_hw_reg_write(ah, mag_mask[1], AR5K_PHY_BIN_MASK_2);
  1480. ath5k_hw_reg_write(ah, mag_mask[2], AR5K_PHY_BIN_MASK_3);
  1481. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_BIN_MASK_CTL,
  1482. AR5K_PHY_BIN_MASK_CTL_MASK_4,
  1483. mag_mask[3]);
  1484. ath5k_hw_reg_write(ah, mag_mask[0], AR5K_PHY_BIN_MASK2_1);
  1485. ath5k_hw_reg_write(ah, mag_mask[1], AR5K_PHY_BIN_MASK2_2);
  1486. ath5k_hw_reg_write(ah, mag_mask[2], AR5K_PHY_BIN_MASK2_3);
  1487. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_BIN_MASK2_4,
  1488. AR5K_PHY_BIN_MASK2_4_MASK_4,
  1489. mag_mask[3]);
  1490. } else if (ath5k_hw_reg_read(ah, AR5K_PHY_IQ) &
  1491. AR5K_PHY_IQ_SPUR_FILT_EN) {
  1492. /* Clean up spur mitigation settings and disable fliter */
  1493. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_BIN_MASK_CTL,
  1494. AR5K_PHY_BIN_MASK_CTL_RATE, 0);
  1495. AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_IQ,
  1496. AR5K_PHY_IQ_PILOT_MASK_EN |
  1497. AR5K_PHY_IQ_CHAN_MASK_EN |
  1498. AR5K_PHY_IQ_SPUR_FILT_EN);
  1499. ath5k_hw_reg_write(ah, 0, AR5K_PHY_TIMING_11);
  1500. /* Clear pilot masks */
  1501. ath5k_hw_reg_write(ah, 0, AR5K_PHY_TIMING_7);
  1502. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_8,
  1503. AR5K_PHY_TIMING_8_PILOT_MASK_2,
  1504. 0);
  1505. ath5k_hw_reg_write(ah, 0, AR5K_PHY_TIMING_9);
  1506. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_10,
  1507. AR5K_PHY_TIMING_10_PILOT_MASK_2,
  1508. 0);
  1509. /* Clear magnitude masks */
  1510. ath5k_hw_reg_write(ah, 0, AR5K_PHY_BIN_MASK_1);
  1511. ath5k_hw_reg_write(ah, 0, AR5K_PHY_BIN_MASK_2);
  1512. ath5k_hw_reg_write(ah, 0, AR5K_PHY_BIN_MASK_3);
  1513. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_BIN_MASK_CTL,
  1514. AR5K_PHY_BIN_MASK_CTL_MASK_4,
  1515. 0);
  1516. ath5k_hw_reg_write(ah, 0, AR5K_PHY_BIN_MASK2_1);
  1517. ath5k_hw_reg_write(ah, 0, AR5K_PHY_BIN_MASK2_2);
  1518. ath5k_hw_reg_write(ah, 0, AR5K_PHY_BIN_MASK2_3);
  1519. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_BIN_MASK2_4,
  1520. AR5K_PHY_BIN_MASK2_4_MASK_4,
  1521. 0);
  1522. }
  1523. }
  1524. /*****************\
  1525. * Antenna control *
  1526. \*****************/
  1527. static void /*TODO:Boundary check*/
  1528. ath5k_hw_set_def_antenna(struct ath5k_hw *ah, u8 ant)
  1529. {
  1530. if (ah->ah_version != AR5K_AR5210)
  1531. ath5k_hw_reg_write(ah, ant & 0x7, AR5K_DEFAULT_ANTENNA);
  1532. }
  1533. /*
  1534. * Enable/disable fast rx antenna diversity
  1535. */
  1536. static void
  1537. ath5k_hw_set_fast_div(struct ath5k_hw *ah, u8 ee_mode, bool enable)
  1538. {
  1539. switch (ee_mode) {
  1540. case AR5K_EEPROM_MODE_11G:
  1541. /* XXX: This is set to
  1542. * disabled on initvals !!! */
  1543. case AR5K_EEPROM_MODE_11A:
  1544. if (enable)
  1545. AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_AGCCTL,
  1546. AR5K_PHY_AGCCTL_OFDM_DIV_DIS);
  1547. else
  1548. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGCCTL,
  1549. AR5K_PHY_AGCCTL_OFDM_DIV_DIS);
  1550. break;
  1551. case AR5K_EEPROM_MODE_11B:
  1552. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGCCTL,
  1553. AR5K_PHY_AGCCTL_OFDM_DIV_DIS);
  1554. break;
  1555. default:
  1556. return;
  1557. }
  1558. if (enable) {
  1559. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RESTART,
  1560. AR5K_PHY_RESTART_DIV_GC, 4);
  1561. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_FAST_ANT_DIV,
  1562. AR5K_PHY_FAST_ANT_DIV_EN);
  1563. } else {
  1564. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RESTART,
  1565. AR5K_PHY_RESTART_DIV_GC, 0);
  1566. AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_FAST_ANT_DIV,
  1567. AR5K_PHY_FAST_ANT_DIV_EN);
  1568. }
  1569. }
  1570. void
  1571. ath5k_hw_set_antenna_switch(struct ath5k_hw *ah, u8 ee_mode)
  1572. {
  1573. u8 ant0, ant1;
  1574. /*
  1575. * In case a fixed antenna was set as default
  1576. * use the same switch table twice.
  1577. */
  1578. if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_A)
  1579. ant0 = ant1 = AR5K_ANT_SWTABLE_A;
  1580. else if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_B)
  1581. ant0 = ant1 = AR5K_ANT_SWTABLE_B;
  1582. else {
  1583. ant0 = AR5K_ANT_SWTABLE_A;
  1584. ant1 = AR5K_ANT_SWTABLE_B;
  1585. }
  1586. /* Set antenna idle switch table */
  1587. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_ANT_CTL,
  1588. AR5K_PHY_ANT_CTL_SWTABLE_IDLE,
  1589. (ah->ah_ant_ctl[ee_mode][AR5K_ANT_CTL] |
  1590. AR5K_PHY_ANT_CTL_TXRX_EN));
  1591. /* Set antenna switch tables */
  1592. ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant0],
  1593. AR5K_PHY_ANT_SWITCH_TABLE_0);
  1594. ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant1],
  1595. AR5K_PHY_ANT_SWITCH_TABLE_1);
  1596. }
  1597. /*
  1598. * Set antenna operating mode
  1599. */
  1600. void
  1601. ath5k_hw_set_antenna_mode(struct ath5k_hw *ah, u8 ant_mode)
  1602. {
  1603. struct ieee80211_channel *channel = ah->ah_current_channel;
  1604. bool use_def_for_tx, update_def_on_tx, use_def_for_rts, fast_div;
  1605. bool use_def_for_sg;
  1606. u8 def_ant, tx_ant, ee_mode;
  1607. u32 sta_id1 = 0;
  1608. /* if channel is not initialized yet we can't set the antennas
  1609. * so just store the mode. it will be set on the next reset */
  1610. if (channel == NULL) {
  1611. ah->ah_ant_mode = ant_mode;
  1612. return;
  1613. }
  1614. def_ant = ah->ah_def_ant;
  1615. switch (channel->hw_value & CHANNEL_MODES) {
  1616. case CHANNEL_A:
  1617. case CHANNEL_T:
  1618. case CHANNEL_XR:
  1619. ee_mode = AR5K_EEPROM_MODE_11A;
  1620. break;
  1621. case CHANNEL_G:
  1622. case CHANNEL_TG:
  1623. ee_mode = AR5K_EEPROM_MODE_11G;
  1624. break;
  1625. case CHANNEL_B:
  1626. ee_mode = AR5K_EEPROM_MODE_11B;
  1627. break;
  1628. default:
  1629. ATH5K_ERR(ah->ah_sc,
  1630. "invalid channel: %d\n", channel->center_freq);
  1631. return;
  1632. }
  1633. switch (ant_mode) {
  1634. case AR5K_ANTMODE_DEFAULT:
  1635. tx_ant = 0;
  1636. use_def_for_tx = false;
  1637. update_def_on_tx = false;
  1638. use_def_for_rts = false;
  1639. use_def_for_sg = false;
  1640. fast_div = true;
  1641. break;
  1642. case AR5K_ANTMODE_FIXED_A:
  1643. def_ant = 1;
  1644. tx_ant = 1;
  1645. use_def_for_tx = true;
  1646. update_def_on_tx = false;
  1647. use_def_for_rts = true;
  1648. use_def_for_sg = true;
  1649. fast_div = false;
  1650. break;
  1651. case AR5K_ANTMODE_FIXED_B:
  1652. def_ant = 2;
  1653. tx_ant = 2;
  1654. use_def_for_tx = true;
  1655. update_def_on_tx = false;
  1656. use_def_for_rts = true;
  1657. use_def_for_sg = true;
  1658. fast_div = false;
  1659. break;
  1660. case AR5K_ANTMODE_SINGLE_AP:
  1661. def_ant = 1; /* updated on tx */
  1662. tx_ant = 0;
  1663. use_def_for_tx = true;
  1664. update_def_on_tx = true;
  1665. use_def_for_rts = true;
  1666. use_def_for_sg = true;
  1667. fast_div = true;
  1668. break;
  1669. case AR5K_ANTMODE_SECTOR_AP:
  1670. tx_ant = 1; /* variable */
  1671. use_def_for_tx = false;
  1672. update_def_on_tx = false;
  1673. use_def_for_rts = true;
  1674. use_def_for_sg = false;
  1675. fast_div = false;
  1676. break;
  1677. case AR5K_ANTMODE_SECTOR_STA:
  1678. tx_ant = 1; /* variable */
  1679. use_def_for_tx = true;
  1680. update_def_on_tx = false;
  1681. use_def_for_rts = true;
  1682. use_def_for_sg = false;
  1683. fast_div = true;
  1684. break;
  1685. case AR5K_ANTMODE_DEBUG:
  1686. def_ant = 1;
  1687. tx_ant = 2;
  1688. use_def_for_tx = false;
  1689. update_def_on_tx = false;
  1690. use_def_for_rts = false;
  1691. use_def_for_sg = false;
  1692. fast_div = false;
  1693. break;
  1694. default:
  1695. return;
  1696. }
  1697. ah->ah_tx_ant = tx_ant;
  1698. ah->ah_ant_mode = ant_mode;
  1699. ah->ah_def_ant = def_ant;
  1700. sta_id1 |= use_def_for_tx ? AR5K_STA_ID1_DEFAULT_ANTENNA : 0;
  1701. sta_id1 |= update_def_on_tx ? AR5K_STA_ID1_DESC_ANTENNA : 0;
  1702. sta_id1 |= use_def_for_rts ? AR5K_STA_ID1_RTS_DEF_ANTENNA : 0;
  1703. sta_id1 |= use_def_for_sg ? AR5K_STA_ID1_SELFGEN_DEF_ANT : 0;
  1704. AR5K_REG_DISABLE_BITS(ah, AR5K_STA_ID1, AR5K_STA_ID1_ANTENNA_SETTINGS);
  1705. if (sta_id1)
  1706. AR5K_REG_ENABLE_BITS(ah, AR5K_STA_ID1, sta_id1);
  1707. ath5k_hw_set_antenna_switch(ah, ee_mode);
  1708. /* Note: set diversity before default antenna
  1709. * because it won't work correctly */
  1710. ath5k_hw_set_fast_div(ah, ee_mode, fast_div);
  1711. ath5k_hw_set_def_antenna(ah, def_ant);
  1712. }
  1713. /****************\
  1714. * TX power setup *
  1715. \****************/
  1716. /*
  1717. * Helper functions
  1718. */
  1719. /*
  1720. * Do linear interpolation between two given (x, y) points
  1721. */
  1722. static s16
  1723. ath5k_get_interpolated_value(s16 target, s16 x_left, s16 x_right,
  1724. s16 y_left, s16 y_right)
  1725. {
  1726. s16 ratio, result;
  1727. /* Avoid divide by zero and skip interpolation
  1728. * if we have the same point */
  1729. if ((x_left == x_right) || (y_left == y_right))
  1730. return y_left;
  1731. /*
  1732. * Since we use ints and not fps, we need to scale up in
  1733. * order to get a sane ratio value (or else we 'll eg. get
  1734. * always 1 instead of 1.25, 1.75 etc). We scale up by 100
  1735. * to have some accuracy both for 0.5 and 0.25 steps.
  1736. */
  1737. ratio = ((100 * y_right - 100 * y_left)/(x_right - x_left));
  1738. /* Now scale down to be in range */
  1739. result = y_left + (ratio * (target - x_left) / 100);
  1740. return result;
  1741. }
  1742. /*
  1743. * Find vertical boundary (min pwr) for the linear PCDAC curve.
  1744. *
  1745. * Since we have the top of the curve and we draw the line below
  1746. * until we reach 1 (1 pcdac step) we need to know which point
  1747. * (x value) that is so that we don't go below y axis and have negative
  1748. * pcdac values when creating the curve, or fill the table with zeroes.
  1749. */
  1750. static s16
  1751. ath5k_get_linear_pcdac_min(const u8 *stepL, const u8 *stepR,
  1752. const s16 *pwrL, const s16 *pwrR)
  1753. {
  1754. s8 tmp;
  1755. s16 min_pwrL, min_pwrR;
  1756. s16 pwr_i;
  1757. /* Some vendors write the same pcdac value twice !!! */
  1758. if (stepL[0] == stepL[1] || stepR[0] == stepR[1])
  1759. return max(pwrL[0], pwrR[0]);
  1760. if (pwrL[0] == pwrL[1])
  1761. min_pwrL = pwrL[0];
  1762. else {
  1763. pwr_i = pwrL[0];
  1764. do {
  1765. pwr_i--;
  1766. tmp = (s8) ath5k_get_interpolated_value(pwr_i,
  1767. pwrL[0], pwrL[1],
  1768. stepL[0], stepL[1]);
  1769. } while (tmp > 1);
  1770. min_pwrL = pwr_i;
  1771. }
  1772. if (pwrR[0] == pwrR[1])
  1773. min_pwrR = pwrR[0];
  1774. else {
  1775. pwr_i = pwrR[0];
  1776. do {
  1777. pwr_i--;
  1778. tmp = (s8) ath5k_get_interpolated_value(pwr_i,
  1779. pwrR[0], pwrR[1],
  1780. stepR[0], stepR[1]);
  1781. } while (tmp > 1);
  1782. min_pwrR = pwr_i;
  1783. }
  1784. /* Keep the right boundary so that it works for both curves */
  1785. return max(min_pwrL, min_pwrR);
  1786. }
  1787. /*
  1788. * Interpolate (pwr,vpd) points to create a Power to PDADC or a
  1789. * Power to PCDAC curve.
  1790. *
  1791. * Each curve has power on x axis (in 0.5dB units) and PCDAC/PDADC
  1792. * steps (offsets) on y axis. Power can go up to 31.5dB and max
  1793. * PCDAC/PDADC step for each curve is 64 but we can write more than
  1794. * one curves on hw so we can go up to 128 (which is the max step we
  1795. * can write on the final table).
  1796. *
  1797. * We write y values (PCDAC/PDADC steps) on hw.
  1798. */
  1799. static void
  1800. ath5k_create_power_curve(s16 pmin, s16 pmax,
  1801. const s16 *pwr, const u8 *vpd,
  1802. u8 num_points,
  1803. u8 *vpd_table, u8 type)
  1804. {
  1805. u8 idx[2] = { 0, 1 };
  1806. s16 pwr_i = 2*pmin;
  1807. int i;
  1808. if (num_points < 2)
  1809. return;
  1810. /* We want the whole line, so adjust boundaries
  1811. * to cover the entire power range. Note that
  1812. * power values are already 0.25dB so no need
  1813. * to multiply pwr_i by 2 */
  1814. if (type == AR5K_PWRTABLE_LINEAR_PCDAC) {
  1815. pwr_i = pmin;
  1816. pmin = 0;
  1817. pmax = 63;
  1818. }
  1819. /* Find surrounding turning points (TPs)
  1820. * and interpolate between them */
  1821. for (i = 0; (i <= (u16) (pmax - pmin)) &&
  1822. (i < AR5K_EEPROM_POWER_TABLE_SIZE); i++) {
  1823. /* We passed the right TP, move to the next set of TPs
  1824. * if we pass the last TP, extrapolate above using the last
  1825. * two TPs for ratio */
  1826. if ((pwr_i > pwr[idx[1]]) && (idx[1] < num_points - 1)) {
  1827. idx[0]++;
  1828. idx[1]++;
  1829. }
  1830. vpd_table[i] = (u8) ath5k_get_interpolated_value(pwr_i,
  1831. pwr[idx[0]], pwr[idx[1]],
  1832. vpd[idx[0]], vpd[idx[1]]);
  1833. /* Increase by 0.5dB
  1834. * (0.25 dB units) */
  1835. pwr_i += 2;
  1836. }
  1837. }
  1838. /*
  1839. * Get the surrounding per-channel power calibration piers
  1840. * for a given frequency so that we can interpolate between
  1841. * them and come up with an apropriate dataset for our current
  1842. * channel.
  1843. */
  1844. static void
  1845. ath5k_get_chan_pcal_surrounding_piers(struct ath5k_hw *ah,
  1846. struct ieee80211_channel *channel,
  1847. struct ath5k_chan_pcal_info **pcinfo_l,
  1848. struct ath5k_chan_pcal_info **pcinfo_r)
  1849. {
  1850. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  1851. struct ath5k_chan_pcal_info *pcinfo;
  1852. u8 idx_l, idx_r;
  1853. u8 mode, max, i;
  1854. u32 target = channel->center_freq;
  1855. idx_l = 0;
  1856. idx_r = 0;
  1857. if (!(channel->hw_value & CHANNEL_OFDM)) {
  1858. pcinfo = ee->ee_pwr_cal_b;
  1859. mode = AR5K_EEPROM_MODE_11B;
  1860. } else if (channel->hw_value & CHANNEL_2GHZ) {
  1861. pcinfo = ee->ee_pwr_cal_g;
  1862. mode = AR5K_EEPROM_MODE_11G;
  1863. } else {
  1864. pcinfo = ee->ee_pwr_cal_a;
  1865. mode = AR5K_EEPROM_MODE_11A;
  1866. }
  1867. max = ee->ee_n_piers[mode] - 1;
  1868. /* Frequency is below our calibrated
  1869. * range. Use the lowest power curve
  1870. * we have */
  1871. if (target < pcinfo[0].freq) {
  1872. idx_l = idx_r = 0;
  1873. goto done;
  1874. }
  1875. /* Frequency is above our calibrated
  1876. * range. Use the highest power curve
  1877. * we have */
  1878. if (target > pcinfo[max].freq) {
  1879. idx_l = idx_r = max;
  1880. goto done;
  1881. }
  1882. /* Frequency is inside our calibrated
  1883. * channel range. Pick the surrounding
  1884. * calibration piers so that we can
  1885. * interpolate */
  1886. for (i = 0; i <= max; i++) {
  1887. /* Frequency matches one of our calibration
  1888. * piers, no need to interpolate, just use
  1889. * that calibration pier */
  1890. if (pcinfo[i].freq == target) {
  1891. idx_l = idx_r = i;
  1892. goto done;
  1893. }
  1894. /* We found a calibration pier that's above
  1895. * frequency, use this pier and the previous
  1896. * one to interpolate */
  1897. if (target < pcinfo[i].freq) {
  1898. idx_r = i;
  1899. idx_l = idx_r - 1;
  1900. goto done;
  1901. }
  1902. }
  1903. done:
  1904. *pcinfo_l = &pcinfo[idx_l];
  1905. *pcinfo_r = &pcinfo[idx_r];
  1906. }
  1907. /*
  1908. * Get the surrounding per-rate power calibration data
  1909. * for a given frequency and interpolate between power
  1910. * values to set max target power supported by hw for
  1911. * each rate.
  1912. */
  1913. static void
  1914. ath5k_get_rate_pcal_data(struct ath5k_hw *ah,
  1915. struct ieee80211_channel *channel,
  1916. struct ath5k_rate_pcal_info *rates)
  1917. {
  1918. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  1919. struct ath5k_rate_pcal_info *rpinfo;
  1920. u8 idx_l, idx_r;
  1921. u8 mode, max, i;
  1922. u32 target = channel->center_freq;
  1923. idx_l = 0;
  1924. idx_r = 0;
  1925. if (!(channel->hw_value & CHANNEL_OFDM)) {
  1926. rpinfo = ee->ee_rate_tpwr_b;
  1927. mode = AR5K_EEPROM_MODE_11B;
  1928. } else if (channel->hw_value & CHANNEL_2GHZ) {
  1929. rpinfo = ee->ee_rate_tpwr_g;
  1930. mode = AR5K_EEPROM_MODE_11G;
  1931. } else {
  1932. rpinfo = ee->ee_rate_tpwr_a;
  1933. mode = AR5K_EEPROM_MODE_11A;
  1934. }
  1935. max = ee->ee_rate_target_pwr_num[mode] - 1;
  1936. /* Get the surrounding calibration
  1937. * piers - same as above */
  1938. if (target < rpinfo[0].freq) {
  1939. idx_l = idx_r = 0;
  1940. goto done;
  1941. }
  1942. if (target > rpinfo[max].freq) {
  1943. idx_l = idx_r = max;
  1944. goto done;
  1945. }
  1946. for (i = 0; i <= max; i++) {
  1947. if (rpinfo[i].freq == target) {
  1948. idx_l = idx_r = i;
  1949. goto done;
  1950. }
  1951. if (target < rpinfo[i].freq) {
  1952. idx_r = i;
  1953. idx_l = idx_r - 1;
  1954. goto done;
  1955. }
  1956. }
  1957. done:
  1958. /* Now interpolate power value, based on the frequency */
  1959. rates->freq = target;
  1960. rates->target_power_6to24 =
  1961. ath5k_get_interpolated_value(target, rpinfo[idx_l].freq,
  1962. rpinfo[idx_r].freq,
  1963. rpinfo[idx_l].target_power_6to24,
  1964. rpinfo[idx_r].target_power_6to24);
  1965. rates->target_power_36 =
  1966. ath5k_get_interpolated_value(target, rpinfo[idx_l].freq,
  1967. rpinfo[idx_r].freq,
  1968. rpinfo[idx_l].target_power_36,
  1969. rpinfo[idx_r].target_power_36);
  1970. rates->target_power_48 =
  1971. ath5k_get_interpolated_value(target, rpinfo[idx_l].freq,
  1972. rpinfo[idx_r].freq,
  1973. rpinfo[idx_l].target_power_48,
  1974. rpinfo[idx_r].target_power_48);
  1975. rates->target_power_54 =
  1976. ath5k_get_interpolated_value(target, rpinfo[idx_l].freq,
  1977. rpinfo[idx_r].freq,
  1978. rpinfo[idx_l].target_power_54,
  1979. rpinfo[idx_r].target_power_54);
  1980. }
  1981. /*
  1982. * Get the max edge power for this channel if
  1983. * we have such data from EEPROM's Conformance Test
  1984. * Limits (CTL), and limit max power if needed.
  1985. */
  1986. static void
  1987. ath5k_get_max_ctl_power(struct ath5k_hw *ah,
  1988. struct ieee80211_channel *channel)
  1989. {
  1990. struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah);
  1991. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  1992. struct ath5k_edge_power *rep = ee->ee_ctl_pwr;
  1993. u8 *ctl_val = ee->ee_ctl;
  1994. s16 max_chan_pwr = ah->ah_txpower.txp_max_pwr / 4;
  1995. s16 edge_pwr = 0;
  1996. u8 rep_idx;
  1997. u8 i, ctl_mode;
  1998. u8 ctl_idx = 0xFF;
  1999. u32 target = channel->center_freq;
  2000. ctl_mode = ath_regd_get_band_ctl(regulatory, channel->band);
  2001. switch (channel->hw_value & CHANNEL_MODES) {
  2002. case CHANNEL_A:
  2003. ctl_mode |= AR5K_CTL_11A;
  2004. break;
  2005. case CHANNEL_G:
  2006. ctl_mode |= AR5K_CTL_11G;
  2007. break;
  2008. case CHANNEL_B:
  2009. ctl_mode |= AR5K_CTL_11B;
  2010. break;
  2011. case CHANNEL_T:
  2012. ctl_mode |= AR5K_CTL_TURBO;
  2013. break;
  2014. case CHANNEL_TG:
  2015. ctl_mode |= AR5K_CTL_TURBOG;
  2016. break;
  2017. case CHANNEL_XR:
  2018. /* Fall through */
  2019. default:
  2020. return;
  2021. }
  2022. for (i = 0; i < ee->ee_ctls; i++) {
  2023. if (ctl_val[i] == ctl_mode) {
  2024. ctl_idx = i;
  2025. break;
  2026. }
  2027. }
  2028. /* If we have a CTL dataset available grab it and find the
  2029. * edge power for our frequency */
  2030. if (ctl_idx == 0xFF)
  2031. return;
  2032. /* Edge powers are sorted by frequency from lower
  2033. * to higher. Each CTL corresponds to 8 edge power
  2034. * measurements. */
  2035. rep_idx = ctl_idx * AR5K_EEPROM_N_EDGES;
  2036. /* Don't do boundaries check because we
  2037. * might have more that one bands defined
  2038. * for this mode */
  2039. /* Get the edge power that's closer to our
  2040. * frequency */
  2041. for (i = 0; i < AR5K_EEPROM_N_EDGES; i++) {
  2042. rep_idx += i;
  2043. if (target <= rep[rep_idx].freq)
  2044. edge_pwr = (s16) rep[rep_idx].edge;
  2045. }
  2046. if (edge_pwr)
  2047. ah->ah_txpower.txp_max_pwr = 4*min(edge_pwr, max_chan_pwr);
  2048. }
  2049. /*
  2050. * Power to PCDAC table functions
  2051. */
  2052. /*
  2053. * Fill Power to PCDAC table on RF5111
  2054. *
  2055. * No further processing is needed for RF5111, the only thing we have to
  2056. * do is fill the values below and above calibration range since eeprom data
  2057. * may not cover the entire PCDAC table.
  2058. */
  2059. static void
  2060. ath5k_fill_pwr_to_pcdac_table(struct ath5k_hw *ah, s16* table_min,
  2061. s16 *table_max)
  2062. {
  2063. u8 *pcdac_out = ah->ah_txpower.txp_pd_table;
  2064. u8 *pcdac_tmp = ah->ah_txpower.tmpL[0];
  2065. u8 pcdac_0, pcdac_n, pcdac_i, pwr_idx, i;
  2066. s16 min_pwr, max_pwr;
  2067. /* Get table boundaries */
  2068. min_pwr = table_min[0];
  2069. pcdac_0 = pcdac_tmp[0];
  2070. max_pwr = table_max[0];
  2071. pcdac_n = pcdac_tmp[table_max[0] - table_min[0]];
  2072. /* Extrapolate below minimum using pcdac_0 */
  2073. pcdac_i = 0;
  2074. for (i = 0; i < min_pwr; i++)
  2075. pcdac_out[pcdac_i++] = pcdac_0;
  2076. /* Copy values from pcdac_tmp */
  2077. pwr_idx = min_pwr;
  2078. for (i = 0 ; pwr_idx <= max_pwr &&
  2079. pcdac_i < AR5K_EEPROM_POWER_TABLE_SIZE; i++) {
  2080. pcdac_out[pcdac_i++] = pcdac_tmp[i];
  2081. pwr_idx++;
  2082. }
  2083. /* Extrapolate above maximum */
  2084. while (pcdac_i < AR5K_EEPROM_POWER_TABLE_SIZE)
  2085. pcdac_out[pcdac_i++] = pcdac_n;
  2086. }
  2087. /*
  2088. * Combine available XPD Curves and fill Linear Power to PCDAC table
  2089. * on RF5112
  2090. *
  2091. * RFX112 can have up to 2 curves (one for low txpower range and one for
  2092. * higher txpower range). We need to put them both on pcdac_out and place
  2093. * them in the correct location. In case we only have one curve available
  2094. * just fit it on pcdac_out (it's supposed to cover the entire range of
  2095. * available pwr levels since it's always the higher power curve). Extrapolate
  2096. * below and above final table if needed.
  2097. */
  2098. static void
  2099. ath5k_combine_linear_pcdac_curves(struct ath5k_hw *ah, s16* table_min,
  2100. s16 *table_max, u8 pdcurves)
  2101. {
  2102. u8 *pcdac_out = ah->ah_txpower.txp_pd_table;
  2103. u8 *pcdac_low_pwr;
  2104. u8 *pcdac_high_pwr;
  2105. u8 *pcdac_tmp;
  2106. u8 pwr;
  2107. s16 max_pwr_idx;
  2108. s16 min_pwr_idx;
  2109. s16 mid_pwr_idx = 0;
  2110. /* Edge flag turs on the 7nth bit on the PCDAC
  2111. * to delcare the higher power curve (force values
  2112. * to be greater than 64). If we only have one curve
  2113. * we don't need to set this, if we have 2 curves and
  2114. * fill the table backwards this can also be used to
  2115. * switch from higher power curve to lower power curve */
  2116. u8 edge_flag;
  2117. int i;
  2118. /* When we have only one curve available
  2119. * that's the higher power curve. If we have
  2120. * two curves the first is the high power curve
  2121. * and the next is the low power curve. */
  2122. if (pdcurves > 1) {
  2123. pcdac_low_pwr = ah->ah_txpower.tmpL[1];
  2124. pcdac_high_pwr = ah->ah_txpower.tmpL[0];
  2125. mid_pwr_idx = table_max[1] - table_min[1] - 1;
  2126. max_pwr_idx = (table_max[0] - table_min[0]) / 2;
  2127. /* If table size goes beyond 31.5dB, keep the
  2128. * upper 31.5dB range when setting tx power.
  2129. * Note: 126 = 31.5 dB in quarter dB steps */
  2130. if (table_max[0] - table_min[1] > 126)
  2131. min_pwr_idx = table_max[0] - 126;
  2132. else
  2133. min_pwr_idx = table_min[1];
  2134. /* Since we fill table backwards
  2135. * start from high power curve */
  2136. pcdac_tmp = pcdac_high_pwr;
  2137. edge_flag = 0x40;
  2138. } else {
  2139. pcdac_low_pwr = ah->ah_txpower.tmpL[1]; /* Zeroed */
  2140. pcdac_high_pwr = ah->ah_txpower.tmpL[0];
  2141. min_pwr_idx = table_min[0];
  2142. max_pwr_idx = (table_max[0] - table_min[0]) / 2;
  2143. pcdac_tmp = pcdac_high_pwr;
  2144. edge_flag = 0;
  2145. }
  2146. /* This is used when setting tx power*/
  2147. ah->ah_txpower.txp_min_idx = min_pwr_idx/2;
  2148. /* Fill Power to PCDAC table backwards */
  2149. pwr = max_pwr_idx;
  2150. for (i = 63; i >= 0; i--) {
  2151. /* Entering lower power range, reset
  2152. * edge flag and set pcdac_tmp to lower
  2153. * power curve.*/
  2154. if (edge_flag == 0x40 &&
  2155. (2*pwr <= (table_max[1] - table_min[0]) || pwr == 0)) {
  2156. edge_flag = 0x00;
  2157. pcdac_tmp = pcdac_low_pwr;
  2158. pwr = mid_pwr_idx/2;
  2159. }
  2160. /* Don't go below 1, extrapolate below if we have
  2161. * already swithced to the lower power curve -or
  2162. * we only have one curve and edge_flag is zero
  2163. * anyway */
  2164. if (pcdac_tmp[pwr] < 1 && (edge_flag == 0x00)) {
  2165. while (i >= 0) {
  2166. pcdac_out[i] = pcdac_out[i + 1];
  2167. i--;
  2168. }
  2169. break;
  2170. }
  2171. pcdac_out[i] = pcdac_tmp[pwr] | edge_flag;
  2172. /* Extrapolate above if pcdac is greater than
  2173. * 126 -this can happen because we OR pcdac_out
  2174. * value with edge_flag on high power curve */
  2175. if (pcdac_out[i] > 126)
  2176. pcdac_out[i] = 126;
  2177. /* Decrease by a 0.5dB step */
  2178. pwr--;
  2179. }
  2180. }
  2181. /* Write PCDAC values on hw */
  2182. static void
  2183. ath5k_setup_pcdac_table(struct ath5k_hw *ah)
  2184. {
  2185. u8 *pcdac_out = ah->ah_txpower.txp_pd_table;
  2186. int i;
  2187. /*
  2188. * Write TX power values
  2189. */
  2190. for (i = 0; i < (AR5K_EEPROM_POWER_TABLE_SIZE / 2); i++) {
  2191. ath5k_hw_reg_write(ah,
  2192. (((pcdac_out[2*i + 0] << 8 | 0xff) & 0xffff) << 0) |
  2193. (((pcdac_out[2*i + 1] << 8 | 0xff) & 0xffff) << 16),
  2194. AR5K_PHY_PCDAC_TXPOWER(i));
  2195. }
  2196. }
  2197. /*
  2198. * Power to PDADC table functions
  2199. */
  2200. /*
  2201. * Set the gain boundaries and create final Power to PDADC table
  2202. *
  2203. * We can have up to 4 pd curves, we need to do a simmilar process
  2204. * as we do for RF5112. This time we don't have an edge_flag but we
  2205. * set the gain boundaries on a separate register.
  2206. */
  2207. static void
  2208. ath5k_combine_pwr_to_pdadc_curves(struct ath5k_hw *ah,
  2209. s16 *pwr_min, s16 *pwr_max, u8 pdcurves)
  2210. {
  2211. u8 gain_boundaries[AR5K_EEPROM_N_PD_GAINS];
  2212. u8 *pdadc_out = ah->ah_txpower.txp_pd_table;
  2213. u8 *pdadc_tmp;
  2214. s16 pdadc_0;
  2215. u8 pdadc_i, pdadc_n, pwr_step, pdg, max_idx, table_size;
  2216. u8 pd_gain_overlap;
  2217. /* Note: Register value is initialized on initvals
  2218. * there is no feedback from hw.
  2219. * XXX: What about pd_gain_overlap from EEPROM ? */
  2220. pd_gain_overlap = (u8) ath5k_hw_reg_read(ah, AR5K_PHY_TPC_RG5) &
  2221. AR5K_PHY_TPC_RG5_PD_GAIN_OVERLAP;
  2222. /* Create final PDADC table */
  2223. for (pdg = 0, pdadc_i = 0; pdg < pdcurves; pdg++) {
  2224. pdadc_tmp = ah->ah_txpower.tmpL[pdg];
  2225. if (pdg == pdcurves - 1)
  2226. /* 2 dB boundary stretch for last
  2227. * (higher power) curve */
  2228. gain_boundaries[pdg] = pwr_max[pdg] + 4;
  2229. else
  2230. /* Set gain boundary in the middle
  2231. * between this curve and the next one */
  2232. gain_boundaries[pdg] =
  2233. (pwr_max[pdg] + pwr_min[pdg + 1]) / 2;
  2234. /* Sanity check in case our 2 db stretch got out of
  2235. * range. */
  2236. if (gain_boundaries[pdg] > AR5K_TUNE_MAX_TXPOWER)
  2237. gain_boundaries[pdg] = AR5K_TUNE_MAX_TXPOWER;
  2238. /* For the first curve (lower power)
  2239. * start from 0 dB */
  2240. if (pdg == 0)
  2241. pdadc_0 = 0;
  2242. else
  2243. /* For the other curves use the gain overlap */
  2244. pdadc_0 = (gain_boundaries[pdg - 1] - pwr_min[pdg]) -
  2245. pd_gain_overlap;
  2246. /* Force each power step to be at least 0.5 dB */
  2247. if ((pdadc_tmp[1] - pdadc_tmp[0]) > 1)
  2248. pwr_step = pdadc_tmp[1] - pdadc_tmp[0];
  2249. else
  2250. pwr_step = 1;
  2251. /* If pdadc_0 is negative, we need to extrapolate
  2252. * below this pdgain by a number of pwr_steps */
  2253. while ((pdadc_0 < 0) && (pdadc_i < 128)) {
  2254. s16 tmp = pdadc_tmp[0] + pdadc_0 * pwr_step;
  2255. pdadc_out[pdadc_i++] = (tmp < 0) ? 0 : (u8) tmp;
  2256. pdadc_0++;
  2257. }
  2258. /* Set last pwr level, using gain boundaries */
  2259. pdadc_n = gain_boundaries[pdg] + pd_gain_overlap - pwr_min[pdg];
  2260. /* Limit it to be inside pwr range */
  2261. table_size = pwr_max[pdg] - pwr_min[pdg];
  2262. max_idx = (pdadc_n < table_size) ? pdadc_n : table_size;
  2263. /* Fill pdadc_out table */
  2264. while (pdadc_0 < max_idx && pdadc_i < 128)
  2265. pdadc_out[pdadc_i++] = pdadc_tmp[pdadc_0++];
  2266. /* Need to extrapolate above this pdgain? */
  2267. if (pdadc_n <= max_idx)
  2268. continue;
  2269. /* Force each power step to be at least 0.5 dB */
  2270. if ((pdadc_tmp[table_size - 1] - pdadc_tmp[table_size - 2]) > 1)
  2271. pwr_step = pdadc_tmp[table_size - 1] -
  2272. pdadc_tmp[table_size - 2];
  2273. else
  2274. pwr_step = 1;
  2275. /* Extrapolate above */
  2276. while ((pdadc_0 < (s16) pdadc_n) &&
  2277. (pdadc_i < AR5K_EEPROM_POWER_TABLE_SIZE * 2)) {
  2278. s16 tmp = pdadc_tmp[table_size - 1] +
  2279. (pdadc_0 - max_idx) * pwr_step;
  2280. pdadc_out[pdadc_i++] = (tmp > 127) ? 127 : (u8) tmp;
  2281. pdadc_0++;
  2282. }
  2283. }
  2284. while (pdg < AR5K_EEPROM_N_PD_GAINS) {
  2285. gain_boundaries[pdg] = gain_boundaries[pdg - 1];
  2286. pdg++;
  2287. }
  2288. while (pdadc_i < AR5K_EEPROM_POWER_TABLE_SIZE * 2) {
  2289. pdadc_out[pdadc_i] = pdadc_out[pdadc_i - 1];
  2290. pdadc_i++;
  2291. }
  2292. /* Set gain boundaries */
  2293. ath5k_hw_reg_write(ah,
  2294. AR5K_REG_SM(pd_gain_overlap,
  2295. AR5K_PHY_TPC_RG5_PD_GAIN_OVERLAP) |
  2296. AR5K_REG_SM(gain_boundaries[0],
  2297. AR5K_PHY_TPC_RG5_PD_GAIN_BOUNDARY_1) |
  2298. AR5K_REG_SM(gain_boundaries[1],
  2299. AR5K_PHY_TPC_RG5_PD_GAIN_BOUNDARY_2) |
  2300. AR5K_REG_SM(gain_boundaries[2],
  2301. AR5K_PHY_TPC_RG5_PD_GAIN_BOUNDARY_3) |
  2302. AR5K_REG_SM(gain_boundaries[3],
  2303. AR5K_PHY_TPC_RG5_PD_GAIN_BOUNDARY_4),
  2304. AR5K_PHY_TPC_RG5);
  2305. /* Used for setting rate power table */
  2306. ah->ah_txpower.txp_min_idx = pwr_min[0];
  2307. }
  2308. /* Write PDADC values on hw */
  2309. static void
  2310. ath5k_setup_pwr_to_pdadc_table(struct ath5k_hw *ah,
  2311. u8 pdcurves, u8 *pdg_to_idx)
  2312. {
  2313. u8 *pdadc_out = ah->ah_txpower.txp_pd_table;
  2314. u32 reg;
  2315. u8 i;
  2316. /* Select the right pdgain curves */
  2317. /* Clear current settings */
  2318. reg = ath5k_hw_reg_read(ah, AR5K_PHY_TPC_RG1);
  2319. reg &= ~(AR5K_PHY_TPC_RG1_PDGAIN_1 |
  2320. AR5K_PHY_TPC_RG1_PDGAIN_2 |
  2321. AR5K_PHY_TPC_RG1_PDGAIN_3 |
  2322. AR5K_PHY_TPC_RG1_NUM_PD_GAIN);
  2323. /*
  2324. * Use pd_gains curve from eeprom
  2325. *
  2326. * This overrides the default setting from initvals
  2327. * in case some vendors (e.g. Zcomax) don't use the default
  2328. * curves. If we don't honor their settings we 'll get a
  2329. * 5dB (1 * gain overlap ?) drop.
  2330. */
  2331. reg |= AR5K_REG_SM(pdcurves, AR5K_PHY_TPC_RG1_NUM_PD_GAIN);
  2332. switch (pdcurves) {
  2333. case 3:
  2334. reg |= AR5K_REG_SM(pdg_to_idx[2], AR5K_PHY_TPC_RG1_PDGAIN_3);
  2335. /* Fall through */
  2336. case 2:
  2337. reg |= AR5K_REG_SM(pdg_to_idx[1], AR5K_PHY_TPC_RG1_PDGAIN_2);
  2338. /* Fall through */
  2339. case 1:
  2340. reg |= AR5K_REG_SM(pdg_to_idx[0], AR5K_PHY_TPC_RG1_PDGAIN_1);
  2341. break;
  2342. }
  2343. ath5k_hw_reg_write(ah, reg, AR5K_PHY_TPC_RG1);
  2344. /*
  2345. * Write TX power values
  2346. */
  2347. for (i = 0; i < (AR5K_EEPROM_POWER_TABLE_SIZE / 2); i++) {
  2348. ath5k_hw_reg_write(ah,
  2349. ((pdadc_out[4*i + 0] & 0xff) << 0) |
  2350. ((pdadc_out[4*i + 1] & 0xff) << 8) |
  2351. ((pdadc_out[4*i + 2] & 0xff) << 16) |
  2352. ((pdadc_out[4*i + 3] & 0xff) << 24),
  2353. AR5K_PHY_PDADC_TXPOWER(i));
  2354. }
  2355. }
  2356. /*
  2357. * Common code for PCDAC/PDADC tables
  2358. */
  2359. /*
  2360. * This is the main function that uses all of the above
  2361. * to set PCDAC/PDADC table on hw for the current channel.
  2362. * This table is used for tx power calibration on the basband,
  2363. * without it we get weird tx power levels and in some cases
  2364. * distorted spectral mask
  2365. */
  2366. static int
  2367. ath5k_setup_channel_powertable(struct ath5k_hw *ah,
  2368. struct ieee80211_channel *channel,
  2369. u8 ee_mode, u8 type)
  2370. {
  2371. struct ath5k_pdgain_info *pdg_L, *pdg_R;
  2372. struct ath5k_chan_pcal_info *pcinfo_L;
  2373. struct ath5k_chan_pcal_info *pcinfo_R;
  2374. struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
  2375. u8 *pdg_curve_to_idx = ee->ee_pdc_to_idx[ee_mode];
  2376. s16 table_min[AR5K_EEPROM_N_PD_GAINS];
  2377. s16 table_max[AR5K_EEPROM_N_PD_GAINS];
  2378. u8 *tmpL;
  2379. u8 *tmpR;
  2380. u32 target = channel->center_freq;
  2381. int pdg, i;
  2382. /* Get surounding freq piers for this channel */
  2383. ath5k_get_chan_pcal_surrounding_piers(ah, channel,
  2384. &pcinfo_L,
  2385. &pcinfo_R);
  2386. /* Loop over pd gain curves on
  2387. * surounding freq piers by index */
  2388. for (pdg = 0; pdg < ee->ee_pd_gains[ee_mode]; pdg++) {
  2389. /* Fill curves in reverse order
  2390. * from lower power (max gain)
  2391. * to higher power. Use curve -> idx
  2392. * backmapping we did on eeprom init */
  2393. u8 idx = pdg_curve_to_idx[pdg];
  2394. /* Grab the needed curves by index */
  2395. pdg_L = &pcinfo_L->pd_curves[idx];
  2396. pdg_R = &pcinfo_R->pd_curves[idx];
  2397. /* Initialize the temp tables */
  2398. tmpL = ah->ah_txpower.tmpL[pdg];
  2399. tmpR = ah->ah_txpower.tmpR[pdg];
  2400. /* Set curve's x boundaries and create
  2401. * curves so that they cover the same
  2402. * range (if we don't do that one table
  2403. * will have values on some range and the
  2404. * other one won't have any so interpolation
  2405. * will fail) */
  2406. table_min[pdg] = min(pdg_L->pd_pwr[0],
  2407. pdg_R->pd_pwr[0]) / 2;
  2408. table_max[pdg] = max(pdg_L->pd_pwr[pdg_L->pd_points - 1],
  2409. pdg_R->pd_pwr[pdg_R->pd_points - 1]) / 2;
  2410. /* Now create the curves on surrounding channels
  2411. * and interpolate if needed to get the final
  2412. * curve for this gain on this channel */
  2413. switch (type) {
  2414. case AR5K_PWRTABLE_LINEAR_PCDAC:
  2415. /* Override min/max so that we don't loose
  2416. * accuracy (don't divide by 2) */
  2417. table_min[pdg] = min(pdg_L->pd_pwr[0],
  2418. pdg_R->pd_pwr[0]);
  2419. table_max[pdg] =
  2420. max(pdg_L->pd_pwr[pdg_L->pd_points - 1],
  2421. pdg_R->pd_pwr[pdg_R->pd_points - 1]);
  2422. /* Override minimum so that we don't get
  2423. * out of bounds while extrapolating
  2424. * below. Don't do this when we have 2
  2425. * curves and we are on the high power curve
  2426. * because table_min is ok in this case */
  2427. if (!(ee->ee_pd_gains[ee_mode] > 1 && pdg == 0)) {
  2428. table_min[pdg] =
  2429. ath5k_get_linear_pcdac_min(pdg_L->pd_step,
  2430. pdg_R->pd_step,
  2431. pdg_L->pd_pwr,
  2432. pdg_R->pd_pwr);
  2433. /* Don't go too low because we will
  2434. * miss the upper part of the curve.
  2435. * Note: 126 = 31.5dB (max power supported)
  2436. * in 0.25dB units */
  2437. if (table_max[pdg] - table_min[pdg] > 126)
  2438. table_min[pdg] = table_max[pdg] - 126;
  2439. }
  2440. /* Fall through */
  2441. case AR5K_PWRTABLE_PWR_TO_PCDAC:
  2442. case AR5K_PWRTABLE_PWR_TO_PDADC:
  2443. ath5k_create_power_curve(table_min[pdg],
  2444. table_max[pdg],
  2445. pdg_L->pd_pwr,
  2446. pdg_L->pd_step,
  2447. pdg_L->pd_points, tmpL, type);
  2448. /* We are in a calibration
  2449. * pier, no need to interpolate
  2450. * between freq piers */
  2451. if (pcinfo_L == pcinfo_R)
  2452. continue;
  2453. ath5k_create_power_curve(table_min[pdg],
  2454. table_max[pdg],
  2455. pdg_R->pd_pwr,
  2456. pdg_R->pd_step,
  2457. pdg_R->pd_points, tmpR, type);
  2458. break;
  2459. default:
  2460. return -EINVAL;
  2461. }
  2462. /* Interpolate between curves
  2463. * of surounding freq piers to
  2464. * get the final curve for this
  2465. * pd gain. Re-use tmpL for interpolation
  2466. * output */
  2467. for (i = 0; (i < (u16) (table_max[pdg] - table_min[pdg])) &&
  2468. (i < AR5K_EEPROM_POWER_TABLE_SIZE); i++) {
  2469. tmpL[i] = (u8) ath5k_get_interpolated_value(target,
  2470. (s16) pcinfo_L->freq,
  2471. (s16) pcinfo_R->freq,
  2472. (s16) tmpL[i],
  2473. (s16) tmpR[i]);
  2474. }
  2475. }
  2476. /* Now we have a set of curves for this
  2477. * channel on tmpL (x range is table_max - table_min
  2478. * and y values are tmpL[pdg][]) sorted in the same
  2479. * order as EEPROM (because we've used the backmapping).
  2480. * So for RF5112 it's from higher power to lower power
  2481. * and for RF2413 it's from lower power to higher power.
  2482. * For RF5111 we only have one curve. */
  2483. /* Fill min and max power levels for this
  2484. * channel by interpolating the values on
  2485. * surounding channels to complete the dataset */
  2486. ah->ah_txpower.txp_min_pwr = ath5k_get_interpolated_value(target,
  2487. (s16) pcinfo_L->freq,
  2488. (s16) pcinfo_R->freq,
  2489. pcinfo_L->min_pwr, pcinfo_R->min_pwr);
  2490. ah->ah_txpower.txp_max_pwr = ath5k_get_interpolated_value(target,
  2491. (s16) pcinfo_L->freq,
  2492. (s16) pcinfo_R->freq,
  2493. pcinfo_L->max_pwr, pcinfo_R->max_pwr);
  2494. /* We are ready to go, fill PCDAC/PDADC
  2495. * table and write settings on hardware */
  2496. switch (type) {
  2497. case AR5K_PWRTABLE_LINEAR_PCDAC:
  2498. /* For RF5112 we can have one or two curves
  2499. * and each curve covers a certain power lvl
  2500. * range so we need to do some more processing */
  2501. ath5k_combine_linear_pcdac_curves(ah, table_min, table_max,
  2502. ee->ee_pd_gains[ee_mode]);
  2503. /* Set txp.offset so that we can
  2504. * match max power value with max
  2505. * table index */
  2506. ah->ah_txpower.txp_offset = 64 - (table_max[0] / 2);
  2507. /* Write settings on hw */
  2508. ath5k_setup_pcdac_table(ah);
  2509. break;
  2510. case AR5K_PWRTABLE_PWR_TO_PCDAC:
  2511. /* We are done for RF5111 since it has only
  2512. * one curve, just fit the curve on the table */
  2513. ath5k_fill_pwr_to_pcdac_table(ah, table_min, table_max);
  2514. /* No rate powertable adjustment for RF5111 */
  2515. ah->ah_txpower.txp_min_idx = 0;
  2516. ah->ah_txpower.txp_offset = 0;
  2517. /* Write settings on hw */
  2518. ath5k_setup_pcdac_table(ah);
  2519. break;
  2520. case AR5K_PWRTABLE_PWR_TO_PDADC:
  2521. /* Set PDADC boundaries and fill
  2522. * final PDADC table */
  2523. ath5k_combine_pwr_to_pdadc_curves(ah, table_min, table_max,
  2524. ee->ee_pd_gains[ee_mode]);
  2525. /* Write settings on hw */
  2526. ath5k_setup_pwr_to_pdadc_table(ah, pdg, pdg_curve_to_idx);
  2527. /* Set txp.offset, note that table_min
  2528. * can be negative */
  2529. ah->ah_txpower.txp_offset = table_min[0];
  2530. break;
  2531. default:
  2532. return -EINVAL;
  2533. }
  2534. return 0;
  2535. }
  2536. /*
  2537. * Per-rate tx power setting
  2538. *
  2539. * This is the code that sets the desired tx power (below
  2540. * maximum) on hw for each rate (we also have TPC that sets
  2541. * power per packet). We do that by providing an index on the
  2542. * PCDAC/PDADC table we set up.
  2543. */
  2544. /*
  2545. * Set rate power table
  2546. *
  2547. * For now we only limit txpower based on maximum tx power
  2548. * supported by hw (what's inside rate_info). We need to limit
  2549. * this even more, based on regulatory domain etc.
  2550. *
  2551. * Rate power table contains indices to PCDAC/PDADC table (0.5dB steps)
  2552. * and is indexed as follows:
  2553. * rates[0] - rates[7] -> OFDM rates
  2554. * rates[8] - rates[14] -> CCK rates
  2555. * rates[15] -> XR rates (they all have the same power)
  2556. */
  2557. static void
  2558. ath5k_setup_rate_powertable(struct ath5k_hw *ah, u16 max_pwr,
  2559. struct ath5k_rate_pcal_info *rate_info,
  2560. u8 ee_mode)
  2561. {
  2562. unsigned int i;
  2563. u16 *rates;
  2564. /* max_pwr is power level we got from driver/user in 0.5dB
  2565. * units, switch to 0.25dB units so we can compare */
  2566. max_pwr *= 2;
  2567. max_pwr = min(max_pwr, (u16) ah->ah_txpower.txp_max_pwr) / 2;
  2568. /* apply rate limits */
  2569. rates = ah->ah_txpower.txp_rates_power_table;
  2570. /* OFDM rates 6 to 24Mb/s */
  2571. for (i = 0; i < 5; i++)
  2572. rates[i] = min(max_pwr, rate_info->target_power_6to24);
  2573. /* Rest OFDM rates */
  2574. rates[5] = min(rates[0], rate_info->target_power_36);
  2575. rates[6] = min(rates[0], rate_info->target_power_48);
  2576. rates[7] = min(rates[0], rate_info->target_power_54);
  2577. /* CCK rates */
  2578. /* 1L */
  2579. rates[8] = min(rates[0], rate_info->target_power_6to24);
  2580. /* 2L */
  2581. rates[9] = min(rates[0], rate_info->target_power_36);
  2582. /* 2S */
  2583. rates[10] = min(rates[0], rate_info->target_power_36);
  2584. /* 5L */
  2585. rates[11] = min(rates[0], rate_info->target_power_48);
  2586. /* 5S */
  2587. rates[12] = min(rates[0], rate_info->target_power_48);
  2588. /* 11L */
  2589. rates[13] = min(rates[0], rate_info->target_power_54);
  2590. /* 11S */
  2591. rates[14] = min(rates[0], rate_info->target_power_54);
  2592. /* XR rates */
  2593. rates[15] = min(rates[0], rate_info->target_power_6to24);
  2594. /* CCK rates have different peak to average ratio
  2595. * so we have to tweak their power so that gainf
  2596. * correction works ok. For this we use OFDM to
  2597. * CCK delta from eeprom */
  2598. if ((ee_mode == AR5K_EEPROM_MODE_11G) &&
  2599. (ah->ah_phy_revision < AR5K_SREV_PHY_5212A))
  2600. for (i = 8; i <= 15; i++)
  2601. rates[i] -= ah->ah_txpower.txp_cck_ofdm_gainf_delta;
  2602. /* Now that we have all rates setup use table offset to
  2603. * match the power range set by user with the power indices
  2604. * on PCDAC/PDADC table */
  2605. for (i = 0; i < 16; i++) {
  2606. rates[i] += ah->ah_txpower.txp_offset;
  2607. /* Don't get out of bounds */
  2608. if (rates[i] > 63)
  2609. rates[i] = 63;
  2610. }
  2611. /* Min/max in 0.25dB units */
  2612. ah->ah_txpower.txp_min_pwr = 2 * rates[7];
  2613. ah->ah_txpower.txp_max_pwr = 2 * rates[0];
  2614. ah->ah_txpower.txp_ofdm = rates[7];
  2615. }
  2616. /*
  2617. * Set transmission power
  2618. */
  2619. static int
  2620. ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel,
  2621. u8 ee_mode, u8 txpower)
  2622. {
  2623. struct ath5k_rate_pcal_info rate_info;
  2624. u8 type;
  2625. int ret;
  2626. if (txpower > AR5K_TUNE_MAX_TXPOWER) {
  2627. ATH5K_ERR(ah->ah_sc, "invalid tx power: %u\n", txpower);
  2628. return -EINVAL;
  2629. }
  2630. /* Reset TX power values */
  2631. memset(&ah->ah_txpower, 0, sizeof(ah->ah_txpower));
  2632. ah->ah_txpower.txp_tpc = AR5K_TUNE_TPC_TXPOWER;
  2633. ah->ah_txpower.txp_min_pwr = 0;
  2634. ah->ah_txpower.txp_max_pwr = AR5K_TUNE_MAX_TXPOWER;
  2635. /* Initialize TX power table */
  2636. switch (ah->ah_radio) {
  2637. case AR5K_RF5111:
  2638. type = AR5K_PWRTABLE_PWR_TO_PCDAC;
  2639. break;
  2640. case AR5K_RF5112:
  2641. type = AR5K_PWRTABLE_LINEAR_PCDAC;
  2642. break;
  2643. case AR5K_RF2413:
  2644. case AR5K_RF5413:
  2645. case AR5K_RF2316:
  2646. case AR5K_RF2317:
  2647. case AR5K_RF2425:
  2648. type = AR5K_PWRTABLE_PWR_TO_PDADC;
  2649. break;
  2650. default:
  2651. return -EINVAL;
  2652. }
  2653. /* FIXME: Only on channel/mode change */
  2654. ret = ath5k_setup_channel_powertable(ah, channel, ee_mode, type);
  2655. if (ret)
  2656. return ret;
  2657. /* Limit max power if we have a CTL available */
  2658. ath5k_get_max_ctl_power(ah, channel);
  2659. /* FIXME: Antenna reduction stuff */
  2660. /* FIXME: Limit power on turbo modes */
  2661. /* FIXME: TPC scale reduction */
  2662. /* Get surounding channels for per-rate power table
  2663. * calibration */
  2664. ath5k_get_rate_pcal_data(ah, channel, &rate_info);
  2665. /* Setup rate power table */
  2666. ath5k_setup_rate_powertable(ah, txpower, &rate_info, ee_mode);
  2667. /* Write rate power table on hw */
  2668. ath5k_hw_reg_write(ah, AR5K_TXPOWER_OFDM(3, 24) |
  2669. AR5K_TXPOWER_OFDM(2, 16) | AR5K_TXPOWER_OFDM(1, 8) |
  2670. AR5K_TXPOWER_OFDM(0, 0), AR5K_PHY_TXPOWER_RATE1);
  2671. ath5k_hw_reg_write(ah, AR5K_TXPOWER_OFDM(7, 24) |
  2672. AR5K_TXPOWER_OFDM(6, 16) | AR5K_TXPOWER_OFDM(5, 8) |
  2673. AR5K_TXPOWER_OFDM(4, 0), AR5K_PHY_TXPOWER_RATE2);
  2674. ath5k_hw_reg_write(ah, AR5K_TXPOWER_CCK(10, 24) |
  2675. AR5K_TXPOWER_CCK(9, 16) | AR5K_TXPOWER_CCK(15, 8) |
  2676. AR5K_TXPOWER_CCK(8, 0), AR5K_PHY_TXPOWER_RATE3);
  2677. ath5k_hw_reg_write(ah, AR5K_TXPOWER_CCK(14, 24) |
  2678. AR5K_TXPOWER_CCK(13, 16) | AR5K_TXPOWER_CCK(12, 8) |
  2679. AR5K_TXPOWER_CCK(11, 0), AR5K_PHY_TXPOWER_RATE4);
  2680. /* FIXME: TPC support */
  2681. if (ah->ah_txpower.txp_tpc) {
  2682. ath5k_hw_reg_write(ah, AR5K_PHY_TXPOWER_RATE_MAX_TPC_ENABLE |
  2683. AR5K_TUNE_MAX_TXPOWER, AR5K_PHY_TXPOWER_RATE_MAX);
  2684. ath5k_hw_reg_write(ah,
  2685. AR5K_REG_MS(AR5K_TUNE_MAX_TXPOWER, AR5K_TPC_ACK) |
  2686. AR5K_REG_MS(AR5K_TUNE_MAX_TXPOWER, AR5K_TPC_CTS) |
  2687. AR5K_REG_MS(AR5K_TUNE_MAX_TXPOWER, AR5K_TPC_CHIRP),
  2688. AR5K_TPC);
  2689. } else {
  2690. ath5k_hw_reg_write(ah, AR5K_PHY_TXPOWER_RATE_MAX |
  2691. AR5K_TUNE_MAX_TXPOWER, AR5K_PHY_TXPOWER_RATE_MAX);
  2692. }
  2693. return 0;
  2694. }
  2695. int ath5k_hw_set_txpower_limit(struct ath5k_hw *ah, u8 txpower)
  2696. {
  2697. /*Just a try M.F.*/
  2698. struct ieee80211_channel *channel = ah->ah_current_channel;
  2699. u8 ee_mode;
  2700. switch (channel->hw_value & CHANNEL_MODES) {
  2701. case CHANNEL_A:
  2702. case CHANNEL_T:
  2703. case CHANNEL_XR:
  2704. ee_mode = AR5K_EEPROM_MODE_11A;
  2705. break;
  2706. case CHANNEL_G:
  2707. case CHANNEL_TG:
  2708. ee_mode = AR5K_EEPROM_MODE_11G;
  2709. break;
  2710. case CHANNEL_B:
  2711. ee_mode = AR5K_EEPROM_MODE_11B;
  2712. break;
  2713. default:
  2714. ATH5K_ERR(ah->ah_sc,
  2715. "invalid channel: %d\n", channel->center_freq);
  2716. return -EINVAL;
  2717. }
  2718. ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_TXPOWER,
  2719. "changing txpower to %d\n", txpower);
  2720. return ath5k_hw_txpower(ah, channel, ee_mode, txpower);
  2721. }
  2722. /*************\
  2723. Init function
  2724. \*************/
  2725. int ath5k_hw_phy_init(struct ath5k_hw *ah, struct ieee80211_channel *channel,
  2726. u8 mode, u8 ee_mode, u8 freq)
  2727. {
  2728. int ret, i;
  2729. u32 phy_tst1;
  2730. ret = 0;
  2731. /*
  2732. * 5211/5212 Specific
  2733. */
  2734. if (ah->ah_version != AR5K_AR5210) {
  2735. /*
  2736. * Write initial RF gain settings
  2737. * This should work for both 5111/5112
  2738. */
  2739. ret = ath5k_hw_rfgain_init(ah, freq);
  2740. if (ret)
  2741. return ret;
  2742. mdelay(1);
  2743. /*
  2744. * Set TX power
  2745. */
  2746. ret = ath5k_hw_txpower(ah, channel, ee_mode,
  2747. ah->ah_txpower.txp_max_pwr / 2);
  2748. if (ret)
  2749. return ret;
  2750. /*
  2751. * Write RF buffer
  2752. */
  2753. ret = ath5k_hw_rfregs_init(ah, channel, mode);
  2754. if (ret)
  2755. return ret;
  2756. /* Write OFDM timings on 5212*/
  2757. if (ah->ah_version == AR5K_AR5212 &&
  2758. channel->hw_value & CHANNEL_OFDM) {
  2759. ret = ath5k_hw_write_ofdm_timings(ah, channel);
  2760. if (ret)
  2761. return ret;
  2762. /* Spur info is available only from EEPROM versions
  2763. * greater than 5.3, but the EEPROM routines will use
  2764. * static values for older versions */
  2765. if (ah->ah_mac_srev >= AR5K_SREV_AR5424)
  2766. ath5k_hw_set_spur_mitigation_filter(ah,
  2767. channel);
  2768. }
  2769. /*Enable/disable 802.11b mode on 5111
  2770. (enable 2111 frequency converter + CCK)*/
  2771. if (ah->ah_radio == AR5K_RF5111) {
  2772. if (mode == AR5K_MODE_11B)
  2773. AR5K_REG_ENABLE_BITS(ah, AR5K_TXCFG,
  2774. AR5K_TXCFG_B_MODE);
  2775. else
  2776. AR5K_REG_DISABLE_BITS(ah, AR5K_TXCFG,
  2777. AR5K_TXCFG_B_MODE);
  2778. }
  2779. } else {
  2780. /*
  2781. * For 5210 we do all initialization using
  2782. * initvals, so we don't have to modify
  2783. * any settings (5210 also only supports
  2784. * a/aturbo modes)
  2785. */
  2786. mdelay(1);
  2787. /* Disable phy and wait */
  2788. ath5k_hw_reg_write(ah, AR5K_PHY_ACT_DISABLE, AR5K_PHY_ACT);
  2789. mdelay(1);
  2790. }
  2791. /* Set channel on PHY */
  2792. ret = ath5k_hw_channel(ah, channel);
  2793. if (ret)
  2794. return ret;
  2795. /*
  2796. * Enable the PHY and wait until completion
  2797. * This includes BaseBand and Synthesizer
  2798. * activation.
  2799. */
  2800. ath5k_hw_reg_write(ah, AR5K_PHY_ACT_ENABLE, AR5K_PHY_ACT);
  2801. /*
  2802. * On 5211+ read activation -> rx delay
  2803. * and use it.
  2804. *
  2805. * TODO: Half/quarter rate support
  2806. */
  2807. if (ah->ah_version != AR5K_AR5210) {
  2808. u32 delay;
  2809. delay = ath5k_hw_reg_read(ah, AR5K_PHY_RX_DELAY) &
  2810. AR5K_PHY_RX_DELAY_M;
  2811. delay = (channel->hw_value & CHANNEL_CCK) ?
  2812. ((delay << 2) / 22) : (delay / 10);
  2813. udelay(100 + (2 * delay));
  2814. } else {
  2815. mdelay(1);
  2816. }
  2817. /*
  2818. * Perform ADC test to see if baseband is ready
  2819. * Set TX hold and check ADC test register
  2820. */
  2821. phy_tst1 = ath5k_hw_reg_read(ah, AR5K_PHY_TST1);
  2822. ath5k_hw_reg_write(ah, AR5K_PHY_TST1_TXHOLD, AR5K_PHY_TST1);
  2823. for (i = 0; i <= 20; i++) {
  2824. if (!(ath5k_hw_reg_read(ah, AR5K_PHY_ADC_TEST) & 0x10))
  2825. break;
  2826. udelay(200);
  2827. }
  2828. ath5k_hw_reg_write(ah, phy_tst1, AR5K_PHY_TST1);
  2829. /*
  2830. * Start automatic gain control calibration
  2831. *
  2832. * During AGC calibration RX path is re-routed to
  2833. * a power detector so we don't receive anything.
  2834. *
  2835. * This method is used to calibrate some static offsets
  2836. * used together with on-the fly I/Q calibration (the
  2837. * one performed via ath5k_hw_phy_calibrate), which doesn't
  2838. * interrupt rx path.
  2839. *
  2840. * While rx path is re-routed to the power detector we also
  2841. * start a noise floor calibration to measure the
  2842. * card's noise floor (the noise we measure when we are not
  2843. * transmitting or receiving anything).
  2844. *
  2845. * If we are in a noisy environment, AGC calibration may time
  2846. * out and/or noise floor calibration might timeout.
  2847. */
  2848. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGCCTL,
  2849. AR5K_PHY_AGCCTL_CAL | AR5K_PHY_AGCCTL_NF);
  2850. /* At the same time start I/Q calibration for QAM constellation
  2851. * -no need for CCK- */
  2852. ah->ah_calibration = false;
  2853. if (!(mode == AR5K_MODE_11B)) {
  2854. ah->ah_calibration = true;
  2855. AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ,
  2856. AR5K_PHY_IQ_CAL_NUM_LOG_MAX, 15);
  2857. AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ,
  2858. AR5K_PHY_IQ_RUN);
  2859. }
  2860. /* Wait for gain calibration to finish (we check for I/Q calibration
  2861. * during ath5k_phy_calibrate) */
  2862. if (ath5k_hw_register_timeout(ah, AR5K_PHY_AGCCTL,
  2863. AR5K_PHY_AGCCTL_CAL, 0, false)) {
  2864. ATH5K_ERR(ah->ah_sc, "gain calibration timeout (%uMHz)\n",
  2865. channel->center_freq);
  2866. }
  2867. /* Restore antenna mode */
  2868. ath5k_hw_set_antenna_mode(ah, ah->ah_ant_mode);
  2869. return ret;
  2870. }