From: Jiayu Du <jiayu.riscv@isrc.iscas.ac.cn>
To: vkoul@kernel.org, gregkh@linuxfoundation.org, conor@kernel.org
Cc: neil.armstrong@linaro.org, robh@kernel.org, krzk+dt@kernel.org,
pjw@kernel.org, palmer@dabbelt.com, aou@eecs.berkeley.edu,
alex@ghiti.fr, linux-phy@lists.infradead.org,
linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 0/4] Add USB support for Canaan K230
Date: Wed, 25 Feb 2026 20:14:46 +0800 [thread overview]
Message-ID: <aZ7ntvit57TaPgyw@duge-virtual-machine> (raw)
In-Reply-To: <aYCLGLvbKZy+WyxI@duge-virtual-machine>
On Mon, Feb 02, 2026 at 07:31:36PM +0800, Jiayu Du wrote:
> On Wed, Jan 21, 2026 at 10:55:21PM +0800, Jiayu Du wrote:
> > Add support for the USB PHY and DWC2 IP which is used by Canaan K230,
> > and made relevant changes to the DTS.
> >
> > This series is based on the initial 100ask K230 DshanPi series [1] which
> > is based on the clock and pinctrl series. Check the details in the link.
> >
> > Link: https://lore.kernel.org/all/20260115060801.16819-1-jiayu.riscv@isrc.iscas.ac.cn/ [1]
> >
> > Changes in v5:
> > - Changed the year of Copyright to 2026.
> > - Add blank line after the declaration of variables
> > - Fix wrong alignment.
> > - Link to v4: https://lore.kernel.org/all/20260120143243.71937-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Changes in v4:
> > - Shrink reg length to match the address/size-cells in k230-usb-phy yaml.
> > - Move all PHY instance creation and initialization from xlate to probe.
> > - Modify xlate function to only perform index lookup for PHY instances.
> > - Define all register base offsets macros at the top of file instead of
> > hard-coding magic numbers directly in probe.
> > - Link to v2: https://lore.kernel.org/all/20260115064223.21926-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Changes in v3:
> > - Please ignore v3.
> >
> > Changes in v2:
> > - Fold the child into the parent in dtsi.
> > - Define one usbphy with phy-cells=1.
> > - Delete the clock of the usbphy as it is not needed.
> > - Link to v1: https://lore.kernel.org/all/20251230023725.15966-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Jiayu Du (4):
> > dt-bindings: phy: Add Canaan K230 USB PHY
> > dt-bindings: usb: dwc2: Add support for Canaan K230 SoC
> > phy: usb: Add driver for Canaan K230 USB 2.0 PHY
> > riscv: dts: canaan: Add syscon and USB nodes for K230
> >
> > .../bindings/phy/canaan,k230-usb-phy.yaml | 35 +++
> > .../devicetree/bindings/usb/dwc2.yaml | 3 +
> > .../boot/dts/canaan/k230-canmv-dshanpi.dts | 17 ++
> > arch/riscv/boot/dts/canaan/k230.dtsi | 35 +++
> > drivers/phy/Kconfig | 1 +
> > drivers/phy/Makefile | 1 +
> > drivers/phy/canaan/Kconfig | 14 +
> > drivers/phy/canaan/Makefile | 2 +
> > drivers/phy/canaan/phy-k230-usb.c | 284 ++++++++++++++++++
> > 9 files changed, 392 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/phy/canaan,k230-usb-phy.yaml
> > create mode 100644 drivers/phy/canaan/Kconfig
> > create mode 100644 drivers/phy/canaan/Makefile
> > create mode 100644 drivers/phy/canaan/phy-k230-usb.c
> >
> > --
> > 2.52.0
> >
> Hello Vinod, could you please take a look at this patch? Thank you!
>
> Regards,
> Jiayu Du
Hi Vinod, will you review this patch? Thank you again!
Regards,
Jiayu Du
>
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv
--
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: Jiayu Du <jiayu.riscv@isrc.iscas.ac.cn>
To: vkoul@kernel.org, gregkh@linuxfoundation.org, conor@kernel.org
Cc: neil.armstrong@linaro.org, robh@kernel.org, krzk+dt@kernel.org,
pjw@kernel.org, palmer@dabbelt.com, aou@eecs.berkeley.edu,
alex@ghiti.fr, linux-phy@lists.infradead.org,
linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 0/4] Add USB support for Canaan K230
Date: Wed, 25 Feb 2026 20:14:46 +0800 [thread overview]
Message-ID: <aZ7ntvit57TaPgyw@duge-virtual-machine> (raw)
In-Reply-To: <aYCLGLvbKZy+WyxI@duge-virtual-machine>
On Mon, Feb 02, 2026 at 07:31:36PM +0800, Jiayu Du wrote:
> On Wed, Jan 21, 2026 at 10:55:21PM +0800, Jiayu Du wrote:
> > Add support for the USB PHY and DWC2 IP which is used by Canaan K230,
> > and made relevant changes to the DTS.
> >
> > This series is based on the initial 100ask K230 DshanPi series [1] which
> > is based on the clock and pinctrl series. Check the details in the link.
> >
> > Link: https://lore.kernel.org/all/20260115060801.16819-1-jiayu.riscv@isrc.iscas.ac.cn/ [1]
> >
> > Changes in v5:
> > - Changed the year of Copyright to 2026.
> > - Add blank line after the declaration of variables
> > - Fix wrong alignment.
> > - Link to v4: https://lore.kernel.org/all/20260120143243.71937-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Changes in v4:
> > - Shrink reg length to match the address/size-cells in k230-usb-phy yaml.
> > - Move all PHY instance creation and initialization from xlate to probe.
> > - Modify xlate function to only perform index lookup for PHY instances.
> > - Define all register base offsets macros at the top of file instead of
> > hard-coding magic numbers directly in probe.
> > - Link to v2: https://lore.kernel.org/all/20260115064223.21926-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Changes in v3:
> > - Please ignore v3.
> >
> > Changes in v2:
> > - Fold the child into the parent in dtsi.
> > - Define one usbphy with phy-cells=1.
> > - Delete the clock of the usbphy as it is not needed.
> > - Link to v1: https://lore.kernel.org/all/20251230023725.15966-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Jiayu Du (4):
> > dt-bindings: phy: Add Canaan K230 USB PHY
> > dt-bindings: usb: dwc2: Add support for Canaan K230 SoC
> > phy: usb: Add driver for Canaan K230 USB 2.0 PHY
> > riscv: dts: canaan: Add syscon and USB nodes for K230
> >
> > .../bindings/phy/canaan,k230-usb-phy.yaml | 35 +++
> > .../devicetree/bindings/usb/dwc2.yaml | 3 +
> > .../boot/dts/canaan/k230-canmv-dshanpi.dts | 17 ++
> > arch/riscv/boot/dts/canaan/k230.dtsi | 35 +++
> > drivers/phy/Kconfig | 1 +
> > drivers/phy/Makefile | 1 +
> > drivers/phy/canaan/Kconfig | 14 +
> > drivers/phy/canaan/Makefile | 2 +
> > drivers/phy/canaan/phy-k230-usb.c | 284 ++++++++++++++++++
> > 9 files changed, 392 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/phy/canaan,k230-usb-phy.yaml
> > create mode 100644 drivers/phy/canaan/Kconfig
> > create mode 100644 drivers/phy/canaan/Makefile
> > create mode 100644 drivers/phy/canaan/phy-k230-usb.c
> >
> > --
> > 2.52.0
> >
> Hello Vinod, could you please take a look at this patch? Thank you!
>
> Regards,
> Jiayu Du
Hi Vinod, will you review this patch? Thank you again!
Regards,
Jiayu Du
>
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: Jiayu Du <jiayu.riscv@isrc.iscas.ac.cn>
To: vkoul@kernel.org, gregkh@linuxfoundation.org, conor@kernel.org
Cc: neil.armstrong@linaro.org, robh@kernel.org, krzk+dt@kernel.org,
pjw@kernel.org, palmer@dabbelt.com, aou@eecs.berkeley.edu,
alex@ghiti.fr, linux-phy@lists.infradead.org,
linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 0/4] Add USB support for Canaan K230
Date: Wed, 25 Feb 2026 20:14:46 +0800 [thread overview]
Message-ID: <aZ7ntvit57TaPgyw@duge-virtual-machine> (raw)
In-Reply-To: <aYCLGLvbKZy+WyxI@duge-virtual-machine>
On Mon, Feb 02, 2026 at 07:31:36PM +0800, Jiayu Du wrote:
> On Wed, Jan 21, 2026 at 10:55:21PM +0800, Jiayu Du wrote:
> > Add support for the USB PHY and DWC2 IP which is used by Canaan K230,
> > and made relevant changes to the DTS.
> >
> > This series is based on the initial 100ask K230 DshanPi series [1] which
> > is based on the clock and pinctrl series. Check the details in the link.
> >
> > Link: https://lore.kernel.org/all/20260115060801.16819-1-jiayu.riscv@isrc.iscas.ac.cn/ [1]
> >
> > Changes in v5:
> > - Changed the year of Copyright to 2026.
> > - Add blank line after the declaration of variables
> > - Fix wrong alignment.
> > - Link to v4: https://lore.kernel.org/all/20260120143243.71937-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Changes in v4:
> > - Shrink reg length to match the address/size-cells in k230-usb-phy yaml.
> > - Move all PHY instance creation and initialization from xlate to probe.
> > - Modify xlate function to only perform index lookup for PHY instances.
> > - Define all register base offsets macros at the top of file instead of
> > hard-coding magic numbers directly in probe.
> > - Link to v2: https://lore.kernel.org/all/20260115064223.21926-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Changes in v3:
> > - Please ignore v3.
> >
> > Changes in v2:
> > - Fold the child into the parent in dtsi.
> > - Define one usbphy with phy-cells=1.
> > - Delete the clock of the usbphy as it is not needed.
> > - Link to v1: https://lore.kernel.org/all/20251230023725.15966-1-jiayu.riscv@isrc.iscas.ac.cn/
> >
> > Jiayu Du (4):
> > dt-bindings: phy: Add Canaan K230 USB PHY
> > dt-bindings: usb: dwc2: Add support for Canaan K230 SoC
> > phy: usb: Add driver for Canaan K230 USB 2.0 PHY
> > riscv: dts: canaan: Add syscon and USB nodes for K230
> >
> > .../bindings/phy/canaan,k230-usb-phy.yaml | 35 +++
> > .../devicetree/bindings/usb/dwc2.yaml | 3 +
> > .../boot/dts/canaan/k230-canmv-dshanpi.dts | 17 ++
> > arch/riscv/boot/dts/canaan/k230.dtsi | 35 +++
> > drivers/phy/Kconfig | 1 +
> > drivers/phy/Makefile | 1 +
> > drivers/phy/canaan/Kconfig | 14 +
> > drivers/phy/canaan/Makefile | 2 +
> > drivers/phy/canaan/phy-k230-usb.c | 284 ++++++++++++++++++
> > 9 files changed, 392 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/phy/canaan,k230-usb-phy.yaml
> > create mode 100644 drivers/phy/canaan/Kconfig
> > create mode 100644 drivers/phy/canaan/Makefile
> > create mode 100644 drivers/phy/canaan/phy-k230-usb.c
> >
> > --
> > 2.52.0
> >
> Hello Vinod, could you please take a look at this patch? Thank you!
>
> Regards,
> Jiayu Du
Hi Vinod, will you review this patch? Thank you again!
Regards,
Jiayu Du
>
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv
next prev parent reply other threads:[~2026-02-25 12:15 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-21 14:55 [PATCH v5 0/4] Add USB support for Canaan K230 Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` [PATCH v5 1/4] dt-bindings: phy: Add Canaan K230 USB PHY Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` [PATCH v5 2/4] dt-bindings: usb: dwc2: Add support for Canaan K230 SoC Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-03-24 13:03 ` Jiayu Du
2026-03-24 13:03 ` Jiayu Du
2026-03-24 13:03 ` Jiayu Du
2026-01-21 14:55 ` [PATCH v5 3/4] phy: usb: Add driver for Canaan K230 USB 2.0 PHY Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` [PATCH v5 4/4] riscv: dts: canaan: Add syscon and USB nodes for K230 Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-01-21 14:55 ` Jiayu Du
2026-02-02 11:31 ` [PATCH v5 0/4] Add USB support for Canaan K230 Jiayu Du
2026-02-02 11:31 ` Jiayu Du
2026-02-02 11:31 ` Jiayu Du
2026-02-25 12:14 ` Jiayu Du [this message]
2026-02-25 12:14 ` Jiayu Du
2026-02-25 12:14 ` Jiayu Du
2026-02-27 15:29 ` (subset) " Vinod Koul
2026-02-27 15:29 ` Vinod Koul
2026-02-27 15:29 ` 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=aZ7ntvit57TaPgyw@duge-virtual-machine \
--to=jiayu.riscv@isrc.iscas.ac.cn \
--cc=alex@ghiti.fr \
--cc=aou@eecs.berkeley.edu \
--cc=conor@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-usb@vger.kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=palmer@dabbelt.com \
--cc=pjw@kernel.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.