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

Commit d3c314f2 authored by spuligil's avatar spuligil Committed by Ravindra Konda
Browse files

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

Change-Id: I43de0982a3dc78aae997fb833ed668ce423d547d
CRs-Fixed: 3830439
parent ca0fa9ce
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1467,6 +1467,7 @@ typedef enum {
    WMITLV_TAG_STRUC_wmi_pdev_wifi_radar_cap_evt_fixed_param,
    WMITLV_TAG_STRUC_wmi_wifi_radar_ltf_length_capabilities,
    WMITLV_TAG_STRUC_wmi_wifi_radar_chain_capabilities,
    WMITLV_TAG_STRUC_wmi_sawf_ezmesh_hop_count_cmd_fixed_param,
} WMITLV_TAG_ID;
/*
 * IMPORTANT: Please add _ALL_ WMI Commands Here.
@@ -2026,6 +2027,7 @@ typedef enum {
    OP(WMI_GET_SCAN_CACHE_RESULT_CMDID) \
    OP(WMI_MLO_LINK_RECONFIG_CMDID) \
    OP(WMI_MLO_LINK_RECONFIG_COMPLETE_CMDID) \
    OP(WMI_SAWF_EZMESH_HOP_COUNT_CMDID) \
    /* add new CMD_LIST elements above this line */


@@ -5720,6 +5722,10 @@ WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_POWER_BOOST_MEM_ADDR_CMDID);
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_get_scan_cache_result_cmd_fixed_param, wmi_get_scan_cache_result_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
WMITLV_CREATE_PARAM_STRUC(WMI_GET_SCAN_CACHE_RESULT_CMDID);

#define WMITLV_TABLE_WMI_SAWF_EZMESH_HOP_COUNT_CMDID(id,op,buf,len) \
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_sawf_ezmesh_hop_count_cmd_fixed_param, wmi_sawf_ezmesh_hop_count_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
WMITLV_CREATE_PARAM_STRUC(WMI_SAWF_EZMESH_HOP_COUNT_CMDID);



/************************** TLV definitions of WMI events *******************************/
+16 −0
Original line number Diff line number Diff line
@@ -1706,6 +1706,8 @@ typedef enum {
    WMI_SAWF_SVC_CLASS_CFG_CMDID = WMI_CMD_GRP_START_ID(WMI_GRP_SAWF),
    /** disable a service class */
    WMI_SAWF_SVC_CLASS_DISABLE_CMDID,
    /** update hop count value for SDWF-Ezmesh scenario */
    WMI_SAWF_EZMESH_HOP_COUNT_CMDID,
    /* WMI commands specific to ODD */
    WMI_ODD_LIVEDUMP_REQUEST_CMDID = WMI_CMD_GRP_START_ID(WMI_GRP_ODD),
@@ -38477,6 +38479,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
        WMI_RETURN_STRING(WMI_GET_SCAN_CACHE_RESULT_CMDID);
        WMI_RETURN_STRING(WMI_MLO_LINK_RECONFIG_CMDID);
        WMI_RETURN_STRING(WMI_MLO_LINK_RECONFIG_COMPLETE_CMDID);
        WMI_RETURN_STRING(WMI_SAWF_EZMESH_HOP_COUNT_CMDID);
    }
    return (A_UINT8 *) "Invalid WMI cmd";
@@ -47591,6 +47594,19 @@ typedef struct {
    A_UINT32 svc_class_id; /* which service class is being disabled */
} wmi_sawf_svc_class_disable_cmd_fixed_param;
/* Used to store Hop count info for SDWF-Ezmesh scenario based on topology changes */
typedef struct {
    A_UINT32 tlv_header; /* TLV tag and len; tag equals  WMITLV_TAG_STRUC_wmi_sawf_ezmesh_hop_count_cmd_fixed_param */
    A_UINT32 peer_id;
    A_UINT32 hop_count;
    /* delay_bound:
     * Placeholder for future functionality where delay bound will be directly
     * passed to FW from host.
     * (units = ms)
     */
    A_UINT32 delay_bound;
} wmi_sawf_ezmesh_hop_count_cmd_fixed_param;
typedef struct {
    A_UINT32 tlv_header;  /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_sw_cal_ver_cap */
    A_UINT32 bdf_cal_ver; /* SW cal version in BDF */
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,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_ 1549
#define __WMI_REVISION_ 1550

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