* [PATCH 1/5] ARM64: dts: meson-gxbb: Add CEC pins nodes
2017-05-24 8:28 [PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes Neil Armstrong
@ 2017-05-24 8:28 ` Neil Armstrong
2017-05-24 8:28 ` [PATCH 2/5] ARM64: dts: meson-gxl: " Neil Armstrong
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Neil Armstrong @ 2017-05-24 8:28 UTC (permalink / raw)
To: khilman
Cc: linux-amlogic, devicetree, linux-kernel, linux-arm-kernel,
Neil Armstrong
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
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/5] ARM64: dts: meson-gxl: Add CEC pins nodes
2017-05-24 8:28 [PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes Neil Armstrong
2017-05-24 8:28 ` [PATCH 1/5] ARM64: dts: meson-gxbb: Add CEC " Neil Armstrong
@ 2017-05-24 8:28 ` Neil Armstrong
2017-05-24 8:28 ` [PATCH 3/5] ARM64: dts: meson-gxl: Add Ethernet PHY LEDS " Neil Armstrong
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Neil Armstrong @ 2017-05-24 8:28 UTC (permalink / raw)
To: khilman
Cc: linux-amlogic, devicetree, linux-kernel, linux-arm-kernel,
Neil Armstrong
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
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 3/5] ARM64: dts: meson-gxl: Add Ethernet PHY LEDS pins nodes
2017-05-24 8:28 [PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes Neil Armstrong
2017-05-24 8:28 ` [PATCH 1/5] ARM64: dts: meson-gxbb: Add CEC " Neil Armstrong
2017-05-24 8:28 ` [PATCH 2/5] ARM64: dts: meson-gxl: " Neil Armstrong
@ 2017-05-24 8:28 ` Neil Armstrong
2017-05-24 8:28 ` [PATCH 4/5] ARM64: dts: meson-gxbb: Add SPI pinctrl nodes Neil Armstrong
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Neil Armstrong @ 2017-05-24 8:28 UTC (permalink / raw)
To: khilman
Cc: linux-amlogic, devicetree, linux-kernel, linux-arm-kernel,
Neil Armstrong
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
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 4/5] ARM64: dts: meson-gxbb: Add SPI pinctrl nodes
2017-05-24 8:28 [PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes Neil Armstrong
` (2 preceding siblings ...)
2017-05-24 8:28 ` [PATCH 3/5] ARM64: dts: meson-gxl: Add Ethernet PHY LEDS " Neil Armstrong
@ 2017-05-24 8:28 ` Neil Armstrong
2017-05-24 8:28 ` [PATCH 5/5] ARM64: dts: meson-gxl: " Neil Armstrong
[not found] ` <1495614505-4437-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
5 siblings, 0 replies; 7+ messages in thread
From: Neil Armstrong @ 2017-05-24 8:28 UTC (permalink / raw)
To: khilman
Cc: linux-amlogic, devicetree, linux-kernel, linux-arm-kernel,
Neil Armstrong
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
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 5/5] ARM64: dts: meson-gxl: Add SPI pinctrl nodes
2017-05-24 8:28 [PATCH 0/5] ARM64: dts: meson: Add CEC, Ethernet Link and SPI pins nodes Neil Armstrong
` (3 preceding siblings ...)
2017-05-24 8:28 ` [PATCH 4/5] ARM64: dts: meson-gxbb: Add SPI pinctrl nodes Neil Armstrong
@ 2017-05-24 8:28 ` Neil Armstrong
[not found] ` <1495614505-4437-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
5 siblings, 0 replies; 7+ messages in thread
From: Neil Armstrong @ 2017-05-24 8:28 UTC (permalink / raw)
To: khilman
Cc: linux-amlogic, devicetree, linux-kernel, linux-arm-kernel,
Neil Armstrong
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
^ permalink raw reply related [flat|nested] 7+ messages in thread[parent not found: <1495614505-4437-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>]