htt_tx.c 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166
  1. /*
  2. * Copyright (c) 2011, 2014-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * @file htt_tx.c
  28. * @brief Implement transmit aspects of HTT.
  29. * @details
  30. * This file contains three categories of HTT tx code:
  31. * 1. An abstraction of the tx descriptor, to hide the
  32. * differences between the HL vs. LL tx descriptor.
  33. * 2. Functions for allocating and freeing HTT tx descriptors.
  34. * 3. The function that accepts a tx frame from txrx and sends the
  35. * tx frame to HTC.
  36. */
  37. #include <osdep.h> /* uint32_t, offsetof, etc. */
  38. #include <cdf_types.h> /* cdf_dma_addr_t */
  39. #include <cdf_memory.h> /* cdf_os_mem_alloc_consistent et al */
  40. #include <cdf_nbuf.h> /* cdf_nbuf_t, etc. */
  41. #include <cdf_time.h> /* cdf_mdelay */
  42. #include <htt.h> /* htt_tx_msdu_desc_t */
  43. #include <htc.h> /* HTC_HDR_LENGTH */
  44. #include <htc_api.h> /* htc_flush_surprise_remove */
  45. #include <ol_cfg.h> /* ol_cfg_netbuf_frags_max, etc. */
  46. #include <ol_htt_tx_api.h> /* HTT_TX_DESC_VADDR_OFFSET */
  47. #include <ol_txrx_htt_api.h> /* ol_tx_msdu_id_storage */
  48. #include <ol_txrx_internal.h>
  49. #include <htt_internal.h>
  50. /* IPA Micro controler TX data packet HTT Header Preset */
  51. /* 31 | 30 29 | 28 | 27 | 26 22 | 21 16 | 15 13 | 12 8 | 7 0
  52. *----------------------------------------------------------------------------
  53. * R | CS OL | R | PP | ext TID | vdev ID | pkt type | pkt subtyp | msg type
  54. * 0 | 0 | 0 | | 0x1F | 0 | 2 | 0 | 0x01
  55. ***----------------------------------------------------------------------------
  56. * pkt ID | pkt length
  57. ***----------------------------------------------------------------------------
  58. * frag_desc_ptr
  59. ***----------------------------------------------------------------------------
  60. * peer_id
  61. ***----------------------------------------------------------------------------
  62. */
  63. #define HTT_IPA_UC_OFFLOAD_TX_HEADER_DEFAULT 0x07C04001
  64. #if HTT_PADDR64
  65. #define HTT_TX_DESC_FRAG_FIELD_HI_UPDATE(frag_filed_ptr) \
  66. do { \
  67. frag_filed_ptr++; \
  68. /* frags_desc_ptr.hi */ \
  69. *frag_filed_ptr = 0; \
  70. } while (0)
  71. #else
  72. #define HTT_TX_DESC_FRAG_FIELD_HI_UPDATE(frag_filed_ptr) {}
  73. #endif
  74. /*--- setup / tear-down functions -------------------------------------------*/
  75. #ifdef QCA_SUPPORT_TXDESC_SANITY_CHECKS
  76. uint32_t *g_dbg_htt_desc_end_addr, *g_dbg_htt_desc_start_addr;
  77. #endif
  78. static cdf_dma_addr_t htt_tx_get_paddr(htt_pdev_handle pdev,
  79. char *target_vaddr);
  80. #ifdef HELIUMPLUS
  81. /**
  82. * htt_tx_desc_get_size() - get tx descripotrs size
  83. * @pdev: htt device instance pointer
  84. *
  85. * This function will get HTT TX descriptor size and fragment descriptor size
  86. *
  87. * Return: None
  88. */
  89. static void htt_tx_desc_get_size(struct htt_pdev_t *pdev)
  90. {
  91. pdev->tx_descs.size = sizeof(struct htt_host_tx_desc_t);
  92. if (HTT_WIFI_IP_VERSION(pdev->wifi_ip_ver.major, 0x2)) {
  93. /*
  94. * sizeof MSDU_EXT/Fragmentation descriptor.
  95. */
  96. pdev->frag_descs.size = sizeof(struct msdu_ext_desc_t);
  97. } else {
  98. /*
  99. * Add the fragmentation descriptor elements.
  100. * Add the most that the OS may deliver, plus one more
  101. * in case the txrx code adds a prefix fragment (for
  102. * TSO or audio interworking SNAP header)
  103. */
  104. pdev->frag_descs.size =
  105. (ol_cfg_netbuf_frags_max(pdev->ctrl_pdev)+1) * 8
  106. + 4;
  107. }
  108. }
  109. /**
  110. * htt_tx_frag_desc_field_update() - Update fragment descriptor field
  111. * @pdev: htt device instance pointer
  112. * @fptr: Fragment descriptor field pointer
  113. * @index: Descriptor index to find page and offset
  114. * @desc_v_ptr: descriptor virtual pointot to find offset
  115. *
  116. * This function will update fragment descriptor field with actual fragment
  117. * descriptor stating physical pointer
  118. *
  119. * Return: None
  120. */
  121. static void htt_tx_frag_desc_field_update(struct htt_pdev_t *pdev,
  122. uint32_t *fptr, unsigned int index,
  123. struct htt_tx_msdu_desc_t *desc_v_ptr)
  124. {
  125. unsigned int target_page;
  126. unsigned int offset;
  127. struct cdf_mem_dma_page_t *dma_page;
  128. target_page = index / pdev->frag_descs.desc_pages.num_element_per_page;
  129. offset = index % pdev->frag_descs.desc_pages.num_element_per_page;
  130. dma_page = &pdev->frag_descs.desc_pages.dma_pages[target_page];
  131. *fptr = (uint32_t)(dma_page->page_p_addr +
  132. offset * pdev->frag_descs.size);
  133. HTT_TX_DESC_FRAG_FIELD_HI_UPDATE(fptr);
  134. return;
  135. }
  136. /**
  137. * htt_tx_frag_desc_attach() - Attach fragment descriptor
  138. * @pdev: htt device instance pointer
  139. * @desc_pool_elems: Number of fragment descriptor
  140. *
  141. * This function will allocate fragment descriptor
  142. *
  143. * Return: 0 success
  144. */
  145. static int htt_tx_frag_desc_attach(struct htt_pdev_t *pdev,
  146. uint16_t desc_pool_elems)
  147. {
  148. pdev->frag_descs.pool_elems = desc_pool_elems;
  149. cdf_mem_multi_pages_alloc(pdev->osdev, &pdev->frag_descs.desc_pages,
  150. pdev->frag_descs.size, desc_pool_elems,
  151. cdf_get_dma_mem_context((&pdev->frag_descs), memctx), false);
  152. if ((0 == pdev->frag_descs.desc_pages.num_pages) ||
  153. (NULL == pdev->frag_descs.desc_pages.dma_pages)) {
  154. TXRX_PRINT(TXRX_PRINT_LEVEL_ERR,
  155. "FRAG descriptor alloc fail");
  156. return -ENOBUFS;
  157. }
  158. return 0;
  159. }
  160. /**
  161. * htt_tx_frag_desc_detach() - Detach fragment descriptor
  162. * @pdev: htt device instance pointer
  163. *
  164. * This function will free fragment descriptor
  165. *
  166. * Return: None
  167. */
  168. static void htt_tx_frag_desc_detach(struct htt_pdev_t *pdev)
  169. {
  170. cdf_mem_multi_pages_free(pdev->osdev, &pdev->frag_descs.desc_pages,
  171. cdf_get_dma_mem_context((&pdev->frag_descs), memctx), false);
  172. }
  173. /**
  174. * htt_tx_frag_alloc() - Allocate single fragment descriptor from the pool
  175. * @pdev: htt device instance pointer
  176. * @index: Descriptor index
  177. * @frag_paddr_lo: Fragment descriptor physical address
  178. * @frag_ptr: Fragment descriptor virtual address
  179. *
  180. * This function will free fragment descriptor
  181. *
  182. * Return: None
  183. */
  184. int htt_tx_frag_alloc(htt_pdev_handle pdev,
  185. u_int16_t index, u_int32_t *frag_paddr_lo, void **frag_ptr)
  186. {
  187. uint16_t frag_page_index;
  188. uint16_t frag_elem_index;
  189. struct cdf_mem_dma_page_t *dma_page;
  190. /** Index should never be 0, since its used by the hardware
  191. to terminate the link. */
  192. if (index >= pdev->tx_descs.pool_elems) {
  193. *frag_ptr = NULL;
  194. return 1;
  195. }
  196. frag_page_index = index /
  197. pdev->frag_descs.desc_pages.num_element_per_page;
  198. frag_elem_index = index %
  199. pdev->frag_descs.desc_pages.num_element_per_page;
  200. dma_page = &pdev->frag_descs.desc_pages.dma_pages[frag_page_index];
  201. *frag_ptr = dma_page->page_v_addr_start +
  202. frag_elem_index * pdev->frag_descs.size;
  203. if (((char *)(*frag_ptr) < dma_page->page_v_addr_start) ||
  204. ((char *)(*frag_ptr) > dma_page->page_v_addr_end)) {
  205. *frag_ptr = NULL;
  206. return 1;
  207. }
  208. *frag_paddr_lo = dma_page->page_p_addr +
  209. frag_elem_index * pdev->frag_descs.size;
  210. return 0;
  211. }
  212. #else
  213. /**
  214. * htt_tx_desc_get_size() - get tx descripotrs size
  215. * @pdev: htt device instance pointer
  216. *
  217. * This function will get HTT TX descriptor size and fragment descriptor size
  218. *
  219. * Return: None
  220. */
  221. static inline void htt_tx_desc_get_size(struct htt_pdev_t *pdev)
  222. {
  223. /*
  224. * Start with the size of the base struct
  225. * that actually gets downloaded.
  226. *
  227. * Add the fragmentation descriptor elements.
  228. * Add the most that the OS may deliver, plus one more
  229. * in case the txrx code adds a prefix fragment (for
  230. * TSO or audio interworking SNAP header)
  231. */
  232. pdev->tx_descs.size =
  233. sizeof(struct htt_host_tx_desc_t)
  234. + (ol_cfg_netbuf_frags_max(pdev->ctrl_pdev) + 1) * 8
  235. /* 2x uint32_t */
  236. + 4; /* uint32_t fragmentation list terminator */
  237. }
  238. /**
  239. * htt_tx_frag_desc_field_update() - Update fragment descriptor field
  240. * @pdev: htt device instance pointer
  241. * @fptr: Fragment descriptor field pointer
  242. * @index: Descriptor index to find page and offset
  243. * @desc_v_ptr: descriptor virtual pointot to find offset
  244. *
  245. * This function will update fragment descriptor field with actual fragment
  246. * descriptor stating physical pointer
  247. *
  248. * Return: None
  249. */
  250. static void htt_tx_frag_desc_field_update(struct htt_pdev_t *pdev,
  251. uint32_t *fptr, unsigned int index,
  252. struct htt_tx_msdu_desc_t *desc_v_ptr)
  253. {
  254. *fptr = (uint32_t)htt_tx_get_paddr(pdev, (char *)desc_v_ptr) +
  255. HTT_TX_DESC_LEN;
  256. }
  257. /**
  258. * htt_tx_frag_desc_attach() - Attach fragment descriptor
  259. * @pdev: htt device instance pointer
  260. * @desc_pool_elems: Number of fragment descriptor
  261. *
  262. * This function will allocate fragment descriptor
  263. *
  264. * Return: 0 success
  265. */
  266. static inline int htt_tx_frag_desc_attach(struct htt_pdev_t *pdev,
  267. int desc_pool_elems)
  268. {
  269. return 0;
  270. }
  271. /**
  272. * htt_tx_frag_desc_detach() - Detach fragment descriptor
  273. * @pdev: htt device instance pointer
  274. *
  275. * This function will free fragment descriptor
  276. *
  277. * Return: None
  278. */
  279. static void htt_tx_frag_desc_detach(struct htt_pdev_t *pdev) {}
  280. #endif /* HELIUMPLUS */
  281. /**
  282. * htt_tx_attach() - Attach HTT device instance
  283. * @pdev: htt device instance pointer
  284. * @desc_pool_elems: Number of TX descriptors
  285. *
  286. * This function will allocate HTT TX resources
  287. *
  288. * Return: 0 Success
  289. */
  290. int htt_tx_attach(struct htt_pdev_t *pdev, int desc_pool_elems)
  291. {
  292. int i, i_int, pool_size;
  293. uint32_t **p;
  294. struct cdf_mem_dma_page_t *page_info;
  295. uint32_t num_link = 0;
  296. uint16_t num_page, num_desc_per_page;
  297. htt_tx_desc_get_size(pdev);
  298. /*
  299. * Make sure tx_descs.size is a multiple of 4-bytes.
  300. * It should be, but round up just to be sure.
  301. */
  302. pdev->tx_descs.size = (pdev->tx_descs.size + 3) & (~0x3);
  303. pdev->tx_descs.pool_elems = desc_pool_elems;
  304. pdev->tx_descs.alloc_cnt = 0;
  305. pool_size = pdev->tx_descs.pool_elems * pdev->tx_descs.size;
  306. cdf_mem_multi_pages_alloc(pdev->osdev, &pdev->tx_descs.desc_pages,
  307. pdev->tx_descs.size, pdev->tx_descs.pool_elems,
  308. cdf_get_dma_mem_context((&pdev->tx_descs), memctx), false);
  309. if ((0 == pdev->tx_descs.desc_pages.num_pages) ||
  310. (NULL == pdev->tx_descs.desc_pages.dma_pages)) {
  311. TXRX_PRINT(TXRX_PRINT_LEVEL_ERR,
  312. "HTT desc alloc fail");
  313. goto out_fail;
  314. }
  315. num_page = pdev->tx_descs.desc_pages.num_pages;
  316. num_desc_per_page = pdev->tx_descs.desc_pages.num_element_per_page;
  317. /* link tx descriptors into a freelist */
  318. page_info = pdev->tx_descs.desc_pages.dma_pages;
  319. pdev->tx_descs.freelist = (uint32_t *)page_info->page_v_addr_start;
  320. p = (uint32_t **) pdev->tx_descs.freelist;
  321. for (i = 0; i < num_page; i++) {
  322. for (i_int = 0; i_int < num_desc_per_page; i_int++) {
  323. if (i_int == (num_desc_per_page - 1)) {
  324. /*
  325. * Last element on this page,
  326. * should pint next page */
  327. if (!page_info->page_v_addr_start) {
  328. TXRX_PRINT(TXRX_PRINT_LEVEL_ERR,
  329. "over flow num link %d\n",
  330. num_link);
  331. goto free_htt_desc;
  332. }
  333. page_info++;
  334. *p = (uint32_t *)page_info->page_v_addr_start;
  335. } else {
  336. *p = (uint32_t *)
  337. (((char *) p) + pdev->tx_descs.size);
  338. }
  339. num_link++;
  340. p = (uint32_t **) *p;
  341. /* Last link established exit */
  342. if (num_link == (pdev->tx_descs.pool_elems - 1))
  343. break;
  344. }
  345. }
  346. *p = NULL;
  347. if (htt_tx_frag_desc_attach(pdev, desc_pool_elems)) {
  348. TXRX_PRINT(TXRX_PRINT_LEVEL_ERR,
  349. "HTT Frag descriptor alloc fail");
  350. goto free_htt_desc;
  351. }
  352. /* success */
  353. return 0;
  354. free_htt_desc:
  355. cdf_mem_multi_pages_free(pdev->osdev, &pdev->tx_descs.desc_pages,
  356. cdf_get_dma_mem_context((&pdev->tx_descs), memctx), false);
  357. out_fail:
  358. return -ENOBUFS;
  359. }
  360. void htt_tx_detach(struct htt_pdev_t *pdev)
  361. {
  362. if (!pdev) {
  363. cdf_print("htt tx detach invalid instance");
  364. return;
  365. }
  366. htt_tx_frag_desc_detach(pdev);
  367. cdf_mem_multi_pages_free(pdev->osdev, &pdev->tx_descs.desc_pages,
  368. cdf_get_dma_mem_context((&pdev->tx_descs), memctx), false);
  369. }
  370. /**
  371. * htt_tx_get_paddr() - get physical address for htt desc
  372. *
  373. * Get HTT descriptor physical address from virtaul address
  374. * Find page first and find offset
  375. *
  376. * Return: Physical address of descriptor
  377. */
  378. static cdf_dma_addr_t htt_tx_get_paddr(htt_pdev_handle pdev,
  379. char *target_vaddr)
  380. {
  381. uint16_t i;
  382. struct cdf_mem_dma_page_t *page_info = NULL;
  383. uint64_t offset;
  384. for (i = 0; i < pdev->tx_descs.desc_pages.num_pages; i++) {
  385. page_info = pdev->tx_descs.desc_pages.dma_pages + i;
  386. if (!page_info->page_v_addr_start) {
  387. cdf_assert(0);
  388. return 0;
  389. }
  390. if ((target_vaddr >= page_info->page_v_addr_start) &&
  391. (target_vaddr <= page_info->page_v_addr_end))
  392. break;
  393. }
  394. if (!page_info) {
  395. TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, "invalid page_info");
  396. return 0;
  397. }
  398. offset = (uint64_t)(target_vaddr - page_info->page_v_addr_start);
  399. return page_info->page_p_addr + offset;
  400. }
  401. /*--- descriptor allocation functions ---------------------------------------*/
  402. void *htt_tx_desc_alloc(htt_pdev_handle pdev, uint32_t *paddr_lo,
  403. uint16_t index)
  404. {
  405. struct htt_host_tx_desc_t *htt_host_tx_desc; /* includes HTC hdr */
  406. struct htt_tx_msdu_desc_t *htt_tx_desc; /* doesn't include HTC hdr */
  407. uint32_t *fragmentation_descr_field_ptr;
  408. htt_host_tx_desc = (struct htt_host_tx_desc_t *)pdev->tx_descs.freelist;
  409. if (!htt_host_tx_desc)
  410. return NULL; /* pool is exhausted */
  411. htt_tx_desc = &htt_host_tx_desc->align32.tx_desc;
  412. if (pdev->tx_descs.freelist) {
  413. pdev->tx_descs.freelist =
  414. *((uint32_t **) pdev->tx_descs.freelist);
  415. pdev->tx_descs.alloc_cnt++;
  416. }
  417. /*
  418. * For LL, set up the fragmentation descriptor address.
  419. * Currently, this HTT tx desc allocation is performed once up front.
  420. * If this is changed to have the allocation done during tx, then it
  421. * would be helpful to have separate htt_tx_desc_alloc functions for
  422. * HL vs. LL, to remove the below conditional branch.
  423. */
  424. fragmentation_descr_field_ptr = (uint32_t *)
  425. ((uint32_t *) htt_tx_desc) +
  426. HTT_TX_DESC_FRAGS_DESC_PADDR_OFFSET_DWORD;
  427. /*
  428. * The fragmentation descriptor is allocated from consistent
  429. * memory. Therefore, we can use the address directly rather
  430. * than having to map it from a virtual/CPU address to a
  431. * physical/bus address.
  432. */
  433. htt_tx_frag_desc_field_update(pdev, fragmentation_descr_field_ptr,
  434. index, htt_tx_desc);
  435. /*
  436. * Include the headroom for the HTC frame header when specifying the
  437. * physical address for the HTT tx descriptor.
  438. */
  439. *paddr_lo = (uint32_t)htt_tx_get_paddr(pdev, (char *)htt_host_tx_desc);
  440. /*
  441. * The allocated tx descriptor space includes headroom for a
  442. * HTC frame header. Hide this headroom, so that we don't have
  443. * to jump past the headroom each time we program a field within
  444. * the tx desc, but only once when we download the tx desc (and
  445. * the headroom) to the target via HTC.
  446. * Skip past the headroom and return the address of the HTT tx desc.
  447. */
  448. return (void *)htt_tx_desc;
  449. }
  450. void htt_tx_desc_free(htt_pdev_handle pdev, void *tx_desc)
  451. {
  452. char *htt_host_tx_desc = tx_desc;
  453. /* rewind over the HTC frame header space */
  454. htt_host_tx_desc -=
  455. offsetof(struct htt_host_tx_desc_t, align32.tx_desc);
  456. *((uint32_t **) htt_host_tx_desc) = pdev->tx_descs.freelist;
  457. pdev->tx_descs.freelist = (uint32_t *) htt_host_tx_desc;
  458. pdev->tx_descs.alloc_cnt--;
  459. }
  460. /*--- descriptor field access methods ---------------------------------------*/
  461. void htt_tx_desc_frags_table_set(htt_pdev_handle pdev,
  462. void *htt_tx_desc,
  463. uint32_t paddr,
  464. uint32_t frag_desc_paddr_lo,
  465. int reset)
  466. {
  467. uint32_t *fragmentation_descr_field_ptr;
  468. fragmentation_descr_field_ptr = (uint32_t *)
  469. ((uint32_t *) htt_tx_desc) +
  470. HTT_TX_DESC_FRAGS_DESC_PADDR_OFFSET_DWORD;
  471. if (reset) {
  472. #if defined(HELIUMPLUS_PADDR64)
  473. *fragmentation_descr_field_ptr = frag_desc_paddr_lo;
  474. #else
  475. *fragmentation_descr_field_ptr =
  476. htt_tx_get_paddr(pdev, htt_tx_desc) + HTT_TX_DESC_LEN;
  477. #endif
  478. } else {
  479. *fragmentation_descr_field_ptr = paddr;
  480. }
  481. }
  482. /* PUT THESE AS INLINE IN ol_htt_tx_api.h */
  483. void htt_tx_desc_flag_postponed(htt_pdev_handle pdev, void *desc)
  484. {
  485. }
  486. void htt_tx_pending_discard(htt_pdev_handle pdev)
  487. {
  488. htc_flush_surprise_remove(pdev->htc_pdev);
  489. }
  490. void htt_tx_desc_flag_batch_more(htt_pdev_handle pdev, void *desc)
  491. {
  492. }
  493. /*--- tx send function ------------------------------------------------------*/
  494. #ifdef ATH_11AC_TXCOMPACT
  495. /* Scheduling the Queued packets in HTT which could not be sent out
  496. because of No CE desc*/
  497. void htt_tx_sched(htt_pdev_handle pdev)
  498. {
  499. cdf_nbuf_t msdu;
  500. int download_len = pdev->download_len;
  501. int packet_len;
  502. HTT_TX_NBUF_QUEUE_REMOVE(pdev, msdu);
  503. while (msdu != NULL) {
  504. int not_accepted;
  505. /* packet length includes HTT tx desc frag added above */
  506. packet_len = cdf_nbuf_len(msdu);
  507. if (packet_len < download_len) {
  508. /*
  509. * This case of packet length being less than the
  510. * nominal download length can happen for a couple
  511. * of reasons:
  512. * In HL, the nominal download length is a large
  513. * artificial value.
  514. * In LL, the frame may not have the optional header
  515. * fields accounted for in the nominal download size
  516. * (LLC/SNAP header, IPv4 or IPv6 header).
  517. */
  518. download_len = packet_len;
  519. }
  520. not_accepted =
  521. htc_send_data_pkt(pdev->htc_pdev, msdu,
  522. pdev->htc_endpoint,
  523. download_len);
  524. if (not_accepted) {
  525. HTT_TX_NBUF_QUEUE_INSERT_HEAD(pdev, msdu);
  526. return;
  527. }
  528. HTT_TX_NBUF_QUEUE_REMOVE(pdev, msdu);
  529. }
  530. }
  531. int htt_tx_send_std(htt_pdev_handle pdev, cdf_nbuf_t msdu, uint16_t msdu_id)
  532. {
  533. int download_len = pdev->download_len;
  534. int packet_len;
  535. /* packet length includes HTT tx desc frag added above */
  536. packet_len = cdf_nbuf_len(msdu);
  537. if (packet_len < download_len) {
  538. /*
  539. * This case of packet length being less than the nominal
  540. * download length can happen for a couple of reasons:
  541. * In HL, the nominal download length is a large artificial
  542. * value.
  543. * In LL, the frame may not have the optional header fields
  544. * accounted for in the nominal download size (LLC/SNAP header,
  545. * IPv4 or IPv6 header).
  546. */
  547. download_len = packet_len;
  548. }
  549. NBUF_UPDATE_TX_PKT_COUNT(msdu, NBUF_TX_PKT_HTT);
  550. DPTRACE(cdf_dp_trace(msdu, CDF_DP_TRACE_HTT_PACKET_PTR_RECORD,
  551. (uint8_t *)(cdf_nbuf_data(msdu)),
  552. sizeof(cdf_nbuf_data(msdu))));
  553. if (cdf_nbuf_queue_len(&pdev->txnbufq) > 0) {
  554. HTT_TX_NBUF_QUEUE_ADD(pdev, msdu);
  555. htt_tx_sched(pdev);
  556. return 0;
  557. }
  558. cdf_nbuf_trace_update(msdu, "HT:T:");
  559. if (htc_send_data_pkt
  560. (pdev->htc_pdev, msdu, pdev->htc_endpoint, download_len)) {
  561. HTT_TX_NBUF_QUEUE_ADD(pdev, msdu);
  562. }
  563. return 0; /* success */
  564. }
  565. #ifdef FEATURE_RUNTIME_PM
  566. /**
  567. * htt_tx_resume_handler() - resume callback for the htt endpoint
  568. * @context: a pointer to the htt context
  569. *
  570. * runs htt_tx_sched.
  571. */
  572. void htt_tx_resume_handler(void *context)
  573. {
  574. struct htt_pdev_t *pdev = (struct htt_pdev_t *) context;
  575. htt_tx_sched(pdev);
  576. }
  577. #else
  578. void
  579. htt_tx_resume_handler(void *context) { }
  580. #endif
  581. cdf_nbuf_t
  582. htt_tx_send_batch(htt_pdev_handle pdev, cdf_nbuf_t head_msdu, int num_msdus)
  583. {
  584. cdf_print("*** %s curently only applies for HL systems\n", __func__);
  585. cdf_assert(0);
  586. return head_msdu;
  587. }
  588. int
  589. htt_tx_send_nonstd(htt_pdev_handle pdev,
  590. cdf_nbuf_t msdu,
  591. uint16_t msdu_id, enum htt_pkt_type pkt_type)
  592. {
  593. int download_len;
  594. /*
  595. * The pkt_type could be checked to see what L2 header type is present,
  596. * and then the L2 header could be examined to determine its length.
  597. * But for simplicity, just use the maximum possible header size,
  598. * rather than computing the actual header size.
  599. */
  600. download_len = sizeof(struct htt_host_tx_desc_t)
  601. + HTT_TX_HDR_SIZE_OUTER_HDR_MAX /* worst case */
  602. + HTT_TX_HDR_SIZE_802_1Q
  603. + HTT_TX_HDR_SIZE_LLC_SNAP
  604. + ol_cfg_tx_download_size(pdev->ctrl_pdev);
  605. cdf_assert(download_len <= pdev->download_len);
  606. return htt_tx_send_std(pdev, msdu, msdu_id);
  607. }
  608. #else /*ATH_11AC_TXCOMPACT */
  609. #ifdef QCA_TX_HTT2_SUPPORT
  610. static inline HTC_ENDPOINT_ID
  611. htt_tx_htt2_get_ep_id(htt_pdev_handle pdev, cdf_nbuf_t msdu)
  612. {
  613. /*
  614. * TX HTT2 service mainly for small sized frame and check if
  615. * this candidate frame allow or not.
  616. */
  617. if ((pdev->htc_tx_htt2_endpoint != ENDPOINT_UNUSED) &&
  618. cdf_nbuf_get_tx_parallel_dnload_frm(msdu) &&
  619. (cdf_nbuf_len(msdu) < pdev->htc_tx_htt2_max_size))
  620. return pdev->htc_tx_htt2_endpoint;
  621. else
  622. return pdev->htc_endpoint;
  623. }
  624. #else
  625. #define htt_tx_htt2_get_ep_id(pdev, msdu) (pdev->htc_endpoint)
  626. #endif /* QCA_TX_HTT2_SUPPORT */
  627. static inline int
  628. htt_tx_send_base(htt_pdev_handle pdev,
  629. cdf_nbuf_t msdu,
  630. uint16_t msdu_id, int download_len, uint8_t more_data)
  631. {
  632. struct htt_host_tx_desc_t *htt_host_tx_desc;
  633. struct htt_htc_pkt *pkt;
  634. int packet_len;
  635. HTC_ENDPOINT_ID ep_id;
  636. /*
  637. * The HTT tx descriptor was attached as the prefix fragment to the
  638. * msdu netbuf during the call to htt_tx_desc_init.
  639. * Retrieve it so we can provide its HTC header space to HTC.
  640. */
  641. htt_host_tx_desc = (struct htt_host_tx_desc_t *)
  642. cdf_nbuf_get_frag_vaddr(msdu, 0);
  643. pkt = htt_htc_pkt_alloc(pdev);
  644. if (!pkt)
  645. return -ENOBUFS; /* failure */
  646. pkt->msdu_id = msdu_id;
  647. pkt->pdev_ctxt = pdev->txrx_pdev;
  648. /* packet length includes HTT tx desc frag added above */
  649. packet_len = cdf_nbuf_len(msdu);
  650. if (packet_len < download_len) {
  651. /*
  652. * This case of packet length being less than the nominal
  653. * download length can happen for a couple reasons:
  654. * In HL, the nominal download length is a large artificial
  655. * value.
  656. * In LL, the frame may not have the optional header fields
  657. * accounted for in the nominal download size (LLC/SNAP header,
  658. * IPv4 or IPv6 header).
  659. */
  660. download_len = packet_len;
  661. }
  662. ep_id = htt_tx_htt2_get_ep_id(pdev, msdu);
  663. SET_HTC_PACKET_INFO_TX(&pkt->htc_pkt,
  664. pdev->tx_send_complete_part2,
  665. (unsigned char *)htt_host_tx_desc,
  666. download_len - HTC_HDR_LENGTH,
  667. ep_id,
  668. 1); /* tag - not relevant here */
  669. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msdu);
  670. cdf_nbuf_trace_update(msdu, "HT:T:");
  671. NBUF_UPDATE_TX_PKT_COUNT(msdu, NBUF_TX_PKT_HTT);
  672. DPTRACE(cdf_dp_trace(msdu, CDF_DP_TRACE_HTT_PACKET_PTR_RECORD,
  673. (uint8_t *)(cdf_nbuf_data(msdu)),
  674. sizeof(cdf_nbuf_data(msdu))));
  675. htc_send_data_pkt(pdev->htc_pdev, &pkt->htc_pkt, more_data);
  676. return 0; /* success */
  677. }
  678. cdf_nbuf_t
  679. htt_tx_send_batch(htt_pdev_handle pdev, cdf_nbuf_t head_msdu, int num_msdus)
  680. {
  681. cdf_nbuf_t rejected = NULL;
  682. uint16_t *msdu_id_storage;
  683. uint16_t msdu_id;
  684. cdf_nbuf_t msdu;
  685. /*
  686. * FOR NOW, iterate through the batch, sending the frames singly.
  687. * Eventually HTC and HIF should be able to accept a batch of
  688. * data frames rather than singles.
  689. */
  690. msdu = head_msdu;
  691. while (num_msdus--) {
  692. cdf_nbuf_t next_msdu = cdf_nbuf_next(msdu);
  693. msdu_id_storage = ol_tx_msdu_id_storage(msdu);
  694. msdu_id = *msdu_id_storage;
  695. /* htt_tx_send_base returns 0 as success and 1 as failure */
  696. if (htt_tx_send_base(pdev, msdu, msdu_id, pdev->download_len,
  697. num_msdus)) {
  698. cdf_nbuf_set_next(msdu, rejected);
  699. rejected = msdu;
  700. }
  701. msdu = next_msdu;
  702. }
  703. return rejected;
  704. }
  705. int
  706. htt_tx_send_nonstd(htt_pdev_handle pdev,
  707. cdf_nbuf_t msdu,
  708. uint16_t msdu_id, enum htt_pkt_type pkt_type)
  709. {
  710. int download_len;
  711. /*
  712. * The pkt_type could be checked to see what L2 header type is present,
  713. * and then the L2 header could be examined to determine its length.
  714. * But for simplicity, just use the maximum possible header size,
  715. * rather than computing the actual header size.
  716. */
  717. download_len = sizeof(struct htt_host_tx_desc_t)
  718. + HTT_TX_HDR_SIZE_OUTER_HDR_MAX /* worst case */
  719. + HTT_TX_HDR_SIZE_802_1Q
  720. + HTT_TX_HDR_SIZE_LLC_SNAP
  721. + ol_cfg_tx_download_size(pdev->ctrl_pdev);
  722. return htt_tx_send_base(pdev, msdu, msdu_id, download_len, 0);
  723. }
  724. int htt_tx_send_std(htt_pdev_handle pdev, cdf_nbuf_t msdu, uint16_t msdu_id)
  725. {
  726. return htt_tx_send_base(pdev, msdu, msdu_id, pdev->download_len, 0);
  727. }
  728. #endif /*ATH_11AC_TXCOMPACT */
  729. #ifdef HTT_DBG
  730. void htt_tx_desc_display(void *tx_desc)
  731. {
  732. struct htt_tx_msdu_desc_t *htt_tx_desc;
  733. htt_tx_desc = (struct htt_tx_msdu_desc_t *)tx_desc;
  734. /* only works for little-endian */
  735. cdf_print("HTT tx desc (@ %p):\n", htt_tx_desc);
  736. cdf_print(" msg type = %d\n", htt_tx_desc->msg_type);
  737. cdf_print(" pkt subtype = %d\n", htt_tx_desc->pkt_subtype);
  738. cdf_print(" pkt type = %d\n", htt_tx_desc->pkt_type);
  739. cdf_print(" vdev ID = %d\n", htt_tx_desc->vdev_id);
  740. cdf_print(" ext TID = %d\n", htt_tx_desc->ext_tid);
  741. cdf_print(" postponed = %d\n", htt_tx_desc->postponed);
  742. #if HTT_PADDR64
  743. cdf_print(" reserved_dword0_bits28 = %d\n", htt_tx_desc->reserved_dword0_bits28);
  744. cdf_print(" cksum_offload = %d\n", htt_tx_desc->cksum_offload);
  745. cdf_print(" tx_compl_req= %d\n", htt_tx_desc->tx_compl_req);
  746. #else /* !HTT_PADDR64 */
  747. cdf_print(" batch more = %d\n", htt_tx_desc->more_in_batch);
  748. #endif /* HTT_PADDR64 */
  749. cdf_print(" length = %d\n", htt_tx_desc->len);
  750. cdf_print(" id = %d\n", htt_tx_desc->id);
  751. #if HTT_PADDR64
  752. cdf_print(" frag desc addr.lo = %#x\n",
  753. htt_tx_desc->frags_desc_ptr.lo);
  754. cdf_print(" frag desc addr.hi = %#x\n",
  755. htt_tx_desc->frags_desc_ptr.hi);
  756. cdf_print(" peerid = %d\n", htt_tx_desc->peerid);
  757. cdf_print(" chanfreq = %d\n", htt_tx_desc->chanfreq);
  758. #else /* ! HTT_PADDR64 */
  759. cdf_print(" frag desc addr = %#x\n", htt_tx_desc->frags_desc_ptr);
  760. #endif /* HTT_PADDR64 */
  761. }
  762. #endif
  763. #ifdef IPA_OFFLOAD
  764. #ifdef QCA_WIFI_2_0
  765. /**
  766. * htt_tx_ipa_uc_wdi_tx_buf_alloc() - Alloc WDI TX buffers
  767. * @pdev: htt context
  768. * @uc_tx_buf_sz: TX buffer size
  769. * @uc_tx_buf_cnt: TX Buffer count
  770. * @uc_tx_partition_base: IPA UC TX partition base value
  771. *
  772. * Allocate WDI TX buffers. Also note Rome supports only WDI 1.0.
  773. *
  774. * Return: 0 success
  775. */
  776. int htt_tx_ipa_uc_wdi_tx_buf_alloc(struct htt_pdev_t *pdev,
  777. unsigned int uc_tx_buf_sz,
  778. unsigned int uc_tx_buf_cnt,
  779. unsigned int uc_tx_partition_base)
  780. {
  781. unsigned int tx_buffer_count;
  782. cdf_nbuf_t buffer_vaddr;
  783. cdf_dma_addr_t buffer_paddr;
  784. uint32_t *header_ptr;
  785. uint32_t *ring_vaddr;
  786. #define IPA_UC_TX_BUF_FRAG_DESC_OFFSET 16
  787. #define IPA_UC_TX_BUF_FRAG_HDR_OFFSET 32
  788. ring_vaddr = pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr;
  789. /* Allocate TX buffers as many as possible */
  790. for (tx_buffer_count = 0;
  791. tx_buffer_count < (uc_tx_buf_cnt - 1); tx_buffer_count++) {
  792. buffer_vaddr = cdf_nbuf_alloc(pdev->osdev,
  793. uc_tx_buf_sz, 0, 4, false);
  794. if (!buffer_vaddr) {
  795. cdf_print("%s: TX BUF alloc fail, loop index: %d",
  796. __func__, tx_buffer_count);
  797. return tx_buffer_count;
  798. }
  799. /* Init buffer */
  800. cdf_mem_zero(cdf_nbuf_data(buffer_vaddr), uc_tx_buf_sz);
  801. header_ptr = (uint32_t *) cdf_nbuf_data(buffer_vaddr);
  802. /* HTT control header */
  803. *header_ptr = HTT_IPA_UC_OFFLOAD_TX_HEADER_DEFAULT;
  804. header_ptr++;
  805. /* PKT ID */
  806. *header_ptr |= ((uint16_t) uc_tx_partition_base +
  807. tx_buffer_count) << 16;
  808. cdf_nbuf_map(pdev->osdev, buffer_vaddr, CDF_DMA_BIDIRECTIONAL);
  809. buffer_paddr = cdf_nbuf_get_frag_paddr_lo(buffer_vaddr, 0);
  810. header_ptr++;
  811. *header_ptr = (uint32_t) (buffer_paddr +
  812. IPA_UC_TX_BUF_FRAG_DESC_OFFSET);
  813. header_ptr++;
  814. *header_ptr = 0xFFFFFFFF;
  815. /* FRAG Header */
  816. header_ptr++;
  817. *header_ptr = buffer_paddr + IPA_UC_TX_BUF_FRAG_HDR_OFFSET;
  818. *ring_vaddr = buffer_paddr;
  819. pdev->ipa_uc_tx_rsc.tx_buf_pool_vaddr_strg[tx_buffer_count] =
  820. buffer_vaddr;
  821. /* Memory barrier to ensure actual value updated */
  822. ring_vaddr++;
  823. }
  824. return tx_buffer_count;
  825. }
  826. #else
  827. int htt_tx_ipa_uc_wdi_tx_buf_alloc(struct htt_pdev_t *pdev,
  828. unsigned int uc_tx_buf_sz,
  829. unsigned int uc_tx_buf_cnt,
  830. unsigned int uc_tx_partition_base)
  831. {
  832. unsigned int tx_buffer_count;
  833. cdf_nbuf_t buffer_vaddr;
  834. uint32_t buffer_paddr;
  835. uint32_t *header_ptr;
  836. uint32_t *ring_vaddr;
  837. #define IPA_UC_TX_BUF_FRAG_DESC_OFFSET 20
  838. #define IPA_UC_TX_BUF_FRAG_HDR_OFFSET 64
  839. #define IPA_UC_TX_BUF_TSO_HDR_SIZE 6
  840. ring_vaddr = pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr;
  841. /* Allocate TX buffers as many as possible */
  842. for (tx_buffer_count = 0;
  843. tx_buffer_count < (uc_tx_buf_cnt - 1); tx_buffer_count++) {
  844. buffer_vaddr = cdf_nbuf_alloc(pdev->osdev,
  845. uc_tx_buf_sz, 0, 4, false);
  846. if (!buffer_vaddr) {
  847. cdf_print("%s: TX BUF alloc fail, loop index: %d",
  848. __func__, tx_buffer_count);
  849. return tx_buffer_count;
  850. }
  851. /* Init buffer */
  852. cdf_mem_zero(cdf_nbuf_data(buffer_vaddr), uc_tx_buf_sz);
  853. header_ptr = (uint32_t *) cdf_nbuf_data(buffer_vaddr);
  854. /* HTT control header */
  855. *header_ptr = HTT_IPA_UC_OFFLOAD_TX_HEADER_DEFAULT;
  856. header_ptr++;
  857. /* PKT ID */
  858. *header_ptr |= ((uint16_t) uc_tx_partition_base +
  859. tx_buffer_count) << 16;
  860. cdf_nbuf_map(pdev->osdev, buffer_vaddr, CDF_DMA_BIDIRECTIONAL);
  861. buffer_paddr = cdf_nbuf_get_frag_paddr_lo(buffer_vaddr, 0);
  862. header_ptr++;
  863. /* Frag Desc Pointer */
  864. /* 64bits descriptor, Low 32bits */
  865. *header_ptr = (uint32_t) (buffer_paddr +
  866. IPA_UC_TX_BUF_FRAG_DESC_OFFSET);
  867. header_ptr++;
  868. /* 64bits descriptor, high 32bits */
  869. *header_ptr = 0;
  870. header_ptr++;
  871. /* chanreq, peerid */
  872. *header_ptr = 0xFFFFFFFF;
  873. header_ptr++;
  874. /* FRAG Header */
  875. /* 6 words TSO header */
  876. header_ptr += IPA_UC_TX_BUF_TSO_HDR_SIZE;
  877. *header_ptr = buffer_paddr + IPA_UC_TX_BUF_FRAG_HDR_OFFSET;
  878. *ring_vaddr = buffer_paddr;
  879. pdev->ipa_uc_tx_rsc.tx_buf_pool_vaddr_strg[tx_buffer_count] =
  880. buffer_vaddr;
  881. /* Memory barrier to ensure actual value updated */
  882. ring_vaddr += 2;
  883. }
  884. return tx_buffer_count;
  885. }
  886. #endif
  887. /**
  888. * htt_tx_ipa_uc_attach() - attach htt ipa uc tx resource
  889. * @pdev: htt context
  890. * @uc_tx_buf_sz: single tx buffer size
  891. * @uc_tx_buf_cnt: total tx buffer count
  892. * @uc_tx_partition_base: tx buffer partition start
  893. *
  894. * Return: 0 success
  895. * ENOBUFS No memory fail
  896. */
  897. int htt_tx_ipa_uc_attach(struct htt_pdev_t *pdev,
  898. unsigned int uc_tx_buf_sz,
  899. unsigned int uc_tx_buf_cnt,
  900. unsigned int uc_tx_partition_base)
  901. {
  902. int return_code = 0;
  903. unsigned int tx_comp_ring_size;
  904. /* Allocate CE Write Index WORD */
  905. pdev->ipa_uc_tx_rsc.tx_ce_idx.vaddr =
  906. cdf_os_mem_alloc_consistent(
  907. pdev->osdev,
  908. 4,
  909. &pdev->ipa_uc_tx_rsc.tx_ce_idx.paddr,
  910. cdf_get_dma_mem_context(
  911. (&pdev->ipa_uc_tx_rsc.tx_ce_idx),
  912. memctx));
  913. if (!pdev->ipa_uc_tx_rsc.tx_ce_idx.vaddr) {
  914. cdf_print("%s: CE Write Index WORD alloc fail", __func__);
  915. return -ENOBUFS;
  916. }
  917. /* Allocate TX COMP Ring */
  918. tx_comp_ring_size = uc_tx_buf_cnt * sizeof(cdf_nbuf_t);
  919. pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr =
  920. cdf_os_mem_alloc_consistent(
  921. pdev->osdev,
  922. tx_comp_ring_size,
  923. &pdev->ipa_uc_tx_rsc.tx_comp_base.paddr,
  924. cdf_get_dma_mem_context((&pdev->ipa_uc_tx_rsc.
  925. tx_comp_base),
  926. memctx));
  927. if (!pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr) {
  928. cdf_print("%s: TX COMP ring alloc fail", __func__);
  929. return_code = -ENOBUFS;
  930. goto free_tx_ce_idx;
  931. }
  932. cdf_mem_zero(pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr, tx_comp_ring_size);
  933. /* Allocate TX BUF vAddress Storage */
  934. pdev->ipa_uc_tx_rsc.tx_buf_pool_vaddr_strg =
  935. (cdf_nbuf_t *) cdf_mem_malloc(uc_tx_buf_cnt *
  936. sizeof(cdf_nbuf_t));
  937. if (!pdev->ipa_uc_tx_rsc.tx_buf_pool_vaddr_strg) {
  938. cdf_print("%s: TX BUF POOL vaddr storage alloc fail", __func__);
  939. return_code = -ENOBUFS;
  940. goto free_tx_comp_base;
  941. }
  942. cdf_mem_zero(pdev->ipa_uc_tx_rsc.tx_buf_pool_vaddr_strg,
  943. uc_tx_buf_cnt * sizeof(cdf_nbuf_t));
  944. pdev->ipa_uc_tx_rsc.alloc_tx_buf_cnt = htt_tx_ipa_uc_wdi_tx_buf_alloc(
  945. pdev, uc_tx_buf_sz, uc_tx_buf_cnt, uc_tx_partition_base);
  946. return 0;
  947. free_tx_comp_base:
  948. cdf_os_mem_free_consistent(pdev->osdev,
  949. ol_cfg_ipa_uc_tx_max_buf_cnt(pdev->
  950. ctrl_pdev) * 4,
  951. pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr,
  952. pdev->ipa_uc_tx_rsc.tx_comp_base.paddr,
  953. cdf_get_dma_mem_context((&pdev->
  954. ipa_uc_tx_rsc.
  955. tx_comp_base),
  956. memctx));
  957. free_tx_ce_idx:
  958. cdf_os_mem_free_consistent(pdev->osdev,
  959. 4,
  960. pdev->ipa_uc_tx_rsc.tx_ce_idx.vaddr,
  961. pdev->ipa_uc_tx_rsc.tx_ce_idx.paddr,
  962. cdf_get_dma_mem_context((&pdev->
  963. ipa_uc_tx_rsc.
  964. tx_ce_idx),
  965. memctx));
  966. return return_code;
  967. }
  968. int htt_tx_ipa_uc_detach(struct htt_pdev_t *pdev)
  969. {
  970. uint16_t idx;
  971. if (pdev->ipa_uc_tx_rsc.tx_ce_idx.vaddr) {
  972. cdf_os_mem_free_consistent(
  973. pdev->osdev,
  974. 4,
  975. pdev->ipa_uc_tx_rsc.tx_ce_idx.vaddr,
  976. pdev->ipa_uc_tx_rsc.tx_ce_idx.paddr,
  977. cdf_get_dma_mem_context(
  978. (&pdev->ipa_uc_tx_rsc.tx_ce_idx),
  979. memctx));
  980. }
  981. if (pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr) {
  982. cdf_os_mem_free_consistent(
  983. pdev->osdev,
  984. ol_cfg_ipa_uc_tx_max_buf_cnt(pdev->ctrl_pdev) * 4,
  985. pdev->ipa_uc_tx_rsc.tx_comp_base.vaddr,
  986. pdev->ipa_uc_tx_rsc.tx_comp_base.paddr,
  987. cdf_get_dma_mem_context((&pdev->ipa_uc_tx_rsc.
  988. tx_comp_base),
  989. memctx));
  990. }
  991. /* Free each single buffer */
  992. for (idx = 0; idx < pdev->ipa_uc_tx_rsc.alloc_tx_buf_cnt; idx++) {
  993. if (pdev->ipa_uc_tx_rsc.tx_buf_pool_vaddr_strg[idx]) {
  994. cdf_nbuf_unmap(pdev->osdev,
  995. pdev->ipa_uc_tx_rsc.
  996. tx_buf_pool_vaddr_strg[idx],
  997. CDF_DMA_FROM_DEVICE);
  998. cdf_nbuf_free(pdev->ipa_uc_tx_rsc.
  999. tx_buf_pool_vaddr_strg[idx]);
  1000. }
  1001. }
  1002. /* Free storage */
  1003. cdf_mem_free(pdev->ipa_uc_tx_rsc.tx_buf_pool_vaddr_strg);
  1004. return 0;
  1005. }
  1006. #endif /* IPA_OFFLOAD */
  1007. #if defined(FEATURE_TSO)
  1008. void
  1009. htt_tx_desc_fill_tso_info(htt_pdev_handle pdev, void *desc,
  1010. struct cdf_tso_info_t *tso_info)
  1011. {
  1012. u_int32_t *word;
  1013. int i;
  1014. struct cdf_tso_seg_elem_t *tso_seg = tso_info->curr_seg;
  1015. struct msdu_ext_desc_t *msdu_ext_desc = (struct msdu_ext_desc_t *)desc;
  1016. word = (u_int32_t *)(desc);
  1017. /* Initialize the TSO flags per MSDU */
  1018. ((struct msdu_ext_desc_t *)msdu_ext_desc)->tso_flags =
  1019. tso_seg->seg.tso_flags;
  1020. /* First 24 bytes (6*4) contain the TSO flags */
  1021. word += 6;
  1022. for (i = 0; i < tso_seg->seg.num_frags; i++) {
  1023. /* [31:0] first 32 bits of the buffer pointer */
  1024. *word = tso_seg->seg.tso_frags[i].paddr_low_32;
  1025. word++;
  1026. /* [15:0] the upper 16 bits of the first buffer pointer */
  1027. /* [31:16] length of the first buffer */
  1028. *word = (tso_seg->seg.tso_frags[i].length << 16);
  1029. word++;
  1030. }
  1031. if (tso_seg->seg.num_frags < FRAG_NUM_MAX) {
  1032. *word = 0;
  1033. word++;
  1034. *word = 0;
  1035. }
  1036. }
  1037. #endif /* FEATURE_TSO */