diff options
author | Olivier Moysan <olivier.moysan@st.com> | 2018-10-15 16:03:34 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-10-19 14:11:58 +0200 |
commit | 1c5083b37deaa99e07cc3082e190a509efd2a225 (patch) | |
tree | 9e049ce35b504ead0e156fc8594e0e0bc7678613 /Documentation/devicetree/bindings/sound/cs42l51.txt | |
parent | ASoC: dt-bindings: add mclk provider support to stm32 sai (diff) | |
download | linux-1c5083b37deaa99e07cc3082e190a509efd2a225.tar.xz linux-1c5083b37deaa99e07cc3082e190a509efd2a225.zip |
ASoC: dt-bindings: add mclk support to cs42l51
Add clocks properties to cs42l51 Cirrus codec,
to support master clock provider.
Signed-off-by: Olivier Moysan <olivier.moysan@st.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/sound/cs42l51.txt')
-rw-r--r-- | Documentation/devicetree/bindings/sound/cs42l51.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/cs42l51.txt b/Documentation/devicetree/bindings/sound/cs42l51.txt new file mode 100644 index 000000000000..4b5de33ce377 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/cs42l51.txt @@ -0,0 +1,17 @@ +CS42L51 audio CODEC + +Optional properties: + + - clocks : a list of phandles + clock-specifiers, one for each entry in + clock-names + + - clock-names : must contain "MCLK" + +Example: + +cs42l51: cs42l51@4a { + compatible = "cirrus,cs42l51"; + reg = <0x4a>; + clocks = <&mclk_prov>; + clock-names = "MCLK"; +}; |