diff options
author | Nico Huber <nico.huber@secunet.com> | 2016-09-29 12:33:01 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2016-11-17 11:27:38 +0100 |
commit | e34e178ca3f31064e9c4cced4243524d08579007 (patch) | |
tree | b25104e3f9c50c0c7cd84490aed86dc59e2b5d76 /src/superio/ite/Makefile.inc | |
parent | c70cc4d70d1205abe6bc7c06039f2b8443234709 (diff) | |
download | coreboot-e34e178ca3f31064e9c4cced4243524d08579007.tar.xz |
sio/ite/common: Add generic environment-controller driver
The environment-controller entity is shared by many ITE super-i/o
chips. There are some differences between the chips, though. To cover
that, the super-i/o chip should select Kconfig options of this driver
accordingly.
The current implementation isn't exhaustive: It covers only those
parts that are connected on boards I could test, plus those that are
currently used by the IT8772F. The latter could be ported to use this
driver if somebody minds to test it.
Change-Id: I7a40f677f667d103ce1d09a3e468915729067803
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/17284
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/superio/ite/Makefile.inc')
-rw-r--r-- | src/superio/ite/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/superio/ite/Makefile.inc b/src/superio/ite/Makefile.inc index eb073d441d..487beb1709 100644 --- a/src/superio/ite/Makefile.inc +++ b/src/superio/ite/Makefile.inc @@ -16,6 +16,9 @@ ## include generic ite pre-ram stage driver romstage-$(CONFIG_SUPERIO_ITE_COMMON_ROMSTAGE) += common/early_serial.c +## include generic ite environment controller driver +ramstage-$(CONFIG_SUPERIO_ITE_ENV_CTRL) += common/env_ctrl.c + subdirs-y += it8671f subdirs-y += it8712f subdirs-y += it8716f |