From: "Diederik de Haas" <diederik@cknow-tech.com>
To: "Heiko Stuebner" <heiko@sntech.de>, <vkoul@kernel.org>
Cc: <neil.armstrong@linaro.org>, <robh@kernel.org>,
<krzk+dt@kernel.org>, <conor+dt@kernel.org>,
<linux-phy@lists.infradead.org>, <devicetree@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-rockchip@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <jonas@kwiboo.se>
Subject: Re: [PATCH v2 3/5] dt-bindings: phy: rockchip,inno-usb2phy: Add compatible for RK3528
Date: Wed, 13 May 2026 11:09:58 +0200 [thread overview]
Message-ID: <DIHFJX03WWI4.1F9FMM0HOCPK@cknow-tech.com> (raw)
In-Reply-To: <20260505170410.3265305-4-heiko@sntech.de>
Hi Heiko,
On Tue May 5, 2026 at 7:04 PM CEST, Heiko Stuebner wrote:
> From: Jonas Karlman <jonas@kwiboo.se>
>
> The embedded USB2 PHY on RK3528 is very similar to the one in RK3568,
> the main difference being that it only uses two clocks instead of three.
>
> Add compatible to support the USB2 PHY in RK3528.
>
> Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
> Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> ---
> .../bindings/phy/rockchip,inno-usb2phy.yaml | 30 ++++++++++++++++---
> 1 file changed, 26 insertions(+), 4 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml b/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> index b95c9e3e44fe..f50fc69fbbe4 100644
> --- a/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> +++ b/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> @@ -20,6 +20,7 @@ properties:
> - rockchip,rk3328-usb2phy
> - rockchip,rk3366-usb2phy
> - rockchip,rk3399-usb2phy
> + - rockchip,rk3528-usb2phy
> - rockchip,rk3562-usb2phy
> - rockchip,rk3568-usb2phy
> - rockchip,rk3576-usb2phy
> @@ -41,11 +42,15 @@ properties:
> maxItems: 3
>
> clock-names:
> - minItems: 1
> - items:
> + oneOf:
> - const: phyclk
> - - const: aclk
> - - const: aclk_slv
> + - items:
> + - const: phyclk
> + - const: pclk
> + - items:
> + - const: phyclk
> + - const: aclk
> + - const: aclk_slv
>
> assigned-clocks:
> description:
> @@ -65,6 +70,9 @@ properties:
> description: Muxed interrupt for both ports
> maxItems: 1
>
> + power-domains:
> + maxItems: 1
> +
The commit message talks about (the differences in) clocks, but says
nothing about power-domains. Shouldn't that be mentioned and/or split
off into its own patch? (FWIW: I like the change itself)
Cheers,
Diederik
> resets:
> maxItems: 2
>
> @@ -150,6 +158,7 @@ allOf:
> compatible:
> contains:
> enum:
> + - rockchip,rk3528-usb2phy
> - rockchip,rk3568-usb2phy
> - rockchip,rv1108-usb2phy
> then:
> @@ -218,6 +227,19 @@ allOf:
> clock-names:
> maxItems: 1
>
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - rockchip,rk3528-usb2phy
> + then:
> + properties:
> + clocks:
> + minItems: 2
> + clock-names:
> + minItems: 2
> +
> - if:
> properties:
> compatible:
WARNING: multiple messages have this Message-ID (diff)
From: "Diederik de Haas" <diederik@cknow-tech.com>
To: "Heiko Stuebner" <heiko@sntech.de>, <vkoul@kernel.org>
Cc: <neil.armstrong@linaro.org>, <robh@kernel.org>,
<krzk+dt@kernel.org>, <conor+dt@kernel.org>,
<linux-phy@lists.infradead.org>, <devicetree@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-rockchip@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <jonas@kwiboo.se>
Subject: Re: [PATCH v2 3/5] dt-bindings: phy: rockchip,inno-usb2phy: Add compatible for RK3528
Date: Wed, 13 May 2026 11:09:58 +0200 [thread overview]
Message-ID: <DIHFJX03WWI4.1F9FMM0HOCPK@cknow-tech.com> (raw)
In-Reply-To: <20260505170410.3265305-4-heiko@sntech.de>
Hi Heiko,
On Tue May 5, 2026 at 7:04 PM CEST, Heiko Stuebner wrote:
> From: Jonas Karlman <jonas@kwiboo.se>
>
> The embedded USB2 PHY on RK3528 is very similar to the one in RK3568,
> the main difference being that it only uses two clocks instead of three.
>
> Add compatible to support the USB2 PHY in RK3528.
>
> Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
> Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> ---
> .../bindings/phy/rockchip,inno-usb2phy.yaml | 30 ++++++++++++++++---
> 1 file changed, 26 insertions(+), 4 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml b/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> index b95c9e3e44fe..f50fc69fbbe4 100644
> --- a/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> +++ b/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> @@ -20,6 +20,7 @@ properties:
> - rockchip,rk3328-usb2phy
> - rockchip,rk3366-usb2phy
> - rockchip,rk3399-usb2phy
> + - rockchip,rk3528-usb2phy
> - rockchip,rk3562-usb2phy
> - rockchip,rk3568-usb2phy
> - rockchip,rk3576-usb2phy
> @@ -41,11 +42,15 @@ properties:
> maxItems: 3
>
> clock-names:
> - minItems: 1
> - items:
> + oneOf:
> - const: phyclk
> - - const: aclk
> - - const: aclk_slv
> + - items:
> + - const: phyclk
> + - const: pclk
> + - items:
> + - const: phyclk
> + - const: aclk
> + - const: aclk_slv
>
> assigned-clocks:
> description:
> @@ -65,6 +70,9 @@ properties:
> description: Muxed interrupt for both ports
> maxItems: 1
>
> + power-domains:
> + maxItems: 1
> +
The commit message talks about (the differences in) clocks, but says
nothing about power-domains. Shouldn't that be mentioned and/or split
off into its own patch? (FWIW: I like the change itself)
Cheers,
Diederik
> resets:
> maxItems: 2
>
> @@ -150,6 +158,7 @@ allOf:
> compatible:
> contains:
> enum:
> + - rockchip,rk3528-usb2phy
> - rockchip,rk3568-usb2phy
> - rockchip,rv1108-usb2phy
> then:
> @@ -218,6 +227,19 @@ allOf:
> clock-names:
> maxItems: 1
>
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - rockchip,rk3528-usb2phy
> + then:
> + properties:
> + clocks:
> + minItems: 2
> + clock-names:
> + minItems: 2
> +
> - if:
> properties:
> compatible:
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
WARNING: multiple messages have this Message-ID (diff)
From: "Diederik de Haas" <diederik@cknow-tech.com>
To: "Heiko Stuebner" <heiko@sntech.de>, <vkoul@kernel.org>
Cc: <neil.armstrong@linaro.org>, <robh@kernel.org>,
<krzk+dt@kernel.org>, <conor+dt@kernel.org>,
<linux-phy@lists.infradead.org>, <devicetree@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-rockchip@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <jonas@kwiboo.se>
Subject: Re: [PATCH v2 3/5] dt-bindings: phy: rockchip,inno-usb2phy: Add compatible for RK3528
Date: Wed, 13 May 2026 11:09:58 +0200 [thread overview]
Message-ID: <DIHFJX03WWI4.1F9FMM0HOCPK@cknow-tech.com> (raw)
In-Reply-To: <20260505170410.3265305-4-heiko@sntech.de>
Hi Heiko,
On Tue May 5, 2026 at 7:04 PM CEST, Heiko Stuebner wrote:
> From: Jonas Karlman <jonas@kwiboo.se>
>
> The embedded USB2 PHY on RK3528 is very similar to the one in RK3568,
> the main difference being that it only uses two clocks instead of three.
>
> Add compatible to support the USB2 PHY in RK3528.
>
> Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
> Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> ---
> .../bindings/phy/rockchip,inno-usb2phy.yaml | 30 ++++++++++++++++---
> 1 file changed, 26 insertions(+), 4 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml b/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> index b95c9e3e44fe..f50fc69fbbe4 100644
> --- a/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> +++ b/Documentation/devicetree/bindings/phy/rockchip,inno-usb2phy.yaml
> @@ -20,6 +20,7 @@ properties:
> - rockchip,rk3328-usb2phy
> - rockchip,rk3366-usb2phy
> - rockchip,rk3399-usb2phy
> + - rockchip,rk3528-usb2phy
> - rockchip,rk3562-usb2phy
> - rockchip,rk3568-usb2phy
> - rockchip,rk3576-usb2phy
> @@ -41,11 +42,15 @@ properties:
> maxItems: 3
>
> clock-names:
> - minItems: 1
> - items:
> + oneOf:
> - const: phyclk
> - - const: aclk
> - - const: aclk_slv
> + - items:
> + - const: phyclk
> + - const: pclk
> + - items:
> + - const: phyclk
> + - const: aclk
> + - const: aclk_slv
>
> assigned-clocks:
> description:
> @@ -65,6 +70,9 @@ properties:
> description: Muxed interrupt for both ports
> maxItems: 1
>
> + power-domains:
> + maxItems: 1
> +
The commit message talks about (the differences in) clocks, but says
nothing about power-domains. Shouldn't that be mentioned and/or split
off into its own patch? (FWIW: I like the change itself)
Cheers,
Diederik
> resets:
> maxItems: 2
>
> @@ -150,6 +158,7 @@ allOf:
> compatible:
> contains:
> enum:
> + - rockchip,rk3528-usb2phy
> - rockchip,rk3568-usb2phy
> - rockchip,rv1108-usb2phy
> then:
> @@ -218,6 +227,19 @@ allOf:
> clock-names:
> maxItems: 1
>
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - rockchip,rk3528-usb2phy
> + then:
> + properties:
> + clocks:
> + minItems: 2
> + clock-names:
> + minItems: 2
> +
> - if:
> properties:
> compatible:
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
next prev parent reply other threads:[~2026-05-13 9:10 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-05 17:04 [PATCH v2 0/5] rockchip: Add USB 2.0 support for RK3528 Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` [PATCH v2 1/5] dt-bindings: phy: rockchip,inno-usb2phy: Require GRF for RK3568/RV1108 Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` [PATCH v2 2/5] phy: rockchip: inno-usb2: Simplify rockchip,usbgrf handling Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-06 14:42 ` neil.armstrong
2026-05-06 14:42 ` neil.armstrong
2026-05-06 14:42 ` neil.armstrong
2026-05-05 17:04 ` [PATCH v2 3/5] dt-bindings: phy: rockchip,inno-usb2phy: Add compatible for RK3528 Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-13 9:09 ` Diederik de Haas [this message]
2026-05-13 9:09 ` Diederik de Haas
2026-05-13 9:09 ` Diederik de Haas
2026-05-05 17:04 ` [PATCH v2 4/5] phy: rockchip: inno-usb2: Add clkout_ctl_phy support Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-06 14:45 ` neil.armstrong
2026-05-06 14:45 ` neil.armstrong
2026-05-06 14:45 ` neil.armstrong
2026-05-14 16:17 ` Vinod Koul
2026-05-14 16:17 ` Vinod Koul
2026-05-14 16:17 ` Vinod Koul
2026-05-27 10:46 ` Heiko Stuebner
2026-05-27 10:46 ` Heiko Stuebner
2026-05-27 10:46 ` Heiko Stuebner
2026-05-05 17:04 ` [PATCH v2 5/5] phy: rockchip: inno-usb2: Add support for RK3528 Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-05 17:04 ` Heiko Stuebner
2026-05-06 14:45 ` neil.armstrong
2026-05-06 14:45 ` neil.armstrong
2026-05-06 14:45 ` neil.armstrong
2026-05-14 16:17 ` [PATCH v2 0/5] rockchip: Add USB 2.0 " Vinod Koul
2026-05-14 16:17 ` Vinod Koul
2026-05-14 16:17 ` Vinod Koul
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DIHFJX03WWI4.1F9FMM0HOCPK@cknow-tech.com \
--to=diederik@cknow-tech.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=heiko@sntech.de \
--cc=jonas@kwiboo.se \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=neil.armstrong@linaro.org \
--cc=robh@kernel.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.