|
@@ -5646,6 +5646,52 @@ enum hdd_link_speed_rpt_type {
|
|
|
#define CFG_ENABLE_DYNAMIC_DTIM_MAX (9)
|
|
|
#define CFG_ENABLE_DYNAMIC_DTIM_DEFAULT (0)
|
|
|
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * gConfigVCmodeBitmap - Bitmap for operating voltage corner mode
|
|
|
+ * @Min: 0x00000000
|
|
|
+ * @Max: 0x0fffffff
|
|
|
+ * @Default: 0x0000000a
|
|
|
+ * This ini is used to set operating voltage corner mode for differenet
|
|
|
+ * phymode and bw configurations. Every 2 bits till BIT27 are dedicated
|
|
|
+ * for a specific configuration. Bit values decide the type of voltage
|
|
|
+ * corner mode. All the details below -
|
|
|
+ *
|
|
|
+ * Configure operating voltage corner mode based on phymode and bw.
|
|
|
+ * bit 0-1 - operating voltage corner mode for 11a/b.
|
|
|
+ * bit 2-3 - operating voltage corner mode for 11g.
|
|
|
+ * bit 4-5 - operating voltage corner mode for 11n, 20MHz, 1x1.
|
|
|
+ * bit 6-7 - operating voltage corner mode for 11n, 20MHz, 2x2.
|
|
|
+ * bit 8-9 - operating voltage corner mode for 11n, 40MHz, 1x1.
|
|
|
+ * bit 10-11 - operating voltage corner mode for 11n, 40MHz, 2x2.
|
|
|
+ * bit 12-13 - operating voltage corner mode for 11ac, 20MHz, 1x1.
|
|
|
+ * bit 14-15 - operating voltage corner mode for 11ac, 20MHz, 2x2.
|
|
|
+ * bit 16-17 - operating voltage corner mode for 11ac, 40MHz, 1x1.
|
|
|
+ * bit 18-19 - operating voltage corner mode for 11ac, 40MHz, 2x2.
|
|
|
+ * bit 20-21 - operating voltage corner mode for 11ac, 80MHz, 1x1.
|
|
|
+ * bit 22-23 - operating voltage corner mode for 11ac, 80MHz, 2x2.
|
|
|
+ * bit 24-25 - operating voltage corner mode for 11ac, 160MHz, 1x1.
|
|
|
+ * bit 26-27 - operating voltage corner mode for 11ac, 160MHz, 2x2.
|
|
|
+ * ---------------------------------------------
|
|
|
+ * 00 - Static voltage corner SVS
|
|
|
+ * 01 - static voltage corner LOW SVS
|
|
|
+ * 10 - Dynamic voltage corner selection based on TPUT
|
|
|
+ * 11 - Dynamic voltage corner selection based on TPUT and Tx Flush counters
|
|
|
+
|
|
|
+ * Related: None
|
|
|
+ *
|
|
|
+ * Supported Feature: None
|
|
|
+ *
|
|
|
+ * Usage: External
|
|
|
+ *
|
|
|
+ * </ini>
|
|
|
+ */
|
|
|
+
|
|
|
+#define CFG_VC_MODE_BITMAP "gConfigVCmode"
|
|
|
+#define CFG_VC_MODE_BITMAP_MIN (0x00000000)
|
|
|
+#define CFG_VC_MODE_BITMAP_MAX (0x0fffffff)
|
|
|
+#define CFG_VC_MODE_BITMAP_DEFAULT (0x00000005)
|
|
|
+
|
|
|
/*
|
|
|
* <ini>
|
|
|
* gApAutoChannelSelection - Force ACS from ini
|
|
@@ -13211,6 +13257,9 @@ struct hdd_config {
|
|
|
/* Vowifi 11r params */
|
|
|
bool fFTResourceReqSupported;
|
|
|
|
|
|
+ /* Bitmap for operating voltage corner mode */
|
|
|
+ uint32_t vc_mode_cfg_bitmap;
|
|
|
+
|
|
|
uint16_t nNeighborScanPeriod;
|
|
|
uint16_t neighbor_scan_min_period;
|
|
|
uint8_t nNeighborLookupRssiThreshold;
|