diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2023-04-29 07:42:45 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2023-05-01 17:34:10 +0000 |
commit | 72e63d5e9cf5ae478f076f227ef45a5125bd2442 (patch) | |
tree | de036840efea27c473cbbb4f6415691d9c3a9160 /src/mainboard/protectli/vault_bsw | |
parent | 167ccc7e65b251c3b735f82ce0675a6f85e157a8 (diff) |
protectcli/vault_bsw: Drop USB power control bits in GNVS
There is no platform-level implementation for USB port power management
in various sleepstates. This mainboard never evaluates the set GNVS
variables S3U0, S3U1, S5U0 and S5U1 in ASL or in its SMI handlers.
Change-Id: Ic7af2d608d95c6691f31ef1b8af72f96da20787c
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74859
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/protectli/vault_bsw')
-rw-r--r-- | src/mainboard/protectli/vault_bsw/acpi_tables.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/mainboard/protectli/vault_bsw/acpi_tables.c b/src/mainboard/protectli/vault_bsw/acpi_tables.c index 4206cde022..4276be7d2a 100644 --- a/src/mainboard/protectli/vault_bsw/acpi_tables.c +++ b/src/mainboard/protectli/vault_bsw/acpi_tables.c @@ -1,15 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ -#include <acpi/acpi_gnvs.h> -#include <soc/acpi.h> -#include <soc/nvs.h> - -void mainboard_fill_gnvs(struct global_nvs *gnvs) -{ - /* Enable USB ports in S3 */ - gnvs->s3u0 = 1; - gnvs->s3u1 = 1; -} +#include <acpi/acpi.h> void mainboard_fill_fadt(acpi_fadt_t *fadt) { |