From: Christian Hewitt <christianshewitt@gmail.com>
To: Sean Young <sean@mess.org>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-media@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH] media: rc: add keymap for Beelink Mini MXIII remote
Date: Tue, 31 Jan 2023 18:11:57 +0400 [thread overview]
Message-ID: <38FDB059-5B8B-4885-AF4B-133F12995641@gmail.com> (raw)
In-Reply-To: <Y9khL5lKbSG61pWI@gofer.mess.org>
> On 31 Jan 2023, at 6:09 pm, Sean Young <sean@mess.org> wrote:
>
> On Sat, Jan 28, 2023 at 03:41:17AM +0000, Christian Hewitt wrote:
>> Add a keymap and bindings for the simple IR (NEC) remote used with
>> the Beelink Mini MXIII Android STB device.
>>
>> Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
>> ---
>> .../devicetree/bindings/media/rc.yaml | 1 +
>> drivers/media/rc/keymaps/Makefile | 1 +
>> drivers/media/rc/keymaps/rc-beelink-mxiii.c | 54 +++++++++++++++++++
>> include/media/rc-map.h | 1 +
>> 4 files changed, 57 insertions(+)
>> create mode 100644 drivers/media/rc/keymaps/rc-beelink-mxiii.c
>>
>> diff --git a/Documentation/devicetree/bindings/media/rc.yaml b/Documentation/devicetree/bindings/media/rc.yaml
>> index 266f1d5cae51..f390a5d2c82d 100644
>> --- a/Documentation/devicetree/bindings/media/rc.yaml
>> +++ b/Documentation/devicetree/bindings/media/rc.yaml
>> @@ -39,6 +39,7 @@ properties:
>> - rc-avertv-303
>> - rc-azurewave-ad-tu700
>> - rc-beelink-gs1
>> + - rc-beelink-mxiii
>> - rc-behold
>> - rc-behold-columbus
>> - rc-budget-ci-old
>> diff --git a/drivers/media/rc/keymaps/Makefile b/drivers/media/rc/keymaps/Makefile
>> index ec0361b0b758..03bc9a8d355e 100644
>> --- a/drivers/media/rc/keymaps/Makefile
>> +++ b/drivers/media/rc/keymaps/Makefile
>> @@ -22,6 +22,7 @@ obj-$(CONFIG_RC_MAP) += \
>> rc-avertv-303.o \
>> rc-azurewave-ad-tu700.o \
>> rc-beelink-gs1.o \
>> + rc-beelink-mxiii.o \
>> rc-behold-columbus.o \
>> rc-behold.o \
>> rc-budget-ci-old.o \
>> diff --git a/drivers/media/rc/keymaps/rc-beelink-mxiii.c b/drivers/media/rc/keymaps/rc-beelink-mxiii.c
>> new file mode 100644
>> index 000000000000..09b77295e0a3
>> --- /dev/null
>> +++ b/drivers/media/rc/keymaps/rc-beelink-mxiii.c
>> @@ -0,0 +1,54 @@
>> +// SPDX-License-Identifier: GPL-2.0+
>> +//
>> +// Copyright (C) 2019 Christian Hewitt <christianshewitt@gmail.com>
>> +
>> +#include <media/rc-map.h>
>> +#include <linux/module.h>
>> +
>> +//
>> +// Keytable for the Beelink Mini MXIII remote control
>> +//
>> +
>> +static struct rc_map_table beelink_mxiii[] = {
>> + { 0xb2dc, KEY_POWER },
>> +
>> + { 0xb288, KEY_MUTE },
>
> I'm guessing this is the mouse button. It should say so in a comment, if it
> is.
It’s not (for once). It’s a rather minimal remote. Nothing
as fancy as mouse support :)
Christian
> Thanks,
> Sean
>
>> + { 0xb282, KEY_HOME },
>> +
>> + { 0xb2ca, KEY_UP },
>> + { 0xb299, KEY_LEFT },
>> + { 0xb2ce, KEY_OK },
>> + { 0xb2c1, KEY_RIGHT },
>> + { 0xb2d2, KEY_DOWN },
>> +
>> + { 0xb2c5, KEY_MENU },
>> + { 0xb29a, KEY_BACK },
>> +
>> + { 0xb281, KEY_VOLUMEDOWN },
>> + { 0xb280, KEY_VOLUMEUP },
>> +};
>> +
>> +static struct rc_map_list beelink_mxiii_map = {
>> + .map = {
>> + .scan = beelink_mxiii,
>> + .size = ARRAY_SIZE(beelink_mxiii),
>> + .rc_proto = RC_PROTO_NEC,
>> + .name = RC_MAP_BEELINK_MXIII,
>> + }
>> +};
>> +
>> +static int __init init_rc_map_beelink_mxiii(void)
>> +{
>> + return rc_map_register(&beelink_mxiii_map);
>> +}
>> +
>> +static void __exit exit_rc_map_beelink_mxiii(void)
>> +{
>> + rc_map_unregister(&beelink_mxiii_map);
>> +}
>> +
>> +module_init(init_rc_map_beelink_mxiii)
>> +module_exit(exit_rc_map_beelink_mxiii)
>> +
>> +MODULE_LICENSE("GPL");
>> +MODULE_AUTHOR("Christian Hewitt <christianshewitt@gmail.com");
>> diff --git a/include/media/rc-map.h b/include/media/rc-map.h
>> index 5178dcae5ff7..dadd4d27a760 100644
>> --- a/include/media/rc-map.h
>> +++ b/include/media/rc-map.h
>> @@ -225,6 +225,7 @@ struct rc_map *rc_map_get(const char *name);
>> #define RC_MAP_AVERTV_303 "rc-avertv-303"
>> #define RC_MAP_AZUREWAVE_AD_TU700 "rc-azurewave-ad-tu700"
>> #define RC_MAP_BEELINK_GS1 "rc-beelink-gs1"
>> +#define RC_MAP_BEELINK_MXIII "rc-beelink-mxiii"
>> #define RC_MAP_BEHOLD "rc-behold"
>> #define RC_MAP_BEHOLD_COLUMBUS "rc-behold-columbus"
>> #define RC_MAP_BUDGET_CI_OLD "rc-budget-ci-old"
>> --
>> 2.34.1
prev parent reply other threads:[~2023-01-31 14:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-28 3:41 [PATCH] media: rc: add keymap for Beelink Mini MXIII remote Christian Hewitt
2023-01-28 10:11 ` Krzysztof Kozlowski
2023-01-28 15:22 ` Christian Hewitt
2023-01-29 8:38 ` Sean Young
2023-01-30 21:30 ` Rob Herring
2023-01-31 12:28 ` Sean Young
2023-01-31 13:00 ` Christian Hewitt
2023-01-31 14:09 ` Sean Young
2023-01-31 14:11 ` Christian Hewitt [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=38FDB059-5B8B-4885-AF4B-133F12995641@gmail.com \
--to=christianshewitt@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=robh+dt@kernel.org \
--cc=sean@mess.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox