From: Krzysztof Kozlowski <krzk@kernel.org>
To: Peter Geis <pgwipeout@gmail.com>, Heiko Stuebner <heiko@sntech.de>
Cc: zyw@rock-chips.com, kever.yang@rock-chips.com,
frank.wang@rock-chips.com, william.wu@rock-chips.com,
wulf@rock-chips.com, linux-rockchip@lists.infradead.org,
Conor Dooley <conor+dt@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Rob Herring <robh@kernel.org>, Vinod Koul <vkoul@kernel.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-phy@lists.infradead.org
Subject: Re: [RFC PATCH v1 2/6] dt-bindings: phy: rockchip: add rk3328 usb3 phy
Date: Thu, 16 Jan 2025 14:08:03 +0100 [thread overview]
Message-ID: <fe006de3-16eb-4c20-8e8e-da5ff5531c6f@kernel.org> (raw)
In-Reply-To: <20250115012628.1035928-3-pgwipeout@gmail.com>
On 15/01/2025 02:26, Peter Geis wrote:
> Add documentation for the usb3 phy as implemented on the rk3328 SoC.
>
> Signed-off-by: Peter Geis <pgwipeout@gmail.com>
> ---
>
> .../bindings/phy/rockchip,inno-usb3phy.yaml | 166 ++++++++++++++++++
> 1 file changed, 166 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
>
> diff --git a/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml b/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
> new file mode 100644
> index 000000000000..cde489ca87ab
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
> @@ -0,0 +1,166 @@
> +# SPDX-License-Identifier: GPL-2.0-only
Wrong license.
Please run scripts/checkpatch.pl and fix reported warnings. After that,
run also `scripts/checkpatch.pl --strict` and (probably) fix more
warnings. Some warnings can be ignored, especially from --strict run,
but the code here looks like it needs a fix. Feel free to get in touch
if the warning is not clear.
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/phy/rockchip,inno-usb3phy.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Rockchip USB 3.0 phy with Innosilicon IP block
> +
> +maintainers:
> + - Heiko Stuebner <heiko@sntech.de>
> +
> +properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy
Why is this binding entirely different than existing usb2 phy? Nothing
in common? This looks like made for driver and both - driver and binding
- duplicating a lot.
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + minItems: 3
Drop
> + maxItems: 3
> +
> + clock-names:
> + items:
> + - const: refclk-usb3otg
ref
> + - const: usb3phy-otg
otg
> + - const: usb3phy-pipe
pipe
> +
> + interrupts:
> + minItems: 4
You code here randomly. reg has only maxItems, clocks have both and this
have only minItems. Does not make sense. If you get it wrong, I would
assume you repeat the same mistake but here it is like randomly chosen
pieces. And this is making me wonder whether this was not sent too fast.
Anyway: only maxItems.
> +
> + interrupt-names:
> + items:
> + - const: bvalid
> + - const: id
> + - const: linestate
> + - const: rxdet
> +
> + resets:
> + minItems: 6
maxItems instead
> +
> + reset-names:
> + items:
> + - const: usb3phy-u2-por
> + - const: usb3phy-u3-por
> + - const: usb3phy-pipe-mac
> + - const: usb3phy-utmi-mac
> + - const: usb3phy-utmi-apb
> + - const: usb3phy-pipe-apb
> +
> + "#address-cells":
> + const: 2
> +
> + "#size-cells":
> + const: 2
> +
> + ranges: true
> +
> +patternProperties:
> +
Drop blank line
> + utmi-port@[0-9a-f]+$:
This wasn't tested. Missing quotes, missing starting anchor.
> + type: object
Explain what are the children here - description.
> + additionalProperties: false
> +
> + properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy-utmi
> +
> + reg:
> + maxItems: 1
> +
> + "#phy-cells":
> + const: 0
Does not look correct. Your parent device is the phy, not child. Why do
you create children per each type of phy?
> +
> + phy-supply:
> + description:
> + Phandle to a regulator that provides power to VBUS.
> + See ./phy-bindings.txt for details.
> +
> + required:
> + - compatible
> + - reg
> + - "#phy-cells"
> +
> + pipe-port@[0-9a-f]+$:
> + type: object
> + additionalProperties: false
> +
> + properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy-pipe
> +
> + reg:
> + maxItems: 1
> +
> + "#phy-cells":
> + const: 0
> +
> + phy-supply:
> + description:
> + Phandle to a regulator that provides power to VBUS.
> + See ./phy-bindings.txt for details.
Drop "see ....".
> +
> + required:
> + - compatible
> + - reg
> + - "#phy-cells"
> +
> +required:
> + - compatible
> + - reg
> + - clocks
> + - clock-names
> + - interrupts
> + - interrupt-names
> + - resets
> + - reset-names
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/rk3328-cru.h>
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> + #include <dt-bindings/interrupt-controller/irq.h>
> + soc {
> + #address-cells = <2>;
> + #size-cells = <2>;
> +
> + usb3phy: usb3-phy@ff460000 {
> + compatible = "rockchip,rk3328-usb3phy";
> + reg = <0x0 0xff460000 0x0 0x10000>;
> + clocks = <&cru SCLK_REF_USB3OTG>, <&cru PCLK_USB3PHY_OTG>, <&cru PCLK_USB3PHY_PIPE>;
That's way over the limit. Wrapping is at 80.
> + clock-names = "refclk-usb3otg", "usb3phy-otg", "usb3phy-pipe";
> + interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
> + interrupt-names = "bvalid", "id", "linestate", "rxdet";
Best regards,
Krzysztof
WARNING: multiple messages have this Message-ID (diff)
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Peter Geis <pgwipeout@gmail.com>, Heiko Stuebner <heiko@sntech.de>
Cc: zyw@rock-chips.com, kever.yang@rock-chips.com,
frank.wang@rock-chips.com, william.wu@rock-chips.com,
wulf@rock-chips.com, linux-rockchip@lists.infradead.org,
Conor Dooley <conor+dt@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Rob Herring <robh@kernel.org>, Vinod Koul <vkoul@kernel.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-phy@lists.infradead.org
Subject: Re: [RFC PATCH v1 2/6] dt-bindings: phy: rockchip: add rk3328 usb3 phy
Date: Thu, 16 Jan 2025 14:08:03 +0100 [thread overview]
Message-ID: <fe006de3-16eb-4c20-8e8e-da5ff5531c6f@kernel.org> (raw)
In-Reply-To: <20250115012628.1035928-3-pgwipeout@gmail.com>
On 15/01/2025 02:26, Peter Geis wrote:
> Add documentation for the usb3 phy as implemented on the rk3328 SoC.
>
> Signed-off-by: Peter Geis <pgwipeout@gmail.com>
> ---
>
> .../bindings/phy/rockchip,inno-usb3phy.yaml | 166 ++++++++++++++++++
> 1 file changed, 166 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
>
> diff --git a/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml b/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
> new file mode 100644
> index 000000000000..cde489ca87ab
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
> @@ -0,0 +1,166 @@
> +# SPDX-License-Identifier: GPL-2.0-only
Wrong license.
Please run scripts/checkpatch.pl and fix reported warnings. After that,
run also `scripts/checkpatch.pl --strict` and (probably) fix more
warnings. Some warnings can be ignored, especially from --strict run,
but the code here looks like it needs a fix. Feel free to get in touch
if the warning is not clear.
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/phy/rockchip,inno-usb3phy.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Rockchip USB 3.0 phy with Innosilicon IP block
> +
> +maintainers:
> + - Heiko Stuebner <heiko@sntech.de>
> +
> +properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy
Why is this binding entirely different than existing usb2 phy? Nothing
in common? This looks like made for driver and both - driver and binding
- duplicating a lot.
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + minItems: 3
Drop
> + maxItems: 3
> +
> + clock-names:
> + items:
> + - const: refclk-usb3otg
ref
> + - const: usb3phy-otg
otg
> + - const: usb3phy-pipe
pipe
> +
> + interrupts:
> + minItems: 4
You code here randomly. reg has only maxItems, clocks have both and this
have only minItems. Does not make sense. If you get it wrong, I would
assume you repeat the same mistake but here it is like randomly chosen
pieces. And this is making me wonder whether this was not sent too fast.
Anyway: only maxItems.
> +
> + interrupt-names:
> + items:
> + - const: bvalid
> + - const: id
> + - const: linestate
> + - const: rxdet
> +
> + resets:
> + minItems: 6
maxItems instead
> +
> + reset-names:
> + items:
> + - const: usb3phy-u2-por
> + - const: usb3phy-u3-por
> + - const: usb3phy-pipe-mac
> + - const: usb3phy-utmi-mac
> + - const: usb3phy-utmi-apb
> + - const: usb3phy-pipe-apb
> +
> + "#address-cells":
> + const: 2
> +
> + "#size-cells":
> + const: 2
> +
> + ranges: true
> +
> +patternProperties:
> +
Drop blank line
> + utmi-port@[0-9a-f]+$:
This wasn't tested. Missing quotes, missing starting anchor.
> + type: object
Explain what are the children here - description.
> + additionalProperties: false
> +
> + properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy-utmi
> +
> + reg:
> + maxItems: 1
> +
> + "#phy-cells":
> + const: 0
Does not look correct. Your parent device is the phy, not child. Why do
you create children per each type of phy?
> +
> + phy-supply:
> + description:
> + Phandle to a regulator that provides power to VBUS.
> + See ./phy-bindings.txt for details.
> +
> + required:
> + - compatible
> + - reg
> + - "#phy-cells"
> +
> + pipe-port@[0-9a-f]+$:
> + type: object
> + additionalProperties: false
> +
> + properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy-pipe
> +
> + reg:
> + maxItems: 1
> +
> + "#phy-cells":
> + const: 0
> +
> + phy-supply:
> + description:
> + Phandle to a regulator that provides power to VBUS.
> + See ./phy-bindings.txt for details.
Drop "see ....".
> +
> + required:
> + - compatible
> + - reg
> + - "#phy-cells"
> +
> +required:
> + - compatible
> + - reg
> + - clocks
> + - clock-names
> + - interrupts
> + - interrupt-names
> + - resets
> + - reset-names
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/rk3328-cru.h>
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> + #include <dt-bindings/interrupt-controller/irq.h>
> + soc {
> + #address-cells = <2>;
> + #size-cells = <2>;
> +
> + usb3phy: usb3-phy@ff460000 {
> + compatible = "rockchip,rk3328-usb3phy";
> + reg = <0x0 0xff460000 0x0 0x10000>;
> + clocks = <&cru SCLK_REF_USB3OTG>, <&cru PCLK_USB3PHY_OTG>, <&cru PCLK_USB3PHY_PIPE>;
That's way over the limit. Wrapping is at 80.
> + clock-names = "refclk-usb3otg", "usb3phy-otg", "usb3phy-pipe";
> + interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
> + interrupt-names = "bvalid", "id", "linestate", "rxdet";
Best regards,
Krzysztof
--
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: Krzysztof Kozlowski <krzk@kernel.org>
To: Peter Geis <pgwipeout@gmail.com>, Heiko Stuebner <heiko@sntech.de>
Cc: zyw@rock-chips.com, kever.yang@rock-chips.com,
frank.wang@rock-chips.com, william.wu@rock-chips.com,
wulf@rock-chips.com, linux-rockchip@lists.infradead.org,
Conor Dooley <conor+dt@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Rob Herring <robh@kernel.org>, Vinod Koul <vkoul@kernel.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-phy@lists.infradead.org
Subject: Re: [RFC PATCH v1 2/6] dt-bindings: phy: rockchip: add rk3328 usb3 phy
Date: Thu, 16 Jan 2025 14:08:03 +0100 [thread overview]
Message-ID: <fe006de3-16eb-4c20-8e8e-da5ff5531c6f@kernel.org> (raw)
In-Reply-To: <20250115012628.1035928-3-pgwipeout@gmail.com>
On 15/01/2025 02:26, Peter Geis wrote:
> Add documentation for the usb3 phy as implemented on the rk3328 SoC.
>
> Signed-off-by: Peter Geis <pgwipeout@gmail.com>
> ---
>
> .../bindings/phy/rockchip,inno-usb3phy.yaml | 166 ++++++++++++++++++
> 1 file changed, 166 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
>
> diff --git a/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml b/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
> new file mode 100644
> index 000000000000..cde489ca87ab
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/rockchip,inno-usb3phy.yaml
> @@ -0,0 +1,166 @@
> +# SPDX-License-Identifier: GPL-2.0-only
Wrong license.
Please run scripts/checkpatch.pl and fix reported warnings. After that,
run also `scripts/checkpatch.pl --strict` and (probably) fix more
warnings. Some warnings can be ignored, especially from --strict run,
but the code here looks like it needs a fix. Feel free to get in touch
if the warning is not clear.
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/phy/rockchip,inno-usb3phy.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Rockchip USB 3.0 phy with Innosilicon IP block
> +
> +maintainers:
> + - Heiko Stuebner <heiko@sntech.de>
> +
> +properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy
Why is this binding entirely different than existing usb2 phy? Nothing
in common? This looks like made for driver and both - driver and binding
- duplicating a lot.
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + minItems: 3
Drop
> + maxItems: 3
> +
> + clock-names:
> + items:
> + - const: refclk-usb3otg
ref
> + - const: usb3phy-otg
otg
> + - const: usb3phy-pipe
pipe
> +
> + interrupts:
> + minItems: 4
You code here randomly. reg has only maxItems, clocks have both and this
have only minItems. Does not make sense. If you get it wrong, I would
assume you repeat the same mistake but here it is like randomly chosen
pieces. And this is making me wonder whether this was not sent too fast.
Anyway: only maxItems.
> +
> + interrupt-names:
> + items:
> + - const: bvalid
> + - const: id
> + - const: linestate
> + - const: rxdet
> +
> + resets:
> + minItems: 6
maxItems instead
> +
> + reset-names:
> + items:
> + - const: usb3phy-u2-por
> + - const: usb3phy-u3-por
> + - const: usb3phy-pipe-mac
> + - const: usb3phy-utmi-mac
> + - const: usb3phy-utmi-apb
> + - const: usb3phy-pipe-apb
> +
> + "#address-cells":
> + const: 2
> +
> + "#size-cells":
> + const: 2
> +
> + ranges: true
> +
> +patternProperties:
> +
Drop blank line
> + utmi-port@[0-9a-f]+$:
This wasn't tested. Missing quotes, missing starting anchor.
> + type: object
Explain what are the children here - description.
> + additionalProperties: false
> +
> + properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy-utmi
> +
> + reg:
> + maxItems: 1
> +
> + "#phy-cells":
> + const: 0
Does not look correct. Your parent device is the phy, not child. Why do
you create children per each type of phy?
> +
> + phy-supply:
> + description:
> + Phandle to a regulator that provides power to VBUS.
> + See ./phy-bindings.txt for details.
> +
> + required:
> + - compatible
> + - reg
> + - "#phy-cells"
> +
> + pipe-port@[0-9a-f]+$:
> + type: object
> + additionalProperties: false
> +
> + properties:
> + compatible:
> + enum:
> + - rockchip,rk3328-usb3phy-pipe
> +
> + reg:
> + maxItems: 1
> +
> + "#phy-cells":
> + const: 0
> +
> + phy-supply:
> + description:
> + Phandle to a regulator that provides power to VBUS.
> + See ./phy-bindings.txt for details.
Drop "see ....".
> +
> + required:
> + - compatible
> + - reg
> + - "#phy-cells"
> +
> +required:
> + - compatible
> + - reg
> + - clocks
> + - clock-names
> + - interrupts
> + - interrupt-names
> + - resets
> + - reset-names
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/rk3328-cru.h>
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> + #include <dt-bindings/interrupt-controller/irq.h>
> + soc {
> + #address-cells = <2>;
> + #size-cells = <2>;
> +
> + usb3phy: usb3-phy@ff460000 {
> + compatible = "rockchip,rk3328-usb3phy";
> + reg = <0x0 0xff460000 0x0 0x10000>;
> + clocks = <&cru SCLK_REF_USB3OTG>, <&cru PCLK_USB3PHY_OTG>, <&cru PCLK_USB3PHY_PIPE>;
That's way over the limit. Wrapping is at 80.
> + clock-names = "refclk-usb3otg", "usb3phy-otg", "usb3phy-pipe";
> + interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
> + interrupt-names = "bvalid", "id", "linestate", "rxdet";
Best regards,
Krzysztof
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
next prev parent reply other threads:[~2025-01-16 13:11 UTC|newest]
Thread overview: 112+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-15 1:26 [RFC PATCH v1 0/6] rockchip: add a functional usb3 phy driver for rk3328 Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 1:26 ` [RFC PATCH v1 1/6] clk: rockchip: fix wrong clk_ref_usb3otg parent " Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 1:26 ` [RFC PATCH v1 2/6] dt-bindings: phy: rockchip: add rk3328 usb3 phy Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-16 13:08 ` Krzysztof Kozlowski [this message]
2025-01-16 13:08 ` Krzysztof Kozlowski
2025-01-16 13:08 ` Krzysztof Kozlowski
2025-01-16 13:32 ` Peter Geis
2025-01-16 13:32 ` Peter Geis
2025-01-16 13:32 ` Peter Geis
2025-01-16 13:59 ` Peter Geis
2025-01-16 13:59 ` Peter Geis
2025-01-16 13:59 ` Peter Geis
2025-01-18 9:06 ` Krzysztof Kozlowski
2025-01-18 9:06 ` Krzysztof Kozlowski
2025-01-18 9:06 ` Krzysztof Kozlowski
2025-01-15 1:26 ` [RFC PATCH v1 3/6] phy: rockchip: add driver for " Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 11:24 ` Piotr Oniszczuk
2025-01-15 11:24 ` Piotr Oniszczuk
2025-01-15 11:24 ` Piotr Oniszczuk
2025-01-16 14:09 ` Peter Geis
2025-01-16 14:09 ` Peter Geis
2025-01-16 14:09 ` Peter Geis
2025-01-16 12:59 ` Krzysztof Kozlowski
2025-01-16 12:59 ` Krzysztof Kozlowski
2025-01-16 12:59 ` Krzysztof Kozlowski
2025-01-16 13:14 ` Peter Geis
2025-01-16 13:14 ` Peter Geis
2025-01-16 13:14 ` Peter Geis
2025-01-16 15:26 ` Diederik de Haas
2025-01-16 15:26 ` Diederik de Haas
2025-01-16 15:26 ` Diederik de Haas
2025-01-16 15:57 ` Peter Geis
2025-01-16 15:57 ` Peter Geis
2025-01-16 15:57 ` Peter Geis
2025-01-15 1:26 ` [RFC PATCH v1 4/6] arm64: dts: rockchip: add rk3328 usb3 phy node Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-16 13:01 ` Krzysztof Kozlowski
2025-01-16 13:01 ` Krzysztof Kozlowski
2025-01-16 16:53 ` Diederik de Haas
2025-01-16 16:53 ` Diederik de Haas
2025-01-17 4:10 ` Dragan Simic
2025-01-17 4:10 ` Dragan Simic
2025-01-18 8:46 ` Krzysztof Kozlowski
2025-01-18 8:46 ` Krzysztof Kozlowski
2025-01-18 9:25 ` Dragan Simic
2025-01-18 9:25 ` Dragan Simic
2025-01-18 9:31 ` Krzysztof Kozlowski
2025-01-18 9:31 ` Krzysztof Kozlowski
2025-01-18 9:43 ` Dragan Simic
2025-01-18 9:43 ` Dragan Simic
2025-01-18 9:52 ` Krzysztof Kozlowski
2025-01-18 9:52 ` Krzysztof Kozlowski
2025-01-18 10:10 ` Dragan Simic
2025-01-18 10:10 ` Dragan Simic
2025-01-18 10:29 ` Krzysztof Kozlowski
2025-01-18 10:29 ` Krzysztof Kozlowski
2025-01-18 10:45 ` Dragan Simic
2025-01-18 10:45 ` Dragan Simic
2025-01-18 14:22 ` Peter Geis
2025-01-18 14:22 ` Peter Geis
2025-01-18 8:41 ` Krzysztof Kozlowski
2025-01-18 8:41 ` Krzysztof Kozlowski
2025-01-18 9:19 ` Krzysztof Kozlowski
2025-01-18 9:19 ` Krzysztof Kozlowski
2025-01-18 9:34 ` Dragan Simic
2025-01-18 9:34 ` Dragan Simic
2025-01-18 15:55 ` Diederik de Haas
2025-01-18 15:55 ` Diederik de Haas
2025-01-15 1:26 ` [RFC PATCH v1 5/6] arm64: dts: rockchip: enable the usb3 phy on rk3328-roc boards Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 1:26 ` [RFC PATCH v1 6/6] arm64: dts: rockchip: enable the usb3 phy on remaining rk3328 boards Peter Geis
2025-01-15 1:26 ` Peter Geis
2025-01-15 11:22 ` [RFC PATCH v1 0/6] rockchip: add a functional usb3 phy driver for rk3328 Piotr Oniszczuk
2025-01-15 11:22 ` Piotr Oniszczuk
2025-01-15 11:22 ` Piotr Oniszczuk
2025-01-15 12:25 ` Peter Geis
2025-01-15 12:25 ` Peter Geis
2025-01-15 12:25 ` Peter Geis
2025-01-15 12:35 ` Piotr Oniszczuk
2025-01-15 12:35 ` Piotr Oniszczuk
2025-01-15 12:35 ` Piotr Oniszczuk
2025-01-15 13:15 ` Peter Geis
2025-01-15 13:15 ` Peter Geis
2025-01-15 13:15 ` Peter Geis
2025-01-15 13:25 ` Piotr Oniszczuk
2025-01-15 13:25 ` Piotr Oniszczuk
2025-01-15 13:25 ` Piotr Oniszczuk
2025-01-16 14:02 ` Peter Geis
2025-01-16 14:02 ` Peter Geis
2025-01-16 14:02 ` Peter Geis
2025-01-16 14:35 ` Piotr Oniszczuk
2025-01-16 14:35 ` Piotr Oniszczuk
2025-01-16 14:35 ` Piotr Oniszczuk
2025-01-16 16:00 ` Peter Geis
2025-01-16 16:00 ` Peter Geis
2025-01-16 16:00 ` Peter Geis
2025-01-18 9:08 ` Krzysztof Kozlowski
2025-01-18 9:08 ` Krzysztof Kozlowski
2025-01-18 9:08 ` Krzysztof Kozlowski
2025-01-18 14:35 ` Peter Geis
2025-01-18 14:35 ` Peter Geis
2025-01-18 14:35 ` Peter Geis
2025-02-26 19:49 ` (subset) " Heiko Stuebner
2025-02-26 19:49 ` Heiko Stuebner
2025-02-26 19:49 ` Heiko Stuebner
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=fe006de3-16eb-4c20-8e8e-da5ff5531c6f@kernel.org \
--to=krzk@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=frank.wang@rock-chips.com \
--cc=heiko@sntech.de \
--cc=kever.yang@rock-chips.com \
--cc=kishon@kernel.org \
--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=pgwipeout@gmail.com \
--cc=robh@kernel.org \
--cc=vkoul@kernel.org \
--cc=william.wu@rock-chips.com \
--cc=wulf@rock-chips.com \
--cc=zyw@rock-chips.com \
/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.