From: Michal Simek <michal.simek@xilinx.com>
To: Punit Agrawal <punit1.agrawal@toshiba.co.jp>,
Arnd Bergmann <arnd@kernel.org>
Cc: Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Michal Simek <michal.simek@xilinx.com>,
Arnd Bergmann <arnd@arndb.de>, Rajan Vaja <rajan.vaja@xilinx.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jolly Shah <jolly.shah@xilinx.com>,
Quanyang Wang <quanyang.wang@windriver.com>,
<linux-clk@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] clk: zynqmp: fix compile testing without ZYNQMP_FIRMWARE
Date: Thu, 22 Apr 2021 12:54:00 +0200 [thread overview]
Message-ID: <01e78b64-8ad1-dfc8-9fc0-6afff4841492@xilinx.com> (raw)
In-Reply-To: <871rb2swd9.fsf@kokedama.swc.toshiba.co.jp>
Hi,
On 4/22/21 7:48 AM, Punit Agrawal wrote:
> Hi Arnd,
>
> Thanks for the fix.
>
> Arnd Bergmann <arnd@kernel.org> writes:
>
>> From: Arnd Bergmann <arnd@arndb.de>
>>
>> When the firmware code is disabled, the incomplete error handling
>> in the clk driver causes compile-time warnings:
>>
>> drivers/clk/zynqmp/pll.c: In function 'zynqmp_pll_recalc_rate':
>> drivers/clk/zynqmp/pll.c:147:29: error: 'fbdiv' is used uninitialized [-Werror=uninitialized]
>> 147 | rate = parent_rate * fbdiv;
>> | ~~~~~~~~~~~~^~~~~~~
>> In function 'zynqmp_pll_get_mode',
>> inlined from 'zynqmp_pll_recalc_rate' at drivers/clk/zynqmp/pll.c:148:6:
>> drivers/clk/zynqmp/pll.c:61:27: error: 'ret_payload' is used uninitialized [-Werror=uninitialized]
>> 61 | return ret_payload[1];
>> | ~~~~~~~~~~~^~~
>> drivers/clk/zynqmp/pll.c: In function 'zynqmp_pll_recalc_rate':
>> drivers/clk/zynqmp/pll.c:53:13: note: 'ret_payload' declared here
>> 53 | u32 ret_payload[PAYLOAD_ARG_CNT];
>> | ^~~~~~~~~~~
>> drivers/clk/zynqmp/clk-mux-zynqmp.c: In function 'zynqmp_clk_mux_get_parent':
>> drivers/clk/zynqmp/clk-mux-zynqmp.c:57:16: error: 'val' is used uninitialized [-Werror=uninitialized]
>> 57 | return val;
>> | ^~~
>
>
> Not sure what I am missing but I couldn't reproduce these warnings. I
> tried a few different ways to toggle CONFIG_ZYNQMP_FIRMWARE.
>
> Regardless...
Me too. Can you share your .config file?
>
>> As it was apparently intentional to support this for compile testing
>> purposes, change the code to have just enough error handling for the
>> compiler to not notice the remaining bugs.
>>
>> Fixes: 21f237534661 ("clk: zynqmp: Drop dependency on ARCH_ZYNQMP")
>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>> ---
>> drivers/clk/zynqmp/clk-mux-zynqmp.c | 4 +++-
>> drivers/clk/zynqmp/pll.c | 8 ++++++--
>> 2 files changed, 9 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/clk/zynqmp/clk-mux-zynqmp.c b/drivers/clk/zynqmp/clk-mux-zynqmp.c
>> index 06194149be83..2afded3c7c11 100644
>> --- a/drivers/clk/zynqmp/clk-mux-zynqmp.c
>> +++ b/drivers/clk/zynqmp/clk-mux-zynqmp.c
>> @@ -50,9 +50,11 @@ static u8 zynqmp_clk_mux_get_parent(struct clk_hw *hw)
>>
>> ret = zynqmp_pm_clock_getparent(clk_id, &val);
>>
>> - if (ret)
>> + if (ret) {
>> pr_warn_once("%s() getparent failed for clock: %s, ret = %d\n",
>> __func__, clk_name, ret);
>> + return ret;
return should be u8 and this can be negative value. That's why I think
this should be fixed differently and all users should be checked that it
is handled like that.
>> + }
>>
>> return val;
>> }
>> diff --git a/drivers/clk/zynqmp/pll.c b/drivers/clk/zynqmp/pll.c
>> index abe6afbf3407..67d2a2d260c1 100644
>> --- a/drivers/clk/zynqmp/pll.c
>> +++ b/drivers/clk/zynqmp/pll.c
>> @@ -54,9 +54,11 @@ static inline enum pll_mode zynqmp_pll_get_mode(struct clk_hw *hw)
>> int ret;
>>
>> ret = zynqmp_pm_get_pll_frac_mode(clk_id, ret_payload);
>> - if (ret)
>> + if (ret) {
>> pr_warn_once("%s() PLL get frac mode failed for %s, ret = %d\n",
>> __func__, clk_name, ret);
>> + return ret;
>> + }
Return should be enum pll_mode which is 0 or 1 which is likely not done
here.
>>
>> return ret_payload[1];
>> }
>> @@ -140,9 +142,11 @@ static unsigned long zynqmp_pll_recalc_rate(struct clk_hw *hw,
>> int ret;
>>
>> ret = zynqmp_pm_clock_getdivider(clk_id, &fbdiv);
>> - if (ret)
>> + if (ret) {
>> pr_warn_once("%s() get divider failed for %s, ret = %d\n",
>> __func__, clk_name, ret);
>> + return -1ul;
>> + }
Same here.
>>
>> rate = parent_rate * fbdiv;
>> if (zynqmp_pll_get_mode(hw) == PLL_MODE_FRAC) {
>
> The changes make sense in that the functions error out sensibly when the
> zynqmp firmware driver is not enabled.
>
> Acked-by: Punit Agrawal <punit1.agrawal@toshiba.co.jp>
I think code should be checked that these error values are handled how
they should be handled.
Thanks,
Michal
next prev parent reply other threads:[~2021-04-22 10:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-21 13:48 [PATCH] clk: zynqmp: fix compile testing without ZYNQMP_FIRMWARE Arnd Bergmann
2021-04-22 5:48 ` Punit Agrawal
2021-04-22 10:54 ` Michal Simek [this message]
2021-04-23 6:37 ` Punit Agrawal
2021-04-30 2:17 ` Stephen Boyd
2021-06-21 13:15 ` Michal Simek
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=01e78b64-8ad1-dfc8-9fc0-6afff4841492@xilinx.com \
--to=michal.simek@xilinx.com \
--cc=arnd@arndb.de \
--cc=arnd@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=jolly.shah@xilinx.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=punit1.agrawal@toshiba.co.jp \
--cc=quanyang.wang@windriver.com \
--cc=rajan.vaja@xilinx.com \
--cc=sboyd@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox