mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
Move several embedded controller bindings (like ChromeOS EC, Gateworks System Controller and Kontron sl28cpld Board Management) to new subdirectory "embedded-controller" matching their purpose. An embedded controller (EC) is a discrete component that contains a microcontroller (i.e. a small CPU running a small firmware without operating system) mounted into a larger computer system running a fully fledged operating system that needs to utilize the embedded controller as part of its operation. So far the EC bindings were split between "mfd" and "platform" directory. MFD name comes from Linux, not hardware, and "platform" is a bit too generic. Rename Gateworks GSC and Huawei Gaokun filenames to match compatible, as preferred for bindings. Acked-by: Michael Walle <mwalle@kernel.org> # for sl28cpld Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Mark Brown <broonie@kernel.org> Reviewed-by: "Rob Herring (Arm)" <robh@kernel.org> Link: https://lore.kernel.org/r/20250825081201.9775-2-krzysztof.kozlowski@linaro.org Signed-off-by: Lee Jones <lee@kernel.org>
79 lines
2.1 KiB
YAML
79 lines
2.1 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/sound/google,cros-ec-codec.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Audio codec controlled by ChromeOS EC
|
|
|
|
maintainers:
|
|
- Cheng-Yi Chiang <cychiang@chromium.org>
|
|
- Tzung-Bi Shih <tzungbi@kernel.org>
|
|
|
|
description: |
|
|
Google's ChromeOS EC codec is a digital mic codec provided by the
|
|
Embedded Controller (EC) and is controlled via a host-command
|
|
interface. An EC codec node should only be found inside the "codecs"
|
|
subnode of a cros-ec node.
|
|
(see Documentation/devicetree/bindings/embedded-controller/google,cros-ec.yaml).
|
|
|
|
allOf:
|
|
- $ref: dai-common.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
const: google,cros-ec-codec
|
|
|
|
"#sound-dai-cells":
|
|
const: 1
|
|
|
|
reg:
|
|
items:
|
|
- description: |
|
|
Physical base address and length of shared memory region from EC.
|
|
It contains 3 unsigned 32-bit integer. The first 2 integers
|
|
combine to become an unsigned 64-bit physical address.
|
|
The last one integer is the length of the shared memory.
|
|
|
|
memory-region:
|
|
maxItems: 1
|
|
description: |
|
|
Shared memory region to EC. A "shared-dma-pool".
|
|
See ../reserved-memory/reserved-memory.txt for details.
|
|
|
|
required:
|
|
- compatible
|
|
- '#sound-dai-cells'
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
reserved_mem: reserved-mem@52800000 {
|
|
compatible = "shared-dma-pool";
|
|
reg = <0x52800000 0x100000>;
|
|
no-map;
|
|
};
|
|
spi {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
cros-ec@0 {
|
|
compatible = "google,cros-ec-spi";
|
|
reg = <0>;
|
|
interrupts = <93 0>;
|
|
|
|
codecs {
|
|
#address-cells = <2>;
|
|
#size-cells = <1>;
|
|
|
|
cros_ec_codec: ec-codec@10500000 {
|
|
compatible = "google,cros-ec-codec";
|
|
#sound-dai-cells = <1>;
|
|
reg = <0x0 0x10500000 0x80000>;
|
|
memory-region = <&reserved_mem>;
|
|
};
|
|
|
|
};
|
|
};
|
|
};
|