diff options
author | Jerome Brunet <jbrunet@baylibre.com> | 2018-07-17 18:42:57 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-07-20 19:38:19 +0300 |
commit | 9e960c0298b5811e5a2c1ebceea6aa3b7bbc61c6 (patch) | |
tree | 41f6c8e2c7a041d3f31633fec3ba00fa7e45d7c2 /Documentation/devicetree/bindings/sound/amlogic,axg-tdm-iface.txt | |
parent | 2ec42486358f63c4a426514c395d13f4b9de5da8 (diff) | |
download | linux-9e960c0298b5811e5a2c1ebceea6aa3b7bbc61c6.tar.xz |
ASoC: meson: add axg tdm interface DT bindings documentation
Add the DT bindings documentation for axg's TDM interfaces
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/sound/amlogic,axg-tdm-iface.txt')
-rw-r--r-- | Documentation/devicetree/bindings/sound/amlogic,axg-tdm-iface.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/amlogic,axg-tdm-iface.txt b/Documentation/devicetree/bindings/sound/amlogic,axg-tdm-iface.txt new file mode 100644 index 000000000000..cabfb26a5f22 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/amlogic,axg-tdm-iface.txt @@ -0,0 +1,22 @@ +* Amlogic Audio TDM Interfaces + +Required properties: +- compatible: 'amlogic,axg-tdm-iface' +- clocks: list of clock phandle, one for each entry clock-names. +- clock-names: should contain the following: + * "sclk" : bit clock. + * "lrclk": sample clock + * "mclk" : master clock + -> optional if the interface is in clock slave mode. +- #sound-dai-cells: must be 0. + +Example of TDM_A on the A113 SoC: + +tdmif_a: audio-controller@0 { + compatible = "amlogic,axg-tdm-iface"; + #sound-dai-cells = <0>; + clocks = <&clkc_audio AUD_CLKID_MST_A_MCLK>, + <&clkc_audio AUD_CLKID_MST_A_SCLK>, + <&clkc_audio AUD_CLKID_MST_A_LRCLK>; + clock-names = "mclk", "sclk", "lrclk"; +}; |