From 72e63d5e9cf5ae478f076f227ef45a5125bd2442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Sat, 29 Apr 2023 07:42:45 +0300 Subject: [PATCH] protectcli/vault_bsw: Drop USB power control bits in GNVS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74859 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans --- src/mainboard/protectli/vault_bsw/acpi_tables.c | 11 +---------- 1 file changed, 1 insertion(+), 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 -#include -#include - -void mainboard_fill_gnvs(struct global_nvs *gnvs) -{ - /* Enable USB ports in S3 */ - gnvs->s3u0 = 1; - gnvs->s3u1 = 1; -} +#include void mainboard_fill_fadt(acpi_fadt_t *fadt) {