dt-bindings: es8328: convert to DT schema format

Convert the binding to DT schema format. Note, that "IPVDD-supply"
got fixed to be "HPVDD-supply" during the conversion. This was
obviously a typo in the old binding. The old binding example, DT
files, chip datasheet and Linux driver use HPVDD.

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20231109184453.108676-1-sebastian.reichel@collabora.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Sebastian Reichel 2023-11-09 19:44:43 +01:00 committed by Mark Brown
parent fc213b8d44
commit c479f49894
No known key found for this signature in database
GPG key ID: 24D68B725D5487D0
2 changed files with 77 additions and 38 deletions

View file

@ -1,38 +0,0 @@
Everest ES8328 audio CODEC
This device supports both I2C and SPI.
Required properties:
- compatible : Should be "everest,es8328" or "everest,es8388"
- DVDD-supply : Regulator providing digital core supply voltage 1.8 - 3.6V
- AVDD-supply : Regulator providing analog supply voltage 3.3V
- PVDD-supply : Regulator providing digital IO supply voltage 1.8 - 3.6V
- IPVDD-supply : Regulator providing analog output voltage 3.3V
- clocks : A 22.5792 or 11.2896 MHz clock
- reg : the I2C address of the device for I2C, the chip select number for SPI
Pins on the device (for linking into audio routes):
* LOUT1
* LOUT2
* ROUT1
* ROUT2
* LINPUT1
* RINPUT1
* LINPUT2
* RINPUT2
* Mic Bias
Example:
codec: es8328@11 {
compatible = "everest,es8328";
DVDD-supply = <&reg_3p3v>;
AVDD-supply = <&reg_3p3v>;
PVDD-supply = <&reg_3p3v>;
HPVDD-supply = <&reg_3p3v>;
clocks = <&clks 169>;
reg = <0x11>;
};

View file

@ -0,0 +1,77 @@
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/sound/everest,es8328.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Everest ES8328 audio CODEC
description:
Everest Audio Codec, which can be connected via I2C or SPI.
Pins on the device (for linking into audio routes) are
* LOUT1
* LOUT2
* ROUT1
* ROUT2
* LINPUT1
* RINPUT1
* LINPUT2
* RINPUT2
* Mic Bias
maintainers:
- David Yang <yangxiaohua@everest-semi.com>
properties:
compatible:
enum:
- everest,es8328
- everest,es8388
reg:
maxItems: 1
"#sound-dai-cells":
const: 0
clocks:
items:
- description: A 22.5792 or 11.2896 MHz clock
DVDD-supply:
description: Regulator providing digital core supply voltage 1.8 - 3.6V
AVDD-supply:
description: Regulator providing analog supply voltage 3.3V
PVDD-supply:
description: Regulator providing digital IO supply voltage 1.8 - 3.6V
HPVDD-supply:
description: Regulator providing analog output voltage 3.3V
required:
- compatible
- clocks
- DVDD-supply
- AVDD-supply
- PVDD-supply
- HPVDD-supply
additionalProperties: false
examples:
- |
i2c {
#address-cells = <1>;
#size-cells = <0>;
es8328: codec@11 {
compatible = "everest,es8328";
reg = <0x11>;
AVDD-supply = <&reg_3p3v>;
DVDD-supply = <&reg_3p3v>;
HPVDD-supply = <&reg_3p3v>;
PVDD-supply = <&reg_3p3v>;
clocks = <&clks 169>;
};
};