main.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289
  1. /*
  2. * Copyright (c) 2008-2009 Atheros Communications Inc.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #include <linux/nl80211.h>
  17. #include <linux/delay.h>
  18. #include "ath9k.h"
  19. #include "btcoex.h"
  20. static u8 parse_mpdudensity(u8 mpdudensity)
  21. {
  22. /*
  23. * 802.11n D2.0 defined values for "Minimum MPDU Start Spacing":
  24. * 0 for no restriction
  25. * 1 for 1/4 us
  26. * 2 for 1/2 us
  27. * 3 for 1 us
  28. * 4 for 2 us
  29. * 5 for 4 us
  30. * 6 for 8 us
  31. * 7 for 16 us
  32. */
  33. switch (mpdudensity) {
  34. case 0:
  35. return 0;
  36. case 1:
  37. case 2:
  38. case 3:
  39. /* Our lower layer calculations limit our precision to
  40. 1 microsecond */
  41. return 1;
  42. case 4:
  43. return 2;
  44. case 5:
  45. return 4;
  46. case 6:
  47. return 8;
  48. case 7:
  49. return 16;
  50. default:
  51. return 0;
  52. }
  53. }
  54. static bool ath9k_has_pending_frames(struct ath_softc *sc, struct ath_txq *txq)
  55. {
  56. bool pending = false;
  57. spin_lock_bh(&txq->axq_lock);
  58. if (txq->axq_depth || !list_empty(&txq->axq_acq))
  59. pending = true;
  60. else if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
  61. pending = !list_empty(&txq->txq_fifo_pending);
  62. spin_unlock_bh(&txq->axq_lock);
  63. return pending;
  64. }
  65. bool ath9k_setpower(struct ath_softc *sc, enum ath9k_power_mode mode)
  66. {
  67. unsigned long flags;
  68. bool ret;
  69. spin_lock_irqsave(&sc->sc_pm_lock, flags);
  70. ret = ath9k_hw_setpower(sc->sc_ah, mode);
  71. spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
  72. return ret;
  73. }
  74. void ath9k_ps_wakeup(struct ath_softc *sc)
  75. {
  76. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  77. unsigned long flags;
  78. enum ath9k_power_mode power_mode;
  79. spin_lock_irqsave(&sc->sc_pm_lock, flags);
  80. if (++sc->ps_usecount != 1)
  81. goto unlock;
  82. power_mode = sc->sc_ah->power_mode;
  83. ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_AWAKE);
  84. /*
  85. * While the hardware is asleep, the cycle counters contain no
  86. * useful data. Better clear them now so that they don't mess up
  87. * survey data results.
  88. */
  89. if (power_mode != ATH9K_PM_AWAKE) {
  90. spin_lock(&common->cc_lock);
  91. ath_hw_cycle_counters_update(common);
  92. memset(&common->cc_survey, 0, sizeof(common->cc_survey));
  93. spin_unlock(&common->cc_lock);
  94. }
  95. unlock:
  96. spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
  97. }
  98. void ath9k_ps_restore(struct ath_softc *sc)
  99. {
  100. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  101. unsigned long flags;
  102. spin_lock_irqsave(&sc->sc_pm_lock, flags);
  103. if (--sc->ps_usecount != 0)
  104. goto unlock;
  105. spin_lock(&common->cc_lock);
  106. ath_hw_cycle_counters_update(common);
  107. spin_unlock(&common->cc_lock);
  108. if (sc->ps_idle)
  109. ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);
  110. else if (sc->ps_enabled &&
  111. !(sc->ps_flags & (PS_WAIT_FOR_BEACON |
  112. PS_WAIT_FOR_CAB |
  113. PS_WAIT_FOR_PSPOLL_DATA |
  114. PS_WAIT_FOR_TX_ACK)))
  115. ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
  116. unlock:
  117. spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
  118. }
  119. static void ath_start_ani(struct ath_common *common)
  120. {
  121. struct ath_hw *ah = common->ah;
  122. unsigned long timestamp = jiffies_to_msecs(jiffies);
  123. struct ath_softc *sc = (struct ath_softc *) common->priv;
  124. if (!(sc->sc_flags & SC_OP_ANI_RUN))
  125. return;
  126. if (sc->sc_flags & SC_OP_OFFCHANNEL)
  127. return;
  128. common->ani.longcal_timer = timestamp;
  129. common->ani.shortcal_timer = timestamp;
  130. common->ani.checkani_timer = timestamp;
  131. mod_timer(&common->ani.timer,
  132. jiffies +
  133. msecs_to_jiffies((u32)ah->config.ani_poll_interval));
  134. }
  135. static void ath_update_survey_nf(struct ath_softc *sc, int channel)
  136. {
  137. struct ath_hw *ah = sc->sc_ah;
  138. struct ath9k_channel *chan = &ah->channels[channel];
  139. struct survey_info *survey = &sc->survey[channel];
  140. if (chan->noisefloor) {
  141. survey->filled |= SURVEY_INFO_NOISE_DBM;
  142. survey->noise = chan->noisefloor;
  143. }
  144. }
  145. /*
  146. * Updates the survey statistics and returns the busy time since last
  147. * update in %, if the measurement duration was long enough for the
  148. * result to be useful, -1 otherwise.
  149. */
  150. static int ath_update_survey_stats(struct ath_softc *sc)
  151. {
  152. struct ath_hw *ah = sc->sc_ah;
  153. struct ath_common *common = ath9k_hw_common(ah);
  154. int pos = ah->curchan - &ah->channels[0];
  155. struct survey_info *survey = &sc->survey[pos];
  156. struct ath_cycle_counters *cc = &common->cc_survey;
  157. unsigned int div = common->clockrate * 1000;
  158. int ret = 0;
  159. if (!ah->curchan)
  160. return -1;
  161. if (ah->power_mode == ATH9K_PM_AWAKE)
  162. ath_hw_cycle_counters_update(common);
  163. if (cc->cycles > 0) {
  164. survey->filled |= SURVEY_INFO_CHANNEL_TIME |
  165. SURVEY_INFO_CHANNEL_TIME_BUSY |
  166. SURVEY_INFO_CHANNEL_TIME_RX |
  167. SURVEY_INFO_CHANNEL_TIME_TX;
  168. survey->channel_time += cc->cycles / div;
  169. survey->channel_time_busy += cc->rx_busy / div;
  170. survey->channel_time_rx += cc->rx_frame / div;
  171. survey->channel_time_tx += cc->tx_frame / div;
  172. }
  173. if (cc->cycles < div)
  174. return -1;
  175. if (cc->cycles > 0)
  176. ret = cc->rx_busy * 100 / cc->cycles;
  177. memset(cc, 0, sizeof(*cc));
  178. ath_update_survey_nf(sc, pos);
  179. return ret;
  180. }
  181. /*
  182. * Set/change channels. If the channel is really being changed, it's done
  183. * by reseting the chip. To accomplish this we must first cleanup any pending
  184. * DMA, then restart stuff.
  185. */
  186. int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw,
  187. struct ath9k_channel *hchan)
  188. {
  189. struct ath_hw *ah = sc->sc_ah;
  190. struct ath_common *common = ath9k_hw_common(ah);
  191. struct ieee80211_conf *conf = &common->hw->conf;
  192. bool fastcc = true, stopped;
  193. struct ieee80211_channel *channel = hw->conf.channel;
  194. struct ath9k_hw_cal_data *caldata = NULL;
  195. int r;
  196. if (sc->sc_flags & SC_OP_INVALID)
  197. return -EIO;
  198. sc->hw_busy_count = 0;
  199. del_timer_sync(&common->ani.timer);
  200. cancel_work_sync(&sc->paprd_work);
  201. cancel_work_sync(&sc->hw_check_work);
  202. cancel_delayed_work_sync(&sc->tx_complete_work);
  203. cancel_delayed_work_sync(&sc->hw_pll_work);
  204. ath9k_ps_wakeup(sc);
  205. spin_lock_bh(&sc->sc_pcu_lock);
  206. /*
  207. * This is only performed if the channel settings have
  208. * actually changed.
  209. *
  210. * To switch channels clear any pending DMA operations;
  211. * wait long enough for the RX fifo to drain, reset the
  212. * hardware at the new frequency, and then re-enable
  213. * the relevant bits of the h/w.
  214. */
  215. ath9k_hw_disable_interrupts(ah);
  216. stopped = ath_drain_all_txq(sc, false);
  217. if (!ath_stoprecv(sc))
  218. stopped = false;
  219. if (!ath9k_hw_check_alive(ah))
  220. stopped = false;
  221. /* XXX: do not flush receive queue here. We don't want
  222. * to flush data frames already in queue because of
  223. * changing channel. */
  224. if (!stopped || !(sc->sc_flags & SC_OP_OFFCHANNEL))
  225. fastcc = false;
  226. if (!(sc->sc_flags & SC_OP_OFFCHANNEL))
  227. caldata = &sc->caldata;
  228. ath_dbg(common, ATH_DBG_CONFIG,
  229. "(%u MHz) -> (%u MHz), conf_is_ht40: %d fastcc: %d\n",
  230. sc->sc_ah->curchan->channel,
  231. channel->center_freq, conf_is_ht40(conf),
  232. fastcc);
  233. r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
  234. if (r) {
  235. ath_err(common,
  236. "Unable to reset channel (%u MHz), reset status %d\n",
  237. channel->center_freq, r);
  238. goto ps_restore;
  239. }
  240. if (ath_startrecv(sc) != 0) {
  241. ath_err(common, "Unable to restart recv logic\n");
  242. r = -EIO;
  243. goto ps_restore;
  244. }
  245. ath9k_cmn_update_txpow(ah, sc->curtxpow,
  246. sc->config.txpowlimit, &sc->curtxpow);
  247. ath9k_hw_set_interrupts(ah, ah->imask);
  248. if (!(sc->sc_flags & (SC_OP_OFFCHANNEL))) {
  249. if (sc->sc_flags & SC_OP_BEACONS)
  250. ath_set_beacon(sc);
  251. ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
  252. ieee80211_queue_delayed_work(sc->hw, &sc->hw_pll_work, HZ/2);
  253. ath_start_ani(common);
  254. }
  255. ps_restore:
  256. ieee80211_wake_queues(hw);
  257. spin_unlock_bh(&sc->sc_pcu_lock);
  258. ath9k_ps_restore(sc);
  259. return r;
  260. }
  261. static void ath_paprd_activate(struct ath_softc *sc)
  262. {
  263. struct ath_hw *ah = sc->sc_ah;
  264. struct ath9k_hw_cal_data *caldata = ah->caldata;
  265. struct ath_common *common = ath9k_hw_common(ah);
  266. int chain;
  267. if (!caldata || !caldata->paprd_done)
  268. return;
  269. ath9k_ps_wakeup(sc);
  270. ar9003_paprd_enable(ah, false);
  271. for (chain = 0; chain < AR9300_MAX_CHAINS; chain++) {
  272. if (!(common->tx_chainmask & BIT(chain)))
  273. continue;
  274. ar9003_paprd_populate_single_table(ah, caldata, chain);
  275. }
  276. ar9003_paprd_enable(ah, true);
  277. ath9k_ps_restore(sc);
  278. }
  279. static bool ath_paprd_send_frame(struct ath_softc *sc, struct sk_buff *skb, int chain)
  280. {
  281. struct ieee80211_hw *hw = sc->hw;
  282. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  283. struct ath_hw *ah = sc->sc_ah;
  284. struct ath_common *common = ath9k_hw_common(ah);
  285. struct ath_tx_control txctl;
  286. int time_left;
  287. memset(&txctl, 0, sizeof(txctl));
  288. txctl.txq = sc->tx.txq_map[WME_AC_BE];
  289. memset(tx_info, 0, sizeof(*tx_info));
  290. tx_info->band = hw->conf.channel->band;
  291. tx_info->flags |= IEEE80211_TX_CTL_NO_ACK;
  292. tx_info->control.rates[0].idx = 0;
  293. tx_info->control.rates[0].count = 1;
  294. tx_info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
  295. tx_info->control.rates[1].idx = -1;
  296. init_completion(&sc->paprd_complete);
  297. txctl.paprd = BIT(chain);
  298. if (ath_tx_start(hw, skb, &txctl) != 0) {
  299. ath_dbg(common, ATH_DBG_XMIT, "PAPRD TX failed\n");
  300. dev_kfree_skb_any(skb);
  301. return false;
  302. }
  303. time_left = wait_for_completion_timeout(&sc->paprd_complete,
  304. msecs_to_jiffies(ATH_PAPRD_TIMEOUT));
  305. if (!time_left)
  306. ath_dbg(ath9k_hw_common(sc->sc_ah), ATH_DBG_CALIBRATE,
  307. "Timeout waiting for paprd training on TX chain %d\n",
  308. chain);
  309. return !!time_left;
  310. }
  311. void ath_paprd_calibrate(struct work_struct *work)
  312. {
  313. struct ath_softc *sc = container_of(work, struct ath_softc, paprd_work);
  314. struct ieee80211_hw *hw = sc->hw;
  315. struct ath_hw *ah = sc->sc_ah;
  316. struct ieee80211_hdr *hdr;
  317. struct sk_buff *skb = NULL;
  318. struct ath9k_hw_cal_data *caldata = ah->caldata;
  319. struct ath_common *common = ath9k_hw_common(ah);
  320. int ftype;
  321. int chain_ok = 0;
  322. int chain;
  323. int len = 1800;
  324. if (!caldata)
  325. return;
  326. if (ar9003_paprd_init_table(ah) < 0)
  327. return;
  328. skb = alloc_skb(len, GFP_KERNEL);
  329. if (!skb)
  330. return;
  331. skb_put(skb, len);
  332. memset(skb->data, 0, len);
  333. hdr = (struct ieee80211_hdr *)skb->data;
  334. ftype = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC;
  335. hdr->frame_control = cpu_to_le16(ftype);
  336. hdr->duration_id = cpu_to_le16(10);
  337. memcpy(hdr->addr1, hw->wiphy->perm_addr, ETH_ALEN);
  338. memcpy(hdr->addr2, hw->wiphy->perm_addr, ETH_ALEN);
  339. memcpy(hdr->addr3, hw->wiphy->perm_addr, ETH_ALEN);
  340. ath9k_ps_wakeup(sc);
  341. for (chain = 0; chain < AR9300_MAX_CHAINS; chain++) {
  342. if (!(common->tx_chainmask & BIT(chain)))
  343. continue;
  344. chain_ok = 0;
  345. ath_dbg(common, ATH_DBG_CALIBRATE,
  346. "Sending PAPRD frame for thermal measurement "
  347. "on chain %d\n", chain);
  348. if (!ath_paprd_send_frame(sc, skb, chain))
  349. goto fail_paprd;
  350. ar9003_paprd_setup_gain_table(ah, chain);
  351. ath_dbg(common, ATH_DBG_CALIBRATE,
  352. "Sending PAPRD training frame on chain %d\n", chain);
  353. if (!ath_paprd_send_frame(sc, skb, chain))
  354. goto fail_paprd;
  355. if (!ar9003_paprd_is_done(ah))
  356. break;
  357. if (ar9003_paprd_create_curve(ah, caldata, chain) != 0)
  358. break;
  359. chain_ok = 1;
  360. }
  361. kfree_skb(skb);
  362. if (chain_ok) {
  363. caldata->paprd_done = true;
  364. ath_paprd_activate(sc);
  365. }
  366. fail_paprd:
  367. ath9k_ps_restore(sc);
  368. }
  369. /*
  370. * This routine performs the periodic noise floor calibration function
  371. * that is used to adjust and optimize the chip performance. This
  372. * takes environmental changes (location, temperature) into account.
  373. * When the task is complete, it reschedules itself depending on the
  374. * appropriate interval that was calculated.
  375. */
  376. void ath_ani_calibrate(unsigned long data)
  377. {
  378. struct ath_softc *sc = (struct ath_softc *)data;
  379. struct ath_hw *ah = sc->sc_ah;
  380. struct ath_common *common = ath9k_hw_common(ah);
  381. bool longcal = false;
  382. bool shortcal = false;
  383. bool aniflag = false;
  384. unsigned int timestamp = jiffies_to_msecs(jiffies);
  385. u32 cal_interval, short_cal_interval, long_cal_interval;
  386. unsigned long flags;
  387. if (ah->caldata && ah->caldata->nfcal_interference)
  388. long_cal_interval = ATH_LONG_CALINTERVAL_INT;
  389. else
  390. long_cal_interval = ATH_LONG_CALINTERVAL;
  391. short_cal_interval = (ah->opmode == NL80211_IFTYPE_AP) ?
  392. ATH_AP_SHORT_CALINTERVAL : ATH_STA_SHORT_CALINTERVAL;
  393. /* Only calibrate if awake */
  394. if (sc->sc_ah->power_mode != ATH9K_PM_AWAKE)
  395. goto set_timer;
  396. ath9k_ps_wakeup(sc);
  397. /* Long calibration runs independently of short calibration. */
  398. if ((timestamp - common->ani.longcal_timer) >= long_cal_interval) {
  399. longcal = true;
  400. ath_dbg(common, ATH_DBG_ANI, "longcal @%lu\n", jiffies);
  401. common->ani.longcal_timer = timestamp;
  402. }
  403. /* Short calibration applies only while caldone is false */
  404. if (!common->ani.caldone) {
  405. if ((timestamp - common->ani.shortcal_timer) >= short_cal_interval) {
  406. shortcal = true;
  407. ath_dbg(common, ATH_DBG_ANI,
  408. "shortcal @%lu\n", jiffies);
  409. common->ani.shortcal_timer = timestamp;
  410. common->ani.resetcal_timer = timestamp;
  411. }
  412. } else {
  413. if ((timestamp - common->ani.resetcal_timer) >=
  414. ATH_RESTART_CALINTERVAL) {
  415. common->ani.caldone = ath9k_hw_reset_calvalid(ah);
  416. if (common->ani.caldone)
  417. common->ani.resetcal_timer = timestamp;
  418. }
  419. }
  420. /* Verify whether we must check ANI */
  421. if ((timestamp - common->ani.checkani_timer) >=
  422. ah->config.ani_poll_interval) {
  423. aniflag = true;
  424. common->ani.checkani_timer = timestamp;
  425. }
  426. /* Skip all processing if there's nothing to do. */
  427. if (longcal || shortcal || aniflag) {
  428. /* Call ANI routine if necessary */
  429. if (aniflag) {
  430. spin_lock_irqsave(&common->cc_lock, flags);
  431. ath9k_hw_ani_monitor(ah, ah->curchan);
  432. ath_update_survey_stats(sc);
  433. spin_unlock_irqrestore(&common->cc_lock, flags);
  434. }
  435. /* Perform calibration if necessary */
  436. if (longcal || shortcal) {
  437. common->ani.caldone =
  438. ath9k_hw_calibrate(ah,
  439. ah->curchan,
  440. common->rx_chainmask,
  441. longcal);
  442. }
  443. }
  444. ath9k_ps_restore(sc);
  445. set_timer:
  446. /*
  447. * Set timer interval based on previous results.
  448. * The interval must be the shortest necessary to satisfy ANI,
  449. * short calibration and long calibration.
  450. */
  451. cal_interval = ATH_LONG_CALINTERVAL;
  452. if (sc->sc_ah->config.enable_ani)
  453. cal_interval = min(cal_interval,
  454. (u32)ah->config.ani_poll_interval);
  455. if (!common->ani.caldone)
  456. cal_interval = min(cal_interval, (u32)short_cal_interval);
  457. mod_timer(&common->ani.timer, jiffies + msecs_to_jiffies(cal_interval));
  458. if ((sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_PAPRD) && ah->caldata) {
  459. if (!ah->caldata->paprd_done)
  460. ieee80211_queue_work(sc->hw, &sc->paprd_work);
  461. else if (!ah->paprd_table_write_done)
  462. ath_paprd_activate(sc);
  463. }
  464. }
  465. static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta)
  466. {
  467. struct ath_node *an;
  468. struct ath_hw *ah = sc->sc_ah;
  469. an = (struct ath_node *)sta->drv_priv;
  470. #ifdef CONFIG_ATH9K_DEBUGFS
  471. spin_lock(&sc->nodes_lock);
  472. list_add(&an->list, &sc->nodes);
  473. spin_unlock(&sc->nodes_lock);
  474. an->sta = sta;
  475. #endif
  476. if ((ah->caps.hw_caps) & ATH9K_HW_CAP_APM)
  477. sc->sc_flags |= SC_OP_ENABLE_APM;
  478. if (sc->sc_flags & SC_OP_TXAGGR) {
  479. ath_tx_node_init(sc, an);
  480. an->maxampdu = 1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
  481. sta->ht_cap.ampdu_factor);
  482. an->mpdudensity = parse_mpdudensity(sta->ht_cap.ampdu_density);
  483. }
  484. }
  485. static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
  486. {
  487. struct ath_node *an = (struct ath_node *)sta->drv_priv;
  488. #ifdef CONFIG_ATH9K_DEBUGFS
  489. spin_lock(&sc->nodes_lock);
  490. list_del(&an->list);
  491. spin_unlock(&sc->nodes_lock);
  492. an->sta = NULL;
  493. #endif
  494. if (sc->sc_flags & SC_OP_TXAGGR)
  495. ath_tx_node_cleanup(sc, an);
  496. }
  497. void ath_hw_check(struct work_struct *work)
  498. {
  499. struct ath_softc *sc = container_of(work, struct ath_softc, hw_check_work);
  500. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  501. unsigned long flags;
  502. int busy;
  503. ath9k_ps_wakeup(sc);
  504. if (ath9k_hw_check_alive(sc->sc_ah))
  505. goto out;
  506. spin_lock_irqsave(&common->cc_lock, flags);
  507. busy = ath_update_survey_stats(sc);
  508. spin_unlock_irqrestore(&common->cc_lock, flags);
  509. ath_dbg(common, ATH_DBG_RESET, "Possible baseband hang, "
  510. "busy=%d (try %d)\n", busy, sc->hw_busy_count + 1);
  511. if (busy >= 99) {
  512. if (++sc->hw_busy_count >= 3)
  513. ath_reset(sc, true);
  514. } else if (busy >= 0)
  515. sc->hw_busy_count = 0;
  516. out:
  517. ath9k_ps_restore(sc);
  518. }
  519. void ath9k_tasklet(unsigned long data)
  520. {
  521. struct ath_softc *sc = (struct ath_softc *)data;
  522. struct ath_hw *ah = sc->sc_ah;
  523. struct ath_common *common = ath9k_hw_common(ah);
  524. u32 status = sc->intrstatus;
  525. u32 rxmask;
  526. if (status & ATH9K_INT_FATAL) {
  527. ath_reset(sc, true);
  528. return;
  529. }
  530. ath9k_ps_wakeup(sc);
  531. spin_lock(&sc->sc_pcu_lock);
  532. /*
  533. * Only run the baseband hang check if beacons stop working in AP or
  534. * IBSS mode, because it has a high false positive rate. For station
  535. * mode it should not be necessary, since the upper layers will detect
  536. * this through a beacon miss automatically and the following channel
  537. * change will trigger a hardware reset anyway
  538. */
  539. if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0 &&
  540. !ath9k_hw_check_alive(ah))
  541. ieee80211_queue_work(sc->hw, &sc->hw_check_work);
  542. if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
  543. rxmask = (ATH9K_INT_RXHP | ATH9K_INT_RXLP | ATH9K_INT_RXEOL |
  544. ATH9K_INT_RXORN);
  545. else
  546. rxmask = (ATH9K_INT_RX | ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
  547. if (status & rxmask) {
  548. /* Check for high priority Rx first */
  549. if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
  550. (status & ATH9K_INT_RXHP))
  551. ath_rx_tasklet(sc, 0, true);
  552. ath_rx_tasklet(sc, 0, false);
  553. }
  554. if (status & ATH9K_INT_TX) {
  555. if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
  556. ath_tx_edma_tasklet(sc);
  557. else
  558. ath_tx_tasklet(sc);
  559. }
  560. if ((status & ATH9K_INT_TSFOOR) && sc->ps_enabled) {
  561. /*
  562. * TSF sync does not look correct; remain awake to sync with
  563. * the next Beacon.
  564. */
  565. ath_dbg(common, ATH_DBG_PS,
  566. "TSFOOR - Sync with next Beacon\n");
  567. sc->ps_flags |= PS_WAIT_FOR_BEACON | PS_BEACON_SYNC;
  568. }
  569. if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
  570. if (status & ATH9K_INT_GENTIMER)
  571. ath_gen_timer_isr(sc->sc_ah);
  572. /* re-enable hardware interrupt */
  573. ath9k_hw_enable_interrupts(ah);
  574. spin_unlock(&sc->sc_pcu_lock);
  575. ath9k_ps_restore(sc);
  576. }
  577. irqreturn_t ath_isr(int irq, void *dev)
  578. {
  579. #define SCHED_INTR ( \
  580. ATH9K_INT_FATAL | \
  581. ATH9K_INT_RXORN | \
  582. ATH9K_INT_RXEOL | \
  583. ATH9K_INT_RX | \
  584. ATH9K_INT_RXLP | \
  585. ATH9K_INT_RXHP | \
  586. ATH9K_INT_TX | \
  587. ATH9K_INT_BMISS | \
  588. ATH9K_INT_CST | \
  589. ATH9K_INT_TSFOOR | \
  590. ATH9K_INT_GENTIMER)
  591. struct ath_softc *sc = dev;
  592. struct ath_hw *ah = sc->sc_ah;
  593. struct ath_common *common = ath9k_hw_common(ah);
  594. enum ath9k_int status;
  595. bool sched = false;
  596. /*
  597. * The hardware is not ready/present, don't
  598. * touch anything. Note this can happen early
  599. * on if the IRQ is shared.
  600. */
  601. if (sc->sc_flags & SC_OP_INVALID)
  602. return IRQ_NONE;
  603. /* shared irq, not for us */
  604. if (!ath9k_hw_intrpend(ah))
  605. return IRQ_NONE;
  606. /*
  607. * Figure out the reason(s) for the interrupt. Note
  608. * that the hal returns a pseudo-ISR that may include
  609. * bits we haven't explicitly enabled so we mask the
  610. * value to insure we only process bits we requested.
  611. */
  612. ath9k_hw_getisr(ah, &status); /* NB: clears ISR too */
  613. status &= ah->imask; /* discard unasked-for bits */
  614. /*
  615. * If there are no status bits set, then this interrupt was not
  616. * for me (should have been caught above).
  617. */
  618. if (!status)
  619. return IRQ_NONE;
  620. /* Cache the status */
  621. sc->intrstatus = status;
  622. if (status & SCHED_INTR)
  623. sched = true;
  624. /*
  625. * If a FATAL or RXORN interrupt is received, we have to reset the
  626. * chip immediately.
  627. */
  628. if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
  629. !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
  630. goto chip_reset;
  631. if ((ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) &&
  632. (status & ATH9K_INT_BB_WATCHDOG)) {
  633. spin_lock(&common->cc_lock);
  634. ath_hw_cycle_counters_update(common);
  635. ar9003_hw_bb_watchdog_dbg_info(ah);
  636. spin_unlock(&common->cc_lock);
  637. goto chip_reset;
  638. }
  639. if (status & ATH9K_INT_SWBA)
  640. tasklet_schedule(&sc->bcon_tasklet);
  641. if (status & ATH9K_INT_TXURN)
  642. ath9k_hw_updatetxtriglevel(ah, true);
  643. if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
  644. if (status & ATH9K_INT_RXEOL) {
  645. ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
  646. ath9k_hw_set_interrupts(ah, ah->imask);
  647. }
  648. }
  649. if (status & ATH9K_INT_MIB) {
  650. /*
  651. * Disable interrupts until we service the MIB
  652. * interrupt; otherwise it will continue to
  653. * fire.
  654. */
  655. ath9k_hw_disable_interrupts(ah);
  656. /*
  657. * Let the hal handle the event. We assume
  658. * it will clear whatever condition caused
  659. * the interrupt.
  660. */
  661. spin_lock(&common->cc_lock);
  662. ath9k_hw_proc_mib_event(ah);
  663. spin_unlock(&common->cc_lock);
  664. ath9k_hw_enable_interrupts(ah);
  665. }
  666. if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
  667. if (status & ATH9K_INT_TIM_TIMER) {
  668. if (ATH_DBG_WARN_ON_ONCE(sc->ps_idle))
  669. goto chip_reset;
  670. /* Clear RxAbort bit so that we can
  671. * receive frames */
  672. ath9k_setpower(sc, ATH9K_PM_AWAKE);
  673. ath9k_hw_setrxabort(sc->sc_ah, 0);
  674. sc->ps_flags |= PS_WAIT_FOR_BEACON;
  675. }
  676. chip_reset:
  677. ath_debug_stat_interrupt(sc, status);
  678. if (sched) {
  679. /* turn off every interrupt */
  680. ath9k_hw_disable_interrupts(ah);
  681. tasklet_schedule(&sc->intr_tq);
  682. }
  683. return IRQ_HANDLED;
  684. #undef SCHED_INTR
  685. }
  686. void ath_radio_enable(struct ath_softc *sc, struct ieee80211_hw *hw)
  687. {
  688. struct ath_hw *ah = sc->sc_ah;
  689. struct ath_common *common = ath9k_hw_common(ah);
  690. struct ieee80211_channel *channel = hw->conf.channel;
  691. int r;
  692. ath9k_ps_wakeup(sc);
  693. spin_lock_bh(&sc->sc_pcu_lock);
  694. ath9k_hw_configpcipowersave(ah, 0, 0);
  695. if (!ah->curchan)
  696. ah->curchan = ath9k_cmn_get_curchannel(sc->hw, ah);
  697. r = ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
  698. if (r) {
  699. ath_err(common,
  700. "Unable to reset channel (%u MHz), reset status %d\n",
  701. channel->center_freq, r);
  702. }
  703. ath9k_cmn_update_txpow(ah, sc->curtxpow,
  704. sc->config.txpowlimit, &sc->curtxpow);
  705. if (ath_startrecv(sc) != 0) {
  706. ath_err(common, "Unable to restart recv logic\n");
  707. goto out;
  708. }
  709. if (sc->sc_flags & SC_OP_BEACONS)
  710. ath_set_beacon(sc); /* restart beacons */
  711. /* Re-Enable interrupts */
  712. ath9k_hw_set_interrupts(ah, ah->imask);
  713. /* Enable LED */
  714. ath9k_hw_cfg_output(ah, ah->led_pin,
  715. AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
  716. ath9k_hw_set_gpio(ah, ah->led_pin, 0);
  717. ieee80211_wake_queues(hw);
  718. ieee80211_queue_delayed_work(hw, &sc->hw_pll_work, HZ/2);
  719. out:
  720. spin_unlock_bh(&sc->sc_pcu_lock);
  721. ath9k_ps_restore(sc);
  722. }
  723. void ath_radio_disable(struct ath_softc *sc, struct ieee80211_hw *hw)
  724. {
  725. struct ath_hw *ah = sc->sc_ah;
  726. struct ieee80211_channel *channel = hw->conf.channel;
  727. int r;
  728. ath9k_ps_wakeup(sc);
  729. cancel_delayed_work_sync(&sc->hw_pll_work);
  730. spin_lock_bh(&sc->sc_pcu_lock);
  731. ieee80211_stop_queues(hw);
  732. /*
  733. * Keep the LED on when the radio is disabled
  734. * during idle unassociated state.
  735. */
  736. if (!sc->ps_idle) {
  737. ath9k_hw_set_gpio(ah, ah->led_pin, 1);
  738. ath9k_hw_cfg_gpio_input(ah, ah->led_pin);
  739. }
  740. /* Disable interrupts */
  741. ath9k_hw_disable_interrupts(ah);
  742. ath_drain_all_txq(sc, false); /* clear pending tx frames */
  743. ath_stoprecv(sc); /* turn off frame recv */
  744. ath_flushrecv(sc); /* flush recv queue */
  745. if (!ah->curchan)
  746. ah->curchan = ath9k_cmn_get_curchannel(hw, ah);
  747. r = ath9k_hw_reset(ah, ah->curchan, ah->caldata, false);
  748. if (r) {
  749. ath_err(ath9k_hw_common(sc->sc_ah),
  750. "Unable to reset channel (%u MHz), reset status %d\n",
  751. channel->center_freq, r);
  752. }
  753. ath9k_hw_phy_disable(ah);
  754. ath9k_hw_configpcipowersave(ah, 1, 1);
  755. spin_unlock_bh(&sc->sc_pcu_lock);
  756. ath9k_ps_restore(sc);
  757. }
  758. int ath_reset(struct ath_softc *sc, bool retry_tx)
  759. {
  760. struct ath_hw *ah = sc->sc_ah;
  761. struct ath_common *common = ath9k_hw_common(ah);
  762. struct ieee80211_hw *hw = sc->hw;
  763. int r;
  764. sc->hw_busy_count = 0;
  765. /* Stop ANI */
  766. del_timer_sync(&common->ani.timer);
  767. ath9k_ps_wakeup(sc);
  768. spin_lock_bh(&sc->sc_pcu_lock);
  769. ieee80211_stop_queues(hw);
  770. ath9k_hw_disable_interrupts(ah);
  771. ath_drain_all_txq(sc, retry_tx);
  772. ath_stoprecv(sc);
  773. ath_flushrecv(sc);
  774. r = ath9k_hw_reset(ah, sc->sc_ah->curchan, ah->caldata, false);
  775. if (r)
  776. ath_err(common,
  777. "Unable to reset hardware; reset status %d\n", r);
  778. if (ath_startrecv(sc) != 0)
  779. ath_err(common, "Unable to start recv logic\n");
  780. /*
  781. * We may be doing a reset in response to a request
  782. * that changes the channel so update any state that
  783. * might change as a result.
  784. */
  785. ath9k_cmn_update_txpow(ah, sc->curtxpow,
  786. sc->config.txpowlimit, &sc->curtxpow);
  787. if ((sc->sc_flags & SC_OP_BEACONS) || !(sc->sc_flags & (SC_OP_OFFCHANNEL)))
  788. ath_set_beacon(sc); /* restart beacons */
  789. ath9k_hw_set_interrupts(ah, ah->imask);
  790. if (retry_tx) {
  791. int i;
  792. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
  793. if (ATH_TXQ_SETUP(sc, i)) {
  794. spin_lock_bh(&sc->tx.txq[i].axq_lock);
  795. ath_txq_schedule(sc, &sc->tx.txq[i]);
  796. spin_unlock_bh(&sc->tx.txq[i].axq_lock);
  797. }
  798. }
  799. }
  800. ieee80211_wake_queues(hw);
  801. spin_unlock_bh(&sc->sc_pcu_lock);
  802. /* Start ANI */
  803. ath_start_ani(common);
  804. ath9k_ps_restore(sc);
  805. return r;
  806. }
  807. /**********************/
  808. /* mac80211 callbacks */
  809. /**********************/
  810. static int ath9k_start(struct ieee80211_hw *hw)
  811. {
  812. struct ath_softc *sc = hw->priv;
  813. struct ath_hw *ah = sc->sc_ah;
  814. struct ath_common *common = ath9k_hw_common(ah);
  815. struct ieee80211_channel *curchan = hw->conf.channel;
  816. struct ath9k_channel *init_channel;
  817. int r;
  818. ath_dbg(common, ATH_DBG_CONFIG,
  819. "Starting driver with initial channel: %d MHz\n",
  820. curchan->center_freq);
  821. ath9k_ps_wakeup(sc);
  822. mutex_lock(&sc->mutex);
  823. /* setup initial channel */
  824. sc->chan_idx = curchan->hw_value;
  825. init_channel = ath9k_cmn_get_curchannel(hw, ah);
  826. /* Reset SERDES registers */
  827. ath9k_hw_configpcipowersave(ah, 0, 0);
  828. /*
  829. * The basic interface to setting the hardware in a good
  830. * state is ``reset''. On return the hardware is known to
  831. * be powered up and with interrupts disabled. This must
  832. * be followed by initialization of the appropriate bits
  833. * and then setup of the interrupt mask.
  834. */
  835. spin_lock_bh(&sc->sc_pcu_lock);
  836. r = ath9k_hw_reset(ah, init_channel, ah->caldata, false);
  837. if (r) {
  838. ath_err(common,
  839. "Unable to reset hardware; reset status %d (freq %u MHz)\n",
  840. r, curchan->center_freq);
  841. spin_unlock_bh(&sc->sc_pcu_lock);
  842. goto mutex_unlock;
  843. }
  844. /*
  845. * This is needed only to setup initial state
  846. * but it's best done after a reset.
  847. */
  848. ath9k_cmn_update_txpow(ah, sc->curtxpow,
  849. sc->config.txpowlimit, &sc->curtxpow);
  850. /*
  851. * Setup the hardware after reset:
  852. * The receive engine is set going.
  853. * Frame transmit is handled entirely
  854. * in the frame output path; there's nothing to do
  855. * here except setup the interrupt mask.
  856. */
  857. if (ath_startrecv(sc) != 0) {
  858. ath_err(common, "Unable to start recv logic\n");
  859. r = -EIO;
  860. spin_unlock_bh(&sc->sc_pcu_lock);
  861. goto mutex_unlock;
  862. }
  863. spin_unlock_bh(&sc->sc_pcu_lock);
  864. /* Setup our intr mask. */
  865. ah->imask = ATH9K_INT_TX | ATH9K_INT_RXEOL |
  866. ATH9K_INT_RXORN | ATH9K_INT_FATAL |
  867. ATH9K_INT_GLOBAL;
  868. if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
  869. ah->imask |= ATH9K_INT_RXHP |
  870. ATH9K_INT_RXLP |
  871. ATH9K_INT_BB_WATCHDOG;
  872. else
  873. ah->imask |= ATH9K_INT_RX;
  874. ah->imask |= ATH9K_INT_GTT;
  875. if (ah->caps.hw_caps & ATH9K_HW_CAP_HT)
  876. ah->imask |= ATH9K_INT_CST;
  877. sc->sc_flags &= ~SC_OP_INVALID;
  878. sc->sc_ah->is_monitoring = false;
  879. /* Disable BMISS interrupt when we're not associated */
  880. ah->imask &= ~(ATH9K_INT_SWBA | ATH9K_INT_BMISS);
  881. ath9k_hw_set_interrupts(ah, ah->imask);
  882. ieee80211_wake_queues(hw);
  883. ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0);
  884. if ((ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE) &&
  885. !ah->btcoex_hw.enabled) {
  886. ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
  887. AR_STOMP_LOW_WLAN_WGHT);
  888. ath9k_hw_btcoex_enable(ah);
  889. if (common->bus_ops->bt_coex_prep)
  890. common->bus_ops->bt_coex_prep(common);
  891. if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
  892. ath9k_btcoex_timer_resume(sc);
  893. }
  894. if (ah->caps.pcie_lcr_extsync_en && common->bus_ops->extn_synch_en)
  895. common->bus_ops->extn_synch_en(common);
  896. mutex_unlock:
  897. mutex_unlock(&sc->mutex);
  898. ath9k_ps_restore(sc);
  899. return r;
  900. }
  901. static void ath9k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
  902. {
  903. struct ath_softc *sc = hw->priv;
  904. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  905. struct ath_tx_control txctl;
  906. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  907. if (sc->ps_enabled) {
  908. /*
  909. * mac80211 does not set PM field for normal data frames, so we
  910. * need to update that based on the current PS mode.
  911. */
  912. if (ieee80211_is_data(hdr->frame_control) &&
  913. !ieee80211_is_nullfunc(hdr->frame_control) &&
  914. !ieee80211_has_pm(hdr->frame_control)) {
  915. ath_dbg(common, ATH_DBG_PS,
  916. "Add PM=1 for a TX frame while in PS mode\n");
  917. hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
  918. }
  919. }
  920. if (unlikely(sc->sc_ah->power_mode != ATH9K_PM_AWAKE)) {
  921. /*
  922. * We are using PS-Poll and mac80211 can request TX while in
  923. * power save mode. Need to wake up hardware for the TX to be
  924. * completed and if needed, also for RX of buffered frames.
  925. */
  926. ath9k_ps_wakeup(sc);
  927. if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
  928. ath9k_hw_setrxabort(sc->sc_ah, 0);
  929. if (ieee80211_is_pspoll(hdr->frame_control)) {
  930. ath_dbg(common, ATH_DBG_PS,
  931. "Sending PS-Poll to pick a buffered frame\n");
  932. sc->ps_flags |= PS_WAIT_FOR_PSPOLL_DATA;
  933. } else {
  934. ath_dbg(common, ATH_DBG_PS,
  935. "Wake up to complete TX\n");
  936. sc->ps_flags |= PS_WAIT_FOR_TX_ACK;
  937. }
  938. /*
  939. * The actual restore operation will happen only after
  940. * the sc_flags bit is cleared. We are just dropping
  941. * the ps_usecount here.
  942. */
  943. ath9k_ps_restore(sc);
  944. }
  945. memset(&txctl, 0, sizeof(struct ath_tx_control));
  946. txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)];
  947. ath_dbg(common, ATH_DBG_XMIT, "transmitting packet, skb: %p\n", skb);
  948. if (ath_tx_start(hw, skb, &txctl) != 0) {
  949. ath_dbg(common, ATH_DBG_XMIT, "TX failed\n");
  950. goto exit;
  951. }
  952. return;
  953. exit:
  954. dev_kfree_skb_any(skb);
  955. }
  956. static void ath9k_stop(struct ieee80211_hw *hw)
  957. {
  958. struct ath_softc *sc = hw->priv;
  959. struct ath_hw *ah = sc->sc_ah;
  960. struct ath_common *common = ath9k_hw_common(ah);
  961. mutex_lock(&sc->mutex);
  962. cancel_delayed_work_sync(&sc->tx_complete_work);
  963. cancel_delayed_work_sync(&sc->hw_pll_work);
  964. cancel_work_sync(&sc->paprd_work);
  965. cancel_work_sync(&sc->hw_check_work);
  966. if (sc->sc_flags & SC_OP_INVALID) {
  967. ath_dbg(common, ATH_DBG_ANY, "Device not present\n");
  968. mutex_unlock(&sc->mutex);
  969. return;
  970. }
  971. /* Ensure HW is awake when we try to shut it down. */
  972. ath9k_ps_wakeup(sc);
  973. if (ah->btcoex_hw.enabled) {
  974. ath9k_hw_btcoex_disable(ah);
  975. if (ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
  976. ath9k_btcoex_timer_pause(sc);
  977. }
  978. spin_lock_bh(&sc->sc_pcu_lock);
  979. /* prevent tasklets to enable interrupts once we disable them */
  980. ah->imask &= ~ATH9K_INT_GLOBAL;
  981. /* make sure h/w will not generate any interrupt
  982. * before setting the invalid flag. */
  983. ath9k_hw_disable_interrupts(ah);
  984. if (!(sc->sc_flags & SC_OP_INVALID)) {
  985. ath_drain_all_txq(sc, false);
  986. ath_stoprecv(sc);
  987. ath9k_hw_phy_disable(ah);
  988. } else
  989. sc->rx.rxlink = NULL;
  990. if (sc->rx.frag) {
  991. dev_kfree_skb_any(sc->rx.frag);
  992. sc->rx.frag = NULL;
  993. }
  994. /* disable HAL and put h/w to sleep */
  995. ath9k_hw_disable(ah);
  996. ath9k_hw_configpcipowersave(ah, 1, 1);
  997. spin_unlock_bh(&sc->sc_pcu_lock);
  998. /* we can now sync irq and kill any running tasklets, since we already
  999. * disabled interrupts and not holding a spin lock */
  1000. synchronize_irq(sc->irq);
  1001. tasklet_kill(&sc->intr_tq);
  1002. tasklet_kill(&sc->bcon_tasklet);
  1003. ath9k_ps_restore(sc);
  1004. sc->ps_idle = true;
  1005. ath_radio_disable(sc, hw);
  1006. sc->sc_flags |= SC_OP_INVALID;
  1007. mutex_unlock(&sc->mutex);
  1008. ath_dbg(common, ATH_DBG_CONFIG, "Driver halt\n");
  1009. }
  1010. bool ath9k_uses_beacons(int type)
  1011. {
  1012. switch (type) {
  1013. case NL80211_IFTYPE_AP:
  1014. case NL80211_IFTYPE_ADHOC:
  1015. case NL80211_IFTYPE_MESH_POINT:
  1016. return true;
  1017. default:
  1018. return false;
  1019. }
  1020. }
  1021. static void ath9k_reclaim_beacon(struct ath_softc *sc,
  1022. struct ieee80211_vif *vif)
  1023. {
  1024. struct ath_vif *avp = (void *)vif->drv_priv;
  1025. ath9k_set_beaconing_status(sc, false);
  1026. ath_beacon_return(sc, avp);
  1027. ath9k_set_beaconing_status(sc, true);
  1028. sc->sc_flags &= ~SC_OP_BEACONS;
  1029. }
  1030. static void ath9k_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
  1031. {
  1032. struct ath9k_vif_iter_data *iter_data = data;
  1033. int i;
  1034. if (iter_data->hw_macaddr)
  1035. for (i = 0; i < ETH_ALEN; i++)
  1036. iter_data->mask[i] &=
  1037. ~(iter_data->hw_macaddr[i] ^ mac[i]);
  1038. switch (vif->type) {
  1039. case NL80211_IFTYPE_AP:
  1040. iter_data->naps++;
  1041. break;
  1042. case NL80211_IFTYPE_STATION:
  1043. iter_data->nstations++;
  1044. break;
  1045. case NL80211_IFTYPE_ADHOC:
  1046. iter_data->nadhocs++;
  1047. break;
  1048. case NL80211_IFTYPE_MESH_POINT:
  1049. iter_data->nmeshes++;
  1050. break;
  1051. case NL80211_IFTYPE_WDS:
  1052. iter_data->nwds++;
  1053. break;
  1054. default:
  1055. iter_data->nothers++;
  1056. break;
  1057. }
  1058. }
  1059. /* Called with sc->mutex held. */
  1060. void ath9k_calculate_iter_data(struct ieee80211_hw *hw,
  1061. struct ieee80211_vif *vif,
  1062. struct ath9k_vif_iter_data *iter_data)
  1063. {
  1064. struct ath_softc *sc = hw->priv;
  1065. struct ath_hw *ah = sc->sc_ah;
  1066. struct ath_common *common = ath9k_hw_common(ah);
  1067. /*
  1068. * Use the hardware MAC address as reference, the hardware uses it
  1069. * together with the BSSID mask when matching addresses.
  1070. */
  1071. memset(iter_data, 0, sizeof(*iter_data));
  1072. iter_data->hw_macaddr = common->macaddr;
  1073. memset(&iter_data->mask, 0xff, ETH_ALEN);
  1074. if (vif)
  1075. ath9k_vif_iter(iter_data, vif->addr, vif);
  1076. /* Get list of all active MAC addresses */
  1077. ieee80211_iterate_active_interfaces_atomic(sc->hw, ath9k_vif_iter,
  1078. iter_data);
  1079. }
  1080. /* Called with sc->mutex held. */
  1081. static void ath9k_calculate_summary_state(struct ieee80211_hw *hw,
  1082. struct ieee80211_vif *vif)
  1083. {
  1084. struct ath_softc *sc = hw->priv;
  1085. struct ath_hw *ah = sc->sc_ah;
  1086. struct ath_common *common = ath9k_hw_common(ah);
  1087. struct ath9k_vif_iter_data iter_data;
  1088. ath9k_calculate_iter_data(hw, vif, &iter_data);
  1089. ath9k_ps_wakeup(sc);
  1090. /* Set BSSID mask. */
  1091. memcpy(common->bssidmask, iter_data.mask, ETH_ALEN);
  1092. ath_hw_setbssidmask(common);
  1093. /* Set op-mode & TSF */
  1094. if (iter_data.naps > 0) {
  1095. ath9k_hw_set_tsfadjust(ah, 1);
  1096. sc->sc_flags |= SC_OP_TSF_RESET;
  1097. ah->opmode = NL80211_IFTYPE_AP;
  1098. } else {
  1099. ath9k_hw_set_tsfadjust(ah, 0);
  1100. sc->sc_flags &= ~SC_OP_TSF_RESET;
  1101. if (iter_data.nwds + iter_data.nmeshes)
  1102. ah->opmode = NL80211_IFTYPE_AP;
  1103. else if (iter_data.nadhocs)
  1104. ah->opmode = NL80211_IFTYPE_ADHOC;
  1105. else
  1106. ah->opmode = NL80211_IFTYPE_STATION;
  1107. }
  1108. /*
  1109. * Enable MIB interrupts when there are hardware phy counters.
  1110. */
  1111. if ((iter_data.nstations + iter_data.nadhocs + iter_data.nmeshes) > 0) {
  1112. if (ah->config.enable_ani)
  1113. ah->imask |= ATH9K_INT_MIB;
  1114. ah->imask |= ATH9K_INT_TSFOOR;
  1115. } else {
  1116. ah->imask &= ~ATH9K_INT_MIB;
  1117. ah->imask &= ~ATH9K_INT_TSFOOR;
  1118. }
  1119. ath9k_hw_set_interrupts(ah, ah->imask);
  1120. ath9k_ps_restore(sc);
  1121. /* Set up ANI */
  1122. if ((iter_data.naps + iter_data.nadhocs) > 0) {
  1123. sc->sc_flags |= SC_OP_ANI_RUN;
  1124. ath_start_ani(common);
  1125. } else {
  1126. sc->sc_flags &= ~SC_OP_ANI_RUN;
  1127. del_timer_sync(&common->ani.timer);
  1128. }
  1129. }
  1130. /* Called with sc->mutex held, vif counts set up properly. */
  1131. static void ath9k_do_vif_add_setup(struct ieee80211_hw *hw,
  1132. struct ieee80211_vif *vif)
  1133. {
  1134. struct ath_softc *sc = hw->priv;
  1135. ath9k_calculate_summary_state(hw, vif);
  1136. if (ath9k_uses_beacons(vif->type)) {
  1137. int error;
  1138. /* This may fail because upper levels do not have beacons
  1139. * properly configured yet. That's OK, we assume it
  1140. * will be properly configured and then we will be notified
  1141. * in the info_changed method and set up beacons properly
  1142. * there.
  1143. */
  1144. ath9k_set_beaconing_status(sc, false);
  1145. error = ath_beacon_alloc(sc, vif);
  1146. if (!error)
  1147. ath_beacon_config(sc, vif);
  1148. ath9k_set_beaconing_status(sc, true);
  1149. }
  1150. }
  1151. static int ath9k_add_interface(struct ieee80211_hw *hw,
  1152. struct ieee80211_vif *vif)
  1153. {
  1154. struct ath_softc *sc = hw->priv;
  1155. struct ath_hw *ah = sc->sc_ah;
  1156. struct ath_common *common = ath9k_hw_common(ah);
  1157. int ret = 0;
  1158. mutex_lock(&sc->mutex);
  1159. switch (vif->type) {
  1160. case NL80211_IFTYPE_STATION:
  1161. case NL80211_IFTYPE_WDS:
  1162. case NL80211_IFTYPE_ADHOC:
  1163. case NL80211_IFTYPE_AP:
  1164. case NL80211_IFTYPE_MESH_POINT:
  1165. break;
  1166. default:
  1167. ath_err(common, "Interface type %d not yet supported\n",
  1168. vif->type);
  1169. ret = -EOPNOTSUPP;
  1170. goto out;
  1171. }
  1172. if (ath9k_uses_beacons(vif->type)) {
  1173. if (sc->nbcnvifs >= ATH_BCBUF) {
  1174. ath_err(common, "Not enough beacon buffers when adding"
  1175. " new interface of type: %i\n",
  1176. vif->type);
  1177. ret = -ENOBUFS;
  1178. goto out;
  1179. }
  1180. }
  1181. if ((ah->opmode == NL80211_IFTYPE_ADHOC) ||
  1182. ((vif->type == NL80211_IFTYPE_ADHOC) &&
  1183. sc->nvifs > 0)) {
  1184. ath_err(common, "Cannot create ADHOC interface when other"
  1185. " interfaces already exist.\n");
  1186. ret = -EINVAL;
  1187. goto out;
  1188. }
  1189. ath_dbg(common, ATH_DBG_CONFIG,
  1190. "Attach a VIF of type: %d\n", vif->type);
  1191. sc->nvifs++;
  1192. ath9k_do_vif_add_setup(hw, vif);
  1193. out:
  1194. mutex_unlock(&sc->mutex);
  1195. return ret;
  1196. }
  1197. static int ath9k_change_interface(struct ieee80211_hw *hw,
  1198. struct ieee80211_vif *vif,
  1199. enum nl80211_iftype new_type,
  1200. bool p2p)
  1201. {
  1202. struct ath_softc *sc = hw->priv;
  1203. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1204. int ret = 0;
  1205. ath_dbg(common, ATH_DBG_CONFIG, "Change Interface\n");
  1206. mutex_lock(&sc->mutex);
  1207. /* See if new interface type is valid. */
  1208. if ((new_type == NL80211_IFTYPE_ADHOC) &&
  1209. (sc->nvifs > 1)) {
  1210. ath_err(common, "When using ADHOC, it must be the only"
  1211. " interface.\n");
  1212. ret = -EINVAL;
  1213. goto out;
  1214. }
  1215. if (ath9k_uses_beacons(new_type) &&
  1216. !ath9k_uses_beacons(vif->type)) {
  1217. if (sc->nbcnvifs >= ATH_BCBUF) {
  1218. ath_err(common, "No beacon slot available\n");
  1219. ret = -ENOBUFS;
  1220. goto out;
  1221. }
  1222. }
  1223. /* Clean up old vif stuff */
  1224. if (ath9k_uses_beacons(vif->type))
  1225. ath9k_reclaim_beacon(sc, vif);
  1226. /* Add new settings */
  1227. vif->type = new_type;
  1228. vif->p2p = p2p;
  1229. ath9k_do_vif_add_setup(hw, vif);
  1230. out:
  1231. mutex_unlock(&sc->mutex);
  1232. return ret;
  1233. }
  1234. static void ath9k_remove_interface(struct ieee80211_hw *hw,
  1235. struct ieee80211_vif *vif)
  1236. {
  1237. struct ath_softc *sc = hw->priv;
  1238. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1239. ath_dbg(common, ATH_DBG_CONFIG, "Detach Interface\n");
  1240. mutex_lock(&sc->mutex);
  1241. sc->nvifs--;
  1242. /* Reclaim beacon resources */
  1243. if (ath9k_uses_beacons(vif->type))
  1244. ath9k_reclaim_beacon(sc, vif);
  1245. ath9k_calculate_summary_state(hw, NULL);
  1246. mutex_unlock(&sc->mutex);
  1247. }
  1248. static void ath9k_enable_ps(struct ath_softc *sc)
  1249. {
  1250. struct ath_hw *ah = sc->sc_ah;
  1251. sc->ps_enabled = true;
  1252. if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  1253. if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) {
  1254. ah->imask |= ATH9K_INT_TIM_TIMER;
  1255. ath9k_hw_set_interrupts(ah, ah->imask);
  1256. }
  1257. ath9k_hw_setrxabort(ah, 1);
  1258. }
  1259. }
  1260. static void ath9k_disable_ps(struct ath_softc *sc)
  1261. {
  1262. struct ath_hw *ah = sc->sc_ah;
  1263. sc->ps_enabled = false;
  1264. ath9k_hw_setpower(ah, ATH9K_PM_AWAKE);
  1265. if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  1266. ath9k_hw_setrxabort(ah, 0);
  1267. sc->ps_flags &= ~(PS_WAIT_FOR_BEACON |
  1268. PS_WAIT_FOR_CAB |
  1269. PS_WAIT_FOR_PSPOLL_DATA |
  1270. PS_WAIT_FOR_TX_ACK);
  1271. if (ah->imask & ATH9K_INT_TIM_TIMER) {
  1272. ah->imask &= ~ATH9K_INT_TIM_TIMER;
  1273. ath9k_hw_set_interrupts(ah, ah->imask);
  1274. }
  1275. }
  1276. }
  1277. static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
  1278. {
  1279. struct ath_softc *sc = hw->priv;
  1280. struct ath_hw *ah = sc->sc_ah;
  1281. struct ath_common *common = ath9k_hw_common(ah);
  1282. struct ieee80211_conf *conf = &hw->conf;
  1283. bool disable_radio = false;
  1284. mutex_lock(&sc->mutex);
  1285. /*
  1286. * Leave this as the first check because we need to turn on the
  1287. * radio if it was disabled before prior to processing the rest
  1288. * of the changes. Likewise we must only disable the radio towards
  1289. * the end.
  1290. */
  1291. if (changed & IEEE80211_CONF_CHANGE_IDLE) {
  1292. sc->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
  1293. if (!sc->ps_idle) {
  1294. ath_radio_enable(sc, hw);
  1295. ath_dbg(common, ATH_DBG_CONFIG,
  1296. "not-idle: enabling radio\n");
  1297. } else {
  1298. disable_radio = true;
  1299. }
  1300. }
  1301. /*
  1302. * We just prepare to enable PS. We have to wait until our AP has
  1303. * ACK'd our null data frame to disable RX otherwise we'll ignore
  1304. * those ACKs and end up retransmitting the same null data frames.
  1305. * IEEE80211_CONF_CHANGE_PS is only passed by mac80211 for STA mode.
  1306. */
  1307. if (changed & IEEE80211_CONF_CHANGE_PS) {
  1308. unsigned long flags;
  1309. spin_lock_irqsave(&sc->sc_pm_lock, flags);
  1310. if (conf->flags & IEEE80211_CONF_PS)
  1311. ath9k_enable_ps(sc);
  1312. else
  1313. ath9k_disable_ps(sc);
  1314. spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
  1315. }
  1316. if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
  1317. if (conf->flags & IEEE80211_CONF_MONITOR) {
  1318. ath_dbg(common, ATH_DBG_CONFIG,
  1319. "Monitor mode is enabled\n");
  1320. sc->sc_ah->is_monitoring = true;
  1321. } else {
  1322. ath_dbg(common, ATH_DBG_CONFIG,
  1323. "Monitor mode is disabled\n");
  1324. sc->sc_ah->is_monitoring = false;
  1325. }
  1326. }
  1327. if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
  1328. struct ieee80211_channel *curchan = hw->conf.channel;
  1329. int pos = curchan->hw_value;
  1330. int old_pos = -1;
  1331. unsigned long flags;
  1332. if (ah->curchan)
  1333. old_pos = ah->curchan - &ah->channels[0];
  1334. if (hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)
  1335. sc->sc_flags |= SC_OP_OFFCHANNEL;
  1336. else
  1337. sc->sc_flags &= ~SC_OP_OFFCHANNEL;
  1338. ath_dbg(common, ATH_DBG_CONFIG,
  1339. "Set channel: %d MHz type: %d\n",
  1340. curchan->center_freq, conf->channel_type);
  1341. ath9k_cmn_update_ichannel(&sc->sc_ah->channels[pos],
  1342. curchan, conf->channel_type);
  1343. /* update survey stats for the old channel before switching */
  1344. spin_lock_irqsave(&common->cc_lock, flags);
  1345. ath_update_survey_stats(sc);
  1346. spin_unlock_irqrestore(&common->cc_lock, flags);
  1347. /*
  1348. * If the operating channel changes, change the survey in-use flags
  1349. * along with it.
  1350. * Reset the survey data for the new channel, unless we're switching
  1351. * back to the operating channel from an off-channel operation.
  1352. */
  1353. if (!(hw->conf.flags & IEEE80211_CONF_OFFCHANNEL) &&
  1354. sc->cur_survey != &sc->survey[pos]) {
  1355. if (sc->cur_survey)
  1356. sc->cur_survey->filled &= ~SURVEY_INFO_IN_USE;
  1357. sc->cur_survey = &sc->survey[pos];
  1358. memset(sc->cur_survey, 0, sizeof(struct survey_info));
  1359. sc->cur_survey->filled |= SURVEY_INFO_IN_USE;
  1360. } else if (!(sc->survey[pos].filled & SURVEY_INFO_IN_USE)) {
  1361. memset(&sc->survey[pos], 0, sizeof(struct survey_info));
  1362. }
  1363. if (ath_set_channel(sc, hw, &sc->sc_ah->channels[pos]) < 0) {
  1364. ath_err(common, "Unable to set channel\n");
  1365. mutex_unlock(&sc->mutex);
  1366. return -EINVAL;
  1367. }
  1368. /*
  1369. * The most recent snapshot of channel->noisefloor for the old
  1370. * channel is only available after the hardware reset. Copy it to
  1371. * the survey stats now.
  1372. */
  1373. if (old_pos >= 0)
  1374. ath_update_survey_nf(sc, old_pos);
  1375. }
  1376. if (changed & IEEE80211_CONF_CHANGE_POWER) {
  1377. ath_dbg(common, ATH_DBG_CONFIG,
  1378. "Set power: %d\n", conf->power_level);
  1379. sc->config.txpowlimit = 2 * conf->power_level;
  1380. ath9k_ps_wakeup(sc);
  1381. ath9k_cmn_update_txpow(ah, sc->curtxpow,
  1382. sc->config.txpowlimit, &sc->curtxpow);
  1383. ath9k_ps_restore(sc);
  1384. }
  1385. if (disable_radio) {
  1386. ath_dbg(common, ATH_DBG_CONFIG, "idle: disabling radio\n");
  1387. ath_radio_disable(sc, hw);
  1388. }
  1389. mutex_unlock(&sc->mutex);
  1390. return 0;
  1391. }
  1392. #define SUPPORTED_FILTERS \
  1393. (FIF_PROMISC_IN_BSS | \
  1394. FIF_ALLMULTI | \
  1395. FIF_CONTROL | \
  1396. FIF_PSPOLL | \
  1397. FIF_OTHER_BSS | \
  1398. FIF_BCN_PRBRESP_PROMISC | \
  1399. FIF_PROBE_REQ | \
  1400. FIF_FCSFAIL)
  1401. /* FIXME: sc->sc_full_reset ? */
  1402. static void ath9k_configure_filter(struct ieee80211_hw *hw,
  1403. unsigned int changed_flags,
  1404. unsigned int *total_flags,
  1405. u64 multicast)
  1406. {
  1407. struct ath_softc *sc = hw->priv;
  1408. u32 rfilt;
  1409. changed_flags &= SUPPORTED_FILTERS;
  1410. *total_flags &= SUPPORTED_FILTERS;
  1411. sc->rx.rxfilter = *total_flags;
  1412. ath9k_ps_wakeup(sc);
  1413. rfilt = ath_calcrxfilter(sc);
  1414. ath9k_hw_setrxfilter(sc->sc_ah, rfilt);
  1415. ath9k_ps_restore(sc);
  1416. ath_dbg(ath9k_hw_common(sc->sc_ah), ATH_DBG_CONFIG,
  1417. "Set HW RX filter: 0x%x\n", rfilt);
  1418. }
  1419. static int ath9k_sta_add(struct ieee80211_hw *hw,
  1420. struct ieee80211_vif *vif,
  1421. struct ieee80211_sta *sta)
  1422. {
  1423. struct ath_softc *sc = hw->priv;
  1424. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1425. struct ath_node *an = (struct ath_node *) sta->drv_priv;
  1426. struct ieee80211_key_conf ps_key = { };
  1427. ath_node_attach(sc, sta);
  1428. an->ps_key = ath_key_config(common, vif, sta, &ps_key);
  1429. return 0;
  1430. }
  1431. static void ath9k_del_ps_key(struct ath_softc *sc,
  1432. struct ieee80211_vif *vif,
  1433. struct ieee80211_sta *sta)
  1434. {
  1435. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1436. struct ath_node *an = (struct ath_node *) sta->drv_priv;
  1437. struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key };
  1438. if (!an->ps_key)
  1439. return;
  1440. ath_key_delete(common, &ps_key);
  1441. }
  1442. static int ath9k_sta_remove(struct ieee80211_hw *hw,
  1443. struct ieee80211_vif *vif,
  1444. struct ieee80211_sta *sta)
  1445. {
  1446. struct ath_softc *sc = hw->priv;
  1447. ath9k_del_ps_key(sc, vif, sta);
  1448. ath_node_detach(sc, sta);
  1449. return 0;
  1450. }
  1451. static void ath9k_sta_notify(struct ieee80211_hw *hw,
  1452. struct ieee80211_vif *vif,
  1453. enum sta_notify_cmd cmd,
  1454. struct ieee80211_sta *sta)
  1455. {
  1456. struct ath_softc *sc = hw->priv;
  1457. struct ath_node *an = (struct ath_node *) sta->drv_priv;
  1458. switch (cmd) {
  1459. case STA_NOTIFY_SLEEP:
  1460. an->sleeping = true;
  1461. if (ath_tx_aggr_sleep(sc, an))
  1462. ieee80211_sta_set_tim(sta);
  1463. break;
  1464. case STA_NOTIFY_AWAKE:
  1465. an->sleeping = false;
  1466. ath_tx_aggr_wakeup(sc, an);
  1467. break;
  1468. }
  1469. }
  1470. static int ath9k_conf_tx(struct ieee80211_hw *hw, u16 queue,
  1471. const struct ieee80211_tx_queue_params *params)
  1472. {
  1473. struct ath_softc *sc = hw->priv;
  1474. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1475. struct ath_txq *txq;
  1476. struct ath9k_tx_queue_info qi;
  1477. int ret = 0;
  1478. if (queue >= WME_NUM_AC)
  1479. return 0;
  1480. txq = sc->tx.txq_map[queue];
  1481. mutex_lock(&sc->mutex);
  1482. memset(&qi, 0, sizeof(struct ath9k_tx_queue_info));
  1483. qi.tqi_aifs = params->aifs;
  1484. qi.tqi_cwmin = params->cw_min;
  1485. qi.tqi_cwmax = params->cw_max;
  1486. qi.tqi_burstTime = params->txop;
  1487. ath_dbg(common, ATH_DBG_CONFIG,
  1488. "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
  1489. queue, txq->axq_qnum, params->aifs, params->cw_min,
  1490. params->cw_max, params->txop);
  1491. ret = ath_txq_update(sc, txq->axq_qnum, &qi);
  1492. if (ret)
  1493. ath_err(common, "TXQ Update failed\n");
  1494. if (sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC)
  1495. if (queue == WME_AC_BE && !ret)
  1496. ath_beaconq_config(sc);
  1497. mutex_unlock(&sc->mutex);
  1498. return ret;
  1499. }
  1500. static int ath9k_set_key(struct ieee80211_hw *hw,
  1501. enum set_key_cmd cmd,
  1502. struct ieee80211_vif *vif,
  1503. struct ieee80211_sta *sta,
  1504. struct ieee80211_key_conf *key)
  1505. {
  1506. struct ath_softc *sc = hw->priv;
  1507. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1508. int ret = 0;
  1509. if (ath9k_modparam_nohwcrypt)
  1510. return -ENOSPC;
  1511. if (vif->type == NL80211_IFTYPE_ADHOC &&
  1512. (key->cipher == WLAN_CIPHER_SUITE_TKIP ||
  1513. key->cipher == WLAN_CIPHER_SUITE_CCMP) &&
  1514. !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
  1515. /*
  1516. * For now, disable hw crypto for the RSN IBSS group keys. This
  1517. * could be optimized in the future to use a modified key cache
  1518. * design to support per-STA RX GTK, but until that gets
  1519. * implemented, use of software crypto for group addressed
  1520. * frames is a acceptable to allow RSN IBSS to be used.
  1521. */
  1522. return -EOPNOTSUPP;
  1523. }
  1524. mutex_lock(&sc->mutex);
  1525. ath9k_ps_wakeup(sc);
  1526. ath_dbg(common, ATH_DBG_CONFIG, "Set HW Key\n");
  1527. switch (cmd) {
  1528. case SET_KEY:
  1529. if (sta)
  1530. ath9k_del_ps_key(sc, vif, sta);
  1531. ret = ath_key_config(common, vif, sta, key);
  1532. if (ret >= 0) {
  1533. key->hw_key_idx = ret;
  1534. /* push IV and Michael MIC generation to stack */
  1535. key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  1536. if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
  1537. key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
  1538. if (sc->sc_ah->sw_mgmt_crypto &&
  1539. key->cipher == WLAN_CIPHER_SUITE_CCMP)
  1540. key->flags |= IEEE80211_KEY_FLAG_SW_MGMT;
  1541. ret = 0;
  1542. }
  1543. break;
  1544. case DISABLE_KEY:
  1545. ath_key_delete(common, key);
  1546. break;
  1547. default:
  1548. ret = -EINVAL;
  1549. }
  1550. ath9k_ps_restore(sc);
  1551. mutex_unlock(&sc->mutex);
  1552. return ret;
  1553. }
  1554. static void ath9k_bss_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
  1555. {
  1556. struct ath_softc *sc = data;
  1557. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1558. struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
  1559. struct ath_vif *avp = (void *)vif->drv_priv;
  1560. switch (sc->sc_ah->opmode) {
  1561. case NL80211_IFTYPE_ADHOC:
  1562. /* There can be only one vif available */
  1563. memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
  1564. common->curaid = bss_conf->aid;
  1565. ath9k_hw_write_associd(sc->sc_ah);
  1566. /* configure beacon */
  1567. if (bss_conf->enable_beacon)
  1568. ath_beacon_config(sc, vif);
  1569. break;
  1570. case NL80211_IFTYPE_STATION:
  1571. /*
  1572. * Skip iteration if primary station vif's bss info
  1573. * was not changed
  1574. */
  1575. if (sc->sc_flags & SC_OP_PRIM_STA_VIF)
  1576. break;
  1577. if (bss_conf->assoc) {
  1578. sc->sc_flags |= SC_OP_PRIM_STA_VIF;
  1579. avp->primary_sta_vif = true;
  1580. memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
  1581. common->curaid = bss_conf->aid;
  1582. ath9k_hw_write_associd(sc->sc_ah);
  1583. ath_dbg(common, ATH_DBG_CONFIG,
  1584. "Bss Info ASSOC %d, bssid: %pM\n",
  1585. bss_conf->aid, common->curbssid);
  1586. ath_beacon_config(sc, vif);
  1587. /* Reset rssi stats */
  1588. sc->last_rssi = ATH_RSSI_DUMMY_MARKER;
  1589. sc->sc_ah->stats.avgbrssi = ATH_RSSI_DUMMY_MARKER;
  1590. sc->sc_flags |= SC_OP_ANI_RUN;
  1591. ath_start_ani(common);
  1592. }
  1593. break;
  1594. default:
  1595. break;
  1596. }
  1597. }
  1598. static void ath9k_config_bss(struct ath_softc *sc, struct ieee80211_vif *vif)
  1599. {
  1600. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1601. struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
  1602. struct ath_vif *avp = (void *)vif->drv_priv;
  1603. /* Reconfigure bss info */
  1604. if (avp->primary_sta_vif && !bss_conf->assoc) {
  1605. ath_dbg(common, ATH_DBG_CONFIG,
  1606. "Bss Info DISASSOC %d, bssid %pM\n",
  1607. common->curaid, common->curbssid);
  1608. sc->sc_flags &= ~(SC_OP_PRIM_STA_VIF | SC_OP_BEACONS);
  1609. avp->primary_sta_vif = false;
  1610. memset(common->curbssid, 0, ETH_ALEN);
  1611. common->curaid = 0;
  1612. }
  1613. ieee80211_iterate_active_interfaces_atomic(
  1614. sc->hw, ath9k_bss_iter, sc);
  1615. /*
  1616. * None of station vifs are associated.
  1617. * Clear bssid & aid
  1618. */
  1619. if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) &&
  1620. !(sc->sc_flags & SC_OP_PRIM_STA_VIF)) {
  1621. ath9k_hw_write_associd(sc->sc_ah);
  1622. /* Stop ANI */
  1623. sc->sc_flags &= ~SC_OP_ANI_RUN;
  1624. del_timer_sync(&common->ani.timer);
  1625. }
  1626. }
  1627. static void ath9k_bss_info_changed(struct ieee80211_hw *hw,
  1628. struct ieee80211_vif *vif,
  1629. struct ieee80211_bss_conf *bss_conf,
  1630. u32 changed)
  1631. {
  1632. struct ath_softc *sc = hw->priv;
  1633. struct ath_hw *ah = sc->sc_ah;
  1634. struct ath_common *common = ath9k_hw_common(ah);
  1635. struct ath_vif *avp = (void *)vif->drv_priv;
  1636. int slottime;
  1637. int error;
  1638. mutex_lock(&sc->mutex);
  1639. if (changed & BSS_CHANGED_BSSID) {
  1640. ath9k_config_bss(sc, vif);
  1641. /* Set aggregation protection mode parameters */
  1642. sc->config.ath_aggr_prot = 0;
  1643. ath_dbg(common, ATH_DBG_CONFIG, "BSSID: %pM aid: 0x%x\n",
  1644. common->curbssid, common->curaid);
  1645. }
  1646. /* Enable transmission of beacons (AP, IBSS, MESH) */
  1647. if ((changed & BSS_CHANGED_BEACON) ||
  1648. ((changed & BSS_CHANGED_BEACON_ENABLED) && bss_conf->enable_beacon)) {
  1649. ath9k_set_beaconing_status(sc, false);
  1650. error = ath_beacon_alloc(sc, vif);
  1651. if (!error)
  1652. ath_beacon_config(sc, vif);
  1653. ath9k_set_beaconing_status(sc, true);
  1654. }
  1655. if (changed & BSS_CHANGED_ERP_SLOT) {
  1656. if (bss_conf->use_short_slot)
  1657. slottime = 9;
  1658. else
  1659. slottime = 20;
  1660. if (vif->type == NL80211_IFTYPE_AP) {
  1661. /*
  1662. * Defer update, so that connected stations can adjust
  1663. * their settings at the same time.
  1664. * See beacon.c for more details
  1665. */
  1666. sc->beacon.slottime = slottime;
  1667. sc->beacon.updateslot = UPDATE;
  1668. } else {
  1669. ah->slottime = slottime;
  1670. ath9k_hw_init_global_settings(ah);
  1671. }
  1672. }
  1673. /* Disable transmission of beacons */
  1674. if ((changed & BSS_CHANGED_BEACON_ENABLED) &&
  1675. !bss_conf->enable_beacon) {
  1676. ath9k_set_beaconing_status(sc, false);
  1677. avp->is_bslot_active = false;
  1678. ath9k_set_beaconing_status(sc, true);
  1679. }
  1680. if (changed & BSS_CHANGED_BEACON_INT) {
  1681. /*
  1682. * In case of AP mode, the HW TSF has to be reset
  1683. * when the beacon interval changes.
  1684. */
  1685. if (vif->type == NL80211_IFTYPE_AP) {
  1686. sc->sc_flags |= SC_OP_TSF_RESET;
  1687. ath9k_set_beaconing_status(sc, false);
  1688. error = ath_beacon_alloc(sc, vif);
  1689. if (!error)
  1690. ath_beacon_config(sc, vif);
  1691. ath9k_set_beaconing_status(sc, true);
  1692. } else
  1693. ath_beacon_config(sc, vif);
  1694. }
  1695. if (changed & BSS_CHANGED_ERP_PREAMBLE) {
  1696. ath_dbg(common, ATH_DBG_CONFIG, "BSS Changed PREAMBLE %d\n",
  1697. bss_conf->use_short_preamble);
  1698. if (bss_conf->use_short_preamble)
  1699. sc->sc_flags |= SC_OP_PREAMBLE_SHORT;
  1700. else
  1701. sc->sc_flags &= ~SC_OP_PREAMBLE_SHORT;
  1702. }
  1703. if (changed & BSS_CHANGED_ERP_CTS_PROT) {
  1704. ath_dbg(common, ATH_DBG_CONFIG, "BSS Changed CTS PROT %d\n",
  1705. bss_conf->use_cts_prot);
  1706. if (bss_conf->use_cts_prot &&
  1707. hw->conf.channel->band != IEEE80211_BAND_5GHZ)
  1708. sc->sc_flags |= SC_OP_PROTECT_ENABLE;
  1709. else
  1710. sc->sc_flags &= ~SC_OP_PROTECT_ENABLE;
  1711. }
  1712. mutex_unlock(&sc->mutex);
  1713. }
  1714. static u64 ath9k_get_tsf(struct ieee80211_hw *hw)
  1715. {
  1716. struct ath_softc *sc = hw->priv;
  1717. u64 tsf;
  1718. mutex_lock(&sc->mutex);
  1719. ath9k_ps_wakeup(sc);
  1720. tsf = ath9k_hw_gettsf64(sc->sc_ah);
  1721. ath9k_ps_restore(sc);
  1722. mutex_unlock(&sc->mutex);
  1723. return tsf;
  1724. }
  1725. static void ath9k_set_tsf(struct ieee80211_hw *hw, u64 tsf)
  1726. {
  1727. struct ath_softc *sc = hw->priv;
  1728. mutex_lock(&sc->mutex);
  1729. ath9k_ps_wakeup(sc);
  1730. ath9k_hw_settsf64(sc->sc_ah, tsf);
  1731. ath9k_ps_restore(sc);
  1732. mutex_unlock(&sc->mutex);
  1733. }
  1734. static void ath9k_reset_tsf(struct ieee80211_hw *hw)
  1735. {
  1736. struct ath_softc *sc = hw->priv;
  1737. mutex_lock(&sc->mutex);
  1738. ath9k_ps_wakeup(sc);
  1739. ath9k_hw_reset_tsf(sc->sc_ah);
  1740. ath9k_ps_restore(sc);
  1741. mutex_unlock(&sc->mutex);
  1742. }
  1743. static int ath9k_ampdu_action(struct ieee80211_hw *hw,
  1744. struct ieee80211_vif *vif,
  1745. enum ieee80211_ampdu_mlme_action action,
  1746. struct ieee80211_sta *sta,
  1747. u16 tid, u16 *ssn, u8 buf_size)
  1748. {
  1749. struct ath_softc *sc = hw->priv;
  1750. int ret = 0;
  1751. local_bh_disable();
  1752. switch (action) {
  1753. case IEEE80211_AMPDU_RX_START:
  1754. if (!(sc->sc_flags & SC_OP_RXAGGR))
  1755. ret = -ENOTSUPP;
  1756. break;
  1757. case IEEE80211_AMPDU_RX_STOP:
  1758. break;
  1759. case IEEE80211_AMPDU_TX_START:
  1760. if (!(sc->sc_flags & SC_OP_TXAGGR))
  1761. return -EOPNOTSUPP;
  1762. ath9k_ps_wakeup(sc);
  1763. ret = ath_tx_aggr_start(sc, sta, tid, ssn);
  1764. if (!ret)
  1765. ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
  1766. ath9k_ps_restore(sc);
  1767. break;
  1768. case IEEE80211_AMPDU_TX_STOP:
  1769. ath9k_ps_wakeup(sc);
  1770. ath_tx_aggr_stop(sc, sta, tid);
  1771. ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
  1772. ath9k_ps_restore(sc);
  1773. break;
  1774. case IEEE80211_AMPDU_TX_OPERATIONAL:
  1775. ath9k_ps_wakeup(sc);
  1776. ath_tx_aggr_resume(sc, sta, tid);
  1777. ath9k_ps_restore(sc);
  1778. break;
  1779. default:
  1780. ath_err(ath9k_hw_common(sc->sc_ah), "Unknown AMPDU action\n");
  1781. }
  1782. local_bh_enable();
  1783. return ret;
  1784. }
  1785. static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
  1786. struct survey_info *survey)
  1787. {
  1788. struct ath_softc *sc = hw->priv;
  1789. struct ath_common *common = ath9k_hw_common(sc->sc_ah);
  1790. struct ieee80211_supported_band *sband;
  1791. struct ieee80211_channel *chan;
  1792. unsigned long flags;
  1793. int pos;
  1794. spin_lock_irqsave(&common->cc_lock, flags);
  1795. if (idx == 0)
  1796. ath_update_survey_stats(sc);
  1797. sband = hw->wiphy->bands[IEEE80211_BAND_2GHZ];
  1798. if (sband && idx >= sband->n_channels) {
  1799. idx -= sband->n_channels;
  1800. sband = NULL;
  1801. }
  1802. if (!sband)
  1803. sband = hw->wiphy->bands[IEEE80211_BAND_5GHZ];
  1804. if (!sband || idx >= sband->n_channels) {
  1805. spin_unlock_irqrestore(&common->cc_lock, flags);
  1806. return -ENOENT;
  1807. }
  1808. chan = &sband->channels[idx];
  1809. pos = chan->hw_value;
  1810. memcpy(survey, &sc->survey[pos], sizeof(*survey));
  1811. survey->channel = chan;
  1812. spin_unlock_irqrestore(&common->cc_lock, flags);
  1813. return 0;
  1814. }
  1815. static void ath9k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class)
  1816. {
  1817. struct ath_softc *sc = hw->priv;
  1818. struct ath_hw *ah = sc->sc_ah;
  1819. mutex_lock(&sc->mutex);
  1820. ah->coverage_class = coverage_class;
  1821. ath9k_hw_init_global_settings(ah);
  1822. mutex_unlock(&sc->mutex);
  1823. }
  1824. static void ath9k_flush(struct ieee80211_hw *hw, bool drop)
  1825. {
  1826. struct ath_softc *sc = hw->priv;
  1827. int timeout = 200; /* ms */
  1828. int i, j;
  1829. ath9k_ps_wakeup(sc);
  1830. mutex_lock(&sc->mutex);
  1831. cancel_delayed_work_sync(&sc->tx_complete_work);
  1832. if (drop)
  1833. timeout = 1;
  1834. for (j = 0; j < timeout; j++) {
  1835. int npend = 0;
  1836. if (j)
  1837. usleep_range(1000, 2000);
  1838. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
  1839. if (!ATH_TXQ_SETUP(sc, i))
  1840. continue;
  1841. npend += ath9k_has_pending_frames(sc, &sc->tx.txq[i]);
  1842. }
  1843. if (!npend)
  1844. goto out;
  1845. }
  1846. if (!ath_drain_all_txq(sc, false))
  1847. ath_reset(sc, false);
  1848. ieee80211_wake_queues(hw);
  1849. out:
  1850. ieee80211_queue_delayed_work(hw, &sc->tx_complete_work, 0);
  1851. mutex_unlock(&sc->mutex);
  1852. ath9k_ps_restore(sc);
  1853. }
  1854. static bool ath9k_tx_frames_pending(struct ieee80211_hw *hw)
  1855. {
  1856. struct ath_softc *sc = hw->priv;
  1857. int i;
  1858. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
  1859. if (!ATH_TXQ_SETUP(sc, i))
  1860. continue;
  1861. if (ath9k_has_pending_frames(sc, &sc->tx.txq[i]))
  1862. return true;
  1863. }
  1864. return false;
  1865. }
  1866. struct ieee80211_ops ath9k_ops = {
  1867. .tx = ath9k_tx,
  1868. .start = ath9k_start,
  1869. .stop = ath9k_stop,
  1870. .add_interface = ath9k_add_interface,
  1871. .change_interface = ath9k_change_interface,
  1872. .remove_interface = ath9k_remove_interface,
  1873. .config = ath9k_config,
  1874. .configure_filter = ath9k_configure_filter,
  1875. .sta_add = ath9k_sta_add,
  1876. .sta_remove = ath9k_sta_remove,
  1877. .sta_notify = ath9k_sta_notify,
  1878. .conf_tx = ath9k_conf_tx,
  1879. .bss_info_changed = ath9k_bss_info_changed,
  1880. .set_key = ath9k_set_key,
  1881. .get_tsf = ath9k_get_tsf,
  1882. .set_tsf = ath9k_set_tsf,
  1883. .reset_tsf = ath9k_reset_tsf,
  1884. .ampdu_action = ath9k_ampdu_action,
  1885. .get_survey = ath9k_get_survey,
  1886. .rfkill_poll = ath9k_rfkill_poll_state,
  1887. .set_coverage_class = ath9k_set_coverage_class,
  1888. .flush = ath9k_flush,
  1889. .tx_frames_pending = ath9k_tx_frames_pending,
  1890. };