summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/skyrim/variants/baseboard
diff options
context:
space:
mode:
authorGrzegorz Bernacki <bernacki@google.com>2023-06-14 12:01:32 +0000
committerFelix Held <felix-coreboot@felixheld.de>2023-07-06 16:16:43 +0000
commit7758b47e3be128ab8c1c3fecb63b8f0054351ee0 (patch)
tree626cdc57c8c0eb979e336af506da07b4e4ea77e0 /src/mainboard/google/skyrim/variants/baseboard
parent15d75aa999709ab2006b816f7c0335b52147f945 (diff)
downloadcoreboot-7758b47e3be128ab8c1c3fecb63b8f0054351ee0.tar.gz
coreboot-7758b47e3be128ab8c1c3fecb63b8f0054351ee0.tar.bz2
coreboot-7758b47e3be128ab8c1c3fecb63b8f0054351ee0.zip
drivers/tpm: Move tis_plat_irq_status to cr50 driver
tis_plat_irq_status() function is used only by Google TPM. It should be moved to drivers/tpm/cr50.c. The name of the function was changed to cr50_plat_irq_status(). BUG=b:277787305 TEST=Build all affected platforms Change-Id: I78dc39f2c7b44232b06947d3dfe6afa52807ced8 Signed-off-by: Grzegorz Bernacki <bernacki@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/75917 Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/mainboard/google/skyrim/variants/baseboard')
-rw-r--r--src/mainboard/google/skyrim/variants/baseboard/tpm_tis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/skyrim/variants/baseboard/tpm_tis.c b/src/mainboard/google/skyrim/variants/baseboard/tpm_tis.c
index 7e513ef79f7d..b3ab49aee317 100644
--- a/src/mainboard/google/skyrim/variants/baseboard/tpm_tis.c
+++ b/src/mainboard/google/skyrim/variants/baseboard/tpm_tis.c
@@ -1,9 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-#include <security/tpm/tis.h>
+#include <drivers/tpm/cr50.h>
#include <gpio.h>
-int tis_plat_irq_status(void)
+int cr50_plat_irq_status(void)
{
return gpio_interrupt_status(GPIO_18);
}