[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <e1bbcaa7-bac6-4288-9c5c-ae5a292e1d1f@gmail.com>
Date: Wed, 9 Oct 2024 15:10:28 +0800
From: Frank Wang <frawang.cn@...il.com>
To: Krzysztof Kozlowski <krzk@...nel.org>
Cc: vkoul@...nel.org, kishon@...nel.org, robh@...nel.org, krzk+dt@...nel.org,
conor+dt@...nel.org, heiko@...ech.de, linux-phy@...ts.infradead.org,
devicetree@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org, linux-rockchip@...ts.infradead.org,
william.wu@...k-chips.com, tim.chen@...k-chips.com, frank.wang@...k-chips.com
Subject: Re: [PATCH v4 1/3] phy: rockchip: inno-usb2: convert clock management
to bulk
Hi Krzysztof,
On 2024/10/8 22:35, Krzysztof Kozlowski wrote:
> On 08/10/2024 05:07, Frank Wang wrote:
>>>> + }
>>>> +
>>>> + if (!IS_ERR(refclk)) {
>>>> + clk_name = __clk_get_name(refclk);
>>>> init.parent_names = &clk_name;
>>>> init.num_parents = 1;
>>>> } else {
>>>> @@ -1406,18 +1424,29 @@ static int rockchip_usb2phy_probe(struct platform_device *pdev)
>>>> if (IS_ERR(rphy->phy_reset))
>>>> return PTR_ERR(rphy->phy_reset);
>>>>
>>>> - rphy->clk = devm_clk_get_optional_enabled(dev, "phyclk");
>>>> - if (IS_ERR(rphy->clk)) {
>>>> - return dev_err_probe(&pdev->dev, PTR_ERR(rphy->clk),
>>>> + ret = devm_clk_bulk_get_all(dev, &rphy->clks);
>>>> + if (ret == -EPROBE_DEFER) {
>>> This does not make much sense. Why would you proceed on other critical
>>> errors?
>>>
>>> You want to use optional variant, I guess?
>> Yes, the clock properties are optional.
> And? So are you going to use optional variant of clk get or not? Is it
> appropriate? Are you going to improve it?
Using devm_clk_bulk_get_all() not only get clk_bulk_data, but also can
get num_clks.
The clocks numbers (num_clks) are used for search the ref_clk in
rockchip_usb2phy_clk480m_register().
However, right now, the optional variant of clk_*_optional functions can
not get num_clks, or must know num_clks, then can get clk_bulk_data.
Best regards,
Frank
> Best regards,
> Krzysztof
>
Powered by blists - more mailing lists