From: Yao Zi <ziyao@disroot.org>
To: Ze Huang <huangze@whut.edu.cn>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>, Yixun Lan <dlan@gentoo.org>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Alexandre Ghiti <alex@ghiti.fr>
Cc: linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, spacemit@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] riscv: dts: spacemit: add usb3.0 support for K1
Date: Mon, 28 Apr 2025 08:24:30 +0000 [thread overview]
Message-ID: <aA87PjTsbHxxFOdl@pie.lan> (raw)
In-Reply-To: <20250428-b4-k1-dwc3-v2-v1-2-7cb061abd619@whut.edu.cn>
On Mon, Apr 28, 2025 at 03:38:12PM +0800, Ze Huang wrote:
> Add USB 3.0 support for the SpacemiT K1 SoC, including the
> following components:
>
> - USB 2.0 PHY nodes
> - USB 3.0 combo PHY node
> - USB 3.0 host controller
> - USB 3.0 hub and vbus regulator (usb3_vhub, usb3_vbus)
> - DRAM interconnect node for USB DMA ("dma-mem")
>
> The `usb3_vbus` and `usb3_vhub` regulator node provides a fixed 5V
> supply to power the onboard USB 3.0 hub and usb vbus.
>
> On K1, some DMA transfers from devices to memory use separate buses with
> different DMA address translation rules from the parent node. We express
> this relationship through the interconnects node("dma-mem").
>
> Signed-off-by: Ze Huang <huangze@whut.edu.cn>
> ---
> arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts | 52 +++++++++++++++++++++++
> arch/riscv/boot/dts/spacemit/k1.dtsi | 56 +++++++++++++++++++++++++
> 2 files changed, 108 insertions(+)
>
> diff --git a/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts b/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts
> index 816ef1bc358ec490aff184d5915d680dbd9f00cb..0c0bf572d31e056955eb2ff377c3262271dcc156 100644
> --- a/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts
> +++ b/arch/riscv/boot/dts/spacemit/k1-bananapi-f3.dts
> @@ -28,6 +28,25 @@ led1 {
> default-state = "on";
> };
> };
> +
> + usb3_vhub: regulator-vhub-5v {
> + compatible = "regulator-fixed";
> + regulator-name = "USB30_VHUB";
> + regulator-min-microvolt = <5000000>;
> + regulator-max-microvolt = <5000000>;
> + gpio = <&gpio K1_GPIO(123) GPIO_ACTIVE_HIGH>;
> + enable-active-high;
> + };
> +
> + usb3_vbus: regulator-vbus-5v {
> + compatible = "regulator-fixed";
> + regulator-name = "USB30_VBUS";
> + regulator-min-microvolt = <5000000>;
> + regulator-max-microvolt = <5000000>;
> + regulator-always-on;
> + gpio = <&gpio K1_GPIO(97) GPIO_ACTIVE_HIGH>;
> + enable-active-high;
> + };
> };
>
> &uart0 {
> @@ -35,3 +54,36 @@ &uart0 {
> pinctrl-0 = <&uart0_2_cfg>;
> status = "okay";
> };
> +
> +&usbphy2 {
> + status = "okay";
> +};
> +
> +&combphy {
> + status = "okay";
> +};
> +
> +&usb_dwc3 {
> + dr_mode = "host";
> + phy_type = "utmi";
> + snps,hsphy_interface = "utmi";
> + snps,dis_enblslpm_quirk;
> + snps,dis-u1u2-quirk;
> + snps,dis-u2-freeclk-exists-quirk;
> + snps,dis-del-phy-power-chg-quirk;
> + snps,dis_u2_susphy_quirk;
> + snps,dis_u3_susphy_quirk;
> + snps,dis_rxdet_inp3_quirk;
> + snps,xhci-trb-ent-quirk;
I suspect whether it's the correct place to put these quirks: they look
like IP quirks which are present in every K1 SoC regardless of the
board model, if my understanding is correct they should go into SoC
devicetree.
> + vbus-supply = <&usb3_vbus>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + status = "okay";
> +
> + hub@1 {
> + compatible = "usb2109,817";
> + reg = <0x1>;
> + vdd-supply = <&usb3_vhub>;
> + reset-gpios = <&gpio K1_GPIO(124) GPIO_ACTIVE_LOW>;
> + };
> +};
> diff --git a/arch/riscv/boot/dts/spacemit/k1.dtsi b/arch/riscv/boot/dts/spacemit/k1.dtsi
> index c0cc4b99c9356d550a470291dba9f2625b10f8df..c7b86c850da969e5412ad42c63995cd20b4d0484 100644
> --- a/arch/riscv/boot/dts/spacemit/k1.dtsi
> +++ b/arch/riscv/boot/dts/spacemit/k1.dtsi
> @@ -4,6 +4,8 @@
> */
>
> #include <dt-bindings/clock/spacemit,k1-syscon.h>
> +#include <dt-bindings/gpio/gpio.h>
> +#include <dt-bindings/phy/phy.h>
>
> /dts-v1/;
> / {
> @@ -346,6 +348,13 @@ soc {
> dma-noncoherent;
> ranges;
>
> + dram_range0: dram-range@0 {
> + #address-cells = <2>;
> + #size-cells = <2>;
> + dma-ranges = <0x0 0x00000000 0x0 0x00000000 0x0 0x80000000>;
> + #interconnect-cells = <0>;
> + };
> +
> syscon_rcpu: system-controller@c0880000 {
> compatible = "spacemit,k1-syscon-rcpu";
> reg = <0x0 0xc0880000 0x0 0x2048>;
> @@ -358,6 +367,53 @@ syscon_rcpu2: system-controller@c0888000 {
> #reset-cells = <1>;
> };
>
> + usb_dwc3: usb@c0a00000 {
> + compatible = "spacemit,k1-dwc3", "snps,dwc3";
> + reg = <0x0 0xc0a00000 0x0 0x10000>;
> + clocks = <&syscon_apmu CLK_USB30>;
> + clock-names = "bus_early";
> + resets = <&syscon_apmu RESET_USB3_0>;
> + interrupt-parent = <&plic>;
> + interrupts = <125>;
> + interconnects = <&dram_range0>;
> + interconnect-names = "dma-mem";
> + phys = <&usbphy2>, <&combphy PHY_TYPE_USB3>;
> + phy-names = "usb2-phy", "usb3-phy";
> + status = "disabled";
> + };
> +
> + usbphy0: phy@c0940000 {
> + compatible = "spacemit,usb2-phy";
> + reg = <0x0 0xc0940000 0x0 0x200>;
> + clocks = <&syscon_apmu CLK_USB_AXI>;
> + status = "disabled";
> + };
> +
> + usbphy1: phy@c09c0000 {
> + compatible = "spacemit,usb2-phy";
> + reg = <0x0 0xc09c0000 0x0 0x200>;
> + clocks = <&syscon_apmu CLK_USB_P1>;
> + status = "disabled";
> + };
Why don't add #phy-cells properties to usbphy{0,1} just like usbphy2?
You've claimed #phy-cells as an essential property of
spacemit,k1-usb2-phy nodes in the PHY series and I suspect whether this
passes dtbs_check.
> + usbphy2: phy@0xc0a30000 {
> + compatible = "spacemit,k1-usb2-phy";
> + reg = <0x0 0xc0a30000 0x0 0x200>;
> + clocks = <&syscon_apmu CLK_USB30>;
> + #phy-cells = <0>;
> + status = "disabled";
> + };
> +
> + combphy: phy@c0b10000 {
> + compatible = "spacemit,k1-combphy";
> + reg = <0x0 0xc0b10000 0x0 0x800>,
> + <0x0 0xd4282910 0x0 0x400>;
> + reg-names = "ctrl", "sel";
> + resets = <&syscon_apmu RESET_PCIE0>;
> + #phy-cells = <1>;
> + status = "disabled";
> + };
> +
> syscon_apbc: system-control@d4015000 {
> compatible = "spacemit,k1-syscon-apbc";
> reg = <0x0 0xd4015000 0x0 0x1000>;
>
> --
> 2.49.0
>
>
Best regards,
Yao Zi
next prev parent reply other threads:[~2025-04-28 8:24 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-28 7:38 [PATCH 0/2] Add SpacemiT K1 USB3.0 host controller support Ze Huang
2025-04-28 7:38 ` [PATCH 1/2] dt-bindings: usb: dwc3: add support for SpacemiT K1 Ze Huang
2025-04-28 15:27 ` Rob Herring (Arm)
2025-04-28 7:38 ` [PATCH 2/2] riscv: dts: spacemit: add usb3.0 support for K1 Ze Huang
2025-04-28 7:58 ` Ze Huang
2025-04-28 8:24 ` Yao Zi [this message]
2025-04-28 9:44 ` Ze Huang
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=aA87PjTsbHxxFOdl@pie.lan \
--to=ziyao@disroot.org \
--cc=alex@ghiti.fr \
--cc=aou@eecs.berkeley.edu \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlan@gentoo.org \
--cc=gregkh@linuxfoundation.org \
--cc=huangze@whut.edu.cn \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-usb@vger.kernel.org \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=robh@kernel.org \
--cc=spacemit@lists.linux.dev \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox