soc/intel/common/acpi: drop `RTC_EN` from static wake bits mask
`RTC_EN` is in the RTC well* so we can rely on the actual register content instead of statically overriding it. Drop it from the static wake bits mask. * Tested on clevo/l140cu Change-Id: Ia0ae71f0a472513233bc0fd5625faf15bf86beaf Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/58211 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
This commit is contained in:
parent
9034689ee7
commit
f855b8bfee
|
@ -218,7 +218,7 @@ int soc_fill_acpi_wake(const struct chipset_power_state *ps, uint32_t *pm1, uint
|
||||||
* powerbtn or any other wake source like lidopen, key board press etc.
|
* powerbtn or any other wake source like lidopen, key board press etc.
|
||||||
*/
|
*/
|
||||||
pm1_en = ps->pm1_en;
|
pm1_en = ps->pm1_en;
|
||||||
pm1_en |= WAK_STS | RTC_EN | PWRBTN_EN;
|
pm1_en |= WAK_STS | PWRBTN_EN;
|
||||||
|
|
||||||
pm1_en = acpi_fill_soc_wake(pm1_en, ps);
|
pm1_en = acpi_fill_soc_wake(pm1_en, ps);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue