diff options
author | Duncan Laurie <dlaurie@google.com> | 2018-10-14 02:39:46 +0000 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-18 15:01:27 +0000 |
commit | 26cf00ab498a78b59c9170d38d6ee7ced930259c (patch) | |
tree | ae300f5c0ff2b489db92493e1ba77c2ca1a82c93 /src/ec/google/common/Makefile.inc | |
parent | c2ef1029fabfccbdd3e86c5f659f83109313c9f9 (diff) |
ec/google/common: Add a common MEC interface
In order to re-use the MEC interface code in the Chrome EC driver
move it to a common directory within the ec/google directory.
The Chrome EC driver itself is changed to use this interface in the
next commit, and future commits will introduce a new EC that also
uses this interface.
Change-Id: I13516b5e4c4c49f53bb998366284a26703142e2a
Signed-off-by: Duncan Laurie <dlaurie@google.com>
Reviewed-on: https://review.coreboot.org/29111
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/ec/google/common/Makefile.inc')
-rw-r--r-- | src/ec/google/common/Makefile.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ec/google/common/Makefile.inc b/src/ec/google/common/Makefile.inc new file mode 100644 index 0000000000..7ab2285ac6 --- /dev/null +++ b/src/ec/google/common/Makefile.inc @@ -0,0 +1,5 @@ +bootblock-$(CONFIG_EC_GOOGLE_COMMON_MEC) += mec.c +verstage-$(CONFIG_EC_GOOGLE_COMMON_MEC) += mec.c +romstage-$(CONFIG_EC_GOOGLE_COMMON_MEC) += mec.c +ramstage-$(CONFIG_EC_GOOGLE_COMMON_MEC) += mec.c +smm-$(CONFIG_EC_GOOGLE_COMMON_MEC) += mec.c |