qcacmn: CFG section defines for 6 GHz low & high bands

CFG section definitions for 6 GHz low & high band for
ini configurations. These new definitions enables us to
configure the unique INI parameters for 6 GHz low and 
6 GHz high band, for new solution of Split-phy in 6 GHz.


Change-Id: I1417dee90f0aebe31f24a64017d9203b74dfc886
CRs-Fixed: 3332719
This commit is contained in:
Surya Prakash Raajen
2022-11-07 16:46:42 +05:30
committed by Madan Koyyalamudi
parent 161650dffa
commit 572d9ff24e
2 changed files with 12 additions and 1 deletions

View File

@@ -103,30 +103,40 @@ enum cfg_fallback_behavior {
#define CFG_5G_SECTION "5G" #define CFG_5G_SECTION "5G"
#define CFG_5G_LOW_SECTION "5GL" #define CFG_5G_LOW_SECTION "5GL"
#define CFG_5G_HIGH_SECTION "5GH" #define CFG_5G_HIGH_SECTION "5GH"
#define CFG_6G_HIGH_SECTION "6GH"
#define CFG_6G_LOW_SECTION "6GL"
#define CFG_6G_SECTION "6G" #define CFG_6G_SECTION "6G"
#define CFG_256M_2G_SECTION "2G-256M" #define CFG_256M_2G_SECTION "2G-256M"
#define CFG_256M_5G_SECTION "5G-256M" #define CFG_256M_5G_SECTION "5G-256M"
#define CFG_256M_5G_LOW_SECTION "5GL-256M" #define CFG_256M_5G_LOW_SECTION "5GL-256M"
#define CFG_256M_5G_HIGH_SECTION "5GH-256M" #define CFG_256M_5G_HIGH_SECTION "5GH-256M"
#define CFG_256M_6G_LOW_SECTION "6GL-256M"
#define CFG_256M_6G_HIGH_SECTION "6GH-256M"
#define CFG_256M_6G_SECTION "6G-256M" #define CFG_256M_6G_SECTION "6G-256M"
#define CFG_512ME_2G_SECTION "2G-512M-E" #define CFG_512ME_2G_SECTION "2G-512M-E"
#define CFG_512ME_5G_SECTION "5G-512M-E" #define CFG_512ME_5G_SECTION "5G-512M-E"
#define CFG_512ME_5G_LOW_SECTION "5GL-512M-E" #define CFG_512ME_5G_LOW_SECTION "5GL-512M-E"
#define CFG_512ME_5G_HIGH_SECTION "5GH-512M-E" #define CFG_512ME_5G_LOW_SECTION "5GL-512M-E"
#define CFG_512ME_6G_HIGH_SECTION "6GH-512M-E"
#define CFG_512ME_6G_HIGH_SECTION "6GH-512M-E"
#define CFG_512ME_6G_SECTION "6G-512M-E" #define CFG_512ME_6G_SECTION "6G-512M-E"
#define CFG_512MP_2G_SECTION "2G-512M-P" #define CFG_512MP_2G_SECTION "2G-512M-P"
#define CFG_512MP_5G_LOW_SECTION "5GL-512M-P" #define CFG_512MP_5G_LOW_SECTION "5GL-512M-P"
#define CFG_512MP_5G_HIGH_SECTION "5GH-512M-P" #define CFG_512MP_5G_HIGH_SECTION "5GH-512M-P"
#define CFG_512MP_5G_SECTION "5G-512M-P" #define CFG_512MP_5G_SECTION "5G-512M-P"
#define CFG_512MP_6G_LOW_SECTION "6GL-512M-P"
#define CFG_512MP_6G_HIGH_SECTION "6GH-512M-P"
#define CFG_512MP_6G_SECTION "6G-512M-P" #define CFG_512MP_6G_SECTION "6G-512M-P"
#define CFG_1G_2G_SECTION "1G-2G" #define CFG_1G_2G_SECTION "1G-2G"
#define CFG_1G_5G_SECTION "1G-5G" #define CFG_1G_5G_SECTION "1G-5G"
#define CFG_1G_5G_LOW_SECTION "1G-5GL" #define CFG_1G_5G_LOW_SECTION "1G-5GL"
#define CFG_1G_5G_HIGH_SECTION "1G-5GH" #define CFG_1G_5G_HIGH_SECTION "1G-5GH"
#define CFG_1G_6G_LOW_SECTION "1G-6GL"
#define CFG_1G_6G_HIGH_SECTION "1G-6GH"
#define CFG_1G_6G_SECTION "1G-6G" #define CFG_1G_6G_SECTION "1G-6G"
#define CFG_SCAN_RADIO_SECTION "SCAN-RADIO" #define CFG_SCAN_RADIO_SECTION "SCAN-RADIO"

View File

@@ -331,6 +331,7 @@ struct target_ops {
int (*csa_switch_count_status)( int (*csa_switch_count_status)(
struct wlan_objmgr_psoc *psoc, struct wlan_objmgr_psoc *psoc,
struct pdev_csa_switch_count_status csa_status); struct pdev_csa_switch_count_status csa_status);
void (*ema_init)(struct wlan_objmgr_pdev *pdev);
#if defined(WLAN_FEATURE_11BE_MLO) && defined(WLAN_MLO_MULTI_CHIP) #if defined(WLAN_FEATURE_11BE_MLO) && defined(WLAN_MLO_MULTI_CHIP)
bool (*mlo_capable)(struct wlan_objmgr_psoc *psoc); bool (*mlo_capable)(struct wlan_objmgr_psoc *psoc);
void (*mlo_setup_done_event)(struct wlan_objmgr_psoc *psoc); void (*mlo_setup_done_event)(struct wlan_objmgr_psoc *psoc);