xref: /freebsd/sys/contrib/device-tree/Bindings/sound/cirrus,cs42xx8.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*0e8011faSEmmanuel Vadot%YAML 1.2
3*0e8011faSEmmanuel Vadot---
4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/cirrus,cs42xx8.yaml#
5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*0e8011faSEmmanuel Vadot
7*0e8011faSEmmanuel Vadottitle: Cirrus Logic CS42448/CS42888 audio CODEC
8*0e8011faSEmmanuel Vadot
9*0e8011faSEmmanuel Vadotmaintainers:
10*0e8011faSEmmanuel Vadot  - patches@opensource.cirrus.com
11*0e8011faSEmmanuel Vadot
12*0e8011faSEmmanuel Vadotproperties:
13*0e8011faSEmmanuel Vadot  compatible:
14*0e8011faSEmmanuel Vadot    enum:
15*0e8011faSEmmanuel Vadot      - cirrus,cs42448
16*0e8011faSEmmanuel Vadot      - cirrus,cs42888
17*0e8011faSEmmanuel Vadot
18*0e8011faSEmmanuel Vadot  reg:
19*0e8011faSEmmanuel Vadot    maxItems: 1
20*0e8011faSEmmanuel Vadot
21*0e8011faSEmmanuel Vadot  clocks:
22*0e8011faSEmmanuel Vadot    minItems: 1
23*0e8011faSEmmanuel Vadot    maxItems: 2
24*0e8011faSEmmanuel Vadot
25*0e8011faSEmmanuel Vadot  clock-names:
26*0e8011faSEmmanuel Vadot    const: mclk
27*0e8011faSEmmanuel Vadot
28*0e8011faSEmmanuel Vadot  VA-supply:
29*0e8011faSEmmanuel Vadot    description: Analog power supply.
30*0e8011faSEmmanuel Vadot
31*0e8011faSEmmanuel Vadot  VD-supply:
32*0e8011faSEmmanuel Vadot    description: Digital power supply.
33*0e8011faSEmmanuel Vadot
34*0e8011faSEmmanuel Vadot  VLC-supply:
35*0e8011faSEmmanuel Vadot    description: Control port power supply
36*0e8011faSEmmanuel Vadot
37*0e8011faSEmmanuel Vadot  VLS-supply:
38*0e8011faSEmmanuel Vadot    description: Serial port interface power supply.
39*0e8011faSEmmanuel Vadot
40*0e8011faSEmmanuel Vadot  reset-gpios:
41*0e8011faSEmmanuel Vadot    description: This pin is connected to the chip's RESET pin.
42*0e8011faSEmmanuel Vadot    maxItems: 1
43*0e8011faSEmmanuel Vadot
44*0e8011faSEmmanuel Vadotrequired:
45*0e8011faSEmmanuel Vadot  - compatible
46*0e8011faSEmmanuel Vadot  - reg
47*0e8011faSEmmanuel Vadot  - clocks
48*0e8011faSEmmanuel Vadot  - clock-names
49*0e8011faSEmmanuel Vadot
50*0e8011faSEmmanuel Vadotif:
51*0e8011faSEmmanuel Vadot  properties:
52*0e8011faSEmmanuel Vadot    compatible:
53*0e8011faSEmmanuel Vadot      contains:
54*0e8011faSEmmanuel Vadot        const: cirrus,cs42888
55*0e8011faSEmmanuel Vadotthen:
56*0e8011faSEmmanuel Vadot  required:
57*0e8011faSEmmanuel Vadot    - VA-supply
58*0e8011faSEmmanuel Vadot    - VD-supply
59*0e8011faSEmmanuel Vadot    - VLC-supply
60*0e8011faSEmmanuel Vadot    - VLS-supply
61*0e8011faSEmmanuel Vadot
62*0e8011faSEmmanuel VadotadditionalProperties: false
63*0e8011faSEmmanuel Vadot
64*0e8011faSEmmanuel Vadotexamples:
65*0e8011faSEmmanuel Vadot  - |
66*0e8011faSEmmanuel Vadot    i2c {
67*0e8011faSEmmanuel Vadot      #address-cells = <1>;
68*0e8011faSEmmanuel Vadot      #size-cells = <0>;
69*0e8011faSEmmanuel Vadot
70*0e8011faSEmmanuel Vadot      codec@48 {
71*0e8011faSEmmanuel Vadot          compatible = "cirrus,cs42888";
72*0e8011faSEmmanuel Vadot          reg = <0x48>;
73*0e8011faSEmmanuel Vadot          clocks = <&codec_mclk 0>;
74*0e8011faSEmmanuel Vadot          clock-names = "mclk";
75*0e8011faSEmmanuel Vadot          VA-supply = <&reg_audio>;
76*0e8011faSEmmanuel Vadot          VD-supply = <&reg_audio>;
77*0e8011faSEmmanuel Vadot          VLS-supply = <&reg_audio>;
78*0e8011faSEmmanuel Vadot          VLC-supply = <&reg_audio>;
79*0e8011faSEmmanuel Vadot          reset-gpios = <&gpio 1>;
80*0e8011faSEmmanuel Vadot      };
81*0e8011faSEmmanuel Vadot    };
82