soc/amd/picasso/smi: add missing bits to GEVENT_MASK

GEVENT_MASK should cover all GEVENT pins, but was missing
SMITYPE_G_AGPIO9 and SMITYPE_G_AGPIO8.

Change-Id: Ia676476e2d2cf468d82d6d90e9fc11d34f56f153
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48483
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
This commit is contained in:
Felix Held 2020-12-09 00:36:44 +01:00
parent 8c1e603800
commit e501f9b3dd
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@
| (1 << SMITYPE_G_FANIN0) \
| (1 << SMITYPE_G_SYSRESET_L) \
| (1 << SMITYPE_G_AGPIO40) \
| (1 << SMITYPE_G_PWR_BTN_L))
| (1 << SMITYPE_G_PWR_BTN_L) \
| (1 << SMITYPE_G_AGPIO9) \
| (1 << SMITYPE_G_AGPIO8))
#define SMITYPE_MP2_WAKE 24
#define SMITYPE_MP2_GPIO0 25
#define SMITYPE_ESPI_SYS 26