All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] dt-bindings: usb: ci-hdrc-usb2: Fix number of clocks
@ 2023-07-06  9:39 Alexander Stein
  2023-07-06 19:18 ` Rob Herring
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Stein @ 2023-07-06  9:39 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Xu Yang, Peng Fan
  Cc: Alexander Stein, linux-usb, devicetree

Some (older) IP cores require 3 clocks, named 'ipg', 'ahb' and 'per' while
more recent IP cores just require one. Fix the number and explicitly
state the clock-names.

Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
From I can tell, is that imx25, imx27, imx35 have specified 3 clocks in
their DT.
IMHO minItems for 'clock-names' can be removed as I presume that this
property is not set when only one clock is used.

 Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
index 782402800d4a..8aab1e831578 100644
--- a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
+++ b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
@@ -76,11 +76,13 @@ properties:
 
   clocks:
     minItems: 1
-    maxItems: 2
+    maxItems: 3
 
   clock-names:
-    minItems: 1
-    maxItems: 2
+    items:
+      - const: ipg
+      - const: ahb
+      - const: per
 
   dr_mode: true
 
-- 
2.34.1


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

* Re: [PATCH 1/1] dt-bindings: usb: ci-hdrc-usb2: Fix number of clocks
  2023-07-06  9:39 [PATCH 1/1] dt-bindings: usb: ci-hdrc-usb2: Fix number of clocks Alexander Stein
@ 2023-07-06 19:18 ` Rob Herring
  2023-07-07  5:59   ` Alexander Stein
  0 siblings, 1 reply; 5+ messages in thread
From: Rob Herring @ 2023-07-06 19:18 UTC (permalink / raw)
  To: Alexander Stein
  Cc: Greg Kroah-Hartman, Krzysztof Kozlowski, Conor Dooley, Xu Yang,
	Peng Fan, linux-usb, devicetree

On Thu, Jul 06, 2023 at 11:39:28AM +0200, Alexander Stein wrote:
> Some (older) IP cores require 3 clocks, named 'ipg', 'ahb' and 'per' while
> more recent IP cores just require one. Fix the number and explicitly
> state the clock-names.
> 
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> >From I can tell, is that imx25, imx27, imx35 have specified 3 clocks in
> their DT.
> IMHO minItems for 'clock-names' can be removed as I presume that this
> property is not set when only one clock is used.

Rather than presume, did you test that? Well, I did[1] and can confirm.

Reviewed-by: Rob Herring <robh@kernel.org>

[1] https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20230706093928.3580544-1-alexander.stein@ew.tq-group.com/

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

* Re: [PATCH 1/1] dt-bindings: usb: ci-hdrc-usb2: Fix number of clocks
  2023-07-06 19:18 ` Rob Herring
@ 2023-07-07  5:59   ` Alexander Stein
  2023-07-07  7:06     ` [EXT] " Xu Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Stein @ 2023-07-07  5:59 UTC (permalink / raw)
  To: Rob Herring
  Cc: Greg Kroah-Hartman, Krzysztof Kozlowski, Conor Dooley, Xu Yang,
	Peng Fan, linux-usb, devicetree

Hi,

Am Donnerstag, 6. Juli 2023, 21:18:25 CEST schrieb Rob Herring:
> On Thu, Jul 06, 2023 at 11:39:28AM +0200, Alexander Stein wrote:
> > Some (older) IP cores require 3 clocks, named 'ipg', 'ahb' and 'per' while
> > more recent IP cores just require one. Fix the number and explicitly
> > state the clock-names.
> > 
> > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > ---
> > 
> > >From I can tell, is that imx25, imx27, imx35 have specified 3 clocks in
> > 
> > their DT.
> > IMHO minItems for 'clock-names' can be removed as I presume that this
> > property is not set when only one clock is used.
> 
> Rather than presume, did you test that? Well, I did[1] and can confirm.

Okay, probably my wording was bad. There are a lot of users (e.g. imx8mm, 
imx8mn) which only have one clock but still provide some clock-names property.
It works just because it is not called 'ipg', but some SoC specific clock 
name.
So this patch should cause some warnings, but these users were incorrect in 
the first place. Following up this patch, they need to be fixed.

Best regards,
Alexander

> Reviewed-by: Rob Herring <robh@kernel.org>
> 
> [1]
> https://patchwork.ozlabs.org/project/devicetree-bindings/patch/202307060939
> 28.3580544-1-alexander.stein@ew.tq-group.com/


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

* RE: [EXT] Re: [PATCH 1/1] dt-bindings: usb: ci-hdrc-usb2: Fix number of clocks
  2023-07-07  5:59   ` Alexander Stein
@ 2023-07-07  7:06     ` Xu Yang
  2023-07-07  8:34       ` Alexander Stein
  0 siblings, 1 reply; 5+ messages in thread
From: Xu Yang @ 2023-07-07  7:06 UTC (permalink / raw)
  To: Alexander Stein, Rob Herring
  Cc: Greg Kroah-Hartman, Krzysztof Kozlowski, Conor Dooley, Peng Fan,
	linux-usb, devicetree

Hi Alexander,

> -----Original Message-----
> 
> Hi,
> 
> Am Donnerstag, 6. Juli 2023, 21:18:25 CEST schrieb Rob Herring:
> > On Thu, Jul 06, 2023 at 11:39:28AM +0200, Alexander Stein wrote:
> > > Some (older) IP cores require 3 clocks, named 'ipg', 'ahb' and 'per' while
> > > more recent IP cores just require one. Fix the number and explicitly
> > > state the clock-names.
> > >
> > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > > ---
> > >
> > > >From I can tell, is that imx25, imx27, imx35 have specified 3 clocks in
> > >
> > > their DT.
> > > IMHO minItems for 'clock-names' can be removed as I presume that this
> > > property is not set when only one clock is used.
> >
> > Rather than presume, did you test that? Well, I did[1] and can confirm.
> 
> Okay, probably my wording was bad. There are a lot of users (e.g. imx8mm,
> imx8mn) which only have one clock but still provide some clock-names property.
> It works just because it is not called 'ipg', but some SoC specific clock
> name.
> So this patch should cause some warnings, but these users were incorrect in
> the first place. Following up this patch, they need to be fixed.

It means that all the usb nodes need to contain 'ipg', 'ahb', 'per' clock
names with your patch. It's unexpected due to only imx25, imx27, imx35
need this. I think you need to narrow this property to specific SoCs.

Thanks,
Xu Yang

> 
> Best regards,
> Alexander
> 
> > Reviewed-by: Rob Herring <robh@kernel.org>
> >

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

* Re: [EXT] Re: [PATCH 1/1] dt-bindings: usb: ci-hdrc-usb2: Fix number of clocks
  2023-07-07  7:06     ` [EXT] " Xu Yang
@ 2023-07-07  8:34       ` Alexander Stein
  0 siblings, 0 replies; 5+ messages in thread
From: Alexander Stein @ 2023-07-07  8:34 UTC (permalink / raw)
  To: Rob Herring, Xu Yang
  Cc: Greg Kroah-Hartman, Krzysztof Kozlowski, Conor Dooley, Peng Fan,
	linux-usb, devicetree

Hi Xu Yang,

thanks for your feedback.

Am Freitag, 7. Juli 2023, 09:06:09 CEST schrieb Xu Yang:
> Hi Alexander,
> 
> > -----Original Message-----
> > 
> > Hi,
> > 
> > Am Donnerstag, 6. Juli 2023, 21:18:25 CEST schrieb Rob Herring:
> > > On Thu, Jul 06, 2023 at 11:39:28AM +0200, Alexander Stein wrote:
> > > > Some (older) IP cores require 3 clocks, named 'ipg', 'ahb' and 'per'
> > > > while
> > > > more recent IP cores just require one. Fix the number and explicitly
> > > > state the clock-names.
> > > > 
> > > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > > > ---
> > > > 
> > > > >From I can tell, is that imx25, imx27, imx35 have specified 3 clocks
> > > > >in
> > > > 
> > > > their DT.
> > > > IMHO minItems for 'clock-names' can be removed as I presume that this
> > > > property is not set when only one clock is used.
> > > 
> > > Rather than presume, did you test that? Well, I did[1] and can confirm.
> > 
> > Okay, probably my wording was bad. There are a lot of users (e.g. imx8mm,
> > imx8mn) which only have one clock but still provide some clock-names
> > property. It works just because it is not called 'ipg', but some SoC
> > specific clock name.
> > So this patch should cause some warnings, but these users were incorrect
> > in
> > the first place. Following up this patch, they need to be fixed.
> 
> It means that all the usb nodes need to contain 'ipg', 'ahb', 'per' clock
> names with your patch.

That's not true. They only need these 3 clocks iff they specify clock-names. 
If there is only one clock, there is no need to specify clock-names.
TBH: If there is just one clock, which is not called 'ipg', the driver doesn't 
care about the name at all.

> It's unexpected due to only imx25, imx27, imx35
> need this. I think you need to narrow this property to specific SoCs.

That's a good idea, but I would consider adding property conditionals as a 
follow up patch.

Best regards,
Alexander

> Thanks,
> Xu Yang
> 
> > Best regards,
> > Alexander
> > 
> > > Reviewed-by: Rob Herring <robh@kernel.org>


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

end of thread, other threads:[~2023-07-07  8:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-06  9:39 [PATCH 1/1] dt-bindings: usb: ci-hdrc-usb2: Fix number of clocks Alexander Stein
2023-07-06 19:18 ` Rob Herring
2023-07-07  5:59   ` Alexander Stein
2023-07-07  7:06     ` [EXT] " Xu Yang
2023-07-07  8:34       ` Alexander Stein

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.