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

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

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

Change-Id: I2d3eb321be427cd8078f6eab95f3671c606521b4
CRs-Fixed: 2262693
parent 3f00fe97
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1436,6 +1436,7 @@ typedef enum {
    WMITLV_TAG_STRUC_wmi_request_opm_stats_cmd_fixed_param,
    WMITLV_TAG_STRUC_wmi_ctrl_path_vdev_bcn_tx_stats_struct,
    WMITLV_TAG_STRUC_wmi_ctrl_path_pdev_bcn_tx_stats_struct,
    WMITLV_TAG_STRUC_wmi_soc_tx_packet_custom_classify_cmd_fixed_param,
} WMITLV_TAG_ID;
/*
 * IMPORTANT: Please add _ALL_ WMI Commands Here.
@@ -1984,6 +1985,7 @@ typedef enum {
    OP(WMI_PDEV_SET_CUSTOM_TX_POWER_PER_MCS_CMDID) \
    OP(WMI_PEER_ACTIVE_TRAFFIC_MAP_CMDID) \
    OP(WMI_REQUEST_OPM_STATS_CMDID) \
    OP(WMI_SOC_TX_PACKET_CUSTOM_CLASSIFY_CMDID) \
    /* add new CMD_LIST elements above this line */


@@ -4779,6 +4781,10 @@ WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_MULTIPLE_VDEV_RESTART_REQUEST_CMDID);
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_pdev_update_pkt_routing_cmd_fixed_param, wmi_pdev_update_pkt_routing_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_UPDATE_PKT_ROUTING_CMDID);

#define WMITLV_TABLE_WMI_SOC_TX_PACKET_CUSTOM_CLASSIFY_CMDID(id,op,buf,len) \
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_soc_tx_packet_custom_classify_cmd_fixed_param, wmi_soc_tx_packet_custom_classify_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
WMITLV_CREATE_PARAM_STRUC(WMI_SOC_TX_PACKET_CUSTOM_CLASSIFY_CMDID);

/* Get cal version cmd */
#define WMITLV_TABLE_WMI_PDEV_CHECK_CAL_VERSION_CMDID(id,op,buf,len) \
    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_pdev_check_cal_version_cmd_fixed_param, wmi_pdev_check_cal_version_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
+33 −1
Original line number Diff line number Diff line
@@ -1507,6 +1507,11 @@ typedef enum {
    WMI_SOC_SET_ANTENNA_MODE_CMDID,
    /** enable/disable TQM reset (SOC level) feature */
    WMI_SOC_TQM_RESET_ENABLE_DISABLE_CMDID,
    /*
     * WMI Command to enable custom classification of packets in Tx path
     * and specifiy packets of interest for classification.
     */
    WMI_SOC_TX_PACKET_CUSTOM_CLASSIFY_CMDID,
    /* packet filter commands */
    WMI_PACKET_FILTER_CONFIG_CMDID = WMI_CMD_GRP_START_ID(WMI_GRP_PKT_FILTER),
@@ -37696,6 +37701,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
        WMI_RETURN_STRING(WMI_PDEV_SET_CUSTOM_TX_POWER_PER_MCS_CMDID);
        WMI_RETURN_STRING(WMI_PEER_ACTIVE_TRAFFIC_MAP_CMDID);
        WMI_RETURN_STRING(WMI_REQUEST_OPM_STATS_CMDID);
        WMI_RETURN_STRING(WMI_SOC_TX_PACKET_CUSTOM_CLASSIFY_CMDID);
    }
    return (A_UINT8 *) "Invalid WMI cmd";
@@ -38692,7 +38698,33 @@ typedef enum {
    WMI_PDEV_WIFIRXCCE_USE_CCE2_E = 3,
} wmi_pdev_dest_ring_handler_type;
/* This command shall be sent only when no VDEV is up. If the command is sent after any VDEV is up, target will ignore the command */
typedef enum {
    WMI_SOC_TX_PACKET_TYPE_ARP   = 1,
    WMI_SOC_TX_PACKET_TYPE_EAPOL = 2,
    WMI_SOC_TX_PACKET_TYPE_DHCP  = 3,
    WMI_SOC_TX_PACKET_TYPE_DNS   = 4,
    WMI_SOC_TX_PACKET_TYPE_ICMP  = 5,
} wmi_soc_tx_packet_type;
/*
 * This command shall be sent only when no VDEV is up.
 * If the command is sent after any VDEV is up, target will ignore the command.
 */
typedef struct {
    /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_soc_tx_packet_custom_classify_cmd_fixed_param */
    A_UINT32 tlv_header;
    /** packet_bitmap:
     * bitmap of the packets to be classified,
     * Refer to wmi_soc_tx_packet_type for the interpretation of the bits
     * within the bitmap.
     */
    A_UINT32 packet_bitmap;
} wmi_soc_tx_packet_custom_classify_cmd_fixed_param;
/*
 * This command shall be sent only when no VDEV is up.
 * If the command is sent after any VDEV is up, target will ignore the command.
 */
typedef struct {
    /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_pdev_update_pkt_routing_cmd_fixed_param */
    A_UINT32 tlv_header;
+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_ 1462
#define __WMI_REVISION_ 1463

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