50 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/asahi-kasei,ak4104.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: AK4104 S/PDIF transmitter8 9allOf:10 - $ref: dai-common.yaml#11 12maintainers:13 - Daniel Mack <github@zonque.org>14 - Xiaxi Shen <shenxiaxi26@gmail.com>15 16properties:17 compatible:18 const: asahi-kasei,ak410419 20 reg:21 description: Chip select number on the SPI bus 22 maxItems: 123 24 vdd-supply:25 description: A regulator node providing between 2.7V and 3.6V.26 27 reset-gpios:28 maxItems: 129 description: Optional GPIO spec for the reset pin, deasserted 30 before communication starts.31 32required:33 - compatible34 - reg35 - vdd-supply36 37unevaluatedProperties: false38 39examples:40 - |41 i2c {42 #address-cells = <1>;43 #size-cells = <0>;44 codec@0 {45 compatible = "asahi-kasei,ak4104";46 reg = <0>;47 vdd-supply = <&vdd_3v3_reg>;48 };49 };50