From: Matthias Kaehlcke <mka@chromium.org>
To: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Cc: devicetree@vger.kernel.org, alsa-devel@alsa-project.org,
quic_rohkumar@quicinc.com, linux-arm-msm@vger.kernel.org,
broonie@kernel.org, tiwai@suse.com, lgirdwood@gmail.com,
robh+dt@kernel.org, Stephen Boyd <swboyd@chromium.org>,
vkoul@kernel.org, agross@kernel.org, bgoswami@quicinc.com,
quic_plai@quicinc.com, bjorn.andersson@linaro.org,
judyhsiao@chromium.org, linux-kernel@vger.kernel.org,
Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Subject: Re: [PATCH v2] ASoC: qcom: soundwire: Add support for controlling audio CGCR from HLOS
Date: Wed, 1 Jun 2022 09:55:09 -0700 [thread overview]
Message-ID: <YpeZ7TdHK20xiLz9@google.com> (raw)
In-Reply-To: <2a520eaf-c1de-aa91-3029-83f5469cdbb0@linaro.org>
On Wed, Jun 01, 2022 at 02:42:30PM +0100, Srinivas Kandagatla wrote:
>
>
> On 01/06/2022 14:15, Srinivasa Rao Mandadapu wrote:
> > > > > > > > + ctrl->audio_cgcr =
> > > > > > > > devm_reset_control_get_exclusive(dev,
> > > > > > > > "swr_audio_cgcr");
> > > > > > > > + if (IS_ERR(ctrl->audio_cgcr))
> > > > > > > > + dev_err(dev, "Failed to get
> > > > > > > > audio_cgcr reset required for
> > > > > > > > soundwire-v1.6.0\n");
> > > > > > > Why is there no return on error here? Is the reset optional?
> > > > > > Yes it's optional. For older platforms this is not required.
> > > > > If it's optional then either there should be no error message, or the
> > > > > error message should only be logged when the version is >= 1.6.0. There
> > > > > are few things worse than a kernel log riddled with misleading error
> > > > > messages.
> > > >
> > > > In that case, it can be done like below. Kindly let me know your
> > > > opinion on this.
> > > >
> > > > if (ctrl->version >= 0x01060000) {
> > >
> > > This is not true 1.7+ variants do not require anything as such.
> >
> > I think it applies for all upcoming versions as Qualcomm Hardware team.
> > Here is the not from HW Team.
>
> Am testing sm8450 which has 1.7.0 and it does not require/have such control.
>
> I dont understand what is the issue in adding a flag to
> struct qcom_swrm_data.
>
> This should give finer control rather than matching anything > 1.6.
I agree, a flag seems a suitable option.
WARNING: multiple messages have this Message-ID (diff)
From: Matthias Kaehlcke <mka@chromium.org>
To: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Cc: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>,
Stephen Boyd <swboyd@chromium.org>,
agross@kernel.org, alsa-devel@alsa-project.org,
bgoswami@quicinc.com, bjorn.andersson@linaro.org,
broonie@kernel.org, devicetree@vger.kernel.org,
judyhsiao@chromium.org, lgirdwood@gmail.com,
linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
perex@perex.cz, quic_plai@quicinc.com, quic_rohkumar@quicinc.com,
robh+dt@kernel.org, tiwai@suse.com, vkoul@kernel.org
Subject: Re: [PATCH v2] ASoC: qcom: soundwire: Add support for controlling audio CGCR from HLOS
Date: Wed, 1 Jun 2022 09:55:09 -0700 [thread overview]
Message-ID: <YpeZ7TdHK20xiLz9@google.com> (raw)
In-Reply-To: <2a520eaf-c1de-aa91-3029-83f5469cdbb0@linaro.org>
On Wed, Jun 01, 2022 at 02:42:30PM +0100, Srinivas Kandagatla wrote:
>
>
> On 01/06/2022 14:15, Srinivasa Rao Mandadapu wrote:
> > > > > > > > + ctrl->audio_cgcr =
> > > > > > > > devm_reset_control_get_exclusive(dev,
> > > > > > > > "swr_audio_cgcr");
> > > > > > > > + if (IS_ERR(ctrl->audio_cgcr))
> > > > > > > > + dev_err(dev, "Failed to get
> > > > > > > > audio_cgcr reset required for
> > > > > > > > soundwire-v1.6.0\n");
> > > > > > > Why is there no return on error here? Is the reset optional?
> > > > > > Yes it's optional. For older platforms this is not required.
> > > > > If it's optional then either there should be no error message, or the
> > > > > error message should only be logged when the version is >= 1.6.0. There
> > > > > are few things worse than a kernel log riddled with misleading error
> > > > > messages.
> > > >
> > > > In that case, it can be done like below. Kindly let me know your
> > > > opinion on this.
> > > >
> > > > if (ctrl->version >= 0x01060000) {
> > >
> > > This is not true 1.7+ variants do not require anything as such.
> >
> > I think it applies for all upcoming versions as Qualcomm Hardware team.
> > Here is the not from HW Team.
>
> Am testing sm8450 which has 1.7.0 and it does not require/have such control.
>
> I dont understand what is the issue in adding a flag to
> struct qcom_swrm_data.
>
> This should give finer control rather than matching anything > 1.6.
I agree, a flag seems a suitable option.
next prev parent reply other threads:[~2022-06-01 16:56 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-18 12:42 [PATCH v2] ASoC: qcom: soundwire: Add support for controlling audio CGCR from HLOS Srinivasa Rao Mandadapu
2022-05-21 3:13 ` Stephen Boyd
2022-05-24 10:49 ` Srinivasa Rao Mandadapu
2022-05-31 22:32 ` Matthias Kaehlcke
2022-05-31 22:32 ` Matthias Kaehlcke
2022-06-01 12:57 ` Srinivasa Rao Mandadapu
2022-06-01 12:57 ` Srinivasa Rao Mandadapu
2022-06-01 13:06 ` Srinivas Kandagatla
2022-06-01 13:06 ` Srinivas Kandagatla
2022-06-01 13:15 ` Srinivasa Rao Mandadapu
2022-06-01 13:42 ` Srinivas Kandagatla
2022-06-01 13:42 ` Srinivas Kandagatla
2022-06-01 16:55 ` Matthias Kaehlcke [this message]
2022-06-01 16:55 ` Matthias Kaehlcke
2022-06-07 10:45 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YpeZ7TdHK20xiLz9@google.com \
--to=mka@chromium.org \
--cc=agross@kernel.org \
--cc=alsa-devel@alsa-project.org \
--cc=bgoswami@quicinc.com \
--cc=bjorn.andersson@linaro.org \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=judyhsiao@chromium.org \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=quic_plai@quicinc.com \
--cc=quic_rohkumar@quicinc.com \
--cc=quic_srivasam@quicinc.com \
--cc=robh+dt@kernel.org \
--cc=srinivas.kandagatla@linaro.org \
--cc=swboyd@chromium.org \
--cc=tiwai@suse.com \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.