summaryrefslogtreecommitdiffstats
path: root/src/mainboard/portwell/m107
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2023-04-29 07:42:45 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2023-05-01 17:33:31 +0000
commit167ccc7e65b251c3b735f82ce0675a6f85e157a8 (patch)
tree718a9d19324029c5c424f5b4d71390d4963303fd /src/mainboard/portwell/m107
parent96581b3217203b0618062799b9a117bd7cc684ff (diff)
downloadcoreboot-167ccc7e65b251c3b735f82ce0675a6f85e157a8.tar.gz
coreboot-167ccc7e65b251c3b735f82ce0675a6f85e157a8.tar.bz2
coreboot-167ccc7e65b251c3b735f82ce0675a6f85e157a8.zip
mainboard/*: Drop USB power control bits in GNVS
There is no platform-level implementation for USB port power management in various sleepstates. The mainboards changed here never evaluate the set GNVS variables S3U0, S3U1, S5U0 and S5U1 in ASL or in their SMI handlers. Change-Id: Ia1bc5969804a7346caac4ae93336efd9f0240c87 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74858 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Erik van den Bogaert <ebogaert@eltan.com>
Diffstat (limited to 'src/mainboard/portwell/m107')
-rw-r--r--src/mainboard/portwell/m107/acpi_tables.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mainboard/portwell/m107/acpi_tables.c b/src/mainboard/portwell/m107/acpi_tables.c
index 3576455335fd..d5dc5cca77e1 100644
--- a/src/mainboard/portwell/m107/acpi_tables.c
+++ b/src/mainboard/portwell/m107/acpi_tables.c
@@ -7,14 +7,6 @@
void mainboard_fill_gnvs(struct global_nvs *gnvs)
{
- /* Enable USB ports in S3 */
- gnvs->s3u0 = 1;
- gnvs->s3u1 = 1;
-
- /* Disable USB ports in S5 */
- gnvs->s5u0 = 0;
- gnvs->s5u1 = 0;
-
/* PMIC is configured in I2C1, hide it for the OS */
struct device_nvs *dev_nvs = acpi_get_device_nvs();
dev_nvs->lpss_en[LPSS_NVS_I2C2] = 0;