diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-01-05 22:15:46 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-10 14:44:51 +0000 |
commit | 141955ac74b8fbbefd1f94155a236f0e0ca5eaff (patch) | |
tree | 121e82fe58799b57b737e5b3477dcc9ff15a86bf /src/soc | |
parent | 21710ea3cdff6de647a1f507f1e50bf382c2cf14 (diff) |
soc/amd: use apm_get_apmc() in APMC SMI handler
Instead of open-coding this functionality, call the apm_get_apmc()
helper function.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Iac6b614d900e51d91a0c155116a5edc29775ea99
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79836
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/amd/common/block/cpu/smm/smi_apmc.c | 2 | ||||
-rw-r--r-- | src/soc/amd/stoneyridge/smihandler.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/common/block/cpu/smm/smi_apmc.c b/src/soc/amd/common/block/cpu/smm/smi_apmc.c index 0eab86c9da..9df6ae3132 100644 --- a/src/soc/amd/common/block/cpu/smm/smi_apmc.c +++ b/src/soc/amd/common/block/cpu/smm/smi_apmc.c @@ -91,7 +91,7 @@ void handle_smi_store(void) void fch_apmc_smi_handler(void) { - const uint8_t cmd = inb(pm_acpi_smi_cmd_port()); + const uint8_t cmd = apm_get_apmc(); switch (cmd) { case APM_CNT_ACPI_ENABLE: diff --git a/src/soc/amd/stoneyridge/smihandler.c b/src/soc/amd/stoneyridge/smihandler.c index a8521c5bda..f962fa0add 100644 --- a/src/soc/amd/stoneyridge/smihandler.c +++ b/src/soc/amd/stoneyridge/smihandler.c @@ -21,7 +21,7 @@ */ static void stoneyridge_fch_apmc_smi_handler(void) { - const uint8_t cmd = inb(pm_acpi_smi_cmd_port()); + const uint8_t cmd = apm_get_apmc(); switch (cmd) { case APM_CNT_ACPI_ENABLE: |