mb/google/mancomb: Implement tis_plat_irq_status

This patch was implemented on Guybrush at CB:52352

BUG=b:185397933
TEST=Build

Signed-off-by: Martin Roth <martinroth@chromium.org>
Change-Id: I141a504a827f37724fab0aaed7498fd543e471d6
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52950
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
Martin Roth 2021-05-05 13:00:56 -06:00 committed by Felix Held
parent 804382343e
commit d233b1a831
2 changed files with 13 additions and 0 deletions

View File

@ -1,7 +1,11 @@
bootblock-y += gpio.c
romstage-y += tpm_tis.c
ramstage-y += gpio.c
ramstage-y += tpm_tis.c
verstage-y += gpio.c
verstage-y += tpm_tis.c
smm-y += gpio.c

View File

@ -0,0 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <security/tpm/tis.h>
#include <soc/gpio.h>
int tis_plat_irq_status(void)
{
return gpio_interrupt_status(GPIO_3);
}