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


Groups > linux.kernel > #1649272 > unrolled thread

[PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes

Started byNeil Armstrong <narmstrong@baylibre.com>
First post2017-05-24 10:40 +0200
Last post2017-05-24 10:50 +0200
Articles 6 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes Neil Armstrong <narmstrong@baylibre.com> - 2017-05-24 10:40 +0200
    [PATCH 4/5] ARM64: dts: meson-gxbb: Add SPI pinctrl nodes Neil Armstrong <narmstrong@baylibre.com> - 2017-05-24 10:40 +0200
    [PATCH 5/5] ARM64: dts: meson-gxl: Add SPI pinctrl nodes Neil Armstrong <narmstrong@baylibre.com> - 2017-05-24 10:40 +0200
    [PATCH 3/5] ARM64: dts: meson-gxl: Add Ethernet PHY LEDS pins nodes Neil Armstrong <narmstrong@baylibre.com> - 2017-05-24 10:40 +0200
    [PATCH 1/5] ARM64: dts: meson-gxbb: Add CEC pins nodes Neil Armstrong <narmstrong@baylibre.com> - 2017-05-24 10:50 +0200
    [PATCH 2/5] ARM64: dts: meson-gxl: Add CEC pins nodes Neil Armstrong <narmstrong@baylibre.com> - 2017-05-24 10:50 +0200

#1649272 — [PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes

FromNeil Armstrong <narmstrong@baylibre.com>
Date2017-05-24 10:40 +0200
Subject[PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes
Message-ID<tKzZM-8mT-9@gated-at.bofh.it>
This patchset adds the following DT Pins nodes :
 - CEC Pins for GXBB and GXL
 - SPICC Pins for GXBB and GXL
 - Internal Ethernet PHY LEDS pins for GXL

Neil Armstrong (5):
  ARM64: dts: meson-gxbb: Add CEC pins nodes
  ARM64: dts: meson-gxl: Add CEC pins nodes
  ARM64: dts: meson-gxl: Add Ethernet PHY LEDS pins nodes
  ARM64: dts: meson-gxbb: Add SPI pinctrl nodes
  ARM64: dts: meson-gxl: Add SPI pinctrl nodes

 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 30 ++++++++++++++++++++
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi  | 44 +++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

-- 
1.9.1

[toc] | [next] | [standalone]


#1649275 — [PATCH 4/5] ARM64: dts: meson-gxbb: Add SPI pinctrl nodes

FromNeil Armstrong <narmstrong@baylibre.com>
Date2017-05-24 10:40 +0200
Subject[PATCH 4/5] ARM64: dts: meson-gxbb: Add SPI pinctrl nodes
Message-ID<tKzZM-8mT-17@gated-at.bofh.it>
In reply to#1649272
This patch adds the SPICC Controller pins nodes for Amlogic GXBB SoCs.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
index f0cfb02..16a9d45 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
@@ -393,6 +393,22 @@
 			};
 		};
 
+		spi_pins: spi {
+			mux {
+				groups = "spi_miso",
+					"spi_mosi",
+					"spi_sclk";
+				function = "spi";
+			};
+		};
+
+		spi_ss0_pins: spi-ss0 {
+			mux {
+				groups = "spi_ss0";
+				function = "spi";
+			};
+		};
+
 		sdcard_pins: sdcard {
 			mux {
 				groups = "sdcard_d0",
-- 
1.9.1

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


#1649280 — [PATCH 5/5] ARM64: dts: meson-gxl: Add SPI pinctrl nodes

FromNeil Armstrong <narmstrong@baylibre.com>
Date2017-05-24 10:40 +0200
Subject[PATCH 5/5] ARM64: dts: meson-gxl: Add SPI pinctrl nodes
Message-ID<tKzZM-8mT-27@gated-at.bofh.it>
In reply to#1649272
This patch adds the SPICC Controller pins nodes for Amlogic GXL SoCs.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
index 300dfad..30d4dea 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
@@ -281,6 +281,22 @@
 			};
 		};
 
+		spi_pins: spi {
+			mux {
+				groups = "spi_miso",
+					"spi_mosi",
+					"spi_sclk";
+				function = "spi";
+			};
+		};
+
+		spi_ss0_pins: spi-ss0 {
+			mux {
+				groups = "spi_ss0";
+				function = "spi";
+			};
+		};
+
 		sdcard_pins: sdcard {
 			mux {
 				groups = "sdcard_d0",
-- 
1.9.1

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


#1649286 — [PATCH 3/5] ARM64: dts: meson-gxl: Add Ethernet PHY LEDS pins nodes

FromNeil Armstrong <narmstrong@baylibre.com>
Date2017-05-24 10:40 +0200
Subject[PATCH 3/5] ARM64: dts: meson-gxl: Add Ethernet PHY LEDS pins nodes
Message-ID<tKzZN-8mT-35@gated-at.bofh.it>
In reply to#1649272
The Amlogic Meson GXL SoCs embeds an 10/100 Ethernet PHY, this patchs adds
the Link and Activity LEDs signals pins nodes.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
index 478d3b4..300dfad 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
@@ -404,6 +404,20 @@
 			};
 		};
 
+		eth_link_led_pins: eth_link_led {
+			mux {
+				groups = "eth_link_led";
+				function = "eth_led";
+			};
+		};
+
+		eth_act_led_pins: eth_act_led {
+			mux {
+				groups = "eth_act_led";
+				function = "eth_led";
+			};
+		};
+		
 		pwm_a_pins: pwm_a {
 			mux {
 				groups = "pwm_a";
-- 
1.9.1

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


#1649298 — [PATCH 1/5] ARM64: dts: meson-gxbb: Add CEC pins nodes

FromNeil Armstrong <narmstrong@baylibre.com>
Date2017-05-24 10:50 +0200
Subject[PATCH 1/5] ARM64: dts: meson-gxbb: Add CEC pins nodes
Message-ID<tKA9r-8rl-15@gated-at.bofh.it>
In reply to#1649272
Add the AO and EE domain CEC pins nodes for the Amlogic Meson GXBB SoCs.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
index 6f8b301..f0cfb02 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
@@ -242,6 +242,20 @@
 				function = "spdif_out_ao";
 			};
 		};
+
+		ao_cec_pins: ao_cec {
+			mux {
+				groups = "ao_cec";
+				function = "cec_ao";
+			};
+		};
+
+		ee_cec_pins: ee_cec {
+			mux {
+				groups = "ee_cec";
+				function = "cec_ao";
+			};
+		};
 	};
 };
 
-- 
1.9.1

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


#1649313 — [PATCH 2/5] ARM64: dts: meson-gxl: Add CEC pins nodes

FromNeil Armstrong <narmstrong@baylibre.com>
Date2017-05-24 10:50 +0200
Subject[PATCH 2/5] ARM64: dts: meson-gxl: Add CEC pins nodes
Message-ID<tKA9t-8rl-57@gated-at.bofh.it>
In reply to#1649272
Add the AO and EE domain CEC pins nodes for the Amlogic Meson GXL SoCs.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
index 3efad5f..478d3b4 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
@@ -190,6 +190,20 @@
 				function = "spdif_out_ao";
 			};
 		};
+
+		ao_cec_pins: ao_cec {
+			mux {
+				groups = "ao_cec";
+				function = "cec_ao";
+			};
+		};
+
+		ee_cec_pins: ee_cec {
+			mux {
+				groups = "ee_cec";
+				function = "cec_ao";
+			};
+		};
 	};
 };
 
-- 
1.9.1

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web