dp_htt.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  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. switch (srng_params.ring_id) {
  238. case HAL_SRNG_WMAC1_SW2RXDMA0_BUF:
  239. #ifdef QCA_HOST2FW_RXBUF_RING
  240. htt_ring_id = HTT_HOST1_TO_FW_RXBUF_RING;
  241. htt_ring_type = HTT_SW_TO_SW_RING;
  242. #else
  243. htt_ring_id = HTT_RXDMA_HOST_BUF_RING;
  244. htt_ring_type = HTT_SW_TO_HW_RING;
  245. #endif
  246. break;
  247. case HAL_SRNG_WMAC1_SW2RXDMA1_BUF:
  248. htt_ring_id = HTT_RXDMA_HOST_BUF_RING;
  249. htt_ring_type = HTT_SW_TO_HW_RING;
  250. break;
  251. default:
  252. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  253. "%s: Ring %d currently not supported\n",
  254. __func__, srng_params.ring_id);
  255. goto fail1;
  256. }
  257. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  258. "%s: ring_type %d ring_id %d\n",
  259. __func__, hal_ring_type, srng_params.ring_id);
  260. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  261. "hp_addr 0x%x tp_addr 0x%x\n", hp_addr, tp_addr);
  262. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  263. "htt_ring_id %d\n", htt_ring_id);
  264. break;
  265. case RXDMA_MONITOR_BUF:
  266. htt_ring_id = HTT_RXDMA_MONITOR_BUF_RING;
  267. htt_ring_type = HTT_SW_TO_HW_RING;
  268. break;
  269. case RXDMA_MONITOR_STATUS:
  270. htt_ring_id = HTT_RXDMA_MONITOR_STATUS_RING;
  271. htt_ring_type = HTT_SW_TO_HW_RING;
  272. break;
  273. case RXDMA_MONITOR_DST:
  274. htt_ring_id = HTT_RXDMA_MONITOR_DEST_RING;
  275. htt_ring_type = HTT_HW_TO_SW_RING;
  276. break;
  277. case RXDMA_DST:
  278. default:
  279. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  280. "%s: Ring currently not supported\n", __func__);
  281. goto fail1;
  282. }
  283. /*
  284. * Set the length of the message.
  285. * The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
  286. * separately during the below call to qdf_nbuf_push_head.
  287. * The contribution from the HTC header is added separately inside HTC.
  288. */
  289. if (qdf_nbuf_put_tail(htt_msg, HTT_SRING_SETUP_SZ) == NULL) {
  290. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  291. "%s: Failed to expand head for SRING_SETUP msg\n",
  292. __func__);
  293. return QDF_STATUS_E_FAILURE;
  294. }
  295. msg_word = (uint32_t *)qdf_nbuf_data(htt_msg);
  296. /* rewind beyond alignment pad to get to the HTC header reserved area */
  297. qdf_nbuf_push_head(htt_msg, HTC_HDR_ALIGNMENT_PADDING);
  298. /* word 0 */
  299. *msg_word = 0;
  300. HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_SRING_SETUP);
  301. HTT_SRING_SETUP_PDEV_ID_SET(*msg_word, pdev_id);
  302. HTT_SRING_SETUP_RING_TYPE_SET(*msg_word, htt_ring_type);
  303. /* TODO: Discuss with FW on changing this to unique ID and using
  304. * htt_ring_type to send the type of ring
  305. */
  306. HTT_SRING_SETUP_RING_ID_SET(*msg_word, htt_ring_id);
  307. /* word 1 */
  308. msg_word++;
  309. *msg_word = 0;
  310. HTT_SRING_SETUP_RING_BASE_ADDR_LO_SET(*msg_word,
  311. srng_params.ring_base_paddr & 0xffffffff);
  312. /* word 2 */
  313. msg_word++;
  314. *msg_word = 0;
  315. HTT_SRING_SETUP_RING_BASE_ADDR_HI_SET(*msg_word,
  316. (uint64_t)srng_params.ring_base_paddr >> 32);
  317. /* word 3 */
  318. msg_word++;
  319. *msg_word = 0;
  320. HTT_SRING_SETUP_ENTRY_SIZE_SET(*msg_word, ring_entry_size);
  321. HTT_SRING_SETUP_RING_SIZE_SET(*msg_word,
  322. (ring_entry_size * srng_params.num_entries));
  323. if (htt_ring_type == HTT_SW_TO_HW_RING)
  324. HTT_SRING_SETUP_RING_MISC_CFG_LOOPCOUNT_DISABLE_SET(*msg_word,
  325. 1);
  326. HTT_SRING_SETUP_RING_MISC_CFG_MSI_SWAP_SET(*msg_word,
  327. !!(srng_params.flags & HAL_SRNG_MSI_SWAP));
  328. HTT_SRING_SETUP_RING_MISC_CFG_TLV_SWAP_SET(*msg_word,
  329. !!(srng_params.flags & HAL_SRNG_DATA_TLV_SWAP));
  330. HTT_SRING_SETUP_RING_MISC_CFG_HOST_FW_SWAP_SET(*msg_word,
  331. !!(srng_params.flags & HAL_SRNG_RING_PTR_SWAP));
  332. /* word 4 */
  333. msg_word++;
  334. *msg_word = 0;
  335. HTT_SRING_SETUP_HEAD_OFFSET32_REMOTE_BASE_ADDR_LO_SET(*msg_word,
  336. hp_addr & 0xffffffff);
  337. /* word 5 */
  338. msg_word++;
  339. *msg_word = 0;
  340. HTT_SRING_SETUP_HEAD_OFFSET32_REMOTE_BASE_ADDR_HI_SET(*msg_word,
  341. (uint64_t)hp_addr >> 32);
  342. /* word 6 */
  343. msg_word++;
  344. *msg_word = 0;
  345. HTT_SRING_SETUP_TAIL_OFFSET32_REMOTE_BASE_ADDR_LO_SET(*msg_word,
  346. tp_addr & 0xffffffff);
  347. /* word 7 */
  348. msg_word++;
  349. *msg_word = 0;
  350. HTT_SRING_SETUP_TAIL_OFFSET32_REMOTE_BASE_ADDR_HI_SET(*msg_word,
  351. (uint64_t)tp_addr >> 32);
  352. /* word 8 */
  353. msg_word++;
  354. *msg_word = 0;
  355. HTT_SRING_SETUP_RING_MSI_ADDR_LO_SET(*msg_word,
  356. srng_params.msi_addr & 0xffffffff);
  357. /* word 9 */
  358. msg_word++;
  359. *msg_word = 0;
  360. HTT_SRING_SETUP_RING_MSI_ADDR_HI_SET(*msg_word,
  361. (uint64_t)(srng_params.msi_addr) >> 32);
  362. /* word 10 */
  363. msg_word++;
  364. *msg_word = 0;
  365. HTT_SRING_SETUP_RING_MSI_DATA_SET(*msg_word,
  366. srng_params.msi_data);
  367. /* word 11 */
  368. msg_word++;
  369. *msg_word = 0;
  370. HTT_SRING_SETUP_INTR_BATCH_COUNTER_TH_SET(*msg_word,
  371. srng_params.intr_batch_cntr_thres_entries *
  372. ring_entry_size);
  373. HTT_SRING_SETUP_INTR_TIMER_TH_SET(*msg_word,
  374. srng_params.intr_timer_thres_us >> 3);
  375. /* word 12 */
  376. msg_word++;
  377. *msg_word = 0;
  378. if (srng_params.flags & HAL_SRNG_LOW_THRES_INTR_ENABLE) {
  379. /* TODO: Setting low threshold to 1/8th of ring size - see
  380. * if this needs to be configurable
  381. */
  382. HTT_SRING_SETUP_INTR_LOW_TH_SET(*msg_word,
  383. srng_params.low_threshold);
  384. }
  385. /* "response_required" field should be set if a HTT response message is
  386. * required after setting up the ring.
  387. */
  388. pkt = htt_htc_pkt_alloc(soc);
  389. if (!pkt)
  390. goto fail1;
  391. pkt->soc_ctxt = NULL; /* not used during send-done callback */
  392. SET_HTC_PACKET_INFO_TX(
  393. &pkt->htc_pkt,
  394. dp_htt_h2t_send_complete_free_netbuf,
  395. qdf_nbuf_data(htt_msg),
  396. qdf_nbuf_len(htt_msg),
  397. soc->htc_endpoint,
  398. 1); /* tag - not relevant here */
  399. SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, htt_msg);
  400. htc_send_pkt(soc->htc_soc, &pkt->htc_pkt);
  401. return 0;
  402. fail1:
  403. qdf_nbuf_free(htt_msg);
  404. fail0:
  405. return QDF_STATUS_E_FAILURE;
  406. }
  407. /*
  408. * htt_soc_attach_target() - SOC level HTT setup
  409. * @htt_soc: HTT SOC handle
  410. *
  411. * Return: 0 on success; error code on failure
  412. */
  413. int htt_soc_attach_target(void *htt_soc)
  414. {
  415. struct htt_soc *soc = (struct htt_soc *)htt_soc;
  416. return htt_h2t_ver_req_msg(soc);
  417. }
  418. /*
  419. * dp_htt_t2h_msg_handler() - Generic Target to host Msg/event handler
  420. * @context: Opaque context (HTT SOC handle)
  421. * @pkt: HTC packet
  422. */
  423. static void dp_htt_t2h_msg_handler(void *context, HTC_PACKET *pkt)
  424. {
  425. struct htt_soc *soc = (struct htt_soc *) context;
  426. qdf_nbuf_t htt_t2h_msg = (qdf_nbuf_t) pkt->pPktContext;
  427. u_int32_t *msg_word;
  428. enum htt_t2h_msg_type msg_type;
  429. /* check for successful message reception */
  430. if (pkt->Status != A_OK) {
  431. if (pkt->Status != A_ECANCELED)
  432. soc->stats.htc_err_cnt++;
  433. qdf_nbuf_free(htt_t2h_msg);
  434. return;
  435. }
  436. /* TODO: Check if we should pop the HTC/HTT header alignment padding */
  437. msg_word = (u_int32_t *) qdf_nbuf_data(htt_t2h_msg);
  438. msg_type = HTT_T2H_MSG_TYPE_GET(*msg_word);
  439. switch (msg_type) {
  440. case HTT_T2H_MSG_TYPE_PEER_MAP:
  441. {
  442. u_int8_t mac_addr_deswizzle_buf[HTT_MAC_ADDR_LEN];
  443. u_int8_t *peer_mac_addr;
  444. u_int16_t peer_id;
  445. u_int8_t vdev_id;
  446. peer_id = HTT_RX_PEER_MAP_PEER_ID_GET(*msg_word);
  447. vdev_id = HTT_RX_PEER_MAP_VDEV_ID_GET(*msg_word);
  448. peer_mac_addr = htt_t2h_mac_addr_deswizzle(
  449. (u_int8_t *) (msg_word+1),
  450. &mac_addr_deswizzle_buf[0]);
  451. dp_rx_peer_map_handler(
  452. soc->dp_soc, peer_id, vdev_id, peer_mac_addr);
  453. break;
  454. }
  455. case HTT_T2H_MSG_TYPE_PEER_UNMAP:
  456. {
  457. u_int16_t peer_id;
  458. peer_id = HTT_RX_PEER_UNMAP_PEER_ID_GET(*msg_word);
  459. dp_rx_peer_unmap_handler(soc->dp_soc, peer_id);
  460. break;
  461. }
  462. case HTT_T2H_MSG_TYPE_SEC_IND:
  463. {
  464. u_int16_t peer_id;
  465. enum htt_sec_type sec_type;
  466. int is_unicast;
  467. peer_id = HTT_SEC_IND_PEER_ID_GET(*msg_word);
  468. sec_type = HTT_SEC_IND_SEC_TYPE_GET(*msg_word);
  469. is_unicast = HTT_SEC_IND_UNICAST_GET(*msg_word);
  470. /* point to the first part of the Michael key */
  471. msg_word++;
  472. dp_rx_sec_ind_handler(
  473. soc->dp_soc, peer_id, sec_type, is_unicast,
  474. msg_word, msg_word + 2);
  475. break;
  476. }
  477. #ifdef notyet
  478. #ifndef REMOVE_PKT_LOG
  479. case HTT_T2H_MSG_TYPE_PKTLOG:
  480. {
  481. u_int32_t *pl_hdr;
  482. pl_hdr = (msg_word + 1);
  483. wdi_event_handler(WDI_EVENT_OFFLOAD_ALL, soc->dp_soc,
  484. pl_hdr, HTT_INVALID_PEER, WDI_NO_VAL);
  485. break;
  486. }
  487. #endif
  488. #endif /* notyet */
  489. case HTT_T2H_MSG_TYPE_VERSION_CONF:
  490. {
  491. soc->tgt_ver.major = HTT_VER_CONF_MAJOR_GET(*msg_word);
  492. soc->tgt_ver.minor = HTT_VER_CONF_MINOR_GET(*msg_word);
  493. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO_HIGH,
  494. "target uses HTT version %d.%d; host uses %d.%d\n",
  495. soc->tgt_ver.major, soc->tgt_ver.minor,
  496. HTT_CURRENT_VERSION_MAJOR,
  497. HTT_CURRENT_VERSION_MINOR);
  498. if (soc->tgt_ver.major != HTT_CURRENT_VERSION_MAJOR) {
  499. QDF_TRACE(QDF_MODULE_ID_TXRX,
  500. QDF_TRACE_LEVEL_ERROR,
  501. "*** Incompatible host/target HTT versions!\n");
  502. }
  503. /* abort if the target is incompatible with the host */
  504. qdf_assert(soc->tgt_ver.major ==
  505. HTT_CURRENT_VERSION_MAJOR);
  506. if (soc->tgt_ver.minor != HTT_CURRENT_VERSION_MINOR) {
  507. QDF_TRACE(QDF_MODULE_ID_TXRX,
  508. QDF_TRACE_LEVEL_WARN,
  509. "*** Warning: host/target HTT versions"
  510. " are different, though compatible!\n");
  511. }
  512. break;
  513. }
  514. default:
  515. break;
  516. };
  517. /* Free the indication buffer */
  518. qdf_nbuf_free(htt_t2h_msg);
  519. }
  520. /*
  521. * dp_htt_h2t_full() - Send full handler (called from HTC)
  522. * @context: Opaque context (HTT SOC handle)
  523. * @pkt: HTC packet
  524. *
  525. * Return: HTC_SEND_FULL_ACTION
  526. */
  527. static HTC_SEND_FULL_ACTION
  528. dp_htt_h2t_full(void *context, HTC_PACKET *pkt)
  529. {
  530. return HTC_SEND_FULL_KEEP;
  531. }
  532. /*
  533. * htt_htc_soc_attach() - Register SOC level HTT instance with HTC
  534. * @htt_soc: HTT SOC handle
  535. *
  536. * Return: 0 on success; error code on failure
  537. */
  538. static int
  539. htt_htc_soc_attach(struct htt_soc *soc)
  540. {
  541. HTC_SERVICE_CONNECT_REQ connect;
  542. HTC_SERVICE_CONNECT_RESP response;
  543. A_STATUS status;
  544. qdf_mem_set(&connect, sizeof(connect), 0);
  545. qdf_mem_set(&response, sizeof(response), 0);
  546. connect.pMetaData = NULL;
  547. connect.MetaDataLength = 0;
  548. connect.EpCallbacks.pContext = soc;
  549. connect.EpCallbacks.EpTxComplete = dp_htt_h2t_send_complete;
  550. connect.EpCallbacks.EpTxCompleteMultiple = NULL;
  551. connect.EpCallbacks.EpRecv = dp_htt_t2h_msg_handler;
  552. /* rx buffers currently are provided by HIF, not by EpRecvRefill */
  553. connect.EpCallbacks.EpRecvRefill = NULL;
  554. /* N/A, fill is done by HIF */
  555. connect.EpCallbacks.RecvRefillWaterMark = 1;
  556. connect.EpCallbacks.EpSendFull = dp_htt_h2t_full;
  557. /*
  558. * Specify how deep to let a queue get before htc_send_pkt will
  559. * call the EpSendFull function due to excessive send queue depth.
  560. */
  561. connect.MaxSendQueueDepth = DP_HTT_MAX_SEND_QUEUE_DEPTH;
  562. /* disable flow control for HTT data message service */
  563. connect.ConnectionFlags |= HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL;
  564. /* connect to control service */
  565. connect.service_id = HTT_DATA_MSG_SVC;
  566. status = htc_connect_service(soc->htc_soc, &connect, &response);
  567. if (status != A_OK)
  568. return QDF_STATUS_E_FAILURE;
  569. soc->htc_endpoint = response.Endpoint;
  570. return 0; /* success */
  571. }
  572. /*
  573. * htt_soc_attach() - SOC level HTT initialization
  574. * @dp_soc: Opaque Data path SOC handle
  575. * @osif_soc: Opaque OSIF SOC handle
  576. * @htc_soc: SOC level HTC handle
  577. * @hal_soc: Opaque HAL SOC handle
  578. * @osdev: QDF device
  579. *
  580. * Return: HTT handle on success; NULL on failure
  581. */
  582. void *
  583. htt_soc_attach(void *dp_soc, void *osif_soc, HTC_HANDLE htc_soc,
  584. void *hal_soc, qdf_device_t osdev)
  585. {
  586. struct htt_soc *soc;
  587. int i;
  588. soc = qdf_mem_malloc(sizeof(*soc));
  589. if (!soc)
  590. goto fail1;
  591. soc->osdev = osdev;
  592. soc->osif_soc = osif_soc;
  593. soc->dp_soc = dp_soc;
  594. soc->htc_soc = htc_soc;
  595. soc->hal_soc = hal_soc;
  596. /* TODO: See if any NSS related context is requred in htt_soc */
  597. soc->htt_htc_pkt_freelist = NULL;
  598. if (htt_htc_soc_attach(soc))
  599. goto fail2;
  600. /* TODO: See if any Rx data specific intialization is required. For
  601. * MCL use cases, the data will be received as single packet and
  602. * should not required any descriptor or reorder handling
  603. */
  604. HTT_TX_MUTEX_INIT(&soc->htt_tx_mutex);
  605. /* pre-allocate some HTC_PACKET objects */
  606. for (i = 0; i < HTT_HTC_PKT_POOL_INIT_SIZE; i++) {
  607. struct dp_htt_htc_pkt_union *pkt;
  608. pkt = qdf_mem_malloc(sizeof(*pkt));
  609. if (!pkt)
  610. break;
  611. htt_htc_pkt_free(soc, &pkt->u.pkt);
  612. }
  613. return soc;
  614. fail2:
  615. qdf_mem_free(soc);
  616. fail1:
  617. return NULL;
  618. }
  619. /*
  620. * htt_soc_detach() - Detach SOC level HTT
  621. * @htt_soc: HTT SOC handle
  622. */
  623. void
  624. htt_soc_detach(void *htt_soc)
  625. {
  626. struct htt_soc *soc = (struct htt_soc *)soc;
  627. htt_htc_pkt_pool_free(soc);
  628. HTT_TX_MUTEX_DESTROY(&soc->htt_tx_mutex);
  629. qdf_mem_free(soc);
  630. }