Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf
[sfrench/cifs-2.6.git] / drivers / media / rc / keymaps / rc-kworld-plus-tv-analog.c
1 // SPDX-License-Identifier: GPL-2.0+
2 // kworld-plus-tv-analog.h - Keytable for kworld_plus_tv_analog Remote Controller
3 //
4 // keymap imported from ir-keymaps.c
5 //
6 // Copyright (c) 2010 by Mauro Carvalho Chehab
7
8 #include <media/rc-map.h>
9 #include <linux/module.h>
10
11 /* Kworld Plus TV Analog Lite PCI IR
12    Mauro Carvalho Chehab <mchehab@infradead.org>
13  */
14
15 static struct rc_map_table kworld_plus_tv_analog[] = {
16         { 0x0c, KEY_MEDIA },            /* Kworld key */
17         { 0x16, KEY_CLOSECD },          /* -> ) */
18         { 0x1d, KEY_POWER2 },
19
20         { 0x00, KEY_1 },
21         { 0x01, KEY_2 },
22         { 0x02, KEY_3 },                /* Two keys have the same code: 3 and left */
23         { 0x03, KEY_4 },                /* Two keys have the same code: 3 and right */
24         { 0x04, KEY_5 },
25         { 0x05, KEY_6 },
26         { 0x06, KEY_7 },
27         { 0x07, KEY_8 },
28         { 0x08, KEY_9 },
29         { 0x0a, KEY_0 },
30
31         { 0x09, KEY_AGAIN },
32         { 0x14, KEY_MUTE },
33
34         { 0x20, KEY_UP },
35         { 0x21, KEY_DOWN },
36         { 0x0b, KEY_ENTER },
37
38         { 0x10, KEY_CHANNELUP },
39         { 0x11, KEY_CHANNELDOWN },
40
41         /* Couldn't map key left/key right since those
42            conflict with '3' and '4' scancodes
43            I dunno what the original driver does
44          */
45
46         { 0x13, KEY_VOLUMEUP },
47         { 0x12, KEY_VOLUMEDOWN },
48
49         /* The lower part of the IR
50            There are several duplicated keycodes there.
51            Most of them conflict with digits.
52            Add mappings just to the unused scancodes.
53            Somehow, the original driver has a way to know,
54            but this doesn't seem to be on some GPIO.
55            Also, it is not related to the time between keyup
56            and keydown.
57          */
58         { 0x19, KEY_TIME},              /* Timeshift */
59         { 0x1a, KEY_STOP},
60         { 0x1b, KEY_RECORD},
61
62         { 0x22, KEY_TEXT},
63
64         { 0x15, KEY_AUDIO},             /* ((*)) */
65         { 0x0f, KEY_ZOOM},
66         { 0x1c, KEY_CAMERA},            /* snapshot */
67
68         { 0x18, KEY_RED},               /* B */
69         { 0x23, KEY_GREEN},             /* C */
70 };
71
72 static struct rc_map_list kworld_plus_tv_analog_map = {
73         .map = {
74                 .scan     = kworld_plus_tv_analog,
75                 .size     = ARRAY_SIZE(kworld_plus_tv_analog),
76                 .rc_proto = RC_PROTO_UNKNOWN,   /* Legacy IR type */
77                 .name     = RC_MAP_KWORLD_PLUS_TV_ANALOG,
78         }
79 };
80
81 static int __init init_rc_map_kworld_plus_tv_analog(void)
82 {
83         return rc_map_register(&kworld_plus_tv_analog_map);
84 }
85
86 static void __exit exit_rc_map_kworld_plus_tv_analog(void)
87 {
88         rc_map_unregister(&kworld_plus_tv_analog_map);
89 }
90
91 module_init(init_rc_map_kworld_plus_tv_analog)
92 module_exit(exit_rc_map_kworld_plus_tv_analog)
93
94 MODULE_LICENSE("GPL");
95 MODULE_AUTHOR("Mauro Carvalho Chehab");