linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Osipenko <digetx@gmail.com>
To: Sowjanya Komatineni <skomatineni@nvidia.com>,
	thierry.reding@gmail.com, jonathanh@nvidia.com,
	mperttunen@nvidia.com, gregkh@linuxfoundation.org,
	sboyd@kernel.org, robh+dt@kernel.org, mark.rutland@arm.com
Cc: pdeschrijver@nvidia.com, pgaikwad@nvidia.com, spujar@nvidia.com,
	josephl@nvidia.com, daniel.lezcano@linaro.org,
	mmaddireddy@nvidia.com, markz@nvidia.com,
	devicetree@vger.kernel.org, linux-clk@vger.kernel.org,
	linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 13/19] ASoC: tegra: Add fallback implementation for audio mclk
Date: Wed, 18 Dec 2019 19:34:48 +0300	[thread overview]
Message-ID: <fb1aa60b-02f3-fd12-7d52-17e891015677@gmail.com> (raw)
In-Reply-To: <c4e20767-2263-7a29-f50c-d36876ad58e2@nvidia.com>

18.12.2019 19:32, Sowjanya Komatineni пишет:
> 
> On 12/18/19 8:29 AM, Dmitry Osipenko wrote:
>> 18.12.2019 18:43, Sowjanya Komatineni пишет:
>>> On 12/17/19 11:31 PM, Dmitry Osipenko wrote:
>>>> 18.12.2019 10:22, Dmitry Osipenko пишет:
>>>>> 18.12.2019 10:14, Sowjanya Komatineni пишет:
>>>>>> On 12/17/19 11:01 PM, Dmitry Osipenko wrote:
>>>>>>> 18.12.2019 09:59, Dmitry Osipenko пишет:
>>>>>>>> 17.12.2019 23:04, Sowjanya Komatineni пишет:
>>>>>>>>> mclk is from clk_out_1 which is part of Tegra PMC block and pmc
>>>>>>>>> clocks
>>>>>>>>> are moved to Tegra PMC driver with pmc as clock provider and
>>>>>>>>> using pmc
>>>>>>>>> clock ids.
>>>>>>>>>
>>>>>>>>> New device tree uses clk_out_1 from pmc clock provider.
>>>>>>>>>
>>>>>>>>> So, this patch adds implementation for mclk fallback to extern1
>>>>>>>>> when
>>>>>>>>> retrieving mclk returns -ENOENT to be backward compatible of new
>>>>>>>>> device
>>>>>>>>> tree with older kernels.
>>>>>>>>>
>>>>>>>>> Signed-off-by: Sowjanya Komatineni <skomatineni@nvidia.com>
>>>>>>>>> ---
>>>>>>>>>     sound/soc/tegra/tegra_asoc_utils.c | 11 ++++++++++-
>>>>>>>>>     1 file changed, 10 insertions(+), 1 deletion(-)
>>>>>>>>>
>>>>>>>>> diff --git a/sound/soc/tegra/tegra_asoc_utils.c
>>>>>>>>> b/sound/soc/tegra/tegra_asoc_utils.c
>>>>>>>>> index fe9ca8acd0fb..1b88c6043082 100644
>>>>>>>>> --- a/sound/soc/tegra/tegra_asoc_utils.c
>>>>>>>>> +++ b/sound/soc/tegra/tegra_asoc_utils.c
>>>>>>>>> @@ -191,7 +191,16 @@ int tegra_asoc_utils_init(struct
>>>>>>>>> tegra_asoc_utils_data *data,
>>>>>>>>>         data->clk_cdev1 = devm_clk_get(dev, "mclk");
>>>>>>>>>         if (IS_ERR(data->clk_cdev1)) {
>>>>>>>>>             dev_err(data->dev, "Can't retrieve clk cdev1\n");
>>>>>>>>> -        return PTR_ERR(data->clk_cdev1);
>>>>>>>>> +        if (PTR_ERR(data->clk_cdev1) != -ENOENT)
>>>>>>>>> +            return PTR_ERR(data->clk_cdev1);
>>>>>>>>> +        /* Fall back to extern1 */
>>>>>>>>> +        data->clk_cdev1 = devm_clk_get(dev, "extern1");
>>>>>>>>> +        if (IS_ERR(data->clk_cdev1)) {
>>>>>>>>> +            dev_err(data->dev, "Can't retrieve clk extern1\n");
>>>>>>>>> +            return PTR_ERR(data->clk_cdev1);
>>>>>>>>> +        }
>>>>>>>>> +
>>>>>>>>> +        dev_err(data->dev, "Falling back to extern1\n");
>>>>>>>>>         }
>>>>>>>>>           /*
>>>>>>>>>
>>>>>>>> [    1.769091] ------------[ cut here ]------------
>>>>>>>> [    1.769249] WARNING: CPU: 2 PID: 1 at drivers/clk/clk.c:954
>>>>>>>> clk_core_disable+0xa5/0x1d4
>>>>>>>> [    1.769330] clk_out_1 already disabled
>>>>>>>> [    1.769459] Modules linked in:
>>>>>>>> [    1.769541] CPU: 2 PID: 1 Comm: swapper/0 Not tainted
>>>>>>>> 5.5.0-rc1-next-20191213-00167-g6b9fbcdac8f3-dirty #266
>>>>>>>> [    1.769676] Hardware name: NVIDIA Tegra SoC (Flattened Device
>>>>>>>> Tree)
>>>>>>>> [    1.769775] [<c010e4bd>] (unwind_backtrace) from [<c010a0fd>]
>>>>>>>> (show_stack+0x11/0x14)
>>>>>>>> [    1.769918] [<c010a0fd>] (show_stack) from [<c09a37b1>]
>>>>>>>> (dump_stack+0x85/0x94)
>>>>>>>> [    1.770061] [<c09a37b1>] (dump_stack) from [<c011f3d1>]
>>>>>>>> (__warn+0xc1/0xc4)
>>>>>>>> [    1.770144] [<c011f3d1>] (__warn) from [<c011f691>]
>>>>>>>> (warn_slowpath_fmt+0x61/0x78)
>>>>>>>> [    1.770285] [<c011f691>] (warn_slowpath_fmt) from [<c04a0e7d>]
>>>>>>>> (clk_core_disable+0xa5/0x1d4)
>>>>>>>> [    1.770427] [<c04a0e7d>] (clk_core_disable) from [<c04a0fc3>]
>>>>>>>> (clk_core_disable_lock+0x17/0x20)
>>>>>>>> [    1.770516] [<c04a0fc3>] (clk_core_disable_lock) from
>>>>>>>> [<c07792bb>]
>>>>>>>> (tegra_asoc_utils_set_rate+0x53/0x208)
>>>>>>>> [    1.770662] [<c07792bb>] (tegra_asoc_utils_set_rate) from
>>>>>>>> [<c077b8c5>] (tegra_rt5640_probe+0xd5/0x128)
>>>>>>>> [    1.770808] [<c077b8c5>] (tegra_rt5640_probe) from [<c0555eb7>]
>>>>>>>> (platform_drv_probe+0x33/0x68)
>>>>>>>> [    1.770958] [<c0555eb7>] (platform_drv_probe) from [<c055471d>]
>>>>>>>> (really_probe+0x14d/0x240)
>>>>>>>> [    1.771099] [<c055471d>] (really_probe) from [<c055493f>]
>>>>>>>> (driver_probe_device+0x43/0x11c)
>>>>>>>> [    1.771187] [<c055493f>] (driver_probe_device) from [<c0554b25>]
>>>>>>>> (device_driver_attach+0x3d/0x40)
>>>>>>>> [    1.771328] [<c0554b25>] (device_driver_attach) from
>>>>>>>> [<c0554b5f>]
>>>>>>>> (__driver_attach+0x37/0x78)
>>>>>>>> [    1.771469] [<c0554b5f>] (__driver_attach) from [<c05532fb>]
>>>>>>>> (bus_for_each_dev+0x43/0x6c)
>>>>>>>> [    1.771609] [<c05532fb>] (bus_for_each_dev) from [<c0553e0f>]
>>>>>>>> (bus_add_driver+0xe3/0x148)
>>>>>>>> [    1.771692] [<c0553e0f>] (bus_add_driver) from [<c055531d>]
>>>>>>>> (driver_register+0x39/0xa0)
>>>>>>>> [    1.771833] [<c055531d>] (driver_register) from [<c0102c2f>]
>>>>>>>> (do_one_initcall+0x43/0x1bc)
>>>>>>>> [    1.771979] [<c0102c2f>] (do_one_initcall) from [<c1000ce5>]
>>>>>>>> (kernel_init_freeable+0x121/0x194)
>>>>>>>> [    1.772129] [<c1000ce5>] (kernel_init_freeable) from
>>>>>>>> [<c09b40e9>]
>>>>>>>> (kernel_init+0xd/0xd0)
>>>>>>>> [    1.772215] [<c09b40e9>] (kernel_init) from [<c01010bd>]
>>>>>>>> (ret_from_fork+0x11/0x34)
>>>>>>>> [    1.772349] Exception stack(0xde907fb0 to 0xde907ff8)
>>>>>>>>
>>>>>>> Although, that's probably related to the "ASoC: tegra: Add initial
>>>>>>> parent configuration for audio mclk".
>>>>>>>
>>>>>> Actually I see these warnings of already unprepared and already
>>>>>> disabled
>>>>>> for pll_a, pll_a_out0, and clk_out_1 even without this whole patch
>>>>>> series as well.
>>>>>>
>>>>>> I think its from tegra_asoc_utils_set_rate() doing
>>>>>> clk_disable_unprepare
>>>>>> and these clocks are already unprepared and disabled so its just
>>>>>> warning
>>>>>> from clk_core_unprepare and clk_core_disable.
>>>>> Doesn't happen for me without this series.
>>> I looked at wrong log, right earlier clock driver keeps them enabled so
>>> asoc_utils_set_rate() disables the clock fine but now enabling audio
>>> clock should be done in asoc_utils_init() to let the
>>> clk_disable_unprepare from asoc_utils_set_rate not to show this warning.
>>>
>>> But actually we don't need to have clock enabled in asoc_utils_init
>>> prior to invoking asoc_utils_set_rate from utils_init and its just warns
>>> during sound driver probe because clock is already in disabled state. At
>>> same time it doesn't harm to have it kept enabled in utils_init. So will
>>> keep it enabled in asoc_utils_init to prevent this warning to show up.
>>>
>>>> But sound works with both old/new device-trees.
>> The rule of thumb: don't enable anything when it shouldn't be enabled.
>> If clocks are disabled at the time of drivers probe, then drivers
>> shouldn't disable the clocks.
> Will fix asoc_utils_set_rate to disable only when its enabled.

BTW, you should CC ALSA maintainers for the audio patches. Perhaps it's
not worth to CC ALSA's ML since it requires registration and spams on
every reply.

  reply	other threads:[~2019-12-18 16:34 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-17 20:03 [PATCH v4 00/19] Move PMC clocks into Tegra PMC driver Sowjanya Komatineni
2019-12-17 20:03 ` [PATCH v4 01/19] dt-bindings: clock: tegra: Change CLK_M_DIV to OSC_DIV clocks Sowjanya Komatineni
2019-12-18 21:19   ` Rob Herring
2019-12-17 20:03 ` [PATCH v4 02/19] clk: tegra: Change CLK_M_DIV clocks " Sowjanya Komatineni
2019-12-17 20:03 ` [PATCH v4 03/19] clk: tegra: Fix Tegra PMC clock out parents Sowjanya Komatineni
2019-12-17 20:03 ` [PATCH v4 04/19] dt-bindings: tegra: Convert Tegra PMC bindings to YAML Sowjanya Komatineni
2019-12-18 21:29   ` Rob Herring
2019-12-18 22:31     ` Sowjanya Komatineni
2019-12-17 20:03 ` [PATCH v4 05/19] dt-bindings: soc: tegra-pmc: Add Tegra PMC clock bindings Sowjanya Komatineni
2019-12-18  7:56   ` Dmitry Osipenko
2019-12-17 20:03 ` [PATCH v4 06/19] soc: tegra: Add Tegra PMC clock registrations into PMC driver Sowjanya Komatineni
2019-12-18  8:30   ` Dmitry Osipenko
2019-12-18  8:35     ` Dmitry Osipenko
2019-12-18 15:46       ` Sowjanya Komatineni
2019-12-18 15:50         ` Sowjanya Komatineni
2019-12-18 16:52           ` Dmitry Osipenko
2019-12-18 17:00             ` Sowjanya Komatineni
2019-12-18 16:48         ` Dmitry Osipenko
2019-12-18 21:44       ` Dmitry Osipenko
2019-12-19  0:41         ` Sowjanya Komatineni
2019-12-20  1:21           ` Sowjanya Komatineni
2019-12-20  1:39             ` Dmitry Osipenko
2019-12-20  4:13               ` Sowjanya Komatineni
2019-12-20  4:34                 ` Dmitry Osipenko
2019-12-20 19:06                   ` Sowjanya Komatineni
2019-12-17 20:03 ` [PATCH v4 07/19] dt-bindings: soc: tegra-pmc: Add id for Tegra PMC 32KHz blink clock Sowjanya Komatineni
2019-12-18 21:30   ` Rob Herring
2019-12-17 20:03 ` [PATCH v4 08/19] soc: tegra: Add support for " Sowjanya Komatineni
2019-12-18  5:08   ` Dmitry Osipenko
2019-12-17 20:03 ` [PATCH v4 09/19] clk: tegra: Remove tegra_pmc_clk_init along with clk ids Sowjanya Komatineni
2019-12-17 20:03 ` [PATCH v4 10/19] dt-bindings: clock: tegra: Remove pmc clock ids from clock dt-bindings Sowjanya Komatineni
2019-12-18 21:32   ` Rob Herring
2019-12-17 20:03 ` [PATCH v4 11/19] ASoC: tegra: Use device managed resource APIs to get the clock Sowjanya Komatineni
2019-12-17 20:03 ` [PATCH v4 12/19] ASoC: tegra: Add initial parent configuration for audio mclk Sowjanya Komatineni
2019-12-17 20:04 ` [PATCH v4 13/19] ASoC: tegra: Add fallback implementation " Sowjanya Komatineni
2019-12-18  6:59   ` Dmitry Osipenko
2019-12-18  7:01     ` Dmitry Osipenko
2019-12-18  7:14       ` Sowjanya Komatineni
2019-12-18  7:22         ` Dmitry Osipenko
2019-12-18  7:31           ` Dmitry Osipenko
2019-12-18 15:43             ` Sowjanya Komatineni
2019-12-18 16:29               ` Dmitry Osipenko
2019-12-18 16:32                 ` Sowjanya Komatineni
2019-12-18 16:34                   ` Dmitry Osipenko [this message]
2019-12-17 20:04 ` [PATCH v4 14/19] clk: tegra: Remove audio related clock enables from clocks init_table Sowjanya Komatineni
2019-12-17 20:04 ` [PATCH v4 15/19] ARM: dts: tegra: Add clock-cells property to pmc Sowjanya Komatineni
2019-12-18 21:36   ` Dmitry Osipenko
2019-12-17 20:04 ` [PATCH v4 16/19] arm64: tegra: Add clock-cells property to Tegra PMC node Sowjanya Komatineni
2019-12-17 20:04 ` [PATCH v4 17/19] ARM: tegra: Update sound node clocks in device tree Sowjanya Komatineni
2019-12-18  6:39   ` Dmitry Osipenko
2019-12-18  7:47   ` Dmitry Osipenko
2019-12-17 20:04 ` [PATCH v4 18/19] arm64: tegra: smaug: Change clk_out_2 provider to pmc Sowjanya Komatineni
2019-12-17 20:04 ` [PATCH v4 19/19] ASoC: nau8825: change Tegra clk_out_2 provider from tegra_car " Sowjanya Komatineni
2019-12-18 21:32   ` Rob Herring

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=fb1aa60b-02f3-fd12-7d52-17e891015677@gmail.com \
    --to=digetx@gmail.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jonathanh@nvidia.com \
    --cc=josephl@nvidia.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=markz@nvidia.com \
    --cc=mmaddireddy@nvidia.com \
    --cc=mperttunen@nvidia.com \
    --cc=pdeschrijver@nvidia.com \
    --cc=pgaikwad@nvidia.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=skomatineni@nvidia.com \
    --cc=spujar@nvidia.com \
    --cc=thierry.reding@gmail.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).