summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/sound/cirrus,cs4271.yaml
blob: 68fbf5cc208f5b5033e89c786ed2d93bae5ccca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/sound/cirrus,cs4271.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Cirrus Logic CS4271 audio CODEC

maintainers:
  - Alexander Sverdlin <alexander.sverdlin@gmail.com>
  - Nikita Shubin <nikita.shubin@maquefel.me>

description:
  The CS4271 is a stereo audio codec. This device supports both the I2C
  and the SPI bus.

allOf:
  - $ref: dai-common.yaml#
  - $ref: /schemas/spi/spi-peripheral-props.yaml#

properties:
  compatible:
    const: cirrus,cs4271

  reg:
    maxItems: 1

  spi-cpha: true

  spi-cpol: true

  '#sound-dai-cells':
    const: 0

  reset-gpios:
    description:
      This pin will be deasserted before communication to the codec starts.
    maxItems: 1

  va-supply:
    description: Analog power supply.

  vd-supply:
    description: Digital power supply.

  vl-supply:
    description: Serial Control Port power supply.

  port:
    $ref: audio-graph-port.yaml#
    unevaluatedProperties: false

  cirrus,amuteb-eq-bmutec:
    description:
      When given, the Codec's AMUTEB=BMUTEC flag is enabled.
    type: boolean

  cirrus,enable-soft-reset:
    description: |
      The CS4271 requires its LRCLK and MCLK to be stable before its RESET
      line is de-asserted. That also means that clocks cannot be changed
      without putting the chip back into hardware reset, which also requires
      a complete re-initialization of all registers.

      One (undocumented) workaround is to assert and de-assert the PDN bit
      in the MODE2 register. This workaround can be enabled with this DT
      property.

      Note that this is not needed in case the clocks are stable
      throughout the entire runtime of the codec.
    type: boolean

required:
  - compatible
  - reg

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
    spi {
        #address-cells = <1>;
        #size-cells = <0>;
        codec@0 {
            compatible = "cirrus,cs4271";
            reg = <0>;
            #sound-dai-cells = <0>;
            spi-max-frequency = <6000000>;
            spi-cpol;
            spi-cpha;
            reset-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
            port {
                endpoint {
                    remote-endpoint = <&i2s_ep>;
                };
            };
        };
    };

...