All of lore.kernel.org
 help / color / mirror / Atom feed
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Mark Brown <broonie@kernel.org>
Cc: devicetree@vger.kernel.org, alsa-devel@alsa-project.org,
	lgirdwood@gmail.com, linux-kernel@vger.kernel.org,
	robh+dt@kernel.org
Subject: Re: [PATCH 2/7] ASoC: codec: lpass-rx-macro: add support for lpass rx macro
Date: Fri, 29 Jan 2021 13:32:38 +0000	[thread overview]
Message-ID: <2e1888d9-2ea6-67df-f61f-34062bf7aeee@linaro.org> (raw)
In-Reply-To: <20210128160718.GE4537@sirena.org.uk>

Thanks Mark for quick review,

On 28/01/2021 16:07, Mark Brown wrote:
> On Thu, Jan 28, 2021 at 02:19:24PM +0000, Srinivas Kandagatla wrote:
> 
>>   snd-soc-lpass-wsa-macro-objs := lpass-wsa-macro.o
>>   snd-soc-lpass-va-macro-objs := lpass-va-macro.o
>> +snd-soc-lpass-rx-macro-objs := lpass-rx-macro.o
> 
> Please keep things sorted.
> 
>> @@ -0,0 +1,2020 @@
>> +// SPDX-License-Identifier: GPL-2.0-only
>> +/* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
>> + */
> 
> Please make the entire comment a C++ one so things look more
> intentional.
Will fix this in next version!

> 
>> +static const char *const rx_macro_ear_mode_text[] = {"OFF", "ON"};
>> +static const struct soc_enum rx_macro_ear_mode_enum =
>> +	SOC_ENUM_SINGLE_EXT(2, rx_macro_ear_mode_text);
> 
> On/off controls should be standard Switch controls.

I agree!
> 
>> +		if (rx->rx_mclk_users == 0) {
>> +			regcache_mark_dirty(regmap);
>> +			regcache_sync(regmap);
> 
> I'd expect this to be joined up with whatever caused the register state
> to become invalid, this looks like it's inviting bugs.  This also seems
> to have only one caller...

Few lines below we are moving the digital clock from OFF to ON which 
will change the state of registers. There are two callers, one from DAPM 
RX CLK widget and other from soundwire clock gate! We will potentially 
enter this path when we are resuming from clk pause state!

> 
>> +	SOC_ENUM_EXT("RX_HPH HD2 Mode", rx_macro_hph_hd2_mode_enum,
>> +		rx_macro_get_hph_hd2_mode, rx_macro_put_hph_hd2_mode),
>> +
>> +	SOC_ENUM_EXT("RX_HPH_PWR_MODE", rx_macro_hph_pwr_mode_enum,
>> +		rx_macro_get_hph_pwr_mode, rx_macro_put_hph_pwr_mode),
> 
> The naming seems a bit random here.

Will try to clean this up in next spin!

> 
>> +static int rx_swrm_clock(struct rx_macro *rx, bool enable)
>> +{
> 
>> +static int swclk_gate_enable(struct clk_hw *hw)
>> +{
>> +	return rx_swrm_clock(to_rx_macro(hw), true);
>> +}
>> +
>> +static void swclk_gate_disable(struct clk_hw *hw)
>> +{
>> +	rx_swrm_clock(to_rx_macro(hw), false);
>> +}
> 
> This all seems very redundant and like it'll get in the way of grepping
> for users.  It would be better to just inline the operation into the clk
> API functions.

Sure!

--srini
> 

  reply	other threads:[~2021-01-29 13:33 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-28 14:19 [PATCH 0/7] ASoC: codecs: add support for LPASS Codec TX and RX macros Srinivas Kandagatla
2021-01-28 14:19 ` Srinivas Kandagatla
2021-01-28 14:19 ` [PATCH 1/7] ASoC: qcom: dt-bindings: add bindings for lpass rx macro codec Srinivas Kandagatla
2021-01-28 14:19   ` Srinivas Kandagatla
2021-01-28 14:19 ` [PATCH 2/7] ASoC: codec: lpass-rx-macro: add support for lpass rx macro Srinivas Kandagatla
2021-01-28 14:19   ` Srinivas Kandagatla
2021-01-28 16:07   ` Mark Brown
2021-01-28 16:07     ` Mark Brown
2021-01-29 13:32     ` Srinivas Kandagatla [this message]
2021-01-29 15:08       ` Mark Brown
2021-01-29 15:19         ` Srinivas Kandagatla
2021-01-28 14:19 ` [PATCH 3/7] ASoC: codec: lpass-rx-macro: add dapm widgets and route Srinivas Kandagatla
2021-01-28 14:19   ` Srinivas Kandagatla
2021-01-28 14:19 ` [PATCH 4/7] ASoC: codec: lpass-rx-macro: add iir widgets Srinivas Kandagatla
2021-01-28 14:19   ` Srinivas Kandagatla
2021-01-28 14:19 ` [PATCH 5/7] ASoC: qcom: dt-bindings: add bindings for lpass tx macro codec Srinivas Kandagatla
2021-01-28 14:19   ` Srinivas Kandagatla
2021-01-28 14:19 ` [PATCH 6/7] ASoC: codec: lpass-tx-macro: add support for lpass tx macro Srinivas Kandagatla
2021-01-28 14:19   ` Srinivas Kandagatla
2021-01-28 14:19 ` [PATCH 7/7] ASoC: codec: lpass-tx-macro: add dapm widgets and route Srinivas Kandagatla
2021-01-28 14:19   ` 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=2e1888d9-2ea6-67df-f61f-34062bf7aeee@linaro.org \
    --to=srinivas.kandagatla@linaro.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@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.