Existing SAR infrastructure supports only revision 0 of the SAR tables. This patch modifies it to extend support for intel wifi 6 and wifi 6e configurations as per the connectivity document: 559910_Intel_Connectivity_Platforms_BIOS_Guidelines_Rev6_4.pdf The SAR table and WGDS configuration block sizes were static in the legacy SAR file format. Following is the format of the new binary file. +------------------------------------------------------------+ | Field | Size | Description | +------------------------------------------------------------+ | Marker | 4 bytes | "$SAR" | +------------------------------------------------------------+ | Version | 1 byte | Current version = 1 | +------------------------------------------------------------+ | SAR table | 2 bytes | Offset of SAR table from start of | | offset | | the header | +------------------------------------------------------------+ | WGDS | 2 bytes | Offset of WGDS table from start of | | offset | | the header | +------------------------------------------------------------+ | Data | n bytes | Data for the different tables | +------------------------------------------------------------+ This change supports both the legacy and the new format of SAR file BUG=b:193665559 TEST=Checked the SSDT entries for WRDS, EWRD and WGDS with different binaries generated by setting different versions in the config.star Change-Id: I08c3f321938eba04e8bcff4d87cb215422715bb2 Signed-off-by: Sugnan Prabhu S <sugnan.prabhu.s@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56750 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef _SAR_H_
|
|
#define _SAR_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define MAX_DSAR_SET_COUNT 3
|
|
#define MAX_GEO_OFFSET_REVISION 3
|
|
#define MAX_PROFILE_COUNT 2
|
|
#define MAX_SAR_REVISION 2
|
|
#define REVISION_SIZE 1
|
|
#define SAR_REV0_CHAINS_COUNT 2
|
|
#define SAR_REV0_SUBBANDS_COUNT 5
|
|
#define SAR_FILE_REVISION 1
|
|
#define SAR_STR_PREFIX "$SAR"
|
|
#define SAR_STR_PREFIX_SIZE 4
|
|
|
|
struct geo_profile {
|
|
uint8_t revision;
|
|
uint8_t chains_count;
|
|
uint8_t bands_count;
|
|
uint8_t wgds_table[0];
|
|
} __packed;
|
|
|
|
struct sar_profile {
|
|
uint8_t revision;
|
|
uint8_t dsar_set_count;
|
|
uint8_t chains_count;
|
|
uint8_t subbands_count;
|
|
uint8_t sar_table[0];
|
|
} __packed;
|
|
|
|
struct sar_header {
|
|
char marker[SAR_STR_PREFIX_SIZE];
|
|
uint8_t version;
|
|
uint16_t offsets[0];
|
|
} __packed;
|
|
|
|
/* Wifi SAR limit table structure */
|
|
union wifi_sar_limits {
|
|
struct {
|
|
struct sar_profile *sar;
|
|
struct geo_profile *wgds;
|
|
};
|
|
void *profile[MAX_PROFILE_COUNT];
|
|
};
|
|
|
|
/*
|
|
* Retrieve the wifi ACPI configuration data from CBFS and decode it
|
|
* sar_limits: Pointer to wifi_sar_limits where the resulted data is stored
|
|
*
|
|
* Returns: 0 on success, -1 on errors (The .hex file doesn't exist, or the decode failed)
|
|
*/
|
|
int get_wifi_sar_limits(union wifi_sar_limits *sar_limits);
|
|
|
|
#define WIFI_SAR_CBFS_DEFAULT_FILENAME "wifi_sar_defaults.hex"
|
|
|
|
const char *get_wifi_sar_cbfs_filename(void);
|
|
|
|
#endif /* _SAR_H_ */
|