|
@@ -6825,11 +6825,19 @@ typedef enum {
|
|
|
* allow spatial reuse only if the RSSI detected from neighboring
|
|
|
* BSS cells is no more than 10 dB.
|
|
|
*
|
|
|
+ * If Bit 29 is set, then input value will be in dBm. This is used
|
|
|
+ * for chipsets that uses dBm for comparision across MAC/Phy blocks.
|
|
|
+ * Older chipsets support input in dB units. For newer chipsets, dBm
|
|
|
+ * units will be used.
|
|
|
+ * The host will use the WMI_SERVICE_SRG_SRP_SPATIAL_REUSE_SUPPORT
|
|
|
+ * service ready bit to differentiate between providing input as dB or dBm.
|
|
|
+ *
|
|
|
* bit | purpose
|
|
|
* -----------------
|
|
|
* 0 - 7 | Param Value for non-SRG based Spatial Reuse
|
|
|
* 8 - 15| Param value for SRG based Spatial Reuse
|
|
|
- * 16 - 29| Reserved
|
|
|
+ * 16 - 28| Reserved
|
|
|
+ * 29 | Param value is in dBm units rather than dB units
|
|
|
* 30 | Enable/Disable SRG based spatial reuse.
|
|
|
* | If set to 0, ignore bits 8-15.
|
|
|
* 31 | Enable/Disable Non-SRG based spatial reuse.
|
|
@@ -6992,6 +7000,9 @@ typedef enum {
|
|
|
#define WMI_PDEV_SRG_PD_THRESHOLD_SET(pd_threshold_cfg, value) WMI_SET_BITS(pd_threshold_cfg, 8, 8, value)
|
|
|
#define WMI_PDEV_SRG_PD_THRESHOLD_GET(pd_threshold_cfg) WMI_GET_BITS(pd_threshold_cfg, 8, 8)
|
|
|
|
|
|
+#define WMI_PDEV_IS_PD_THRESHOLD_IN_DBM(pd_threshold_cfg) WMI_GET_BITS(pd_threshold_cfg, 29, 1)
|
|
|
+#define WMI_PDEV_SET_PD_THRESHOLD_IN_DBM(pd_threshold_cfg) WMI_SET_BITS(pd_threshold_cfg, 29, 1, 1)
|
|
|
+
|
|
|
#define WMI_PDEV_OBSS_PD_ENABLE_PER_AC_SET(per_ac_cfg, value) WMI_SET_BITS(per_ac_cfg, 0, 4, value)
|
|
|
#define WMI_PDEV_OBSS_PD_ENABLE_PER_AC_GET(per_ac_cfg) WMI_GET_BITS(per_ac_cfg, 0, 4)
|
|
|
#define WMI_PDEV_SRP_ENABLE_PER_AC_SET(per_ac_cfg, value) WMI_SET_BITS(per_ac_cfg, 16, 4, value)
|
|
@@ -11392,11 +11403,19 @@ typedef enum {
|
|
|
* allow spatial reuse only if the RSSI detected from neighboring
|
|
|
* BSS cells is no more than 10 dB.
|
|
|
*
|
|
|
+ * If Bit 29 is set, then input value will be in dBm. This is used
|
|
|
+ * for chipsets that uses dBm for comparision across MAC/Phy blocks.
|
|
|
+ * Older chipsets support input in dB units. For newer chipsets, dBm
|
|
|
+ * units will be used.
|
|
|
+ * The host will use the WMI_SERVICE_SRG_SRP_SPATIAL_REUSE_SUPPORT
|
|
|
+ * service ready bit to differentiate between providing input as dB or dBm.
|
|
|
+ *
|
|
|
* bit | purpose
|
|
|
* -----------------
|
|
|
* 0 - 7 | Param Value for non-SRG based Spatial Reuse
|
|
|
* 8 - 15| Param value for SRG based Spatial Reuse
|
|
|
- * 16 - 29| Reserved
|
|
|
+ * 16 - 28| Reserved
|
|
|
+ * 29 | Param value is in dBm units rather than dB units
|
|
|
* 30 | Enable/Disable SRG based spatial reuse.
|
|
|
* | If set to 0, ignore bits 8-15.
|
|
|
* 31 | Enable/Disable Non-SRG based spatial reuse.
|