devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
Cc: robh@kernel.org, krzk+dt@kernel.org, vkoul@kernel.org,
	conor+dt@kernel.org, srini@kernel.org,
	yung-chuan.liao@linux.intel.com, pierre-louis.bossart@linux.dev,
	linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-sound@vger.kernel.org
Subject: Re: [PATCH 4/7] soundwire: qcom: deprecate qcom,din/out-ports
Date: Tue, 2 Sep 2025 17:47:08 +0200	[thread overview]
Message-ID: <ebd1a1b7-c911-43f6-91cc-fcc2c01bc600@kernel.org> (raw)
In-Reply-To: <3c41bc8e-796b-4efe-97cd-03b737f09689@oss.qualcomm.com>

On 02/09/2025 15:13, Srinivas Kandagatla wrote:
> On 9/2/25 9:38 AM, Krzysztof Kozlowski wrote:
>> On Mon, Sep 01, 2025 at 08:50:34PM +0100, Srinivas Kandagatla wrote:
>>> Number of input and output ports can be dynamically read from the
>>> controller registers, getting this value from Device Tree is redundant
>>> and potentially lead to bugs.
>>>
>>> Remove the code parsing this property along with marking this as
>>> deprecated in device tree bindings.
>>>
>>> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
>>> ---
>>>  drivers/soundwire/qcom.c | 134 ++++++++++++++-------------------------
>>>  1 file changed, 49 insertions(+), 85 deletions(-)
>>>
>>> diff --git a/drivers/soundwire/qcom.c b/drivers/soundwire/qcom.c
>>> index 7f19ebba6137..4fa3e1c080ef 100644
>>> --- a/drivers/soundwire/qcom.c
>>> +++ b/drivers/soundwire/qcom.c
>>> @@ -128,7 +128,6 @@
>>>  #define MAX_FREQ_NUM						1
>>>  #define TIMEOUT_MS						100
>>>  #define QCOM_SWRM_MAX_RD_LEN					0x1
>>> -#define QCOM_SDW_MAX_PORTS					14
>>>  #define DEFAULT_CLK_FREQ					9600000
>>>  #define SWRM_MAX_DAIS						0xF
>>>  #define SWR_INVALID_PARAM					0xFF
>>> @@ -195,6 +194,7 @@ struct qcom_swrm_ctrl {
>>>  	int wake_irq;
>>>  	int num_din_ports;
>>>  	int num_dout_ports;
>>> +	int nports;
>>>  	int cols_index;
>>>  	int rows_index;
>>>  	unsigned long port_mask;
>>> @@ -202,7 +202,7 @@ struct qcom_swrm_ctrl {
>>>  	u8 rcmd_id;
>>>  	u8 wcmd_id;
>>>  	/* Port numbers are 1 - 14 */
>>> -	struct qcom_swrm_port_config pconfig[QCOM_SDW_MAX_PORTS + 1];
>>> +	struct qcom_swrm_port_config *pconfig;
>>>  	struct sdw_stream_runtime *sruntime[SWRM_MAX_DAIS];
>>>  	enum sdw_slave_status status[SDW_MAX_DEVICES + 1];
>>>  	int (*reg_read)(struct qcom_swrm_ctrl *ctrl, int reg, u32 *val);
>>> @@ -1157,7 +1157,7 @@ static int qcom_swrm_stream_alloc_ports(struct qcom_swrm_ctrl *ctrl,
>>>  				       struct snd_pcm_hw_params *params,
>>>  				       int direction)
>>>  {
>>> -	struct sdw_port_config pconfig[QCOM_SDW_MAX_PORTS];
>>> +	struct sdw_port_config *pconfig __free(kfree) = NULL;
>>
>> That's incorrect usage of __free(), missing constructor.
>>
>>>  	struct sdw_stream_config sconfig;
>>>  	struct sdw_master_runtime *m_rt;
>>>  	struct sdw_slave_runtime *s_rt;
>>> @@ -1167,6 +1167,10 @@ static int qcom_swrm_stream_alloc_ports(struct qcom_swrm_ctrl *ctrl,
>>>  	int maxport, pn, nports = 0, ret = 0;
>>>  	unsigned int m_port;
>>>  
>>> +	pconfig = kcalloc(ctrl->nports, sizeof(*pconfig), GFP_KERNEL);
>>
>> This almost always goes to definition and I do not see anything
>> preventing it.
> Yes, It can go to the definition.
> 
> But does this matter for a single instance of __free? I thought this was

EVERY __free() must have constructor in definition and only exceptions
are allowed if you cannot find such constructor (e.g. there are two for
the same variable).

> an issue if we have multiple __free() or guard() and __free() the order
> of definitions matter.

Yeah, for that reason this would matter, but here it is about preferred
style.

> 
> Will follow the recommendation in v2.
> 
> thanks,
> --srini
>>
>>> +	if (!pconfig)
>>> +		return -ENOMEM;
>>
>> Best regards,
>> Krzysztof
>>
> 


Best regards,
Krzysztof

  reply	other threads:[~2025-09-02 15:47 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-01 19:50 [PATCH 0/7] soundwire: qcom: add support for v3.1.0 controller Srinivas Kandagatla
2025-09-01 19:50 ` [PATCH 1/7] of: base: Add of_property_read_u8_index Srinivas Kandagatla
2025-09-02 11:34   ` kernel test robot
2025-09-02 12:21     ` Srinivas Kandagatla
2025-09-01 19:50 ` [PATCH 2/7] soundwire: qcom: remove unused rd_fifo_depth Srinivas Kandagatla
2025-09-02 10:01   ` Konrad Dybcio
2025-09-02 12:22     ` Srinivas Kandagatla
2025-09-01 19:50 ` [PATCH 3/7] dt-bindings: soundwire: qcom: deprecate qcom,din/out-ports Srinivas Kandagatla
2025-09-02  8:33   ` Krzysztof Kozlowski
2025-09-01 19:50 ` [PATCH 4/7] " Srinivas Kandagatla
2025-09-02  8:38   ` Krzysztof Kozlowski
2025-09-02 13:13     ` Srinivas Kandagatla
2025-09-02 15:47       ` Krzysztof Kozlowski [this message]
2025-09-01 19:50 ` [PATCH 5/7] soundwire: qcom: prepare for v3.x Srinivas Kandagatla
2025-09-02 10:03   ` Konrad Dybcio
2025-09-02 12:23     ` Srinivas Kandagatla
2025-09-01 19:50 ` [PATCH 6/7] dt-bindings: soundwire: qcom: Document v3.1.0 version of IP block Srinivas Kandagatla
2025-09-02  8:34   ` Krzysztof Kozlowski
2025-09-01 19:50 ` [PATCH 7/7] soundwire: qcom: adding support for v3.1.0 Srinivas Kandagatla

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=ebd1a1b7-c911-43f6-91cc-fcc2c01bc600@kernel.org \
    --to=krzk@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=pierre-louis.bossart@linux.dev \
    --cc=robh@kernel.org \
    --cc=srini@kernel.org \
    --cc=srinivas.kandagatla@oss.qualcomm.com \
    --cc=vkoul@kernel.org \
    --cc=yung-chuan.liao@linux.intel.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;
as well as URLs for NNTP newsgroup(s).