From: Vladimir Zapolskiy <vz@mleia.com>
To: Frank Li <Frank.Li@nxp.com>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Piotr Wojtaszczyk <piotr.wojtaszczyk@timesys.com>,
"open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS"
<devicetree@vger.kernel.org>,
"moderated list:ARM/LPC32XX SOC SUPPORT"
<linux-arm-kernel@lists.infradead.org>,
open list <linux-kernel@vger.kernel.org>
Cc: imx@lists.linux.dev
Subject: Re: [PATCH v2 1/5] ARM: dts: lpc32xx: remove usb bus and elevate all children nodes
Date: Sat, 15 Nov 2025 02:20:22 +0200 [thread overview]
Message-ID: <e3ee8d61-d10e-4941-a577-dd6dc24e77a7@mleia.com> (raw)
In-Reply-To: <20251114174712.1206027-1-Frank.Li@nxp.com>
Hi Frank.
On 11/14/25 19:47, Frank Li wrote:
> Remove usb bus and elevate all children nodes because usb bus is not
> existed and only group usb devices logically.
>
> Update register address and related full node name.
>
> Fix below CHECK_DTBS warnings:
> arm/boot/dts/nxp/lpc/lpc3250-ea3250.dtb: usb (simple-bus): $nodename:0: 'usb' does not match '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
> from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
>
> Signed-off-by: Frank Li <Frank.Li@nxp.com>
> ---
> change in v2
> - elevate usb children node
> - fab leave unchange now utils finish discussion.
> ---
> arch/arm/boot/dts/nxp/lpc/lpc32xx.dtsi | 77 ++++++++++++--------------
> 1 file changed, 35 insertions(+), 42 deletions(-)
>
> diff --git a/arch/arm/boot/dts/nxp/lpc/lpc32xx.dtsi b/arch/arm/boot/dts/nxp/lpc/lpc32xx.dtsi
> index 4dff0d7694322..d6243adbc05bc 100644
> --- a/arch/arm/boot/dts/nxp/lpc/lpc32xx.dtsi
> +++ b/arch/arm/boot/dts/nxp/lpc/lpc32xx.dtsi
> @@ -86,51 +86,44 @@ dma: dma-controller@31000000 {
> #dma-cells = <2>;
> };
>
> - usb {
> - #address-cells = <1>;
> - #size-cells = <1>;
> - compatible = "simple-bus";
> - ranges = <0x0 0x31020000 0x00001000>;
> -
> - /*
> - * Enable either ohci or usbd (gadget)!
> - */
> - ohci: usb@0 {
> - compatible = "nxp,ohci-nxp", "usb-ohci";
> - reg = <0x0 0x300>;
> - interrupt-parent = <&sic1>;
> - interrupts = <27 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&usbclk LPC32XX_USB_CLK_HOST>;
> - status = "disabled";
> - };
> + /*
> + * Enable either ohci or usbd (gadget)!
> + */
> + ohci: usb@31020000 {
> + compatible = "nxp,ohci-nxp", "usb-ohci";
> + reg = <0x31020000 0x300>;
> + interrupt-parent = <&sic1>;
> + interrupts = <27 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&usbclk LPC32XX_USB_CLK_HOST>;
> + status = "disabled";
> + };
>
> - usbd: usbd@0 {
> - compatible = "nxp,lpc3220-udc";
> - reg = <0x0 0x300>;
> - interrupt-parent = <&sic1>;
> - interrupts = <29 IRQ_TYPE_LEVEL_HIGH>,
> - <30 IRQ_TYPE_LEVEL_HIGH>,
> - <28 IRQ_TYPE_LEVEL_HIGH>,
> - <26 IRQ_TYPE_LEVEL_LOW>;
> - clocks = <&usbclk LPC32XX_USB_CLK_DEVICE>;
> - status = "disabled";
> - };
> + usbd: usbd@31020000 {
> + compatible = "nxp,lpc3220-udc";
> + reg = <0x31020000 0x300>;
> + interrupt-parent = <&sic1>;
> + interrupts = <29 IRQ_TYPE_LEVEL_HIGH>,
> + <30 IRQ_TYPE_LEVEL_HIGH>,
> + <28 IRQ_TYPE_LEVEL_HIGH>,
> + <26 IRQ_TYPE_LEVEL_LOW>;
> + clocks = <&usbclk LPC32XX_USB_CLK_DEVICE>;
> + status = "disabled";
> + };
>
> - i2cusb: i2c@300 {
> - compatible = "nxp,pnx-i2c";
> - reg = <0x300 0x100>;
> - interrupt-parent = <&sic1>;
> - interrupts = <31 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&usbclk LPC32XX_USB_CLK_I2C>;
> - #address-cells = <1>;
> - #size-cells = <0>;
> - };
> + i2cusb: i2c@31020300 {
> + compatible = "nxp,pnx-i2c";
> + reg = <0x31020300 0x100>;
> + interrupt-parent = <&sic1>;
> + interrupts = <31 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&usbclk LPC32XX_USB_CLK_I2C>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + };
>
> - usbclk: clock-controller@f00 {
> - compatible = "nxp,lpc3220-usb-clk";
> - reg = <0xf00 0x100>;
> - #clock-cells = <1>;
> - };
> + usbclk: clock-controller@31020f00 {
> + compatible = "nxp,lpc3220-usb-clk";
> + reg = <0x31020f00 0x100>;
> + #clock-cells = <1>;
> };
>
> clcd: clcd@31040000 {
As for me the change looks good, but I need some time to do
a regression testing, I'll do it over the weekend.
Thank you for the contribution!
--
Best wishes,
Vladimir
prev parent reply other threads:[~2025-11-15 0:20 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-14 17:47 [PATCH v2 1/5] ARM: dts: lpc32xx: remove usb bus and elevate all children nodes Frank Li
2025-11-14 17:47 ` [PATCH v2 2/5] ARM: dts: lpc3250-ea3250: add key- prefix for gpio-keys Frank Li
2025-11-14 17:47 ` [PATCH v2 3/5] ARM: dts: lpc3250-phy3250: add at25 required properties Frank Li
2025-11-15 0:16 ` Vladimir Zapolskiy
2025-11-14 17:47 ` [PATCH v2 4/5] ARM: dts: lpc3250-phy3250: rename nodename at@0 to eeprom@0 Frank Li
2025-11-15 0:16 ` Vladimir Zapolskiy
2025-11-14 17:47 ` [PATCH v2 5/5] ARM: dts: lpc3250-phy3250: remove deprecated at25* property Frank Li
2025-11-15 0:23 ` Vladimir Zapolskiy
2025-11-17 16:12 ` Frank Li
2025-11-17 19:05 ` Vladimir Zapolskiy
2025-11-15 0:20 ` Vladimir Zapolskiy [this message]
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=e3ee8d61-d10e-4941-a577-dd6dc24e77a7@mleia.com \
--to=vz@mleia.com \
--cc=Frank.Li@nxp.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=imx@lists.linux.dev \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=piotr.wojtaszczyk@timesys.com \
--cc=robh@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox