* [PATCH v1] clk: keystone: syscon-clk: Fix audio refclk
@ 2023-07-28 22:26 Francesco Dolcini
2023-07-31 10:37 ` Jai Luthra
2023-08-05 1:12 ` Stephen Boyd
0 siblings, 2 replies; 3+ messages in thread
From: Francesco Dolcini @ 2023-07-28 22:26 UTC (permalink / raw)
To: Santosh Shilimkar, Michael Turquette, Stephen Boyd, Jai Luthra
Cc: Francesco Dolcini, linux-kernel, linux-clk
From: Francesco Dolcini <francesco.dolcini@toradex.com>
Audio REFCLK's are not working correctly, trying to use them lead to the
following errors:
[ 6.575277] of_clk_hw_onecell_get: invalid index 4294934528
[ 6.581515] wm8904 1-001a: Failed to get MCLK
[ 6.586290] wm8904: probe of 1-001a failed with error -2
The issue is that Audio REFCLK has #clock-cells = 0 [1], while the driver
is registering those clocks assuming they have one cells. Fix this by
registering the clock with of_clk_hw_simple_get() when there is only one
instance, e.g. "audio_refclk".
[1] Documentation/devicetree/bindings/clock/ti,am62-audio-refclk.yaml
Fixes: 6acab96ee337 ("clk: keystone: syscon-clk: Add support for audio refclk")
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
---
drivers/clk/keystone/syscon-clk.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/clk/keystone/syscon-clk.c b/drivers/clk/keystone/syscon-clk.c
index d33f74119488..6b335ce5cc26 100644
--- a/drivers/clk/keystone/syscon-clk.c
+++ b/drivers/clk/keystone/syscon-clk.c
@@ -151,8 +151,12 @@ static int ti_syscon_gate_clk_probe(struct platform_device *pdev)
data[i].name);
}
- return devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get,
- hw_data);
+ if (num_clks == 1)
+ return devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get,
+ hw_data->hws[0]);
+ else
+ return devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get,
+ hw_data);
}
#define TI_SYSCON_CLK_GATE(_name, _offset, _bit_idx) \
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v1] clk: keystone: syscon-clk: Fix audio refclk
2023-07-28 22:26 [PATCH v1] clk: keystone: syscon-clk: Fix audio refclk Francesco Dolcini
@ 2023-07-31 10:37 ` Jai Luthra
2023-08-05 1:12 ` Stephen Boyd
1 sibling, 0 replies; 3+ messages in thread
From: Jai Luthra @ 2023-07-31 10:37 UTC (permalink / raw)
To: Francesco Dolcini, Santosh Shilimkar, Michael Turquette,
Stephen Boyd
Cc: Francesco Dolcini, linux-kernel, linux-clk
[-- Attachment #1.1.1: Type: text/plain, Size: 2018 bytes --]
Hi Francesco,
On 29/07/23 03:56, Francesco Dolcini wrote:
> From: Francesco Dolcini <francesco.dolcini@toradex.com>
>
> Audio REFCLK's are not working correctly, trying to use them lead to the
> following errors:
>
> [ 6.575277] of_clk_hw_onecell_get: invalid index 4294934528
> [ 6.581515] wm8904 1-001a: Failed to get MCLK
> [ 6.586290] wm8904: probe of 1-001a failed with error -2
>
> The issue is that Audio REFCLK has #clock-cells = 0 [1], while the driver
> is registering those clocks assuming they have one cells. Fix this by
> registering the clock with of_clk_hw_simple_get() when there is only one
> instance, e.g. "audio_refclk".
Good catch, I didn't encounter the dmesg error during my tests -
probably because of zero-initialized structs so idx = 0.
>
> [1] Documentation/devicetree/bindings/clock/ti,am62-audio-refclk.yaml
>
> Fixes: 6acab96ee337 ("clk: keystone: syscon-clk: Add support for audio refclk")
> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Reviewed-by: Jai Luthra <j-luthra@ti.com>
> ---
> drivers/clk/keystone/syscon-clk.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/keystone/syscon-clk.c b/drivers/clk/keystone/syscon-clk.c
> index d33f74119488..6b335ce5cc26 100644
> --- a/drivers/clk/keystone/syscon-clk.c
> +++ b/drivers/clk/keystone/syscon-clk.c
> @@ -151,8 +151,12 @@ static int ti_syscon_gate_clk_probe(struct platform_device *pdev)
> data[i].name);
> }
>
> - return devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get,
> - hw_data);
> + if (num_clks == 1)
> + return devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get,
> + hw_data->hws[0]);
> + else
> + return devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get,
> + hw_data);
> }
>
> #define TI_SYSCON_CLK_GATE(_name, _offset, _bit_idx) \
--
Thanks,
Jai
GPG Fingerprint: 4DE0 D818 E5D5 75E8 D45A AFC5 43DE 91F9 249A 7145
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 4947 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v1] clk: keystone: syscon-clk: Fix audio refclk
2023-07-28 22:26 [PATCH v1] clk: keystone: syscon-clk: Fix audio refclk Francesco Dolcini
2023-07-31 10:37 ` Jai Luthra
@ 2023-08-05 1:12 ` Stephen Boyd
1 sibling, 0 replies; 3+ messages in thread
From: Stephen Boyd @ 2023-08-05 1:12 UTC (permalink / raw)
To: Francesco Dolcini, Jai Luthra, Michael Turquette,
Santosh Shilimkar
Cc: Francesco Dolcini, linux-kernel, linux-clk
Quoting Francesco Dolcini (2023-07-28 15:26:39)
> From: Francesco Dolcini <francesco.dolcini@toradex.com>
>
> Audio REFCLK's are not working correctly, trying to use them lead to the
> following errors:
>
> [ 6.575277] of_clk_hw_onecell_get: invalid index 4294934528
> [ 6.581515] wm8904 1-001a: Failed to get MCLK
> [ 6.586290] wm8904: probe of 1-001a failed with error -2
>
> The issue is that Audio REFCLK has #clock-cells = 0 [1], while the driver
> is registering those clocks assuming they have one cells. Fix this by
> registering the clock with of_clk_hw_simple_get() when there is only one
> instance, e.g. "audio_refclk".
>
> [1] Documentation/devicetree/bindings/clock/ti,am62-audio-refclk.yaml
>
> Fixes: 6acab96ee337 ("clk: keystone: syscon-clk: Add support for audio refclk")
> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> ---
Applied to clk-fixes
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-08-05 1:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-28 22:26 [PATCH v1] clk: keystone: syscon-clk: Fix audio refclk Francesco Dolcini
2023-07-31 10:37 ` Jai Luthra
2023-08-05 1:12 ` Stephen Boyd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox