diff options
author | Yu-Hsuan Hsu <yuhsuan@chromium.org> | 2020-01-15 16:17:24 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-05-21 21:33:20 +0000 |
commit | 4732f23a1f488c1fe31363a94ad990bc097547ae (patch) | |
tree | 77ad21722351c7767bab740e13a2508ff7288370 /src/ec | |
parent | 77f6627a199e145adc492207f8b4bb4df5388b2b (diff) | |
download | coreboot-4732f23a1f488c1fe31363a94ad990bc097547ae.tar.xz |
ec/google/chromeec/acpi: Add CROS EC CODEC device
This is currently used by trembyle. Add it in a common location so other
boards can use it.
BUG=b:147200751
BRANCH=none
TEST=Able to get ec codec on trembyle
Change-Id: Ie21cd813b0e3129f1c61d2de199532b25d3c70fa
Signed-off-by: Yu-Hsuan Hsu <yuhsuan@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/coreboot/+/2000271
Reviewed-by: Raul E Rangel <rrangel@chromium.org>
Reviewed-by: Martin Roth <martinroth@chromium.org>
Commit-Queue: Martin Roth <martinroth@chromium.org>
Tested-by: Martin Roth <martinroth@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41575
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/google/chromeec/acpi/codec.asl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ec/google/chromeec/acpi/codec.asl b/src/ec/google/chromeec/acpi/codec.asl new file mode 100644 index 0000000000..14d8d0cab5 --- /dev/null +++ b/src/ec/google/chromeec/acpi/codec.asl @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +Device (ECOD) +{ + Name (_HID, "GOOG0013") + Name (_UID, 1) + Name (_DDN, "CROS EC CODEC") +} |