Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1700682 > unrolled thread

[PATCH 0/5] Add some DT nodes for Mediatek MT2701

Started byErin Lo <erin.lo@mediatek.com>
First post2017-08-01 09:10 +0200
Last post2017-08-02 07:00 +0200
Articles 6 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/5] Add some DT nodes for Mediatek MT2701  Erin Lo <erin.lo@mediatek.com> - 2017-08-01 09:10 +0200
    [PATCH 1/5] arm: dts: mt2701: Add ethernet device node Erin Lo <erin.lo@mediatek.com> - 2017-08-01 09:10 +0200
    [PATCH 2/5] arm: dts: mt2701: Add display bls related nodes for MT2701 Erin Lo <erin.lo@mediatek.com> - 2017-08-01 09:10 +0200
    [PATCH 5/5] arm: dts: mt2701: Add usb3 device nodes Erin Lo <erin.lo@mediatek.com> - 2017-08-01 09:10 +0200
    Re: [PATCH 0/5] Add some DT nodes for Mediatek MT2701 Matthias Brugger <matthias.bgg@gmail.com> - 2017-08-01 16:10 +0200
      Re: [PATCH 0/5] Add some DT nodes for Mediatek MT2701 Erin Lo <erin.lo@mediatek.com> - 2017-08-02 07:00 +0200

#1700682 — [PATCH 0/5] Add some DT nodes for Mediatek MT2701

FromErin Lo <erin.lo@mediatek.com>
Date2017-08-01 09:10 +0200
Subject[PATCH 0/5] Add some DT nodes for Mediatek MT2701
Message-ID<u9ztv-9s-5@gated-at.bofh.it>
This patch series based on v4.13-rc1, include MT2701 ethernet/disp bls/display/usb3 function DT nodes.

Chunfeng Yun (1):
  arm: dts: mt2701: Add usb3 device nodes

Sean Wang (1):
  arm: dts: mt2701: Add ethernet device node

Weiqing Kong (2):
  arm: dts: mt2701: Add display bls related nodes for MT2701
  arm: dts: mt2701: Add display bls related nodes for MT2701

YT Shen (1):
  arm: dts: mt2701: Add display subsystem related nodes for MT2701

 arch/arm/boot/dts/mt2701-evb.dts |  27 ++++++
 arch/arm/boot/dts/mt2701.dtsi    | 189 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 216 insertions(+)

--
1.9.1 

[toc] | [next] | [standalone]


#1700683 — [PATCH 1/5] arm: dts: mt2701: Add ethernet device node

FromErin Lo <erin.lo@mediatek.com>
Date2017-08-01 09:10 +0200
Subject[PATCH 1/5] arm: dts: mt2701: Add ethernet device node
Message-ID<u9ztw-9s-15@gated-at.bofh.it>
In reply to#1700682
From: Sean Wang <sean.wang@mediatek.com>

Add ethernet device node for MT2701

Signed-off-by: Sean Wang <sean.wang@mediatek.com>
Signed-off-by: Erin Lo <erin.lo@mediatek.com>
---
 arch/arm/boot/dts/mt2701.dtsi | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/arch/arm/boot/dts/mt2701.dtsi b/arch/arm/boot/dts/mt2701.dtsi
index f1efdc6..0619b86 100644
--- a/arch/arm/boot/dts/mt2701.dtsi
+++ b/arch/arm/boot/dts/mt2701.dtsi
@@ -597,6 +597,30 @@
 		#clock-cells = <1>;
 	};
 
+	eth: ethernet@1b100000 {
+		compatible = "mediatek,mt2701-eth", "syscon";
+		reg = <0 0x1b100000 0 0x20000>;
+		interrupts = <GIC_SPI 200 IRQ_TYPE_LEVEL_LOW>,
+			     <GIC_SPI 199 IRQ_TYPE_LEVEL_LOW>,
+			     <GIC_SPI 198 IRQ_TYPE_LEVEL_LOW>;
+		clocks = <&topckgen CLK_TOP_ETHIF_SEL>,
+			 <&ethsys CLK_ETHSYS_ESW>,
+			 <&ethsys CLK_ETHSYS_GP1>,
+			 <&ethsys CLK_ETHSYS_GP2>,
+			 <&apmixedsys CLK_APMIXED_TRGPLL>;
+		clock-names = "ethif", "esw", "gp1", "gp2", "trgpll";
+		resets = <&ethsys MT2701_ETHSYS_FE_RST>,
+			 <&ethsys MT2701_ETHSYS_GMAC_RST>,
+			 <&ethsys MT2701_ETHSYS_PPE_RST>;
+		reset-names = "fe", "gmac", "ppe";
+		power-domains = <&scpsys MT2701_POWER_DOMAIN_ETH>;
+		mediatek,ethsys = <&ethsys>;
+		mediatek,pctl = <&syscfg_pctl_a>;
+		#address-cells = <1>;
+		#size-cells = <0>;
+		status = "disabled";
+	};
+
 	bdpsys: syscon@1c000000 {
 		compatible = "mediatek,mt2701-bdpsys", "syscon";
 		reg = <0 0x1c000000 0 0x1000>;
-- 
1.9.1

[toc] | [prev] | [next] | [standalone]


#1700684 — [PATCH 2/5] arm: dts: mt2701: Add display bls related nodes for MT2701

FromErin Lo <erin.lo@mediatek.com>
Date2017-08-01 09:10 +0200
Subject[PATCH 2/5] arm: dts: mt2701: Add display bls related nodes for MT2701
Message-ID<u9ztw-9s-17@gated-at.bofh.it>
In reply to#1700682
From: Weiqing Kong <weiqing.kong@mediatek.com>

This patch adds the device node of display backlight for MT2701

Signed-off-by: Weiqing Kong <weiqing.kong@mediatek.com>
Signed-off-by: Erin Lo <erin.lo@mediatek.com>
---
 arch/arm/boot/dts/mt2701.dtsi | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/boot/dts/mt2701.dtsi b/arch/arm/boot/dts/mt2701.dtsi
index 0619b86..2bcf739 100644
--- a/arch/arm/boot/dts/mt2701.dtsi
+++ b/arch/arm/boot/dts/mt2701.dtsi
@@ -529,6 +529,15 @@
 		#clock-cells = <1>;
 	};
 
+	bls: bls@1400a000 {
+		compatible = "mediatek,mt2701-disp-pwm";
+		reg = <0 0x1400a000 0 0x1000>;
+		#pwm-cells = <2>;
+		clocks = <&mmsys CLK_MM_MDP_BLS_26M>, <&mmsys CLK_MM_DISP_BLS>;
+		clock-names = "main", "mm";
+		status = "disabled";
+	};
+
 	larb0: larb@14010000 {
 		compatible = "mediatek,mt2701-smi-larb";
 		reg = <0 0x14010000 0 0x1000>;
-- 
1.9.1

[toc] | [prev] | [next] | [standalone]


#1700686 — [PATCH 5/5] arm: dts: mt2701: Add usb3 device nodes

FromErin Lo <erin.lo@mediatek.com>
Date2017-08-01 09:10 +0200
Subject[PATCH 5/5] arm: dts: mt2701: Add usb3 device nodes
Message-ID<u9ztw-9s-25@gated-at.bofh.it>
In reply to#1700682
From: Chunfeng Yun <chunfeng.yun@mediatek.com>

Add xhci nodes and usb3 phy nodes for MT2701

Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Erin Lo <erin.lo@mediatek.com>
---
 arch/arm/boot/dts/mt2701.dtsi | 79 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 79 insertions(+)

diff --git a/arch/arm/boot/dts/mt2701.dtsi b/arch/arm/boot/dts/mt2701.dtsi
index efb5118..16242f5 100644
--- a/arch/arm/boot/dts/mt2701.dtsi
+++ b/arch/arm/boot/dts/mt2701.dtsi
@@ -13,6 +13,7 @@
  */
 
 #include <dt-bindings/clock/mt2701-clk.h>
+#include <dt-bindings/phy/phy.h>
 #include <dt-bindings/power/mt2701-power.h>
 #include <dt-bindings/interrupt-controller/irq.h>
 #include <dt-bindings/interrupt-controller/arm-gic.h>
@@ -677,6 +678,84 @@
 		#clock-cells = <1>;
 	};
 
+	usb0: usb@1a1c0000 {
+		compatible = "mediatek,mt8173-xhci";
+		reg = <0 0x1a1c0000 0 0x1000>,
+		      <0 0x1a1c4700 0 0x0100>;
+		reg-names = "mac", "ippc";
+		interrupts = <GIC_SPI 196 IRQ_TYPE_LEVEL_LOW>;
+		clocks = <&hifsys CLK_HIFSYS_USB0PHY>,
+			 <&topckgen CLK_TOP_ETHIF_SEL>;
+		clock-names = "sys_ck", "ref_ck";
+		power-domains = <&scpsys MT2701_POWER_DOMAIN_HIF>;
+		phys = <&u2port0 PHY_TYPE_USB2>, <&u3port0 PHY_TYPE_USB3>;
+		status = "disabled";
+	};
+
+	u3phy0: usb-phy@1a1c4000 {
+		compatible = "mediatek,mt2701-u3phy";
+		reg = <0 0x1a1c4000 0 0x0700>;
+		#address-cells = <2>;
+		#size-cells = <2>;
+		ranges;
+		status = "disabled";
+
+		u2port0: usb-phy@1a1c4800 {
+			reg = <0 0x1a1c4800 0 0x0100>;
+			clocks = <&topckgen CLK_TOP_USB_PHY48M>;
+			clock-names = "ref";
+			#phy-cells = <1>;
+			status = "okay";
+		};
+
+		u3port0: usb-phy@1a1c4900 {
+			reg = <0 0x1a1c4900 0 0x0700>;
+			clocks = <&clk26m>;
+			clock-names = "ref";
+			#phy-cells = <1>;
+			status = "okay";
+		};
+	};
+
+	usb1: usb@1a240000 {
+		compatible = "mediatek,mt8173-xhci";
+		reg = <0 0x1a240000 0 0x1000>,
+		      <0 0x1a244700 0 0x0100>;
+		reg-names = "mac", "ippc";
+		interrupts = <GIC_SPI 197 IRQ_TYPE_LEVEL_LOW>;
+		clocks = <&hifsys CLK_HIFSYS_USB1PHY>,
+			 <&topckgen CLK_TOP_ETHIF_SEL>;
+		clock-names = "sys_ck", "ref_ck";
+		power-domains = <&scpsys MT2701_POWER_DOMAIN_HIF>;
+		phys = <&u2port1 PHY_TYPE_USB2>, <&u3port1 PHY_TYPE_USB3>;
+		status = "disabled";
+	};
+
+	u3phy1: usb-phy@1a244000 {
+		compatible = "mediatek,mt2701-u3phy";
+		reg = <0 0x1a244000 0 0x0700>;
+		#address-cells = <2>;
+		#size-cells = <2>;
+		ranges;
+		status = "disabled";
+
+		u2port1: usb-phy@1a244800 {
+			reg = <0 0x1a244800 0 0x0100>;
+			clocks = <&topckgen CLK_TOP_USB_PHY48M>;
+			clock-names = "ref";
+			#phy-cells = <1>;
+			status = "okay";
+		};
+
+		u3port1: usb-phy@1a244900 {
+			reg = <0 0x1a244900 0 0x0700>;
+			clocks = <&clk26m>;
+			clock-names = "ref";
+			#phy-cells = <1>;
+			status = "okay";
+		};
+	};
+
 	ethsys: syscon@1b000000 {
 		compatible = "mediatek,mt2701-ethsys", "syscon";
 		reg = <0 0x1b000000 0 0x1000>;
-- 
1.9.1

[toc] | [prev] | [next] | [standalone]


#1701083

FromMatthias Brugger <matthias.bgg@gmail.com>
Date2017-08-01 16:10 +0200
Message-ID<u9G1Y-4YZ-5@gated-at.bofh.it>
In reply to#1700682
Hi Erin,

On 08/01/2017 09:03 AM, Erin Lo wrote:
> This patch series based on v4.13-rc1, include MT2701 ethernet/disp bls/display/usb3 function DT nodes.
> 
> Chunfeng Yun (1):
>    arm: dts: mt2701: Add usb3 device nodes
> 
> Sean Wang (1):
>    arm: dts: mt2701: Add ethernet device node
> 
> Weiqing Kong (2):
>    arm: dts: mt2701: Add display bls related nodes for MT2701
>    arm: dts: mt2701: Add display bls related nodes for MT2701
> 
> YT Shen (1):
>    arm: dts: mt2701: Add display subsystem related nodes for MT2701
> 

I took 1/5 and 5/5 in v4.13-next/dts32

Please reword the commit message on 2/5 and 3/5.
Also the node should be called pwm instead of bls.

Regards,
Matthias

>   arch/arm/boot/dts/mt2701-evb.dts |  27 ++++++
>   arch/arm/boot/dts/mt2701.dtsi    | 189 +++++++++++++++++++++++++++++++++++++++
>   2 files changed, 216 insertions(+)
> 
> --
> 1.9.1
> 

[toc] | [prev] | [next] | [standalone]


#1701712

FromErin Lo <erin.lo@mediatek.com>
Date2017-08-02 07:00 +0200
Message-ID<u9TVg-5fD-9@gated-at.bofh.it>
In reply to#1701083
Hi Matthias,

On Tue, 2017-08-01 at 16:06 +0200, Matthias Brugger wrote:
> Hi Erin,
> 
> On 08/01/2017 09:03 AM, Erin Lo wrote:
> > This patch series based on v4.13-rc1, include MT2701 ethernet/disp bls/display/usb3 function DT nodes.
> > 
> > Chunfeng Yun (1):
> >    arm: dts: mt2701: Add usb3 device nodes
> > 
> > Sean Wang (1):
> >    arm: dts: mt2701: Add ethernet device node
> > 
> > Weiqing Kong (2):
> >    arm: dts: mt2701: Add display bls related nodes for MT2701
> >    arm: dts: mt2701: Add display bls related nodes for MT2701
> > 
> > YT Shen (1):
> >    arm: dts: mt2701: Add display subsystem related nodes for MT2701
> > 
> 
> I took 1/5 and 5/5 in v4.13-next/dts32
> 
> Please reword the commit message on 2/5 and 3/5.
> Also the node should be called pwm instead of bls.
> 
> Regards,
> Matthias
> 

Thanks for your comment.
We will reword pwm instead of bls in next version and send them with 4/5
in recent days.

Regards,
Erin


> >   arch/arm/boot/dts/mt2701-evb.dts |  27 ++++++
> >   arch/arm/boot/dts/mt2701.dtsi    | 189 +++++++++++++++++++++++++++++++++++++++
> >   2 files changed, 216 insertions(+)
> > 
> > --
> > 1.9.1
> > 

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web