diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2015-12-16 21:59:31 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-12-18 07:10:56 -0500 |
commit | 44bf5361e21d507e23f8cf8d696c0600f3795e54 (patch) | |
tree | 8508536fcd8ae3d6bab615eb64e6cf9d1f097339 | |
parent | f3f17d32fe0f3be9b1514c7e6245edee3673dccc (diff) |
ASoC: rsnd: add missing DT example for Simple Card with TDM
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/sound/renesas,rsnd.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt index bb9f33405d29..162e94c8305c 100644 --- a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt +++ b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt | |||
@@ -289,3 +289,22 @@ Example: simple sound card | |||
289 | &ssi1 { | 289 | &ssi1 { |
290 | shared-pin; | 290 | shared-pin; |
291 | }; | 291 | }; |
292 | |||
293 | Example: simple sound card for TDM | ||
294 | |||
295 | rsnd_tdm: sound { | ||
296 | compatible = "simple-audio-card"; | ||
297 | |||
298 | simple-audio-card,format = "left_j"; | ||
299 | simple-audio-card,bitclock-master = <&sndcodec>; | ||
300 | simple-audio-card,frame-master = <&sndcodec>; | ||
301 | |||
302 | sndcpu: simple-audio-card,cpu { | ||
303 | sound-dai = <&rcar_sound>; | ||
304 | dai-tdm-slot-num = <6>; | ||
305 | }; | ||
306 | |||
307 | sndcodec: simple-audio-card,codec { | ||
308 | sound-dai = <&xxx>; | ||
309 | }; | ||
310 | }; | ||