diff options
author | Jeremy Compostella <jeremy.compostella@intel.com> | 2024-07-11 15:43:35 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-07-15 18:14:58 +0000 |
commit | dd4b3aa7b92dd2a0ed64e5f38f0dfc8a2f1f9505 (patch) | |
tree | caf50f927466311f662c7ad6c5a0d796dad9f043 /src/include/sar.h | |
parent | 6b82519cba6d49cb313f1f034234143b64ef0c46 (diff) |
drivers/wifi: Support Energy Detection Threshold
The 'Energy Detection Threshold' DSM function 10 provides the desired
status of the EDT optimizations.
The implementation follows document 559910 Intel Connectivity
Platforms BIOS Guideline revision 8.3 specification.
BUG=b:352788465
TEST=ACPI DSM Function 10 reflects the value of the SAR binary
Change-Id: I2e2e9d4f5420020bd7540cb36fa8aebfedf62285
Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83430
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: YH Lin <yueherngl@google.com>
Diffstat (limited to 'src/include/sar.h')
-rw-r--r-- | src/include/sar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/sar.h b/src/include/sar.h index 5968645154..c8e9d41b55 100644 --- a/src/include/sar.h +++ b/src/include/sar.h @@ -60,6 +60,7 @@ struct dsm_profile { uint32_t enablement_11ax; uint32_t unii_4; uint32_t enablement_11be; + uint32_t energy_detection_threshold; }; struct bsar_profile { |