* [PATCH v2] ASoC: qcom: SC7280: Add support for external DMIC bias supply @ 2022-07-28 13:59 Srinivasa Rao Mandadapu 2022-07-28 14:22 ` Mark Brown 0 siblings, 1 reply; 5+ messages in thread From: Srinivasa Rao Mandadapu @ 2022-07-28 13:59 UTC (permalink / raw) To: agross, bjorn.andersson, lgirdwood, broonie, robh+dt, quic_plai, bgoswami, perex, tiwai, srinivas.kandagatla, quic_rohkumar, linux-arm-msm, alsa-devel, linux-kernel, swboyd, judyhsiao, devicetree Cc: Srinivasa Rao Mandadapu Update SC7280 machine driver for enabling external dmic bias supply, which is required for villager evt boards. Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com> --- Changes since v1: -- Replace dapm widget SND_SOC_DAPM_MIC with SND_SOC_DAPM_REGULATOR_SUPPLY. sound/soc/qcom/sc7280.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/qcom/sc7280.c b/sound/soc/qcom/sc7280.c index da7469a..4a60f34 100644 --- a/sound/soc/qcom/sc7280.c +++ b/sound/soc/qcom/sc7280.c @@ -356,6 +356,7 @@ static const struct snd_soc_ops sc7280_ops = { static const struct snd_soc_dapm_widget sc7280_snd_widgets[] = { SND_SOC_DAPM_HP("Headphone Jack", NULL), SND_SOC_DAPM_MIC("Headset Mic", NULL), + SND_SOC_DAPM_REGULATOR_SUPPLY("DMICVDD", 0, 0), }; static int sc7280_snd_platform_probe(struct platform_device *pdev) -- 2.7.4 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] ASoC: qcom: SC7280: Add support for external DMIC bias supply 2022-07-28 13:59 [PATCH v2] ASoC: qcom: SC7280: Add support for external DMIC bias supply Srinivasa Rao Mandadapu @ 2022-07-28 14:22 ` Mark Brown 2022-07-28 16:09 ` Srinivasa Rao Mandadapu 0 siblings, 1 reply; 5+ messages in thread From: Mark Brown @ 2022-07-28 14:22 UTC (permalink / raw) To: Srinivasa Rao Mandadapu Cc: agross, bjorn.andersson, lgirdwood, robh+dt, quic_plai, bgoswami, perex, tiwai, srinivas.kandagatla, quic_rohkumar, linux-arm-msm, alsa-devel, linux-kernel, swboyd, judyhsiao, devicetree [-- Attachment #1: Type: text/plain, Size: 777 bytes --] On Thu, Jul 28, 2022 at 07:29:49PM +0530, Srinivasa Rao Mandadapu wrote: > Update SC7280 machine driver for enabling external dmic bias supply, > which is required for villager evt boards. > +++ b/sound/soc/qcom/sc7280.c > @@ -356,6 +356,7 @@ static const struct snd_soc_ops sc7280_ops = { > static const struct snd_soc_dapm_widget sc7280_snd_widgets[] = { > SND_SOC_DAPM_HP("Headphone Jack", NULL), > SND_SOC_DAPM_MIC("Headset Mic", NULL), > + SND_SOC_DAPM_REGULATOR_SUPPLY("DMICVDD", 0, 0), > }; > > static int sc7280_snd_platform_probe(struct platform_device *pdev) Don't you want to connect this to something? This won't do anything as-is. I can't see any references to DMICVDD which might be failing to resolve in the current sound/soc/qcom. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] ASoC: qcom: SC7280: Add support for external DMIC bias supply 2022-07-28 14:22 ` Mark Brown @ 2022-07-28 16:09 ` Srinivasa Rao Mandadapu 2022-07-29 8:39 ` Srinivas Kandagatla 0 siblings, 1 reply; 5+ messages in thread From: Srinivasa Rao Mandadapu @ 2022-07-28 16:09 UTC (permalink / raw) To: Mark Brown Cc: agross, bjorn.andersson, lgirdwood, robh+dt, quic_plai, bgoswami, perex, tiwai, srinivas.kandagatla, quic_rohkumar, linux-arm-msm, alsa-devel, linux-kernel, swboyd, judyhsiao, devicetree On 7/28/2022 7:52 PM, Mark Brown wrote: Thanks for your time Mark!!! > On Thu, Jul 28, 2022 at 07:29:49PM +0530, Srinivasa Rao Mandadapu wrote: >> Update SC7280 machine driver for enabling external dmic bias supply, >> which is required for villager evt boards. >> +++ b/sound/soc/qcom/sc7280.c >> @@ -356,6 +356,7 @@ static const struct snd_soc_ops sc7280_ops = { >> static const struct snd_soc_dapm_widget sc7280_snd_widgets[] = { >> SND_SOC_DAPM_HP("Headphone Jack", NULL), >> SND_SOC_DAPM_MIC("Headset Mic", NULL), >> + SND_SOC_DAPM_REGULATOR_SUPPLY("DMICVDD", 0, 0), >> }; >> >> static int sc7280_snd_platform_probe(struct platform_device *pdev) > Don't you want to connect this to something? This won't do anything > as-is. I can't see any references to DMICVDD which might be failing to > resolve in the current sound/soc/qcom. The connection is being done to "VA DMIC"through audio routing in board specific dts file. Will post the changes once the main dts patches are landed. Ex:- &sound { DMICVDD-supply = <&pp1800_l2c>; audio-routing = "IN1_HPHL", "HPHL_OUT", "IN2_HPHR", "HPHR_OUT", "AMIC1", "MIC BIAS1", "AMIC2", "MIC BIAS2", "VA DMIC0", "DMICVDD", "VA DMIC1", "DMICVDD", "VA DMIC2", "DMICVDD", "VA DMIC3", "DMICVDD", ..... ..... }; ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] ASoC: qcom: SC7280: Add support for external DMIC bias supply 2022-07-28 16:09 ` Srinivasa Rao Mandadapu @ 2022-07-29 8:39 ` Srinivas Kandagatla 2022-07-29 12:03 ` Srinivasa Rao Mandadapu 0 siblings, 1 reply; 5+ messages in thread From: Srinivas Kandagatla @ 2022-07-29 8:39 UTC (permalink / raw) To: Srinivasa Rao Mandadapu, Mark Brown Cc: agross, bjorn.andersson, lgirdwood, robh+dt, quic_plai, bgoswami, perex, tiwai, quic_rohkumar, linux-arm-msm, alsa-devel, linux-kernel, swboyd, judyhsiao, devicetree On 28/07/2022 17:09, Srinivasa Rao Mandadapu wrote: > > On 7/28/2022 7:52 PM, Mark Brown wrote: > Thanks for your time Mark!!! >> On Thu, Jul 28, 2022 at 07:29:49PM +0530, Srinivasa Rao Mandadapu wrote: >>> Update SC7280 machine driver for enabling external dmic bias supply, >>> which is required for villager evt boards. >>> +++ b/sound/soc/qcom/sc7280.c >>> @@ -356,6 +356,7 @@ static const struct snd_soc_ops sc7280_ops = { >>> static const struct snd_soc_dapm_widget sc7280_snd_widgets[] = { >>> SND_SOC_DAPM_HP("Headphone Jack", NULL), >>> SND_SOC_DAPM_MIC("Headset Mic", NULL), >>> + SND_SOC_DAPM_REGULATOR_SUPPLY("DMICVDD", 0, 0), >>> }; >>> static int sc7280_snd_platform_probe(struct platform_device *pdev) >> Don't you want to connect this to something? This won't do anything >> as-is. I can't see any references to DMICVDD which might be failing to >> resolve in the current sound/soc/qcom. > > The connection is being done to "VA DMIC"through audio routing in board > specific dts file. > > Will post the changes once the main dts patches are landed. > > Ex:- > > &sound { > DMICVDD-supply = <&pp1800_l2c>; > > audio-routing = > "IN1_HPHL", "HPHL_OUT", > "IN2_HPHR", "HPHR_OUT", > "AMIC1", "MIC BIAS1", > "AMIC2", "MIC BIAS2", > "VA DMIC0", "DMICVDD", > "VA DMIC1", "DMICVDD", > "VA DMIC2", "DMICVDD", > "VA DMIC3", "DMICVDD", You should just use "vdd-micb" instead of DMICVDD. There is already a SUPPLY DAPM in lpass-va-macro codec. --srini > ..... > > ..... > > }; > > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] ASoC: qcom: SC7280: Add support for external DMIC bias supply 2022-07-29 8:39 ` Srinivas Kandagatla @ 2022-07-29 12:03 ` Srinivasa Rao Mandadapu 0 siblings, 0 replies; 5+ messages in thread From: Srinivasa Rao Mandadapu @ 2022-07-29 12:03 UTC (permalink / raw) To: Srinivas Kandagatla, Mark Brown Cc: agross, bjorn.andersson, lgirdwood, robh+dt, quic_plai, bgoswami, perex, tiwai, quic_rohkumar, linux-arm-msm, alsa-devel, linux-kernel, swboyd, judyhsiao, devicetree On 7/29/2022 2:09 PM, Srinivas Kandagatla wrote: > Thanks for your time and valuable input Srini!!! > > On 28/07/2022 17:09, Srinivasa Rao Mandadapu wrote: >> >> On 7/28/2022 7:52 PM, Mark Brown wrote: >> Thanks for your time Mark!!! >>> On Thu, Jul 28, 2022 at 07:29:49PM +0530, Srinivasa Rao Mandadapu >>> wrote: >>>> Update SC7280 machine driver for enabling external dmic bias supply, >>>> which is required for villager evt boards. >>>> +++ b/sound/soc/qcom/sc7280.c >>>> @@ -356,6 +356,7 @@ static const struct snd_soc_ops sc7280_ops = { >>>> static const struct snd_soc_dapm_widget sc7280_snd_widgets[] = { >>>> SND_SOC_DAPM_HP("Headphone Jack", NULL), >>>> SND_SOC_DAPM_MIC("Headset Mic", NULL), >>>> + SND_SOC_DAPM_REGULATOR_SUPPLY("DMICVDD", 0, 0), >>>> }; >>>> static int sc7280_snd_platform_probe(struct platform_device *pdev) >>> Don't you want to connect this to something? This won't do anything >>> as-is. I can't see any references to DMICVDD which might be failing to >>> resolve in the current sound/soc/qcom. >> >> The connection is being done to "VA DMIC"through audio routing in >> board specific dts file. >> >> Will post the changes once the main dts patches are landed. >> >> Ex:- >> >> &sound { >> DMICVDD-supply = <&pp1800_l2c>; >> >> audio-routing = >> "IN1_HPHL", "HPHL_OUT", >> "IN2_HPHR", "HPHR_OUT", >> "AMIC1", "MIC BIAS1", >> "AMIC2", "MIC BIAS2", >> "VA DMIC0", "DMICVDD", >> "VA DMIC1", "DMICVDD", >> "VA DMIC2", "DMICVDD", >> "VA DMIC3", "DMICVDD", > > You should just use "vdd-micb" instead of DMICVDD. > There is already a SUPPLY DAPM in lpass-va-macro codec. > > --srini Yes it's available in va macro. Will test with vdd-micb DAPM. if that works, I think we can drop this patch. >> ..... >> >> ..... >> >> }; >> >> ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-07-29 12:03 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2022-07-28 13:59 [PATCH v2] ASoC: qcom: SC7280: Add support for external DMIC bias supply Srinivasa Rao Mandadapu 2022-07-28 14:22 ` Mark Brown 2022-07-28 16:09 ` Srinivasa Rao Mandadapu 2022-07-29 8:39 ` Srinivas Kandagatla 2022-07-29 12:03 ` Srinivasa Rao Mandadapu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®