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
This commit is contained in:
Shashikala Prabhu
2023-02-24 16:17:56 +05:30
committed by Madan Koyyalamudi
orang tua 2062f18a70
melakukan 3634b11018
2 mengubah file dengan 106 tambahan dan 0 penghapusan

Melihat File

@@ -1084,6 +1084,21 @@ struct dp_htt_umac_reset_setup_cmd_params {
QDF_STATUS dp_htt_umac_reset_send_setup_cmd(
struct dp_soc *soc,
const struct dp_htt_umac_reset_setup_cmd_params *setup_params);
/**
* dp_htt_umac_reset_send_start_pre_reset_cmd() - Send the HTT UMAC reset start
* pre reset command
* @soc: dp soc object
* @is_initiator: Indicates whether the target needs to execute the
* UMAC-recovery in context of the Initiator or Non-Initiator. The value zero
* indicates this target is Non-Initiator.
* @is_umac_hang: Indicates whether MLO UMAC recovery executed in context of
* UMAC hang or Target recovery.
*
* Return: Success when HTT message is sent, error on failure
*/
QDF_STATUS dp_htt_umac_reset_send_start_pre_reset_cmd(
struct dp_soc *soc, bool is_initiator, bool is_umac_hang);
#endif
/**