diff options
author | Furquan Shaikh <furquan@google.com> | 2018-10-06 12:02:27 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2018-10-11 23:58:10 +0000 |
commit | 8dcfcb31069e0ea6b4a7d0155caef48316d608eb (patch) | |
tree | 05b6ff0e53ab527c33a693522d3afde699172e65 /src | |
parent | 374b937a2550dd2480e1cb416714b16a877c86d8 (diff) | |
download | coreboot-8dcfcb31069e0ea6b4a7d0155caef48316d608eb.tar.xz |
ec/google/chromeec: Add support for querying ec board id in smm stage
This change adds ec_boardid.c to smm stage, which is required to allow
mainboards to query the ec to get board version in this
stage.
BUG=b:112366846,b:112112483,b:112111610
Change-Id: Iccbba96ebb94a12745a62cbfe3496f9e6f921e3d
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/28982
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Enrico Granata <egranata@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/ec/google/chromeec/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ec/google/chromeec/Makefile.inc b/src/ec/google/chromeec/Makefile.inc index b17a9042b3..4fe311defb 100644 --- a/src/ec/google/chromeec/Makefile.inc +++ b/src/ec/google/chromeec/Makefile.inc @@ -3,6 +3,7 @@ ifeq ($(CONFIG_EC_GOOGLE_CHROMEEC),y) bootblock-$(CONFIG_EC_GOOGLE_CHROMEEC_BOARDID) += ec_boardid.c romstage-$(CONFIG_EC_GOOGLE_CHROMEEC_BOARDID) += ec_boardid.c ramstage-$(CONFIG_EC_GOOGLE_CHROMEEC_BOARDID) += ec_boardid.c +smm-$(CONFIG_EC_GOOGLE_CHROMEEC_BOARDID) += ec_boardid.c bootblock-y += ec.c bootblock-$(CONFIG_EC_GOOGLE_CHROMEEC_LPC) += ec_lpc.c |