1
0
Fork 0

media: rc: add keymap for WeTek Hub remote

The WeTek Hub Android STB ships with a simple NEC remote.

Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
alistair/sunxi64-5.4-dsi
Christian Hewitt 2019-08-15 11:59:15 -03:00 committed by Mauro Carvalho Chehab
parent 7bb53f361c
commit 3730789712
3 changed files with 55 additions and 0 deletions

View File

@ -116,6 +116,7 @@ obj-$(CONFIG_RC_MAP) += rc-adstech-dvb-t-pci.o \
rc-videomate-m1f.o \
rc-videomate-s350.o \
rc-videomate-tv-pvr.o \
rc-wetek-hub.o \
rc-winfast.o \
rc-winfast-usbii-deluxe.o \
rc-su3000.o \

View File

@ -0,0 +1,53 @@
// SPDX-License-Identifier: GPL-2.0+
// Copyright (c) 2018 Christian Hewitt
#include <media/rc-map.h>
#include <linux/module.h>
/*
* This keymap is used with the WeTek Hub STB.
*/
static struct rc_map_table wetek_hub[] = {
{ 0x77f1, KEY_POWER },
{ 0x77f2, KEY_HOME },
{ 0x77f3, KEY_MUTE }, // mouse
{ 0x77f4, KEY_UP },
{ 0x77f5, KEY_DOWN },
{ 0x77f6, KEY_LEFT },
{ 0x77f7, KEY_RIGHT },
{ 0x77f8, KEY_OK },
{ 0x77f9, KEY_BACK },
{ 0x77fa, KEY_MENU },
{ 0x77fb, KEY_VOLUMEUP },
{ 0x77fc, KEY_VOLUMEDOWN },
};
static struct rc_map_list wetek_hub_map = {
.map = {
.scan = wetek_hub,
.size = ARRAY_SIZE(wetek_hub),
.rc_proto = RC_PROTO_NEC,
.name = RC_MAP_WETEK_HUB,
}
};
static int __init init_rc_map_wetek_hub(void)
{
return rc_map_register(&wetek_hub_map);
}
static void __exit exit_rc_map_wetek_hub(void)
{
rc_map_unregister(&wetek_hub_map);
}
module_init(init_rc_map_wetek_hub)
module_exit(exit_rc_map_wetek_hub)
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Christian Hewitt <christianshewitt@gmail.com>");

View File

@ -270,6 +270,7 @@ struct rc_map *rc_map_get(const char *name);
#define RC_MAP_VIDEOMATE_K100 "rc-videomate-k100"
#define RC_MAP_VIDEOMATE_S350 "rc-videomate-s350"
#define RC_MAP_VIDEOMATE_TV_PVR "rc-videomate-tv-pvr"
#define RC_MAP_WETEK_HUB "rc-wetek-hub"
#define RC_MAP_WINFAST "rc-winfast"
#define RC_MAP_WINFAST_USBII_DELUXE "rc-winfast-usbii-deluxe"
#define RC_MAP_SU3000 "rc-su3000"