diff options
author | Youness Alaoui <youness.alaoui@puri.sm> | 2018-03-13 16:58:52 -0400 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-03-26 10:25:58 +0000 |
commit | be78775a9302f9526df6eb61f8a430f4298f0e97 (patch) | |
tree | 7d71e3134de4ae8cdf629b123654fad416bbd278 /src/mainboard/purism/librem13v1 | |
parent | 6aa28d93b354845e96c7154b1670864fa48ac16a (diff) | |
download | coreboot-be78775a9302f9526df6eb61f8a430f4298f0e97.tar.xz |
ec/purism: Fix CPU Turbo value (PPCM) set by the EC
The EC needs to set the PPCM value depending on whether
Turbo is enabled or not, and the values differ between
Broadwell (0, 1) and Skylake (1, 2) platforms.
Change-Id: I662dce54415e685c054ffc00b6afde0f1f7765e2
Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm>
Reviewed-on: https://review.coreboot.org/25329
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Diffstat (limited to 'src/mainboard/purism/librem13v1')
-rw-r--r-- | src/mainboard/purism/librem13v1/acpi/ec.asl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/purism/librem13v1/acpi/ec.asl b/src/mainboard/purism/librem13v1/acpi/ec.asl index cf8b9a91d9..b2fa5b9924 100644 --- a/src/mainboard/purism/librem13v1/acpi/ec.asl +++ b/src/mainboard/purism/librem13v1/acpi/ec.asl @@ -14,5 +14,7 @@ */ #define EC_SCI_GPI 10 +#define PPCM_TURBO Zero +#define PPCM_NOTURBO One #include <ec/purism/librem/acpi/ec.asl> |