All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv1 0/5] ASoC: da7213: support for usage with simple-card
@ 2019-11-08 17:48 ` Sebastian Reichel
  0 siblings, 0 replies; 26+ messages in thread
From: Sebastian Reichel @ 2019-11-08 17:48 UTC (permalink / raw)
  To: Support Opensource, Liam Girdwood, Mark Brown
  Cc: Jaroslav Kysela, Takashi Iwai, alsa-devel, linux-kernel, kernel,
	Sebastian Reichel

Hi,

This extends the da7213 driver to be used with simple-audio-card in
combination with a fixed clock. Here is a snippet of the downstream
board's DT, that is supposed to be supported by this patchset.

---------------------------------------------------------------------
/ {
        sound {
                compatible = "simple-audio-card";
                simple-audio-card,name = "audio-card";
                simple-audio-card,format = "i2s";
                simple-audio-card,bitclock-master = <&dailink_master>;
                simple-audio-card,frame-master = <&dailink_master>;
                
                simple-audio-card,widgets = "Speaker", "Ext Spk";   
                simple-audio-card,audio-routing = "Ext Spk", "LINE";
                
                simple-audio-card,cpu {
                        sound-dai = <&ssi1>;
                };

                dailink_master: simple-audio-card,codec {
                        sound-dai = <&codec>;
                };
        };

        clk_ext_audio_codec: clock-codec {
                compatible = "fixed-clock";
                #clock-cells = <0>;
                clock-frequency = <12288000>;
        };
};

&i2c1 {
        codec: audio-codec@1a {
                compatible = "dlg,da7212";
                reg = <0x1a>;
                #sound-dai-cells = <0>;
                VDDA-supply = <&reg_2v5_audio>;
                VDDSP-supply = <&reg_5v0_audio>;
                VDDMIC-supply = <&reg_3v3_audio>;
                VDDIO-supply = <&reg_3v3_audio>;
                clocks = <&clk_ext_audio_codec>;
                clock-names = "mclk";
        };
};
---------------------------------------------------------------------

-- Sebastian

Sebastian Reichel (5):
  ASoC: da7213: Add regulator support
  ASoC: Add DA7213 audio codec as selectable option
  ASoC: da7213: move set_sysclk to codec level
  ASoC: da7213: move set_pll to codec level
  ASoC: da7213: add default clock handling

 .../devicetree/bindings/sound/da7213.txt      |   4 +
 sound/soc/codecs/Kconfig                      |   3 +-
 sound/soc/codecs/da7213.c                     | 128 ++++++++++++++++--
 sound/soc/codecs/da7213.h                     |   3 +
 4 files changed, 125 insertions(+), 13 deletions(-)

-- 
2.24.0.rc1


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2019-11-13 11:26 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-08 17:48 [PATCHv1 0/5] ASoC: da7213: support for usage with simple-card Sebastian Reichel
2019-11-08 17:48 ` [alsa-devel] " Sebastian Reichel
2019-11-08 17:48 ` [PATCHv1 1/5] ASoC: da7213: Add regulator support Sebastian Reichel
2019-11-08 17:48   ` [alsa-devel] " Sebastian Reichel
2019-11-11 14:07   ` Adam Thomson
2019-11-11 14:07     ` [alsa-devel] " Adam Thomson
2019-11-12 15:24     ` Sebastian Reichel
2019-11-12 15:24       ` [alsa-devel] " Sebastian Reichel
2019-11-12 16:58       ` Mark Brown
2019-11-12 16:58         ` [alsa-devel] " Mark Brown
2019-11-13 10:51       ` Adam Thomson
2019-11-13 10:51         ` [alsa-devel] " Adam Thomson
2019-11-08 17:48 ` [PATCHv1 2/5] ASoC: Add DA7213 audio codec as selectable option Sebastian Reichel
2019-11-08 17:48   ` [alsa-devel] " Sebastian Reichel
2019-11-08 17:48 ` [PATCHv1 3/5] ASoC: da7213: move set_sysclk to codec level Sebastian Reichel
2019-11-08 17:48   ` [alsa-devel] " Sebastian Reichel
2019-11-08 17:48 ` [PATCHv1 4/5] ASoC: da7213: move set_pll " Sebastian Reichel
2019-11-08 17:48   ` [alsa-devel] " Sebastian Reichel
2019-11-08 17:48 ` [PATCHv1 5/5] ASoC: da7213: add default clock handling Sebastian Reichel
2019-11-08 17:48   ` [alsa-devel] " Sebastian Reichel
2019-11-11 14:20   ` Adam Thomson
2019-11-11 14:20     ` [alsa-devel] " Adam Thomson
2019-11-12 16:29     ` Sebastian Reichel
2019-11-12 16:29       ` [alsa-devel] " Sebastian Reichel
2019-11-13 11:25       ` Adam Thomson
2019-11-13 11:25         ` [alsa-devel] " Adam Thomson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.