From: Frank Li <Frank.li@nxp.com>
To: Xu Yang <xu.yang_2@nxp.com>
Cc: robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
s.hauer@pengutronix.de, kernel@pengutronix.de,
festevam@gmail.com, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, jun.li@nxp.com
Subject: Re: [PATCH 1/2] arm64: dts: imx94: add USB nodes
Date: Thu, 5 Mar 2026 10:35:25 -0500 [thread overview]
Message-ID: <aamivVBK7Aygh_cJ@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20260305075527.1116943-1-xu.yang_2@nxp.com>
On Thu, Mar 05, 2026 at 03:55:26PM +0800, Xu Yang wrote:
> add USB2.0, USB3.0 controller and USB phy nodes.
>
> Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
> ---
> arch/arm64/boot/dts/freescale/imx94.dtsi | 61 ++++++++++++++++++++++++
> 1 file changed, 61 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/imx94.dtsi b/arch/arm64/boot/dts/freescale/imx94.dtsi
> index d2f31c8caf6e..8384166400e9 100644
> --- a/arch/arm64/boot/dts/freescale/imx94.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx94.dtsi
> @@ -161,6 +161,13 @@ its: msi-controller@48040000 {
> };
> };
>
> + usbphynop: usbphynop {
> + compatible = "usb-nop-xceiv";
> + clocks = <&scmi_clk IMX94_CLK_HSIO>;
> + clock-names = "main_clk";
> + #phy-cells = <0>;
> + };
> +
move these to after clock-sai4-mclk1, no address block is before @hex node.
Frank
> soc {
> compatible = "simple-bus";
> ranges;
> @@ -1223,6 +1230,60 @@ wdog3: watchdog@49220000 {
> };
> };
>
> + usb3: usb@4c100000 {
> + compatible = "nxp,imx94-dwc3", "nxp,imx8mp-dwc3";
> + reg = <0x0 0x4c100000 0x0 0x10000>,
> + <0x0 0x4c010010 0x0 0x04>,
> + <0x0 0x4c1f0000 0x0 0x20>;
> + reg-names = "core", "blkctl", "glue";
> + clocks = <&scmi_clk IMX94_CLK_HSIO>,
> + <&scmi_clk IMX94_CLK_HSIO>,
> + <&scmi_clk IMX94_CLK_24M>,
> + <&scmi_clk IMX94_CLK_32K>;
> + clock-names = "hsio", "bus_early", "ref", "suspend";
> + interrupts = <GIC_SPI 180 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SPI 386 IRQ_TYPE_LEVEL_HIGH>;
> + interrupt-names = "dwc_usb3", "wakeup";
> + power-domains = <&scmi_devpd IMX94_PD_HSIO_TOP>;
> + phys = <&usb3_phy>, <&usb3_phy>;
> + phy-names = "usb2-phy", "usb3-phy";
> + snps,gfladj-refclk-lpm-sel-quirk;
> + snps,parkmode-disable-ss-quirk;
> + status = "disabled";
> + };
> +
> + usb3_phy: phy@4c1f0040 {
> + compatible = "fsl,imx95-usb-phy", "fsl,imx8mp-usb-phy";
> + reg = <0x0 0x4c1f0040 0x0 0x40>,
> + <0x0 0x4c1fc000 0x0 0x100>;
> + clocks = <&scmi_clk IMX94_CLK_HSIO>;
> + clock-names = "phy";
> + #phy-cells = <0>;
> + power-domains = <&scmi_devpd IMX94_PD_HSIO_TOP>;
> + status = "disabled";
> + };
> +
> + usb2: usb@4c200000 {
> + compatible = "fsl,imx95-usb", "fsl,imx7d-usb", "fsl,imx27-usb";
> + reg = <0x0 0x4c200000 0x0 0x200>;
> + interrupts = <GIC_SPI 181 IRQ_TYPE_LEVEL_HIGH>,
> + <GIC_SPI 387 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&scmi_clk IMX94_CLK_HSIO>,
> + <&scmi_clk IMX94_CLK_32K>;
> + clock-names = "usb_ctrl_root", "usb_wakeup";
> + power-domains = <&scmi_devpd IMX94_PD_HSIO_TOP>;
> + phys = <&usbphynop>;
> + fsl,usbmisc = <&usbmisc 0>;
> + status = "disabled";
> + };
> +
> + usbmisc: usbmisc@4c200200 {
> + compatible = "fsl,imx95-usbmisc", "fsl,imx7d-usbmisc", "fsl,imx6q-usbmisc";
> + reg = <0x0 0x4c200200 0x0 0x200>,
> + <0x0 0x4c010014 0x0 0x04>;
> + #index-cells = <1>;
> + };
> +
> netc_blk_ctrl: system-controller@4ceb0000 {
> compatible = "nxp,imx94-netc-blk-ctrl";
> reg = <0x0 0x4ceb0000 0x0 0x10000>,
> --
> 2.34.1
>
next prev parent reply other threads:[~2026-03-05 15:35 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-05 7:55 [PATCH 1/2] arm64: dts: imx94: add USB nodes Xu Yang
2026-03-05 7:55 ` [PATCH 2/2] arm64: dts: imx943-evk: add Type-C node and enable USB node Xu Yang
2026-03-05 15:42 ` Frank Li
2026-03-06 10:00 ` Xu Yang
2026-03-05 15:35 ` Frank Li [this message]
2026-03-06 10:01 ` [PATCH 1/2] arm64: dts: imx94: add USB nodes Xu Yang
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=aamivVBK7Aygh_cJ@lizhi-Precision-Tower-5810 \
--to=frank.li@nxp.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=jun.li@nxp.com \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=xu.yang_2@nxp.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox