diff options
author | Mathew King <mathewk@chromium.org> | 2021-03-04 15:32:50 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-03-08 21:15:01 +0000 |
commit | 45a33b07712e8c65d1c6c257d53995fdb794a134 (patch) | |
tree | 62920638b28dff7a793382916c4ff1bbb7458289 | |
parent | d58877887a552321ca8272574ca7d551740bcf3a (diff) |
soc/amd/cezanne: Include gpio.c in smm
Mainboards can configure gpios in their smihandler.
BUG=b:180507707
TEST=builds
Signed-off-by: Mathew King <mathewk@chromium.org>
Change-Id: I6c2b28f981f580cfb6f982a2d7e4c309d6f82e0b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51263
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r-- | src/soc/amd/cezanne/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/Makefile.inc b/src/soc/amd/cezanne/Makefile.inc index 16b69f36d2..4c67b2bb7c 100644 --- a/src/soc/amd/cezanne/Makefile.inc +++ b/src/soc/amd/cezanne/Makefile.inc @@ -36,6 +36,7 @@ ramstage-y += reset.c ramstage-y += root_complex.c ramstage-y += uart.c +smm-y += gpio.c smm-y += smihandler.c smm-y += smu.c smm-$(CONFIG_DEBUG_SMI) += uart.c |