Home
last modified time | relevance | path

Searched refs:conn_req (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/contrib/dev/athk/ath11k/
H A Dhtc.c597 struct ath11k_htc_svc_conn_req *conn_req, in ath11k_htc_connect_service() argument
615 if (conn_req->service_id == ATH11K_HTC_SVC_ID_RSVD_CTRL) { in ath11k_htc_connect_service()
624 conn_req->service_id); in ath11k_htc_connect_service()
628 htc_service_name(conn_req->service_id)); in ath11k_htc_connect_service()
647 if (!(conn_req->service_id == ATH11K_HTC_SVC_ID_WMI_CONTROL || in ath11k_htc_connect_service()
648 conn_req->service_id == ATH11K_HTC_SVC_ID_WMI_CONTROL_MAC1 || in ath11k_htc_connect_service()
649 conn_req->service_id == ATH11K_HTC_SVC_ID_WMI_CONTROL_MAC2)) { in ath11k_htc_connect_service()
661 conn_req->service_id); in ath11k_htc_connect_service()
735 ep->service_id = conn_req->service_id; in ath11k_htc_connect_service()
736 ep->max_tx_queue_depth = conn_req->max_send_queue_depth; in ath11k_htc_connect_service()
[all …]
H A Ddp.c960 struct ath11k_htc_svc_conn_req conn_req; in ath11k_dp_htt_connect() local
964 memset(&conn_req, 0, sizeof(conn_req)); in ath11k_dp_htt_connect()
967 conn_req.ep_ops.ep_tx_complete = ath11k_dp_htt_htc_tx_complete; in ath11k_dp_htt_connect()
968 conn_req.ep_ops.ep_rx_complete = ath11k_dp_htt_htc_t2h_msg_handler; in ath11k_dp_htt_connect()
971 conn_req.service_id = ATH11K_HTC_SVC_ID_HTT_DATA_MSG; in ath11k_dp_htt_connect()
973 status = ath11k_htc_connect_service(&dp->ab->htc, &conn_req, in ath11k_dp_htt_connect()
H A Dhtc.h289 struct ath11k_htc_svc_conn_req *conn_req,
H A Dwmi.c9249 struct ath11k_htc_svc_conn_req conn_req; in ath11k_connect_pdev_htc_service() local
9252 memset(&conn_req, 0, sizeof(conn_req)); in ath11k_connect_pdev_htc_service()
9256 conn_req.ep_ops.ep_tx_complete = ath11k_wmi_htc_tx_complete; in ath11k_connect_pdev_htc_service()
9257 conn_req.ep_ops.ep_rx_complete = ath11k_wmi_tlv_op_rx; in ath11k_connect_pdev_htc_service()
9258 conn_req.ep_ops.ep_tx_credits = ath11k_wmi_op_ep_tx_credits; in ath11k_connect_pdev_htc_service()
9261 conn_req.service_id = svc_id[pdev_idx]; in ath11k_connect_pdev_htc_service()
9263 status = ath11k_htc_connect_service(&ab->htc, &conn_req, &conn_resp); in ath11k_connect_pdev_htc_service()
/freebsd/sys/contrib/dev/athk/ath12k/
H A Dhtc.c552 struct ath12k_htc_svc_conn_req *conn_req, in ath12k_htc_connect_service() argument
570 if (conn_req->service_id == ATH12K_HTC_SVC_ID_RSVD_CTRL) { in ath12k_htc_connect_service()
579 conn_req->service_id); in ath12k_htc_connect_service()
583 htc_service_name(conn_req->service_id)); in ath12k_htc_connect_service()
602 if (!(conn_req->service_id == ATH12K_HTC_SVC_ID_WMI_CONTROL || in ath12k_htc_connect_service()
603 conn_req->service_id == ATH12K_HTC_SVC_ID_WMI_CONTROL_MAC1 || in ath12k_htc_connect_service()
604 conn_req->service_id == ATH12K_HTC_SVC_ID_WMI_CONTROL_MAC2)) { in ath12k_htc_connect_service()
610 req_msg->msg_svc_id |= le32_encode_bits(conn_req->service_id, in ath12k_htc_connect_service()
684 ep->service_id = conn_req->service_id; in ath12k_htc_connect_service()
685 ep->max_tx_queue_depth = conn_req->max_send_queue_depth; in ath12k_htc_connect_service()
[all …]
H A Ddp.c1069 struct ath12k_htc_svc_conn_req conn_req = {0}; in ath12k_dp_htt_connect() local
1073 conn_req.ep_ops.ep_tx_complete = ath12k_dp_htt_htc_tx_complete; in ath12k_dp_htt_connect()
1074 conn_req.ep_ops.ep_rx_complete = ath12k_dp_htt_htc_t2h_msg_handler; in ath12k_dp_htt_connect()
1077 conn_req.service_id = ATH12K_HTC_SVC_ID_HTT_DATA_MSG; in ath12k_dp_htt_connect()
1079 status = ath12k_htc_connect_service(&dp->ab->htc, &conn_req, in ath12k_dp_htt_connect()
H A Dhtc.h308 struct ath12k_htc_svc_conn_req *conn_req,
H A Dwmi.c6944 struct ath12k_htc_svc_conn_req conn_req = {}; in ath12k_connect_pdev_htc_service() local
6948 conn_req.ep_ops.ep_tx_complete = ath12k_wmi_htc_tx_complete; in ath12k_connect_pdev_htc_service()
6949 conn_req.ep_ops.ep_rx_complete = ath12k_wmi_op_rx; in ath12k_connect_pdev_htc_service()
6950 conn_req.ep_ops.ep_tx_credits = ath12k_wmi_op_ep_tx_credits; in ath12k_connect_pdev_htc_service()
6953 conn_req.service_id = svc_id[pdev_idx]; in ath12k_connect_pdev_htc_service()
6955 status = ath12k_htc_connect_service(&ab->htc, &conn_req, &conn_resp); in ath12k_connect_pdev_htc_service()
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dhtc.c1019 struct ath10k_htc_svc_conn_req *conn_req, in ath10k_htc_connect_service() argument
1038 if (conn_req->service_id == ATH10K_HTC_SVC_ID_RSVD_CTRL) { in ath10k_htc_connect_service()
1047 conn_req->service_id); in ath10k_htc_connect_service()
1051 htc_service_name(conn_req->service_id)); in ath10k_htc_connect_service()
1070 if (conn_req->service_id != ATH10K_HTC_SVC_ID_WMI_CONTROL) { in ath10k_htc_connect_service()
1077 req_msg->service_id = __cpu_to_le16(conn_req->service_id); in ath10k_htc_connect_service()
1145 ep->service_id = conn_req->service_id; in ath10k_htc_connect_service()
1146 ep->max_tx_queue_depth = conn_req->max_send_queue_depth; in ath10k_htc_connect_service()
1151 if (conn_req->service_id == ATH10K_HTC_SVC_ID_HTT_DATA_MSG && in ath10k_htc_connect_service()
1156 ep->ep_ops = conn_req->ep_ops; in ath10k_htc_connect_service()
[all …]
H A Dhtt.c290 struct ath10k_htc_svc_conn_req conn_req; in ath10k_htt_connect() local
296 memset(&conn_req, 0, sizeof(conn_req)); in ath10k_htt_connect()
299 conn_req.ep_ops.ep_tx_complete = ath10k_htt_htc_tx_complete; in ath10k_htt_connect()
300 conn_req.ep_ops.ep_rx_complete = ath10k_htt_htc_t2h_msg_handler; in ath10k_htt_connect()
301 conn_req.ep_ops.ep_tx_credits = ath10k_htt_op_ep_tx_credits; in ath10k_htt_connect()
304 conn_req.service_id = ATH10K_HTC_SVC_ID_HTT_DATA_MSG; in ath10k_htt_connect()
306 status = ath10k_htc_connect_service(&htt->ar->htc, &conn_req, in ath10k_htt_connect()
H A Dhtc.h398 struct ath10k_htc_svc_conn_req *conn_req,
H A Dwmi.c6506 struct ath10k_htc_svc_conn_req conn_req; in ath10k_wmi_connect() local
6511 memset(&conn_req, 0, sizeof(conn_req)); in ath10k_wmi_connect()
6515 conn_req.ep_ops.ep_tx_complete = ath10k_wmi_htc_tx_complete; in ath10k_wmi_connect()
6516 conn_req.ep_ops.ep_rx_complete = ath10k_wmi_process_rx; in ath10k_wmi_connect()
6517 conn_req.ep_ops.ep_tx_credits = ath10k_wmi_op_ep_tx_credits; in ath10k_wmi_connect()
6520 conn_req.service_id = ATH10K_HTC_SVC_ID_WMI_CONTROL; in ath10k_wmi_connect()
6522 status = ath10k_htc_connect_service(&ar->htc, &conn_req, &conn_resp); in ath10k_wmi_connect()