From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751267AbdFBBpG (ORCPT ); Thu, 1 Jun 2017 21:45:06 -0400 Received: from regular1.263xmail.com ([211.150.99.131]:34142 "EHLO regular1.263xmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751134AbdFBBpE (ORCPT ); Thu, 1 Jun 2017 21:45:04 -0400 X-263anti-spam: KSV:0; X-MAIL-GRAY: 0 X-MAIL-DELIVERY: 1 X-KSVirus-check: 0 X-ABS-CHECKED: 4 X-RL-SENDER: wulf@rock-chips.com X-FST-TO: daniel.meng@rock-chips.com X-SENDER-IP: 58.22.7.114 X-LOGIN-NAME: wulf@rock-chips.com X-UNIQUE-TAG: <6c6a5a170709c8f78f218dd3fd5a2251> X-ATTACHMENT-NUM: 0 X-DNS-TYPE: 0 Subject: Re: [PATCH 1/2] ARM: dts: rockchip: add usb nodes on rk322x To: Heiko Stuebner , William Wu Cc: robh+dt@kernel.org, mark.rutland@arm.com, linux@armlinux.org.uk, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-rockchip@lists.infradead.org, frank.wang@rock-chips.com, huangtao@rock-chips.com, daniel.meng@rock-chips.com References: <1496193684-30449-1-git-send-email-william.wu@rock-chips.com> <1496193684-30449-2-git-send-email-william.wu@rock-chips.com> <1657625.AqxPQItbmB@phil> From: wlf Message-ID: <2584cf1a-7ffb-b5ba-3324-fca3f4fd402e@rock-chips.com> Date: Fri, 2 Jun 2017 09:44:51 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <1657625.AqxPQItbmB@phil> Content-Type: text/plain; charset=gbk; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Dear Heiko, 在 2017年06月02日 04:22, Heiko Stuebner 写道: > Hi William, > > Am Mittwoch, 31. Mai 2017, 09:21:23 CEST schrieb William Wu: >> This patch adds usb otg/host controllers and phys nodes on rk322x. >> >> Signed-off-by: William Wu >> --- >> arch/arm/boot/dts/rk322x.dtsi | 138 +++++++++++++++++++++++++++++++++++++++++- >> 1 file changed, 137 insertions(+), 1 deletion(-) >> >> diff --git a/arch/arm/boot/dts/rk322x.dtsi b/arch/arm/boot/dts/rk322x.dtsi >> index df57413..d4bfd3c 100644 >> --- a/arch/arm/boot/dts/rk322x.dtsi >> +++ b/arch/arm/boot/dts/rk322x.dtsi >> @@ -210,8 +210,61 @@ >> }; >> >> grf: syscon@11000000 { >> - compatible = "syscon"; >> + compatible = "syscon", "simple-mfd"; >> reg = <0x11000000 0x1000>; >> + #address-cells = <1>; >> + #size-cells = <1>; >> + >> + u2phy0: usb2-phy@760 { >> + compatible = "rockchip,rk322x-usb2phy"; > as commented on the driver-side some moments ago, compatibles should not > contain wildcards, so please make this > "rockchip,rk3228-usb2phy" > instead. > > Same below and also for the dwc2 node. Thanks, I'll fix it immediately. > > > Thanks > Heiko > >> + reg = <0x0760 0x0c>; >> + clocks = <&cru SCLK_OTGPHY0>; >> + clock-names = "phyclk"; >> + #clock-cells = <0>; >> + clock-output-names = "usb480m_phy0"; >> + status = "disabled"; >> + >> + u2phy0_otg: otg-port { >> + #phy-cells = <0>; >> + interrupts = , >> + , >> + ; >> + interrupt-names = "otg-bvalid", "otg-id", >> + "linestate"; >> + status = "disabled"; >> + }; >> + >> + u2phy0_host: host-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + }; >> + >> + u2phy1: usb2-phy@800 { >> + compatible = "rockchip,rk322x-usb2phy"; > rockchip,rk3228-usb2phy OK, I'll fix it immediately. > >> + reg = <0x0800 0x0c>; >> + clocks = <&cru SCLK_OTGPHY1>; >> + clock-names = "phyclk"; >> + #clock-cells = <0>; >> + clock-output-names = "usb480m_phy1"; >> + status = "disabled"; >> + >> + u2phy1_otg: otg-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + >> + u2phy1_host: host-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + }; >> }; >> >> uart0: serial@11010000 { >> @@ -467,6 +520,89 @@ >> status = "disabled"; >> }; >> >> + usb_otg: usb@30040000 { >> + compatible = "rockchip,rk322x-usb", "rockchip,rk3066-usb", > rockchip,rk3228-usb OK, I'll fix it immediately.:-) > >> + "snps,dwc2"; >> + reg = <0x30040000 0x40000>; >> + interrupts = ; >> + clocks = <&cru HCLK_OTG>; >> + clock-names = "otg"; >> + dr_mode = "otg"; >> + g-np-tx-fifo-size = <16>; >> + g-rx-fifo-size = <280>; >> + g-tx-fifo-size = <256 128 128 64 32 16>; >> + g-use-dma; >> + phys = <&u2phy0_otg>; >> + phy-names = "usb2-phy"; >> + status = "disabled"; >> + }; >> + >> + usb_host0_ehci: usb@30080000 { >> + compatible = "generic-ehci"; >> + reg = <0x30080000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST0>, <&u2phy0>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy0_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host0_ohci: usb@300a0000 { >> + compatible = "generic-ohci"; >> + reg = <0x300a0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST0>, <&u2phy0>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy0_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host1_ehci: usb@300c0000 { >> + compatible = "generic-ehci"; >> + reg = <0x300c0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST1>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_otg>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host1_ohci: usb@300e0000 { >> + compatible = "generic-ohci"; >> + reg = <0x300e0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST1>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_otg>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host2_ehci: usb@30100000 { >> + compatible = "generic-ehci"; >> + reg = <0x30100000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST2>, <&u2phy1>; >> + phys = <&u2phy1_host>; >> + phy-names = "usb"; >> + clock-names = "usbhost", "utmi"; >> + status = "disabled"; >> + }; >> + >> + usb_host2_ohci: usb@30120000 { >> + compatible = "generic-ohci"; >> + reg = <0x30120000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST2>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> gmac: ethernet@30200000 { >> compatible = "rockchip,rk3228-gmac"; >> reg = <0x30200000 0x10000>; >> > > > > From mboxrd@z Thu Jan 1 00:00:00 1970 From: wlf Subject: Re: [PATCH 1/2] ARM: dts: rockchip: add usb nodes on rk322x Date: Fri, 2 Jun 2017 09:44:51 +0800 Message-ID: <2584cf1a-7ffb-b5ba-3324-fca3f4fd402e@rock-chips.com> References: <1496193684-30449-1-git-send-email-william.wu@rock-chips.com> <1496193684-30449-2-git-send-email-william.wu@rock-chips.com> <1657625.AqxPQItbmB@phil> Mime-Version: 1.0 Content-Type: text/plain; charset=gbk; format=flowed Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <1657625.AqxPQItbmB@phil> Content-Language: en-US Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Heiko Stuebner , William Wu Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, mark.rutland-5wv7dgnIgG8@public.gmane.org, linux-I+IVW8TIWO2tmTQ+vhA3Yw@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, frank.wang-TNX95d0MmH7DzftRWevZcw@public.gmane.org, huangtao-TNX95d0MmH7DzftRWevZcw@public.gmane.org, daniel.meng-TNX95d0MmH7DzftRWevZcw@public.gmane.org List-Id: devicetree@vger.kernel.org Dear Heiko, 在 2017年06月02日 04:22, Heiko Stuebner 写道: > Hi William, > > Am Mittwoch, 31. Mai 2017, 09:21:23 CEST schrieb William Wu: >> This patch adds usb otg/host controllers and phys nodes on rk322x. >> >> Signed-off-by: William Wu >> --- >> arch/arm/boot/dts/rk322x.dtsi | 138 +++++++++++++++++++++++++++++++++++++++++- >> 1 file changed, 137 insertions(+), 1 deletion(-) >> >> diff --git a/arch/arm/boot/dts/rk322x.dtsi b/arch/arm/boot/dts/rk322x.dtsi >> index df57413..d4bfd3c 100644 >> --- a/arch/arm/boot/dts/rk322x.dtsi >> +++ b/arch/arm/boot/dts/rk322x.dtsi >> @@ -210,8 +210,61 @@ >> }; >> >> grf: syscon@11000000 { >> - compatible = "syscon"; >> + compatible = "syscon", "simple-mfd"; >> reg = <0x11000000 0x1000>; >> + #address-cells = <1>; >> + #size-cells = <1>; >> + >> + u2phy0: usb2-phy@760 { >> + compatible = "rockchip,rk322x-usb2phy"; > as commented on the driver-side some moments ago, compatibles should not > contain wildcards, so please make this > "rockchip,rk3228-usb2phy" > instead. > > Same below and also for the dwc2 node. Thanks, I'll fix it immediately. > > > Thanks > Heiko > >> + reg = <0x0760 0x0c>; >> + clocks = <&cru SCLK_OTGPHY0>; >> + clock-names = "phyclk"; >> + #clock-cells = <0>; >> + clock-output-names = "usb480m_phy0"; >> + status = "disabled"; >> + >> + u2phy0_otg: otg-port { >> + #phy-cells = <0>; >> + interrupts = , >> + , >> + ; >> + interrupt-names = "otg-bvalid", "otg-id", >> + "linestate"; >> + status = "disabled"; >> + }; >> + >> + u2phy0_host: host-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + }; >> + >> + u2phy1: usb2-phy@800 { >> + compatible = "rockchip,rk322x-usb2phy"; > rockchip,rk3228-usb2phy OK, I'll fix it immediately. > >> + reg = <0x0800 0x0c>; >> + clocks = <&cru SCLK_OTGPHY1>; >> + clock-names = "phyclk"; >> + #clock-cells = <0>; >> + clock-output-names = "usb480m_phy1"; >> + status = "disabled"; >> + >> + u2phy1_otg: otg-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + >> + u2phy1_host: host-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + }; >> }; >> >> uart0: serial@11010000 { >> @@ -467,6 +520,89 @@ >> status = "disabled"; >> }; >> >> + usb_otg: usb@30040000 { >> + compatible = "rockchip,rk322x-usb", "rockchip,rk3066-usb", > rockchip,rk3228-usb OK, I'll fix it immediately.:-) > >> + "snps,dwc2"; >> + reg = <0x30040000 0x40000>; >> + interrupts = ; >> + clocks = <&cru HCLK_OTG>; >> + clock-names = "otg"; >> + dr_mode = "otg"; >> + g-np-tx-fifo-size = <16>; >> + g-rx-fifo-size = <280>; >> + g-tx-fifo-size = <256 128 128 64 32 16>; >> + g-use-dma; >> + phys = <&u2phy0_otg>; >> + phy-names = "usb2-phy"; >> + status = "disabled"; >> + }; >> + >> + usb_host0_ehci: usb@30080000 { >> + compatible = "generic-ehci"; >> + reg = <0x30080000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST0>, <&u2phy0>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy0_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host0_ohci: usb@300a0000 { >> + compatible = "generic-ohci"; >> + reg = <0x300a0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST0>, <&u2phy0>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy0_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host1_ehci: usb@300c0000 { >> + compatible = "generic-ehci"; >> + reg = <0x300c0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST1>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_otg>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host1_ohci: usb@300e0000 { >> + compatible = "generic-ohci"; >> + reg = <0x300e0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST1>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_otg>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host2_ehci: usb@30100000 { >> + compatible = "generic-ehci"; >> + reg = <0x30100000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST2>, <&u2phy1>; >> + phys = <&u2phy1_host>; >> + phy-names = "usb"; >> + clock-names = "usbhost", "utmi"; >> + status = "disabled"; >> + }; >> + >> + usb_host2_ohci: usb@30120000 { >> + compatible = "generic-ohci"; >> + reg = <0x30120000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST2>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> gmac: ethernet@30200000 { >> compatible = "rockchip,rk3228-gmac"; >> reg = <0x30200000 0x10000>; >> > > > > -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: wulf@rock-chips.com (wlf) Date: Fri, 2 Jun 2017 09:44:51 +0800 Subject: [PATCH 1/2] ARM: dts: rockchip: add usb nodes on rk322x In-Reply-To: <1657625.AqxPQItbmB@phil> References: <1496193684-30449-1-git-send-email-william.wu@rock-chips.com> <1496193684-30449-2-git-send-email-william.wu@rock-chips.com> <1657625.AqxPQItbmB@phil> Message-ID: <2584cf1a-7ffb-b5ba-3324-fca3f4fd402e@rock-chips.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Dear Heiko, ? 2017?06?02? 04:22, Heiko Stuebner ??: > Hi William, > > Am Mittwoch, 31. Mai 2017, 09:21:23 CEST schrieb William Wu: >> This patch adds usb otg/host controllers and phys nodes on rk322x. >> >> Signed-off-by: William Wu >> --- >> arch/arm/boot/dts/rk322x.dtsi | 138 +++++++++++++++++++++++++++++++++++++++++- >> 1 file changed, 137 insertions(+), 1 deletion(-) >> >> diff --git a/arch/arm/boot/dts/rk322x.dtsi b/arch/arm/boot/dts/rk322x.dtsi >> index df57413..d4bfd3c 100644 >> --- a/arch/arm/boot/dts/rk322x.dtsi >> +++ b/arch/arm/boot/dts/rk322x.dtsi >> @@ -210,8 +210,61 @@ >> }; >> >> grf: syscon at 11000000 { >> - compatible = "syscon"; >> + compatible = "syscon", "simple-mfd"; >> reg = <0x11000000 0x1000>; >> + #address-cells = <1>; >> + #size-cells = <1>; >> + >> + u2phy0: usb2-phy at 760 { >> + compatible = "rockchip,rk322x-usb2phy"; > as commented on the driver-side some moments ago, compatibles should not > contain wildcards, so please make this > "rockchip,rk3228-usb2phy" > instead. > > Same below and also for the dwc2 node. Thanks, I'll fix it immediately. > > > Thanks > Heiko > >> + reg = <0x0760 0x0c>; >> + clocks = <&cru SCLK_OTGPHY0>; >> + clock-names = "phyclk"; >> + #clock-cells = <0>; >> + clock-output-names = "usb480m_phy0"; >> + status = "disabled"; >> + >> + u2phy0_otg: otg-port { >> + #phy-cells = <0>; >> + interrupts = , >> + , >> + ; >> + interrupt-names = "otg-bvalid", "otg-id", >> + "linestate"; >> + status = "disabled"; >> + }; >> + >> + u2phy0_host: host-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + }; >> + >> + u2phy1: usb2-phy at 800 { >> + compatible = "rockchip,rk322x-usb2phy"; > rockchip,rk3228-usb2phy OK, I'll fix it immediately. > >> + reg = <0x0800 0x0c>; >> + clocks = <&cru SCLK_OTGPHY1>; >> + clock-names = "phyclk"; >> + #clock-cells = <0>; >> + clock-output-names = "usb480m_phy1"; >> + status = "disabled"; >> + >> + u2phy1_otg: otg-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + >> + u2phy1_host: host-port { >> + #phy-cells = <0>; >> + interrupts = ; >> + interrupt-names = "linestate"; >> + status = "disabled"; >> + }; >> + }; >> }; >> >> uart0: serial at 11010000 { >> @@ -467,6 +520,89 @@ >> status = "disabled"; >> }; >> >> + usb_otg: usb at 30040000 { >> + compatible = "rockchip,rk322x-usb", "rockchip,rk3066-usb", > rockchip,rk3228-usb OK, I'll fix it immediately.:-) > >> + "snps,dwc2"; >> + reg = <0x30040000 0x40000>; >> + interrupts = ; >> + clocks = <&cru HCLK_OTG>; >> + clock-names = "otg"; >> + dr_mode = "otg"; >> + g-np-tx-fifo-size = <16>; >> + g-rx-fifo-size = <280>; >> + g-tx-fifo-size = <256 128 128 64 32 16>; >> + g-use-dma; >> + phys = <&u2phy0_otg>; >> + phy-names = "usb2-phy"; >> + status = "disabled"; >> + }; >> + >> + usb_host0_ehci: usb at 30080000 { >> + compatible = "generic-ehci"; >> + reg = <0x30080000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST0>, <&u2phy0>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy0_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host0_ohci: usb at 300a0000 { >> + compatible = "generic-ohci"; >> + reg = <0x300a0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST0>, <&u2phy0>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy0_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host1_ehci: usb at 300c0000 { >> + compatible = "generic-ehci"; >> + reg = <0x300c0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST1>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_otg>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host1_ohci: usb at 300e0000 { >> + compatible = "generic-ohci"; >> + reg = <0x300e0000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST1>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_otg>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> + usb_host2_ehci: usb at 30100000 { >> + compatible = "generic-ehci"; >> + reg = <0x30100000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST2>, <&u2phy1>; >> + phys = <&u2phy1_host>; >> + phy-names = "usb"; >> + clock-names = "usbhost", "utmi"; >> + status = "disabled"; >> + }; >> + >> + usb_host2_ohci: usb at 30120000 { >> + compatible = "generic-ohci"; >> + reg = <0x30120000 0x20000>; >> + interrupts = ; >> + clocks = <&cru HCLK_HOST2>, <&u2phy1>; >> + clock-names = "usbhost", "utmi"; >> + phys = <&u2phy1_host>; >> + phy-names = "usb"; >> + status = "disabled"; >> + }; >> + >> gmac: ethernet at 30200000 { >> compatible = "rockchip,rk3228-gmac"; >> reg = <0x30200000 0x10000>; >> > > > >