/freebsd/sys/contrib/dev/athk/ath11k/ |
H A D | htc.c | 596 struct ath11k_htc_svc_conn_req *conn_req, in ath11k_htc_connect_service() argument 614 if (conn_req->service_id == ATH11K_HTC_SVC_ID_RSVD_CTRL) { in ath11k_htc_connect_service() 623 conn_req->service_id); in ath11k_htc_connect_service() 627 htc_service_name(conn_req->service_id)); in ath11k_htc_connect_service() 646 if (!(conn_req->service_id == ATH11K_HTC_SVC_ID_WMI_CONTROL || in ath11k_htc_connect_service() 647 conn_req->service_id == ATH11K_HTC_SVC_ID_WMI_CONTROL_MAC1 || in ath11k_htc_connect_service() 648 conn_req->service_id == ATH11K_HTC_SVC_ID_WMI_CONTROL_MAC2)) { in ath11k_htc_connect_service() 660 conn_req->service_id); in ath11k_htc_connect_service() 734 ep->service_id = conn_req->service_id; in ath11k_htc_connect_service() 735 ep->max_tx_queue_depth = conn_req->max_send_queue_depth; in ath11k_htc_connect_service() [all …]
|
H A D | dp.c | 957 struct ath11k_htc_svc_conn_req conn_req; in ath11k_dp_htt_connect() local 961 memset(&conn_req, 0, sizeof(conn_req)); in ath11k_dp_htt_connect() 964 conn_req.ep_ops.ep_tx_complete = ath11k_dp_htt_htc_tx_complete; in ath11k_dp_htt_connect() 965 conn_req.ep_ops.ep_rx_complete = ath11k_dp_htt_htc_t2h_msg_handler; in ath11k_dp_htt_connect() 968 conn_req.service_id = ATH11K_HTC_SVC_ID_HTT_DATA_MSG; in ath11k_dp_htt_connect() 970 status = ath11k_htc_connect_service(&dp->ab->htc, &conn_req, in ath11k_dp_htt_connect()
|
H A D | htc.h | 303 struct ath11k_htc_svc_conn_req *conn_req,
|
H A D | wmi.c | 9137 struct ath11k_htc_svc_conn_req conn_req; in ath11k_connect_pdev_htc_service() local 9140 memset(&conn_req, 0, sizeof(conn_req)); in ath11k_connect_pdev_htc_service() 9144 conn_req.ep_ops.ep_tx_complete = ath11k_wmi_htc_tx_complete; in ath11k_connect_pdev_htc_service() 9145 conn_req.ep_ops.ep_rx_complete = ath11k_wmi_tlv_op_rx; in ath11k_connect_pdev_htc_service() 9146 conn_req.ep_ops.ep_tx_credits = ath11k_wmi_op_ep_tx_credits; in ath11k_connect_pdev_htc_service() 9149 conn_req.service_id = svc_id[pdev_idx]; in ath11k_connect_pdev_htc_service() 9151 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 D | htc.c | 552 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 D | dp.c | 1069 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 D | htc.h | 308 struct ath12k_htc_svc_conn_req *conn_req,
|
H A D | wmi.c | 6944 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 D | htc.c | 1015 struct ath10k_htc_svc_conn_req *conn_req, in ath10k_htc_connect_service() argument 1034 if (conn_req->service_id == ATH10K_HTC_SVC_ID_RSVD_CTRL) { in ath10k_htc_connect_service() 1043 conn_req->service_id); in ath10k_htc_connect_service() 1047 htc_service_name(conn_req->service_id)); in ath10k_htc_connect_service() 1066 if (conn_req->service_id != ATH10K_HTC_SVC_ID_WMI_CONTROL) { in ath10k_htc_connect_service() 1073 req_msg->service_id = __cpu_to_le16(conn_req->service_id); in ath10k_htc_connect_service() 1141 ep->service_id = conn_req->service_id; in ath10k_htc_connect_service() 1142 ep->max_tx_queue_depth = conn_req->max_send_queue_depth; in ath10k_htc_connect_service() 1147 if (conn_req->service_id == ATH10K_HTC_SVC_ID_HTT_DATA_MSG && in ath10k_htc_connect_service() 1152 ep->ep_ops = conn_req->ep_ops; in ath10k_htc_connect_service() [all …]
|
H A D | htt.c | 289 struct ath10k_htc_svc_conn_req conn_req; in ath10k_htt_connect() local 295 memset(&conn_req, 0, sizeof(conn_req)); in ath10k_htt_connect() 298 conn_req.ep_ops.ep_tx_complete = ath10k_htt_htc_tx_complete; in ath10k_htt_connect() 299 conn_req.ep_ops.ep_rx_complete = ath10k_htt_htc_t2h_msg_handler; in ath10k_htt_connect() 300 conn_req.ep_ops.ep_tx_credits = ath10k_htt_op_ep_tx_credits; in ath10k_htt_connect() 303 conn_req.service_id = ATH10K_HTC_SVC_ID_HTT_DATA_MSG; in ath10k_htt_connect() 305 status = ath10k_htc_connect_service(&htt->ar->htc, &conn_req, in ath10k_htt_connect()
|
H A D | htc.h | 412 struct ath10k_htc_svc_conn_req *conn_req,
|
H A D | wmi.c | 6477 struct ath10k_htc_svc_conn_req conn_req; in ath10k_wmi_connect() local 6482 memset(&conn_req, 0, sizeof(conn_req)); in ath10k_wmi_connect() 6486 conn_req.ep_ops.ep_tx_complete = ath10k_wmi_htc_tx_complete; in ath10k_wmi_connect() 6487 conn_req.ep_ops.ep_rx_complete = ath10k_wmi_process_rx; in ath10k_wmi_connect() 6488 conn_req.ep_ops.ep_tx_credits = ath10k_wmi_op_ep_tx_credits; in ath10k_wmi_connect() 6491 conn_req.service_id = ATH10K_HTC_SVC_ID_WMI_CONTROL; in ath10k_wmi_connect() 6493 status = ath10k_htc_connect_service(&ar->htc, &conn_req, &conn_resp); in ath10k_wmi_connect()
|