summaryrefslogtreecommitdiffstats
path: root/src/ec/google/chromeec/audio_codec/Kconfig
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-07-02 15:59:08 -0700
committerFurquan Shaikh <furquan@google.com>2020-07-05 18:34:02 +0000
commit31b816b42f913ad964fb9e41e77690cd8e6b317b (patch)
treee717fbdf28c0adf717dc2ed1d59a72e4c6402002 /src/ec/google/chromeec/audio_codec/Kconfig
parentdfd7e9d560b24a193e8bcfb51782e99e6c4a9142 (diff)
downloadcoreboot-31b816b42f913ad964fb9e41e77690cd8e6b317b.tar.gz
coreboot-31b816b42f913ad964fb9e41e77690cd8e6b317b.tar.bz2
coreboot-31b816b42f913ad964fb9e41e77690cd8e6b317b.zip
ec/google/chromeec: Add driver for audio codec device
This change adds driver for audio codec device (HID `GOOG0013`) living behind Chrome EC. This driver generates the required ACPI node for the codec device. In a later change, GOOG0013 device will be dropped the .asl file. Change-Id: Ib2759eac60265ef81df70af1d4f1f72bd9d987e8 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43041 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/google/chromeec/audio_codec/Kconfig')
-rw-r--r--src/ec/google/chromeec/audio_codec/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ec/google/chromeec/audio_codec/Kconfig b/src/ec/google/chromeec/audio_codec/Kconfig
new file mode 100644
index 000000000000..148a7a8d9670
--- /dev/null
+++ b/src/ec/google/chromeec/audio_codec/Kconfig
@@ -0,0 +1,10 @@
+if EC_GOOGLE_CHROMEEC
+
+config EC_GOOGLE_CHROMEEC_AUDIO_CODEC
+ bool
+ depends on HAVE_ACPI_TABLES
+ help
+ This enables the Cros EC audio codec driver that is required to fill the
+ SSDT nodes for the codec device used by the mainboard.
+
+endif