All of lore.kernel.org
 help / color / mirror / Atom feed
* sun4i CCU CCF vs CSI0 question (Re: [PATCH] doc sunxi: update CCU wiki page link in clocks.rst)
@ 2023-02-05 19:50 Oleg Verych
  2023-02-07  9:06 ` Maxime Ripard
  0 siblings, 1 reply; 3+ messages in thread
From: Oleg Verych @ 2023-02-05 19:50 UTC (permalink / raw)
  To: open list:ARM/Allwinner sunXi SoC support
  Cc: Priit Laes, Gregory CLEMENT, Emilio López, Maxime Ripard,
	Chen-Yu Tsai, linux-sunxi, Oleg Verych

Hello!

On 1/17/23, Oleg Verych <olecom@gmail.com> wrote:
> Update wiki page link to the Allwinner sunXi SoC Clock Control Module.
>
> Signed-off-by: Oleg Verych <olecom@gmail.com>
> ---
> Hi!
>
> Can I ask additional question to those in the file?

Q:
> How is it possible to setup PLL7 to particular frequency and select
> it as a source to CSI0 via CCM_CSI0_CLK[1]?

A:
by setting clock source and frequency via CCF[2] in a camera device as:

```
	ov5640: camera@3c {
		compatible = "ovti,ov5640";
		reg = <0x3c>;
		pinctrl-names = "default";
		pinctrl-0 = <&csi0_clk_pin>;
		clocks = <&ccu CLK_CSI0>;
		clock-names = "xclk";

		assigned-clocks = <&ccu CLK_CSI0>, <&ccu 17>; /* 17 = CLK_PLL_VIDEO1 * /
		assigned-clock-rates = <32000000>;
		assigned-clock-parents = <&ccu 17>;
...
		port {
			ov5640_to_csi0: endpoint {
...

```
[2] https://github.com/devicetree-org/dt-schema/blob/main/dtschema/schemas/clock/clock.yaml

Set of other related questions:

Q: When trying to setup main CSI0 clock to 32MHz from example above,
it is not possible to get integer mode value:

sun4i_csi_probe mclk: 31578948 Hz

Why it is so, while PLL7 can be configured to (3*(9 + 23)) = 96 MHz
which then can be divided by (2 + 1) using CCM_CSI0_CLK [1] /
CSI0_CLK_REG [A20_User_Manual_v1.4_20150510.pdf p.84]?

Q: Initial value for CSI0 ISP clock is not as hardcoded in
`sun4i_csi_runtime_resume()`. Is it correct to hardcode the value for
resume? E.g.[3]:
```
	clk_prepare_enable(csi->ram_clk);
>>	clk_set_rate(csi->isp_clk, 80000000);
	clk_prepare_enable(csi->isp_clk);
```
[3] https://elixir.bootlin.com/linux/v6.1/source/drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.c#L303


Q: Is there a good guide / how-to somewhere on how to suspend/resume
A20-processor based devices, e.g. for `sun4i_csi_runtime_resume()`
testing?

Thanks!

> Is it possible to put such device tree example in documentation?
>
> Thanks!

[1] https://linux-sunxi.org/Clock_Control_Module#CCM_CSI0_CLK

>  Documentation/arm/sunxi/clocks.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/arm/sunxi/clocks.rst
> b/Documentation/arm/sunxi/clocks.rst
> index 23bd03f3e..f435bdd70 100644
> --- a/Documentation/arm/sunxi/clocks.rst
> +++ b/Documentation/arm/sunxi/clocks.rst
> @@ -49,7 +49,7 @@ Q: Were can I learn more about the sunxi clocks?
>  A: The linux-sunxi wiki contains a page documenting the clock registers,
>     you can find it at
>
> -        http://linux-sunxi.org/A10/CCM
> +        https://linux-sunxi.org/Clock_Control_Module
>
>     The authoritative source for information at this time is the ccmu
> driver
>     released by Allwinner, you can find it at
> --
> 2.20.1
>
>
-- 
sed 'sh && sed && node.js + olecom = happiness and mirth'  <<  ''
-o--=O`C
 #oo'L O
<___=E M

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: sun4i CCU CCF vs CSI0 question (Re: [PATCH] doc sunxi: update CCU wiki page link in clocks.rst)
  2023-02-05 19:50 sun4i CCU CCF vs CSI0 question (Re: [PATCH] doc sunxi: update CCU wiki page link in clocks.rst) Oleg Verych
@ 2023-02-07  9:06 ` Maxime Ripard
  2023-02-07 15:55   ` Oleg Verych
  0 siblings, 1 reply; 3+ messages in thread
From: Maxime Ripard @ 2023-02-07  9:06 UTC (permalink / raw)
  To: Oleg Verych
  Cc: open list:ARM/Allwinner sunXi SoC support, Priit Laes,
	Gregory CLEMENT, Emilio López, Chen-Yu Tsai, linux-sunxi

On Sun, Feb 05, 2023 at 09:50:22PM +0200, Oleg Verych wrote:
> Hello!
> 
> On 1/17/23, Oleg Verych <olecom@gmail.com> wrote:
> > Update wiki page link to the Allwinner sunXi SoC Clock Control Module.
> >
> > Signed-off-by: Oleg Verych <olecom@gmail.com>
> > ---
> > Hi!
> >
> > Can I ask additional question to those in the file?
> 
> Q:
> > How is it possible to setup PLL7 to particular frequency and select
> > it as a source to CSI0 via CCM_CSI0_CLK[1]?
> 
> A:
> by setting clock source and frequency via CCF[2] in a camera device as:
> 
> ```
> 	ov5640: camera@3c {
> 		compatible = "ovti,ov5640";
> 		reg = <0x3c>;
> 		pinctrl-names = "default";
> 		pinctrl-0 = <&csi0_clk_pin>;
> 		clocks = <&ccu CLK_CSI0>;
> 		clock-names = "xclk";
> 
> 		assigned-clocks = <&ccu CLK_CSI0>, <&ccu 17>; /* 17 = CLK_PLL_VIDEO1 * /

You don't need the second clock.

> 		assigned-clock-rates = <32000000>;
> 		assigned-clock-parents = <&ccu 17>;
> ...
> 		port {
> 			ov5640_to_csi0: endpoint {
> ...
> 
> ```
> [2] https://github.com/devicetree-org/dt-schema/blob/main/dtschema/schemas/clock/clock.yaml

I'm not sure why you're trying to do that in the first place, but please
note that this isn't a guarantee in any way. It could change at any
point in time after probe has been called.

> Set of other related questions:
> 
> Q: When trying to setup main CSI0 clock to 32MHz from example above,
> it is not possible to get integer mode value:
> 
> sun4i_csi_probe mclk: 31578948 Hz
> 
> Why it is so, while PLL7 can be configured to (3*(9 + 23)) = 96 MHz
> which then can be divided by (2 + 1) using CCM_CSI0_CLK [1] /
> CSI0_CLK_REG [A20_User_Manual_v1.4_20150510.pdf p.84]?

I think what happens with your DT bits is that CLK_CSI0 and PLL_VIDEO1
will be set to 32MHz, in that order.

> Q: Initial value for CSI0 ISP clock is not as hardcoded in
> `sun4i_csi_runtime_resume()`. Is it correct to hardcode the value for
> resume? E.g.[3]:
> ```
> 	clk_prepare_enable(csi->ram_clk);
> >>	clk_set_rate(csi->isp_clk, 80000000);
> 	clk_prepare_enable(csi->isp_clk);
> ```
> [3] https://elixir.bootlin.com/linux/v6.1/source/drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.c#L303

I guess? What's wrong with it?

> Q: Is there a good guide / how-to somewhere on how to suspend/resume
> A20-processor based devices, e.g. for `sun4i_csi_runtime_resume()`
> testing?

runtime PM is not related to suspend/resume. It will start and stop the
device whenever it's actually used instead of keeping it on all the
time.

If you start a capture and it works, then you've tested runtime PM

Maxime

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: sun4i CCU CCF vs CSI0 question (Re: [PATCH] doc sunxi: update CCU wiki page link in clocks.rst)
  2023-02-07  9:06 ` Maxime Ripard
@ 2023-02-07 15:55   ` Oleg Verych
  0 siblings, 0 replies; 3+ messages in thread
From: Oleg Verych @ 2023-02-07 15:55 UTC (permalink / raw)
  To: Maxime Ripard
  Cc: open list:ARM/Allwinner sunXi SoC support, Priit Laes,
	Gregory CLEMENT, Emilio López, Chen-Yu Tsai, linux-sunxi

Hello!

On 2/7/23, Maxime Ripard <maxime@cerno.tech> wrote:
> On Sun, Feb 05, 2023 at 09:50:22PM +0200, Oleg Verych wrote:
>> Hello!
>>
>> On 1/17/23, Oleg Verych <olecom@gmail.com> wrote:
>> > Update wiki page link to the Allwinner sunXi SoC Clock Control Module.
>> >
>> > Signed-off-by: Oleg Verych <olecom@gmail.com>
>> > ---
>> > Hi!
>> >
>> > Can I ask additional question to those in the file?
>>
>> Q:
>> > How is it possible to setup PLL7 to particular frequency and select
>> > it as a source to CSI0 via CCM_CSI0_CLK[1]?
>>
>> A:
>> by setting clock source and frequency via CCF[2] in a camera device as:
>>
>> ```
>> 	ov5640: camera@3c {
>> 		compatible = "ovti,ov5640";
>> 		reg = <0x3c>;
>> 		pinctrl-names = "default";
>> 		pinctrl-0 = <&csi0_clk_pin>;
>> 		clocks = <&ccu CLK_CSI0>;
>> 		clock-names = "xclk";
>>
>> 		assigned-clocks = <&ccu CLK_CSI0>, <&ccu 17>; /* 17 = CLK_PLL_VIDEO1 *
>> /
>
> You don't need the second clock.
>> 		assigned-clock-rates = <32000000>;
>> 		assigned-clock-parents = <&ccu 17>;
>> ...
>> 		port {
>> 			ov5640_to_csi0: endpoint {
>> ...
>>
>> ```
>> [2]
>> https://github.com/devicetree-org/dt-schema/blob/main/dtschema/schemas/clock/clock.yaml
>
> I'm not sure why you're trying to do that in the first place, but please
> note that this isn't a guarantee in any way. It could change at any
> point in time after probe has been called.

I see, thanks.

>> Set of other related questions:
>>
>> Q: When trying to setup main CSI0 clock to 32MHz from example above,
>> it is not possible to get integer mode value:
>>
>> sun4i_csi_probe mclk: 31578948 Hz
>>
>> Why it is so, while PLL7 can be configured to (3*(9 + 23)) = 96 MHz
>> which then can be divided by (2 + 1) using CCM_CSI0_CLK [1] /
>> CSI0_CLK_REG [A20_User_Manual_v1.4_20150510.pdf p.84]?
>
> I think what happens with your DT bits is that CLK_CSI0 and PLL_VIDEO1
> will be set to 32MHz, in that order.
>

Reading all clk-related replies along with the calculations they led
me to this solution, which works:
```
[  340.017355] ?dvp-csi-dev ?sun4i_csi_probe mclk: 32000000 Hz
		assigned-clocks = <&ccu CLK_CSI0>, <&ccu 17>;
		assigned-clock-parents = <&ccu 17>;
		assigned-clock-rates = <32000000>, <96000000>;
```

Thanks, very appreciated!
__________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-02-07 15:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-05 19:50 sun4i CCU CCF vs CSI0 question (Re: [PATCH] doc sunxi: update CCU wiki page link in clocks.rst) Oleg Verych
2023-02-07  9:06 ` Maxime Ripard
2023-02-07 15:55   ` Oleg Verych

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.