1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* keytable for Terratec Cinergy S2 HD Remote Controller
5 #include <media/rc-map.h>
6 #include <linux/module.h>
8 static struct rc_map_table terratec_cinergy_s2_hd
[] = {
9 { 0x03, KEY_NEXT
}, /* >| */
11 { 0x0b, KEY_PREVIOUS
}, /* |< */
12 { 0x10, KEY_FASTFORWARD
}, /* >> */
13 { 0x11, KEY_REWIND
}, /* << */
14 { 0x12, KEY_ESC
}, /* Back */
18 { 0x16, KEY_MEDIA
}, /* Video-Menu */
24 { 0x1c, KEY_SUBTITLE
},
25 { 0x1d, KEY_MENU
}, /* DVD-Menu */
28 { 0x20, KEY_CHANNELDOWN
},
29 { 0x21, KEY_VOLUMEDOWN
},
31 { 0x23, KEY_VOLUMEUP
},
32 { 0x24, KEY_CHANNELUP
},
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
},
60 static struct rc_map_list terratec_cinergy_s2_hd_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
,
69 static int __init
init_rc_map_terratec_cinergy_s2_hd(void)
71 return rc_map_register(&terratec_cinergy_s2_hd_map
);
74 static void __exit
exit_rc_map_terratec_cinergy_s2_hd(void)
76 rc_map_unregister(&terratec_cinergy_s2_hd_map
);
79 module_init(init_rc_map_terratec_cinergy_s2_hd
);
80 module_exit(exit_rc_map_terratec_cinergy_s2_hd
);
82 MODULE_LICENSE("GPL");