41 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/nuvoton,nau8540.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Nuvoton Technology Corporation NAU85L40 Audio CODEC8 9maintainers:10 - John Hsu <KCHSU0@nuvoton.com>11 12allOf:13 - $ref: dai-common.yaml#14 15properties:16 compatible:17 const: nuvoton,nau854018 19 reg:20 maxItems: 121 22 "#sound-dai-cells":23 const: 024 25required:26 - compatible27 - reg28 29unevaluatedProperties: false30 31examples:32 - |33 i2c {34 #address-cells = <1>;35 #size-cells = <0>;36 codec@1c {37 compatible = "nuvoton,nau8540";38 reg = <0x1c>;39 };40 };41