linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv3 0/5] ASoC: da7213: support for usage with simple-card
@ 2020-05-11 13:25 Sebastian Reichel
  2020-05-11 13:25 ` [PATCHv3 1/5] ASoC: da7213: Add da7212 DT compatible Sebastian Reichel
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Sebastian Reichel @ 2020-05-11 13:25 UTC (permalink / raw)
  To: Support Opensource, Liam Girdwood, Mark Brown
  Cc: Adam Thomson, 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";
	};
};
---------------------------------------------------------------------

This is mostly a resend of PATCHv2. There was quite a bit of discussion
for the last patch. As far as I can see no better solution was found and
the patch is fine as is. Sorry for the delay in sending another revision.

Changes since PATCHv2:
 * https://lore.kernel.org/alsa-devel/20191120152406.2744-1-sebastian.reichel@collabora.com/
 * dropped patch converting DA7213 into selectable Kconfig option (merged)
 * fix compatible string in patch 1 (DT binding) as pointed out by Adam Thomson
 * collected Reviewed-by from Adam Thomson for patch 2-4

Changes since PATCHv1:
 * https://lore.kernel.org/alsa-devel/20191108174843.11227-1-sebastian.reichel@collabora.com/
 * add patch adding da7212 compatible to DT bindings
 * update regulator patch, so that VDDA is enabled together with VDDIO
   while the device is enabled to avoid device reset
 * update clock patch, so that automatic PLL handling is not enabled
   when PLL is configured manually
 * update clock patch, so that automatic PLL is disabled when the device
   is suspended
 * update clock patch, so that automatic PLL is configured into bypass
   mode when possible

-- Sebastian

Sebastian Reichel (5):
  ASoC: da7213: Add da7212 DT compatible
  ASoC: da7213: Add regulator support
  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      |   8 +-
 sound/soc/codecs/da7213.c                     | 172 ++++++++++++++++--
 sound/soc/codecs/da7213.h                     |  11 ++
 3 files changed, 175 insertions(+), 16 deletions(-)

-- 
2.26.2


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

end of thread, other threads:[~2020-07-07 14:17 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11 13:25 [PATCHv3 0/5] ASoC: da7213: support for usage with simple-card Sebastian Reichel
2020-05-11 13:25 ` [PATCHv3 1/5] ASoC: da7213: Add da7212 DT compatible Sebastian Reichel
2020-05-11 13:25 ` [PATCHv3 2/5] ASoC: da7213: Add regulator support Sebastian Reichel
2020-05-11 13:25 ` [PATCHv3 3/5] ASoC: da7213: move set_sysclk to codec level Sebastian Reichel
2020-05-11 13:25 ` [PATCHv3 4/5] ASoC: da7213: move set_pll " Sebastian Reichel
2020-05-11 13:25 ` [PATCHv3 5/5] ASoC: da7213: add default clock handling Sebastian Reichel
2020-05-18 11:20   ` Adam Thomson
2020-06-26 16:46     ` [PATCHv4] " Sebastian Reichel
2020-07-03  9:44       ` Adam Thomson
2020-07-07 14:17       ` Mark Brown
2020-05-18 16:41 ` [PATCHv3 0/5] ASoC: da7213: support for usage with simple-card Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).