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


Groups > linux.kernel > #1660042 > unrolled thread

[PATCH v2 0/2] ARM: sunxi: Enable dwmac-sun8i on more boards

Started byCorentin Labbe <clabbe.montjoie@gmail.com>
First post2017-06-07 19:40 +0200
Last post2017-06-08 10:40 +0200
Articles 8 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v2 0/2] ARM: sunxi: Enable dwmac-sun8i on more boards Corentin Labbe <clabbe.montjoie@gmail.com> - 2017-06-07 19:40 +0200
    [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver Corentin Labbe <clabbe.montjoie@gmail.com> - 2017-06-07 19:40 +0200
      Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-06-08 10:40 +0200
        Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver Corentin Labbe <clabbe.montjoie@gmail.com> - 2017-06-08 10:50 +0200
          Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-06-08 14:50 +0200
            Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver Chen-Yu Tsai <wens@csie.org> - 2017-06-09 06:40 +0200
    [PATCH v2 1/2] ARM: sun8i: a83t: Add dt node for the syscon control module Corentin Labbe <clabbe.montjoie@gmail.com> - 2017-06-07 19:40 +0200
      Re: [PATCH v2 1/2] ARM: sun8i: a83t: Add dt node for the syscon  control module Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-06-08 10:40 +0200

#1660042 — [PATCH v2 0/2] ARM: sunxi: Enable dwmac-sun8i on more boards

FromCorentin Labbe <clabbe.montjoie@gmail.com>
Date2017-06-07 19:40 +0200
Subject[PATCH v2 0/2] ARM: sunxi: Enable dwmac-sun8i on more boards
Message-ID<tPN61-1bu-15@gated-at.bofh.it>
Hello

Since the first 3 patch of v1 was applied, it remains this two patchs for
enabling dwmac-sun8i on A83T

Changes since v1:
- Ordered compatible of syscon
- Renamed pins to emac-rgmii-pins

Corentin Labbe (2):
  ARM: sun8i: a83t: Add dt node for the syscon control module
  ARM: sun8i: a83t: add dwmac-sun8i ethernet driver

 arch/arm/boot/dts/sun8i-a83t.dtsi | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

-- 
2.13.0

[toc] | [next] | [standalone]


#1660043 — [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver

FromCorentin Labbe <clabbe.montjoie@gmail.com>
Date2017-06-07 19:40 +0200
Subject[PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver
Message-ID<tPN61-1bu-13@gated-at.bofh.it>
In reply to#1660042
The dwmac-sun8i is an ethernet MAC hardware that support 10/100/1000 speed.
This patch enable the dwmac-sun8i on the Allwinner a83t SoC Device-tree.

Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
---
 arch/arm/boot/dts/sun8i-a83t.dtsi | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
index 01a83406f9ae..7d719b4aeaa9 100644
--- a/arch/arm/boot/dts/sun8i-a83t.dtsi
+++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
@@ -200,6 +200,14 @@
 			#interrupt-cells = <3>;
 			#gpio-cells = <3>;
 
+			emac_rgmii_pins: emac-rgmii-pins {
+				pins = "PD2", "PD3", "PD4", "PD5", "PD6", "PD7",
+				       "PD11", "PD12", "PD13", "PD14", "PD18",
+				       "PD19", "PD21", "PD22", "PD23";
+				function = "gmac";
+				drive-strength = <40>;
+			};
+
 			mmc0_pins: mmc0-pins {
 				pins = "PF0", "PF1", "PF2",
 				       "PF3", "PF4", "PF5";
@@ -266,6 +274,26 @@
 			status = "disabled";
 		};
 
+		emac: ethernet@1c30000 {
+			compatible = "allwinner,sun8i-a83t-emac";
+			syscon = <&syscon>;
+			reg = <0x01c30000 0x104>;
+			interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
+			interrupt-names = "macirq";
+			resets = <&ccu 13>;
+			reset-names = "stmmaceth";
+			clocks = <&ccu 27>;
+			clock-names = "stmmaceth";
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+
+			mdio: mdio {
+				#address-cells = <1>;
+				#size-cells = <0>;
+			};
+		};
+
 		gic: interrupt-controller@1c81000 {
 			compatible = "arm,cortex-a7-gic", "arm,cortex-a15-gic";
 			reg = <0x01c81000 0x1000>,
-- 
2.13.0

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


#1660941 — Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver

FromMaxime Ripard <maxime.ripard@free-electrons.com>
Date2017-06-08 10:40 +0200
SubjectRe: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver
Message-ID<tQ191-1Rp-23@gated-at.bofh.it>
In reply to#1660043

[Multipart message — attachments visible in raw view] — view raw

On Wed, Jun 07, 2017 at 07:33:45PM +0200, Corentin Labbe wrote:
> The dwmac-sun8i is an ethernet MAC hardware that support 10/100/1000 speed.
> This patch enable the dwmac-sun8i on the Allwinner a83t SoC Device-tree.
> 
> Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
> ---
>  arch/arm/boot/dts/sun8i-a83t.dtsi | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
> index 01a83406f9ae..7d719b4aeaa9 100644
> --- a/arch/arm/boot/dts/sun8i-a83t.dtsi
> +++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
> @@ -200,6 +200,14 @@
>  			#interrupt-cells = <3>;
>  			#gpio-cells = <3>;
>  
> +			emac_rgmii_pins: emac-rgmii-pins {
> +				pins = "PD2", "PD3", "PD4", "PD5", "PD6", "PD7",
> +				       "PD11", "PD12", "PD13", "PD14", "PD18",
> +				       "PD19", "PD21", "PD22", "PD23";
> +				function = "gmac";
> +				drive-strength = <40>;
> +			};
> +

This is not used anywhere.

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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


#1660950 — Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver

FromCorentin Labbe <clabbe.montjoie@gmail.com>
Date2017-06-08 10:50 +0200
SubjectRe: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver
Message-ID<tQ1iG-1UD-17@gated-at.bofh.it>
In reply to#1660941
On Thu, Jun 08, 2017 at 10:34:28AM +0200, Maxime Ripard wrote:
> On Wed, Jun 07, 2017 at 07:33:45PM +0200, Corentin Labbe wrote:
> > The dwmac-sun8i is an ethernet MAC hardware that support 10/100/1000 speed.
> > This patch enable the dwmac-sun8i on the Allwinner a83t SoC Device-tree.
> > 
> > Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
> > Reviewed-by: Chen-Yu Tsai <wens@csie.org>
> > ---
> >  arch/arm/boot/dts/sun8i-a83t.dtsi | 28 ++++++++++++++++++++++++++++
> >  1 file changed, 28 insertions(+)
> > 
> > diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
> > index 01a83406f9ae..7d719b4aeaa9 100644
> > --- a/arch/arm/boot/dts/sun8i-a83t.dtsi
> > +++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
> > @@ -200,6 +200,14 @@
> >  			#interrupt-cells = <3>;
> >  			#gpio-cells = <3>;
> >  
> > +			emac_rgmii_pins: emac-rgmii-pins {
> > +				pins = "PD2", "PD3", "PD4", "PD5", "PD6", "PD7",
> > +				       "PD11", "PD12", "PD13", "PD14", "PD18",
> > +				       "PD19", "PD21", "PD22", "PD23";
> > +				function = "gmac";
> > +				drive-strength = <40>;
> > +			};
> > +
> 
> This is not used anywhere.
> 
But will be used by bpim3 board

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


#1661144 — Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver

FromMaxime Ripard <maxime.ripard@free-electrons.com>
Date2017-06-08 14:50 +0200
SubjectRe: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver
Message-ID<tQ52X-4l3-27@gated-at.bofh.it>
In reply to#1660950

[Multipart message — attachments visible in raw view] — view raw

On Thu, Jun 08, 2017 at 10:42:22AM +0200, Corentin Labbe wrote:
> On Thu, Jun 08, 2017 at 10:34:28AM +0200, Maxime Ripard wrote:
> > On Wed, Jun 07, 2017 at 07:33:45PM +0200, Corentin Labbe wrote:
> > > The dwmac-sun8i is an ethernet MAC hardware that support 10/100/1000 speed.
> > > This patch enable the dwmac-sun8i on the Allwinner a83t SoC Device-tree.
> > > 
> > > Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
> > > Reviewed-by: Chen-Yu Tsai <wens@csie.org>
> > > ---
> > >  arch/arm/boot/dts/sun8i-a83t.dtsi | 28 ++++++++++++++++++++++++++++
> > >  1 file changed, 28 insertions(+)
> > > 
> > > diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
> > > index 01a83406f9ae..7d719b4aeaa9 100644
> > > --- a/arch/arm/boot/dts/sun8i-a83t.dtsi
> > > +++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
> > > @@ -200,6 +200,14 @@
> > >  			#interrupt-cells = <3>;
> > >  			#gpio-cells = <3>;
> > >  
> > > +			emac_rgmii_pins: emac-rgmii-pins {
> > > +				pins = "PD2", "PD3", "PD4", "PD5", "PD6", "PD7",
> > > +				       "PD11", "PD12", "PD13", "PD14", "PD18",
> > > +				       "PD19", "PD21", "PD22", "PD23";
> > > +				function = "gmac";
> > > +				drive-strength = <40>;
> > > +			};
> > > +
> > 
> > This is not used anywhere.
> > 
> But will be used by bpim3 board

Then will add it when we'll add support for that board, until then,
it's dead code.

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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


#1661911 — Re: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver

FromChen-Yu Tsai <wens@csie.org>
Date2017-06-09 06:40 +0200
SubjectRe: [PATCH v2 2/2] ARM: sun8i: a83t: add dwmac-sun8i ethernet driver
Message-ID<tQjSh-5ky-3@gated-at.bofh.it>
In reply to#1661144
On Thu, Jun 8, 2017 at 8:48 PM, Maxime Ripard
<maxime.ripard@free-electrons.com> wrote:
> On Thu, Jun 08, 2017 at 10:42:22AM +0200, Corentin Labbe wrote:
>> On Thu, Jun 08, 2017 at 10:34:28AM +0200, Maxime Ripard wrote:
>> > On Wed, Jun 07, 2017 at 07:33:45PM +0200, Corentin Labbe wrote:
>> > > The dwmac-sun8i is an ethernet MAC hardware that support 10/100/1000 speed.
>> > > This patch enable the dwmac-sun8i on the Allwinner a83t SoC Device-tree.
>> > >
>> > > Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
>> > > Reviewed-by: Chen-Yu Tsai <wens@csie.org>
>> > > ---
>> > >  arch/arm/boot/dts/sun8i-a83t.dtsi | 28 ++++++++++++++++++++++++++++
>> > >  1 file changed, 28 insertions(+)
>> > >
>> > > diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
>> > > index 01a83406f9ae..7d719b4aeaa9 100644
>> > > --- a/arch/arm/boot/dts/sun8i-a83t.dtsi
>> > > +++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
>> > > @@ -200,6 +200,14 @@
>> > >                   #interrupt-cells = <3>;
>> > >                   #gpio-cells = <3>;
>> > >
>> > > +                 emac_rgmii_pins: emac-rgmii-pins {
>> > > +                         pins = "PD2", "PD3", "PD4", "PD5", "PD6", "PD7",
>> > > +                                "PD11", "PD12", "PD13", "PD14", "PD18",
>> > > +                                "PD19", "PD21", "PD22", "PD23";
>> > > +                         function = "gmac";
>> > > +                         drive-strength = <40>;
>> > > +                 };
>> > > +
>> >
>> > This is not used anywhere.
>> >
>> But will be used by bpim3 board
>
> Then will add it when we'll add support for that board, until then,
> it's dead code.

I'll include this in my A83T work branch and resend it when I get around to it.

Thanks
ChenYu

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


#1660045 — [PATCH v2 1/2] ARM: sun8i: a83t: Add dt node for the syscon control module

FromCorentin Labbe <clabbe.montjoie@gmail.com>
Date2017-06-07 19:40 +0200
Subject[PATCH v2 1/2] ARM: sun8i: a83t: Add dt node for the syscon control module
Message-ID<tPN62-1bu-29@gated-at.bofh.it>
In reply to#1660042
This patch add the dt node for the syscon register present on the
Allwinner A83T

Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
---
 arch/arm/boot/dts/sun8i-a83t.dtsi | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
index 49aeb56970ba..01a83406f9ae 100644
--- a/arch/arm/boot/dts/sun8i-a83t.dtsi
+++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
@@ -163,6 +163,12 @@
 		#size-cells = <1>;
 		ranges;
 
+		syscon: syscon@1c00000 {
+			compatible = "allwinner,sun8i-a83t-system-controller",
+				"syscon";
+			reg = <0x01c00000 0x1000>;
+		};
+
 		dma: dma-controller@1c02000 {
 			compatible = "allwinner,sun8i-a83t-dma";
 			reg = <0x01c02000 0x1000>;
-- 
2.13.0

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


#1660939 — Re: [PATCH v2 1/2] ARM: sun8i: a83t: Add dt node for the syscon control module

FromMaxime Ripard <maxime.ripard@free-electrons.com>
Date2017-06-08 10:40 +0200
SubjectRe: [PATCH v2 1/2] ARM: sun8i: a83t: Add dt node for the syscon control module
Message-ID<tQ191-1Rp-19@gated-at.bofh.it>
In reply to#1660045

[Multipart message — attachments visible in raw view] — view raw

On Wed, Jun 07, 2017 at 07:33:44PM +0200, Corentin Labbe wrote:
> This patch add the dt node for the syscon register present on the
> Allwinner A83T
> 
> Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
> Reviewed-by: Chen-Yu Tsai <wens@csie.org>

Applied, thanks!
Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web