blob: 601ca2337e458c763a747671ba4fac800156307f [file] [log] [blame]
David Härdeman829ba9f2010-11-19 20:43:27 -03001/* rc-main.c - Remote Controller core module
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -03002 *
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02003 * Copyright (C) 2009-2010 by Mauro Carvalho Chehab
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -030013 */
14
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030015#include <media/rc-core.h>
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -030016#include <linux/atomic.h>
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030017#include <linux/spinlock.h>
18#include <linux/delay.h>
Mauro Carvalho Chehab882ead32009-12-29 10:37:38 -030019#include <linux/input.h>
Sean Young153a60b2013-07-30 19:00:01 -030020#include <linux/leds.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
David Härdemanfcb13092015-05-19 19:03:17 -030022#include <linux/idr.h>
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -030023#include <linux/device.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040024#include <linux/module.h>
Mauro Carvalho Chehabf62de672010-11-09 23:09:57 -030025#include "rc-core-priv.h"
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -030026
David Härdemanb3074c02010-04-02 15:58:28 -030027/* Sizes are in bytes, 256 bytes allows for 32 entries on x64 */
28#define IR_TAB_MIN_SIZE 256
29#define IR_TAB_MAX_SIZE 8192
David Härdemanfcb13092015-05-19 19:03:17 -030030#define RC_DEV_MAX 256
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -030031
David Härdemana374fef2010-04-02 15:58:29 -030032/* FIXME: IR_KEYPRESS_TIMEOUT should be protocol specific */
33#define IR_KEYPRESS_TIMEOUT 250
34
David Härdeman4c7b3552010-11-10 11:04:19 -030035/* Used to keep track of known keymaps */
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030036static LIST_HEAD(rc_map_list);
37static DEFINE_SPINLOCK(rc_map_lock);
Sean Young153a60b2013-07-30 19:00:01 -030038static struct led_trigger *led_feedback;
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030039
David Härdemanfcb13092015-05-19 19:03:17 -030040/* Used to keep track of rc devices */
41static DEFINE_IDA(rc_ida);
42
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030043static struct rc_map_list *seek_rc_map(const char *name)
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030044{
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030045 struct rc_map_list *map = NULL;
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030046
47 spin_lock(&rc_map_lock);
48 list_for_each_entry(map, &rc_map_list, list) {
49 if (!strcmp(name, map->map.name)) {
50 spin_unlock(&rc_map_lock);
51 return map;
52 }
53 }
54 spin_unlock(&rc_map_lock);
55
56 return NULL;
57}
58
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030059struct rc_map *rc_map_get(const char *name)
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030060{
61
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030062 struct rc_map_list *map;
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030063
64 map = seek_rc_map(name);
Russell King2ff56fa2015-10-15 13:15:24 -030065#ifdef CONFIG_MODULES
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030066 if (!map) {
Kees Cook8ea54882014-03-11 17:25:53 -030067 int rc = request_module("%s", name);
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030068 if (rc < 0) {
69 printk(KERN_ERR "Couldn't load IR keymap %s\n", name);
70 return NULL;
71 }
72 msleep(20); /* Give some time for IR to register */
73
74 map = seek_rc_map(name);
75 }
76#endif
77 if (!map) {
78 printk(KERN_ERR "IR keymap %s not found\n", name);
79 return NULL;
80 }
81
82 printk(KERN_INFO "Registered IR keymap %s\n", map->map.name);
83
84 return &map->map;
85}
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030086EXPORT_SYMBOL_GPL(rc_map_get);
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030087
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030088int rc_map_register(struct rc_map_list *map)
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030089{
90 spin_lock(&rc_map_lock);
91 list_add_tail(&map->list, &rc_map_list);
92 spin_unlock(&rc_map_lock);
93 return 0;
94}
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030095EXPORT_SYMBOL_GPL(rc_map_register);
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030096
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030097void rc_map_unregister(struct rc_map_list *map)
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030098{
99 spin_lock(&rc_map_lock);
100 list_del(&map->list);
101 spin_unlock(&rc_map_lock);
102}
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -0300103EXPORT_SYMBOL_GPL(rc_map_unregister);
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -0300104
105
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300106static struct rc_map_table empty[] = {
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -0300107 { 0x2a, KEY_COFFEE },
108};
109
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -0300110static struct rc_map_list empty_map = {
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -0300111 .map = {
112 .scan = empty,
113 .size = ARRAY_SIZE(empty),
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300114 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -0300115 .name = RC_MAP_EMPTY,
116 }
117};
118
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300119/**
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700120 * ir_create_table() - initializes a scancode table
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300121 * @rc_map: the rc_map to initialize
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700122 * @name: name to assign to the table
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300123 * @rc_type: ir type to assign to the new table
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700124 * @size: initial size of the table
125 * @return: zero on success or a negative error code
126 *
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300127 * This routine will initialize the rc_map and will allocate
David Härdemand8b4b582010-10-29 16:08:23 -0300128 * memory to hold at least the specified number of elements.
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700129 */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300130static int ir_create_table(struct rc_map *rc_map,
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300131 const char *name, u64 rc_type, size_t size)
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700132{
Hans Verkuild54fc3b2016-06-26 07:44:56 -0300133 rc_map->name = kstrdup(name, GFP_KERNEL);
134 if (!rc_map->name)
135 return -ENOMEM;
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300136 rc_map->rc_type = rc_type;
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300137 rc_map->alloc = roundup_pow_of_two(size * sizeof(struct rc_map_table));
138 rc_map->size = rc_map->alloc / sizeof(struct rc_map_table);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300139 rc_map->scan = kmalloc(rc_map->alloc, GFP_KERNEL);
Hans Verkuild54fc3b2016-06-26 07:44:56 -0300140 if (!rc_map->scan) {
141 kfree(rc_map->name);
142 rc_map->name = NULL;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700143 return -ENOMEM;
Hans Verkuild54fc3b2016-06-26 07:44:56 -0300144 }
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700145
146 IR_dprintk(1, "Allocated space for %u keycode entries (%u bytes)\n",
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300147 rc_map->size, rc_map->alloc);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700148 return 0;
149}
150
151/**
152 * ir_free_table() - frees memory allocated by a scancode table
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300153 * @rc_map: the table whose mappings need to be freed
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700154 *
155 * This routine will free memory alloctaed for key mappings used by given
156 * scancode table.
157 */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300158static void ir_free_table(struct rc_map *rc_map)
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700159{
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300160 rc_map->size = 0;
Hans Verkuild54fc3b2016-06-26 07:44:56 -0300161 kfree(rc_map->name);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300162 kfree(rc_map->scan);
163 rc_map->scan = NULL;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700164}
165
166/**
David Härdemanb3074c02010-04-02 15:58:28 -0300167 * ir_resize_table() - resizes a scancode table if necessary
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300168 * @rc_map: the rc_map to resize
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700169 * @gfp_flags: gfp flags to use when allocating memory
David Härdemanb3074c02010-04-02 15:58:28 -0300170 * @return: zero on success or a negative error code
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300171 *
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300172 * This routine will shrink the rc_map if it has lots of
David Härdemanb3074c02010-04-02 15:58:28 -0300173 * unused entries and grow it if it is full.
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300174 */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300175static int ir_resize_table(struct rc_map *rc_map, gfp_t gfp_flags)
David Härdemanb3074c02010-04-02 15:58:28 -0300176{
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300177 unsigned int oldalloc = rc_map->alloc;
David Härdemanb3074c02010-04-02 15:58:28 -0300178 unsigned int newalloc = oldalloc;
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300179 struct rc_map_table *oldscan = rc_map->scan;
180 struct rc_map_table *newscan;
David Härdemanb3074c02010-04-02 15:58:28 -0300181
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300182 if (rc_map->size == rc_map->len) {
David Härdemanb3074c02010-04-02 15:58:28 -0300183 /* All entries in use -> grow keytable */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300184 if (rc_map->alloc >= IR_TAB_MAX_SIZE)
David Härdemanb3074c02010-04-02 15:58:28 -0300185 return -ENOMEM;
186
187 newalloc *= 2;
188 IR_dprintk(1, "Growing table to %u bytes\n", newalloc);
189 }
190
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300191 if ((rc_map->len * 3 < rc_map->size) && (oldalloc > IR_TAB_MIN_SIZE)) {
David Härdemanb3074c02010-04-02 15:58:28 -0300192 /* Less than 1/3 of entries in use -> shrink keytable */
193 newalloc /= 2;
194 IR_dprintk(1, "Shrinking table to %u bytes\n", newalloc);
195 }
196
197 if (newalloc == oldalloc)
198 return 0;
199
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700200 newscan = kmalloc(newalloc, gfp_flags);
David Härdemanb3074c02010-04-02 15:58:28 -0300201 if (!newscan) {
202 IR_dprintk(1, "Failed to kmalloc %u bytes\n", newalloc);
203 return -ENOMEM;
204 }
205
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300206 memcpy(newscan, rc_map->scan, rc_map->len * sizeof(struct rc_map_table));
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300207 rc_map->scan = newscan;
208 rc_map->alloc = newalloc;
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300209 rc_map->size = rc_map->alloc / sizeof(struct rc_map_table);
David Härdemanb3074c02010-04-02 15:58:28 -0300210 kfree(oldscan);
211 return 0;
212}
213
214/**
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700215 * ir_update_mapping() - set a keycode in the scancode->keycode table
David Härdemand8b4b582010-10-29 16:08:23 -0300216 * @dev: the struct rc_dev device descriptor
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300217 * @rc_map: scancode table to be adjusted
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700218 * @index: index of the mapping that needs to be updated
219 * @keycode: the desired keycode
220 * @return: previous keycode assigned to the mapping
David Härdemanb3074c02010-04-02 15:58:28 -0300221 *
David Härdemand8b4b582010-10-29 16:08:23 -0300222 * This routine is used to update scancode->keycode mapping at given
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700223 * position.
David Härdemanb3074c02010-04-02 15:58:28 -0300224 */
David Härdemand8b4b582010-10-29 16:08:23 -0300225static unsigned int ir_update_mapping(struct rc_dev *dev,
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300226 struct rc_map *rc_map,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700227 unsigned int index,
228 unsigned int new_keycode)
229{
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300230 int old_keycode = rc_map->scan[index].keycode;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700231 int i;
232
233 /* Did the user wish to remove the mapping? */
234 if (new_keycode == KEY_RESERVED || new_keycode == KEY_UNKNOWN) {
235 IR_dprintk(1, "#%d: Deleting scan 0x%04x\n",
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300236 index, rc_map->scan[index].scancode);
237 rc_map->len--;
238 memmove(&rc_map->scan[index], &rc_map->scan[index+ 1],
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300239 (rc_map->len - index) * sizeof(struct rc_map_table));
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700240 } else {
241 IR_dprintk(1, "#%d: %s scan 0x%04x with key 0x%04x\n",
242 index,
243 old_keycode == KEY_RESERVED ? "New" : "Replacing",
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300244 rc_map->scan[index].scancode, new_keycode);
245 rc_map->scan[index].keycode = new_keycode;
David Härdemand8b4b582010-10-29 16:08:23 -0300246 __set_bit(new_keycode, dev->input_dev->keybit);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700247 }
248
249 if (old_keycode != KEY_RESERVED) {
250 /* A previous mapping was updated... */
David Härdemand8b4b582010-10-29 16:08:23 -0300251 __clear_bit(old_keycode, dev->input_dev->keybit);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700252 /* ... but another scancode might use the same keycode */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300253 for (i = 0; i < rc_map->len; i++) {
254 if (rc_map->scan[i].keycode == old_keycode) {
David Härdemand8b4b582010-10-29 16:08:23 -0300255 __set_bit(old_keycode, dev->input_dev->keybit);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700256 break;
257 }
258 }
259
260 /* Possibly shrink the keytable, failure is not a problem */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300261 ir_resize_table(rc_map, GFP_ATOMIC);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700262 }
263
264 return old_keycode;
265}
266
267/**
David Härdeman4c7b3552010-11-10 11:04:19 -0300268 * ir_establish_scancode() - set a keycode in the scancode->keycode table
David Härdemand8b4b582010-10-29 16:08:23 -0300269 * @dev: the struct rc_dev device descriptor
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300270 * @rc_map: scancode table to be searched
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700271 * @scancode: the desired scancode
272 * @resize: controls whether we allowed to resize the table to
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300273 * accommodate not yet present scancodes
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700274 * @return: index of the mapping containing scancode in question
275 * or -1U in case of failure.
276 *
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300277 * This routine is used to locate given scancode in rc_map.
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700278 * If scancode is not yet present the routine will allocate a new slot
279 * for it.
280 */
David Härdemand8b4b582010-10-29 16:08:23 -0300281static unsigned int ir_establish_scancode(struct rc_dev *dev,
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300282 struct rc_map *rc_map,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700283 unsigned int scancode,
284 bool resize)
David Härdemanb3074c02010-04-02 15:58:28 -0300285{
286 unsigned int i;
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300287
288 /*
289 * Unfortunately, some hardware-based IR decoders don't provide
290 * all bits for the complete IR code. In general, they provide only
291 * the command part of the IR code. Yet, as it is possible to replace
292 * the provided IR with another one, it is needed to allow loading
David Härdemand8b4b582010-10-29 16:08:23 -0300293 * IR tables from other remotes. So, we support specifying a mask to
294 * indicate the valid bits of the scancodes.
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300295 */
David Härdeman9d2f1d32014-04-03 20:32:26 -0300296 if (dev->scancode_mask)
297 scancode &= dev->scancode_mask;
David Härdemanb3074c02010-04-02 15:58:28 -0300298
299 /* First check if we already have a mapping for this ir command */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300300 for (i = 0; i < rc_map->len; i++) {
301 if (rc_map->scan[i].scancode == scancode)
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700302 return i;
303
David Härdemanb3074c02010-04-02 15:58:28 -0300304 /* Keytable is sorted from lowest to highest scancode */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300305 if (rc_map->scan[i].scancode >= scancode)
David Härdemanb3074c02010-04-02 15:58:28 -0300306 break;
David Härdemanb3074c02010-04-02 15:58:28 -0300307 }
308
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700309 /* No previous mapping found, we might need to grow the table */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300310 if (rc_map->size == rc_map->len) {
311 if (!resize || ir_resize_table(rc_map, GFP_ATOMIC))
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700312 return -1U;
313 }
David Härdemanb3074c02010-04-02 15:58:28 -0300314
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700315 /* i is the proper index to insert our new keycode */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300316 if (i < rc_map->len)
317 memmove(&rc_map->scan[i + 1], &rc_map->scan[i],
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300318 (rc_map->len - i) * sizeof(struct rc_map_table));
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300319 rc_map->scan[i].scancode = scancode;
320 rc_map->scan[i].keycode = KEY_RESERVED;
321 rc_map->len++;
David Härdemanb3074c02010-04-02 15:58:28 -0300322
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700323 return i;
David Härdemanb3074c02010-04-02 15:58:28 -0300324}
325
326/**
327 * ir_setkeycode() - set a keycode in the scancode->keycode table
David Härdemand8b4b582010-10-29 16:08:23 -0300328 * @idev: the struct input_dev device descriptor
David Härdemanb3074c02010-04-02 15:58:28 -0300329 * @scancode: the desired scancode
330 * @keycode: result
331 * @return: -EINVAL if the keycode could not be inserted, otherwise zero.
332 *
333 * This routine is used to handle evdev EVIOCSKEY ioctl.
334 */
David Härdemand8b4b582010-10-29 16:08:23 -0300335static int ir_setkeycode(struct input_dev *idev,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700336 const struct input_keymap_entry *ke,
337 unsigned int *old_keycode)
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300338{
David Härdemand8b4b582010-10-29 16:08:23 -0300339 struct rc_dev *rdev = input_get_drvdata(idev);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300340 struct rc_map *rc_map = &rdev->rc_map;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700341 unsigned int index;
342 unsigned int scancode;
Mauro Carvalho Chehabdea8a392010-11-29 07:46:13 -0300343 int retval = 0;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700344 unsigned long flags;
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300345
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300346 spin_lock_irqsave(&rc_map->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700347
348 if (ke->flags & INPUT_KEYMAP_BY_INDEX) {
349 index = ke->index;
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300350 if (index >= rc_map->len) {
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700351 retval = -EINVAL;
352 goto out;
353 }
354 } else {
355 retval = input_scancode_to_scalar(ke, &scancode);
356 if (retval)
357 goto out;
358
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300359 index = ir_establish_scancode(rdev, rc_map, scancode, true);
360 if (index >= rc_map->len) {
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700361 retval = -ENOMEM;
362 goto out;
363 }
364 }
365
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300366 *old_keycode = ir_update_mapping(rdev, rc_map, index, ke->keycode);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700367
368out:
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300369 spin_unlock_irqrestore(&rc_map->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700370 return retval;
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300371}
372
373/**
David Härdemanb3074c02010-04-02 15:58:28 -0300374 * ir_setkeytable() - sets several entries in the scancode->keycode table
David Härdemand8b4b582010-10-29 16:08:23 -0300375 * @dev: the struct rc_dev device descriptor
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300376 * @to: the struct rc_map to copy entries to
377 * @from: the struct rc_map to copy entries from
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700378 * @return: -ENOMEM if all keycodes could not be inserted, otherwise zero.
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300379 *
David Härdemanb3074c02010-04-02 15:58:28 -0300380 * This routine is used to handle table initialization.
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300381 */
David Härdemand8b4b582010-10-29 16:08:23 -0300382static int ir_setkeytable(struct rc_dev *dev,
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300383 const struct rc_map *from)
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300384{
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300385 struct rc_map *rc_map = &dev->rc_map;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700386 unsigned int i, index;
387 int rc;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300388
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300389 rc = ir_create_table(rc_map, from->name,
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300390 from->rc_type, from->size);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700391 if (rc)
392 return rc;
393
394 IR_dprintk(1, "Allocated space for %u keycode entries (%u bytes)\n",
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300395 rc_map->size, rc_map->alloc);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700396
David Härdemanb3074c02010-04-02 15:58:28 -0300397 for (i = 0; i < from->size; i++) {
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300398 index = ir_establish_scancode(dev, rc_map,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700399 from->scan[i].scancode, false);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300400 if (index >= rc_map->len) {
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700401 rc = -ENOMEM;
David Härdemanb3074c02010-04-02 15:58:28 -0300402 break;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700403 }
404
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300405 ir_update_mapping(dev, rc_map, index,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700406 from->scan[i].keycode);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300407 }
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700408
409 if (rc)
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300410 ir_free_table(rc_map);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700411
David Härdemanb3074c02010-04-02 15:58:28 -0300412 return rc;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300413}
414
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300415/**
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700416 * ir_lookup_by_scancode() - locate mapping by scancode
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300417 * @rc_map: the struct rc_map to search
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700418 * @scancode: scancode to look for in the table
419 * @return: index in the table, -1U if not found
420 *
421 * This routine performs binary search in RC keykeymap table for
422 * given scancode.
423 */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300424static unsigned int ir_lookup_by_scancode(const struct rc_map *rc_map,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700425 unsigned int scancode)
426{
David Härdeman0d070252010-10-30 22:17:44 +0200427 int start = 0;
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300428 int end = rc_map->len - 1;
David Härdeman0d070252010-10-30 22:17:44 +0200429 int mid;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700430
431 while (start <= end) {
432 mid = (start + end) / 2;
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300433 if (rc_map->scan[mid].scancode < scancode)
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700434 start = mid + 1;
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300435 else if (rc_map->scan[mid].scancode > scancode)
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700436 end = mid - 1;
437 else
438 return mid;
439 }
440
441 return -1U;
442}
443
444/**
David Härdemanb3074c02010-04-02 15:58:28 -0300445 * ir_getkeycode() - get a keycode from the scancode->keycode table
David Härdemand8b4b582010-10-29 16:08:23 -0300446 * @idev: the struct input_dev device descriptor
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300447 * @scancode: the desired scancode
David Härdemanb3074c02010-04-02 15:58:28 -0300448 * @keycode: used to return the keycode, if found, or KEY_RESERVED
449 * @return: always returns zero.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300450 *
451 * This routine is used to handle evdev EVIOCGKEY ioctl.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300452 */
David Härdemand8b4b582010-10-29 16:08:23 -0300453static int ir_getkeycode(struct input_dev *idev,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700454 struct input_keymap_entry *ke)
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300455{
David Härdemand8b4b582010-10-29 16:08:23 -0300456 struct rc_dev *rdev = input_get_drvdata(idev);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300457 struct rc_map *rc_map = &rdev->rc_map;
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -0300458 struct rc_map_table *entry;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700459 unsigned long flags;
460 unsigned int index;
461 unsigned int scancode;
462 int retval;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300463
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300464 spin_lock_irqsave(&rc_map->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700465
466 if (ke->flags & INPUT_KEYMAP_BY_INDEX) {
467 index = ke->index;
468 } else {
469 retval = input_scancode_to_scalar(ke, &scancode);
470 if (retval)
471 goto out;
472
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300473 index = ir_lookup_by_scancode(rc_map, scancode);
Mauro Carvalho Chehabe97f4672009-12-04 17:17:47 -0300474 }
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700475
Dmitry Torokhov54e74b82011-01-28 23:33:29 -0800476 if (index < rc_map->len) {
477 entry = &rc_map->scan[index];
478
479 ke->index = index;
480 ke->keycode = entry->keycode;
481 ke->len = sizeof(entry->scancode);
482 memcpy(ke->scancode, &entry->scancode, sizeof(entry->scancode));
483
484 } else if (!(ke->flags & INPUT_KEYMAP_BY_INDEX)) {
485 /*
486 * We do not really know the valid range of scancodes
487 * so let's respond with KEY_RESERVED to anything we
488 * do not have mapping for [yet].
489 */
490 ke->index = index;
491 ke->keycode = KEY_RESERVED;
492 } else {
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700493 retval = -EINVAL;
494 goto out;
495 }
496
Dmitry Torokhov47c5ba52010-10-31 15:18:42 -0700497 retval = 0;
498
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700499out:
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300500 spin_unlock_irqrestore(&rc_map->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700501 return retval;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300502}
503
504/**
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300505 * rc_g_keycode_from_table() - gets the keycode that corresponds to a scancode
David Härdemand8b4b582010-10-29 16:08:23 -0300506 * @dev: the struct rc_dev descriptor of the device
507 * @scancode: the scancode to look for
508 * @return: the corresponding keycode, or KEY_RESERVED
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300509 *
David Härdemand8b4b582010-10-29 16:08:23 -0300510 * This routine is used by drivers which need to convert a scancode to a
511 * keycode. Normally it should not be used since drivers should have no
512 * interest in keycodes.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300513 */
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300514u32 rc_g_keycode_from_table(struct rc_dev *dev, u32 scancode)
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300515{
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300516 struct rc_map *rc_map = &dev->rc_map;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700517 unsigned int keycode;
518 unsigned int index;
519 unsigned long flags;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300520
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300521 spin_lock_irqsave(&rc_map->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700522
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300523 index = ir_lookup_by_scancode(rc_map, scancode);
524 keycode = index < rc_map->len ?
525 rc_map->scan[index].keycode : KEY_RESERVED;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700526
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -0300527 spin_unlock_irqrestore(&rc_map->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700528
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300529 if (keycode != KEY_RESERVED)
530 IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n",
David Härdemand8b4b582010-10-29 16:08:23 -0300531 dev->input_name, scancode, keycode);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700532
David Härdemanb3074c02010-04-02 15:58:28 -0300533 return keycode;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300534}
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300535EXPORT_SYMBOL_GPL(rc_g_keycode_from_table);
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300536
537/**
David Härdeman62c65032010-10-29 16:08:07 -0300538 * ir_do_keyup() - internal function to signal the release of a keypress
David Härdemand8b4b582010-10-29 16:08:23 -0300539 * @dev: the struct rc_dev descriptor of the device
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300540 * @sync: whether or not to call input_sync
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300541 *
David Härdeman62c65032010-10-29 16:08:07 -0300542 * This function is used internally to release a keypress, it must be
543 * called with keylock held.
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300544 */
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300545static void ir_do_keyup(struct rc_dev *dev, bool sync)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300546{
David Härdemand8b4b582010-10-29 16:08:23 -0300547 if (!dev->keypressed)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300548 return;
549
David Härdemand8b4b582010-10-29 16:08:23 -0300550 IR_dprintk(1, "keyup key 0x%04x\n", dev->last_keycode);
551 input_report_key(dev->input_dev, dev->last_keycode, 0);
Sean Young153a60b2013-07-30 19:00:01 -0300552 led_trigger_event(led_feedback, LED_OFF);
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300553 if (sync)
554 input_sync(dev->input_dev);
David Härdemand8b4b582010-10-29 16:08:23 -0300555 dev->keypressed = false;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300556}
David Härdeman62c65032010-10-29 16:08:07 -0300557
558/**
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300559 * rc_keyup() - signals the release of a keypress
David Härdemand8b4b582010-10-29 16:08:23 -0300560 * @dev: the struct rc_dev descriptor of the device
David Härdeman62c65032010-10-29 16:08:07 -0300561 *
562 * This routine is used to signal that a key has been released on the
563 * remote control.
564 */
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300565void rc_keyup(struct rc_dev *dev)
David Härdeman62c65032010-10-29 16:08:07 -0300566{
567 unsigned long flags;
David Härdeman62c65032010-10-29 16:08:07 -0300568
David Härdemand8b4b582010-10-29 16:08:23 -0300569 spin_lock_irqsave(&dev->keylock, flags);
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300570 ir_do_keyup(dev, true);
David Härdemand8b4b582010-10-29 16:08:23 -0300571 spin_unlock_irqrestore(&dev->keylock, flags);
David Härdeman62c65032010-10-29 16:08:07 -0300572}
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300573EXPORT_SYMBOL_GPL(rc_keyup);
David Härdemana374fef2010-04-02 15:58:29 -0300574
575/**
576 * ir_timer_keyup() - generates a keyup event after a timeout
David Härdemand8b4b582010-10-29 16:08:23 -0300577 * @cookie: a pointer to the struct rc_dev for the device
David Härdemana374fef2010-04-02 15:58:29 -0300578 *
579 * This routine will generate a keyup event some time after a keydown event
580 * is generated when no further activity has been detected.
581 */
582static void ir_timer_keyup(unsigned long cookie)
583{
David Härdemand8b4b582010-10-29 16:08:23 -0300584 struct rc_dev *dev = (struct rc_dev *)cookie;
David Härdemana374fef2010-04-02 15:58:29 -0300585 unsigned long flags;
586
587 /*
588 * ir->keyup_jiffies is used to prevent a race condition if a
589 * hardware interrupt occurs at this point and the keyup timer
590 * event is moved further into the future as a result.
591 *
592 * The timer will then be reactivated and this function called
593 * again in the future. We need to exit gracefully in that case
594 * to allow the input subsystem to do its auto-repeat magic or
595 * a keyup event might follow immediately after the keydown.
596 */
David Härdemand8b4b582010-10-29 16:08:23 -0300597 spin_lock_irqsave(&dev->keylock, flags);
598 if (time_is_before_eq_jiffies(dev->keyup_jiffies))
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300599 ir_do_keyup(dev, true);
David Härdemand8b4b582010-10-29 16:08:23 -0300600 spin_unlock_irqrestore(&dev->keylock, flags);
David Härdemana374fef2010-04-02 15:58:29 -0300601}
602
603/**
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300604 * rc_repeat() - signals that a key is still pressed
David Härdemand8b4b582010-10-29 16:08:23 -0300605 * @dev: the struct rc_dev descriptor of the device
David Härdemana374fef2010-04-02 15:58:29 -0300606 *
607 * This routine is used by IR decoders when a repeat message which does
608 * not include the necessary bits to reproduce the scancode has been
609 * received.
610 */
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300611void rc_repeat(struct rc_dev *dev)
David Härdemana374fef2010-04-02 15:58:29 -0300612{
613 unsigned long flags;
David Härdemana374fef2010-04-02 15:58:29 -0300614
David Härdemand8b4b582010-10-29 16:08:23 -0300615 spin_lock_irqsave(&dev->keylock, flags);
David Härdemana374fef2010-04-02 15:58:29 -0300616
David Härdemand8b4b582010-10-29 16:08:23 -0300617 input_event(dev->input_dev, EV_MSC, MSC_SCAN, dev->last_scancode);
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300618 input_sync(dev->input_dev);
Maxim Levitskyed4d3872010-07-31 11:59:24 -0300619
David Härdemand8b4b582010-10-29 16:08:23 -0300620 if (!dev->keypressed)
David Härdemana374fef2010-04-02 15:58:29 -0300621 goto out;
622
David Härdemand8b4b582010-10-29 16:08:23 -0300623 dev->keyup_jiffies = jiffies + msecs_to_jiffies(IR_KEYPRESS_TIMEOUT);
624 mod_timer(&dev->timer_keyup, dev->keyup_jiffies);
David Härdemana374fef2010-04-02 15:58:29 -0300625
626out:
David Härdemand8b4b582010-10-29 16:08:23 -0300627 spin_unlock_irqrestore(&dev->keylock, flags);
David Härdemana374fef2010-04-02 15:58:29 -0300628}
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300629EXPORT_SYMBOL_GPL(rc_repeat);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300630
631/**
David Härdeman62c65032010-10-29 16:08:07 -0300632 * ir_do_keydown() - internal function to process a keypress
David Härdemand8b4b582010-10-29 16:08:23 -0300633 * @dev: the struct rc_dev descriptor of the device
David Härdeman120703f2014-04-03 20:31:30 -0300634 * @protocol: the protocol of the keypress
David Härdeman62c65032010-10-29 16:08:07 -0300635 * @scancode: the scancode of the keypress
636 * @keycode: the keycode of the keypress
637 * @toggle: the toggle value of the keypress
638 *
639 * This function is used internally to register a keypress, it must be
640 * called with keylock held.
641 */
David Härdeman120703f2014-04-03 20:31:30 -0300642static void ir_do_keydown(struct rc_dev *dev, enum rc_type protocol,
643 u32 scancode, u32 keycode, u8 toggle)
David Härdeman62c65032010-10-29 16:08:07 -0300644{
David Härdeman99b0f3c2014-04-04 19:06:06 -0300645 bool new_event = (!dev->keypressed ||
David Härdeman120703f2014-04-03 20:31:30 -0300646 dev->last_protocol != protocol ||
David Härdeman99b0f3c2014-04-04 19:06:06 -0300647 dev->last_scancode != scancode ||
David Härdeman120703f2014-04-03 20:31:30 -0300648 dev->last_toggle != toggle);
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300649
650 if (new_event && dev->keypressed)
651 ir_do_keyup(dev, false);
652
David Härdemand8b4b582010-10-29 16:08:23 -0300653 input_event(dev->input_dev, EV_MSC, MSC_SCAN, scancode);
David Härdeman62c65032010-10-29 16:08:07 -0300654
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300655 if (new_event && keycode != KEY_RESERVED) {
656 /* Register a keypress */
657 dev->keypressed = true;
David Härdeman120703f2014-04-03 20:31:30 -0300658 dev->last_protocol = protocol;
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300659 dev->last_scancode = scancode;
660 dev->last_toggle = toggle;
661 dev->last_keycode = keycode;
David Härdeman62c65032010-10-29 16:08:07 -0300662
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300663 IR_dprintk(1, "%s: key down event, "
David Härdeman120703f2014-04-03 20:31:30 -0300664 "key 0x%04x, protocol 0x%04x, scancode 0x%08x\n",
665 dev->input_name, keycode, protocol, scancode);
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300666 input_report_key(dev->input_dev, keycode, 1);
James Hogan70a2f912014-01-16 19:56:22 -0300667
668 led_trigger_event(led_feedback, LED_FULL);
Jarod Wilson98c32bc2011-06-23 10:40:55 -0300669 }
David Härdeman62c65032010-10-29 16:08:07 -0300670
David Härdemand8b4b582010-10-29 16:08:23 -0300671 input_sync(dev->input_dev);
David Härdeman62c65032010-10-29 16:08:07 -0300672}
673
674/**
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300675 * rc_keydown() - generates input event for a key press
David Härdemand8b4b582010-10-29 16:08:23 -0300676 * @dev: the struct rc_dev descriptor of the device
David Härdeman120703f2014-04-03 20:31:30 -0300677 * @protocol: the protocol for the keypress
678 * @scancode: the scancode for the keypress
David Härdemana374fef2010-04-02 15:58:29 -0300679 * @toggle: the toggle value (protocol dependent, if the protocol doesn't
680 * support toggle values, this should be set to zero)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300681 *
David Härdemand8b4b582010-10-29 16:08:23 -0300682 * This routine is used to signal that a key has been pressed on the
683 * remote control.
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300684 */
David Härdeman120703f2014-04-03 20:31:30 -0300685void rc_keydown(struct rc_dev *dev, enum rc_type protocol, u32 scancode, u8 toggle)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300686{
David Härdemana374fef2010-04-02 15:58:29 -0300687 unsigned long flags;
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300688 u32 keycode = rc_g_keycode_from_table(dev, scancode);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300689
David Härdemand8b4b582010-10-29 16:08:23 -0300690 spin_lock_irqsave(&dev->keylock, flags);
David Härdeman120703f2014-04-03 20:31:30 -0300691 ir_do_keydown(dev, protocol, scancode, keycode, toggle);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300692
David Härdemand8b4b582010-10-29 16:08:23 -0300693 if (dev->keypressed) {
694 dev->keyup_jiffies = jiffies + msecs_to_jiffies(IR_KEYPRESS_TIMEOUT);
695 mod_timer(&dev->timer_keyup, dev->keyup_jiffies);
David Härdeman62c65032010-10-29 16:08:07 -0300696 }
David Härdemand8b4b582010-10-29 16:08:23 -0300697 spin_unlock_irqrestore(&dev->keylock, flags);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300698}
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300699EXPORT_SYMBOL_GPL(rc_keydown);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300700
David Härdeman62c65032010-10-29 16:08:07 -0300701/**
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300702 * rc_keydown_notimeout() - generates input event for a key press without
David Härdeman62c65032010-10-29 16:08:07 -0300703 * an automatic keyup event at a later time
David Härdemand8b4b582010-10-29 16:08:23 -0300704 * @dev: the struct rc_dev descriptor of the device
David Härdeman120703f2014-04-03 20:31:30 -0300705 * @protocol: the protocol for the keypress
706 * @scancode: the scancode for the keypress
David Härdeman62c65032010-10-29 16:08:07 -0300707 * @toggle: the toggle value (protocol dependent, if the protocol doesn't
708 * support toggle values, this should be set to zero)
709 *
David Härdemand8b4b582010-10-29 16:08:23 -0300710 * This routine is used to signal that a key has been pressed on the
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300711 * remote control. The driver must manually call rc_keyup() at a later stage.
David Härdeman62c65032010-10-29 16:08:07 -0300712 */
David Härdeman120703f2014-04-03 20:31:30 -0300713void rc_keydown_notimeout(struct rc_dev *dev, enum rc_type protocol,
714 u32 scancode, u8 toggle)
David Härdeman62c65032010-10-29 16:08:07 -0300715{
716 unsigned long flags;
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300717 u32 keycode = rc_g_keycode_from_table(dev, scancode);
David Härdeman62c65032010-10-29 16:08:07 -0300718
David Härdemand8b4b582010-10-29 16:08:23 -0300719 spin_lock_irqsave(&dev->keylock, flags);
David Härdeman120703f2014-04-03 20:31:30 -0300720 ir_do_keydown(dev, protocol, scancode, keycode, toggle);
David Härdemand8b4b582010-10-29 16:08:23 -0300721 spin_unlock_irqrestore(&dev->keylock, flags);
David Härdeman62c65032010-10-29 16:08:07 -0300722}
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300723EXPORT_SYMBOL_GPL(rc_keydown_notimeout);
David Härdeman62c65032010-10-29 16:08:07 -0300724
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -0300725int rc_open(struct rc_dev *rdev)
726{
727 int rval = 0;
728
729 if (!rdev)
730 return -EINVAL;
731
732 mutex_lock(&rdev->lock);
Mauro Carvalho Chehabc73bbaa2016-02-11 10:33:31 -0200733
Juergen Lockf02dcdd2013-08-16 15:00:24 -0300734 if (!rdev->users++ && rdev->open != NULL)
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -0300735 rval = rdev->open(rdev);
736
737 if (rval)
738 rdev->users--;
739
740 mutex_unlock(&rdev->lock);
741
742 return rval;
743}
744EXPORT_SYMBOL_GPL(rc_open);
745
David Härdemand8b4b582010-10-29 16:08:23 -0300746static int ir_open(struct input_dev *idev)
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -0300747{
David Härdemand8b4b582010-10-29 16:08:23 -0300748 struct rc_dev *rdev = input_get_drvdata(idev);
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -0300749
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -0300750 return rc_open(rdev);
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -0300751}
752
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -0300753void rc_close(struct rc_dev *rdev)
754{
755 if (rdev) {
756 mutex_lock(&rdev->lock);
757
Mauro Carvalho Chehab81b7d142015-04-28 09:43:17 -0300758 if (!--rdev->users && rdev->close != NULL)
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -0300759 rdev->close(rdev);
760
761 mutex_unlock(&rdev->lock);
762 }
763}
764EXPORT_SYMBOL_GPL(rc_close);
765
David Härdemand8b4b582010-10-29 16:08:23 -0300766static void ir_close(struct input_dev *idev)
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -0300767{
David Härdemand8b4b582010-10-29 16:08:23 -0300768 struct rc_dev *rdev = input_get_drvdata(idev);
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -0300769 rc_close(rdev);
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -0300770}
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300771
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300772/* class for /sys/class/rc */
David Härdeman40fc5322013-03-06 16:52:10 -0300773static char *rc_devnode(struct device *dev, umode_t *mode)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300774{
775 return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev));
776}
777
David Härdeman40fc5322013-03-06 16:52:10 -0300778static struct class rc_class = {
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300779 .name = "rc",
David Härdeman40fc5322013-03-06 16:52:10 -0300780 .devnode = rc_devnode,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300781};
782
David Härdemanc003ab12012-10-11 19:11:54 -0300783/*
784 * These are the protocol textual descriptions that are
785 * used by the sysfs protocols file. Note that the order
786 * of the entries is relevant.
787 */
Heiner Kallweit53df8772015-11-16 17:52:17 -0200788static const struct {
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300789 u64 type;
Heiner Kallweit53df8772015-11-16 17:52:17 -0200790 const char *name;
Heiner Kallweit9f0bf362015-11-16 17:52:08 -0200791 const char *module_name;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300792} proto_names[] = {
Heiner Kallweit9f0bf362015-11-16 17:52:08 -0200793 { RC_BIT_NONE, "none", NULL },
794 { RC_BIT_OTHER, "other", NULL },
795 { RC_BIT_UNKNOWN, "unknown", NULL },
David Härdemanc003ab12012-10-11 19:11:54 -0300796 { RC_BIT_RC5 |
Heiner Kallweit9f0bf362015-11-16 17:52:08 -0200797 RC_BIT_RC5X, "rc-5", "ir-rc5-decoder" },
798 { RC_BIT_NEC, "nec", "ir-nec-decoder" },
David Härdemanc003ab12012-10-11 19:11:54 -0300799 { RC_BIT_RC6_0 |
800 RC_BIT_RC6_6A_20 |
801 RC_BIT_RC6_6A_24 |
802 RC_BIT_RC6_6A_32 |
Heiner Kallweit9f0bf362015-11-16 17:52:08 -0200803 RC_BIT_RC6_MCE, "rc-6", "ir-rc6-decoder" },
804 { RC_BIT_JVC, "jvc", "ir-jvc-decoder" },
David Härdemanc003ab12012-10-11 19:11:54 -0300805 { RC_BIT_SONY12 |
806 RC_BIT_SONY15 |
Heiner Kallweit9f0bf362015-11-16 17:52:08 -0200807 RC_BIT_SONY20, "sony", "ir-sony-decoder" },
808 { RC_BIT_RC5_SZ, "rc-5-sz", "ir-rc5-decoder" },
809 { RC_BIT_SANYO, "sanyo", "ir-sanyo-decoder" },
810 { RC_BIT_SHARP, "sharp", "ir-sharp-decoder" },
811 { RC_BIT_MCE_KBD, "mce_kbd", "ir-mce_kbd-decoder" },
812 { RC_BIT_XMP, "xmp", "ir-xmp-decoder" },
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300813};
814
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300815/**
James Hoganab88c662014-02-28 20:17:05 -0300816 * struct rc_filter_attribute - Device attribute relating to a filter type.
817 * @attr: Device attribute.
818 * @type: Filter type.
819 * @mask: false for filter value, true for filter mask.
820 */
821struct rc_filter_attribute {
822 struct device_attribute attr;
823 enum rc_filter_type type;
824 bool mask;
825};
826#define to_rc_filter_attr(a) container_of(a, struct rc_filter_attribute, attr)
827
828#define RC_PROTO_ATTR(_name, _mode, _show, _store, _type) \
829 struct rc_filter_attribute dev_attr_##_name = { \
830 .attr = __ATTR(_name, _mode, _show, _store), \
831 .type = (_type), \
832 }
833#define RC_FILTER_ATTR(_name, _mode, _show, _store, _type, _mask) \
834 struct rc_filter_attribute dev_attr_##_name = { \
835 .attr = __ATTR(_name, _mode, _show, _store), \
836 .type = (_type), \
837 .mask = (_mask), \
838 }
839
David Härdemandd6ff6a2015-07-22 17:55:24 -0300840static bool lirc_is_present(void)
841{
842#if defined(CONFIG_LIRC_MODULE)
843 struct module *lirc;
844
845 mutex_lock(&module_mutex);
846 lirc = find_module("lirc_dev");
847 mutex_unlock(&module_mutex);
848
849 return lirc ? true : false;
850#elif defined(CONFIG_LIRC)
851 return true;
852#else
853 return false;
854#endif
855}
856
James Hoganab88c662014-02-28 20:17:05 -0300857/**
858 * show_protocols() - shows the current/wakeup IR protocol(s)
David Härdemand8b4b582010-10-29 16:08:23 -0300859 * @device: the device descriptor
David Härdemanda6e1622014-04-03 20:32:16 -0300860 * @mattr: the device attribute struct
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300861 * @buf: a pointer to the output buffer
862 *
863 * This routine is a callback routine for input read the IR protocol type(s).
James Hoganab88c662014-02-28 20:17:05 -0300864 * it is trigged by reading /sys/class/rc/rc?/[wakeup_]protocols.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300865 * It returns the protocol names of supported protocols.
866 * Enabled protocols are printed in brackets.
Jarod Wilson08aeb7c2011-05-11 15:14:31 -0300867 *
868 * dev->lock is taken to guard against races between device
869 * registration, store_protocols and show_protocols.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300870 */
David Härdemand8b4b582010-10-29 16:08:23 -0300871static ssize_t show_protocols(struct device *device,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300872 struct device_attribute *mattr, char *buf)
873{
David Härdemand8b4b582010-10-29 16:08:23 -0300874 struct rc_dev *dev = to_rc_dev(device);
James Hoganab88c662014-02-28 20:17:05 -0300875 struct rc_filter_attribute *fattr = to_rc_filter_attr(mattr);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300876 u64 allowed, enabled;
877 char *tmp = buf;
878 int i;
879
880 /* Device is being removed */
David Härdemand8b4b582010-10-29 16:08:23 -0300881 if (!dev)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300882 return -EINVAL;
883
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -0300884 if (!atomic_read(&dev->initialized))
885 return -ERESTARTSYS;
886
Jarod Wilson08aeb7c2011-05-11 15:14:31 -0300887 mutex_lock(&dev->lock);
888
David Härdemanda6e1622014-04-03 20:32:16 -0300889 if (fattr->type == RC_FILTER_NORMAL) {
David Härdemanc5540fb2014-04-03 20:32:21 -0300890 enabled = dev->enabled_protocols;
Mauro Carvalho Chehabd24b69f2014-07-28 14:25:28 -0300891 allowed = dev->allowed_protocols;
892 if (dev->raw && !allowed)
David Härdemanda6e1622014-04-03 20:32:16 -0300893 allowed = ir_raw_get_allowed_protocols();
David Härdemanda6e1622014-04-03 20:32:16 -0300894 } else {
David Härdemanc5540fb2014-04-03 20:32:21 -0300895 enabled = dev->enabled_wakeup_protocols;
896 allowed = dev->allowed_wakeup_protocols;
Dan Carpenter30ebc5e2012-11-27 13:35:09 -0300897 }
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300898
David Härdemanda6e1622014-04-03 20:32:16 -0300899 mutex_unlock(&dev->lock);
900
901 IR_dprintk(1, "%s: allowed - 0x%llx, enabled - 0x%llx\n",
902 __func__, (long long)allowed, (long long)enabled);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300903
904 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
905 if (allowed & enabled & proto_names[i].type)
906 tmp += sprintf(tmp, "[%s] ", proto_names[i].name);
907 else if (allowed & proto_names[i].type)
908 tmp += sprintf(tmp, "%s ", proto_names[i].name);
David Härdemanc003ab12012-10-11 19:11:54 -0300909
910 if (allowed & proto_names[i].type)
911 allowed &= ~proto_names[i].type;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300912 }
913
David Härdemandd6ff6a2015-07-22 17:55:24 -0300914 if (dev->driver_type == RC_DRIVER_IR_RAW && lirc_is_present())
David Härdeman275ddb42015-05-19 19:03:22 -0300915 tmp += sprintf(tmp, "[lirc] ");
916
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300917 if (tmp != buf)
918 tmp--;
919 *tmp = '\n';
Jarod Wilson08aeb7c2011-05-11 15:14:31 -0300920
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300921 return tmp + 1 - buf;
922}
923
924/**
David Härdemanda6e1622014-04-03 20:32:16 -0300925 * parse_protocol_change() - parses a protocol change request
926 * @protocols: pointer to the bitmask of current protocols
927 * @buf: pointer to the buffer with a list of changes
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300928 *
David Härdemanda6e1622014-04-03 20:32:16 -0300929 * Writing "+proto" will add a protocol to the protocol mask.
930 * Writing "-proto" will remove a protocol from protocol mask.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300931 * Writing "proto" will enable only "proto".
932 * Writing "none" will disable all protocols.
David Härdemanda6e1622014-04-03 20:32:16 -0300933 * Returns the number of changes performed or a negative error code.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300934 */
David Härdemanda6e1622014-04-03 20:32:16 -0300935static int parse_protocol_change(u64 *protocols, const char *buf)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300936{
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300937 const char *tmp;
David Härdemanda6e1622014-04-03 20:32:16 -0300938 unsigned count = 0;
939 bool enable, disable;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300940 u64 mask;
David Härdemanda6e1622014-04-03 20:32:16 -0300941 int i;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300942
David Härdemanda6e1622014-04-03 20:32:16 -0300943 while ((tmp = strsep((char **)&buf, " \n")) != NULL) {
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300944 if (!*tmp)
945 break;
946
947 if (*tmp == '+') {
948 enable = true;
949 disable = false;
950 tmp++;
951 } else if (*tmp == '-') {
952 enable = false;
953 disable = true;
954 tmp++;
955 } else {
956 enable = false;
957 disable = false;
958 }
959
David Härdemanc003ab12012-10-11 19:11:54 -0300960 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
961 if (!strcasecmp(tmp, proto_names[i].name)) {
962 mask = proto_names[i].type;
963 break;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300964 }
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300965 }
966
David Härdemanc003ab12012-10-11 19:11:54 -0300967 if (i == ARRAY_SIZE(proto_names)) {
David Härdeman275ddb42015-05-19 19:03:22 -0300968 if (!strcasecmp(tmp, "lirc"))
969 mask = 0;
970 else {
971 IR_dprintk(1, "Unknown protocol: '%s'\n", tmp);
972 return -EINVAL;
973 }
David Härdemanc003ab12012-10-11 19:11:54 -0300974 }
975
976 count++;
977
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300978 if (enable)
David Härdemanda6e1622014-04-03 20:32:16 -0300979 *protocols |= mask;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300980 else if (disable)
David Härdemanda6e1622014-04-03 20:32:16 -0300981 *protocols &= ~mask;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300982 else
David Härdemanda6e1622014-04-03 20:32:16 -0300983 *protocols = mask;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300984 }
985
986 if (!count) {
987 IR_dprintk(1, "Protocol not specified\n");
David Härdemanda6e1622014-04-03 20:32:16 -0300988 return -EINVAL;
989 }
990
991 return count;
992}
993
Heiner Kallweit9f0bf362015-11-16 17:52:08 -0200994static void ir_raw_load_modules(u64 *protocols)
995
996{
997 u64 available;
998 int i, ret;
999
1000 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
1001 if (proto_names[i].type == RC_BIT_NONE ||
1002 proto_names[i].type & (RC_BIT_OTHER | RC_BIT_UNKNOWN))
1003 continue;
1004
1005 available = ir_raw_get_allowed_protocols();
1006 if (!(*protocols & proto_names[i].type & ~available))
1007 continue;
1008
1009 if (!proto_names[i].module_name) {
1010 pr_err("Can't enable IR protocol %s\n",
1011 proto_names[i].name);
1012 *protocols &= ~proto_names[i].type;
1013 continue;
1014 }
1015
1016 ret = request_module("%s", proto_names[i].module_name);
1017 if (ret < 0) {
1018 pr_err("Couldn't load IR protocol module %s\n",
1019 proto_names[i].module_name);
1020 *protocols &= ~proto_names[i].type;
1021 continue;
1022 }
1023 msleep(20);
1024 available = ir_raw_get_allowed_protocols();
1025 if (!(*protocols & proto_names[i].type & ~available))
1026 continue;
1027
1028 pr_err("Loaded IR protocol module %s, \
1029 but protocol %s still not available\n",
1030 proto_names[i].module_name,
1031 proto_names[i].name);
1032 *protocols &= ~proto_names[i].type;
1033 }
1034}
1035
David Härdemanda6e1622014-04-03 20:32:16 -03001036/**
1037 * store_protocols() - changes the current/wakeup IR protocol(s)
1038 * @device: the device descriptor
1039 * @mattr: the device attribute struct
1040 * @buf: a pointer to the input buffer
1041 * @len: length of the input buffer
1042 *
1043 * This routine is for changing the IR protocol type.
1044 * It is trigged by writing to /sys/class/rc/rc?/[wakeup_]protocols.
1045 * See parse_protocol_change() for the valid commands.
1046 * Returns @len on success or a negative error code.
1047 *
1048 * dev->lock is taken to guard against races between device
1049 * registration, store_protocols and show_protocols.
1050 */
1051static ssize_t store_protocols(struct device *device,
1052 struct device_attribute *mattr,
1053 const char *buf, size_t len)
1054{
1055 struct rc_dev *dev = to_rc_dev(device);
1056 struct rc_filter_attribute *fattr = to_rc_filter_attr(mattr);
1057 u64 *current_protocols;
1058 int (*change_protocol)(struct rc_dev *dev, u64 *rc_type);
1059 struct rc_scancode_filter *filter;
1060 int (*set_filter)(struct rc_dev *dev, struct rc_scancode_filter *filter);
1061 u64 old_protocols, new_protocols;
1062 ssize_t rc;
1063
1064 /* Device is being removed */
1065 if (!dev)
1066 return -EINVAL;
1067
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001068 if (!atomic_read(&dev->initialized))
1069 return -ERESTARTSYS;
1070
David Härdemanda6e1622014-04-03 20:32:16 -03001071 if (fattr->type == RC_FILTER_NORMAL) {
1072 IR_dprintk(1, "Normal protocol change requested\n");
David Härdemanc5540fb2014-04-03 20:32:21 -03001073 current_protocols = &dev->enabled_protocols;
David Härdemanda6e1622014-04-03 20:32:16 -03001074 change_protocol = dev->change_protocol;
David Härdemanc5540fb2014-04-03 20:32:21 -03001075 filter = &dev->scancode_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001076 set_filter = dev->s_filter;
1077 } else {
1078 IR_dprintk(1, "Wakeup protocol change requested\n");
David Härdemanc5540fb2014-04-03 20:32:21 -03001079 current_protocols = &dev->enabled_wakeup_protocols;
David Härdemanda6e1622014-04-03 20:32:16 -03001080 change_protocol = dev->change_wakeup_protocol;
David Härdemanc5540fb2014-04-03 20:32:21 -03001081 filter = &dev->scancode_wakeup_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001082 set_filter = dev->s_wakeup_filter;
1083 }
1084
1085 if (!change_protocol) {
1086 IR_dprintk(1, "Protocol switching not supported\n");
1087 return -EINVAL;
1088 }
1089
1090 mutex_lock(&dev->lock);
1091
1092 old_protocols = *current_protocols;
1093 new_protocols = old_protocols;
1094 rc = parse_protocol_change(&new_protocols, buf);
1095 if (rc < 0)
1096 goto out;
1097
1098 rc = change_protocol(dev, &new_protocols);
1099 if (rc < 0) {
1100 IR_dprintk(1, "Error setting protocols to 0x%llx\n",
1101 (long long)new_protocols);
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001102 goto out;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001103 }
1104
Heiner Kallweit9f0bf362015-11-16 17:52:08 -02001105 if (dev->driver_type == RC_DRIVER_IR_RAW)
1106 ir_raw_load_modules(&new_protocols);
1107
James Hogan983c5bd2014-12-08 13:17:07 -03001108 if (new_protocols != old_protocols) {
1109 *current_protocols = new_protocols;
1110 IR_dprintk(1, "Protocols changed to 0x%llx\n",
1111 (long long)new_protocols);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001112 }
1113
James Hogan6bea25a2014-02-28 20:17:06 -03001114 /*
James Hogan983c5bd2014-12-08 13:17:07 -03001115 * If a protocol change was attempted the filter may need updating, even
1116 * if the actual protocol mask hasn't changed (since the driver may have
1117 * cleared the filter).
James Hogan6bea25a2014-02-28 20:17:06 -03001118 * Try setting the same filter with the new protocol (if any).
1119 * Fall back to clearing the filter.
1120 */
David Härdemanda6e1622014-04-03 20:32:16 -03001121 if (set_filter && filter->mask) {
1122 if (new_protocols)
1123 rc = set_filter(dev, filter);
1124 else
1125 rc = -1;
David Härdeman23c843b2014-04-04 19:06:01 -03001126
David Härdemanda6e1622014-04-03 20:32:16 -03001127 if (rc < 0) {
1128 filter->data = 0;
1129 filter->mask = 0;
1130 set_filter(dev, filter);
James Hogan6bea25a2014-02-28 20:17:06 -03001131 }
James Hogan6bea25a2014-02-28 20:17:06 -03001132 }
1133
David Härdemanda6e1622014-04-03 20:32:16 -03001134 rc = len;
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001135
1136out:
1137 mutex_unlock(&dev->lock);
David Härdemanda6e1622014-04-03 20:32:16 -03001138 return rc;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001139}
1140
James Hogan00942d12014-01-17 10:58:49 -03001141/**
James Hogan00942d12014-01-17 10:58:49 -03001142 * show_filter() - shows the current scancode filter value or mask
1143 * @device: the device descriptor
1144 * @attr: the device attribute struct
1145 * @buf: a pointer to the output buffer
1146 *
1147 * This routine is a callback routine to read a scancode filter value or mask.
1148 * It is trigged by reading /sys/class/rc/rc?/[wakeup_]filter[_mask].
1149 * It prints the current scancode filter value or mask of the appropriate filter
1150 * type in hexadecimal into @buf and returns the size of the buffer.
1151 *
1152 * Bits of the filter value corresponding to set bits in the filter mask are
1153 * compared against input scancodes and non-matching scancodes are discarded.
1154 *
1155 * dev->lock is taken to guard against races between device registration,
1156 * store_filter and show_filter.
1157 */
1158static ssize_t show_filter(struct device *device,
1159 struct device_attribute *attr,
1160 char *buf)
1161{
1162 struct rc_dev *dev = to_rc_dev(device);
1163 struct rc_filter_attribute *fattr = to_rc_filter_attr(attr);
David Härdemanda6e1622014-04-03 20:32:16 -03001164 struct rc_scancode_filter *filter;
James Hogan00942d12014-01-17 10:58:49 -03001165 u32 val;
1166
1167 /* Device is being removed */
1168 if (!dev)
1169 return -EINVAL;
1170
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001171 if (!atomic_read(&dev->initialized))
1172 return -ERESTARTSYS;
1173
Mauro Carvalho Chehabc73bbaa2016-02-11 10:33:31 -02001174 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc73bbaa2016-02-11 10:33:31 -02001175
David Härdemanda6e1622014-04-03 20:32:16 -03001176 if (fattr->type == RC_FILTER_NORMAL)
David Härdemanc5540fb2014-04-03 20:32:21 -03001177 filter = &dev->scancode_filter;
James Hogan00942d12014-01-17 10:58:49 -03001178 else
David Härdemanc5540fb2014-04-03 20:32:21 -03001179 filter = &dev->scancode_wakeup_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001180
David Härdemanda6e1622014-04-03 20:32:16 -03001181 if (fattr->mask)
1182 val = filter->mask;
1183 else
1184 val = filter->data;
James Hogan00942d12014-01-17 10:58:49 -03001185 mutex_unlock(&dev->lock);
1186
1187 return sprintf(buf, "%#x\n", val);
1188}
1189
1190/**
1191 * store_filter() - changes the scancode filter value
1192 * @device: the device descriptor
1193 * @attr: the device attribute struct
1194 * @buf: a pointer to the input buffer
1195 * @len: length of the input buffer
1196 *
1197 * This routine is for changing a scancode filter value or mask.
1198 * It is trigged by writing to /sys/class/rc/rc?/[wakeup_]filter[_mask].
1199 * Returns -EINVAL if an invalid filter value for the current protocol was
1200 * specified or if scancode filtering is not supported by the driver, otherwise
1201 * returns @len.
1202 *
1203 * Bits of the filter value corresponding to set bits in the filter mask are
1204 * compared against input scancodes and non-matching scancodes are discarded.
1205 *
1206 * dev->lock is taken to guard against races between device registration,
1207 * store_filter and show_filter.
1208 */
1209static ssize_t store_filter(struct device *device,
1210 struct device_attribute *attr,
David Härdemanda6e1622014-04-03 20:32:16 -03001211 const char *buf, size_t len)
James Hogan00942d12014-01-17 10:58:49 -03001212{
1213 struct rc_dev *dev = to_rc_dev(device);
1214 struct rc_filter_attribute *fattr = to_rc_filter_attr(attr);
David Härdemanda6e1622014-04-03 20:32:16 -03001215 struct rc_scancode_filter new_filter, *filter;
James Hogan00942d12014-01-17 10:58:49 -03001216 int ret;
1217 unsigned long val;
David Härdeman23c843b2014-04-04 19:06:01 -03001218 int (*set_filter)(struct rc_dev *dev, struct rc_scancode_filter *filter);
David Härdemanda6e1622014-04-03 20:32:16 -03001219 u64 *enabled_protocols;
James Hogan00942d12014-01-17 10:58:49 -03001220
1221 /* Device is being removed */
1222 if (!dev)
1223 return -EINVAL;
1224
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001225 if (!atomic_read(&dev->initialized))
1226 return -ERESTARTSYS;
1227
James Hogan00942d12014-01-17 10:58:49 -03001228 ret = kstrtoul(buf, 0, &val);
1229 if (ret < 0)
1230 return ret;
1231
David Härdemanda6e1622014-04-03 20:32:16 -03001232 if (fattr->type == RC_FILTER_NORMAL) {
1233 set_filter = dev->s_filter;
David Härdemanc5540fb2014-04-03 20:32:21 -03001234 enabled_protocols = &dev->enabled_protocols;
1235 filter = &dev->scancode_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001236 } else {
1237 set_filter = dev->s_wakeup_filter;
David Härdemanc5540fb2014-04-03 20:32:21 -03001238 enabled_protocols = &dev->enabled_wakeup_protocols;
1239 filter = &dev->scancode_wakeup_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001240 }
1241
David Härdeman99b0f3c2014-04-04 19:06:06 -03001242 if (!set_filter)
1243 return -EINVAL;
James Hogan00942d12014-01-17 10:58:49 -03001244
1245 mutex_lock(&dev->lock);
1246
David Härdemanda6e1622014-04-03 20:32:16 -03001247 new_filter = *filter;
James Hogan00942d12014-01-17 10:58:49 -03001248 if (fattr->mask)
David Härdemanda6e1622014-04-03 20:32:16 -03001249 new_filter.mask = val;
James Hogan00942d12014-01-17 10:58:49 -03001250 else
David Härdemanda6e1622014-04-03 20:32:16 -03001251 new_filter.data = val;
David Härdeman23c843b2014-04-04 19:06:01 -03001252
David Härdemanda6e1622014-04-03 20:32:16 -03001253 if (!*enabled_protocols && val) {
James Hogan6bea25a2014-02-28 20:17:06 -03001254 /* refuse to set a filter unless a protocol is enabled */
1255 ret = -EINVAL;
1256 goto unlock;
1257 }
David Härdeman23c843b2014-04-04 19:06:01 -03001258
David Härdemanda6e1622014-04-03 20:32:16 -03001259 ret = set_filter(dev, &new_filter);
David Härdeman99b0f3c2014-04-04 19:06:06 -03001260 if (ret < 0)
1261 goto unlock;
James Hogan00942d12014-01-17 10:58:49 -03001262
David Härdemanda6e1622014-04-03 20:32:16 -03001263 *filter = new_filter;
James Hogan00942d12014-01-17 10:58:49 -03001264
1265unlock:
1266 mutex_unlock(&dev->lock);
David Härdemanda6e1622014-04-03 20:32:16 -03001267 return (ret < 0) ? ret : len;
James Hogan00942d12014-01-17 10:58:49 -03001268}
1269
David Härdemand8b4b582010-10-29 16:08:23 -03001270static void rc_dev_release(struct device *device)
1271{
Max Kellermann47cae1e2016-03-21 08:33:05 -03001272 struct rc_dev *dev = to_rc_dev(device);
1273
1274 kfree(dev);
David Härdemand8b4b582010-10-29 16:08:23 -03001275}
1276
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001277#define ADD_HOTPLUG_VAR(fmt, val...) \
1278 do { \
1279 int err = add_uevent_var(env, fmt, val); \
1280 if (err) \
1281 return err; \
1282 } while (0)
1283
1284static int rc_dev_uevent(struct device *device, struct kobj_uevent_env *env)
1285{
David Härdemand8b4b582010-10-29 16:08:23 -03001286 struct rc_dev *dev = to_rc_dev(device);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001287
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001288 if (dev->rc_map.name)
1289 ADD_HOTPLUG_VAR("NAME=%s", dev->rc_map.name);
David Härdemand8b4b582010-10-29 16:08:23 -03001290 if (dev->driver_name)
1291 ADD_HOTPLUG_VAR("DRV_NAME=%s", dev->driver_name);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001292
1293 return 0;
1294}
1295
1296/*
1297 * Static device attribute struct with the sysfs attributes for IR's
1298 */
James Hoganab88c662014-02-28 20:17:05 -03001299static RC_PROTO_ATTR(protocols, S_IRUGO | S_IWUSR,
1300 show_protocols, store_protocols, RC_FILTER_NORMAL);
1301static RC_PROTO_ATTR(wakeup_protocols, S_IRUGO | S_IWUSR,
1302 show_protocols, store_protocols, RC_FILTER_WAKEUP);
James Hogan00942d12014-01-17 10:58:49 -03001303static RC_FILTER_ATTR(filter, S_IRUGO|S_IWUSR,
1304 show_filter, store_filter, RC_FILTER_NORMAL, false);
1305static RC_FILTER_ATTR(filter_mask, S_IRUGO|S_IWUSR,
1306 show_filter, store_filter, RC_FILTER_NORMAL, true);
1307static RC_FILTER_ATTR(wakeup_filter, S_IRUGO|S_IWUSR,
1308 show_filter, store_filter, RC_FILTER_WAKEUP, false);
1309static RC_FILTER_ATTR(wakeup_filter_mask, S_IRUGO|S_IWUSR,
1310 show_filter, store_filter, RC_FILTER_WAKEUP, true);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001311
David Härdeman99b0f3c2014-04-04 19:06:06 -03001312static struct attribute *rc_dev_protocol_attrs[] = {
James Hoganab88c662014-02-28 20:17:05 -03001313 &dev_attr_protocols.attr.attr,
David Härdeman99b0f3c2014-04-04 19:06:06 -03001314 NULL,
1315};
1316
1317static struct attribute_group rc_dev_protocol_attr_grp = {
1318 .attrs = rc_dev_protocol_attrs,
1319};
1320
1321static struct attribute *rc_dev_wakeup_protocol_attrs[] = {
James Hoganab88c662014-02-28 20:17:05 -03001322 &dev_attr_wakeup_protocols.attr.attr,
David Härdeman99b0f3c2014-04-04 19:06:06 -03001323 NULL,
1324};
1325
1326static struct attribute_group rc_dev_wakeup_protocol_attr_grp = {
1327 .attrs = rc_dev_wakeup_protocol_attrs,
1328};
1329
1330static struct attribute *rc_dev_filter_attrs[] = {
James Hogan00942d12014-01-17 10:58:49 -03001331 &dev_attr_filter.attr.attr,
1332 &dev_attr_filter_mask.attr.attr,
David Härdeman99b0f3c2014-04-04 19:06:06 -03001333 NULL,
1334};
1335
1336static struct attribute_group rc_dev_filter_attr_grp = {
1337 .attrs = rc_dev_filter_attrs,
1338};
1339
1340static struct attribute *rc_dev_wakeup_filter_attrs[] = {
James Hogan00942d12014-01-17 10:58:49 -03001341 &dev_attr_wakeup_filter.attr.attr,
1342 &dev_attr_wakeup_filter_mask.attr.attr,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001343 NULL,
1344};
1345
David Härdeman99b0f3c2014-04-04 19:06:06 -03001346static struct attribute_group rc_dev_wakeup_filter_attr_grp = {
1347 .attrs = rc_dev_wakeup_filter_attrs,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001348};
1349
1350static struct device_type rc_dev_type = {
David Härdemand8b4b582010-10-29 16:08:23 -03001351 .release = rc_dev_release,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001352 .uevent = rc_dev_uevent,
1353};
1354
David Härdemand8b4b582010-10-29 16:08:23 -03001355struct rc_dev *rc_allocate_device(void)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001356{
David Härdemand8b4b582010-10-29 16:08:23 -03001357 struct rc_dev *dev;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001358
David Härdemand8b4b582010-10-29 16:08:23 -03001359 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1360 if (!dev)
1361 return NULL;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001362
David Härdemand8b4b582010-10-29 16:08:23 -03001363 dev->input_dev = input_allocate_device();
1364 if (!dev->input_dev) {
1365 kfree(dev);
1366 return NULL;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001367 }
1368
Dmitry Torokhovaebd6362011-01-31 21:06:39 -08001369 dev->input_dev->getkeycode = ir_getkeycode;
1370 dev->input_dev->setkeycode = ir_setkeycode;
David Härdemand8b4b582010-10-29 16:08:23 -03001371 input_set_drvdata(dev->input_dev, dev);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001372
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001373 spin_lock_init(&dev->rc_map.lock);
David Härdemand8b4b582010-10-29 16:08:23 -03001374 spin_lock_init(&dev->keylock);
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001375 mutex_init(&dev->lock);
David Härdemand8b4b582010-10-29 16:08:23 -03001376 setup_timer(&dev->timer_keyup, ir_timer_keyup, (unsigned long)dev);
1377
1378 dev->dev.type = &rc_dev_type;
David Härdeman40fc5322013-03-06 16:52:10 -03001379 dev->dev.class = &rc_class;
David Härdemand8b4b582010-10-29 16:08:23 -03001380 device_initialize(&dev->dev);
1381
1382 __module_get(THIS_MODULE);
1383 return dev;
1384}
1385EXPORT_SYMBOL_GPL(rc_allocate_device);
1386
1387void rc_free_device(struct rc_dev *dev)
1388{
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001389 if (!dev)
1390 return;
1391
Markus Elfring3dd94f02014-11-20 09:01:32 -03001392 input_free_device(dev->input_dev);
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001393
1394 put_device(&dev->dev);
1395
Max Kellermann47cae1e2016-03-21 08:33:05 -03001396 /* kfree(dev) will be called by the callback function
1397 rc_dev_release() */
1398
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001399 module_put(THIS_MODULE);
David Härdemand8b4b582010-10-29 16:08:23 -03001400}
1401EXPORT_SYMBOL_GPL(rc_free_device);
1402
1403int rc_register_device(struct rc_dev *dev)
1404{
Ezequiel García5da6e982012-03-15 16:53:49 -03001405 static bool raw_init = false; /* raw decoders loaded? */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001406 struct rc_map *rc_map;
David Härdemand8b4b582010-10-29 16:08:23 -03001407 const char *path;
David Härdemanfcb13092015-05-19 19:03:17 -03001408 int attr = 0;
1409 int minor;
1410 int rc;
David Härdemand8b4b582010-10-29 16:08:23 -03001411
1412 if (!dev || !dev->map_name)
1413 return -EINVAL;
1414
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001415 rc_map = rc_map_get(dev->map_name);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001416 if (!rc_map)
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001417 rc_map = rc_map_get(RC_MAP_EMPTY);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001418 if (!rc_map || !rc_map->scan || rc_map->size == 0)
David Härdemand8b4b582010-10-29 16:08:23 -03001419 return -EINVAL;
1420
1421 set_bit(EV_KEY, dev->input_dev->evbit);
1422 set_bit(EV_REP, dev->input_dev->evbit);
1423 set_bit(EV_MSC, dev->input_dev->evbit);
1424 set_bit(MSC_SCAN, dev->input_dev->mscbit);
1425 if (dev->open)
1426 dev->input_dev->open = ir_open;
1427 if (dev->close)
1428 dev->input_dev->close = ir_close;
1429
David Härdemanfcb13092015-05-19 19:03:17 -03001430 minor = ida_simple_get(&rc_ida, 0, RC_DEV_MAX, GFP_KERNEL);
1431 if (minor < 0)
1432 return minor;
1433
1434 dev->minor = minor;
1435 dev_set_name(&dev->dev, "rc%u", dev->minor);
1436 dev_set_drvdata(&dev->dev, dev);
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001437 atomic_set(&dev->initialized, 0);
Mauro Carvalho Chehab587d1b02014-01-14 16:27:55 -03001438
David Härdeman99b0f3c2014-04-04 19:06:06 -03001439 dev->dev.groups = dev->sysfs_groups;
1440 dev->sysfs_groups[attr++] = &rc_dev_protocol_attr_grp;
1441 if (dev->s_filter)
David Härdeman120703f2014-04-03 20:31:30 -03001442 dev->sysfs_groups[attr++] = &rc_dev_filter_attr_grp;
David Härdeman99b0f3c2014-04-04 19:06:06 -03001443 if (dev->s_wakeup_filter)
1444 dev->sysfs_groups[attr++] = &rc_dev_wakeup_filter_attr_grp;
1445 if (dev->change_wakeup_protocol)
1446 dev->sysfs_groups[attr++] = &rc_dev_wakeup_protocol_attr_grp;
1447 dev->sysfs_groups[attr++] = NULL;
1448
David Härdemand8b4b582010-10-29 16:08:23 -03001449 rc = device_add(&dev->dev);
1450 if (rc)
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001451 goto out_unlock;
David Härdemand8b4b582010-10-29 16:08:23 -03001452
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001453 rc = ir_setkeytable(dev, rc_map);
David Härdemand8b4b582010-10-29 16:08:23 -03001454 if (rc)
1455 goto out_dev;
1456
1457 dev->input_dev->dev.parent = &dev->dev;
1458 memcpy(&dev->input_dev->id, &dev->input_id, sizeof(dev->input_id));
1459 dev->input_dev->phys = dev->input_phys;
1460 dev->input_dev->name = dev->input_name;
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -03001461
David Härdemand8b4b582010-10-29 16:08:23 -03001462 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001463 * Default delay of 250ms is too short for some protocols, especially
David Härdemand8b4b582010-10-29 16:08:23 -03001464 * since the timeout is currently set to 250ms. Increase it to 500ms,
1465 * to avoid wrong repetition of the keycodes. Note that this must be
1466 * set after the call to input_register_device().
1467 */
1468 dev->input_dev->rep[REP_DELAY] = 500;
1469
Mauro Carvalho Chehabca540c82011-05-11 22:36:47 -03001470 /*
1471 * As a repeat event on protocols like RC-5 and NEC take as long as
1472 * 110/114ms, using 33ms as a repeat period is not the right thing
1473 * to do.
1474 */
1475 dev->input_dev->rep[REP_PERIOD] = 125;
1476
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001477 /* rc_open will be called here */
1478 rc = input_register_device(dev->input_dev);
1479 if (rc)
1480 goto out_table;
1481
David Härdemand8b4b582010-10-29 16:08:23 -03001482 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Heiner Kallweit4dc0e902015-10-29 19:39:06 -02001483 dev_info(&dev->dev, "%s as %s\n",
1484 dev->input_name ?: "Unspecified device", path ?: "N/A");
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001485 kfree(path);
1486
David Härdeman3a03b862015-07-20 16:16:41 -03001487 if (dev->driver_type == RC_DRIVER_IR_RAW) {
Ezequiel García5da6e982012-03-15 16:53:49 -03001488 if (!raw_init) {
Heiner Kallweitc1500ba2015-11-21 12:55:03 -02001489 request_module_nowait("ir-lirc-codec");
Ezequiel García5da6e982012-03-15 16:53:49 -03001490 raw_init = true;
1491 }
David Härdemand8b4b582010-10-29 16:08:23 -03001492 rc = ir_raw_event_register(dev);
1493 if (rc < 0)
1494 goto out_input;
1495 }
1496
1497 if (dev->change_protocol) {
Mauro Carvalho Chehabfb9b1642014-11-05 09:28:01 -02001498 u64 rc_type = (1ll << rc_map->rc_type);
David Härdemanc003ab12012-10-11 19:11:54 -03001499 rc = dev->change_protocol(dev, &rc_type);
David Härdemand8b4b582010-10-29 16:08:23 -03001500 if (rc < 0)
1501 goto out_raw;
David Härdemanc5540fb2014-04-03 20:32:21 -03001502 dev->enabled_protocols = rc_type;
David Härdemand8b4b582010-10-29 16:08:23 -03001503 }
1504
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001505 /* Allow the RC sysfs nodes to be accessible */
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001506 atomic_set(&dev->initialized, 1);
Dan Carpenter0528f352011-05-26 05:52:01 -03001507
David Härdemanfcb13092015-05-19 19:03:17 -03001508 IR_dprintk(1, "Registered rc%u (driver: %s, remote: %s, mode %s)\n",
1509 dev->minor,
David Härdemand8b4b582010-10-29 16:08:23 -03001510 dev->driver_name ? dev->driver_name : "unknown",
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001511 rc_map->name ? rc_map->name : "unknown",
David Härdemand8b4b582010-10-29 16:08:23 -03001512 dev->driver_type == RC_DRIVER_IR_RAW ? "raw" : "cooked");
1513
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001514 return 0;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001515
David Härdemand8b4b582010-10-29 16:08:23 -03001516out_raw:
1517 if (dev->driver_type == RC_DRIVER_IR_RAW)
1518 ir_raw_event_unregister(dev);
1519out_input:
1520 input_unregister_device(dev->input_dev);
1521 dev->input_dev = NULL;
1522out_table:
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001523 ir_free_table(&dev->rc_map);
David Härdemand8b4b582010-10-29 16:08:23 -03001524out_dev:
1525 device_del(&dev->dev);
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001526out_unlock:
David Härdemanfcb13092015-05-19 19:03:17 -03001527 ida_simple_remove(&rc_ida, minor);
David Härdemand8b4b582010-10-29 16:08:23 -03001528 return rc;
1529}
1530EXPORT_SYMBOL_GPL(rc_register_device);
1531
1532void rc_unregister_device(struct rc_dev *dev)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001533{
David Härdemand8b4b582010-10-29 16:08:23 -03001534 if (!dev)
1535 return;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001536
David Härdemand8b4b582010-10-29 16:08:23 -03001537 del_timer_sync(&dev->timer_keyup);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001538
David Härdemand8b4b582010-10-29 16:08:23 -03001539 if (dev->driver_type == RC_DRIVER_IR_RAW)
1540 ir_raw_event_unregister(dev);
1541
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001542 /* Freeing the table should also call the stop callback */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001543 ir_free_table(&dev->rc_map);
David Härdemand8b4b582010-10-29 16:08:23 -03001544 IR_dprintk(1, "Freed keycode table\n");
1545
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001546 input_unregister_device(dev->input_dev);
1547 dev->input_dev = NULL;
1548
1549 device_del(&dev->dev);
1550
David Härdemanfcb13092015-05-19 19:03:17 -03001551 ida_simple_remove(&rc_ida, dev->minor);
1552
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001553 rc_free_device(dev);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001554}
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001555
David Härdemand8b4b582010-10-29 16:08:23 -03001556EXPORT_SYMBOL_GPL(rc_unregister_device);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001557
1558/*
1559 * Init/exit code for the module. Basically, creates/removes /sys/class/rc
1560 */
1561
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001562static int __init rc_core_init(void)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001563{
David Härdeman40fc5322013-03-06 16:52:10 -03001564 int rc = class_register(&rc_class);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001565 if (rc) {
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001566 printk(KERN_ERR "rc_core: unable to register rc class\n");
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001567 return rc;
1568 }
1569
Sean Young153a60b2013-07-30 19:00:01 -03001570 led_trigger_register_simple("rc-feedback", &led_feedback);
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001571 rc_map_register(&empty_map);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001572
1573 return 0;
1574}
1575
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001576static void __exit rc_core_exit(void)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001577{
David Härdeman40fc5322013-03-06 16:52:10 -03001578 class_unregister(&rc_class);
Sean Young153a60b2013-07-30 19:00:01 -03001579 led_trigger_unregister_simple(led_feedback);
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001580 rc_map_unregister(&empty_map);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001581}
1582
David Härdemane76d4ce2013-03-06 16:52:15 -03001583subsys_initcall(rc_core_init);
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001584module_exit(rc_core_exit);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001585
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001586int rc_core_debug; /* ir_debug level (0,1,2) */
1587EXPORT_SYMBOL_GPL(rc_core_debug);
1588module_param_named(debug, rc_core_debug, int, 0644);
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03001589
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02001590MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03001591MODULE_LICENSE("GPL");