qcacmn: Add H2T command to trigger MLO UMAC reset

Add H2T command to trigger MLO UMAC reset for the given SOCs.

Change-Id: Ic205c7eb5c401006a03628c1e591ef5833459516
CRs-Fixed: 3416804
这个提交包含在:
Shashikala Prabhu
2023-02-24 16:17:56 +05:30
提交者 Madan Koyyalamudi
父节点 2062f18a70
当前提交 3634b11018
修改 2 个文件,包含 106 行新增0 行删除

查看文件

@@ -5238,4 +5238,95 @@ QDF_STATUS dp_htt_umac_reset_send_setup_cmd(
dp_info("HTT_H2T_MSG_TYPE_UMAC_HANG_RECOVERY_PREREQUISITE_SETUP sent");
return status;
}
QDF_STATUS dp_htt_umac_reset_send_start_pre_reset_cmd(
struct dp_soc *soc, bool is_initiator, bool is_umac_hang)
{
struct htt_soc *htt_handle = soc->htt_handle;
uint32_t len;
qdf_nbuf_t msg;
u_int32_t *msg_word;
QDF_STATUS status;
uint8_t *htt_logger_bufp;
struct dp_htt_htc_pkt *pkt;
len = HTT_MSG_BUF_SIZE(
HTT_H2T_UMAC_HANG_RECOVERY_START_PRE_RESET_BYTES);
msg = qdf_nbuf_alloc(soc->osdev,
len,
/* reserve room for the HTC header */
HTC_HEADER_LEN + HTC_HDR_ALIGNMENT_PADDING,
4,
TRUE);
if (!msg)
return QDF_STATUS_E_NOMEM;
/*
* Set the length of the message.
* The contribution from the HTC_HDR_ALIGNMENT_PADDING is added
* separately during the below call to qdf_nbuf_push_head.
* The contribution from the HTC header is added separately inside HTC.
*/
if (!qdf_nbuf_put_tail(
msg, HTT_H2T_UMAC_HANG_RECOVERY_START_PRE_RESET_BYTES)) {
dp_htt_err("Failed to expand head");
qdf_nbuf_free(msg);
return QDF_STATUS_E_FAILURE;
}
/* fill in the message contents */
msg_word = (uint32_t *)qdf_nbuf_data(msg);
/* Rewind beyond alignment pad to get to the HTC header reserved area */
qdf_nbuf_push_head(msg, HTC_HDR_ALIGNMENT_PADDING);
htt_logger_bufp = (uint8_t *)msg_word;
qdf_mem_zero(msg_word,
HTT_H2T_UMAC_HANG_RECOVERY_START_PRE_RESET_BYTES);
HTT_H2T_MSG_TYPE_SET(
*msg_word,
HTT_H2T_MSG_TYPE_UMAC_HANG_RECOVERY_SOC_START_PRE_RESET);
HTT_H2T_UMAC_HANG_RECOVERY_START_PRE_RESET_IS_INITIATOR_SET(
*msg_word, is_initiator);
HTT_H2T_UMAC_HANG_RECOVERY_START_PRE_RESET_IS_UMAC_HANG_SET(
*msg_word, is_umac_hang);
pkt = htt_htc_pkt_alloc(htt_handle);
if (!pkt) {
qdf_err("Fail to allocate dp_htt_htc_pkt buffer");
qdf_assert(0);
qdf_nbuf_free(msg);
return QDF_STATUS_E_NOMEM;
}
pkt->soc_ctxt = NULL; /* not used during send-done callback */
SET_HTC_PACKET_INFO_TX(&pkt->htc_pkt,
dp_htt_h2t_send_complete_free_netbuf,
qdf_nbuf_data(msg),
qdf_nbuf_len(msg),
htt_handle->htc_endpoint,
/* tag for no FW response msg */
HTC_TX_PACKET_TAG_RUNTIME_PUT);
SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msg);
status = DP_HTT_SEND_HTC_PKT(
htt_handle, pkt,
HTT_H2T_MSG_TYPE_UMAC_HANG_RECOVERY_SOC_START_PRE_RESET,
htt_logger_bufp);
if (QDF_IS_STATUS_ERROR(status)) {
qdf_nbuf_free(msg);
htt_htc_pkt_free(htt_handle, pkt);
return status;
}
dp_info("HTT_H2T_MSG_TYPE_UMAC_HANG_RECOVERY_SOC_START_PRE_RESET sent");
return status;
}
#endif