xmit.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  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 "ath9k.h"
  17. #define BITS_PER_BYTE 8
  18. #define OFDM_PLCP_BITS 22
  19. #define HT_RC_2_MCS(_rc) ((_rc) & 0x0f)
  20. #define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1)
  21. #define L_STF 8
  22. #define L_LTF 8
  23. #define L_SIG 4
  24. #define HT_SIG 8
  25. #define HT_STF 4
  26. #define HT_LTF(_ns) (4 * (_ns))
  27. #define SYMBOL_TIME(_ns) ((_ns) << 2) /* ns * 4 us */
  28. #define SYMBOL_TIME_HALFGI(_ns) (((_ns) * 18 + 4) / 5) /* ns * 3.6 us */
  29. #define NUM_SYMBOLS_PER_USEC(_usec) (_usec >> 2)
  30. #define NUM_SYMBOLS_PER_USEC_HALFGI(_usec) (((_usec*5)-4)/18)
  31. #define OFDM_SIFS_TIME 16
  32. static u32 bits_per_symbol[][2] = {
  33. /* 20MHz 40MHz */
  34. { 26, 54 }, /* 0: BPSK */
  35. { 52, 108 }, /* 1: QPSK 1/2 */
  36. { 78, 162 }, /* 2: QPSK 3/4 */
  37. { 104, 216 }, /* 3: 16-QAM 1/2 */
  38. { 156, 324 }, /* 4: 16-QAM 3/4 */
  39. { 208, 432 }, /* 5: 64-QAM 2/3 */
  40. { 234, 486 }, /* 6: 64-QAM 3/4 */
  41. { 260, 540 }, /* 7: 64-QAM 5/6 */
  42. { 52, 108 }, /* 8: BPSK */
  43. { 104, 216 }, /* 9: QPSK 1/2 */
  44. { 156, 324 }, /* 10: QPSK 3/4 */
  45. { 208, 432 }, /* 11: 16-QAM 1/2 */
  46. { 312, 648 }, /* 12: 16-QAM 3/4 */
  47. { 416, 864 }, /* 13: 64-QAM 2/3 */
  48. { 468, 972 }, /* 14: 64-QAM 3/4 */
  49. { 520, 1080 }, /* 15: 64-QAM 5/6 */
  50. };
  51. #define IS_HT_RATE(_rate) ((_rate) & 0x80)
  52. static void ath_tx_send_ht_normal(struct ath_softc *sc, struct ath_txq *txq,
  53. struct ath_atx_tid *tid,
  54. struct list_head *bf_head);
  55. static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
  56. struct list_head *bf_q,
  57. int txok, int sendbar);
  58. static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
  59. struct list_head *head);
  60. static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf);
  61. static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf,
  62. int txok);
  63. static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds,
  64. int nbad, int txok, bool update_rc);
  65. /*********************/
  66. /* Aggregation logic */
  67. /*********************/
  68. static int ath_aggr_query(struct ath_softc *sc, struct ath_node *an, u8 tidno)
  69. {
  70. struct ath_atx_tid *tid;
  71. tid = ATH_AN_2_TID(an, tidno);
  72. if (tid->state & AGGR_ADDBA_COMPLETE ||
  73. tid->state & AGGR_ADDBA_PROGRESS)
  74. return 1;
  75. else
  76. return 0;
  77. }
  78. static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid)
  79. {
  80. struct ath_atx_ac *ac = tid->ac;
  81. if (tid->paused)
  82. return;
  83. if (tid->sched)
  84. return;
  85. tid->sched = true;
  86. list_add_tail(&tid->list, &ac->tid_q);
  87. if (ac->sched)
  88. return;
  89. ac->sched = true;
  90. list_add_tail(&ac->list, &txq->axq_acq);
  91. }
  92. static void ath_tx_pause_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
  93. {
  94. struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
  95. spin_lock_bh(&txq->axq_lock);
  96. tid->paused++;
  97. spin_unlock_bh(&txq->axq_lock);
  98. }
  99. static void ath_tx_resume_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
  100. {
  101. struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
  102. ASSERT(tid->paused > 0);
  103. spin_lock_bh(&txq->axq_lock);
  104. tid->paused--;
  105. if (tid->paused > 0)
  106. goto unlock;
  107. if (list_empty(&tid->buf_q))
  108. goto unlock;
  109. ath_tx_queue_tid(txq, tid);
  110. ath_txq_schedule(sc, txq);
  111. unlock:
  112. spin_unlock_bh(&txq->axq_lock);
  113. }
  114. static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
  115. {
  116. struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
  117. struct ath_buf *bf;
  118. struct list_head bf_head;
  119. INIT_LIST_HEAD(&bf_head);
  120. ASSERT(tid->paused > 0);
  121. spin_lock_bh(&txq->axq_lock);
  122. tid->paused--;
  123. if (tid->paused > 0) {
  124. spin_unlock_bh(&txq->axq_lock);
  125. return;
  126. }
  127. while (!list_empty(&tid->buf_q)) {
  128. bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
  129. ASSERT(!bf_isretried(bf));
  130. list_move_tail(&bf->list, &bf_head);
  131. ath_tx_send_ht_normal(sc, txq, tid, &bf_head);
  132. }
  133. spin_unlock_bh(&txq->axq_lock);
  134. }
  135. static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
  136. int seqno)
  137. {
  138. int index, cindex;
  139. index = ATH_BA_INDEX(tid->seq_start, seqno);
  140. cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
  141. tid->tx_buf[cindex] = NULL;
  142. while (tid->baw_head != tid->baw_tail && !tid->tx_buf[tid->baw_head]) {
  143. INCR(tid->seq_start, IEEE80211_SEQ_MAX);
  144. INCR(tid->baw_head, ATH_TID_MAX_BUFS);
  145. }
  146. }
  147. static void ath_tx_addto_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
  148. struct ath_buf *bf)
  149. {
  150. int index, cindex;
  151. if (bf_isretried(bf))
  152. return;
  153. index = ATH_BA_INDEX(tid->seq_start, bf->bf_seqno);
  154. cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
  155. ASSERT(tid->tx_buf[cindex] == NULL);
  156. tid->tx_buf[cindex] = bf;
  157. if (index >= ((tid->baw_tail - tid->baw_head) &
  158. (ATH_TID_MAX_BUFS - 1))) {
  159. tid->baw_tail = cindex;
  160. INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
  161. }
  162. }
  163. /*
  164. * TODO: For frame(s) that are in the retry state, we will reuse the
  165. * sequence number(s) without setting the retry bit. The
  166. * alternative is to give up on these and BAR the receiver's window
  167. * forward.
  168. */
  169. static void ath_tid_drain(struct ath_softc *sc, struct ath_txq *txq,
  170. struct ath_atx_tid *tid)
  171. {
  172. struct ath_buf *bf;
  173. struct list_head bf_head;
  174. INIT_LIST_HEAD(&bf_head);
  175. for (;;) {
  176. if (list_empty(&tid->buf_q))
  177. break;
  178. bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
  179. list_move_tail(&bf->list, &bf_head);
  180. if (bf_isretried(bf))
  181. ath_tx_update_baw(sc, tid, bf->bf_seqno);
  182. spin_unlock(&txq->axq_lock);
  183. ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
  184. spin_lock(&txq->axq_lock);
  185. }
  186. tid->seq_next = tid->seq_start;
  187. tid->baw_tail = tid->baw_head;
  188. }
  189. static void ath_tx_set_retry(struct ath_softc *sc, struct ath_buf *bf)
  190. {
  191. struct sk_buff *skb;
  192. struct ieee80211_hdr *hdr;
  193. bf->bf_state.bf_type |= BUF_RETRY;
  194. bf->bf_retries++;
  195. skb = bf->bf_mpdu;
  196. hdr = (struct ieee80211_hdr *)skb->data;
  197. hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
  198. }
  199. static struct ath_buf* ath_clone_txbuf(struct ath_softc *sc, struct ath_buf *bf)
  200. {
  201. struct ath_buf *tbf;
  202. spin_lock_bh(&sc->tx.txbuflock);
  203. ASSERT(!list_empty((&sc->tx.txbuf)));
  204. tbf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
  205. list_del(&tbf->list);
  206. spin_unlock_bh(&sc->tx.txbuflock);
  207. ATH_TXBUF_RESET(tbf);
  208. tbf->bf_mpdu = bf->bf_mpdu;
  209. tbf->bf_buf_addr = bf->bf_buf_addr;
  210. *(tbf->bf_desc) = *(bf->bf_desc);
  211. tbf->bf_state = bf->bf_state;
  212. tbf->bf_dmacontext = bf->bf_dmacontext;
  213. return tbf;
  214. }
  215. static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq,
  216. struct ath_buf *bf, struct list_head *bf_q,
  217. int txok)
  218. {
  219. struct ath_node *an = NULL;
  220. struct sk_buff *skb;
  221. struct ieee80211_sta *sta;
  222. struct ieee80211_hdr *hdr;
  223. struct ath_atx_tid *tid = NULL;
  224. struct ath_buf *bf_next, *bf_last = bf->bf_lastbf;
  225. struct ath_desc *ds = bf_last->bf_desc;
  226. struct list_head bf_head, bf_pending;
  227. u16 seq_st = 0, acked_cnt = 0, txfail_cnt = 0;
  228. u32 ba[WME_BA_BMP_SIZE >> 5];
  229. int isaggr, txfail, txpending, sendbar = 0, needreset = 0, nbad = 0;
  230. bool rc_update = true;
  231. skb = bf->bf_mpdu;
  232. hdr = (struct ieee80211_hdr *)skb->data;
  233. rcu_read_lock();
  234. sta = ieee80211_find_sta(sc->hw, hdr->addr1);
  235. if (!sta) {
  236. rcu_read_unlock();
  237. return;
  238. }
  239. an = (struct ath_node *)sta->drv_priv;
  240. tid = ATH_AN_2_TID(an, bf->bf_tidno);
  241. isaggr = bf_isaggr(bf);
  242. memset(ba, 0, WME_BA_BMP_SIZE >> 3);
  243. if (isaggr && txok) {
  244. if (ATH_DS_TX_BA(ds)) {
  245. seq_st = ATH_DS_BA_SEQ(ds);
  246. memcpy(ba, ATH_DS_BA_BITMAP(ds),
  247. WME_BA_BMP_SIZE >> 3);
  248. } else {
  249. /*
  250. * AR5416 can become deaf/mute when BA
  251. * issue happens. Chip needs to be reset.
  252. * But AP code may have sychronization issues
  253. * when perform internal reset in this routine.
  254. * Only enable reset in STA mode for now.
  255. */
  256. if (sc->sc_ah->opmode == NL80211_IFTYPE_STATION)
  257. needreset = 1;
  258. }
  259. }
  260. INIT_LIST_HEAD(&bf_pending);
  261. INIT_LIST_HEAD(&bf_head);
  262. nbad = ath_tx_num_badfrms(sc, bf, txok);
  263. while (bf) {
  264. txfail = txpending = 0;
  265. bf_next = bf->bf_next;
  266. if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, bf->bf_seqno))) {
  267. /* transmit completion, subframe is
  268. * acked by block ack */
  269. acked_cnt++;
  270. } else if (!isaggr && txok) {
  271. /* transmit completion */
  272. acked_cnt++;
  273. } else {
  274. if (!(tid->state & AGGR_CLEANUP) &&
  275. ds->ds_txstat.ts_flags != ATH9K_TX_SW_ABORTED) {
  276. if (bf->bf_retries < ATH_MAX_SW_RETRIES) {
  277. ath_tx_set_retry(sc, bf);
  278. txpending = 1;
  279. } else {
  280. bf->bf_state.bf_type |= BUF_XRETRY;
  281. txfail = 1;
  282. sendbar = 1;
  283. txfail_cnt++;
  284. }
  285. } else {
  286. /*
  287. * cleanup in progress, just fail
  288. * the un-acked sub-frames
  289. */
  290. txfail = 1;
  291. }
  292. }
  293. if (bf_next == NULL) {
  294. INIT_LIST_HEAD(&bf_head);
  295. } else {
  296. ASSERT(!list_empty(bf_q));
  297. list_move_tail(&bf->list, &bf_head);
  298. }
  299. if (!txpending) {
  300. /*
  301. * complete the acked-ones/xretried ones; update
  302. * block-ack window
  303. */
  304. spin_lock_bh(&txq->axq_lock);
  305. ath_tx_update_baw(sc, tid, bf->bf_seqno);
  306. spin_unlock_bh(&txq->axq_lock);
  307. if (rc_update && (acked_cnt == 1 || txfail_cnt == 1)) {
  308. ath_tx_rc_status(bf, ds, nbad, txok, true);
  309. rc_update = false;
  310. } else {
  311. ath_tx_rc_status(bf, ds, nbad, txok, false);
  312. }
  313. ath_tx_complete_buf(sc, bf, &bf_head, !txfail, sendbar);
  314. } else {
  315. /* retry the un-acked ones */
  316. if (bf->bf_next == NULL && bf_last->bf_stale) {
  317. struct ath_buf *tbf;
  318. tbf = ath_clone_txbuf(sc, bf_last);
  319. ath9k_hw_cleartxdesc(sc->sc_ah, tbf->bf_desc);
  320. list_add_tail(&tbf->list, &bf_head);
  321. } else {
  322. /*
  323. * Clear descriptor status words for
  324. * software retry
  325. */
  326. ath9k_hw_cleartxdesc(sc->sc_ah, bf->bf_desc);
  327. }
  328. /*
  329. * Put this buffer to the temporary pending
  330. * queue to retain ordering
  331. */
  332. list_splice_tail_init(&bf_head, &bf_pending);
  333. }
  334. bf = bf_next;
  335. }
  336. if (tid->state & AGGR_CLEANUP) {
  337. if (tid->baw_head == tid->baw_tail) {
  338. tid->state &= ~AGGR_ADDBA_COMPLETE;
  339. tid->addba_exchangeattempts = 0;
  340. tid->state &= ~AGGR_CLEANUP;
  341. /* send buffered frames as singles */
  342. ath_tx_flush_tid(sc, tid);
  343. }
  344. rcu_read_unlock();
  345. return;
  346. }
  347. /* prepend un-acked frames to the beginning of the pending frame queue */
  348. if (!list_empty(&bf_pending)) {
  349. spin_lock_bh(&txq->axq_lock);
  350. list_splice(&bf_pending, &tid->buf_q);
  351. ath_tx_queue_tid(txq, tid);
  352. spin_unlock_bh(&txq->axq_lock);
  353. }
  354. rcu_read_unlock();
  355. if (needreset)
  356. ath_reset(sc, false);
  357. }
  358. static u32 ath_lookup_rate(struct ath_softc *sc, struct ath_buf *bf,
  359. struct ath_atx_tid *tid)
  360. {
  361. const struct ath_rate_table *rate_table = sc->cur_rate_table;
  362. struct sk_buff *skb;
  363. struct ieee80211_tx_info *tx_info;
  364. struct ieee80211_tx_rate *rates;
  365. struct ath_tx_info_priv *tx_info_priv;
  366. u32 max_4ms_framelen, frmlen;
  367. u16 aggr_limit, legacy = 0, maxampdu;
  368. int i;
  369. skb = bf->bf_mpdu;
  370. tx_info = IEEE80211_SKB_CB(skb);
  371. rates = tx_info->control.rates;
  372. tx_info_priv = (struct ath_tx_info_priv *)tx_info->rate_driver_data[0];
  373. /*
  374. * Find the lowest frame length among the rate series that will have a
  375. * 4ms transmit duration.
  376. * TODO - TXOP limit needs to be considered.
  377. */
  378. max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
  379. for (i = 0; i < 4; i++) {
  380. if (rates[i].count) {
  381. if (!WLAN_RC_PHY_HT(rate_table->info[rates[i].idx].phy)) {
  382. legacy = 1;
  383. break;
  384. }
  385. frmlen = rate_table->info[rates[i].idx].max_4ms_framelen;
  386. max_4ms_framelen = min(max_4ms_framelen, frmlen);
  387. }
  388. }
  389. /*
  390. * limit aggregate size by the minimum rate if rate selected is
  391. * not a probe rate, if rate selected is a probe rate then
  392. * avoid aggregation of this packet.
  393. */
  394. if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
  395. return 0;
  396. aggr_limit = min(max_4ms_framelen, (u32)ATH_AMPDU_LIMIT_DEFAULT);
  397. /*
  398. * h/w can accept aggregates upto 16 bit lengths (65535).
  399. * The IE, however can hold upto 65536, which shows up here
  400. * as zero. Ignore 65536 since we are constrained by hw.
  401. */
  402. maxampdu = tid->an->maxampdu;
  403. if (maxampdu)
  404. aggr_limit = min(aggr_limit, maxampdu);
  405. return aggr_limit;
  406. }
  407. /*
  408. * Returns the number of delimiters to be added to
  409. * meet the minimum required mpdudensity.
  410. * caller should make sure that the rate is HT rate .
  411. */
  412. static int ath_compute_num_delims(struct ath_softc *sc, struct ath_atx_tid *tid,
  413. struct ath_buf *bf, u16 frmlen)
  414. {
  415. const struct ath_rate_table *rt = sc->cur_rate_table;
  416. struct sk_buff *skb = bf->bf_mpdu;
  417. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  418. u32 nsymbits, nsymbols, mpdudensity;
  419. u16 minlen;
  420. u8 rc, flags, rix;
  421. int width, half_gi, ndelim, mindelim;
  422. /* Select standard number of delimiters based on frame length alone */
  423. ndelim = ATH_AGGR_GET_NDELIM(frmlen);
  424. /*
  425. * If encryption enabled, hardware requires some more padding between
  426. * subframes.
  427. * TODO - this could be improved to be dependent on the rate.
  428. * The hardware can keep up at lower rates, but not higher rates
  429. */
  430. if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR)
  431. ndelim += ATH_AGGR_ENCRYPTDELIM;
  432. /*
  433. * Convert desired mpdu density from microeconds to bytes based
  434. * on highest rate in rate series (i.e. first rate) to determine
  435. * required minimum length for subframe. Take into account
  436. * whether high rate is 20 or 40Mhz and half or full GI.
  437. */
  438. mpdudensity = tid->an->mpdudensity;
  439. /*
  440. * If there is no mpdu density restriction, no further calculation
  441. * is needed.
  442. */
  443. if (mpdudensity == 0)
  444. return ndelim;
  445. rix = tx_info->control.rates[0].idx;
  446. flags = tx_info->control.rates[0].flags;
  447. rc = rt->info[rix].ratecode;
  448. width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0;
  449. half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0;
  450. if (half_gi)
  451. nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(mpdudensity);
  452. else
  453. nsymbols = NUM_SYMBOLS_PER_USEC(mpdudensity);
  454. if (nsymbols == 0)
  455. nsymbols = 1;
  456. nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
  457. minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
  458. if (frmlen < minlen) {
  459. mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
  460. ndelim = max(mindelim, ndelim);
  461. }
  462. return ndelim;
  463. }
  464. static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc,
  465. struct ath_atx_tid *tid,
  466. struct list_head *bf_q)
  467. {
  468. #define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
  469. struct ath_buf *bf, *bf_first, *bf_prev = NULL;
  470. int rl = 0, nframes = 0, ndelim, prev_al = 0;
  471. u16 aggr_limit = 0, al = 0, bpad = 0,
  472. al_delta, h_baw = tid->baw_size / 2;
  473. enum ATH_AGGR_STATUS status = ATH_AGGR_DONE;
  474. bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list);
  475. do {
  476. bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
  477. /* do not step over block-ack window */
  478. if (!BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno)) {
  479. status = ATH_AGGR_BAW_CLOSED;
  480. break;
  481. }
  482. if (!rl) {
  483. aggr_limit = ath_lookup_rate(sc, bf, tid);
  484. rl = 1;
  485. }
  486. /* do not exceed aggregation limit */
  487. al_delta = ATH_AGGR_DELIM_SZ + bf->bf_frmlen;
  488. if (nframes &&
  489. (aggr_limit < (al + bpad + al_delta + prev_al))) {
  490. status = ATH_AGGR_LIMITED;
  491. break;
  492. }
  493. /* do not exceed subframe limit */
  494. if (nframes >= min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) {
  495. status = ATH_AGGR_LIMITED;
  496. break;
  497. }
  498. nframes++;
  499. /* add padding for previous frame to aggregation length */
  500. al += bpad + al_delta;
  501. /*
  502. * Get the delimiters needed to meet the MPDU
  503. * density for this node.
  504. */
  505. ndelim = ath_compute_num_delims(sc, tid, bf_first, bf->bf_frmlen);
  506. bpad = PADBYTES(al_delta) + (ndelim << 2);
  507. bf->bf_next = NULL;
  508. bf->bf_desc->ds_link = 0;
  509. /* link buffers of this frame to the aggregate */
  510. ath_tx_addto_baw(sc, tid, bf);
  511. ath9k_hw_set11n_aggr_middle(sc->sc_ah, bf->bf_desc, ndelim);
  512. list_move_tail(&bf->list, bf_q);
  513. if (bf_prev) {
  514. bf_prev->bf_next = bf;
  515. bf_prev->bf_desc->ds_link = bf->bf_daddr;
  516. }
  517. bf_prev = bf;
  518. } while (!list_empty(&tid->buf_q));
  519. bf_first->bf_al = al;
  520. bf_first->bf_nframes = nframes;
  521. return status;
  522. #undef PADBYTES
  523. }
  524. static void ath_tx_sched_aggr(struct ath_softc *sc, struct ath_txq *txq,
  525. struct ath_atx_tid *tid)
  526. {
  527. struct ath_buf *bf;
  528. enum ATH_AGGR_STATUS status;
  529. struct list_head bf_q;
  530. do {
  531. if (list_empty(&tid->buf_q))
  532. return;
  533. INIT_LIST_HEAD(&bf_q);
  534. status = ath_tx_form_aggr(sc, tid, &bf_q);
  535. /*
  536. * no frames picked up to be aggregated;
  537. * block-ack window is not open.
  538. */
  539. if (list_empty(&bf_q))
  540. break;
  541. bf = list_first_entry(&bf_q, struct ath_buf, list);
  542. bf->bf_lastbf = list_entry(bf_q.prev, struct ath_buf, list);
  543. /* if only one frame, send as non-aggregate */
  544. if (bf->bf_nframes == 1) {
  545. bf->bf_state.bf_type &= ~BUF_AGGR;
  546. ath9k_hw_clr11n_aggr(sc->sc_ah, bf->bf_desc);
  547. ath_buf_set_rate(sc, bf);
  548. ath_tx_txqaddbuf(sc, txq, &bf_q);
  549. continue;
  550. }
  551. /* setup first desc of aggregate */
  552. bf->bf_state.bf_type |= BUF_AGGR;
  553. ath_buf_set_rate(sc, bf);
  554. ath9k_hw_set11n_aggr_first(sc->sc_ah, bf->bf_desc, bf->bf_al);
  555. /* anchor last desc of aggregate */
  556. ath9k_hw_set11n_aggr_last(sc->sc_ah, bf->bf_lastbf->bf_desc);
  557. txq->axq_aggr_depth++;
  558. ath_tx_txqaddbuf(sc, txq, &bf_q);
  559. } while (txq->axq_depth < ATH_AGGR_MIN_QDEPTH &&
  560. status != ATH_AGGR_BAW_CLOSED);
  561. }
  562. int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
  563. u16 tid, u16 *ssn)
  564. {
  565. struct ath_atx_tid *txtid;
  566. struct ath_node *an;
  567. an = (struct ath_node *)sta->drv_priv;
  568. if (sc->sc_flags & SC_OP_TXAGGR) {
  569. txtid = ATH_AN_2_TID(an, tid);
  570. txtid->state |= AGGR_ADDBA_PROGRESS;
  571. ath_tx_pause_tid(sc, txtid);
  572. *ssn = txtid->seq_start;
  573. }
  574. return 0;
  575. }
  576. int ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
  577. {
  578. struct ath_node *an = (struct ath_node *)sta->drv_priv;
  579. struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
  580. struct ath_txq *txq = &sc->tx.txq[txtid->ac->qnum];
  581. struct ath_buf *bf;
  582. struct list_head bf_head;
  583. INIT_LIST_HEAD(&bf_head);
  584. if (txtid->state & AGGR_CLEANUP)
  585. return 0;
  586. if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
  587. txtid->addba_exchangeattempts = 0;
  588. return 0;
  589. }
  590. ath_tx_pause_tid(sc, txtid);
  591. /* drop all software retried frames and mark this TID */
  592. spin_lock_bh(&txq->axq_lock);
  593. while (!list_empty(&txtid->buf_q)) {
  594. bf = list_first_entry(&txtid->buf_q, struct ath_buf, list);
  595. if (!bf_isretried(bf)) {
  596. /*
  597. * NB: it's based on the assumption that
  598. * software retried frame will always stay
  599. * at the head of software queue.
  600. */
  601. break;
  602. }
  603. list_move_tail(&bf->list, &bf_head);
  604. ath_tx_update_baw(sc, txtid, bf->bf_seqno);
  605. ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
  606. }
  607. spin_unlock_bh(&txq->axq_lock);
  608. if (txtid->baw_head != txtid->baw_tail) {
  609. txtid->state |= AGGR_CLEANUP;
  610. } else {
  611. txtid->state &= ~AGGR_ADDBA_COMPLETE;
  612. txtid->addba_exchangeattempts = 0;
  613. ath_tx_flush_tid(sc, txtid);
  614. }
  615. return 0;
  616. }
  617. void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
  618. {
  619. struct ath_atx_tid *txtid;
  620. struct ath_node *an;
  621. an = (struct ath_node *)sta->drv_priv;
  622. if (sc->sc_flags & SC_OP_TXAGGR) {
  623. txtid = ATH_AN_2_TID(an, tid);
  624. txtid->baw_size =
  625. IEEE80211_MIN_AMPDU_BUF << sta->ht_cap.ampdu_factor;
  626. txtid->state |= AGGR_ADDBA_COMPLETE;
  627. txtid->state &= ~AGGR_ADDBA_PROGRESS;
  628. ath_tx_resume_tid(sc, txtid);
  629. }
  630. }
  631. bool ath_tx_aggr_check(struct ath_softc *sc, struct ath_node *an, u8 tidno)
  632. {
  633. struct ath_atx_tid *txtid;
  634. if (!(sc->sc_flags & SC_OP_TXAGGR))
  635. return false;
  636. txtid = ATH_AN_2_TID(an, tidno);
  637. if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
  638. if (!(txtid->state & AGGR_ADDBA_PROGRESS) &&
  639. (txtid->addba_exchangeattempts < ADDBA_EXCHANGE_ATTEMPTS)) {
  640. txtid->addba_exchangeattempts++;
  641. return true;
  642. }
  643. }
  644. return false;
  645. }
  646. /********************/
  647. /* Queue Management */
  648. /********************/
  649. static void ath_txq_drain_pending_buffers(struct ath_softc *sc,
  650. struct ath_txq *txq)
  651. {
  652. struct ath_atx_ac *ac, *ac_tmp;
  653. struct ath_atx_tid *tid, *tid_tmp;
  654. list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) {
  655. list_del(&ac->list);
  656. ac->sched = false;
  657. list_for_each_entry_safe(tid, tid_tmp, &ac->tid_q, list) {
  658. list_del(&tid->list);
  659. tid->sched = false;
  660. ath_tid_drain(sc, txq, tid);
  661. }
  662. }
  663. }
  664. struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
  665. {
  666. struct ath_hw *ah = sc->sc_ah;
  667. struct ath9k_tx_queue_info qi;
  668. int qnum;
  669. memset(&qi, 0, sizeof(qi));
  670. qi.tqi_subtype = subtype;
  671. qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
  672. qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
  673. qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
  674. qi.tqi_physCompBuf = 0;
  675. /*
  676. * Enable interrupts only for EOL and DESC conditions.
  677. * We mark tx descriptors to receive a DESC interrupt
  678. * when a tx queue gets deep; otherwise waiting for the
  679. * EOL to reap descriptors. Note that this is done to
  680. * reduce interrupt load and this only defers reaping
  681. * descriptors, never transmitting frames. Aside from
  682. * reducing interrupts this also permits more concurrency.
  683. * The only potential downside is if the tx queue backs
  684. * up in which case the top half of the kernel may backup
  685. * due to a lack of tx descriptors.
  686. *
  687. * The UAPSD queue is an exception, since we take a desc-
  688. * based intr on the EOSP frames.
  689. */
  690. if (qtype == ATH9K_TX_QUEUE_UAPSD)
  691. qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
  692. else
  693. qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
  694. TXQ_FLAG_TXDESCINT_ENABLE;
  695. qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
  696. if (qnum == -1) {
  697. /*
  698. * NB: don't print a message, this happens
  699. * normally on parts with too few tx queues
  700. */
  701. return NULL;
  702. }
  703. if (qnum >= ARRAY_SIZE(sc->tx.txq)) {
  704. DPRINTF(sc, ATH_DBG_FATAL,
  705. "qnum %u out of range, max %u!\n",
  706. qnum, (unsigned int)ARRAY_SIZE(sc->tx.txq));
  707. ath9k_hw_releasetxqueue(ah, qnum);
  708. return NULL;
  709. }
  710. if (!ATH_TXQ_SETUP(sc, qnum)) {
  711. struct ath_txq *txq = &sc->tx.txq[qnum];
  712. txq->axq_qnum = qnum;
  713. txq->axq_link = NULL;
  714. INIT_LIST_HEAD(&txq->axq_q);
  715. INIT_LIST_HEAD(&txq->axq_acq);
  716. spin_lock_init(&txq->axq_lock);
  717. txq->axq_depth = 0;
  718. txq->axq_aggr_depth = 0;
  719. txq->axq_totalqueued = 0;
  720. txq->axq_linkbuf = NULL;
  721. sc->tx.txqsetup |= 1<<qnum;
  722. }
  723. return &sc->tx.txq[qnum];
  724. }
  725. static int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype)
  726. {
  727. int qnum;
  728. switch (qtype) {
  729. case ATH9K_TX_QUEUE_DATA:
  730. if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
  731. DPRINTF(sc, ATH_DBG_FATAL,
  732. "HAL AC %u out of range, max %zu!\n",
  733. haltype, ARRAY_SIZE(sc->tx.hwq_map));
  734. return -1;
  735. }
  736. qnum = sc->tx.hwq_map[haltype];
  737. break;
  738. case ATH9K_TX_QUEUE_BEACON:
  739. qnum = sc->beacon.beaconq;
  740. break;
  741. case ATH9K_TX_QUEUE_CAB:
  742. qnum = sc->beacon.cabq->axq_qnum;
  743. break;
  744. default:
  745. qnum = -1;
  746. }
  747. return qnum;
  748. }
  749. struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb)
  750. {
  751. struct ath_txq *txq = NULL;
  752. int qnum;
  753. qnum = ath_get_hal_qnum(skb_get_queue_mapping(skb), sc);
  754. txq = &sc->tx.txq[qnum];
  755. spin_lock_bh(&txq->axq_lock);
  756. if (txq->axq_depth >= (ATH_TXBUF - 20)) {
  757. DPRINTF(sc, ATH_DBG_XMIT,
  758. "TX queue: %d is full, depth: %d\n",
  759. qnum, txq->axq_depth);
  760. ieee80211_stop_queue(sc->hw, skb_get_queue_mapping(skb));
  761. txq->stopped = 1;
  762. spin_unlock_bh(&txq->axq_lock);
  763. return NULL;
  764. }
  765. spin_unlock_bh(&txq->axq_lock);
  766. return txq;
  767. }
  768. int ath_txq_update(struct ath_softc *sc, int qnum,
  769. struct ath9k_tx_queue_info *qinfo)
  770. {
  771. struct ath_hw *ah = sc->sc_ah;
  772. int error = 0;
  773. struct ath9k_tx_queue_info qi;
  774. if (qnum == sc->beacon.beaconq) {
  775. /*
  776. * XXX: for beacon queue, we just save the parameter.
  777. * It will be picked up by ath_beaconq_config when
  778. * it's necessary.
  779. */
  780. sc->beacon.beacon_qi = *qinfo;
  781. return 0;
  782. }
  783. ASSERT(sc->tx.txq[qnum].axq_qnum == qnum);
  784. ath9k_hw_get_txq_props(ah, qnum, &qi);
  785. qi.tqi_aifs = qinfo->tqi_aifs;
  786. qi.tqi_cwmin = qinfo->tqi_cwmin;
  787. qi.tqi_cwmax = qinfo->tqi_cwmax;
  788. qi.tqi_burstTime = qinfo->tqi_burstTime;
  789. qi.tqi_readyTime = qinfo->tqi_readyTime;
  790. if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
  791. DPRINTF(sc, ATH_DBG_FATAL,
  792. "Unable to update hardware queue %u!\n", qnum);
  793. error = -EIO;
  794. } else {
  795. ath9k_hw_resettxqueue(ah, qnum);
  796. }
  797. return error;
  798. }
  799. int ath_cabq_update(struct ath_softc *sc)
  800. {
  801. struct ath9k_tx_queue_info qi;
  802. int qnum = sc->beacon.cabq->axq_qnum;
  803. ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
  804. /*
  805. * Ensure the readytime % is within the bounds.
  806. */
  807. if (sc->config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND)
  808. sc->config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND;
  809. else if (sc->config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND)
  810. sc->config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND;
  811. qi.tqi_readyTime = (sc->beacon_interval *
  812. sc->config.cabqReadytime) / 100;
  813. ath_txq_update(sc, qnum, &qi);
  814. return 0;
  815. }
  816. /*
  817. * Drain a given TX queue (could be Beacon or Data)
  818. *
  819. * This assumes output has been stopped and
  820. * we do not need to block ath_tx_tasklet.
  821. */
  822. void ath_draintxq(struct ath_softc *sc, struct ath_txq *txq, bool retry_tx)
  823. {
  824. struct ath_buf *bf, *lastbf;
  825. struct list_head bf_head;
  826. INIT_LIST_HEAD(&bf_head);
  827. for (;;) {
  828. spin_lock_bh(&txq->axq_lock);
  829. if (list_empty(&txq->axq_q)) {
  830. txq->axq_link = NULL;
  831. txq->axq_linkbuf = NULL;
  832. spin_unlock_bh(&txq->axq_lock);
  833. break;
  834. }
  835. bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
  836. if (bf->bf_stale) {
  837. list_del(&bf->list);
  838. spin_unlock_bh(&txq->axq_lock);
  839. spin_lock_bh(&sc->tx.txbuflock);
  840. list_add_tail(&bf->list, &sc->tx.txbuf);
  841. spin_unlock_bh(&sc->tx.txbuflock);
  842. continue;
  843. }
  844. lastbf = bf->bf_lastbf;
  845. if (!retry_tx)
  846. lastbf->bf_desc->ds_txstat.ts_flags =
  847. ATH9K_TX_SW_ABORTED;
  848. /* remove ath_buf's of the same mpdu from txq */
  849. list_cut_position(&bf_head, &txq->axq_q, &lastbf->list);
  850. txq->axq_depth--;
  851. spin_unlock_bh(&txq->axq_lock);
  852. if (bf_isampdu(bf))
  853. ath_tx_complete_aggr(sc, txq, bf, &bf_head, 0);
  854. else
  855. ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
  856. }
  857. /* flush any pending frames if aggregation is enabled */
  858. if (sc->sc_flags & SC_OP_TXAGGR) {
  859. if (!retry_tx) {
  860. spin_lock_bh(&txq->axq_lock);
  861. ath_txq_drain_pending_buffers(sc, txq);
  862. spin_unlock_bh(&txq->axq_lock);
  863. }
  864. }
  865. }
  866. void ath_drain_all_txq(struct ath_softc *sc, bool retry_tx)
  867. {
  868. struct ath_hw *ah = sc->sc_ah;
  869. struct ath_txq *txq;
  870. int i, npend = 0;
  871. if (sc->sc_flags & SC_OP_INVALID)
  872. return;
  873. /* Stop beacon queue */
  874. ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
  875. /* Stop data queues */
  876. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
  877. if (ATH_TXQ_SETUP(sc, i)) {
  878. txq = &sc->tx.txq[i];
  879. ath9k_hw_stoptxdma(ah, txq->axq_qnum);
  880. npend += ath9k_hw_numtxpending(ah, txq->axq_qnum);
  881. }
  882. }
  883. if (npend) {
  884. int r;
  885. DPRINTF(sc, ATH_DBG_XMIT, "Unable to stop TxDMA. Reset HAL!\n");
  886. spin_lock_bh(&sc->sc_resetlock);
  887. r = ath9k_hw_reset(ah, sc->sc_ah->curchan, true);
  888. if (r)
  889. DPRINTF(sc, ATH_DBG_FATAL,
  890. "Unable to reset hardware; reset status %u\n",
  891. r);
  892. spin_unlock_bh(&sc->sc_resetlock);
  893. }
  894. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
  895. if (ATH_TXQ_SETUP(sc, i))
  896. ath_draintxq(sc, &sc->tx.txq[i], retry_tx);
  897. }
  898. }
  899. void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
  900. {
  901. ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
  902. sc->tx.txqsetup &= ~(1<<txq->axq_qnum);
  903. }
  904. void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
  905. {
  906. struct ath_atx_ac *ac;
  907. struct ath_atx_tid *tid;
  908. if (list_empty(&txq->axq_acq))
  909. return;
  910. ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list);
  911. list_del(&ac->list);
  912. ac->sched = false;
  913. do {
  914. if (list_empty(&ac->tid_q))
  915. return;
  916. tid = list_first_entry(&ac->tid_q, struct ath_atx_tid, list);
  917. list_del(&tid->list);
  918. tid->sched = false;
  919. if (tid->paused)
  920. continue;
  921. if ((txq->axq_depth % 2) == 0)
  922. ath_tx_sched_aggr(sc, txq, tid);
  923. /*
  924. * add tid to round-robin queue if more frames
  925. * are pending for the tid
  926. */
  927. if (!list_empty(&tid->buf_q))
  928. ath_tx_queue_tid(txq, tid);
  929. break;
  930. } while (!list_empty(&ac->tid_q));
  931. if (!list_empty(&ac->tid_q)) {
  932. if (!ac->sched) {
  933. ac->sched = true;
  934. list_add_tail(&ac->list, &txq->axq_acq);
  935. }
  936. }
  937. }
  938. int ath_tx_setup(struct ath_softc *sc, int haltype)
  939. {
  940. struct ath_txq *txq;
  941. if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
  942. DPRINTF(sc, ATH_DBG_FATAL,
  943. "HAL AC %u out of range, max %zu!\n",
  944. haltype, ARRAY_SIZE(sc->tx.hwq_map));
  945. return 0;
  946. }
  947. txq = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, haltype);
  948. if (txq != NULL) {
  949. sc->tx.hwq_map[haltype] = txq->axq_qnum;
  950. return 1;
  951. } else
  952. return 0;
  953. }
  954. /***********/
  955. /* TX, DMA */
  956. /***********/
  957. /*
  958. * Insert a chain of ath_buf (descriptors) on a txq and
  959. * assume the descriptors are already chained together by caller.
  960. */
  961. static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
  962. struct list_head *head)
  963. {
  964. struct ath_hw *ah = sc->sc_ah;
  965. struct ath_buf *bf;
  966. /*
  967. * Insert the frame on the outbound list and
  968. * pass it on to the hardware.
  969. */
  970. if (list_empty(head))
  971. return;
  972. bf = list_first_entry(head, struct ath_buf, list);
  973. list_splice_tail_init(head, &txq->axq_q);
  974. txq->axq_depth++;
  975. txq->axq_totalqueued++;
  976. txq->axq_linkbuf = list_entry(txq->axq_q.prev, struct ath_buf, list);
  977. DPRINTF(sc, ATH_DBG_QUEUE,
  978. "qnum: %d, txq depth: %d\n", txq->axq_qnum, txq->axq_depth);
  979. if (txq->axq_link == NULL) {
  980. ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr);
  981. DPRINTF(sc, ATH_DBG_XMIT,
  982. "TXDP[%u] = %llx (%p)\n",
  983. txq->axq_qnum, ito64(bf->bf_daddr), bf->bf_desc);
  984. } else {
  985. *txq->axq_link = bf->bf_daddr;
  986. DPRINTF(sc, ATH_DBG_XMIT, "link[%u] (%p)=%llx (%p)\n",
  987. txq->axq_qnum, txq->axq_link,
  988. ito64(bf->bf_daddr), bf->bf_desc);
  989. }
  990. txq->axq_link = &(bf->bf_lastbf->bf_desc->ds_link);
  991. ath9k_hw_txstart(ah, txq->axq_qnum);
  992. }
  993. static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc)
  994. {
  995. struct ath_buf *bf = NULL;
  996. spin_lock_bh(&sc->tx.txbuflock);
  997. if (unlikely(list_empty(&sc->tx.txbuf))) {
  998. spin_unlock_bh(&sc->tx.txbuflock);
  999. return NULL;
  1000. }
  1001. bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
  1002. list_del(&bf->list);
  1003. spin_unlock_bh(&sc->tx.txbuflock);
  1004. return bf;
  1005. }
  1006. static void ath_tx_send_ampdu(struct ath_softc *sc, struct ath_atx_tid *tid,
  1007. struct list_head *bf_head,
  1008. struct ath_tx_control *txctl)
  1009. {
  1010. struct ath_buf *bf;
  1011. bf = list_first_entry(bf_head, struct ath_buf, list);
  1012. bf->bf_state.bf_type |= BUF_AMPDU;
  1013. /*
  1014. * Do not queue to h/w when any of the following conditions is true:
  1015. * - there are pending frames in software queue
  1016. * - the TID is currently paused for ADDBA/BAR request
  1017. * - seqno is not within block-ack window
  1018. * - h/w queue depth exceeds low water mark
  1019. */
  1020. if (!list_empty(&tid->buf_q) || tid->paused ||
  1021. !BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno) ||
  1022. txctl->txq->axq_depth >= ATH_AGGR_MIN_QDEPTH) {
  1023. /*
  1024. * Add this frame to software queue for scheduling later
  1025. * for aggregation.
  1026. */
  1027. list_move_tail(&bf->list, &tid->buf_q);
  1028. ath_tx_queue_tid(txctl->txq, tid);
  1029. return;
  1030. }
  1031. /* Add sub-frame to BAW */
  1032. ath_tx_addto_baw(sc, tid, bf);
  1033. /* Queue to h/w without aggregation */
  1034. bf->bf_nframes = 1;
  1035. bf->bf_lastbf = bf;
  1036. ath_buf_set_rate(sc, bf);
  1037. ath_tx_txqaddbuf(sc, txctl->txq, bf_head);
  1038. }
  1039. static void ath_tx_send_ht_normal(struct ath_softc *sc, struct ath_txq *txq,
  1040. struct ath_atx_tid *tid,
  1041. struct list_head *bf_head)
  1042. {
  1043. struct ath_buf *bf;
  1044. bf = list_first_entry(bf_head, struct ath_buf, list);
  1045. bf->bf_state.bf_type &= ~BUF_AMPDU;
  1046. /* update starting sequence number for subsequent ADDBA request */
  1047. INCR(tid->seq_start, IEEE80211_SEQ_MAX);
  1048. bf->bf_nframes = 1;
  1049. bf->bf_lastbf = bf;
  1050. ath_buf_set_rate(sc, bf);
  1051. ath_tx_txqaddbuf(sc, txq, bf_head);
  1052. }
  1053. static void ath_tx_send_normal(struct ath_softc *sc, struct ath_txq *txq,
  1054. struct list_head *bf_head)
  1055. {
  1056. struct ath_buf *bf;
  1057. bf = list_first_entry(bf_head, struct ath_buf, list);
  1058. bf->bf_lastbf = bf;
  1059. bf->bf_nframes = 1;
  1060. ath_buf_set_rate(sc, bf);
  1061. ath_tx_txqaddbuf(sc, txq, bf_head);
  1062. }
  1063. static enum ath9k_pkt_type get_hw_packet_type(struct sk_buff *skb)
  1064. {
  1065. struct ieee80211_hdr *hdr;
  1066. enum ath9k_pkt_type htype;
  1067. __le16 fc;
  1068. hdr = (struct ieee80211_hdr *)skb->data;
  1069. fc = hdr->frame_control;
  1070. if (ieee80211_is_beacon(fc))
  1071. htype = ATH9K_PKT_TYPE_BEACON;
  1072. else if (ieee80211_is_probe_resp(fc))
  1073. htype = ATH9K_PKT_TYPE_PROBE_RESP;
  1074. else if (ieee80211_is_atim(fc))
  1075. htype = ATH9K_PKT_TYPE_ATIM;
  1076. else if (ieee80211_is_pspoll(fc))
  1077. htype = ATH9K_PKT_TYPE_PSPOLL;
  1078. else
  1079. htype = ATH9K_PKT_TYPE_NORMAL;
  1080. return htype;
  1081. }
  1082. static bool is_pae(struct sk_buff *skb)
  1083. {
  1084. struct ieee80211_hdr *hdr;
  1085. __le16 fc;
  1086. hdr = (struct ieee80211_hdr *)skb->data;
  1087. fc = hdr->frame_control;
  1088. if (ieee80211_is_data(fc)) {
  1089. if (ieee80211_is_nullfunc(fc) ||
  1090. /* Port Access Entity (IEEE 802.1X) */
  1091. (skb->protocol == cpu_to_be16(ETH_P_PAE))) {
  1092. return true;
  1093. }
  1094. }
  1095. return false;
  1096. }
  1097. static int get_hw_crypto_keytype(struct sk_buff *skb)
  1098. {
  1099. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1100. if (tx_info->control.hw_key) {
  1101. if (tx_info->control.hw_key->alg == ALG_WEP)
  1102. return ATH9K_KEY_TYPE_WEP;
  1103. else if (tx_info->control.hw_key->alg == ALG_TKIP)
  1104. return ATH9K_KEY_TYPE_TKIP;
  1105. else if (tx_info->control.hw_key->alg == ALG_CCMP)
  1106. return ATH9K_KEY_TYPE_AES;
  1107. }
  1108. return ATH9K_KEY_TYPE_CLEAR;
  1109. }
  1110. static void assign_aggr_tid_seqno(struct sk_buff *skb,
  1111. struct ath_buf *bf)
  1112. {
  1113. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1114. struct ieee80211_hdr *hdr;
  1115. struct ath_node *an;
  1116. struct ath_atx_tid *tid;
  1117. __le16 fc;
  1118. u8 *qc;
  1119. if (!tx_info->control.sta)
  1120. return;
  1121. an = (struct ath_node *)tx_info->control.sta->drv_priv;
  1122. hdr = (struct ieee80211_hdr *)skb->data;
  1123. fc = hdr->frame_control;
  1124. if (ieee80211_is_data_qos(fc)) {
  1125. qc = ieee80211_get_qos_ctl(hdr);
  1126. bf->bf_tidno = qc[0] & 0xf;
  1127. }
  1128. /*
  1129. * For HT capable stations, we save tidno for later use.
  1130. * We also override seqno set by upper layer with the one
  1131. * in tx aggregation state.
  1132. *
  1133. * If fragmentation is on, the sequence number is
  1134. * not overridden, since it has been
  1135. * incremented by the fragmentation routine.
  1136. *
  1137. * FIXME: check if the fragmentation threshold exceeds
  1138. * IEEE80211 max.
  1139. */
  1140. tid = ATH_AN_2_TID(an, bf->bf_tidno);
  1141. hdr->seq_ctrl = cpu_to_le16(tid->seq_next <<
  1142. IEEE80211_SEQ_SEQ_SHIFT);
  1143. bf->bf_seqno = tid->seq_next;
  1144. INCR(tid->seq_next, IEEE80211_SEQ_MAX);
  1145. }
  1146. static int setup_tx_flags(struct ath_softc *sc, struct sk_buff *skb,
  1147. struct ath_txq *txq)
  1148. {
  1149. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1150. int flags = 0;
  1151. flags |= ATH9K_TXDESC_CLRDMASK; /* needed for crypto errors */
  1152. flags |= ATH9K_TXDESC_INTREQ;
  1153. if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
  1154. flags |= ATH9K_TXDESC_NOACK;
  1155. return flags;
  1156. }
  1157. /*
  1158. * rix - rate index
  1159. * pktlen - total bytes (delims + data + fcs + pads + pad delims)
  1160. * width - 0 for 20 MHz, 1 for 40 MHz
  1161. * half_gi - to use 4us v/s 3.6 us for symbol time
  1162. */
  1163. static u32 ath_pkt_duration(struct ath_softc *sc, u8 rix, struct ath_buf *bf,
  1164. int width, int half_gi, bool shortPreamble)
  1165. {
  1166. const struct ath_rate_table *rate_table = sc->cur_rate_table;
  1167. u32 nbits, nsymbits, duration, nsymbols;
  1168. u8 rc;
  1169. int streams, pktlen;
  1170. pktlen = bf_isaggr(bf) ? bf->bf_al : bf->bf_frmlen;
  1171. rc = rate_table->info[rix].ratecode;
  1172. /* for legacy rates, use old function to compute packet duration */
  1173. if (!IS_HT_RATE(rc))
  1174. return ath9k_hw_computetxtime(sc->sc_ah, rate_table, pktlen,
  1175. rix, shortPreamble);
  1176. /* find number of symbols: PLCP + data */
  1177. nbits = (pktlen << 3) + OFDM_PLCP_BITS;
  1178. nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
  1179. nsymbols = (nbits + nsymbits - 1) / nsymbits;
  1180. if (!half_gi)
  1181. duration = SYMBOL_TIME(nsymbols);
  1182. else
  1183. duration = SYMBOL_TIME_HALFGI(nsymbols);
  1184. /* addup duration for legacy/ht training and signal fields */
  1185. streams = HT_RC_2_STREAMS(rc);
  1186. duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
  1187. return duration;
  1188. }
  1189. static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf)
  1190. {
  1191. const struct ath_rate_table *rt = sc->cur_rate_table;
  1192. struct ath9k_11n_rate_series series[4];
  1193. struct sk_buff *skb;
  1194. struct ieee80211_tx_info *tx_info;
  1195. struct ieee80211_tx_rate *rates;
  1196. struct ieee80211_hdr *hdr;
  1197. int i, flags = 0;
  1198. u8 rix = 0, ctsrate = 0;
  1199. bool is_pspoll;
  1200. memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
  1201. skb = bf->bf_mpdu;
  1202. tx_info = IEEE80211_SKB_CB(skb);
  1203. rates = tx_info->control.rates;
  1204. hdr = (struct ieee80211_hdr *)skb->data;
  1205. is_pspoll = ieee80211_is_pspoll(hdr->frame_control);
  1206. /*
  1207. * We check if Short Preamble is needed for the CTS rate by
  1208. * checking the BSS's global flag.
  1209. * But for the rate series, IEEE80211_TX_RC_USE_SHORT_PREAMBLE is used.
  1210. */
  1211. if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
  1212. ctsrate = rt->info[tx_info->control.rts_cts_rate_idx].ratecode |
  1213. rt->info[tx_info->control.rts_cts_rate_idx].short_preamble;
  1214. else
  1215. ctsrate = rt->info[tx_info->control.rts_cts_rate_idx].ratecode;
  1216. /*
  1217. * ATH9K_TXDESC_RTSENA and ATH9K_TXDESC_CTSENA are mutually exclusive.
  1218. * Check the first rate in the series to decide whether RTS/CTS
  1219. * or CTS-to-self has to be used.
  1220. */
  1221. if (rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
  1222. flags = ATH9K_TXDESC_CTSENA;
  1223. else if (rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  1224. flags = ATH9K_TXDESC_RTSENA;
  1225. /* FIXME: Handle aggregation protection */
  1226. if (sc->config.ath_aggr_prot &&
  1227. (!bf_isaggr(bf) || (bf_isaggr(bf) && bf->bf_al < 8192))) {
  1228. flags = ATH9K_TXDESC_RTSENA;
  1229. }
  1230. /* For AR5416 - RTS cannot be followed by a frame larger than 8K */
  1231. if (bf_isaggr(bf) && (bf->bf_al > sc->sc_ah->caps.rts_aggr_limit))
  1232. flags &= ~(ATH9K_TXDESC_RTSENA);
  1233. for (i = 0; i < 4; i++) {
  1234. if (!rates[i].count || (rates[i].idx < 0))
  1235. continue;
  1236. rix = rates[i].idx;
  1237. series[i].Tries = rates[i].count;
  1238. series[i].ChSel = sc->tx_chainmask;
  1239. if (rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
  1240. series[i].Rate = rt->info[rix].ratecode |
  1241. rt->info[rix].short_preamble;
  1242. else
  1243. series[i].Rate = rt->info[rix].ratecode;
  1244. if (rates[i].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  1245. series[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
  1246. if (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  1247. series[i].RateFlags |= ATH9K_RATESERIES_2040;
  1248. if (rates[i].flags & IEEE80211_TX_RC_SHORT_GI)
  1249. series[i].RateFlags |= ATH9K_RATESERIES_HALFGI;
  1250. series[i].PktDuration = ath_pkt_duration(sc, rix, bf,
  1251. (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) != 0,
  1252. (rates[i].flags & IEEE80211_TX_RC_SHORT_GI),
  1253. (rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE));
  1254. }
  1255. /* set dur_update_en for l-sig computation except for PS-Poll frames */
  1256. ath9k_hw_set11n_ratescenario(sc->sc_ah, bf->bf_desc,
  1257. bf->bf_lastbf->bf_desc,
  1258. !is_pspoll, ctsrate,
  1259. 0, series, 4, flags);
  1260. if (sc->config.ath_aggr_prot && flags)
  1261. ath9k_hw_set11n_burstduration(sc->sc_ah, bf->bf_desc, 8192);
  1262. }
  1263. static int ath_tx_setup_buffer(struct ieee80211_hw *hw, struct ath_buf *bf,
  1264. struct sk_buff *skb,
  1265. struct ath_tx_control *txctl)
  1266. {
  1267. struct ath_wiphy *aphy = hw->priv;
  1268. struct ath_softc *sc = aphy->sc;
  1269. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1270. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  1271. struct ath_tx_info_priv *tx_info_priv;
  1272. int hdrlen;
  1273. __le16 fc;
  1274. tx_info_priv = kzalloc(sizeof(*tx_info_priv), GFP_ATOMIC);
  1275. if (unlikely(!tx_info_priv))
  1276. return -ENOMEM;
  1277. tx_info->rate_driver_data[0] = tx_info_priv;
  1278. tx_info_priv->aphy = aphy;
  1279. tx_info_priv->frame_type = txctl->frame_type;
  1280. hdrlen = ieee80211_get_hdrlen_from_skb(skb);
  1281. fc = hdr->frame_control;
  1282. ATH_TXBUF_RESET(bf);
  1283. bf->bf_frmlen = skb->len + FCS_LEN - (hdrlen & 3);
  1284. if (conf_is_ht(&sc->hw->conf) && !is_pae(skb))
  1285. bf->bf_state.bf_type |= BUF_HT;
  1286. bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq);
  1287. bf->bf_keytype = get_hw_crypto_keytype(skb);
  1288. if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR) {
  1289. bf->bf_frmlen += tx_info->control.hw_key->icv_len;
  1290. bf->bf_keyix = tx_info->control.hw_key->hw_key_idx;
  1291. } else {
  1292. bf->bf_keyix = ATH9K_TXKEYIX_INVALID;
  1293. }
  1294. if (ieee80211_is_data_qos(fc) && (sc->sc_flags & SC_OP_TXAGGR))
  1295. assign_aggr_tid_seqno(skb, bf);
  1296. bf->bf_mpdu = skb;
  1297. bf->bf_dmacontext = dma_map_single(sc->dev, skb->data,
  1298. skb->len, DMA_TO_DEVICE);
  1299. if (unlikely(dma_mapping_error(sc->dev, bf->bf_dmacontext))) {
  1300. bf->bf_mpdu = NULL;
  1301. kfree(tx_info_priv);
  1302. tx_info->rate_driver_data[0] = NULL;
  1303. DPRINTF(sc, ATH_DBG_FATAL, "dma_mapping_error() on TX\n");
  1304. return -ENOMEM;
  1305. }
  1306. bf->bf_buf_addr = bf->bf_dmacontext;
  1307. return 0;
  1308. }
  1309. /* FIXME: tx power */
  1310. static void ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf,
  1311. struct ath_tx_control *txctl)
  1312. {
  1313. struct sk_buff *skb = bf->bf_mpdu;
  1314. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1315. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  1316. struct ath_node *an = NULL;
  1317. struct list_head bf_head;
  1318. struct ath_desc *ds;
  1319. struct ath_atx_tid *tid;
  1320. struct ath_hw *ah = sc->sc_ah;
  1321. int frm_type;
  1322. __le16 fc;
  1323. frm_type = get_hw_packet_type(skb);
  1324. fc = hdr->frame_control;
  1325. INIT_LIST_HEAD(&bf_head);
  1326. list_add_tail(&bf->list, &bf_head);
  1327. ds = bf->bf_desc;
  1328. ds->ds_link = 0;
  1329. ds->ds_data = bf->bf_buf_addr;
  1330. ath9k_hw_set11n_txdesc(ah, ds, bf->bf_frmlen, frm_type, MAX_RATE_POWER,
  1331. bf->bf_keyix, bf->bf_keytype, bf->bf_flags);
  1332. ath9k_hw_filltxdesc(ah, ds,
  1333. skb->len, /* segment length */
  1334. true, /* first segment */
  1335. true, /* last segment */
  1336. ds); /* first descriptor */
  1337. spin_lock_bh(&txctl->txq->axq_lock);
  1338. if (bf_isht(bf) && (sc->sc_flags & SC_OP_TXAGGR) &&
  1339. tx_info->control.sta) {
  1340. an = (struct ath_node *)tx_info->control.sta->drv_priv;
  1341. tid = ATH_AN_2_TID(an, bf->bf_tidno);
  1342. if (!ieee80211_is_data_qos(fc)) {
  1343. ath_tx_send_normal(sc, txctl->txq, &bf_head);
  1344. goto tx_done;
  1345. }
  1346. if (ath_aggr_query(sc, an, bf->bf_tidno)) {
  1347. /*
  1348. * Try aggregation if it's a unicast data frame
  1349. * and the destination is HT capable.
  1350. */
  1351. ath_tx_send_ampdu(sc, tid, &bf_head, txctl);
  1352. } else {
  1353. /*
  1354. * Send this frame as regular when ADDBA
  1355. * exchange is neither complete nor pending.
  1356. */
  1357. ath_tx_send_ht_normal(sc, txctl->txq,
  1358. tid, &bf_head);
  1359. }
  1360. } else {
  1361. ath_tx_send_normal(sc, txctl->txq, &bf_head);
  1362. }
  1363. tx_done:
  1364. spin_unlock_bh(&txctl->txq->axq_lock);
  1365. }
  1366. /* Upon failure caller should free skb */
  1367. int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
  1368. struct ath_tx_control *txctl)
  1369. {
  1370. struct ath_wiphy *aphy = hw->priv;
  1371. struct ath_softc *sc = aphy->sc;
  1372. struct ath_buf *bf;
  1373. int r;
  1374. bf = ath_tx_get_buffer(sc);
  1375. if (!bf) {
  1376. DPRINTF(sc, ATH_DBG_XMIT, "TX buffers are full\n");
  1377. return -1;
  1378. }
  1379. r = ath_tx_setup_buffer(hw, bf, skb, txctl);
  1380. if (unlikely(r)) {
  1381. struct ath_txq *txq = txctl->txq;
  1382. DPRINTF(sc, ATH_DBG_FATAL, "TX mem alloc failure\n");
  1383. /* upon ath_tx_processq() this TX queue will be resumed, we
  1384. * guarantee this will happen by knowing beforehand that
  1385. * we will at least have to run TX completionon one buffer
  1386. * on the queue */
  1387. spin_lock_bh(&txq->axq_lock);
  1388. if (sc->tx.txq[txq->axq_qnum].axq_depth > 1) {
  1389. ieee80211_stop_queue(sc->hw,
  1390. skb_get_queue_mapping(skb));
  1391. txq->stopped = 1;
  1392. }
  1393. spin_unlock_bh(&txq->axq_lock);
  1394. spin_lock_bh(&sc->tx.txbuflock);
  1395. list_add_tail(&bf->list, &sc->tx.txbuf);
  1396. spin_unlock_bh(&sc->tx.txbuflock);
  1397. return r;
  1398. }
  1399. ath_tx_start_dma(sc, bf, txctl);
  1400. return 0;
  1401. }
  1402. void ath_tx_cabq(struct ieee80211_hw *hw, struct sk_buff *skb)
  1403. {
  1404. struct ath_wiphy *aphy = hw->priv;
  1405. struct ath_softc *sc = aphy->sc;
  1406. int hdrlen, padsize;
  1407. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1408. struct ath_tx_control txctl;
  1409. memset(&txctl, 0, sizeof(struct ath_tx_control));
  1410. /*
  1411. * As a temporary workaround, assign seq# here; this will likely need
  1412. * to be cleaned up to work better with Beacon transmission and virtual
  1413. * BSSes.
  1414. */
  1415. if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
  1416. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  1417. if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
  1418. sc->tx.seq_no += 0x10;
  1419. hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
  1420. hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
  1421. }
  1422. /* Add the padding after the header if this is not already done */
  1423. hdrlen = ieee80211_get_hdrlen_from_skb(skb);
  1424. if (hdrlen & 3) {
  1425. padsize = hdrlen % 4;
  1426. if (skb_headroom(skb) < padsize) {
  1427. DPRINTF(sc, ATH_DBG_XMIT, "TX CABQ padding failed\n");
  1428. dev_kfree_skb_any(skb);
  1429. return;
  1430. }
  1431. skb_push(skb, padsize);
  1432. memmove(skb->data, skb->data + padsize, hdrlen);
  1433. }
  1434. txctl.txq = sc->beacon.cabq;
  1435. DPRINTF(sc, ATH_DBG_XMIT, "transmitting CABQ packet, skb: %p\n", skb);
  1436. if (ath_tx_start(hw, skb, &txctl) != 0) {
  1437. DPRINTF(sc, ATH_DBG_XMIT, "CABQ TX failed\n");
  1438. goto exit;
  1439. }
  1440. return;
  1441. exit:
  1442. dev_kfree_skb_any(skb);
  1443. }
  1444. /*****************/
  1445. /* TX Completion */
  1446. /*****************/
  1447. static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
  1448. int tx_flags)
  1449. {
  1450. struct ieee80211_hw *hw = sc->hw;
  1451. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1452. struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
  1453. int hdrlen, padsize;
  1454. int frame_type = ATH9K_NOT_INTERNAL;
  1455. DPRINTF(sc, ATH_DBG_XMIT, "TX complete: skb: %p\n", skb);
  1456. if (tx_info_priv) {
  1457. hw = tx_info_priv->aphy->hw;
  1458. frame_type = tx_info_priv->frame_type;
  1459. }
  1460. if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK ||
  1461. tx_info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
  1462. kfree(tx_info_priv);
  1463. tx_info->rate_driver_data[0] = NULL;
  1464. }
  1465. if (tx_flags & ATH_TX_BAR)
  1466. tx_info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
  1467. if (!(tx_flags & (ATH_TX_ERROR | ATH_TX_XRETRY))) {
  1468. /* Frame was ACKed */
  1469. tx_info->flags |= IEEE80211_TX_STAT_ACK;
  1470. }
  1471. hdrlen = ieee80211_get_hdrlen_from_skb(skb);
  1472. padsize = hdrlen & 3;
  1473. if (padsize && hdrlen >= 24) {
  1474. /*
  1475. * Remove MAC header padding before giving the frame back to
  1476. * mac80211.
  1477. */
  1478. memmove(skb->data + padsize, skb->data, hdrlen);
  1479. skb_pull(skb, padsize);
  1480. }
  1481. if (frame_type == ATH9K_NOT_INTERNAL)
  1482. ieee80211_tx_status(hw, skb);
  1483. else
  1484. ath9k_tx_status(hw, skb);
  1485. }
  1486. static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
  1487. struct list_head *bf_q,
  1488. int txok, int sendbar)
  1489. {
  1490. struct sk_buff *skb = bf->bf_mpdu;
  1491. unsigned long flags;
  1492. int tx_flags = 0;
  1493. if (sendbar)
  1494. tx_flags = ATH_TX_BAR;
  1495. if (!txok) {
  1496. tx_flags |= ATH_TX_ERROR;
  1497. if (bf_isxretried(bf))
  1498. tx_flags |= ATH_TX_XRETRY;
  1499. }
  1500. dma_unmap_single(sc->dev, bf->bf_dmacontext, skb->len, DMA_TO_DEVICE);
  1501. ath_tx_complete(sc, skb, tx_flags);
  1502. /*
  1503. * Return the list of ath_buf of this mpdu to free queue
  1504. */
  1505. spin_lock_irqsave(&sc->tx.txbuflock, flags);
  1506. list_splice_tail_init(bf_q, &sc->tx.txbuf);
  1507. spin_unlock_irqrestore(&sc->tx.txbuflock, flags);
  1508. }
  1509. static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf,
  1510. int txok)
  1511. {
  1512. struct ath_buf *bf_last = bf->bf_lastbf;
  1513. struct ath_desc *ds = bf_last->bf_desc;
  1514. u16 seq_st = 0;
  1515. u32 ba[WME_BA_BMP_SIZE >> 5];
  1516. int ba_index;
  1517. int nbad = 0;
  1518. int isaggr = 0;
  1519. if (ds->ds_txstat.ts_flags == ATH9K_TX_SW_ABORTED)
  1520. return 0;
  1521. isaggr = bf_isaggr(bf);
  1522. if (isaggr) {
  1523. seq_st = ATH_DS_BA_SEQ(ds);
  1524. memcpy(ba, ATH_DS_BA_BITMAP(ds), WME_BA_BMP_SIZE >> 3);
  1525. }
  1526. while (bf) {
  1527. ba_index = ATH_BA_INDEX(seq_st, bf->bf_seqno);
  1528. if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
  1529. nbad++;
  1530. bf = bf->bf_next;
  1531. }
  1532. return nbad;
  1533. }
  1534. static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds,
  1535. int nbad, int txok, bool update_rc)
  1536. {
  1537. struct sk_buff *skb = bf->bf_mpdu;
  1538. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  1539. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
  1540. struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
  1541. struct ieee80211_hw *hw = tx_info_priv->aphy->hw;
  1542. u8 i, tx_rateindex;
  1543. if (txok)
  1544. tx_info->status.ack_signal = ds->ds_txstat.ts_rssi;
  1545. tx_rateindex = ds->ds_txstat.ts_rateindex;
  1546. WARN_ON(tx_rateindex >= hw->max_rates);
  1547. tx_info_priv->update_rc = update_rc;
  1548. if (ds->ds_txstat.ts_status & ATH9K_TXERR_FILT)
  1549. tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
  1550. if ((ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) == 0 &&
  1551. (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0 && update_rc) {
  1552. if (ieee80211_is_data(hdr->frame_control)) {
  1553. memcpy(&tx_info_priv->tx, &ds->ds_txstat,
  1554. sizeof(tx_info_priv->tx));
  1555. tx_info_priv->n_frames = bf->bf_nframes;
  1556. tx_info_priv->n_bad_frames = nbad;
  1557. }
  1558. }
  1559. for (i = tx_rateindex + 1; i < hw->max_rates; i++)
  1560. tx_info->status.rates[i].count = 0;
  1561. tx_info->status.rates[tx_rateindex].count = bf->bf_retries + 1;
  1562. }
  1563. static void ath_wake_mac80211_queue(struct ath_softc *sc, struct ath_txq *txq)
  1564. {
  1565. int qnum;
  1566. spin_lock_bh(&txq->axq_lock);
  1567. if (txq->stopped &&
  1568. sc->tx.txq[txq->axq_qnum].axq_depth <= (ATH_TXBUF - 20)) {
  1569. qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc);
  1570. if (qnum != -1) {
  1571. ieee80211_wake_queue(sc->hw, qnum);
  1572. txq->stopped = 0;
  1573. }
  1574. }
  1575. spin_unlock_bh(&txq->axq_lock);
  1576. }
  1577. static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
  1578. {
  1579. struct ath_hw *ah = sc->sc_ah;
  1580. struct ath_buf *bf, *lastbf, *bf_held = NULL;
  1581. struct list_head bf_head;
  1582. struct ath_desc *ds;
  1583. int txok;
  1584. int status;
  1585. DPRINTF(sc, ATH_DBG_QUEUE, "tx queue %d (%x), link %p\n",
  1586. txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
  1587. txq->axq_link);
  1588. for (;;) {
  1589. spin_lock_bh(&txq->axq_lock);
  1590. if (list_empty(&txq->axq_q)) {
  1591. txq->axq_link = NULL;
  1592. txq->axq_linkbuf = NULL;
  1593. spin_unlock_bh(&txq->axq_lock);
  1594. break;
  1595. }
  1596. bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
  1597. /*
  1598. * There is a race condition that a BH gets scheduled
  1599. * after sw writes TxE and before hw re-load the last
  1600. * descriptor to get the newly chained one.
  1601. * Software must keep the last DONE descriptor as a
  1602. * holding descriptor - software does so by marking
  1603. * it with the STALE flag.
  1604. */
  1605. bf_held = NULL;
  1606. if (bf->bf_stale) {
  1607. bf_held = bf;
  1608. if (list_is_last(&bf_held->list, &txq->axq_q)) {
  1609. txq->axq_link = NULL;
  1610. txq->axq_linkbuf = NULL;
  1611. spin_unlock_bh(&txq->axq_lock);
  1612. /*
  1613. * The holding descriptor is the last
  1614. * descriptor in queue. It's safe to remove
  1615. * the last holding descriptor in BH context.
  1616. */
  1617. spin_lock_bh(&sc->tx.txbuflock);
  1618. list_move_tail(&bf_held->list, &sc->tx.txbuf);
  1619. spin_unlock_bh(&sc->tx.txbuflock);
  1620. break;
  1621. } else {
  1622. bf = list_entry(bf_held->list.next,
  1623. struct ath_buf, list);
  1624. }
  1625. }
  1626. lastbf = bf->bf_lastbf;
  1627. ds = lastbf->bf_desc;
  1628. status = ath9k_hw_txprocdesc(ah, ds);
  1629. if (status == -EINPROGRESS) {
  1630. spin_unlock_bh(&txq->axq_lock);
  1631. break;
  1632. }
  1633. if (bf->bf_desc == txq->axq_lastdsWithCTS)
  1634. txq->axq_lastdsWithCTS = NULL;
  1635. if (ds == txq->axq_gatingds)
  1636. txq->axq_gatingds = NULL;
  1637. /*
  1638. * Remove ath_buf's of the same transmit unit from txq,
  1639. * however leave the last descriptor back as the holding
  1640. * descriptor for hw.
  1641. */
  1642. lastbf->bf_stale = true;
  1643. INIT_LIST_HEAD(&bf_head);
  1644. if (!list_is_singular(&lastbf->list))
  1645. list_cut_position(&bf_head,
  1646. &txq->axq_q, lastbf->list.prev);
  1647. txq->axq_depth--;
  1648. if (bf_isaggr(bf))
  1649. txq->axq_aggr_depth--;
  1650. txok = (ds->ds_txstat.ts_status == 0);
  1651. spin_unlock_bh(&txq->axq_lock);
  1652. if (bf_held) {
  1653. spin_lock_bh(&sc->tx.txbuflock);
  1654. list_move_tail(&bf_held->list, &sc->tx.txbuf);
  1655. spin_unlock_bh(&sc->tx.txbuflock);
  1656. }
  1657. if (!bf_isampdu(bf)) {
  1658. /*
  1659. * This frame is sent out as a single frame.
  1660. * Use hardware retry status for this frame.
  1661. */
  1662. bf->bf_retries = ds->ds_txstat.ts_longretry;
  1663. if (ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY)
  1664. bf->bf_state.bf_type |= BUF_XRETRY;
  1665. ath_tx_rc_status(bf, ds, 0, txok, true);
  1666. }
  1667. if (bf_isampdu(bf))
  1668. ath_tx_complete_aggr(sc, txq, bf, &bf_head, txok);
  1669. else
  1670. ath_tx_complete_buf(sc, bf, &bf_head, txok, 0);
  1671. ath_wake_mac80211_queue(sc, txq);
  1672. spin_lock_bh(&txq->axq_lock);
  1673. if (sc->sc_flags & SC_OP_TXAGGR)
  1674. ath_txq_schedule(sc, txq);
  1675. spin_unlock_bh(&txq->axq_lock);
  1676. }
  1677. }
  1678. void ath_tx_tasklet(struct ath_softc *sc)
  1679. {
  1680. int i;
  1681. u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1);
  1682. ath9k_hw_gettxintrtxqs(sc->sc_ah, &qcumask);
  1683. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
  1684. if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
  1685. ath_tx_processq(sc, &sc->tx.txq[i]);
  1686. }
  1687. }
  1688. /*****************/
  1689. /* Init, Cleanup */
  1690. /*****************/
  1691. int ath_tx_init(struct ath_softc *sc, int nbufs)
  1692. {
  1693. int error = 0;
  1694. spin_lock_init(&sc->tx.txbuflock);
  1695. error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
  1696. "tx", nbufs, 1);
  1697. if (error != 0) {
  1698. DPRINTF(sc, ATH_DBG_FATAL,
  1699. "Failed to allocate tx descriptors: %d\n", error);
  1700. goto err;
  1701. }
  1702. error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
  1703. "beacon", ATH_BCBUF, 1);
  1704. if (error != 0) {
  1705. DPRINTF(sc, ATH_DBG_FATAL,
  1706. "Failed to allocate beacon descriptors: %d\n", error);
  1707. goto err;
  1708. }
  1709. err:
  1710. if (error != 0)
  1711. ath_tx_cleanup(sc);
  1712. return error;
  1713. }
  1714. void ath_tx_cleanup(struct ath_softc *sc)
  1715. {
  1716. if (sc->beacon.bdma.dd_desc_len != 0)
  1717. ath_descdma_cleanup(sc, &sc->beacon.bdma, &sc->beacon.bbuf);
  1718. if (sc->tx.txdma.dd_desc_len != 0)
  1719. ath_descdma_cleanup(sc, &sc->tx.txdma, &sc->tx.txbuf);
  1720. }
  1721. void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
  1722. {
  1723. struct ath_atx_tid *tid;
  1724. struct ath_atx_ac *ac;
  1725. int tidno, acno;
  1726. for (tidno = 0, tid = &an->tid[tidno];
  1727. tidno < WME_NUM_TID;
  1728. tidno++, tid++) {
  1729. tid->an = an;
  1730. tid->tidno = tidno;
  1731. tid->seq_start = tid->seq_next = 0;
  1732. tid->baw_size = WME_MAX_BA;
  1733. tid->baw_head = tid->baw_tail = 0;
  1734. tid->sched = false;
  1735. tid->paused = false;
  1736. tid->state &= ~AGGR_CLEANUP;
  1737. INIT_LIST_HEAD(&tid->buf_q);
  1738. acno = TID_TO_WME_AC(tidno);
  1739. tid->ac = &an->ac[acno];
  1740. tid->state &= ~AGGR_ADDBA_COMPLETE;
  1741. tid->state &= ~AGGR_ADDBA_PROGRESS;
  1742. tid->addba_exchangeattempts = 0;
  1743. }
  1744. for (acno = 0, ac = &an->ac[acno];
  1745. acno < WME_NUM_AC; acno++, ac++) {
  1746. ac->sched = false;
  1747. INIT_LIST_HEAD(&ac->tid_q);
  1748. switch (acno) {
  1749. case WME_AC_BE:
  1750. ac->qnum = ath_tx_get_qnum(sc,
  1751. ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
  1752. break;
  1753. case WME_AC_BK:
  1754. ac->qnum = ath_tx_get_qnum(sc,
  1755. ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BK);
  1756. break;
  1757. case WME_AC_VI:
  1758. ac->qnum = ath_tx_get_qnum(sc,
  1759. ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VI);
  1760. break;
  1761. case WME_AC_VO:
  1762. ac->qnum = ath_tx_get_qnum(sc,
  1763. ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VO);
  1764. break;
  1765. }
  1766. }
  1767. }
  1768. void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an)
  1769. {
  1770. int i;
  1771. struct ath_atx_ac *ac, *ac_tmp;
  1772. struct ath_atx_tid *tid, *tid_tmp;
  1773. struct ath_txq *txq;
  1774. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
  1775. if (ATH_TXQ_SETUP(sc, i)) {
  1776. txq = &sc->tx.txq[i];
  1777. spin_lock(&txq->axq_lock);
  1778. list_for_each_entry_safe(ac,
  1779. ac_tmp, &txq->axq_acq, list) {
  1780. tid = list_first_entry(&ac->tid_q,
  1781. struct ath_atx_tid, list);
  1782. if (tid && tid->an != an)
  1783. continue;
  1784. list_del(&ac->list);
  1785. ac->sched = false;
  1786. list_for_each_entry_safe(tid,
  1787. tid_tmp, &ac->tid_q, list) {
  1788. list_del(&tid->list);
  1789. tid->sched = false;
  1790. ath_tid_drain(sc, txq, tid);
  1791. tid->state &= ~AGGR_ADDBA_COMPLETE;
  1792. tid->addba_exchangeattempts = 0;
  1793. tid->state &= ~AGGR_CLEANUP;
  1794. }
  1795. }
  1796. spin_unlock(&txq->axq_lock);
  1797. }
  1798. }
  1799. }