devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry
@ 2023-07-31 14:44 Fabio Estevam
  2023-07-31 14:44 ` [PATCH 2/2] dt-bindings: usb: ci-hdrc-usb2: Fix clocks/clock-names maxItems Fabio Estevam
  2023-07-31 15:41 ` [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry Conor Dooley
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2023-07-31 14:44 UTC (permalink / raw)
  To: gregkh
  Cc: robh+dt, krzysztof.kozlowski+dt, conor+dt, devicetree, linux-usb,
	Fabio Estevam

From: Fabio Estevam <festevam@denx.de>

The "fsl,imx35-usb" entry is missing in the supported compatible
string list.

Add it to the list.

Signed-off-by: Fabio Estevam  <festevam@denx.de>
---
 Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
index 532d6464c8b3..85016dd2e187 100644
--- a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
+++ b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
@@ -34,6 +34,7 @@ properties:
               - fsl,imx23-usb
               - fsl,imx25-usb
               - fsl,imx28-usb
+              - fsl,imx35-usb
               - fsl,imx50-usb
               - fsl,imx51-usb
               - fsl,imx53-usb
-- 
2.34.1


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

* [PATCH 2/2] dt-bindings: usb: ci-hdrc-usb2: Fix clocks/clock-names maxItems
  2023-07-31 14:44 [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry Fabio Estevam
@ 2023-07-31 14:44 ` Fabio Estevam
  2023-07-31 15:42   ` Conor Dooley
  2023-07-31 15:41 ` [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry Conor Dooley
  1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2023-07-31 14:44 UTC (permalink / raw)
  To: gregkh
  Cc: robh+dt, krzysztof.kozlowski+dt, conor+dt, devicetree, linux-usb,
	Fabio Estevam

From: Fabio Estevam  <festevam@denx.de>

imx35.dtsi has three USB clocks. Adjust the maxItems to fix the following
schema warnings:

imx35-eukrea-mbimxsd35-baseboard.dtb: usb@53ff4400: clock-names: ['ipg', 'ahb', 'per'] is too long

Signed-off-by: Fabio Estevam  <festevam@denx.de>
---
 Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
index 85016dd2e187..d2303f9a638c 100644
--- a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
+++ b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
@@ -77,11 +77,11 @@ properties:
 
   clocks:
     minItems: 1
-    maxItems: 2
+    maxItems: 3
 
   clock-names:
     minItems: 1
-    maxItems: 2
+    maxItems: 3
 
   dr_mode: true
 
-- 
2.34.1


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

* Re: [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry
  2023-07-31 14:44 [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry Fabio Estevam
  2023-07-31 14:44 ` [PATCH 2/2] dt-bindings: usb: ci-hdrc-usb2: Fix clocks/clock-names maxItems Fabio Estevam
@ 2023-07-31 15:41 ` Conor Dooley
  1 sibling, 0 replies; 4+ messages in thread
From: Conor Dooley @ 2023-07-31 15:41 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: gregkh, robh+dt, krzysztof.kozlowski+dt, conor+dt, devicetree,
	linux-usb, Fabio Estevam

[-- Attachment #1: Type: text/plain, Size: 1060 bytes --]

On Mon, Jul 31, 2023 at 11:44:21AM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
> 
> The "fsl,imx35-usb" entry is missing in the supported compatible
> string list.
> 
> Add it to the list.
> 
> Signed-off-by: Fabio Estevam  <festevam@denx.de>

Acked-by: Conor Dooley <conor.dooley@microchip.com>

Thanks,
Conor.

> ---
>  Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
> index 532d6464c8b3..85016dd2e187 100644
> --- a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
> +++ b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.yaml
> @@ -34,6 +34,7 @@ properties:
>                - fsl,imx23-usb
>                - fsl,imx25-usb
>                - fsl,imx28-usb
> +              - fsl,imx35-usb
>                - fsl,imx50-usb
>                - fsl,imx51-usb
>                - fsl,imx53-usb
> -- 
> 2.34.1
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH 2/2] dt-bindings: usb: ci-hdrc-usb2: Fix clocks/clock-names maxItems
  2023-07-31 14:44 ` [PATCH 2/2] dt-bindings: usb: ci-hdrc-usb2: Fix clocks/clock-names maxItems Fabio Estevam
@ 2023-07-31 15:42   ` Conor Dooley
  0 siblings, 0 replies; 4+ messages in thread
From: Conor Dooley @ 2023-07-31 15:42 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: gregkh, robh+dt, krzysztof.kozlowski+dt, conor+dt, devicetree,
	linux-usb, Fabio Estevam

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

On Mon, Jul 31, 2023 at 11:44:22AM -0300, Fabio Estevam wrote:
> From: Fabio Estevam  <festevam@denx.de>
> 
> imx35.dtsi has three USB clocks. Adjust the maxItems to fix the following
> schema warnings:
> 
> imx35-eukrea-mbimxsd35-baseboard.dtb: usb@53ff4400: clock-names: ['ipg', 'ahb', 'per'] is too long

Acked-by: Conor Dooley <conor.dooley@microchip.com>

Thanks,
Conor.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-31 14:44 [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry Fabio Estevam
2023-07-31 14:44 ` [PATCH 2/2] dt-bindings: usb: ci-hdrc-usb2: Fix clocks/clock-names maxItems Fabio Estevam
2023-07-31 15:42   ` Conor Dooley
2023-07-31 15:41 ` [PATCH 1/2] dt-bindings: usb: ci-hdrc-usb2: Add the "fsl,imx35-usb" entry Conor Dooley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).