From: Prasad Kumpatla <prasad.kumpatla@oss.qualcomm.com>
To: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>,
Srinivas Kandagatla <srini@kernel.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>
Cc: linux-arm-msm@vger.kernel.org, linux-sound@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 3/7] dt-bindings: sound: qcom,q6dsp-lpass-ports: add Audio IF clocks
Date: Mon, 3 Aug 2026 21:20:13 +0530 [thread overview]
Message-ID: <7ae5b4b5-708b-4c8a-94e8-3582cac1b762@oss.qualcomm.com> (raw)
In-Reply-To: <f24e2ad7-520a-4a19-9ebc-5771703de22d@oss.qualcomm.com>
On 8/2/2026 7:00 PM, Srinivas Kandagatla wrote:
> On 8/1/26 6:46 AM, Prasad Kumpatla wrote:
>> Add the LPASS Audio IF clock IDs used by newer backend interfaces.
>>
>> Platforms using Audio IF module backends request the interface bit
>> clocks through q6prm. Add the Audio IF IBIT and EBIT IDs to the binding
>> header so these clocks can be referenced from device trees.
>>
>> Signed-off-by: Prasad Kumpatla <prasad.kumpatla@oss.qualcomm.com>
>> ---
>
>> .../sound/qcom,q6dsp-lpass-ports.h | 29 +++++++++++++++++++
>> 1 file changed, 29 insertions(+)
>>
>> diff --git a/include/dt-bindings/sound/qcom,q6dsp-lpass-ports.h b/include/dt-bindings/sound/qcom,q6dsp-lpass-ports.h
>> index 7b553a73bc92..fbcf1ef9ce22 100644
>> --- a/include/dt-bindings/sound/qcom,q6dsp-lpass-ports.h
>> +++ b/include/dt-bindings/sound/qcom,q6dsp-lpass-ports.h
>> @@ -233,6 +233,35 @@
>> /* Clock ID for RX CORE MCLK2 2X MCLK */
>> #define LPASS_CLK_ID_RX_CORE_MCLK2_2X_MCLK 70
>>
>> +#define LPASS_CLK_ID_INTF0_IBIT 71
> Patch itself looks fine for me,
> But the naming seems to be bit odd and misleading, what does INTF mean
> is it QAIF or some other Interface.
>
> Please prefix the interface name something like
> LPASS_CLK_ID_QAIF_IF0_EBIT or LPASS_CLK_ID_TDM_IF0_EBIT.. etc.
Hi Srini,
Thanks for the suggestion. This LPASS_CLK_ID_QAIF_IF0_EBIT
looks good and appropriately. I'll use it in the next revision.
Thanks,
Prasad
>
> --srini
>
>> +#define LPASS_CLK_ID_INTF0_EBIT 72
>> +#define LPASS_CLK_ID_INTF1_IBIT 73
>> +#define LPASS_CLK_ID_INTF1_EBIT 74
>> +#define LPASS_CLK_ID_INTF2_IBIT 75
>> +#define LPASS_CLK_ID_INTF2_EBIT 76
>> +#define LPASS_CLK_ID_INTF3_IBIT 77
>> +#define LPASS_CLK_ID_INTF3_EBIT 78
>> +#define LPASS_CLK_ID_INTF4_IBIT 79
>> +#define LPASS_CLK_ID_INTF4_EBIT 80
>> +#define LPASS_CLK_ID_INTF5_IBIT 81
>> +#define LPASS_CLK_ID_INTF5_EBIT 82
>> +#define LPASS_CLK_ID_INTF6_IBIT 83
>> +#define LPASS_CLK_ID_INTF6_EBIT 84
>> +#define LPASS_CLK_ID_INTF7_IBIT 85
>> +#define LPASS_CLK_ID_INTF7_EBIT 86
>> +#define LPASS_CLK_ID_INTF8_IBIT 87
>> +#define LPASS_CLK_ID_INTF8_EBIT 88
>> +#define LPASS_CLK_ID_INTF9_IBIT 89
>> +#define LPASS_CLK_ID_INTF9_EBIT 90
>> +#define LPASS_CLK_ID_INTF10_IBIT 91
>> +#define LPASS_CLK_ID_INTF10_EBIT 92
>> +#define LPASS_CLK_ID_INTF11_IBIT 93
>> +#define LPASS_CLK_ID_INTF11_EBIT 94
>> +#define LPASS_CLK_ID_INTF12_IBIT 95
>> +#define LPASS_CLK_ID_INTF12_EBIT 96
>> +#define LPASS_CLK_ID_VA_INTF0_IBIT 97
>> +#define LPASS_CLK_ID_VA_INTF0_EBIT 98
>> +
>> #define LPASS_HW_AVTIMER_VOTE 101
>> #define LPASS_HW_MACRO_VOTE 102
>> #define LPASS_HW_DCODEC_VOTE 103
next prev parent reply other threads:[~2026-08-03 15:50 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-01 5:46 [PATCH v5 0/7] ASoC: qcom: add AudioReach TDM backend support Prasad Kumpatla
2026-08-01 5:46 ` [PATCH v5 1/7] ASoC: qcom: qdsp6: add topology-driven Audio IF support Prasad Kumpatla
2026-08-02 12:59 ` Srinivas Kandagatla
2026-08-03 15:43 ` Prasad Kumpatla
2026-08-01 5:46 ` [PATCH v5 2/7] ASoC: qcom: q6apm-lpass-dais: add TDM DAI operations Prasad Kumpatla
2026-08-02 13:08 ` Srinivas Kandagatla
2026-08-01 5:46 ` [PATCH v5 3/7] dt-bindings: sound: qcom,q6dsp-lpass-ports: add Audio IF clocks Prasad Kumpatla
2026-08-02 13:30 ` Srinivas Kandagatla
2026-08-03 15:50 ` Prasad Kumpatla [this message]
2026-08-03 14:10 ` Rob Herring
2026-08-03 16:07 ` Prasad Kumpatla
2026-08-01 5:46 ` [PATCH v5 4/7] ASoC: qcom: q6prm: add Audio IF clock IDs Prasad Kumpatla
2026-08-01 5:46 ` [PATCH v5 5/7] dt-bindings: sound: qcom,sm8250: allow TDM slot properties Prasad Kumpatla
2026-08-01 5:46 ` [PATCH v5 6/7] ASoC: qcom: common: add DAI-node TDM slot helpers Prasad Kumpatla
2026-08-01 5:57 ` sashiko-bot
2026-08-01 5:46 ` [PATCH v5 7/7] ASoC: qcom: sc8280xp: add TDM hw_params support Prasad Kumpatla
2026-08-03 13:07 ` [PATCH v5 0/7] ASoC: qcom: add AudioReach TDM backend support Mark Brown
2026-08-03 18:09 ` Prasad Kumpatla
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=7ae5b4b5-708b-4c8a-94e8-3582cac1b762@oss.qualcomm.com \
--to=prasad.kumpatla@oss.qualcomm.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=perex@perex.cz \
--cc=robh@kernel.org \
--cc=srini@kernel.org \
--cc=srinivas.kandagatla@oss.qualcomm.com \
--cc=tiwai@suse.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox