Message ID | 20220523030134.2977116-3-neal_liu@aspeedtech.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | add Aspeed udc driver for ast2600 | expand |
Gentle ping on this path, thanks. > -----Original Message----- > From: Neal Liu <neal_liu@aspeedtech.com> > Sent: Monday, May 23, 2022 11:02 AM > To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>; Rob Herring > <robh+dt@kernel.org>; Krzysztof Kozlowski > <krzysztof.kozlowski+dt@linaro.org>; Joel Stanley <joel@jms.id.au>; Andrew > Jeffery <andrew@aj.id.au>; Felipe Balbi <balbi@kernel.org>; Sumit Semwal > <sumit.semwal@linaro.org>; Christian König <christian.koenig@amd.com>; > Geert Uytterhoeven <geert@linux-m68k.org>; Li Yang <leoyang.li@nxp.com> > Cc: Neal Liu <neal_liu@aspeedtech.com>; linux-aspeed@lists.ozlabs.org; > linux-usb@vger.kernel.org; devicetree@vger.kernel.org; > linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org; > linux-media@vger.kernel.org; dri-devel@lists.freedesktop.org; > linaro-mm-sig@lists.linaro.org > Subject: [PATCH v5 2/3] ARM: dts: aspeed: Add USB2.0 device controller node > > Add USB2.0 device controller(udc) node to device tree for AST2600. > > Signed-off-by: Neal Liu <neal_liu@aspeedtech.com> > --- > arch/arm/boot/dts/aspeed-g6.dtsi | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/arch/arm/boot/dts/aspeed-g6.dtsi > b/arch/arm/boot/dts/aspeed-g6.dtsi > index 3d5ce9da42c3..822f4fd854f5 100644 > --- a/arch/arm/boot/dts/aspeed-g6.dtsi > +++ b/arch/arm/boot/dts/aspeed-g6.dtsi > @@ -298,6 +298,16 @@ vhub: usb-vhub@1e6a0000 { > status = "disabled"; > }; > > + udc: usb@1e6a2000 { > + compatible = "aspeed,ast2600-udc"; > + reg = <0x1e6a2000 0x300>; > + interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>; > + clocks = <&syscon ASPEED_CLK_GATE_USBPORT2CLK>; > + pinctrl-names = "default"; > + pinctrl-0 = <&pinctrl_usb2bd_default>; > + status = "disabled"; > + }; > + > apb { > compatible = "simple-bus"; > #address-cells = <1>; > -- > 2.25.1
On 30/05/2022 03:27, Neal Liu wrote: > Gentle ping on this path, thanks. It's a merge window, so now not much might happen. Please resend in a week. > >> -----Original Message----- >> From: Neal Liu <neal_liu@aspeedtech.com> >> Sent: Monday, May 23, 2022 11:02 AM >> To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>; Rob Herring (...) >> >> Add USB2.0 device controller(udc) node to device tree for AST2600. >> >> Signed-off-by: Neal Liu <neal_liu@aspeedtech.com> You don't need my ack here, but anyway FWIW: Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof
> On 30/05/2022 03:27, Neal Liu wrote: > > Gentle ping on this path, thanks. > > It's a merge window, so now not much might happen. Please resend in a week. Got it, @Greg just told me. Thanks for the notice. > > > > >> -----Original Message----- > >> From: Neal Liu <neal_liu@aspeedtech.com> > >> Sent: Monday, May 23, 2022 11:02 AM > >> To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>; Rob Herring > > (...) > > >> > >> Add USB2.0 device controller(udc) node to device tree for AST2600. > >> > >> Signed-off-by: Neal Liu <neal_liu@aspeedtech.com> > > You don't need my ack here, but anyway FWIW: > > Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Thanks for your review ! > > > Best regards, > Krzysztof
diff --git a/arch/arm/boot/dts/aspeed-g6.dtsi b/arch/arm/boot/dts/aspeed-g6.dtsi index 3d5ce9da42c3..822f4fd854f5 100644 --- a/arch/arm/boot/dts/aspeed-g6.dtsi +++ b/arch/arm/boot/dts/aspeed-g6.dtsi @@ -298,6 +298,16 @@ vhub: usb-vhub@1e6a0000 { status = "disabled"; }; + udc: usb@1e6a2000 { + compatible = "aspeed,ast2600-udc"; + reg = <0x1e6a2000 0x300>; + interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&syscon ASPEED_CLK_GATE_USBPORT2CLK>; + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_usb2bd_default>; + status = "disabled"; + }; + apb { compatible = "simple-bus"; #address-cells = <1>;
Add USB2.0 device controller(udc) node to device tree for AST2600. Signed-off-by: Neal Liu <neal_liu@aspeedtech.com> --- arch/arm/boot/dts/aspeed-g6.dtsi | 10 ++++++++++ 1 file changed, 10 insertions(+)