devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: meson8: fix the IR receiver pins
@ 2017-06-09 22:20 Martin Blumenstingl
       [not found] ` <20170609222039.25191-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Blumenstingl @ 2017-06-09 22:20 UTC (permalink / raw)
  To: linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	khilman-rdvid1DuHRBWk0Htik3J/w, carlo-KA+7E9HrN00dnm+yROfE0A
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Martin Blumenstingl

The IR receiver pins are currently defined in the CBUS pin-controller.
However the pins are in the AO region, which is controlled by the AOBUS
pin-controller. Move the pins to pinctrl_aobus so they can actually be
used.

Fixes: b60e1157d8fa ("ARM: dts: amlogic: Split pinctrl device for Meson8 / Meson8b")
Signed-off-by: Martin Blumenstingl <martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
---
 arch/arm/boot/dts/meson8.dtsi | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/arch/arm/boot/dts/meson8.dtsi b/arch/arm/boot/dts/meson8.dtsi
index 9b0b3ddbb17e..e4f7357b4b31 100644
--- a/arch/arm/boot/dts/meson8.dtsi
+++ b/arch/arm/boot/dts/meson8.dtsi
@@ -116,6 +116,13 @@
 				function = "i2c_mst_ao";
 			};
 		};
+
+		ir_recv_pins: remote {
+			mux {
+				groups = "remote_input";
+				function = "remote";
+			};
+		};
 	};
 };
 
@@ -151,13 +158,6 @@
 			};
 		};
 
-		ir_recv_pins: remote {
-			mux {
-				groups = "remote_input";
-				function = "remote";
-			};
-		};
-
 		eth_pins: ethernet {
 			mux {
 				groups = "eth_tx_clk_50m", "eth_tx_en",
-- 
2.13.1

--
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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: meson8: fix the IR receiver pins
       [not found] ` <20170609222039.25191-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
@ 2017-06-12  7:38   ` Neil Armstrong
       [not found]     ` <e4347b01-e221-2242-9bb9-bc1e93da06fb-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Neil Armstrong @ 2017-06-12  7:38 UTC (permalink / raw)
  To: Martin Blumenstingl,
	linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	khilman-rdvid1DuHRBWk0Htik3J/w, carlo-KA+7E9HrN00dnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On 06/10/2017 12:20 AM, Martin Blumenstingl wrote:
> The IR receiver pins are currently defined in the CBUS pin-controller.
> However the pins are in the AO region, which is controlled by the AOBUS
> pin-controller. Move the pins to pinctrl_aobus so they can actually be
> used.
> 
> Fixes: b60e1157d8fa ("ARM: dts: amlogic: Split pinctrl device for Meson8 / Meson8b")
> Signed-off-by: Martin Blumenstingl <martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
> ---
>  arch/arm/boot/dts/meson8.dtsi | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/meson8.dtsi b/arch/arm/boot/dts/meson8.dtsi
> index 9b0b3ddbb17e..e4f7357b4b31 100644
> --- a/arch/arm/boot/dts/meson8.dtsi
> +++ b/arch/arm/boot/dts/meson8.dtsi
> @@ -116,6 +116,13 @@
>  				function = "i2c_mst_ao";
>  			};
>  		};
> +
> +		ir_recv_pins: remote {
> +			mux {
> +				groups = "remote_input";
> +				function = "remote";
> +			};
> +		};
>  	};
>  };
>  
> @@ -151,13 +158,6 @@
>  			};
>  		};
>  
> -		ir_recv_pins: remote {
> -			mux {
> -				groups = "remote_input";
> -				function = "remote";
> -			};
> -		};
> -
>  		eth_pins: ethernet {
>  			mux {
>  				groups = "eth_tx_clk_50m", "eth_tx_en",
> 


Reviewed-by: Neil Armstrong <narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
--
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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: meson8: fix the IR receiver pins
       [not found]     ` <e4347b01-e221-2242-9bb9-bc1e93da06fb-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
@ 2017-06-16 18:40       ` Kevin Hilman
  0 siblings, 0 replies; 3+ messages in thread
From: Kevin Hilman @ 2017-06-16 18:40 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: Martin Blumenstingl,
	linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	carlo-KA+7E9HrN00dnm+yROfE0A, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

Neil Armstrong <narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> writes:

> On 06/10/2017 12:20 AM, Martin Blumenstingl wrote:
>> The IR receiver pins are currently defined in the CBUS pin-controller.
>> However the pins are in the AO region, which is controlled by the AOBUS
>> pin-controller. Move the pins to pinctrl_aobus so they can actually be
>> used.
>> 
>> Fixes: b60e1157d8fa ("ARM: dts: amlogic: Split pinctrl device for Meson8 / Meson8b")
>> Signed-off-by: Martin Blumenstingl <martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>

[..]

> Reviewed-by: Neil Armstrong <narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>

Applied to v4.13/dt with Neil's ack, will go in round 2 of pull requests
to arm-soc.

Kevin
--
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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-16 18:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-09 22:20 [PATCH] ARM: dts: meson8: fix the IR receiver pins Martin Blumenstingl
     [not found] ` <20170609222039.25191-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2017-06-12  7:38   ` Neil Armstrong
     [not found]     ` <e4347b01-e221-2242-9bb9-bc1e93da06fb-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2017-06-16 18:40       ` Kevin Hilman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).