From 1399442289607acc5203fb12df64e9081b3c3aa4 Mon Sep 17 00:00:00 2001 From: Meera Ravindranath Date: Fri, 27 Aug 2021 17:42:04 +0530 Subject: soc/intel/adl: Drop SGPM, RGPM and EGPM methods These methods can now be dropped as Dynamic GPIO PM is enabled. Signed-off-by: Meera Ravindranath Change-Id: I0c7b67b5414d8c80775ab7678ce7b12181af7882 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57209 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh Reviewed-by: Angel Pons Reviewed-by: Tim Wawrzynczak --- src/soc/intel/alderlake/acpi/gpio.asl | 41 ----------------------------------- 1 file changed, 41 deletions(-) (limited to 'src/soc') diff --git a/src/soc/intel/alderlake/acpi/gpio.asl b/src/soc/intel/alderlake/acpi/gpio.asl index 376afaba1e..6a1ba0074e 100644 --- a/src/soc/intel/alderlake/acpi/gpio.asl +++ b/src/soc/intel/alderlake/acpi/gpio.asl @@ -137,44 +137,3 @@ Method (GPID, 1, Serialized) Return (Local0) } - -/* GPIO Power Management bits */ -Name(GPMB, Package(TOTAL_GPIO_COMM) {0, 0, 0, 0, 0, 0}) - -/* - * Save GPIO Power Management bits - */ -Method (SGPM, 0, Serialized) -{ - For (Local0 = 0, Local0 < TOTAL_GPIO_COMM, Local0++) - { - Local1 = GPID (Local0) - GPMB[Local0] = PCRR (Local1, GPIO_MISCCFG) - } -} - -/* - * Restore GPIO Power Management bits - */ -Method (RGPM, 0, Serialized) -{ - For (Local0 = 0, Local0 < TOTAL_GPIO_COMM, Local0++) - { - CGPM (Local0, DerefOf(GPMB[Local0])) - } -} - -/* - * Save current setting of GPIO Power Management bits and - * enable all Power Management bits for all communities - */ -Method (EGPM, 0, Serialized) -{ - /* Save current setting and will restore it when resuming */ - SGPM () - /* Enable PM bits */ - For (Local0 = 0, Local0 < TOTAL_GPIO_COMM, Local0++) - { - CGPM (Local0, MISCCFG_GPIO_PM_CONFIG_BITS) - } -} -- cgit v1.2.3