media: rc/keymaps: add support for RC of hisilicon TV demo boards

This is a NEC protocol type remote controller distributed with
hisilicon TV demo boards.

Signed-off-by: Younian Wang <wangyounian@hisilicon.com>
Signed-off-by: Jiancheng Xue <xuejiancheng@hisilicon.com>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Younian Wang 2017-10-19 21:43:29 +02:00 committed by Mauro Carvalho Chehab
parent 7dc31b82dd
commit ce5aa6d205
3 changed files with 83 additions and 0 deletions

View File

@ -47,6 +47,7 @@ obj-$(CONFIG_RC_MAP) += rc-adstech-dvb-t-pci.o \
rc-geekbox.o \
rc-genius-tvgo-a11mce.o \
rc-gotview7135.o \
rc-hisi-tv-demo.o \
rc-imon-mce.o \
rc-imon-pad.o \
rc-iodata-bctv7e.o \

View File

@ -0,0 +1,81 @@
/*
* Keytable for remote controller of HiSilicon tv demo board.
*
* Copyright (c) 2017 HiSilicon Technologies Co., Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include <linux/module.h>
#include <media/rc-map.h>
static struct rc_map_table hisi_tv_demo_keymap[] = {
{ 0x00000092, KEY_1},
{ 0x00000093, KEY_2},
{ 0x000000cc, KEY_3},
{ 0x0000009f, KEY_4},
{ 0x0000008e, KEY_5},
{ 0x0000008f, KEY_6},
{ 0x000000c8, KEY_7},
{ 0x00000094, KEY_8},
{ 0x0000008a, KEY_9},
{ 0x0000008b, KEY_0},
{ 0x000000ce, KEY_ENTER},
{ 0x000000ca, KEY_UP},
{ 0x00000099, KEY_LEFT},
{ 0x00000084, KEY_PAGEUP},
{ 0x000000c1, KEY_RIGHT},
{ 0x000000d2, KEY_DOWN},
{ 0x00000089, KEY_PAGEDOWN},
{ 0x000000d1, KEY_MUTE},
{ 0x00000098, KEY_VOLUMEDOWN},
{ 0x00000090, KEY_VOLUMEUP},
{ 0x0000009c, KEY_POWER},
{ 0x000000d6, KEY_STOP},
{ 0x00000097, KEY_MENU},
{ 0x000000cb, KEY_BACK},
{ 0x000000da, KEY_PLAYPAUSE},
{ 0x00000080, KEY_INFO},
{ 0x000000c3, KEY_REWIND},
{ 0x00000087, KEY_HOMEPAGE},
{ 0x000000d0, KEY_FASTFORWARD},
{ 0x000000c4, KEY_SOUND},
{ 0x00000082, BTN_1},
{ 0x000000c7, BTN_2},
{ 0x00000086, KEY_PROGRAM},
{ 0x000000d9, KEY_SUBTITLE},
{ 0x00000085, KEY_ZOOM},
{ 0x0000009b, KEY_RED},
{ 0x0000009a, KEY_GREEN},
{ 0x000000c0, KEY_YELLOW},
{ 0x000000c2, KEY_BLUE},
{ 0x0000009d, KEY_CHANNELDOWN},
{ 0x000000cf, KEY_CHANNELUP},
};
static struct rc_map_list hisi_tv_demo_map = {
.map = {
.scan = hisi_tv_demo_keymap,
.size = ARRAY_SIZE(hisi_tv_demo_keymap),
.rc_proto = RC_PROTO_NEC,
.name = RC_MAP_HISI_TV_DEMO,
}
};
static int __init init_rc_map_hisi_tv_demo(void)
{
return rc_map_register(&hisi_tv_demo_map);
}
static void __exit exit_rc_map_hisi_tv_demo(void)
{
rc_map_unregister(&hisi_tv_demo_map);
}
module_init(init_rc_map_hisi_tv_demo)
module_exit(exit_rc_map_hisi_tv_demo)
MODULE_LICENSE("GPL v2");

View File

@ -258,6 +258,7 @@ struct rc_map *rc_map_get(const char *name);
#define RC_MAP_GENIUS_TVGO_A11MCE "rc-genius-tvgo-a11mce"
#define RC_MAP_GOTVIEW7135 "rc-gotview7135"
#define RC_MAP_HAUPPAUGE_NEW "rc-hauppauge"
#define RC_MAP_HISI_TV_DEMO "rc-hisi-tv-demo"
#define RC_MAP_IMON_MCE "rc-imon-mce"
#define RC_MAP_IMON_PAD "rc-imon-pad"
#define RC_MAP_IODATA_BCTV7E "rc-iodata-bctv7e"