diff --git a/fw/wmi_services.h b/fw/wmi_services.h index e5c87849c6..d06412f4bd 100644 --- a/fw/wmi_services.h +++ b/fw/wmi_services.h @@ -269,6 +269,7 @@ typedef enum { WMI_SERVICE_PER_VDEV_CHAINMASK_CONFIG_SUPPORT=173, /* Support for configuring chainmask per VDEV */ WMI_SERVICE_TX_DATA_MGMT_ACK_RSSI=174, /* ACK RSSI indication to host for host TX data and mgmt frame */ WMI_SERVICE_NAN_DISABLE_SUPPORT=175, /* indicates firmware is dependent on host to disable NAN incase of concurrencies */ + WMI_SERVICE_NAN_DISABLE_SUPPORT__prototype = WMI_SERVICE_NAN_DISABLE_SUPPORT, /* alias, to clarify that NAN_DISABLE_SUPPORT is for prototype testing purposes */ /******* ADD NEW SERVICES HERE *******/ diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 2fa4e30aea..bd2cd1d808 100644 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -4568,6 +4568,14 @@ typedef struct { A_UINT32 rx_nss_5g; /* number of chains to use for 11a transmissions. Valid only in 5 GHz */ A_UINT32 num_tx_chains_a; + /* If non-zero then use only one chain for TX when connection tx_nss is 1 in 2.4 GHz */ + A_UINT32 disable_tx_mrc_2g; + /* If non-zero then use only one chain for RX when connection rx_nss is 1 in 2.4 GHz */ + A_UINT32 disable_rx_mrc_2g; + /* If non-zero then use only one chain for TX when connection tx_nss is 1 in 5 GHz */ + A_UINT32 disable_tx_mrc_5g; + /* If non-zero then use only one chain for RX when connection rx_nss is 1 in 5 GHz */ + A_UINT32 disable_rx_mrc_5g; } wmi_vdev_chainmask_config_cmd_fixed_param; /* diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 0989015b6c..a76c12d34f 100644 --- a/fw/wmi_version.h +++ b/fw/wmi_version.h @@ -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_ 588 +#define __WMI_REVISION_ 589 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work