84 lines · c
1// SPDX-License-Identifier: GPL-2.0-or-later2/* keytable for Terratec Cinergy S2 HD Remote Controller3 */4 5#include <media/rc-map.h>6#include <linux/module.h>7 8static struct rc_map_table terratec_cinergy_s2_hd[] = {9 { 0x03, KEY_NEXT}, /* >| */10 { 0x07, KEY_RECORD},11 { 0x0b, KEY_PREVIOUS}, /* |< */12 { 0x10, KEY_FASTFORWARD}, /* >> */13 { 0x11, KEY_REWIND}, /* << */14 { 0x12, KEY_ESC}, /* Back */15 { 0x13, KEY_PLAY},16 { 0x14, KEY_IMAGES},17 { 0x15, KEY_AUDIO},18 { 0x16, KEY_MEDIA}, /* Video-Menu */19 { 0x17, KEY_STOP},20 { 0x18, KEY_DVD},21 { 0x19, KEY_TV},22 { 0x1a, KEY_DELETE},23 { 0x1b, KEY_TEXT},24 { 0x1c, KEY_SUBTITLE},25 { 0x1d, KEY_MENU}, /* DVD-Menu */26 { 0x1e, KEY_HOME},27 { 0x1f, KEY_PAUSE},28 { 0x20, KEY_CHANNELDOWN},29 { 0x21, KEY_VOLUMEDOWN},30 { 0x22, KEY_MUTE},31 { 0x23, KEY_VOLUMEUP},32 { 0x24, KEY_CHANNELUP},33 { 0x25, KEY_BLUE},34 { 0x26, KEY_YELLOW},35 { 0x27, KEY_GREEN},36 { 0x28, KEY_RED},37 { 0x29, KEY_INFO},38 { 0x2b, KEY_DOWN},39 { 0x2c, KEY_RIGHT},40 { 0x2d, KEY_OK},41 { 0x2e, KEY_LEFT},42 { 0x2f, KEY_UP},43 { 0x30, KEY_EPG},44 { 0x32, KEY_VIDEO}, /* A<=>B */45 { 0x33, KEY_NUMERIC_0},46 { 0x34, KEY_VCR}, /* AV */47 { 0x35, KEY_NUMERIC_9},48 { 0x36, KEY_NUMERIC_8},49 { 0x37, KEY_NUMERIC_7},50 { 0x38, KEY_NUMERIC_6},51 { 0x39, KEY_NUMERIC_5},52 { 0x3a, KEY_NUMERIC_4},53 { 0x3b, KEY_NUMERIC_3},54 { 0x3c, KEY_NUMERIC_2},55 { 0x3d, KEY_NUMERIC_1},56 { 0x3e, KEY_POWER},57 58};59 60static struct rc_map_list terratec_cinergy_s2_hd_map = {61 .map = {62 .scan = terratec_cinergy_s2_hd,63 .size = ARRAY_SIZE(terratec_cinergy_s2_hd),64 .rc_proto = RC_PROTO_UNKNOWN, /* Legacy IR type */65 .name = RC_MAP_TERRATEC_CINERGY_S2_HD,66 }67};68 69static int __init init_rc_map_terratec_cinergy_s2_hd(void)70{71 return rc_map_register(&terratec_cinergy_s2_hd_map);72}73 74static void __exit exit_rc_map_terratec_cinergy_s2_hd(void)75{76 rc_map_unregister(&terratec_cinergy_s2_hd_map);77}78 79module_init(init_rc_map_terratec_cinergy_s2_hd);80module_exit(exit_rc_map_terratec_cinergy_s2_hd);81 82MODULE_LICENSE("GPL");83MODULE_DESCRIPTION("Terratec Cinergy S2 HD remote controller keytable");84