Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40827670 authored by spuligil's avatar spuligil
Browse files

fw-api: CL 12880786 - update fw common interface files

Change-Id: Id89e45a1248c7bab625916b5c6b9469bf686c8fc
WMI: add msg defs for requesting and providing DPD status
CRs-Fixed: 2262693
parent 89da2727
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -1137,6 +1137,8 @@ typedef enum {
    WMITLV_TAG_STRUC_wmi_mlo_link_set_active_resp_event_fixed_param,
    WMITLV_TAG_STRUC_wmi_roam_sae_offload_tlv_param,
    WMITLV_TAG_STRUC_wmi_big_data_dp_stats_tlv_param,
    WMITLV_TAG_STRUC_wmi_pdev_get_dpd_status_cmd_fixed_param,
    WMITLV_TAG_STRUC_wmi_pdev_get_dpd_status_evt_fixed_param,
} WMITLV_TAG_ID;

/*
@@ -1594,6 +1596,7 @@ typedef enum {
    OP(WMI_VDEV_TID_LATENCY_CONFIG_CMDID) \
    OP(WMI_PEER_TID_LATENCY_CONFIG_CMDID) \
    OP(WMI_MLO_LINK_SET_ACTIVE_CMDID) \
    OP(WMI_PDEV_GET_DPD_STATUS_CMDID) \
    /* add new CMD_LIST elements above this line */


@@ -1856,6 +1859,7 @@ typedef enum {
    OP(WMI_REG_CHAN_LIST_CC_EXT_EVENTID) \
    OP(WMI_TWT_NOTIFY_EVENTID) \
    OP(WMI_MLO_LINK_SET_ACTIVE_RESP_EVENTID) \
    OP(WMI_PDEV_GET_DPD_STATUS_EVENTID) \
    /* add new EVT_LIST elements above this line */


@@ -4597,6 +4601,11 @@ WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_ENABLE_DURATION_BASED_TX_MODE_SELECTION_CMDID
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_UINT32, A_UINT32, vdev_id_bitmap, WMITLV_SIZE_VAR)
WMITLV_CREATE_PARAM_STRUC(WMI_MLO_LINK_SET_ACTIVE_CMDID);

/* Request DPD Status */
#define WMITLV_TABLE_WMI_PDEV_GET_DPD_STATUS_CMDID(id,op,buf,len) \
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_pdev_get_dpd_status_cmd_fixed_param, wmi_pdev_get_dpd_status_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_GET_DPD_STATUS_CMDID);


/************************** TLV definitions of WMI events *******************************/

@@ -6205,6 +6214,11 @@ WMITLV_CREATE_PARAM_STRUC(WMI_TWT_SESSION_STATS_EVENTID);
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_UINT32, A_UINT32, force_inactive_vdev_bitmap, WMITLV_SIZE_VAR)
WMITLV_CREATE_PARAM_STRUC(WMI_MLO_LINK_SET_ACTIVE_RESP_EVENTID);

/* Get DPD status Event */
#define WMITLV_TABLE_WMI_PDEV_GET_DPD_STATUS_EVENTID(id,op,buf,len)  \
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_pdev_get_dpd_status_evt_fixed_param, wmi_pdev_get_dpd_status_evt_fixed_param, fixed_param, WMITLV_SIZE_FIX)
WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_GET_DPD_STATUS_EVENTID);


#ifdef __cplusplus
}
+23 −0
Original line number Diff line number Diff line
@@ -446,6 +446,8 @@ typedef enum {
    WMI_PDEV_GET_TPC_STATS_CMDID,
    /** ENABLE/DISABLE Duration based tx mode selection */
    WMI_PDEV_ENABLE_DURATION_BASED_TX_MODE_SELECTION_CMDID,
    /* Get DPD status from HALPHY */
    WMI_PDEV_GET_DPD_STATUS_CMDID,
    /* VDEV (virtual device) specific commands */
    /** vdev create */
@@ -1493,6 +1495,9 @@ typedef enum {
    /** WMI event in response to TPC STATS command */
    WMI_PDEV_GET_TPC_STATS_EVENTID,
    /* Event to get DPD status from HALPHY */
    WMI_PDEV_GET_DPD_STATUS_EVENTID,
    /* VDEV specific events */
    /** VDEV started event in response to VDEV_START request */
@@ -28269,6 +28274,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
        WMI_RETURN_STRING(WMI_VDEV_TID_LATENCY_CONFIG_CMDID);
        WMI_RETURN_STRING(WMI_PEER_TID_LATENCY_CONFIG_CMDID);
        WMI_RETURN_STRING(WMI_MLO_LINK_SET_ACTIVE_CMDID);
        WMI_RETURN_STRING(WMI_PDEV_GET_DPD_STATUS_CMDID);
    }
    return "Invalid WMI cmd";
@@ -30637,6 +30643,23 @@ typedef struct {
    A_INT32  tx_power;      /* TX power for the specified HALPHY parameters in half dBm unit */
} wmi_get_tpc_power_evt_fixed_param;
typedef struct {
    A_UINT32 tlv_header;    /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_pdev_get_dpd_status_cmd_fixed_param */
    A_UINT32 pdev_id;        /* PDEV ID set by the command */
} wmi_pdev_get_dpd_status_cmd_fixed_param;
typedef enum {
    WMI_DPD_STATUS_DISABLE = 0,
    WMI_DPD_STATUS_ENABLE = 1,
    WMI_DPD_STATUS_INVALID = 2,
} WMI_DPD_STATUS;
typedef struct {
    A_UINT32 tlv_header;    /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_pdev_get_dpd_status_evt_fixed_param  */
    A_UINT32 pdev_id;        /* PDEV Id set by the command */
    A_UINT32 dpd_status;    /* DPD status obtained from HALPHY, refer to WMI_DPD_STATUS */
} wmi_pdev_get_dpd_status_evt_fixed_param;
/* below structures are related to Motion Detection. */
typedef struct {
    /** TLV tag and len; tag equals
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@
#define __WMI_VER_MINOR_    0
/** WMI revision number has to be incremented when there is a
 *  change that may or may not break compatibility. */
#define __WMI_REVISION_ 964
#define __WMI_REVISION_ 965

/** The Version Namespace should not be normally changed. Only
 *  host and firmware of the same WMI namespace will work