iwl-tx.c 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
  4. *
  5. * Portions of this file are derived from the ipw3945 project, as well
  6. * as portions of the ieee80211 subsystem header files.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of version 2 of the GNU General Public License as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  15. * more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along with
  18. * this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  20. *
  21. * The full GNU General Public License is included in this distribution in the
  22. * file called LICENSE.
  23. *
  24. * Contact Information:
  25. * James P. Ketrenos <ipw2100-admin@linux.intel.com>
  26. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  27. *
  28. *****************************************************************************/
  29. #include <linux/etherdevice.h>
  30. #include <net/mac80211.h>
  31. #include "iwl-eeprom.h"
  32. #include "iwl-dev.h"
  33. #include "iwl-core.h"
  34. #include "iwl-sta.h"
  35. #include "iwl-io.h"
  36. #include "iwl-helpers.h"
  37. static const u16 default_tid_to_tx_fifo[] = {
  38. IWL_TX_FIFO_AC1,
  39. IWL_TX_FIFO_AC0,
  40. IWL_TX_FIFO_AC0,
  41. IWL_TX_FIFO_AC1,
  42. IWL_TX_FIFO_AC2,
  43. IWL_TX_FIFO_AC2,
  44. IWL_TX_FIFO_AC3,
  45. IWL_TX_FIFO_AC3,
  46. IWL_TX_FIFO_NONE,
  47. IWL_TX_FIFO_NONE,
  48. IWL_TX_FIFO_NONE,
  49. IWL_TX_FIFO_NONE,
  50. IWL_TX_FIFO_NONE,
  51. IWL_TX_FIFO_NONE,
  52. IWL_TX_FIFO_NONE,
  53. IWL_TX_FIFO_NONE,
  54. IWL_TX_FIFO_AC3
  55. };
  56. /**
  57. * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
  58. *
  59. * Does NOT advance any TFD circular buffer read/write indexes
  60. * Does NOT free the TFD itself (which is within circular buffer)
  61. */
  62. int iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
  63. {
  64. struct iwl_tfd_frame *bd_tmp = (struct iwl_tfd_frame *)&txq->bd[0];
  65. struct iwl_tfd_frame *bd = &bd_tmp[txq->q.read_ptr];
  66. struct pci_dev *dev = priv->pci_dev;
  67. int i;
  68. int counter = 0;
  69. int index, is_odd;
  70. /* Host command buffers stay mapped in memory, nothing to clean */
  71. if (txq->q.id == IWL_CMD_QUEUE_NUM)
  72. return 0;
  73. /* Sanity check on number of chunks */
  74. counter = IWL_GET_BITS(*bd, num_tbs);
  75. if (counter > MAX_NUM_OF_TBS) {
  76. IWL_ERROR("Too many chunks: %i\n", counter);
  77. /* @todo issue fatal error, it is quite serious situation */
  78. return 0;
  79. }
  80. /* Unmap chunks, if any.
  81. * TFD info for odd chunks is different format than for even chunks. */
  82. for (i = 0; i < counter; i++) {
  83. index = i / 2;
  84. is_odd = i & 0x1;
  85. if (is_odd)
  86. pci_unmap_single(
  87. dev,
  88. IWL_GET_BITS(bd->pa[index], tb2_addr_lo16) |
  89. (IWL_GET_BITS(bd->pa[index],
  90. tb2_addr_hi20) << 16),
  91. IWL_GET_BITS(bd->pa[index], tb2_len),
  92. PCI_DMA_TODEVICE);
  93. else if (i > 0)
  94. pci_unmap_single(dev,
  95. le32_to_cpu(bd->pa[index].tb1_addr),
  96. IWL_GET_BITS(bd->pa[index], tb1_len),
  97. PCI_DMA_TODEVICE);
  98. /* Free SKB, if any, for this chunk */
  99. if (txq->txb[txq->q.read_ptr].skb[i]) {
  100. struct sk_buff *skb = txq->txb[txq->q.read_ptr].skb[i];
  101. dev_kfree_skb(skb);
  102. txq->txb[txq->q.read_ptr].skb[i] = NULL;
  103. }
  104. }
  105. return 0;
  106. }
  107. EXPORT_SYMBOL(iwl_hw_txq_free_tfd);
  108. int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv, void *ptr,
  109. dma_addr_t addr, u16 len)
  110. {
  111. int index, is_odd;
  112. struct iwl_tfd_frame *tfd = ptr;
  113. u32 num_tbs = IWL_GET_BITS(*tfd, num_tbs);
  114. /* Each TFD can point to a maximum 20 Tx buffers */
  115. if (num_tbs >= MAX_NUM_OF_TBS) {
  116. IWL_ERROR("Error can not send more than %d chunks\n",
  117. MAX_NUM_OF_TBS);
  118. return -EINVAL;
  119. }
  120. index = num_tbs / 2;
  121. is_odd = num_tbs & 0x1;
  122. if (!is_odd) {
  123. tfd->pa[index].tb1_addr = cpu_to_le32(addr);
  124. IWL_SET_BITS(tfd->pa[index], tb1_addr_hi,
  125. iwl_get_dma_hi_address(addr));
  126. IWL_SET_BITS(tfd->pa[index], tb1_len, len);
  127. } else {
  128. IWL_SET_BITS(tfd->pa[index], tb2_addr_lo16,
  129. (u32) (addr & 0xffff));
  130. IWL_SET_BITS(tfd->pa[index], tb2_addr_hi20, addr >> 16);
  131. IWL_SET_BITS(tfd->pa[index], tb2_len, len);
  132. }
  133. IWL_SET_BITS(*tfd, num_tbs, num_tbs + 1);
  134. return 0;
  135. }
  136. EXPORT_SYMBOL(iwl_hw_txq_attach_buf_to_tfd);
  137. /**
  138. * iwl_txq_update_write_ptr - Send new write index to hardware
  139. */
  140. int iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq)
  141. {
  142. u32 reg = 0;
  143. int ret = 0;
  144. int txq_id = txq->q.id;
  145. if (txq->need_update == 0)
  146. return ret;
  147. /* if we're trying to save power */
  148. if (test_bit(STATUS_POWER_PMI, &priv->status)) {
  149. /* wake up nic if it's powered down ...
  150. * uCode will wake up, and interrupt us again, so next
  151. * time we'll skip this part. */
  152. reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
  153. if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
  154. IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
  155. iwl_set_bit(priv, CSR_GP_CNTRL,
  156. CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
  157. return ret;
  158. }
  159. /* restore this queue's parameters in nic hardware. */
  160. ret = iwl_grab_nic_access(priv);
  161. if (ret)
  162. return ret;
  163. iwl_write_direct32(priv, HBUS_TARG_WRPTR,
  164. txq->q.write_ptr | (txq_id << 8));
  165. iwl_release_nic_access(priv);
  166. /* else not in power-save mode, uCode will never sleep when we're
  167. * trying to tx (during RFKILL, we're not trying to tx). */
  168. } else
  169. iwl_write32(priv, HBUS_TARG_WRPTR,
  170. txq->q.write_ptr | (txq_id << 8));
  171. txq->need_update = 0;
  172. return ret;
  173. }
  174. EXPORT_SYMBOL(iwl_txq_update_write_ptr);
  175. /**
  176. * iwl_tx_queue_free - Deallocate DMA queue.
  177. * @txq: Transmit queue to deallocate.
  178. *
  179. * Empty queue by removing and destroying all BD's.
  180. * Free all buffers.
  181. * 0-fill, but do not free "txq" descriptor structure.
  182. */
  183. static void iwl_tx_queue_free(struct iwl_priv *priv, int txq_id)
  184. {
  185. struct iwl_tx_queue *txq = &priv->txq[txq_id];
  186. struct iwl_queue *q = &txq->q;
  187. struct pci_dev *dev = priv->pci_dev;
  188. int i, slots_num, len;
  189. if (q->n_bd == 0)
  190. return;
  191. /* first, empty all BD's */
  192. for (; q->write_ptr != q->read_ptr;
  193. q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
  194. iwl_hw_txq_free_tfd(priv, txq);
  195. len = sizeof(struct iwl_cmd) * q->n_window;
  196. if (q->id == IWL_CMD_QUEUE_NUM)
  197. len += IWL_MAX_SCAN_SIZE;
  198. /* De-alloc array of command/tx buffers */
  199. slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
  200. TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
  201. for (i = 0; i < slots_num; i++)
  202. kfree(txq->cmd[i]);
  203. if (txq_id == IWL_CMD_QUEUE_NUM)
  204. kfree(txq->cmd[slots_num]);
  205. /* De-alloc circular buffer of TFDs */
  206. if (txq->q.n_bd)
  207. pci_free_consistent(dev, sizeof(struct iwl_tfd_frame) *
  208. txq->q.n_bd, txq->bd, txq->q.dma_addr);
  209. /* De-alloc array of per-TFD driver data */
  210. kfree(txq->txb);
  211. txq->txb = NULL;
  212. /* 0-fill queue descriptor structure */
  213. memset(txq, 0, sizeof(*txq));
  214. }
  215. /*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
  216. * DMA services
  217. *
  218. * Theory of operation
  219. *
  220. * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
  221. * of buffer descriptors, each of which points to one or more data buffers for
  222. * the device to read from or fill. Driver and device exchange status of each
  223. * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
  224. * entries in each circular buffer, to protect against confusing empty and full
  225. * queue states.
  226. *
  227. * The device reads or writes the data in the queues via the device's several
  228. * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
  229. *
  230. * For Tx queue, there are low mark and high mark limits. If, after queuing
  231. * the packet for Tx, free space become < low mark, Tx queue stopped. When
  232. * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
  233. * Tx queue resumed.
  234. *
  235. * See more detailed info in iwl-4965-hw.h.
  236. ***************************************************/
  237. int iwl_queue_space(const struct iwl_queue *q)
  238. {
  239. int s = q->read_ptr - q->write_ptr;
  240. if (q->read_ptr > q->write_ptr)
  241. s -= q->n_bd;
  242. if (s <= 0)
  243. s += q->n_window;
  244. /* keep some reserve to not confuse empty and full situations */
  245. s -= 2;
  246. if (s < 0)
  247. s = 0;
  248. return s;
  249. }
  250. EXPORT_SYMBOL(iwl_queue_space);
  251. /**
  252. * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
  253. */
  254. static int iwl_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
  255. int count, int slots_num, u32 id)
  256. {
  257. q->n_bd = count;
  258. q->n_window = slots_num;
  259. q->id = id;
  260. /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
  261. * and iwl_queue_dec_wrap are broken. */
  262. BUG_ON(!is_power_of_2(count));
  263. /* slots_num must be power-of-two size, otherwise
  264. * get_cmd_index is broken. */
  265. BUG_ON(!is_power_of_2(slots_num));
  266. q->low_mark = q->n_window / 4;
  267. if (q->low_mark < 4)
  268. q->low_mark = 4;
  269. q->high_mark = q->n_window / 8;
  270. if (q->high_mark < 2)
  271. q->high_mark = 2;
  272. q->write_ptr = q->read_ptr = 0;
  273. return 0;
  274. }
  275. /**
  276. * iwl_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
  277. */
  278. static int iwl_tx_queue_alloc(struct iwl_priv *priv,
  279. struct iwl_tx_queue *txq, u32 id)
  280. {
  281. struct pci_dev *dev = priv->pci_dev;
  282. /* Driver private data, only for Tx (not command) queues,
  283. * not shared with device. */
  284. if (id != IWL_CMD_QUEUE_NUM) {
  285. txq->txb = kmalloc(sizeof(txq->txb[0]) *
  286. TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
  287. if (!txq->txb) {
  288. IWL_ERROR("kmalloc for auxiliary BD "
  289. "structures failed\n");
  290. goto error;
  291. }
  292. } else
  293. txq->txb = NULL;
  294. /* Circular buffer of transmit frame descriptors (TFDs),
  295. * shared with device */
  296. txq->bd = pci_alloc_consistent(dev,
  297. sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
  298. &txq->q.dma_addr);
  299. if (!txq->bd) {
  300. IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
  301. sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
  302. goto error;
  303. }
  304. txq->q.id = id;
  305. return 0;
  306. error:
  307. kfree(txq->txb);
  308. txq->txb = NULL;
  309. return -ENOMEM;
  310. }
  311. /*
  312. * Tell nic where to find circular buffer of Tx Frame Descriptors for
  313. * given Tx queue, and enable the DMA channel used for that queue.
  314. *
  315. * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
  316. * channels supported in hardware.
  317. */
  318. static int iwl_hw_tx_queue_init(struct iwl_priv *priv,
  319. struct iwl_tx_queue *txq)
  320. {
  321. int rc;
  322. unsigned long flags;
  323. int txq_id = txq->q.id;
  324. spin_lock_irqsave(&priv->lock, flags);
  325. rc = iwl_grab_nic_access(priv);
  326. if (rc) {
  327. spin_unlock_irqrestore(&priv->lock, flags);
  328. return rc;
  329. }
  330. /* Circular buffer (TFD queue in DRAM) physical base address */
  331. iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
  332. txq->q.dma_addr >> 8);
  333. /* Enable DMA channel, using same id as for TFD queue */
  334. iwl_write_direct32(
  335. priv, FH_TCSR_CHNL_TX_CONFIG_REG(txq_id),
  336. FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
  337. FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL);
  338. iwl_release_nic_access(priv);
  339. spin_unlock_irqrestore(&priv->lock, flags);
  340. return 0;
  341. }
  342. /**
  343. * iwl_tx_queue_init - Allocate and initialize one tx/cmd queue
  344. */
  345. static int iwl_tx_queue_init(struct iwl_priv *priv,
  346. struct iwl_tx_queue *txq,
  347. int slots_num, u32 txq_id)
  348. {
  349. int i, len;
  350. int rc = 0;
  351. /*
  352. * Alloc buffer array for commands (Tx or other types of commands).
  353. * For the command queue (#4), allocate command space + one big
  354. * command for scan, since scan command is very huge; the system will
  355. * not have two scans at the same time, so only one is needed.
  356. * For normal Tx queues (all other queues), no super-size command
  357. * space is needed.
  358. */
  359. len = sizeof(struct iwl_cmd);
  360. for (i = 0; i <= slots_num; i++) {
  361. if (i == slots_num) {
  362. if (txq_id == IWL_CMD_QUEUE_NUM)
  363. len += IWL_MAX_SCAN_SIZE;
  364. else
  365. continue;
  366. }
  367. txq->cmd[i] = kmalloc(len, GFP_KERNEL | GFP_DMA);
  368. if (!txq->cmd[i])
  369. return -ENOMEM;
  370. }
  371. /* Alloc driver data array and TFD circular buffer */
  372. rc = iwl_tx_queue_alloc(priv, txq, txq_id);
  373. if (rc) {
  374. for (i = 0; i < slots_num; i++)
  375. kfree(txq->cmd[i]);
  376. return -ENOMEM;
  377. }
  378. txq->need_update = 0;
  379. /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
  380. * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
  381. BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
  382. /* Initialize queue's high/low-water marks, and head/tail indexes */
  383. iwl_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
  384. /* Tell device where to find queue */
  385. iwl_hw_tx_queue_init(priv, txq);
  386. return 0;
  387. }
  388. /**
  389. * iwl_hw_txq_ctx_free - Free TXQ Context
  390. *
  391. * Destroy all TX DMA queues and structures
  392. */
  393. void iwl_hw_txq_ctx_free(struct iwl_priv *priv)
  394. {
  395. int txq_id;
  396. /* Tx queues */
  397. for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
  398. iwl_tx_queue_free(priv, txq_id);
  399. /* Keep-warm buffer */
  400. iwl_kw_free(priv);
  401. }
  402. EXPORT_SYMBOL(iwl_hw_txq_ctx_free);
  403. /**
  404. * iwl_txq_ctx_reset - Reset TX queue context
  405. * Destroys all DMA structures and initialise them again
  406. *
  407. * @param priv
  408. * @return error code
  409. */
  410. int iwl_txq_ctx_reset(struct iwl_priv *priv)
  411. {
  412. int ret = 0;
  413. int txq_id, slots_num;
  414. unsigned long flags;
  415. iwl_kw_free(priv);
  416. /* Free all tx/cmd queues and keep-warm buffer */
  417. iwl_hw_txq_ctx_free(priv);
  418. /* Alloc keep-warm buffer */
  419. ret = iwl_kw_alloc(priv);
  420. if (ret) {
  421. IWL_ERROR("Keep Warm allocation failed\n");
  422. goto error_kw;
  423. }
  424. spin_lock_irqsave(&priv->lock, flags);
  425. ret = iwl_grab_nic_access(priv);
  426. if (unlikely(ret)) {
  427. spin_unlock_irqrestore(&priv->lock, flags);
  428. goto error_reset;
  429. }
  430. /* Turn off all Tx DMA fifos */
  431. priv->cfg->ops->lib->txq_set_sched(priv, 0);
  432. iwl_release_nic_access(priv);
  433. spin_unlock_irqrestore(&priv->lock, flags);
  434. /* Tell nic where to find the keep-warm buffer */
  435. ret = iwl_kw_init(priv);
  436. if (ret) {
  437. IWL_ERROR("kw_init failed\n");
  438. goto error_reset;
  439. }
  440. /* Alloc and init all Tx queues, including the command queue (#4) */
  441. for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
  442. slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
  443. TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
  444. ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
  445. txq_id);
  446. if (ret) {
  447. IWL_ERROR("Tx %d queue init failed\n", txq_id);
  448. goto error;
  449. }
  450. }
  451. return ret;
  452. error:
  453. iwl_hw_txq_ctx_free(priv);
  454. error_reset:
  455. iwl_kw_free(priv);
  456. error_kw:
  457. return ret;
  458. }
  459. /**
  460. * iwl_txq_ctx_stop - Stop all Tx DMA channels, free Tx queue memory
  461. */
  462. void iwl_txq_ctx_stop(struct iwl_priv *priv)
  463. {
  464. int txq_id;
  465. unsigned long flags;
  466. /* Turn off all Tx DMA fifos */
  467. spin_lock_irqsave(&priv->lock, flags);
  468. if (iwl_grab_nic_access(priv)) {
  469. spin_unlock_irqrestore(&priv->lock, flags);
  470. return;
  471. }
  472. priv->cfg->ops->lib->txq_set_sched(priv, 0);
  473. /* Stop each Tx DMA channel, and wait for it to be idle */
  474. for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
  475. iwl_write_direct32(priv,
  476. FH_TCSR_CHNL_TX_CONFIG_REG(txq_id), 0x0);
  477. iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
  478. FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE
  479. (txq_id), 200);
  480. }
  481. iwl_release_nic_access(priv);
  482. spin_unlock_irqrestore(&priv->lock, flags);
  483. /* Deallocate memory for all Tx queues */
  484. iwl_hw_txq_ctx_free(priv);
  485. }
  486. EXPORT_SYMBOL(iwl_txq_ctx_stop);
  487. /*
  488. * handle build REPLY_TX command notification.
  489. */
  490. static void iwl_tx_cmd_build_basic(struct iwl_priv *priv,
  491. struct iwl_tx_cmd *tx_cmd,
  492. struct ieee80211_tx_info *info,
  493. struct ieee80211_hdr *hdr,
  494. int is_unicast, u8 std_id)
  495. {
  496. __le16 fc = hdr->frame_control;
  497. __le32 tx_flags = tx_cmd->tx_flags;
  498. tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
  499. if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
  500. tx_flags |= TX_CMD_FLG_ACK_MSK;
  501. if (ieee80211_is_mgmt(fc))
  502. tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
  503. if (ieee80211_is_probe_resp(fc) &&
  504. !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
  505. tx_flags |= TX_CMD_FLG_TSF_MSK;
  506. } else {
  507. tx_flags &= (~TX_CMD_FLG_ACK_MSK);
  508. tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
  509. }
  510. if (ieee80211_is_back_req(fc))
  511. tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
  512. tx_cmd->sta_id = std_id;
  513. if (ieee80211_has_morefrags(fc))
  514. tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
  515. if (ieee80211_is_data_qos(fc)) {
  516. u8 *qc = ieee80211_get_qos_ctl(hdr);
  517. tx_cmd->tid_tspec = qc[0] & 0xf;
  518. tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
  519. } else {
  520. tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
  521. }
  522. priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
  523. if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
  524. tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
  525. tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
  526. if (ieee80211_is_mgmt(fc)) {
  527. if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
  528. tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
  529. else
  530. tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
  531. } else {
  532. tx_cmd->timeout.pm_frame_timeout = 0;
  533. }
  534. tx_cmd->driver_txop = 0;
  535. tx_cmd->tx_flags = tx_flags;
  536. tx_cmd->next_frame_len = 0;
  537. }
  538. #define RTS_HCCA_RETRY_LIMIT 3
  539. #define RTS_DFAULT_RETRY_LIMIT 60
  540. static void iwl_tx_cmd_build_rate(struct iwl_priv *priv,
  541. struct iwl_tx_cmd *tx_cmd,
  542. struct ieee80211_tx_info *info,
  543. __le16 fc, int sta_id,
  544. int is_hcca)
  545. {
  546. u8 rts_retry_limit = 0;
  547. u8 data_retry_limit = 0;
  548. u8 rate_plcp;
  549. u16 rate_flags = 0;
  550. int rate_idx;
  551. rate_idx = min(ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xffff,
  552. IWL_RATE_COUNT - 1);
  553. rate_plcp = iwl_rates[rate_idx].plcp;
  554. rts_retry_limit = (is_hcca) ?
  555. RTS_HCCA_RETRY_LIMIT : RTS_DFAULT_RETRY_LIMIT;
  556. if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
  557. rate_flags |= RATE_MCS_CCK_MSK;
  558. if (ieee80211_is_probe_resp(fc)) {
  559. data_retry_limit = 3;
  560. if (data_retry_limit < rts_retry_limit)
  561. rts_retry_limit = data_retry_limit;
  562. } else
  563. data_retry_limit = IWL_DEFAULT_TX_RETRY;
  564. if (priv->data_retry_limit != -1)
  565. data_retry_limit = priv->data_retry_limit;
  566. if (ieee80211_is_data(fc)) {
  567. tx_cmd->initial_rate_index = 0;
  568. tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
  569. } else {
  570. switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
  571. case cpu_to_le16(IEEE80211_STYPE_AUTH):
  572. case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
  573. case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
  574. case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
  575. if (tx_cmd->tx_flags & TX_CMD_FLG_RTS_MSK) {
  576. tx_cmd->tx_flags &= ~TX_CMD_FLG_RTS_MSK;
  577. tx_cmd->tx_flags |= TX_CMD_FLG_CTS_MSK;
  578. }
  579. break;
  580. default:
  581. break;
  582. }
  583. /* Alternate between antenna A and B for successive frames */
  584. if (priv->use_ant_b_for_management_frame) {
  585. priv->use_ant_b_for_management_frame = 0;
  586. rate_flags |= RATE_MCS_ANT_B_MSK;
  587. } else {
  588. priv->use_ant_b_for_management_frame = 1;
  589. rate_flags |= RATE_MCS_ANT_A_MSK;
  590. }
  591. }
  592. tx_cmd->rts_retry_limit = rts_retry_limit;
  593. tx_cmd->data_retry_limit = data_retry_limit;
  594. tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
  595. }
  596. static void iwl_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
  597. struct ieee80211_tx_info *info,
  598. struct iwl_tx_cmd *tx_cmd,
  599. struct sk_buff *skb_frag,
  600. int sta_id)
  601. {
  602. struct ieee80211_key_conf *keyconf = info->control.hw_key;
  603. switch (keyconf->alg) {
  604. case ALG_CCMP:
  605. tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
  606. memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
  607. if (info->flags & IEEE80211_TX_CTL_AMPDU)
  608. tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
  609. IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
  610. break;
  611. case ALG_TKIP:
  612. tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
  613. ieee80211_get_tkip_key(keyconf, skb_frag,
  614. IEEE80211_TKIP_P2_KEY, tx_cmd->key);
  615. IWL_DEBUG_TX("tx_cmd with tkip hwcrypto\n");
  616. break;
  617. case ALG_WEP:
  618. tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
  619. (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
  620. if (keyconf->keylen == WEP_KEY_LEN_128)
  621. tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
  622. memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
  623. IWL_DEBUG_TX("Configuring packet for WEP encryption "
  624. "with key %d\n", keyconf->keyidx);
  625. break;
  626. default:
  627. printk(KERN_ERR "Unknown encode alg %d\n", keyconf->alg);
  628. break;
  629. }
  630. }
  631. static void iwl_update_tx_stats(struct iwl_priv *priv, u16 fc, u16 len)
  632. {
  633. /* 0 - mgmt, 1 - cnt, 2 - data */
  634. int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
  635. priv->tx_stats[idx].cnt++;
  636. priv->tx_stats[idx].bytes += len;
  637. }
  638. /*
  639. * start REPLY_TX command process
  640. */
  641. int iwl_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
  642. {
  643. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  644. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  645. struct iwl_tfd_frame *tfd;
  646. struct iwl_tx_queue *txq;
  647. struct iwl_queue *q;
  648. struct iwl_cmd *out_cmd;
  649. struct iwl_tx_cmd *tx_cmd;
  650. int swq_id, txq_id;
  651. dma_addr_t phys_addr;
  652. dma_addr_t txcmd_phys;
  653. dma_addr_t scratch_phys;
  654. u16 len, idx, len_org;
  655. u16 seq_number = 0;
  656. __le16 fc;
  657. u8 hdr_len, unicast;
  658. u8 sta_id;
  659. u8 wait_write_ptr = 0;
  660. u8 tid = 0;
  661. u8 *qc = NULL;
  662. unsigned long flags;
  663. int ret;
  664. spin_lock_irqsave(&priv->lock, flags);
  665. if (iwl_is_rfkill(priv)) {
  666. IWL_DEBUG_DROP("Dropping - RF KILL\n");
  667. goto drop_unlock;
  668. }
  669. if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) ==
  670. IWL_INVALID_RATE) {
  671. IWL_ERROR("ERROR: No TX rate available.\n");
  672. goto drop_unlock;
  673. }
  674. unicast = !is_multicast_ether_addr(hdr->addr1);
  675. fc = hdr->frame_control;
  676. #ifdef CONFIG_IWLWIFI_DEBUG
  677. if (ieee80211_is_auth(fc))
  678. IWL_DEBUG_TX("Sending AUTH frame\n");
  679. else if (ieee80211_is_assoc_req(fc))
  680. IWL_DEBUG_TX("Sending ASSOC frame\n");
  681. else if (ieee80211_is_reassoc_req(fc))
  682. IWL_DEBUG_TX("Sending REASSOC frame\n");
  683. #endif
  684. /* drop all data frame if we are not associated */
  685. if (ieee80211_is_data(fc) &&
  686. (priv->iw_mode != IEEE80211_IF_TYPE_MNTR ||
  687. !(info->flags & IEEE80211_TX_CTL_INJECTED)) && /* packet injection */
  688. (!iwl_is_associated(priv) ||
  689. ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && !priv->assoc_id) ||
  690. !priv->assoc_station_added)) {
  691. IWL_DEBUG_DROP("Dropping - !iwl_is_associated\n");
  692. goto drop_unlock;
  693. }
  694. spin_unlock_irqrestore(&priv->lock, flags);
  695. hdr_len = ieee80211_hdrlen(fc);
  696. /* Find (or create) index into station table for destination station */
  697. sta_id = iwl_get_sta_id(priv, hdr);
  698. if (sta_id == IWL_INVALID_STATION) {
  699. DECLARE_MAC_BUF(mac);
  700. IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
  701. print_mac(mac, hdr->addr1));
  702. goto drop;
  703. }
  704. IWL_DEBUG_TX("station Id %d\n", sta_id);
  705. swq_id = skb_get_queue_mapping(skb);
  706. txq_id = swq_id;
  707. if (ieee80211_is_data_qos(fc)) {
  708. qc = ieee80211_get_qos_ctl(hdr);
  709. tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
  710. seq_number = priv->stations[sta_id].tid[tid].seq_number;
  711. seq_number &= IEEE80211_SCTL_SEQ;
  712. hdr->seq_ctrl = hdr->seq_ctrl &
  713. __constant_cpu_to_le16(IEEE80211_SCTL_FRAG);
  714. hdr->seq_ctrl |= cpu_to_le16(seq_number);
  715. seq_number += 0x10;
  716. /* aggregation is on for this <sta,tid> */
  717. if (info->flags & IEEE80211_TX_CTL_AMPDU)
  718. txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
  719. priv->stations[sta_id].tid[tid].tfds_in_queue++;
  720. }
  721. /* Descriptor for chosen Tx queue */
  722. txq = &priv->txq[txq_id];
  723. q = &txq->q;
  724. spin_lock_irqsave(&priv->lock, flags);
  725. /* Set up first empty TFD within this queue's circular TFD buffer */
  726. tfd = &txq->bd[q->write_ptr];
  727. memset(tfd, 0, sizeof(*tfd));
  728. idx = get_cmd_index(q, q->write_ptr, 0);
  729. /* Set up driver data for this TFD */
  730. memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
  731. txq->txb[q->write_ptr].skb[0] = skb;
  732. /* Set up first empty entry in queue's array of Tx/cmd buffers */
  733. out_cmd = txq->cmd[idx];
  734. tx_cmd = &out_cmd->cmd.tx;
  735. memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
  736. memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
  737. /*
  738. * Set up the Tx-command (not MAC!) header.
  739. * Store the chosen Tx queue and TFD index within the sequence field;
  740. * after Tx, uCode's Tx response will return this value so driver can
  741. * locate the frame within the tx queue and do post-tx processing.
  742. */
  743. out_cmd->hdr.cmd = REPLY_TX;
  744. out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
  745. INDEX_TO_SEQ(q->write_ptr)));
  746. /* Copy MAC header from skb into command buffer */
  747. memcpy(tx_cmd->hdr, hdr, hdr_len);
  748. /*
  749. * Use the first empty entry in this queue's command buffer array
  750. * to contain the Tx command and MAC header concatenated together
  751. * (payload data will be in another buffer).
  752. * Size of this varies, due to varying MAC header length.
  753. * If end is not dword aligned, we'll have 2 extra bytes at the end
  754. * of the MAC header (device reads on dword boundaries).
  755. * We'll tell device about this padding later.
  756. */
  757. len = sizeof(struct iwl_tx_cmd) +
  758. sizeof(struct iwl_cmd_header) + hdr_len;
  759. len_org = len;
  760. len = (len + 3) & ~3;
  761. if (len_org != len)
  762. len_org = 1;
  763. else
  764. len_org = 0;
  765. /* Physical address of this Tx command's header (not MAC header!),
  766. * within command buffer array. */
  767. txcmd_phys = pci_map_single(priv->pci_dev, out_cmd,
  768. sizeof(struct iwl_cmd), PCI_DMA_TODEVICE);
  769. txcmd_phys += offsetof(struct iwl_cmd, hdr);
  770. /* Add buffer containing Tx command and MAC(!) header to TFD's
  771. * first entry */
  772. iwl_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
  773. if (info->control.hw_key)
  774. iwl_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
  775. /* Set up TFD's 2nd entry to point directly to remainder of skb,
  776. * if any (802.11 null frames have no payload). */
  777. len = skb->len - hdr_len;
  778. if (len) {
  779. phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
  780. len, PCI_DMA_TODEVICE);
  781. iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
  782. }
  783. /* Tell NIC about any 2-byte padding after MAC header */
  784. if (len_org)
  785. tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
  786. /* Total # bytes to be transmitted */
  787. len = (u16)skb->len;
  788. tx_cmd->len = cpu_to_le16(len);
  789. /* TODO need this for burst mode later on */
  790. iwl_tx_cmd_build_basic(priv, tx_cmd, info, hdr, unicast, sta_id);
  791. /* set is_hcca to 0; it probably will never be implemented */
  792. iwl_tx_cmd_build_rate(priv, tx_cmd, info, fc, sta_id, 0);
  793. iwl_update_tx_stats(priv, le16_to_cpu(fc), len);
  794. scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
  795. offsetof(struct iwl_tx_cmd, scratch);
  796. tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
  797. tx_cmd->dram_msb_ptr = iwl_get_dma_hi_address(scratch_phys);
  798. if (!ieee80211_has_morefrags(hdr->frame_control)) {
  799. txq->need_update = 1;
  800. if (qc)
  801. priv->stations[sta_id].tid[tid].seq_number = seq_number;
  802. } else {
  803. wait_write_ptr = 1;
  804. txq->need_update = 0;
  805. }
  806. iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
  807. iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
  808. /* Set up entry for this TFD in Tx byte-count array */
  809. priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, len);
  810. /* Tell device the write index *just past* this latest filled TFD */
  811. q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
  812. ret = iwl_txq_update_write_ptr(priv, txq);
  813. spin_unlock_irqrestore(&priv->lock, flags);
  814. if (ret)
  815. return ret;
  816. if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
  817. if (wait_write_ptr) {
  818. spin_lock_irqsave(&priv->lock, flags);
  819. txq->need_update = 1;
  820. iwl_txq_update_write_ptr(priv, txq);
  821. spin_unlock_irqrestore(&priv->lock, flags);
  822. } else {
  823. ieee80211_stop_queue(priv->hw, swq_id);
  824. }
  825. }
  826. return 0;
  827. drop_unlock:
  828. spin_unlock_irqrestore(&priv->lock, flags);
  829. drop:
  830. return -1;
  831. }
  832. EXPORT_SYMBOL(iwl_tx_skb);
  833. /*************** HOST COMMAND QUEUE FUNCTIONS *****/
  834. /**
  835. * iwl_enqueue_hcmd - enqueue a uCode command
  836. * @priv: device private data point
  837. * @cmd: a point to the ucode command structure
  838. *
  839. * The function returns < 0 values to indicate the operation is
  840. * failed. On success, it turns the index (> 0) of command in the
  841. * command queue.
  842. */
  843. int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
  844. {
  845. struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
  846. struct iwl_queue *q = &txq->q;
  847. struct iwl_tfd_frame *tfd;
  848. struct iwl_cmd *out_cmd;
  849. dma_addr_t phys_addr;
  850. unsigned long flags;
  851. int len, ret;
  852. u32 idx;
  853. u16 fix_size;
  854. cmd->len = priv->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len);
  855. fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
  856. /* If any of the command structures end up being larger than
  857. * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
  858. * we will need to increase the size of the TFD entries */
  859. BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
  860. !(cmd->meta.flags & CMD_SIZE_HUGE));
  861. if (iwl_is_rfkill(priv)) {
  862. IWL_DEBUG_INFO("Not sending command - RF KILL");
  863. return -EIO;
  864. }
  865. if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
  866. IWL_ERROR("No space for Tx\n");
  867. return -ENOSPC;
  868. }
  869. spin_lock_irqsave(&priv->hcmd_lock, flags);
  870. tfd = &txq->bd[q->write_ptr];
  871. memset(tfd, 0, sizeof(*tfd));
  872. idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
  873. out_cmd = txq->cmd[idx];
  874. out_cmd->hdr.cmd = cmd->id;
  875. memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
  876. memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
  877. /* At this point, the out_cmd now has all of the incoming cmd
  878. * information */
  879. out_cmd->hdr.flags = 0;
  880. out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
  881. INDEX_TO_SEQ(q->write_ptr));
  882. if (out_cmd->meta.flags & CMD_SIZE_HUGE)
  883. out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
  884. len = (idx == TFD_CMD_SLOTS) ?
  885. IWL_MAX_SCAN_SIZE : sizeof(struct iwl_cmd);
  886. phys_addr = pci_map_single(priv->pci_dev, out_cmd, len,
  887. PCI_DMA_TODEVICE);
  888. phys_addr += offsetof(struct iwl_cmd, hdr);
  889. iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
  890. #ifdef CONFIG_IWLWIFI_DEBUG
  891. switch (out_cmd->hdr.cmd) {
  892. case REPLY_TX_LINK_QUALITY_CMD:
  893. case SENSITIVITY_CMD:
  894. IWL_DEBUG_HC_DUMP("Sending command %s (#%x), seq: 0x%04X, "
  895. "%d bytes at %d[%d]:%d\n",
  896. get_cmd_string(out_cmd->hdr.cmd),
  897. out_cmd->hdr.cmd,
  898. le16_to_cpu(out_cmd->hdr.sequence), fix_size,
  899. q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
  900. break;
  901. default:
  902. IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
  903. "%d bytes at %d[%d]:%d\n",
  904. get_cmd_string(out_cmd->hdr.cmd),
  905. out_cmd->hdr.cmd,
  906. le16_to_cpu(out_cmd->hdr.sequence), fix_size,
  907. q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
  908. }
  909. #endif
  910. txq->need_update = 1;
  911. /* Set up entry in queue's byte count circular buffer */
  912. priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0);
  913. /* Increment and update queue's write index */
  914. q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
  915. ret = iwl_txq_update_write_ptr(priv, txq);
  916. spin_unlock_irqrestore(&priv->hcmd_lock, flags);
  917. return ret ? ret : idx;
  918. }
  919. int iwl_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
  920. {
  921. struct iwl_tx_queue *txq = &priv->txq[txq_id];
  922. struct iwl_queue *q = &txq->q;
  923. struct iwl_tx_info *tx_info;
  924. int nfreed = 0;
  925. if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
  926. IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
  927. "is out of range [0-%d] %d %d.\n", txq_id,
  928. index, q->n_bd, q->write_ptr, q->read_ptr);
  929. return 0;
  930. }
  931. for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
  932. q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
  933. tx_info = &txq->txb[txq->q.read_ptr];
  934. ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb[0]);
  935. tx_info->skb[0] = NULL;
  936. if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl)
  937. priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq);
  938. iwl_hw_txq_free_tfd(priv, txq);
  939. nfreed++;
  940. }
  941. return nfreed;
  942. }
  943. EXPORT_SYMBOL(iwl_tx_queue_reclaim);
  944. /**
  945. * iwl_hcmd_queue_reclaim - Reclaim TX command queue entries already Tx'd
  946. *
  947. * When FW advances 'R' index, all entries between old and new 'R' index
  948. * need to be reclaimed. As result, some free space forms. If there is
  949. * enough free space (> low mark), wake the stack that feeds us.
  950. */
  951. static void iwl_hcmd_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
  952. {
  953. struct iwl_tx_queue *txq = &priv->txq[txq_id];
  954. struct iwl_queue *q = &txq->q;
  955. struct iwl_tfd_frame *bd = &txq->bd[index];
  956. dma_addr_t dma_addr;
  957. int is_odd, buf_len;
  958. int nfreed = 0;
  959. if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
  960. IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
  961. "is out of range [0-%d] %d %d.\n", txq_id,
  962. index, q->n_bd, q->write_ptr, q->read_ptr);
  963. return;
  964. }
  965. for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
  966. q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
  967. if (nfreed > 1) {
  968. IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
  969. q->write_ptr, q->read_ptr);
  970. queue_work(priv->workqueue, &priv->restart);
  971. }
  972. is_odd = (index/2) & 0x1;
  973. if (is_odd) {
  974. dma_addr = IWL_GET_BITS(bd->pa[index], tb2_addr_lo16) |
  975. (IWL_GET_BITS(bd->pa[index],
  976. tb2_addr_hi20) << 16);
  977. buf_len = IWL_GET_BITS(bd->pa[index], tb2_len);
  978. } else {
  979. dma_addr = le32_to_cpu(bd->pa[index].tb1_addr);
  980. buf_len = IWL_GET_BITS(bd->pa[index], tb1_len);
  981. }
  982. pci_unmap_single(priv->pci_dev, dma_addr, buf_len,
  983. PCI_DMA_TODEVICE);
  984. nfreed++;
  985. }
  986. }
  987. /**
  988. * iwl_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
  989. * @rxb: Rx buffer to reclaim
  990. *
  991. * If an Rx buffer has an async callback associated with it the callback
  992. * will be executed. The attached skb (if present) will only be freed
  993. * if the callback returns 1
  994. */
  995. void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
  996. {
  997. struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
  998. u16 sequence = le16_to_cpu(pkt->hdr.sequence);
  999. int txq_id = SEQ_TO_QUEUE(sequence);
  1000. int index = SEQ_TO_INDEX(sequence);
  1001. int cmd_index;
  1002. bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
  1003. struct iwl_cmd *cmd;
  1004. /* If a Tx command is being handled and it isn't in the actual
  1005. * command queue then there a command routing bug has been introduced
  1006. * in the queue management code. */
  1007. if (txq_id != IWL_CMD_QUEUE_NUM)
  1008. IWL_ERROR("Error wrong command queue %d command id 0x%X\n",
  1009. txq_id, pkt->hdr.cmd);
  1010. BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
  1011. cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
  1012. cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
  1013. /* Input error checking is done when commands are added to queue. */
  1014. if (cmd->meta.flags & CMD_WANT_SKB) {
  1015. cmd->meta.source->u.skb = rxb->skb;
  1016. rxb->skb = NULL;
  1017. } else if (cmd->meta.u.callback &&
  1018. !cmd->meta.u.callback(priv, cmd, rxb->skb))
  1019. rxb->skb = NULL;
  1020. iwl_hcmd_queue_reclaim(priv, txq_id, index);
  1021. if (!(cmd->meta.flags & CMD_ASYNC)) {
  1022. clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
  1023. wake_up_interruptible(&priv->wait_command_queue);
  1024. }
  1025. }
  1026. EXPORT_SYMBOL(iwl_tx_cmd_complete);
  1027. /*
  1028. * Find first available (lowest unused) Tx Queue, mark it "active".
  1029. * Called only when finding queue for aggregation.
  1030. * Should never return anything < 7, because they should already
  1031. * be in use as EDCA AC (0-3), Command (4), HCCA (5, 6).
  1032. */
  1033. static int iwl_txq_ctx_activate_free(struct iwl_priv *priv)
  1034. {
  1035. int txq_id;
  1036. for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
  1037. if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
  1038. return txq_id;
  1039. return -1;
  1040. }
  1041. int iwl_tx_agg_start(struct iwl_priv *priv, const u8 *ra, u16 tid, u16 *ssn)
  1042. {
  1043. int sta_id;
  1044. int tx_fifo;
  1045. int txq_id;
  1046. int ret;
  1047. unsigned long flags;
  1048. struct iwl_tid_data *tid_data;
  1049. DECLARE_MAC_BUF(mac);
  1050. if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
  1051. tx_fifo = default_tid_to_tx_fifo[tid];
  1052. else
  1053. return -EINVAL;
  1054. IWL_WARNING("%s on ra = %s tid = %d\n",
  1055. __func__, print_mac(mac, ra), tid);
  1056. sta_id = iwl_find_station(priv, ra);
  1057. if (sta_id == IWL_INVALID_STATION)
  1058. return -ENXIO;
  1059. if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
  1060. IWL_ERROR("Start AGG when state is not IWL_AGG_OFF !\n");
  1061. return -ENXIO;
  1062. }
  1063. txq_id = iwl_txq_ctx_activate_free(priv);
  1064. if (txq_id == -1)
  1065. return -ENXIO;
  1066. spin_lock_irqsave(&priv->sta_lock, flags);
  1067. tid_data = &priv->stations[sta_id].tid[tid];
  1068. *ssn = SEQ_TO_SN(tid_data->seq_number);
  1069. tid_data->agg.txq_id = txq_id;
  1070. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1071. ret = priv->cfg->ops->lib->txq_agg_enable(priv, txq_id, tx_fifo,
  1072. sta_id, tid, *ssn);
  1073. if (ret)
  1074. return ret;
  1075. if (tid_data->tfds_in_queue == 0) {
  1076. printk(KERN_ERR "HW queue is empty\n");
  1077. tid_data->agg.state = IWL_AGG_ON;
  1078. ieee80211_start_tx_ba_cb_irqsafe(priv->hw, ra, tid);
  1079. } else {
  1080. IWL_DEBUG_HT("HW queue is NOT empty: %d packets in HW queue\n",
  1081. tid_data->tfds_in_queue);
  1082. tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
  1083. }
  1084. return ret;
  1085. }
  1086. EXPORT_SYMBOL(iwl_tx_agg_start);
  1087. int iwl_tx_agg_stop(struct iwl_priv *priv , const u8 *ra, u16 tid)
  1088. {
  1089. int tx_fifo_id, txq_id, sta_id, ssn = -1;
  1090. struct iwl_tid_data *tid_data;
  1091. int ret, write_ptr, read_ptr;
  1092. unsigned long flags;
  1093. DECLARE_MAC_BUF(mac);
  1094. if (!ra) {
  1095. IWL_ERROR("ra = NULL\n");
  1096. return -EINVAL;
  1097. }
  1098. if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
  1099. tx_fifo_id = default_tid_to_tx_fifo[tid];
  1100. else
  1101. return -EINVAL;
  1102. sta_id = iwl_find_station(priv, ra);
  1103. if (sta_id == IWL_INVALID_STATION)
  1104. return -ENXIO;
  1105. if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON)
  1106. IWL_WARNING("Stopping AGG while state not IWL_AGG_ON\n");
  1107. tid_data = &priv->stations[sta_id].tid[tid];
  1108. ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
  1109. txq_id = tid_data->agg.txq_id;
  1110. write_ptr = priv->txq[txq_id].q.write_ptr;
  1111. read_ptr = priv->txq[txq_id].q.read_ptr;
  1112. /* The queue is not empty */
  1113. if (write_ptr != read_ptr) {
  1114. IWL_DEBUG_HT("Stopping a non empty AGG HW QUEUE\n");
  1115. priv->stations[sta_id].tid[tid].agg.state =
  1116. IWL_EMPTYING_HW_QUEUE_DELBA;
  1117. return 0;
  1118. }
  1119. IWL_DEBUG_HT("HW queue is empty\n");
  1120. priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
  1121. spin_lock_irqsave(&priv->lock, flags);
  1122. ret = priv->cfg->ops->lib->txq_agg_disable(priv, txq_id, ssn,
  1123. tx_fifo_id);
  1124. spin_unlock_irqrestore(&priv->lock, flags);
  1125. if (ret)
  1126. return ret;
  1127. ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, ra, tid);
  1128. return 0;
  1129. }
  1130. EXPORT_SYMBOL(iwl_tx_agg_stop);
  1131. int iwl_txq_check_empty(struct iwl_priv *priv, int sta_id, u8 tid, int txq_id)
  1132. {
  1133. struct iwl_queue *q = &priv->txq[txq_id].q;
  1134. u8 *addr = priv->stations[sta_id].sta.sta.addr;
  1135. struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
  1136. switch (priv->stations[sta_id].tid[tid].agg.state) {
  1137. case IWL_EMPTYING_HW_QUEUE_DELBA:
  1138. /* We are reclaiming the last packet of the */
  1139. /* aggregated HW queue */
  1140. if (txq_id == tid_data->agg.txq_id &&
  1141. q->read_ptr == q->write_ptr) {
  1142. u16 ssn = SEQ_TO_SN(tid_data->seq_number);
  1143. int tx_fifo = default_tid_to_tx_fifo[tid];
  1144. IWL_DEBUG_HT("HW queue empty: continue DELBA flow\n");
  1145. priv->cfg->ops->lib->txq_agg_disable(priv, txq_id,
  1146. ssn, tx_fifo);
  1147. tid_data->agg.state = IWL_AGG_OFF;
  1148. ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, addr, tid);
  1149. }
  1150. break;
  1151. case IWL_EMPTYING_HW_QUEUE_ADDBA:
  1152. /* We are reclaiming the last packet of the queue */
  1153. if (tid_data->tfds_in_queue == 0) {
  1154. IWL_DEBUG_HT("HW queue empty: continue ADDBA flow\n");
  1155. tid_data->agg.state = IWL_AGG_ON;
  1156. ieee80211_start_tx_ba_cb_irqsafe(priv->hw, addr, tid);
  1157. }
  1158. break;
  1159. }
  1160. return 0;
  1161. }
  1162. EXPORT_SYMBOL(iwl_txq_check_empty);
  1163. /**
  1164. * iwl_tx_status_reply_compressed_ba - Update tx status from block-ack
  1165. *
  1166. * Go through block-ack's bitmap of ACK'd frames, update driver's record of
  1167. * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
  1168. */
  1169. static int iwl_tx_status_reply_compressed_ba(struct iwl_priv *priv,
  1170. struct iwl_ht_agg *agg,
  1171. struct iwl_compressed_ba_resp *ba_resp)
  1172. {
  1173. int i, sh, ack;
  1174. u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
  1175. u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
  1176. u64 bitmap;
  1177. int successes = 0;
  1178. struct ieee80211_tx_info *info;
  1179. if (unlikely(!agg->wait_for_ba)) {
  1180. IWL_ERROR("Received BA when not expected\n");
  1181. return -EINVAL;
  1182. }
  1183. /* Mark that the expected block-ack response arrived */
  1184. agg->wait_for_ba = 0;
  1185. IWL_DEBUG_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
  1186. /* Calculate shift to align block-ack bits with our Tx window bits */
  1187. sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl>>4);
  1188. if (sh < 0) /* tbw something is wrong with indices */
  1189. sh += 0x100;
  1190. /* don't use 64-bit values for now */
  1191. bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
  1192. if (agg->frame_count > (64 - sh)) {
  1193. IWL_DEBUG_TX_REPLY("more frames than bitmap size");
  1194. return -1;
  1195. }
  1196. /* check for success or failure according to the
  1197. * transmitted bitmap and block-ack bitmap */
  1198. bitmap &= agg->bitmap;
  1199. /* For each frame attempted in aggregation,
  1200. * update driver's record of tx frame's status. */
  1201. for (i = 0; i < agg->frame_count ; i++) {
  1202. ack = bitmap & (1ULL << i);
  1203. successes += !!ack;
  1204. IWL_DEBUG_TX_REPLY("%s ON i=%d idx=%d raw=%d\n",
  1205. ack? "ACK":"NACK", i, (agg->start_idx + i) & 0xff,
  1206. agg->start_idx + i);
  1207. }
  1208. info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb[0]);
  1209. memset(&info->status, 0, sizeof(info->status));
  1210. info->flags = IEEE80211_TX_STAT_ACK;
  1211. info->flags |= IEEE80211_TX_STAT_AMPDU;
  1212. info->status.ampdu_ack_map = successes;
  1213. info->status.ampdu_ack_len = agg->frame_count;
  1214. iwl_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
  1215. IWL_DEBUG_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
  1216. return 0;
  1217. }
  1218. /**
  1219. * iwl_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
  1220. *
  1221. * Handles block-acknowledge notification from device, which reports success
  1222. * of frames sent via aggregation.
  1223. */
  1224. void iwl_rx_reply_compressed_ba(struct iwl_priv *priv,
  1225. struct iwl_rx_mem_buffer *rxb)
  1226. {
  1227. struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
  1228. struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
  1229. int index;
  1230. struct iwl_tx_queue *txq = NULL;
  1231. struct iwl_ht_agg *agg;
  1232. DECLARE_MAC_BUF(mac);
  1233. /* "flow" corresponds to Tx queue */
  1234. u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
  1235. /* "ssn" is start of block-ack Tx window, corresponds to index
  1236. * (in Tx queue's circular buffer) of first TFD/frame in window */
  1237. u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
  1238. if (scd_flow >= priv->hw_params.max_txq_num) {
  1239. IWL_ERROR("BUG_ON scd_flow is bigger than number of queues\n");
  1240. return;
  1241. }
  1242. txq = &priv->txq[scd_flow];
  1243. agg = &priv->stations[ba_resp->sta_id].tid[ba_resp->tid].agg;
  1244. /* Find index just before block-ack window */
  1245. index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
  1246. /* TODO: Need to get this copy more safely - now good for debug */
  1247. IWL_DEBUG_TX_REPLY("REPLY_COMPRESSED_BA [%d]Received from %s, "
  1248. "sta_id = %d\n",
  1249. agg->wait_for_ba,
  1250. print_mac(mac, (u8 *) &ba_resp->sta_addr_lo32),
  1251. ba_resp->sta_id);
  1252. IWL_DEBUG_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
  1253. "%d, scd_ssn = %d\n",
  1254. ba_resp->tid,
  1255. ba_resp->seq_ctl,
  1256. (unsigned long long)le64_to_cpu(ba_resp->bitmap),
  1257. ba_resp->scd_flow,
  1258. ba_resp->scd_ssn);
  1259. IWL_DEBUG_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx \n",
  1260. agg->start_idx,
  1261. (unsigned long long)agg->bitmap);
  1262. /* Update driver's record of ACK vs. not for each frame in window */
  1263. iwl_tx_status_reply_compressed_ba(priv, agg, ba_resp);
  1264. /* Release all TFDs before the SSN, i.e. all TFDs in front of
  1265. * block-ack window (we assume that they've been successfully
  1266. * transmitted ... if not, it's too late anyway). */
  1267. if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
  1268. /* calculate mac80211 ampdu sw queue to wake */
  1269. int ampdu_q =
  1270. scd_flow - priv->hw_params.first_ampdu_q + priv->hw->queues;
  1271. int freed = iwl_tx_queue_reclaim(priv, scd_flow, index);
  1272. priv->stations[ba_resp->sta_id].
  1273. tid[ba_resp->tid].tfds_in_queue -= freed;
  1274. if (iwl_queue_space(&txq->q) > txq->q.low_mark &&
  1275. priv->mac80211_registered &&
  1276. agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)
  1277. ieee80211_wake_queue(priv->hw, ampdu_q);
  1278. iwl_txq_check_empty(priv, ba_resp->sta_id,
  1279. ba_resp->tid, scd_flow);
  1280. }
  1281. }
  1282. EXPORT_SYMBOL(iwl_rx_reply_compressed_ba);
  1283. #ifdef CONFIG_IWLWIFI_DEBUG
  1284. #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
  1285. const char *iwl_get_tx_fail_reason(u32 status)
  1286. {
  1287. switch (status & TX_STATUS_MSK) {
  1288. case TX_STATUS_SUCCESS:
  1289. return "SUCCESS";
  1290. TX_STATUS_ENTRY(SHORT_LIMIT);
  1291. TX_STATUS_ENTRY(LONG_LIMIT);
  1292. TX_STATUS_ENTRY(FIFO_UNDERRUN);
  1293. TX_STATUS_ENTRY(MGMNT_ABORT);
  1294. TX_STATUS_ENTRY(NEXT_FRAG);
  1295. TX_STATUS_ENTRY(LIFE_EXPIRE);
  1296. TX_STATUS_ENTRY(DEST_PS);
  1297. TX_STATUS_ENTRY(ABORTED);
  1298. TX_STATUS_ENTRY(BT_RETRY);
  1299. TX_STATUS_ENTRY(STA_INVALID);
  1300. TX_STATUS_ENTRY(FRAG_DROPPED);
  1301. TX_STATUS_ENTRY(TID_DISABLE);
  1302. TX_STATUS_ENTRY(FRAME_FLUSHED);
  1303. TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
  1304. TX_STATUS_ENTRY(TX_LOCKED);
  1305. TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
  1306. }
  1307. return "UNKNOWN";
  1308. }
  1309. EXPORT_SYMBOL(iwl_get_tx_fail_reason);
  1310. #endif /* CONFIG_IWLWIFI_DEBUG */