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