iwl-tx.c 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  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. /**
  38. * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
  39. *
  40. * Does NOT advance any TFD circular buffer read/write indexes
  41. * Does NOT free the TFD itself (which is within circular buffer)
  42. */
  43. int iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
  44. {
  45. struct iwl_tfd_frame *bd_tmp = (struct iwl_tfd_frame *)&txq->bd[0];
  46. struct iwl_tfd_frame *bd = &bd_tmp[txq->q.read_ptr];
  47. struct pci_dev *dev = priv->pci_dev;
  48. int i;
  49. int counter = 0;
  50. int index, is_odd;
  51. /* Host command buffers stay mapped in memory, nothing to clean */
  52. if (txq->q.id == IWL_CMD_QUEUE_NUM)
  53. return 0;
  54. /* Sanity check on number of chunks */
  55. counter = IWL_GET_BITS(*bd, num_tbs);
  56. if (counter > MAX_NUM_OF_TBS) {
  57. IWL_ERROR("Too many chunks: %i\n", counter);
  58. /* @todo issue fatal error, it is quite serious situation */
  59. return 0;
  60. }
  61. /* Unmap chunks, if any.
  62. * TFD info for odd chunks is different format than for even chunks. */
  63. for (i = 0; i < counter; i++) {
  64. index = i / 2;
  65. is_odd = i & 0x1;
  66. if (is_odd)
  67. pci_unmap_single(
  68. dev,
  69. IWL_GET_BITS(bd->pa[index], tb2_addr_lo16) |
  70. (IWL_GET_BITS(bd->pa[index],
  71. tb2_addr_hi20) << 16),
  72. IWL_GET_BITS(bd->pa[index], tb2_len),
  73. PCI_DMA_TODEVICE);
  74. else if (i > 0)
  75. pci_unmap_single(dev,
  76. le32_to_cpu(bd->pa[index].tb1_addr),
  77. IWL_GET_BITS(bd->pa[index], tb1_len),
  78. PCI_DMA_TODEVICE);
  79. /* Free SKB, if any, for this chunk */
  80. if (txq->txb[txq->q.read_ptr].skb[i]) {
  81. struct sk_buff *skb = txq->txb[txq->q.read_ptr].skb[i];
  82. dev_kfree_skb(skb);
  83. txq->txb[txq->q.read_ptr].skb[i] = NULL;
  84. }
  85. }
  86. return 0;
  87. }
  88. EXPORT_SYMBOL(iwl_hw_txq_free_tfd);
  89. int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv, void *ptr,
  90. dma_addr_t addr, u16 len)
  91. {
  92. int index, is_odd;
  93. struct iwl_tfd_frame *tfd = ptr;
  94. u32 num_tbs = IWL_GET_BITS(*tfd, num_tbs);
  95. /* Each TFD can point to a maximum 20 Tx buffers */
  96. if ((num_tbs >= MAX_NUM_OF_TBS) || (num_tbs < 0)) {
  97. IWL_ERROR("Error can not send more than %d chunks\n",
  98. MAX_NUM_OF_TBS);
  99. return -EINVAL;
  100. }
  101. index = num_tbs / 2;
  102. is_odd = num_tbs & 0x1;
  103. if (!is_odd) {
  104. tfd->pa[index].tb1_addr = cpu_to_le32(addr);
  105. IWL_SET_BITS(tfd->pa[index], tb1_addr_hi,
  106. iwl_get_dma_hi_address(addr));
  107. IWL_SET_BITS(tfd->pa[index], tb1_len, len);
  108. } else {
  109. IWL_SET_BITS(tfd->pa[index], tb2_addr_lo16,
  110. (u32) (addr & 0xffff));
  111. IWL_SET_BITS(tfd->pa[index], tb2_addr_hi20, addr >> 16);
  112. IWL_SET_BITS(tfd->pa[index], tb2_len, len);
  113. }
  114. IWL_SET_BITS(*tfd, num_tbs, num_tbs + 1);
  115. return 0;
  116. }
  117. EXPORT_SYMBOL(iwl_hw_txq_attach_buf_to_tfd);
  118. /**
  119. * iwl_txq_update_write_ptr - Send new write index to hardware
  120. */
  121. int iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq)
  122. {
  123. u32 reg = 0;
  124. int ret = 0;
  125. int txq_id = txq->q.id;
  126. if (txq->need_update == 0)
  127. return ret;
  128. /* if we're trying to save power */
  129. if (test_bit(STATUS_POWER_PMI, &priv->status)) {
  130. /* wake up nic if it's powered down ...
  131. * uCode will wake up, and interrupt us again, so next
  132. * time we'll skip this part. */
  133. reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
  134. if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
  135. IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
  136. iwl_set_bit(priv, CSR_GP_CNTRL,
  137. CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
  138. return ret;
  139. }
  140. /* restore this queue's parameters in nic hardware. */
  141. ret = iwl_grab_nic_access(priv);
  142. if (ret)
  143. return ret;
  144. iwl_write_direct32(priv, HBUS_TARG_WRPTR,
  145. txq->q.write_ptr | (txq_id << 8));
  146. iwl_release_nic_access(priv);
  147. /* else not in power-save mode, uCode will never sleep when we're
  148. * trying to tx (during RFKILL, we're not trying to tx). */
  149. } else
  150. iwl_write32(priv, HBUS_TARG_WRPTR,
  151. txq->q.write_ptr | (txq_id << 8));
  152. txq->need_update = 0;
  153. return ret;
  154. }
  155. EXPORT_SYMBOL(iwl_txq_update_write_ptr);
  156. /**
  157. * iwl_tx_queue_free - Deallocate DMA queue.
  158. * @txq: Transmit queue to deallocate.
  159. *
  160. * Empty queue by removing and destroying all BD's.
  161. * Free all buffers.
  162. * 0-fill, but do not free "txq" descriptor structure.
  163. */
  164. static void iwl_tx_queue_free(struct iwl_priv *priv, struct iwl_tx_queue *txq)
  165. {
  166. struct iwl_queue *q = &txq->q;
  167. struct pci_dev *dev = priv->pci_dev;
  168. int len;
  169. if (q->n_bd == 0)
  170. return;
  171. /* first, empty all BD's */
  172. for (; q->write_ptr != q->read_ptr;
  173. q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
  174. iwl_hw_txq_free_tfd(priv, txq);
  175. len = sizeof(struct iwl_cmd) * q->n_window;
  176. if (q->id == IWL_CMD_QUEUE_NUM)
  177. len += IWL_MAX_SCAN_SIZE;
  178. /* De-alloc array of command/tx buffers */
  179. pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
  180. /* De-alloc circular buffer of TFDs */
  181. if (txq->q.n_bd)
  182. pci_free_consistent(dev, sizeof(struct iwl_tfd_frame) *
  183. txq->q.n_bd, txq->bd, txq->q.dma_addr);
  184. /* De-alloc array of per-TFD driver data */
  185. kfree(txq->txb);
  186. txq->txb = NULL;
  187. /* 0-fill queue descriptor structure */
  188. memset(txq, 0, sizeof(*txq));
  189. }
  190. /*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
  191. * DMA services
  192. *
  193. * Theory of operation
  194. *
  195. * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
  196. * of buffer descriptors, each of which points to one or more data buffers for
  197. * the device to read from or fill. Driver and device exchange status of each
  198. * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
  199. * entries in each circular buffer, to protect against confusing empty and full
  200. * queue states.
  201. *
  202. * The device reads or writes the data in the queues via the device's several
  203. * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
  204. *
  205. * For Tx queue, there are low mark and high mark limits. If, after queuing
  206. * the packet for Tx, free space become < low mark, Tx queue stopped. When
  207. * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
  208. * Tx queue resumed.
  209. *
  210. * See more detailed info in iwl-4965-hw.h.
  211. ***************************************************/
  212. int iwl_queue_space(const struct iwl_queue *q)
  213. {
  214. int s = q->read_ptr - q->write_ptr;
  215. if (q->read_ptr > q->write_ptr)
  216. s -= q->n_bd;
  217. if (s <= 0)
  218. s += q->n_window;
  219. /* keep some reserve to not confuse empty and full situations */
  220. s -= 2;
  221. if (s < 0)
  222. s = 0;
  223. return s;
  224. }
  225. EXPORT_SYMBOL(iwl_queue_space);
  226. /**
  227. * iwl_hw_txq_ctx_free - Free TXQ Context
  228. *
  229. * Destroy all TX DMA queues and structures
  230. */
  231. void iwl_hw_txq_ctx_free(struct iwl_priv *priv)
  232. {
  233. int txq_id;
  234. /* Tx queues */
  235. for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
  236. iwl_tx_queue_free(priv, &priv->txq[txq_id]);
  237. /* Keep-warm buffer */
  238. iwl_kw_free(priv);
  239. }
  240. EXPORT_SYMBOL(iwl_hw_txq_ctx_free);
  241. /**
  242. * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
  243. */
  244. static int iwl_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
  245. int count, int slots_num, u32 id)
  246. {
  247. q->n_bd = count;
  248. q->n_window = slots_num;
  249. q->id = id;
  250. /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
  251. * and iwl_queue_dec_wrap are broken. */
  252. BUG_ON(!is_power_of_2(count));
  253. /* slots_num must be power-of-two size, otherwise
  254. * get_cmd_index is broken. */
  255. BUG_ON(!is_power_of_2(slots_num));
  256. q->low_mark = q->n_window / 4;
  257. if (q->low_mark < 4)
  258. q->low_mark = 4;
  259. q->high_mark = q->n_window / 8;
  260. if (q->high_mark < 2)
  261. q->high_mark = 2;
  262. q->write_ptr = q->read_ptr = 0;
  263. return 0;
  264. }
  265. /**
  266. * iwl_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
  267. */
  268. static int iwl_tx_queue_alloc(struct iwl_priv *priv,
  269. struct iwl_tx_queue *txq, u32 id)
  270. {
  271. struct pci_dev *dev = priv->pci_dev;
  272. /* Driver private data, only for Tx (not command) queues,
  273. * not shared with device. */
  274. if (id != IWL_CMD_QUEUE_NUM) {
  275. txq->txb = kmalloc(sizeof(txq->txb[0]) *
  276. TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
  277. if (!txq->txb) {
  278. IWL_ERROR("kmalloc for auxiliary BD "
  279. "structures failed\n");
  280. goto error;
  281. }
  282. } else
  283. txq->txb = NULL;
  284. /* Circular buffer of transmit frame descriptors (TFDs),
  285. * shared with device */
  286. txq->bd = pci_alloc_consistent(dev,
  287. sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
  288. &txq->q.dma_addr);
  289. if (!txq->bd) {
  290. IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
  291. sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
  292. goto error;
  293. }
  294. txq->q.id = id;
  295. return 0;
  296. error:
  297. kfree(txq->txb);
  298. txq->txb = NULL;
  299. return -ENOMEM;
  300. }
  301. /*
  302. * Tell nic where to find circular buffer of Tx Frame Descriptors for
  303. * given Tx queue, and enable the DMA channel used for that queue.
  304. *
  305. * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
  306. * channels supported in hardware.
  307. */
  308. static int iwl_hw_tx_queue_init(struct iwl_priv *priv,
  309. struct iwl_tx_queue *txq)
  310. {
  311. int rc;
  312. unsigned long flags;
  313. int txq_id = txq->q.id;
  314. spin_lock_irqsave(&priv->lock, flags);
  315. rc = iwl_grab_nic_access(priv);
  316. if (rc) {
  317. spin_unlock_irqrestore(&priv->lock, flags);
  318. return rc;
  319. }
  320. /* Circular buffer (TFD queue in DRAM) physical base address */
  321. iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
  322. txq->q.dma_addr >> 8);
  323. /* Enable DMA channel, using same id as for TFD queue */
  324. iwl_write_direct32(
  325. priv, FH_TCSR_CHNL_TX_CONFIG_REG(txq_id),
  326. FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
  327. FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL);
  328. iwl_release_nic_access(priv);
  329. spin_unlock_irqrestore(&priv->lock, flags);
  330. return 0;
  331. }
  332. /**
  333. * iwl_tx_queue_init - Allocate and initialize one tx/cmd queue
  334. */
  335. static int iwl_tx_queue_init(struct iwl_priv *priv,
  336. struct iwl_tx_queue *txq,
  337. int slots_num, u32 txq_id)
  338. {
  339. struct pci_dev *dev = priv->pci_dev;
  340. int len;
  341. int rc = 0;
  342. /*
  343. * Alloc buffer array for commands (Tx or other types of commands).
  344. * For the command queue (#4), allocate command space + one big
  345. * command for scan, since scan command is very huge; the system will
  346. * not have two scans at the same time, so only one is needed.
  347. * For normal Tx queues (all other queues), no super-size command
  348. * space is needed.
  349. */
  350. len = sizeof(struct iwl_cmd) * slots_num;
  351. if (txq_id == IWL_CMD_QUEUE_NUM)
  352. len += IWL_MAX_SCAN_SIZE;
  353. txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
  354. if (!txq->cmd)
  355. return -ENOMEM;
  356. /* Alloc driver data array and TFD circular buffer */
  357. rc = iwl_tx_queue_alloc(priv, txq, txq_id);
  358. if (rc) {
  359. pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
  360. return -ENOMEM;
  361. }
  362. txq->need_update = 0;
  363. /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
  364. * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
  365. BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
  366. /* Initialize queue's high/low-water marks, and head/tail indexes */
  367. iwl_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
  368. /* Tell device where to find queue */
  369. iwl_hw_tx_queue_init(priv, txq);
  370. return 0;
  371. }
  372. /**
  373. * iwl_txq_ctx_reset - Reset TX queue context
  374. * Destroys all DMA structures and initialise them again
  375. *
  376. * @param priv
  377. * @return error code
  378. */
  379. int iwl_txq_ctx_reset(struct iwl_priv *priv)
  380. {
  381. int ret = 0;
  382. int txq_id, slots_num;
  383. iwl_kw_free(priv);
  384. /* Free all tx/cmd queues and keep-warm buffer */
  385. iwl_hw_txq_ctx_free(priv);
  386. /* Alloc keep-warm buffer */
  387. ret = iwl_kw_alloc(priv);
  388. if (ret) {
  389. IWL_ERROR("Keep Warm allocation failed");
  390. goto error_kw;
  391. }
  392. /* Turn off all Tx DMA fifos */
  393. ret = priv->cfg->ops->lib->disable_tx_fifo(priv);
  394. if (unlikely(ret))
  395. goto error_reset;
  396. /* Tell nic where to find the keep-warm buffer */
  397. ret = iwl_kw_init(priv);
  398. if (ret) {
  399. IWL_ERROR("kw_init failed\n");
  400. goto error_reset;
  401. }
  402. /* Alloc and init all (default 16) Tx queues,
  403. * including the command queue (#4) */
  404. for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
  405. slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
  406. TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
  407. ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
  408. txq_id);
  409. if (ret) {
  410. IWL_ERROR("Tx %d queue init failed\n", txq_id);
  411. goto error;
  412. }
  413. }
  414. return ret;
  415. error:
  416. iwl_hw_txq_ctx_free(priv);
  417. error_reset:
  418. iwl_kw_free(priv);
  419. error_kw:
  420. return ret;
  421. }
  422. /*
  423. * handle build REPLY_TX command notification.
  424. */
  425. static void iwl_tx_cmd_build_basic(struct iwl_priv *priv,
  426. struct iwl_tx_cmd *tx_cmd,
  427. struct ieee80211_tx_control *ctrl,
  428. struct ieee80211_hdr *hdr,
  429. int is_unicast, u8 std_id)
  430. {
  431. u16 fc = le16_to_cpu(hdr->frame_control);
  432. __le32 tx_flags = tx_cmd->tx_flags;
  433. tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
  434. if (!(ctrl->flags & IEEE80211_TXCTL_NO_ACK)) {
  435. tx_flags |= TX_CMD_FLG_ACK_MSK;
  436. if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
  437. tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
  438. if (ieee80211_is_probe_response(fc) &&
  439. !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
  440. tx_flags |= TX_CMD_FLG_TSF_MSK;
  441. } else {
  442. tx_flags &= (~TX_CMD_FLG_ACK_MSK);
  443. tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
  444. }
  445. if (ieee80211_is_back_request(fc))
  446. tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
  447. tx_cmd->sta_id = std_id;
  448. if (ieee80211_get_morefrag(hdr))
  449. tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
  450. if (ieee80211_is_qos_data(fc)) {
  451. u8 *qc = ieee80211_get_qos_ctrl(hdr, ieee80211_get_hdrlen(fc));
  452. tx_cmd->tid_tspec = qc[0] & 0xf;
  453. tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
  454. } else {
  455. tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
  456. }
  457. if (ctrl->flags & IEEE80211_TXCTL_USE_RTS_CTS) {
  458. tx_flags |= TX_CMD_FLG_RTS_MSK;
  459. tx_flags &= ~TX_CMD_FLG_CTS_MSK;
  460. } else if (ctrl->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) {
  461. tx_flags &= ~TX_CMD_FLG_RTS_MSK;
  462. tx_flags |= TX_CMD_FLG_CTS_MSK;
  463. }
  464. if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
  465. tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
  466. tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
  467. if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) {
  468. if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ ||
  469. (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
  470. tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
  471. else
  472. tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
  473. } else {
  474. tx_cmd->timeout.pm_frame_timeout = 0;
  475. }
  476. tx_cmd->driver_txop = 0;
  477. tx_cmd->tx_flags = tx_flags;
  478. tx_cmd->next_frame_len = 0;
  479. }
  480. #define RTS_HCCA_RETRY_LIMIT 3
  481. #define RTS_DFAULT_RETRY_LIMIT 60
  482. static void iwl_tx_cmd_build_rate(struct iwl_priv *priv,
  483. struct iwl_tx_cmd *tx_cmd,
  484. struct ieee80211_tx_control *ctrl,
  485. u16 fc, int sta_id,
  486. int is_hcca)
  487. {
  488. u8 rts_retry_limit = 0;
  489. u8 data_retry_limit = 0;
  490. u8 rate_plcp;
  491. u16 rate_flags = 0;
  492. int rate_idx = min(ctrl->tx_rate->hw_value & 0xffff, IWL_RATE_COUNT - 1);
  493. rate_plcp = iwl_rates[rate_idx].plcp;
  494. rts_retry_limit = (is_hcca) ?
  495. RTS_HCCA_RETRY_LIMIT : RTS_DFAULT_RETRY_LIMIT;
  496. if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
  497. rate_flags |= RATE_MCS_CCK_MSK;
  498. if (ieee80211_is_probe_response(fc)) {
  499. data_retry_limit = 3;
  500. if (data_retry_limit < rts_retry_limit)
  501. rts_retry_limit = data_retry_limit;
  502. } else
  503. data_retry_limit = IWL_DEFAULT_TX_RETRY;
  504. if (priv->data_retry_limit != -1)
  505. data_retry_limit = priv->data_retry_limit;
  506. if (ieee80211_is_data(fc)) {
  507. tx_cmd->initial_rate_index = 0;
  508. tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
  509. } else {
  510. switch (fc & IEEE80211_FCTL_STYPE) {
  511. case IEEE80211_STYPE_AUTH:
  512. case IEEE80211_STYPE_DEAUTH:
  513. case IEEE80211_STYPE_ASSOC_REQ:
  514. case IEEE80211_STYPE_REASSOC_REQ:
  515. if (tx_cmd->tx_flags & TX_CMD_FLG_RTS_MSK) {
  516. tx_cmd->tx_flags &= ~TX_CMD_FLG_RTS_MSK;
  517. tx_cmd->tx_flags |= TX_CMD_FLG_CTS_MSK;
  518. }
  519. break;
  520. default:
  521. break;
  522. }
  523. /* Alternate between antenna A and B for successive frames */
  524. if (priv->use_ant_b_for_management_frame) {
  525. priv->use_ant_b_for_management_frame = 0;
  526. rate_flags |= RATE_MCS_ANT_B_MSK;
  527. } else {
  528. priv->use_ant_b_for_management_frame = 1;
  529. rate_flags |= RATE_MCS_ANT_A_MSK;
  530. }
  531. }
  532. tx_cmd->rts_retry_limit = rts_retry_limit;
  533. tx_cmd->data_retry_limit = data_retry_limit;
  534. tx_cmd->rate_n_flags = iwl4965_hw_set_rate_n_flags(rate_plcp, rate_flags);
  535. }
  536. static void iwl_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
  537. struct ieee80211_tx_control *ctl,
  538. struct iwl_tx_cmd *tx_cmd,
  539. struct sk_buff *skb_frag,
  540. int sta_id)
  541. {
  542. struct ieee80211_key_conf *keyconf = ctl->hw_key;
  543. switch (keyconf->alg) {
  544. case ALG_CCMP:
  545. tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
  546. memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
  547. if (ctl->flags & IEEE80211_TXCTL_AMPDU)
  548. tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
  549. IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
  550. break;
  551. case ALG_TKIP:
  552. tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
  553. ieee80211_get_tkip_key(keyconf, skb_frag,
  554. IEEE80211_TKIP_P2_KEY, tx_cmd->key);
  555. IWL_DEBUG_TX("tx_cmd with tkip hwcrypto\n");
  556. break;
  557. case ALG_WEP:
  558. tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
  559. (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
  560. if (keyconf->keylen == WEP_KEY_LEN_128)
  561. tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
  562. memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
  563. IWL_DEBUG_TX("Configuring packet for WEP encryption "
  564. "with key %d\n", keyconf->keyidx);
  565. break;
  566. default:
  567. printk(KERN_ERR "Unknown encode alg %d\n", keyconf->alg);
  568. break;
  569. }
  570. }
  571. static void iwl_update_tx_stats(struct iwl_priv *priv, u16 fc, u16 len)
  572. {
  573. /* 0 - mgmt, 1 - cnt, 2 - data */
  574. int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
  575. priv->tx_stats[idx].cnt++;
  576. priv->tx_stats[idx].bytes += len;
  577. }
  578. /*
  579. * start REPLY_TX command process
  580. */
  581. int iwl_tx_skb(struct iwl_priv *priv,
  582. struct sk_buff *skb, struct ieee80211_tx_control *ctl)
  583. {
  584. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  585. struct iwl_tfd_frame *tfd;
  586. u32 *control_flags;
  587. int txq_id = ctl->queue;
  588. struct iwl_tx_queue *txq = NULL;
  589. struct iwl_queue *q = NULL;
  590. dma_addr_t phys_addr;
  591. dma_addr_t txcmd_phys;
  592. dma_addr_t scratch_phys;
  593. struct iwl_cmd *out_cmd = NULL;
  594. struct iwl_tx_cmd *tx_cmd;
  595. u16 len, idx, len_org;
  596. u16 seq_number = 0;
  597. u8 id, hdr_len, unicast;
  598. u8 sta_id;
  599. u16 fc;
  600. u8 wait_write_ptr = 0;
  601. u8 tid = 0;
  602. u8 *qc = NULL;
  603. unsigned long flags;
  604. int ret;
  605. spin_lock_irqsave(&priv->lock, flags);
  606. if (iwl_is_rfkill(priv)) {
  607. IWL_DEBUG_DROP("Dropping - RF KILL\n");
  608. goto drop_unlock;
  609. }
  610. if (!priv->vif) {
  611. IWL_DEBUG_DROP("Dropping - !priv->vif\n");
  612. goto drop_unlock;
  613. }
  614. if ((ctl->tx_rate->hw_value & 0xFF) == IWL_INVALID_RATE) {
  615. IWL_ERROR("ERROR: No TX rate available.\n");
  616. goto drop_unlock;
  617. }
  618. unicast = !is_multicast_ether_addr(hdr->addr1);
  619. id = 0;
  620. fc = le16_to_cpu(hdr->frame_control);
  621. #ifdef CONFIG_IWLWIFI_DEBUG
  622. if (ieee80211_is_auth(fc))
  623. IWL_DEBUG_TX("Sending AUTH frame\n");
  624. else if (ieee80211_is_assoc_request(fc))
  625. IWL_DEBUG_TX("Sending ASSOC frame\n");
  626. else if (ieee80211_is_reassoc_request(fc))
  627. IWL_DEBUG_TX("Sending REASSOC frame\n");
  628. #endif
  629. /* drop all data frame if we are not associated */
  630. if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
  631. (!iwl_is_associated(priv) ||
  632. ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && !priv->assoc_id) ||
  633. !priv->assoc_station_added)) {
  634. IWL_DEBUG_DROP("Dropping - !iwl_is_associated\n");
  635. goto drop_unlock;
  636. }
  637. spin_unlock_irqrestore(&priv->lock, flags);
  638. hdr_len = ieee80211_get_hdrlen(fc);
  639. /* Find (or create) index into station table for destination station */
  640. sta_id = iwl_get_sta_id(priv, hdr);
  641. if (sta_id == IWL_INVALID_STATION) {
  642. DECLARE_MAC_BUF(mac);
  643. IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
  644. print_mac(mac, hdr->addr1));
  645. goto drop;
  646. }
  647. IWL_DEBUG_TX("station Id %d\n", sta_id);
  648. if (ieee80211_is_qos_data(fc)) {
  649. qc = ieee80211_get_qos_ctrl(hdr, hdr_len);
  650. tid = qc[0] & 0xf;
  651. seq_number = priv->stations[sta_id].tid[tid].seq_number &
  652. IEEE80211_SCTL_SEQ;
  653. hdr->seq_ctrl = cpu_to_le16(seq_number) |
  654. (hdr->seq_ctrl &
  655. __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
  656. seq_number += 0x10;
  657. #ifdef CONFIG_IWL4965_HT
  658. /* aggregation is on for this <sta,tid> */
  659. if (ctl->flags & IEEE80211_TXCTL_AMPDU)
  660. txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
  661. priv->stations[sta_id].tid[tid].tfds_in_queue++;
  662. #endif /* CONFIG_IWL4965_HT */
  663. }
  664. /* Descriptor for chosen Tx queue */
  665. txq = &priv->txq[txq_id];
  666. q = &txq->q;
  667. spin_lock_irqsave(&priv->lock, flags);
  668. /* Set up first empty TFD within this queue's circular TFD buffer */
  669. tfd = &txq->bd[q->write_ptr];
  670. memset(tfd, 0, sizeof(*tfd));
  671. control_flags = (u32 *) tfd;
  672. idx = get_cmd_index(q, q->write_ptr, 0);
  673. /* Set up driver data for this TFD */
  674. memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
  675. txq->txb[q->write_ptr].skb[0] = skb;
  676. memcpy(&(txq->txb[q->write_ptr].status.control),
  677. ctl, sizeof(struct ieee80211_tx_control));
  678. /* Set up first empty entry in queue's array of Tx/cmd buffers */
  679. out_cmd = &txq->cmd[idx];
  680. tx_cmd = &out_cmd->cmd.tx;
  681. memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
  682. memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
  683. /*
  684. * Set up the Tx-command (not MAC!) header.
  685. * Store the chosen Tx queue and TFD index within the sequence field;
  686. * after Tx, uCode's Tx response will return this value so driver can
  687. * locate the frame within the tx queue and do post-tx processing.
  688. */
  689. out_cmd->hdr.cmd = REPLY_TX;
  690. out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
  691. INDEX_TO_SEQ(q->write_ptr)));
  692. /* Copy MAC header from skb into command buffer */
  693. memcpy(tx_cmd->hdr, hdr, hdr_len);
  694. /*
  695. * Use the first empty entry in this queue's command buffer array
  696. * to contain the Tx command and MAC header concatenated together
  697. * (payload data will be in another buffer).
  698. * Size of this varies, due to varying MAC header length.
  699. * If end is not dword aligned, we'll have 2 extra bytes at the end
  700. * of the MAC header (device reads on dword boundaries).
  701. * We'll tell device about this padding later.
  702. */
  703. len = sizeof(struct iwl_tx_cmd) +
  704. sizeof(struct iwl_cmd_header) + hdr_len;
  705. len_org = len;
  706. len = (len + 3) & ~3;
  707. if (len_org != len)
  708. len_org = 1;
  709. else
  710. len_org = 0;
  711. /* Physical address of this Tx command's header (not MAC header!),
  712. * within command buffer array. */
  713. txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl_cmd) * idx +
  714. offsetof(struct iwl_cmd, hdr);
  715. /* Add buffer containing Tx command and MAC(!) header to TFD's
  716. * first entry */
  717. iwl_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
  718. if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
  719. iwl_tx_cmd_build_hwcrypto(priv, ctl, tx_cmd, skb, sta_id);
  720. /* Set up TFD's 2nd entry to point directly to remainder of skb,
  721. * if any (802.11 null frames have no payload). */
  722. len = skb->len - hdr_len;
  723. if (len) {
  724. phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
  725. len, PCI_DMA_TODEVICE);
  726. iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
  727. }
  728. /* Tell NIC about any 2-byte padding after MAC header */
  729. if (len_org)
  730. tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
  731. /* Total # bytes to be transmitted */
  732. len = (u16)skb->len;
  733. tx_cmd->len = cpu_to_le16(len);
  734. /* TODO need this for burst mode later on */
  735. iwl_tx_cmd_build_basic(priv, tx_cmd, ctl, hdr, unicast, sta_id);
  736. /* set is_hcca to 0; it probably will never be implemented */
  737. iwl_tx_cmd_build_rate(priv, tx_cmd, ctl, fc, sta_id, 0);
  738. iwl_update_tx_stats(priv, fc, len);
  739. scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
  740. offsetof(struct iwl_tx_cmd, scratch);
  741. tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
  742. tx_cmd->dram_msb_ptr = iwl_get_dma_hi_address(scratch_phys);
  743. if (!ieee80211_get_morefrag(hdr)) {
  744. txq->need_update = 1;
  745. if (qc)
  746. priv->stations[sta_id].tid[tid].seq_number = seq_number;
  747. } else {
  748. wait_write_ptr = 1;
  749. txq->need_update = 0;
  750. }
  751. iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
  752. iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
  753. /* Set up entry for this TFD in Tx byte-count array */
  754. priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, len);
  755. /* Tell device the write index *just past* this latest filled TFD */
  756. q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
  757. ret = iwl_txq_update_write_ptr(priv, txq);
  758. spin_unlock_irqrestore(&priv->lock, flags);
  759. if (ret)
  760. return ret;
  761. if ((iwl_queue_space(q) < q->high_mark)
  762. && priv->mac80211_registered) {
  763. if (wait_write_ptr) {
  764. spin_lock_irqsave(&priv->lock, flags);
  765. txq->need_update = 1;
  766. iwl_txq_update_write_ptr(priv, txq);
  767. spin_unlock_irqrestore(&priv->lock, flags);
  768. }
  769. ieee80211_stop_queue(priv->hw, ctl->queue);
  770. }
  771. return 0;
  772. drop_unlock:
  773. spin_unlock_irqrestore(&priv->lock, flags);
  774. drop:
  775. return -1;
  776. }
  777. EXPORT_SYMBOL(iwl_tx_skb);
  778. /*************** HOST COMMAND QUEUE FUNCTIONS *****/
  779. /**
  780. * iwl_enqueue_hcmd - enqueue a uCode command
  781. * @priv: device private data point
  782. * @cmd: a point to the ucode command structure
  783. *
  784. * The function returns < 0 values to indicate the operation is
  785. * failed. On success, it turns the index (> 0) of command in the
  786. * command queue.
  787. */
  788. int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
  789. {
  790. struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
  791. struct iwl_queue *q = &txq->q;
  792. struct iwl_tfd_frame *tfd;
  793. u32 *control_flags;
  794. struct iwl_cmd *out_cmd;
  795. u32 idx;
  796. u16 fix_size;
  797. dma_addr_t phys_addr;
  798. int ret;
  799. unsigned long flags;
  800. cmd->len = priv->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len);
  801. fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
  802. /* If any of the command structures end up being larger than
  803. * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
  804. * we will need to increase the size of the TFD entries */
  805. BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
  806. !(cmd->meta.flags & CMD_SIZE_HUGE));
  807. if (iwl_is_rfkill(priv)) {
  808. IWL_DEBUG_INFO("Not sending command - RF KILL");
  809. return -EIO;
  810. }
  811. if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
  812. IWL_ERROR("No space for Tx\n");
  813. return -ENOSPC;
  814. }
  815. spin_lock_irqsave(&priv->hcmd_lock, flags);
  816. tfd = &txq->bd[q->write_ptr];
  817. memset(tfd, 0, sizeof(*tfd));
  818. control_flags = (u32 *) tfd;
  819. idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
  820. out_cmd = &txq->cmd[idx];
  821. out_cmd->hdr.cmd = cmd->id;
  822. memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
  823. memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
  824. /* At this point, the out_cmd now has all of the incoming cmd
  825. * information */
  826. out_cmd->hdr.flags = 0;
  827. out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
  828. INDEX_TO_SEQ(q->write_ptr));
  829. if (out_cmd->meta.flags & CMD_SIZE_HUGE)
  830. out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME);
  831. phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
  832. offsetof(struct iwl_cmd, hdr);
  833. iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
  834. IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
  835. "%d bytes at %d[%d]:%d\n",
  836. get_cmd_string(out_cmd->hdr.cmd),
  837. out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
  838. fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
  839. txq->need_update = 1;
  840. /* Set up entry in queue's byte count circular buffer */
  841. priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0);
  842. /* Increment and update queue's write index */
  843. q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
  844. ret = iwl_txq_update_write_ptr(priv, txq);
  845. spin_unlock_irqrestore(&priv->hcmd_lock, flags);
  846. return ret ? ret : idx;
  847. }