dp_htt.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. /*
  2. * Copyright (c) 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include <htt.h>
  19. #include <hal_api.h>
  20. #include <dp_htt.h>
  21. #define HTT_HTC_PKT_POOL_INIT_SIZE 64
  22. #define HTT_MSG_BUF_SIZE(msg_bytes) \
  23. ((msg_bytes) + HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING)
  24. void dp_rx_peer_map_handler(void *soc_handle, uint16_t peer_id,
  25. uint8_t vdev_id, uint8_t *peer_mac_addr);
  26. void dp_rx_peer_unmap_handler(void *soc_handle, uint16_t peer_id);
  27. void dp_rx_sec_ind_handler(void *soc_handle, uint16_t peer_id,
  28. enum htt_sec_type sec_type, int is_unicast,
  29. u_int32_t *michael_key, u_int32_t *rx_pn);
  30. /*
  31. * htt_htc_pkt_alloc() - Allocate HTC packet buffer
  32. * @htt_soc: HTT SOC handle
  33. *
  34. * Return: Pointer to htc packet buffer
  35. */
  36. static struct dp_htt_htc_pkt *
  37. htt_htc_pkt_alloc(struct htt_soc *soc)
  38. {
  39. struct dp_htt_htc_pkt_union *pkt = NULL;
  40. HTT_TX_MUTEX_ACQUIRE(&soc->htt_tx_mutex);
  41. if (soc->htt_htc_pkt_freelist) {
  42. pkt = soc->htt_htc_pkt_freelist;
  43. soc->htt_htc_pkt_freelist = soc->htt_htc_pkt_freelist->u.next;
  44. }
  45. HTT_TX_MUTEX_RELEASE(&soc->htt_tx_mutex);
  46. if (pkt == NULL)
  47. pkt = qdf_mem_malloc(sizeof(*pkt));
  48. return &pkt->u.pkt; /* not actually a dereference */
  49. }
  50. /*
  51. * htt_htc_pkt_free() - Free HTC packet buffer
  52. * @htt_soc: HTT SOC handle
  53. */
  54. static void
  55. htt_htc_pkt_free(struct htt_soc *soc, struct dp_htt_htc_pkt *pkt)
  56. {
  57. struct dp_htt_htc_pkt_union *u_pkt =
  58. (struct dp_htt_htc_pkt_union *)pkt;
  59. HTT_TX_MUTEX_ACQUIRE(&soc->htt_tx_mutex);
  60. u_pkt->u.next = soc->htt_htc_pkt_freelist;
  61. soc->htt_htc_pkt_freelist = u_pkt;
  62. HTT_TX_MUTEX_RELEASE(&soc->htt_tx_mutex);
  63. }
  64. /*
  65. * htt_htc_pkt_pool_free() - Free HTC packet pool
  66. * @htt_soc: HTT SOC handle
  67. */
  68. static void
  69. htt_htc_pkt_pool_free(struct htt_soc *soc)
  70. {
  71. struct dp_htt_htc_pkt_union *pkt, *next;
  72. pkt = soc->htt_htc_pkt_freelist;
  73. while (pkt) {
  74. next = pkt->u.next;
  75. qdf_mem_free(pkt);
  76. pkt = next;
  77. }
  78. soc->htt_htc_pkt_freelist = NULL;
  79. }
  80. /*
  81. * htt_t2h_mac_addr_deswizzle() - Swap MAC addr bytes if FW endianess differ
  82. * @tgt_mac_addr: Target MAC
  83. * @buffer: Output buffer
  84. */
  85. static u_int8_t *
  86. htt_t2h_mac_addr_deswizzle(u_int8_t *tgt_mac_addr, u_int8_t *buffer)
  87. {
  88. #ifdef BIG_ENDIAN_HOST
  89. /*
  90. * The host endianness is opposite of the target endianness.
  91. * To make u_int32_t elements come out correctly, the target->host
  92. * upload has swizzled the bytes in each u_int32_t element of the
  93. * message.
  94. * For byte-array message fields like the MAC address, this
  95. * upload swizzling puts the bytes in the wrong order, and needs
  96. * to be undone.
  97. */
  98. buffer[0] = tgt_mac_addr[3];
  99. buffer[1] = tgt_mac_addr[2];
  100. buffer[2] = tgt_mac_addr[1];
  101. buffer[3] = tgt_mac_addr[0];
  102. buffer[4] = tgt_mac_addr[7];
  103. buffer[5] = tgt_mac_addr[6];
  104. return buffer;
  105. #else
  106. /*
  107. * The host endianness matches the target endianness -
  108. * we can use the mac addr directly from the message buffer.
  109. */
  110. return tgt_mac_addr;
  111. #endif
  112. }
  113. /*
  114. * dp_htt_h2t_send_complete_free_netbuf() - Free completed buffer
  115. * @soc: SOC handle
  116. * @status: Completion status
  117. * @netbuf: HTT buffer
  118. */
  119. static void
  120. dp_htt_h2t_send_complete_free_netbuf(
  121. void *soc, A_STATUS status, qdf_nbuf_t netbuf)
  122. {
  123. qdf_nbuf_free(netbuf);
  124. }
  125. /*
  126. * dp_htt_h2t_send_complete() - H2T completion handler
  127. * @context: Opaque context (HTT SOC handle)
  128. * @htc_pkt: HTC packet
  129. */
  130. void
  131. dp_htt_h2t_send_complete(void *context, HTC_PACKET *htc_pkt)
  132. {
  133. void (*send_complete_part2)(
  134. void *soc, A_STATUS status, qdf_nbuf_t msdu);
  135. struct htt_soc *soc = (struct htt_soc *) context;
  136. struct dp_htt_htc_pkt *htt_pkt;
  137. qdf_nbuf_t netbuf;
  138. send_complete_part2 = htc_pkt->pPktContext;
  139. htt_pkt = container_of(htc_pkt, struct dp_htt_htc_pkt, htc_pkt);
  140. /* process (free or keep) the netbuf that held the message */
  141. netbuf = (qdf_nbuf_t) htc_pkt->pNetBufContext;
  142. /*
  143. * adf sendcomplete is required for windows only
  144. */
  145. /* qdf_nbuf_set_sendcompleteflag(netbuf, TRUE); */
  146. if (send_complete_part2 != NULL) {
  147. send_complete_part2(
  148. htt_pkt->soc_ctxt, htc_pkt->Status, netbuf);
  149. }
  150. /* free the htt_htc_pkt / HTC_PACKET object */
  151. htt_htc_pkt_free(soc, htt_pkt);
  152. }
  153. /*
  154. * htt_h2t_ver_req_msg() - Send HTT version request message to target
  155. * @htt_soc: HTT SOC handle
  156. *
  157. * Return: 0 on success; error code on failure
  158. */
  159. static int htt_h2t_ver_req_msg(struct htt_soc *soc)
  160. {
  161. struct dp_htt_htc_pkt *pkt;
  162. qdf_nbuf_t msg;
  163. uint32_t *msg_word;
  164. msg = qdf_nbuf_alloc(
  165. soc->osdev,
  166. HTT_MSG_BUF_SIZE(HTT_VER_REQ_BYTES),
  167. /* reserve room for the HTC header */
  168. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  169. if (!msg)
  170. return QDF_STATUS_E_NOMEM;
  171. /*
  172. * Set the length of the message.
  173. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  174. * separately during the below call to qdf_nbuf_push_head.
  175. * The contribution from the HTC header is added separately inside HTC.
  176. */
  177. if (qdf_nbuf_put_tail(msg, HTT_VER_REQ_BYTES) == NULL) {
  178. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  179. "%s: Failed to expand head for HTT_H2T_MSG_TYPE_VERSION_REQ msg\n",
  180. __func__);
  181. return QDF_STATUS_E_FAILURE;
  182. }
  183. /* fill in the message contents */
  184. msg_word = (u_int32_t *) qdf_nbuf_data(msg);
  185. /* rewind beyond alignment pad to get to the HTC header reserved area */
  186. qdf_nbuf_push_head(msg, HTC_HDR_ALIGNMENT_PADDING);
  187. *msg_word = 0;
  188. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_VERSION_REQ);
  189. pkt = htt_htc_pkt_alloc(soc);
  190. if (!pkt) {
  191. qdf_nbuf_free(msg);
  192. return QDF_STATUS_E_FAILURE;
  193. }
  194. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  195. SET_HTC_PACKET_INFO_TX(&pkt->htc_pkt,
  196. dp_htt_h2t_send_complete_free_netbuf, qdf_nbuf_data(msg),
  197. qdf_nbuf_len(msg), soc->htc_endpoint,
  198. 1); /* tag - not relevant here */
  199. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msg);
  200. htc_send_pkt(soc->htc_soc, &pkt->htc_pkt);
  201. return 0;
  202. }
  203. /*
  204. * htt_srng_setup() - Send SRNG setup message to target
  205. * @htt_soc: HTT SOC handle
  206. * @pdev_id: PDEV Id
  207. * @hal_srng: Opaque HAL SRNG pointer
  208. * @hal_ring_type: SRNG ring type
  209. *
  210. * Return: 0 on success; error code on failure
  211. */
  212. int htt_srng_setup(void *htt_soc, int pdev_id, void *hal_srng,
  213. int hal_ring_type)
  214. {
  215. struct htt_soc *soc = (struct htt_soc *)htt_soc;
  216. struct dp_htt_htc_pkt *pkt;
  217. qdf_nbuf_t htt_msg;
  218. uint32_t *msg_word;
  219. struct hal_srng_params srng_params;
  220. qdf_dma_addr_t hp_addr, tp_addr;
  221. uint32_t ring_entry_size =
  222. hal_srng_get_entrysize(soc->hal_soc, hal_ring_type);
  223. int htt_ring_type, htt_ring_id;
  224. /* Sizes should be set in 4-byte words */
  225. ring_entry_size = ring_entry_size >> 2;
  226. htt_msg = qdf_nbuf_alloc(soc->osdev,
  227. HTT_MSG_BUF_SIZE(HTT_SRING_SETUP_SZ),
  228. /* reserve room for the HTC header */
  229. HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING, 4, TRUE);
  230. if (!htt_msg)
  231. goto fail0;
  232. hal_get_srng_params(soc->hal_soc, hal_srng, &srng_params);
  233. hp_addr = hal_srng_get_hp_addr(soc->hal_soc, hal_srng);
  234. tp_addr = hal_srng_get_tp_addr(soc->hal_soc, hal_srng);
  235. switch (hal_ring_type) {
  236. case RXDMA_BUF:
  237. #if QCA_HOST2FW_RXBUF_RING
  238. htt_ring_id = HTT_HOST1_TO_FW_RXBUF_RING;
  239. htt_ring_type = HTT_SW_TO_SW_RING;
  240. #else
  241. htt_ring_id = HTT_RXDMA_HOST_BUF_RING;
  242. htt_ring_type = HTT_SW_TO_HW_RING;
  243. #endif
  244. break;
  245. case RXDMA_MONITOR_BUF:
  246. htt_ring_id = HTT_RXDMA_MONITOR_BUF_RING;
  247. htt_ring_type = HTT_SW_TO_HW_RING;
  248. break;
  249. case RXDMA_MONITOR_STATUS:
  250. htt_ring_id = HTT_RXDMA_MONITOR_STATUS_RING;
  251. htt_ring_type = HTT_SW_TO_HW_RING;
  252. break;
  253. case RXDMA_MONITOR_DST:
  254. htt_ring_id = HTT_RXDMA_MONITOR_DEST_RING;
  255. htt_ring_type = HTT_HW_TO_SW_RING;
  256. break;
  257. case RXDMA_DST:
  258. default:
  259. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  260. "%s: Ring currently not supported\n", __func__);
  261. goto fail1;
  262. }
  263. /*
  264. * Set the length of the message.
  265. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  266. * separately during the below call to qdf_nbuf_push_head.
  267. * The contribution from the HTC header is added separately inside HTC.
  268. */
  269. if (qdf_nbuf_put_tail(htt_msg, HTT_SRING_SETUP_SZ) == NULL) {
  270. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  271. "%s: Failed to expand head for SRING_SETUP msg\n",
  272. __func__);
  273. return QDF_STATUS_E_FAILURE;
  274. }
  275. msg_word = (uint32_t *)qdf_nbuf_data(htt_msg);
  276. /* rewind beyond alignment pad to get to the HTC header reserved area */
  277. qdf_nbuf_push_head(htt_msg, HTC_HDR_ALIGNMENT_PADDING);
  278. /* word 0 */
  279. *msg_word = 0;
  280. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_SRING_SETUP);
  281. HTT_SRING_SETUP_PDEV_ID_SET(*msg_word, pdev_id);
  282. HTT_SRING_SETUP_RING_TYPE_SET(*msg_word, htt_ring_type);
  283. /* TODO: Discuss with FW on changing this to unique ID and using
  284. * htt_ring_type to send the type of ring
  285. */
  286. HTT_SRING_SETUP_RING_ID_SET(*msg_word, htt_ring_id);
  287. /* word 1 */
  288. msg_word++;
  289. *msg_word = 0;
  290. HTT_SRING_SETUP_RING_BASE_ADDR_LO_SET(*msg_word,
  291. srng_params.ring_base_paddr & 0xffffffff);
  292. /* word 2 */
  293. msg_word++;
  294. *msg_word = 0;
  295. HTT_SRING_SETUP_RING_BASE_ADDR_HI_SET(*msg_word,
  296. (uint64_t)srng_params.ring_base_paddr >> 32);
  297. /* word 3 */
  298. msg_word++;
  299. *msg_word = 0;
  300. HTT_SRING_SETUP_ENTRY_SIZE_SET(*msg_word, ring_entry_size);
  301. HTT_SRING_SETUP_RING_SIZE_SET(*msg_word,
  302. (ring_entry_size * srng_params.num_entries));
  303. if (htt_ring_type == HTT_SW_TO_HW_RING)
  304. HTT_SRING_SETUP_RING_MISC_CFG_LOOPCOUNT_DISABLE_SET(*msg_word,
  305. 1);
  306. HTT_SRING_SETUP_RING_MISC_CFG_MSI_SWAP_SET(*msg_word,
  307. !!(srng_params.flags & HAL_SRNG_MSI_SWAP));
  308. HTT_SRING_SETUP_RING_MISC_CFG_TLV_SWAP_SET(*msg_word,
  309. !!(srng_params.flags & HAL_SRNG_DATA_TLV_SWAP));
  310. HTT_SRING_SETUP_RING_MISC_CFG_HOST_FW_SWAP_SET(*msg_word,
  311. !!(srng_params.flags & HAL_SRNG_RING_PTR_SWAP));
  312. /* word 4 */
  313. msg_word++;
  314. *msg_word = 0;
  315. HTT_SRING_SETUP_HEAD_OFFSET32_REMOTE_BASE_ADDR_LO_SET(*msg_word,
  316. hp_addr & 0xffffffff);
  317. /* word 5 */
  318. msg_word++;
  319. *msg_word = 0;
  320. HTT_SRING_SETUP_HEAD_OFFSET32_REMOTE_BASE_ADDR_HI_SET(*msg_word,
  321. (uint64_t)hp_addr >> 32);
  322. /* word 6 */
  323. msg_word++;
  324. *msg_word = 0;
  325. HTT_SRING_SETUP_TAIL_OFFSET32_REMOTE_BASE_ADDR_LO_SET(*msg_word,
  326. tp_addr & 0xffffffff);
  327. /* word 7 */
  328. msg_word++;
  329. *msg_word = 0;
  330. HTT_SRING_SETUP_TAIL_OFFSET32_REMOTE_BASE_ADDR_HI_SET(*msg_word,
  331. (uint64_t)tp_addr >> 32);
  332. /* word 8 */
  333. msg_word++;
  334. *msg_word = 0;
  335. HTT_SRING_SETUP_RING_MSI_ADDR_LO_SET(*msg_word,
  336. srng_params.msi_addr & 0xffffffff);
  337. /* word 9 */
  338. msg_word++;
  339. *msg_word = 0;
  340. HTT_SRING_SETUP_RING_MSI_ADDR_HI_SET(*msg_word,
  341. (uint64_t)(srng_params.msi_addr) >> 32);
  342. /* word 10 */
  343. msg_word++;
  344. *msg_word = 0;
  345. HTT_SRING_SETUP_RING_MSI_DATA_SET(*msg_word,
  346. srng_params.msi_data);
  347. /* word 11 */
  348. msg_word++;
  349. *msg_word = 0;
  350. HTT_SRING_SETUP_INTR_BATCH_COUNTER_TH_SET(*msg_word,
  351. srng_params.intr_batch_cntr_thres_entries *
  352. ring_entry_size);
  353. HTT_SRING_SETUP_INTR_TIMER_TH_SET(*msg_word,
  354. srng_params.intr_timer_thres_us >> 3);
  355. /* word 12 */
  356. msg_word++;
  357. *msg_word = 0;
  358. if (srng_params.flags & HAL_SRNG_LOW_THRES_INTR_ENABLE) {
  359. /* TODO: Setting low threshold to 1/8th of ring size - see
  360. * if this needs to be configurable
  361. */
  362. HTT_SRING_SETUP_INTR_LOW_TH_SET(*msg_word,
  363. srng_params.low_threshold);
  364. }
  365. /* "response_required" field should be set if a HTT response message is
  366. * required after setting up the ring.
  367. */
  368. pkt = htt_htc_pkt_alloc(soc);
  369. if (!pkt)
  370. goto fail1;
  371. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  372. SET_HTC_PACKET_INFO_TX(
  373. &pkt->htc_pkt,
  374. dp_htt_h2t_send_complete_free_netbuf,
  375. qdf_nbuf_data(htt_msg),
  376. qdf_nbuf_len(htt_msg),
  377. soc->htc_endpoint,
  378. 1); /* tag - not relevant here */
  379. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, htt_msg);
  380. htc_send_pkt(soc->htc_soc, &pkt->htc_pkt);
  381. return 0;
  382. fail1:
  383. qdf_nbuf_free(htt_msg);
  384. fail0:
  385. return QDF_STATUS_E_FAILURE;
  386. }
  387. /*
  388. * htt_soc_attach_target() - SOC level HTT setup
  389. * @htt_soc: HTT SOC handle
  390. *
  391. * Return: 0 on success; error code on failure
  392. */
  393. int htt_soc_attach_target(void *htt_soc)
  394. {
  395. struct htt_soc *soc = (struct htt_soc *)htt_soc;
  396. return htt_h2t_ver_req_msg(soc);
  397. }
  398. /*
  399. * dp_htt_t2h_msg_handler() - Generic Target to host Msg/event handler
  400. * @context: Opaque context (HTT SOC handle)
  401. * @pkt: HTC packet
  402. */
  403. static void dp_htt_t2h_msg_handler(void *context, HTC_PACKET *pkt)
  404. {
  405. struct htt_soc *soc = (struct htt_soc *) context;
  406. qdf_nbuf_t htt_t2h_msg = (qdf_nbuf_t) pkt->pPktContext;
  407. u_int32_t *msg_word;
  408. enum htt_t2h_msg_type msg_type;
  409. /* check for successful message reception */
  410. if (pkt->Status != A_OK) {
  411. if (pkt->Status != A_ECANCELED)
  412. soc->stats.htc_err_cnt++;
  413. qdf_nbuf_free(htt_t2h_msg);
  414. return;
  415. }
  416. /* TODO: Check if we should pop the HTC/HTT header alignment padding */
  417. msg_word = (u_int32_t *) qdf_nbuf_data(htt_t2h_msg);
  418. msg_type = HTT_T2H_MSG_TYPE_GET(*msg_word);
  419. switch (msg_type) {
  420. case HTT_T2H_MSG_TYPE_PEER_MAP:
  421. {
  422. u_int8_t mac_addr_deswizzle_buf[HTT_MAC_ADDR_LEN];
  423. u_int8_t *peer_mac_addr;
  424. u_int16_t peer_id;
  425. u_int8_t vdev_id;
  426. peer_id = HTT_RX_PEER_MAP_PEER_ID_GET(*msg_word);
  427. vdev_id = HTT_RX_PEER_MAP_VDEV_ID_GET(*msg_word);
  428. peer_mac_addr = htt_t2h_mac_addr_deswizzle(
  429. (u_int8_t *) (msg_word+1),
  430. &mac_addr_deswizzle_buf[0]);
  431. dp_rx_peer_map_handler(
  432. soc->dp_soc, peer_id, vdev_id, peer_mac_addr);
  433. break;
  434. }
  435. case HTT_T2H_MSG_TYPE_PEER_UNMAP:
  436. {
  437. u_int16_t peer_id;
  438. peer_id = HTT_RX_PEER_UNMAP_PEER_ID_GET(*msg_word);
  439. dp_rx_peer_unmap_handler(soc->dp_soc, peer_id);
  440. break;
  441. }
  442. case HTT_T2H_MSG_TYPE_SEC_IND:
  443. {
  444. u_int16_t peer_id;
  445. enum htt_sec_type sec_type;
  446. int is_unicast;
  447. peer_id = HTT_SEC_IND_PEER_ID_GET(*msg_word);
  448. sec_type = HTT_SEC_IND_SEC_TYPE_GET(*msg_word);
  449. is_unicast = HTT_SEC_IND_UNICAST_GET(*msg_word);
  450. /* point to the first part of the Michael key */
  451. msg_word++;
  452. dp_rx_sec_ind_handler(
  453. soc->dp_soc, peer_id, sec_type, is_unicast,
  454. msg_word, msg_word + 2);
  455. break;
  456. }
  457. #ifdef notyet
  458. #ifndef REMOVE_PKT_LOG
  459. case HTT_T2H_MSG_TYPE_PKTLOG:
  460. {
  461. u_int32_t *pl_hdr;
  462. pl_hdr = (msg_word + 1);
  463. wdi_event_handler(WDI_EVENT_OFFLOAD_ALL, soc->dp_soc,
  464. pl_hdr, HTT_INVALID_PEER, WDI_NO_VAL);
  465. break;
  466. }
  467. #endif
  468. #endif /* notyet */
  469. case HTT_T2H_MSG_TYPE_VERSION_CONF:
  470. {
  471. soc->tgt_ver.major = HTT_VER_CONF_MAJOR_GET(*msg_word);
  472. soc->tgt_ver.minor = HTT_VER_CONF_MINOR_GET(*msg_word);
  473. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO_HIGH,
  474. "target uses HTT version %d.%d; host uses %d.%d\n",
  475. soc->tgt_ver.major, soc->tgt_ver.minor,
  476. HTT_CURRENT_VERSION_MAJOR,
  477. HTT_CURRENT_VERSION_MINOR);
  478. if (soc->tgt_ver.major != HTT_CURRENT_VERSION_MAJOR) {
  479. QDF_TRACE(QDF_MODULE_ID_TXRX,
  480. QDF_TRACE_LEVEL_ERROR,
  481. "*** Incompatible host/target HTT versions!\n");
  482. }
  483. /* abort if the target is incompatible with the host */
  484. qdf_assert(soc->tgt_ver.major ==
  485. HTT_CURRENT_VERSION_MAJOR);
  486. if (soc->tgt_ver.minor != HTT_CURRENT_VERSION_MINOR) {
  487. QDF_TRACE(QDF_MODULE_ID_TXRX,
  488. QDF_TRACE_LEVEL_WARN,
  489. "*** Warning: host/target HTT versions"
  490. " are different, though compatible!\n");
  491. }
  492. break;
  493. }
  494. default:
  495. break;
  496. };
  497. /* Free the indication buffer */
  498. qdf_nbuf_free(htt_t2h_msg);
  499. }
  500. /*
  501. * dp_htt_h2t_full() - Send full handler (called from HTC)
  502. * @context: Opaque context (HTT SOC handle)
  503. * @pkt: HTC packet
  504. *
  505. * Return: HTC_SEND_FULL_ACTION
  506. */
  507. static HTC_SEND_FULL_ACTION
  508. dp_htt_h2t_full(void *context, HTC_PACKET *pkt)
  509. {
  510. return HTC_SEND_FULL_KEEP;
  511. }
  512. /*
  513. * htt_htc_soc_attach() - Register SOC level HTT instance with HTC
  514. * @htt_soc: HTT SOC handle
  515. *
  516. * Return: 0 on success; error code on failure
  517. */
  518. static int
  519. htt_htc_soc_attach(struct htt_soc *soc)
  520. {
  521. HTC_SERVICE_CONNECT_REQ connect;
  522. HTC_SERVICE_CONNECT_RESP response;
  523. A_STATUS status;
  524. qdf_mem_set(&connect, sizeof(connect), 0);
  525. qdf_mem_set(&response, sizeof(response), 0);
  526. connect.pMetaData = NULL;
  527. connect.MetaDataLength = 0;
  528. connect.EpCallbacks.pContext = soc;
  529. connect.EpCallbacks.EpTxComplete = dp_htt_h2t_send_complete;
  530. connect.EpCallbacks.EpTxCompleteMultiple = NULL;
  531. connect.EpCallbacks.EpRecv = dp_htt_t2h_msg_handler;
  532. /* rx buffers currently are provided by HIF, not by EpRecvRefill */
  533. connect.EpCallbacks.EpRecvRefill = NULL;
  534. /* N/A, fill is done by HIF */
  535. connect.EpCallbacks.RecvRefillWaterMark = 1;
  536. connect.EpCallbacks.EpSendFull = dp_htt_h2t_full;
  537. /*
  538. * Specify how deep to let a queue get before htc_send_pkt will
  539. * call the EpSendFull function due to excessive send queue depth.
  540. */
  541. connect.MaxSendQueueDepth = DP_HTT_MAX_SEND_QUEUE_DEPTH;
  542. /* disable flow control for HTT data message service */
  543. connect.ConnectionFlags |= HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL;
  544. /* connect to control service */
  545. connect.service_id = HTT_DATA_MSG_SVC;
  546. status = htc_connect_service(soc->htc_soc, &connect, &response);
  547. if (status != A_OK)
  548. return QDF_STATUS_E_FAILURE;
  549. soc->htc_endpoint = response.Endpoint;
  550. return 0; /* success */
  551. }
  552. /*
  553. * htt_soc_attach() - SOC level HTT initialization
  554. * @dp_soc: Opaque Data path SOC handle
  555. * @osif_soc: Opaque OSIF SOC handle
  556. * @htc_soc: SOC level HTC handle
  557. * @hal_soc: Opaque HAL SOC handle
  558. * @osdev: QDF device
  559. *
  560. * Return: HTT handle on success; NULL on failure
  561. */
  562. void *
  563. htt_soc_attach(void *dp_soc, void *osif_soc, HTC_HANDLE htc_soc,
  564. void *hal_soc, qdf_device_t osdev)
  565. {
  566. struct htt_soc *soc;
  567. int i;
  568. soc = qdf_mem_malloc(sizeof(*soc));
  569. if (!soc)
  570. goto fail1;
  571. soc->osdev = osdev;
  572. soc->osif_soc = osif_soc;
  573. soc->dp_soc = dp_soc;
  574. soc->htc_soc = htc_soc;
  575. soc->hal_soc = hal_soc;
  576. /* TODO: See if any NSS related context is requred in htt_soc */
  577. soc->htt_htc_pkt_freelist = NULL;
  578. if (htt_htc_soc_attach(soc))
  579. goto fail2;
  580. /* TODO: See if any Rx data specific intialization is required. For
  581. * MCL use cases, the data will be received as single packet and
  582. * should not required any descriptor or reorder handling
  583. */
  584. HTT_TX_MUTEX_INIT(&soc->htt_tx_mutex);
  585. /* pre-allocate some HTC_PACKET objects */
  586. for (i = 0; i < HTT_HTC_PKT_POOL_INIT_SIZE; i++) {
  587. struct dp_htt_htc_pkt_union *pkt;
  588. pkt = qdf_mem_malloc(sizeof(*pkt));
  589. if (!pkt)
  590. break;
  591. htt_htc_pkt_free(soc, &pkt->u.pkt);
  592. }
  593. return soc;
  594. fail2:
  595. qdf_mem_free(soc);
  596. fail1:
  597. return NULL;
  598. }
  599. /*
  600. * htt_soc_detach() - Detach SOC level HTT
  601. * @htt_soc: HTT SOC handle
  602. */
  603. void
  604. htt_soc_detach(void *htt_soc)
  605. {
  606. struct htt_soc *soc = (struct htt_soc *)soc;
  607. htt_htc_pkt_pool_free(soc);
  608. HTT_TX_MUTEX_DESTROY(&soc->htt_tx_mutex);
  609. qdf_mem_free(soc);
  610. }