linux-amlogic.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates
@ 2019-10-16 17:07 Christian Hewitt
  2019-10-16 17:07 ` [PATCH 1/2] arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap Christian Hewitt
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Christian Hewitt @ 2019-10-16 17:07 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Kevin Hilman, devicetree,
	linux-arm-kernel, linux-amlogic, linux-kernel
  Cc: Christian Hewitt

The Tronsmart Vega S95 (S905) and S96 (S912) Android STBs use the
same IR remote. The rc-vega-s9x keymap has been accepted for Linux
v5.5 [0] so add the keymap to the respective dts.

[0] https://patchwork.linuxtv.org/patch/59434/

Christian Hewitt (2):
  arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap
  arm64: dts: meson-gxbb-vega-s95: set rc-vega-s9x ir keymap

 arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi | 1 +
 arch/arm64/boot/dts/amlogic/meson-gxm-vega-s96.dts   | 4 ++++
 2 files changed, 5 insertions(+)

-- 
2.7.4


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* [PATCH 1/2] arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap
  2019-10-16 17:07 [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Christian Hewitt
@ 2019-10-16 17:07 ` Christian Hewitt
  2019-10-16 17:07 ` [PATCH 2/2] arm64: dts: meson-gxbb-vega-s95: " Christian Hewitt
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Christian Hewitt @ 2019-10-16 17:07 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Kevin Hilman, devicetree,
	linux-arm-kernel, linux-amlogic, linux-kernel
  Cc: Christian Hewitt

Add an IR node to the Vega S96 dts to include the rc-vega-s9x keymap.

Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxm-vega-s96.dts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxm-vega-s96.dts b/arch/arm64/boot/dts/amlogic/meson-gxm-vega-s96.dts
index e2ea675..0bdf51d 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxm-vega-s96.dts
+++ b/arch/arm64/boot/dts/amlogic/meson-gxm-vega-s96.dts
@@ -35,3 +35,7 @@
 		reg = <0>;
 	};
 };
+
+&ir {
+	linux,rc-map-name = "rc-vega-s9x";
+};
-- 
2.7.4


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* [PATCH 2/2] arm64: dts: meson-gxbb-vega-s95: set rc-vega-s9x ir keymap
  2019-10-16 17:07 [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Christian Hewitt
  2019-10-16 17:07 ` [PATCH 1/2] arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap Christian Hewitt
@ 2019-10-16 17:07 ` Christian Hewitt
  2019-10-17 15:50 ` [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Kevin Hilman
  2019-10-17 16:00 ` patchwork-bot+linux-amlogic
  3 siblings, 0 replies; 5+ messages in thread
From: Christian Hewitt @ 2019-10-16 17:07 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Kevin Hilman, devicetree,
	linux-arm-kernel, linux-amlogic, linux-kernel
  Cc: Christian Hewitt

Add the rc-vega-s9x keymap to the existing IR node in the device tree.

Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
---
 arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi
index 43b11e3..0cc6d18 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi
@@ -152,6 +152,7 @@
 	status = "okay";
 	pinctrl-0 = <&remote_input_ao_pins>;
 	pinctrl-names = "default";
+	linux,rc-map-name = "rc-vega-s9x";
 };
 
 &pwm_ef {
-- 
2.7.4


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates
  2019-10-16 17:07 [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Christian Hewitt
  2019-10-16 17:07 ` [PATCH 1/2] arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap Christian Hewitt
  2019-10-16 17:07 ` [PATCH 2/2] arm64: dts: meson-gxbb-vega-s95: " Christian Hewitt
@ 2019-10-17 15:50 ` Kevin Hilman
  2019-10-17 16:00 ` patchwork-bot+linux-amlogic
  3 siblings, 0 replies; 5+ messages in thread
From: Kevin Hilman @ 2019-10-17 15:50 UTC (permalink / raw)
  To: Christian Hewitt, Rob Herring, Mark Rutland, devicetree,
	linux-arm-kernel, linux-amlogic, linux-kernel
  Cc: Christian Hewitt

Christian Hewitt <christianshewitt@gmail.com> writes:

> The Tronsmart Vega S95 (S905) and S96 (S912) Android STBs use the
> same IR remote. The rc-vega-s9x keymap has been accepted for Linux
> v5.5 [0] so add the keymap to the respective dts.

Queued for v5.5,

Thanks,

Kevin

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates
  2019-10-16 17:07 [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Christian Hewitt
                   ` (2 preceding siblings ...)
  2019-10-17 15:50 ` [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Kevin Hilman
@ 2019-10-17 16:00 ` patchwork-bot+linux-amlogic
  3 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+linux-amlogic @ 2019-10-17 16:00 UTC (permalink / raw)
  To: Christian Hewitt; +Cc: linux-amlogic, khilman

Hello:

This series was applied to khilman/linux-amlogic.git (refs/heads/for-next).

On Wed, 16 Oct 2019 21:07:35 +0400 you wrote:
> The Tronsmart Vega S95 (S905) and S96 (S912) Android STBs use the
> same IR remote. The rc-vega-s9x keymap has been accepted for Linux
> v5.5 [0] so add the keymap to the respective dts.
> 
> [0] https://patchwork.linuxtv.org/patch/59434/
> 
> Christian Hewitt (2):
>   arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap
>   arm64: dts: meson-gxbb-vega-s95: set rc-vega-s9x ir keymap
> 
> [...]


Here is a summary with links:
  - [1/2] arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap
    https://git.kernel.org/khilman/linux-amlogic/c/14fd777c30b7ac36a95099fd936588c93fe652ac
  - [2/2] arm64: dts: meson-gxbb-vega-s95: set rc-vega-s9x ir keymap
    https://git.kernel.org/khilman/linux-amlogic/c/c8739b2b84677b310a4a4e1affd7e57b9cbbc9f6

You are awesome, thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/pwbot

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

end of thread, other threads:[~2019-10-17 16:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-16 17:07 [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Christian Hewitt
2019-10-16 17:07 ` [PATCH 1/2] arm64: dts: meson-gxm-vega-s96: set rc-vega-s9x ir keymap Christian Hewitt
2019-10-16 17:07 ` [PATCH 2/2] arm64: dts: meson-gxbb-vega-s95: " Christian Hewitt
2019-10-17 15:50 ` [PATCH 0/2] arm64: dts: meson: Tronsmart Vega ir keymap updates Kevin Hilman
2019-10-17 16:00 ` patchwork-bot+linux-amlogic

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