diff options
author | Michael Niewöhner <foss@mniewoehner.de> | 2020-08-03 16:53:41 +0200 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2021-10-17 17:27:43 +0000 |
commit | f6611a2ea8d9288e57ce08b9190b3e401c18edd5 (patch) | |
tree | 57c849731f6f7fbb12fdf5bf08ad054c7136b55d /src/mainboard | |
parent | c9a12f2402bb9151f8a0643d98bb6915bf06531e (diff) |
soc/intel/skylake: switch to common ACPI code
Use the common ACPI code to reduce code duplication.
After this change, `PSS_MAX_ENTRIES` is honored correctly in P-state
table generation (as of commit c2540a9) and the number reduces from 10
to 7 entries.
Also, remnants of P_BLK support missed in CB:58096 will vanish.
Tested on google/fizz: no errors in dmesg, ACPI tables remain the same
(except PSS, as mentioned above).
Change-Id: I1ec804ae4006a2d9b69c0d93a658eb3b84d60b40
Tested-by: Matt DeVillier <matt.devillier@gmail.com>
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44138
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/supermicro/x11-lga1151-series/fadt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/supermicro/x11-lga1151-series/fadt.c b/src/mainboard/supermicro/x11-lga1151-series/fadt.c index 6306e03e30..0686f7ad20 100644 --- a/src/mainboard/supermicro/x11-lga1151-series/fadt.c +++ b/src/mainboard/supermicro/x11-lga1151-series/fadt.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <acpi/acpi.h> -#include <soc/acpi.h> +#include <intelblocks/acpi.h> void mainboard_fill_fadt(acpi_fadt_t *fadt) { |