diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/sar.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/sar.h b/src/include/sar.h index b9c83c3a05..0609bd34ef 100644 --- a/src/include/sar.h +++ b/src/include/sar.h @@ -9,11 +9,12 @@ #define MAX_DENYLIST_ENTRY 16 #define MAX_DSAR_SET_COUNT 3 #define MAX_GEO_OFFSET_REVISION 3 -#define MAX_PROFILE_COUNT 8 +#define MAX_PROFILE_COUNT 9 #define MAX_SAR_REVISION 2 #define BSAR_REVISION 1 #define WBEM_REVISION 0 #define BPAG_REVISION 2 +#define BBFB_REVISION 1 #define REVISION_SIZE 1 #define SAR_REV0_CHAINS_COUNT 2 #define SAR_REV0_SUBBANDS_COUNT 5 @@ -87,6 +88,11 @@ struct bpag_profile { uint32_t antenna_gain_country_enablement; } __packed; +struct bbfb_profile { + uint8_t revision; + uint8_t enable_quad_filter_bypass; +} __packed; + struct sar_header { char marker[SAR_STR_PREFIX_SIZE]; uint8_t version; @@ -104,6 +110,7 @@ union wifi_sar_limits { struct bsar_profile *bsar; struct wbem_profile *wbem; struct bpag_profile *bpag; + struct bbfb_profile *bbfb; }; void *profile[MAX_PROFILE_COUNT]; }; |