Home
last modified time | relevance | path

Searched refs:desc_id (Results 1 – 25 of 35) sorted by relevance

12

/wlan-driver/qca-wifi-host-cmn/umac/global_umac_dispatcher/lmac_if/inc/
H A Dwlan_lmac_if_api.h177 mgmt_txrx_get_nbuf(struct wlan_objmgr_pdev *pdev, uint32_t desc_id) in mgmt_txrx_get_nbuf() argument
187 desc_id); in mgmt_txrx_get_nbuf()
205 uint32_t desc_id, uint32_t status, in mgmt_txrx_tx_completion_handler() argument
216 return mgmt_rx_ops->mgmt_tx_completion_handler(pdev, desc_id, in mgmt_txrx_tx_completion_handler()
219 nbuf = mgmt_txrx_get_nbuf(pdev, desc_id); in mgmt_txrx_tx_completion_handler()
263 mgmt_txrx_get_peer(struct wlan_objmgr_pdev *pdev, uint32_t desc_id) in mgmt_txrx_get_peer() argument
273 desc_id); in mgmt_txrx_get_peer()
288 mgmt_txrx_get_vdev_id(struct wlan_objmgr_pdev *pdev, uint32_t desc_id) in mgmt_txrx_get_vdev_id() argument
298 desc_id); in mgmt_txrx_get_vdev_id()
H A Dwlan_lmac_if_def.h395 qdf_nbuf_t nbuf, u_int32_t desc_id,
1938 uint32_t desc_id, uint32_t status,
1946 uint32_t desc_id);
1948 struct wlan_objmgr_pdev *pdev, uint32_t desc_id);
1951 uint32_t desc_id);
/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/mgmt_txrx/dispatcher/inc/
H A Dwlan_mgmt_txrx_tgt_api.h67 uint32_t desc_id, uint32_t status,
82 uint32_t desc_id);
97 uint32_t desc_id);
111 uint32_t desc_id);
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/monitor/2.0/
H A Ddp_mon_2.0.c137 int desc_id; in dp_mon_desc_pool_init() local
151 for (desc_id = 0; desc_id < mon_desc_pool->pool_size; desc_id++) { in dp_mon_desc_pool_init()
152 if (desc_id == mon_desc_pool->pool_size - 1) in dp_mon_desc_pool_init()
153 mon_desc_pool->array[desc_id].next = NULL; in dp_mon_desc_pool_init()
155 mon_desc_pool->array[desc_id].next = in dp_mon_desc_pool_init()
156 &mon_desc_pool->array[desc_id + 1]; in dp_mon_desc_pool_init()
157 mon_desc_pool->array[desc_id].mon_desc.in_use = 0; in dp_mon_desc_pool_init()
158 mon_desc_pool->array[desc_id].mon_desc.cookie = desc_id; in dp_mon_desc_pool_init()
837 int desc_id; in dp_mon_pool_frag_unmap_and_free() local
842 for (desc_id = 0; desc_id < mon_desc_pool->pool_size; desc_id++) { in dp_mon_pool_frag_unmap_and_free()
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/mgmt_txrx/dispatcher/src/
H A Dwlan_mgmt_txrx_tgt_api.c1621 uint32_t desc_id, uint32_t status, in tgt_mgmt_txrx_tx_completion_handler() argument
1638 if (desc_id >= MGMT_DESC_POOL_MAX) { in tgt_mgmt_txrx_tx_completion_handler()
1639 mgmt_txrx_err("desc_id:%u is out of bounds", desc_id); in tgt_mgmt_txrx_tx_completion_handler()
1642 mgmt_desc = &mgmt_txrx_pdev_ctx->mgmt_desc_pool.pool[desc_id]; in tgt_mgmt_txrx_tx_completion_handler()
1645 desc_id, pdev); in tgt_mgmt_txrx_tx_completion_handler()
1690 wlan_mgmt_txrx_desc_put(mgmt_txrx_pdev_ctx, desc_id); in tgt_mgmt_txrx_tx_completion_handler()
1696 uint32_t desc_id) in tgt_mgmt_txrx_get_nbuf_from_desc_id() argument
1709 if (desc_id >= MGMT_DESC_POOL_MAX) { in tgt_mgmt_txrx_get_nbuf_from_desc_id()
1710 mgmt_txrx_err("desc_id:%u is out of bounds", desc_id); in tgt_mgmt_txrx_get_nbuf_from_desc_id()
1714 mgmt_desc = &mgmt_txrx_pdev_ctx->mgmt_desc_pool.pool[desc_id]; in tgt_mgmt_txrx_get_nbuf_from_desc_id()
[all …]
H A Dwlan_mgmt_txrx_utils_api.c522 wlan_mgmt_txrx_desc_put(txrx_ctx, desc->desc_id); in wlan_mgmt_txrx_mgmt_frame_tx()
530 wlan_mgmt_txrx_desc_put(txrx_ctx, desc->desc_id); in wlan_mgmt_txrx_mgmt_frame_tx()
539 wlan_mgmt_txrx_desc_put(txrx_ctx, desc->desc_id); in wlan_mgmt_txrx_mgmt_frame_tx()
544 vdev, buf, desc->desc_id, mgmt_tx_params)) { in wlan_mgmt_txrx_mgmt_frame_tx()
549 wlan_mgmt_txrx_desc_put(txrx_ctx, desc->desc_id); in wlan_mgmt_txrx_mgmt_frame_tx()
990 peer = mgmt_txrx_get_peer(pdev, mgmt_desc->desc_id); in wlan_mgmt_txrx_vdev_drain()
997 mgmt_desc->desc_id, 0, status); in wlan_mgmt_txrx_vdev_drain()
/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/mgmt_txrx/core/src/
H A Dwlan_mgmt_txrx_main.c73 mgmt_txrx_pdev_ctx->mgmt_desc_pool.pool[i].desc_id = i; in wlan_mgmt_txrx_desc_pool_init()
168 uint32_t desc_id) in wlan_mgmt_txrx_desc_put() argument
173 desc = &mgmt_txrx_pdev_ctx->mgmt_desc_pool.pool[desc_id]; in wlan_mgmt_txrx_desc_put()
178 mgmt_txrx_err("desc %d is freed", desc_id); in wlan_mgmt_txrx_desc_put()
H A Dwlan_mgmt_txrx_main_i.h108 uint32_t desc_id; member
271 uint32_t desc_id);
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/be/
H A Dhal_be_tx.h733 uint32_t desc_id, uint8_t type) in hal_tx_desc_set_buf_addr_be() argument
750 desc_id); in hal_tx_desc_set_buf_addr_be()
761 uint32_t desc_id, uint8_t type) in hal_tx_desc_set_buf_addr_be() argument
784 desc_id); in hal_tx_desc_set_buf_addr_be()
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/rh/
H A Dhal_rh_tx.h56 uint8_t pool_id, uint32_t desc_id, in hal_tx_desc_set_buf_addr() argument
62 desc_id, type); in hal_tx_desc_set_buf_addr()
/wlan-driver/qcacld-3.0/components/pkt_capture/dispatcher/inc/
H A Dwlan_pkt_capture_ucfg_api.h187 uint32_t desc_id,
387 uint32_t desc_id, in ucfg_pkt_capture_mgmt_tx_completion() argument
/wlan-driver/qcacld-3.0/components/pkt_capture/dispatcher/src/
H A Dwlan_pkt_capture_ucfg_api.c194 uint32_t desc_id, in ucfg_pkt_capture_mgmt_tx_completion() argument
198 pkt_capture_mgmt_tx_completion(pdev, desc_id, status, params); in ucfg_pkt_capture_mgmt_tx_completion()
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/li/
H A Dhal_li_tx.h57 uint8_t pool_id, uint32_t desc_id, in hal_tx_desc_set_buf_addr() argument
63 desc_id, type); in hal_tx_desc_set_buf_addr()
/wlan-driver/qcacld-3.0/components/pkt_capture/core/inc/
H A Dwlan_pkt_capture_mgmt_txrx.h80 uint32_t desc_id,
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/be/
H A Ddp_be.h847 uint32_t desc_id) in dp_cc_desc_find() argument
854 ppt_page_id = (desc_id & DP_CC_DESC_ID_PPT_PAGE_OS_MASK) >> in dp_cc_desc_find()
857 spt_va_id = (desc_id & DP_CC_DESC_ID_SPT_VA_OS_MASK) >> in dp_cc_desc_find()
/wlan-driver/qcacld-3.0/core/dp/ol/inc/
H A Dol_htt_tx_api.h768 htt_tx_mgmt_desc_alloc(struct htt_pdev_t *pdev, A_UINT32 *desc_id,
777 htt_tx_mgmt_desc_free(struct htt_pdev_t *pdev, A_UINT8 desc_id,
/wlan-driver/qcacld-3.0/core/wma/src/
H A Dwma_mgmt.c2768 uint32_t desc_id, uint32_t status) in wma_process_mgmt_tx_completion() argument
2780 wma_get_status_str(status), desc_id); in wma_process_mgmt_tx_completion()
2788 buf = mgmt_txrx_get_nbuf(pdev, desc_id); in wma_process_mgmt_tx_completion()
2794 vdev_id = mgmt_txrx_get_vdev_id(pdev, desc_id); in wma_process_mgmt_tx_completion()
2798 ret = mgmt_txrx_tx_completion_handler(pdev, desc_id, status, in wma_process_mgmt_tx_completion()
2861 cmpl_params->desc_id, in wma_mgmt_tx_completion_handler()
2866 wma_process_mgmt_tx_completion(wma_handle, cmpl_params->desc_id, in wma_mgmt_tx_completion_handler()
4062 qdf_nbuf_t buf, uint32_t desc_id, in wma_mgmt_unified_cmd_send() argument
4076 mgmt_params->desc_id = desc_id; in wma_mgmt_unified_cmd_send()
4093 = mgmt_params->desc_id; in wma_mgmt_unified_cmd_send()
H A Dwma_data.c1355 uint16_t desc_id; in wma_mgmt_tx_ack_comp_hdlr() local
1358 desc_id = QDF_NBUF_CB_MGMT_TXRX_DESC_ID(netbuf); in wma_mgmt_tx_ack_comp_hdlr()
1359 vdev_id = mgmt_txrx_get_vdev_id(pdev, desc_id); in wma_mgmt_tx_ack_comp_hdlr()
1362 mgmt_txrx_tx_completion_handler(pdev, desc_id, status, &mgmt_params); in wma_mgmt_tx_ack_comp_hdlr()
/wlan-driver/qcacld-3.0/components/pkt_capture/core/src/
H A Dwlan_pkt_capture_mgmt_txrx.c508 uint32_t desc_id, in pkt_capture_mgmt_tx_completion() argument
538 nbuf = mgmt_txrx_get_nbuf(pdev, desc_id); in pkt_capture_mgmt_tx_completion()
/wlan-driver/qca-wifi-host-cmn/utils/pktlog/
H A Dpktlog_wifi2.c380 uint32_t desc_id = (uint32_t)*((uint32_t *)(fw_data->data + in process_tx_info() local
382 uint32_t vdev_id = desc_id; in process_tx_info()
389 if ((desc_id >> 24) == BCN_DESC_ID) { in process_tx_info()
/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/
H A Di_qdf_nbuf_m.h302 uint16_t desc_id; member
588 (((struct qdf_nbuf_cb *)((skb)->cb))->u.tx.dev.priv_cb_m.desc_id)
/wlan-driver/qcacld-3.0/core/dp/txrx/
H A Dol_txrx.h634 uint8_t desc_id);
H A Dol_txrx.c3954 pdev->ol_txrx_fw_stats_desc_pool.pool[i].desc.desc_id = i; in ol_txrx_fw_stats_desc_pool_init()
3959 pdev->ol_txrx_fw_stats_desc_pool.pool[i].desc.desc_id = i; in ol_txrx_fw_stats_desc_pool_init()
4026 ol_txrx_dbg("desc_id %d allocated", desc->desc_id); in ol_txrx_fw_stats_desc_alloc()
4043 unsigned char desc_id) in ol_txrx_fw_stats_desc_get_req() argument
4052 ol_txrx_err("Desc ID %u Pool deinitialized", desc_id); in ol_txrx_fw_stats_desc_get_req()
4055 desc_elem = &pdev->ol_txrx_fw_stats_desc_pool.pool[desc_id]; in ol_txrx_fw_stats_desc_get_req()
4120 cookie = desc->desc_id; in ol_txrx_fw_stats_get()
H A Dol_txrx_types.h567 unsigned char desc_id; member
/wlan-driver/qcacld-3.0/core/dp/htt/
H A Dhtt_t2h.c491 pdev->txrx_pdev, compl_msg->desc_id, 1, in htt_t2h_lp_msg_handler()
502 compl_msg->desc_id); in htt_t2h_lp_msg_handler()

12