blob: 8e7f2929fa6f8ac71497d20a2dd567ce4f9077e7 [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 Verkuild54fc3bb2016-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 Verkuild54fc3bb2016-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 Verkuild54fc3bb2016-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 Verkuild54fc3bb2016-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" },
Kamil Debskiff42c8a2015-08-17 08:47:41 -0300813 { RC_BIT_CEC, "cec", NULL },
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300814};
815
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300816/**
James Hoganab88c662014-02-28 20:17:05 -0300817 * struct rc_filter_attribute - Device attribute relating to a filter type.
818 * @attr: Device attribute.
819 * @type: Filter type.
820 * @mask: false for filter value, true for filter mask.
821 */
822struct rc_filter_attribute {
823 struct device_attribute attr;
824 enum rc_filter_type type;
825 bool mask;
826};
827#define to_rc_filter_attr(a) container_of(a, struct rc_filter_attribute, attr)
828
829#define RC_PROTO_ATTR(_name, _mode, _show, _store, _type) \
830 struct rc_filter_attribute dev_attr_##_name = { \
831 .attr = __ATTR(_name, _mode, _show, _store), \
832 .type = (_type), \
833 }
834#define RC_FILTER_ATTR(_name, _mode, _show, _store, _type, _mask) \
835 struct rc_filter_attribute dev_attr_##_name = { \
836 .attr = __ATTR(_name, _mode, _show, _store), \
837 .type = (_type), \
838 .mask = (_mask), \
839 }
840
David Härdemandd6ff6a2015-07-22 17:55:24 -0300841static bool lirc_is_present(void)
842{
843#if defined(CONFIG_LIRC_MODULE)
844 struct module *lirc;
845
846 mutex_lock(&module_mutex);
847 lirc = find_module("lirc_dev");
848 mutex_unlock(&module_mutex);
849
850 return lirc ? true : false;
851#elif defined(CONFIG_LIRC)
852 return true;
853#else
854 return false;
855#endif
856}
857
James Hoganab88c662014-02-28 20:17:05 -0300858/**
859 * show_protocols() - shows the current/wakeup IR protocol(s)
David Härdemand8b4b582010-10-29 16:08:23 -0300860 * @device: the device descriptor
David Härdemanda6e1622014-04-03 20:32:16 -0300861 * @mattr: the device attribute struct
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300862 * @buf: a pointer to the output buffer
863 *
864 * This routine is a callback routine for input read the IR protocol type(s).
James Hoganab88c662014-02-28 20:17:05 -0300865 * it is trigged by reading /sys/class/rc/rc?/[wakeup_]protocols.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300866 * It returns the protocol names of supported protocols.
867 * Enabled protocols are printed in brackets.
Jarod Wilson08aeb7c2011-05-11 15:14:31 -0300868 *
869 * dev->lock is taken to guard against races between device
870 * registration, store_protocols and show_protocols.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300871 */
David Härdemand8b4b582010-10-29 16:08:23 -0300872static ssize_t show_protocols(struct device *device,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300873 struct device_attribute *mattr, char *buf)
874{
David Härdemand8b4b582010-10-29 16:08:23 -0300875 struct rc_dev *dev = to_rc_dev(device);
James Hoganab88c662014-02-28 20:17:05 -0300876 struct rc_filter_attribute *fattr = to_rc_filter_attr(mattr);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300877 u64 allowed, enabled;
878 char *tmp = buf;
879 int i;
880
881 /* Device is being removed */
David Härdemand8b4b582010-10-29 16:08:23 -0300882 if (!dev)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300883 return -EINVAL;
884
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -0300885 if (!atomic_read(&dev->initialized))
886 return -ERESTARTSYS;
887
Jarod Wilson08aeb7c2011-05-11 15:14:31 -0300888 mutex_lock(&dev->lock);
889
David Härdemanda6e1622014-04-03 20:32:16 -0300890 if (fattr->type == RC_FILTER_NORMAL) {
David Härdemanc5540fb2014-04-03 20:32:21 -0300891 enabled = dev->enabled_protocols;
Mauro Carvalho Chehabd24b69f2014-07-28 14:25:28 -0300892 allowed = dev->allowed_protocols;
893 if (dev->raw && !allowed)
David Härdemanda6e1622014-04-03 20:32:16 -0300894 allowed = ir_raw_get_allowed_protocols();
David Härdemanda6e1622014-04-03 20:32:16 -0300895 } else {
David Härdemanc5540fb2014-04-03 20:32:21 -0300896 enabled = dev->enabled_wakeup_protocols;
897 allowed = dev->allowed_wakeup_protocols;
Dan Carpenter30ebc5e2012-11-27 13:35:09 -0300898 }
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300899
David Härdemanda6e1622014-04-03 20:32:16 -0300900 mutex_unlock(&dev->lock);
901
902 IR_dprintk(1, "%s: allowed - 0x%llx, enabled - 0x%llx\n",
903 __func__, (long long)allowed, (long long)enabled);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300904
905 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
906 if (allowed & enabled & proto_names[i].type)
907 tmp += sprintf(tmp, "[%s] ", proto_names[i].name);
908 else if (allowed & proto_names[i].type)
909 tmp += sprintf(tmp, "%s ", proto_names[i].name);
David Härdemanc003ab12012-10-11 19:11:54 -0300910
911 if (allowed & proto_names[i].type)
912 allowed &= ~proto_names[i].type;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300913 }
914
David Härdemandd6ff6a2015-07-22 17:55:24 -0300915 if (dev->driver_type == RC_DRIVER_IR_RAW && lirc_is_present())
David Härdeman275ddb42015-05-19 19:03:22 -0300916 tmp += sprintf(tmp, "[lirc] ");
917
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300918 if (tmp != buf)
919 tmp--;
920 *tmp = '\n';
Jarod Wilson08aeb7c2011-05-11 15:14:31 -0300921
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300922 return tmp + 1 - buf;
923}
924
925/**
David Härdemanda6e1622014-04-03 20:32:16 -0300926 * parse_protocol_change() - parses a protocol change request
927 * @protocols: pointer to the bitmask of current protocols
928 * @buf: pointer to the buffer with a list of changes
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300929 *
David Härdemanda6e1622014-04-03 20:32:16 -0300930 * Writing "+proto" will add a protocol to the protocol mask.
931 * Writing "-proto" will remove a protocol from protocol mask.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300932 * Writing "proto" will enable only "proto".
933 * Writing "none" will disable all protocols.
David Härdemanda6e1622014-04-03 20:32:16 -0300934 * Returns the number of changes performed or a negative error code.
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300935 */
David Härdemanda6e1622014-04-03 20:32:16 -0300936static int parse_protocol_change(u64 *protocols, const char *buf)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300937{
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300938 const char *tmp;
David Härdemanda6e1622014-04-03 20:32:16 -0300939 unsigned count = 0;
940 bool enable, disable;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300941 u64 mask;
David Härdemanda6e1622014-04-03 20:32:16 -0300942 int i;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300943
David Härdemanda6e1622014-04-03 20:32:16 -0300944 while ((tmp = strsep((char **)&buf, " \n")) != NULL) {
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300945 if (!*tmp)
946 break;
947
948 if (*tmp == '+') {
949 enable = true;
950 disable = false;
951 tmp++;
952 } else if (*tmp == '-') {
953 enable = false;
954 disable = true;
955 tmp++;
956 } else {
957 enable = false;
958 disable = false;
959 }
960
David Härdemanc003ab12012-10-11 19:11:54 -0300961 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
962 if (!strcasecmp(tmp, proto_names[i].name)) {
963 mask = proto_names[i].type;
964 break;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300965 }
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300966 }
967
David Härdemanc003ab12012-10-11 19:11:54 -0300968 if (i == ARRAY_SIZE(proto_names)) {
David Härdeman275ddb42015-05-19 19:03:22 -0300969 if (!strcasecmp(tmp, "lirc"))
970 mask = 0;
971 else {
972 IR_dprintk(1, "Unknown protocol: '%s'\n", tmp);
973 return -EINVAL;
974 }
David Härdemanc003ab12012-10-11 19:11:54 -0300975 }
976
977 count++;
978
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300979 if (enable)
David Härdemanda6e1622014-04-03 20:32:16 -0300980 *protocols |= mask;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300981 else if (disable)
David Härdemanda6e1622014-04-03 20:32:16 -0300982 *protocols &= ~mask;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300983 else
David Härdemanda6e1622014-04-03 20:32:16 -0300984 *protocols = mask;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300985 }
986
987 if (!count) {
988 IR_dprintk(1, "Protocol not specified\n");
David Härdemanda6e1622014-04-03 20:32:16 -0300989 return -EINVAL;
990 }
991
992 return count;
993}
994
Heiner Kallweit9f0bf362015-11-16 17:52:08 -0200995static void ir_raw_load_modules(u64 *protocols)
996
997{
998 u64 available;
999 int i, ret;
1000
1001 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
1002 if (proto_names[i].type == RC_BIT_NONE ||
1003 proto_names[i].type & (RC_BIT_OTHER | RC_BIT_UNKNOWN))
1004 continue;
1005
1006 available = ir_raw_get_allowed_protocols();
1007 if (!(*protocols & proto_names[i].type & ~available))
1008 continue;
1009
1010 if (!proto_names[i].module_name) {
1011 pr_err("Can't enable IR protocol %s\n",
1012 proto_names[i].name);
1013 *protocols &= ~proto_names[i].type;
1014 continue;
1015 }
1016
1017 ret = request_module("%s", proto_names[i].module_name);
1018 if (ret < 0) {
1019 pr_err("Couldn't load IR protocol module %s\n",
1020 proto_names[i].module_name);
1021 *protocols &= ~proto_names[i].type;
1022 continue;
1023 }
1024 msleep(20);
1025 available = ir_raw_get_allowed_protocols();
1026 if (!(*protocols & proto_names[i].type & ~available))
1027 continue;
1028
1029 pr_err("Loaded IR protocol module %s, \
1030 but protocol %s still not available\n",
1031 proto_names[i].module_name,
1032 proto_names[i].name);
1033 *protocols &= ~proto_names[i].type;
1034 }
1035}
1036
David Härdemanda6e1622014-04-03 20:32:16 -03001037/**
1038 * store_protocols() - changes the current/wakeup IR protocol(s)
1039 * @device: the device descriptor
1040 * @mattr: the device attribute struct
1041 * @buf: a pointer to the input buffer
1042 * @len: length of the input buffer
1043 *
1044 * This routine is for changing the IR protocol type.
1045 * It is trigged by writing to /sys/class/rc/rc?/[wakeup_]protocols.
1046 * See parse_protocol_change() for the valid commands.
1047 * Returns @len on success or a negative error code.
1048 *
1049 * dev->lock is taken to guard against races between device
1050 * registration, store_protocols and show_protocols.
1051 */
1052static ssize_t store_protocols(struct device *device,
1053 struct device_attribute *mattr,
1054 const char *buf, size_t len)
1055{
1056 struct rc_dev *dev = to_rc_dev(device);
1057 struct rc_filter_attribute *fattr = to_rc_filter_attr(mattr);
1058 u64 *current_protocols;
1059 int (*change_protocol)(struct rc_dev *dev, u64 *rc_type);
1060 struct rc_scancode_filter *filter;
1061 int (*set_filter)(struct rc_dev *dev, struct rc_scancode_filter *filter);
1062 u64 old_protocols, new_protocols;
1063 ssize_t rc;
1064
1065 /* Device is being removed */
1066 if (!dev)
1067 return -EINVAL;
1068
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001069 if (!atomic_read(&dev->initialized))
1070 return -ERESTARTSYS;
1071
David Härdemanda6e1622014-04-03 20:32:16 -03001072 if (fattr->type == RC_FILTER_NORMAL) {
1073 IR_dprintk(1, "Normal protocol change requested\n");
David Härdemanc5540fb2014-04-03 20:32:21 -03001074 current_protocols = &dev->enabled_protocols;
David Härdemanda6e1622014-04-03 20:32:16 -03001075 change_protocol = dev->change_protocol;
David Härdemanc5540fb2014-04-03 20:32:21 -03001076 filter = &dev->scancode_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001077 set_filter = dev->s_filter;
1078 } else {
1079 IR_dprintk(1, "Wakeup protocol change requested\n");
David Härdemanc5540fb2014-04-03 20:32:21 -03001080 current_protocols = &dev->enabled_wakeup_protocols;
David Härdemanda6e1622014-04-03 20:32:16 -03001081 change_protocol = dev->change_wakeup_protocol;
David Härdemanc5540fb2014-04-03 20:32:21 -03001082 filter = &dev->scancode_wakeup_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001083 set_filter = dev->s_wakeup_filter;
1084 }
1085
1086 if (!change_protocol) {
1087 IR_dprintk(1, "Protocol switching not supported\n");
1088 return -EINVAL;
1089 }
1090
1091 mutex_lock(&dev->lock);
1092
1093 old_protocols = *current_protocols;
1094 new_protocols = old_protocols;
1095 rc = parse_protocol_change(&new_protocols, buf);
1096 if (rc < 0)
1097 goto out;
1098
1099 rc = change_protocol(dev, &new_protocols);
1100 if (rc < 0) {
1101 IR_dprintk(1, "Error setting protocols to 0x%llx\n",
1102 (long long)new_protocols);
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001103 goto out;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001104 }
1105
Heiner Kallweit9f0bf362015-11-16 17:52:08 -02001106 if (dev->driver_type == RC_DRIVER_IR_RAW)
1107 ir_raw_load_modules(&new_protocols);
1108
James Hogan983c5bd2014-12-08 13:17:07 -03001109 if (new_protocols != old_protocols) {
1110 *current_protocols = new_protocols;
1111 IR_dprintk(1, "Protocols changed to 0x%llx\n",
1112 (long long)new_protocols);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001113 }
1114
James Hogan6bea25a2014-02-28 20:17:06 -03001115 /*
James Hogan983c5bd2014-12-08 13:17:07 -03001116 * If a protocol change was attempted the filter may need updating, even
1117 * if the actual protocol mask hasn't changed (since the driver may have
1118 * cleared the filter).
James Hogan6bea25a2014-02-28 20:17:06 -03001119 * Try setting the same filter with the new protocol (if any).
1120 * Fall back to clearing the filter.
1121 */
David Härdemanda6e1622014-04-03 20:32:16 -03001122 if (set_filter && filter->mask) {
1123 if (new_protocols)
1124 rc = set_filter(dev, filter);
1125 else
1126 rc = -1;
David Härdeman23c843b2014-04-04 19:06:01 -03001127
David Härdemanda6e1622014-04-03 20:32:16 -03001128 if (rc < 0) {
1129 filter->data = 0;
1130 filter->mask = 0;
1131 set_filter(dev, filter);
James Hogan6bea25a2014-02-28 20:17:06 -03001132 }
James Hogan6bea25a2014-02-28 20:17:06 -03001133 }
1134
David Härdemanda6e1622014-04-03 20:32:16 -03001135 rc = len;
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001136
1137out:
1138 mutex_unlock(&dev->lock);
David Härdemanda6e1622014-04-03 20:32:16 -03001139 return rc;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001140}
1141
James Hogan00942d12014-01-17 10:58:49 -03001142/**
James Hogan00942d12014-01-17 10:58:49 -03001143 * show_filter() - shows the current scancode filter value or mask
1144 * @device: the device descriptor
1145 * @attr: the device attribute struct
1146 * @buf: a pointer to the output buffer
1147 *
1148 * This routine is a callback routine to read a scancode filter value or mask.
1149 * It is trigged by reading /sys/class/rc/rc?/[wakeup_]filter[_mask].
1150 * It prints the current scancode filter value or mask of the appropriate filter
1151 * type in hexadecimal into @buf and returns the size of the buffer.
1152 *
1153 * Bits of the filter value corresponding to set bits in the filter mask are
1154 * compared against input scancodes and non-matching scancodes are discarded.
1155 *
1156 * dev->lock is taken to guard against races between device registration,
1157 * store_filter and show_filter.
1158 */
1159static ssize_t show_filter(struct device *device,
1160 struct device_attribute *attr,
1161 char *buf)
1162{
1163 struct rc_dev *dev = to_rc_dev(device);
1164 struct rc_filter_attribute *fattr = to_rc_filter_attr(attr);
David Härdemanda6e1622014-04-03 20:32:16 -03001165 struct rc_scancode_filter *filter;
James Hogan00942d12014-01-17 10:58:49 -03001166 u32 val;
1167
1168 /* Device is being removed */
1169 if (!dev)
1170 return -EINVAL;
1171
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001172 if (!atomic_read(&dev->initialized))
1173 return -ERESTARTSYS;
1174
Mauro Carvalho Chehabc73bbaa2016-02-11 10:33:31 -02001175 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc73bbaa2016-02-11 10:33:31 -02001176
David Härdemanda6e1622014-04-03 20:32:16 -03001177 if (fattr->type == RC_FILTER_NORMAL)
David Härdemanc5540fb2014-04-03 20:32:21 -03001178 filter = &dev->scancode_filter;
James Hogan00942d12014-01-17 10:58:49 -03001179 else
David Härdemanc5540fb2014-04-03 20:32:21 -03001180 filter = &dev->scancode_wakeup_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001181
David Härdemanda6e1622014-04-03 20:32:16 -03001182 if (fattr->mask)
1183 val = filter->mask;
1184 else
1185 val = filter->data;
James Hogan00942d12014-01-17 10:58:49 -03001186 mutex_unlock(&dev->lock);
1187
1188 return sprintf(buf, "%#x\n", val);
1189}
1190
1191/**
1192 * store_filter() - changes the scancode filter value
1193 * @device: the device descriptor
1194 * @attr: the device attribute struct
1195 * @buf: a pointer to the input buffer
1196 * @len: length of the input buffer
1197 *
1198 * This routine is for changing a scancode filter value or mask.
1199 * It is trigged by writing to /sys/class/rc/rc?/[wakeup_]filter[_mask].
1200 * Returns -EINVAL if an invalid filter value for the current protocol was
1201 * specified or if scancode filtering is not supported by the driver, otherwise
1202 * returns @len.
1203 *
1204 * Bits of the filter value corresponding to set bits in the filter mask are
1205 * compared against input scancodes and non-matching scancodes are discarded.
1206 *
1207 * dev->lock is taken to guard against races between device registration,
1208 * store_filter and show_filter.
1209 */
1210static ssize_t store_filter(struct device *device,
1211 struct device_attribute *attr,
David Härdemanda6e1622014-04-03 20:32:16 -03001212 const char *buf, size_t len)
James Hogan00942d12014-01-17 10:58:49 -03001213{
1214 struct rc_dev *dev = to_rc_dev(device);
1215 struct rc_filter_attribute *fattr = to_rc_filter_attr(attr);
David Härdemanda6e1622014-04-03 20:32:16 -03001216 struct rc_scancode_filter new_filter, *filter;
James Hogan00942d12014-01-17 10:58:49 -03001217 int ret;
1218 unsigned long val;
David Härdeman23c843b2014-04-04 19:06:01 -03001219 int (*set_filter)(struct rc_dev *dev, struct rc_scancode_filter *filter);
David Härdemanda6e1622014-04-03 20:32:16 -03001220 u64 *enabled_protocols;
James Hogan00942d12014-01-17 10:58:49 -03001221
1222 /* Device is being removed */
1223 if (!dev)
1224 return -EINVAL;
1225
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001226 if (!atomic_read(&dev->initialized))
1227 return -ERESTARTSYS;
1228
James Hogan00942d12014-01-17 10:58:49 -03001229 ret = kstrtoul(buf, 0, &val);
1230 if (ret < 0)
1231 return ret;
1232
David Härdemanda6e1622014-04-03 20:32:16 -03001233 if (fattr->type == RC_FILTER_NORMAL) {
1234 set_filter = dev->s_filter;
David Härdemanc5540fb2014-04-03 20:32:21 -03001235 enabled_protocols = &dev->enabled_protocols;
1236 filter = &dev->scancode_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001237 } else {
1238 set_filter = dev->s_wakeup_filter;
David Härdemanc5540fb2014-04-03 20:32:21 -03001239 enabled_protocols = &dev->enabled_wakeup_protocols;
1240 filter = &dev->scancode_wakeup_filter;
David Härdemanda6e1622014-04-03 20:32:16 -03001241 }
1242
David Härdeman99b0f3c2014-04-04 19:06:06 -03001243 if (!set_filter)
1244 return -EINVAL;
James Hogan00942d12014-01-17 10:58:49 -03001245
1246 mutex_lock(&dev->lock);
1247
David Härdemanda6e1622014-04-03 20:32:16 -03001248 new_filter = *filter;
James Hogan00942d12014-01-17 10:58:49 -03001249 if (fattr->mask)
David Härdemanda6e1622014-04-03 20:32:16 -03001250 new_filter.mask = val;
James Hogan00942d12014-01-17 10:58:49 -03001251 else
David Härdemanda6e1622014-04-03 20:32:16 -03001252 new_filter.data = val;
David Härdeman23c843b2014-04-04 19:06:01 -03001253
David Härdemanda6e1622014-04-03 20:32:16 -03001254 if (!*enabled_protocols && val) {
James Hogan6bea25a2014-02-28 20:17:06 -03001255 /* refuse to set a filter unless a protocol is enabled */
1256 ret = -EINVAL;
1257 goto unlock;
1258 }
David Härdeman23c843b2014-04-04 19:06:01 -03001259
David Härdemanda6e1622014-04-03 20:32:16 -03001260 ret = set_filter(dev, &new_filter);
David Härdeman99b0f3c2014-04-04 19:06:06 -03001261 if (ret < 0)
1262 goto unlock;
James Hogan00942d12014-01-17 10:58:49 -03001263
David Härdemanda6e1622014-04-03 20:32:16 -03001264 *filter = new_filter;
James Hogan00942d12014-01-17 10:58:49 -03001265
1266unlock:
1267 mutex_unlock(&dev->lock);
David Härdemanda6e1622014-04-03 20:32:16 -03001268 return (ret < 0) ? ret : len;
James Hogan00942d12014-01-17 10:58:49 -03001269}
1270
David Härdemand8b4b582010-10-29 16:08:23 -03001271static void rc_dev_release(struct device *device)
1272{
Max Kellermann47cae1e2016-03-21 08:33:05 -03001273 struct rc_dev *dev = to_rc_dev(device);
1274
1275 kfree(dev);
David Härdemand8b4b582010-10-29 16:08:23 -03001276}
1277
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001278#define ADD_HOTPLUG_VAR(fmt, val...) \
1279 do { \
1280 int err = add_uevent_var(env, fmt, val); \
1281 if (err) \
1282 return err; \
1283 } while (0)
1284
1285static int rc_dev_uevent(struct device *device, struct kobj_uevent_env *env)
1286{
David Härdemand8b4b582010-10-29 16:08:23 -03001287 struct rc_dev *dev = to_rc_dev(device);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001288
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001289 if (dev->rc_map.name)
1290 ADD_HOTPLUG_VAR("NAME=%s", dev->rc_map.name);
David Härdemand8b4b582010-10-29 16:08:23 -03001291 if (dev->driver_name)
1292 ADD_HOTPLUG_VAR("DRV_NAME=%s", dev->driver_name);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001293
1294 return 0;
1295}
1296
1297/*
1298 * Static device attribute struct with the sysfs attributes for IR's
1299 */
James Hoganab88c662014-02-28 20:17:05 -03001300static RC_PROTO_ATTR(protocols, S_IRUGO | S_IWUSR,
1301 show_protocols, store_protocols, RC_FILTER_NORMAL);
1302static RC_PROTO_ATTR(wakeup_protocols, S_IRUGO | S_IWUSR,
1303 show_protocols, store_protocols, RC_FILTER_WAKEUP);
James Hogan00942d12014-01-17 10:58:49 -03001304static RC_FILTER_ATTR(filter, S_IRUGO|S_IWUSR,
1305 show_filter, store_filter, RC_FILTER_NORMAL, false);
1306static RC_FILTER_ATTR(filter_mask, S_IRUGO|S_IWUSR,
1307 show_filter, store_filter, RC_FILTER_NORMAL, true);
1308static RC_FILTER_ATTR(wakeup_filter, S_IRUGO|S_IWUSR,
1309 show_filter, store_filter, RC_FILTER_WAKEUP, false);
1310static RC_FILTER_ATTR(wakeup_filter_mask, S_IRUGO|S_IWUSR,
1311 show_filter, store_filter, RC_FILTER_WAKEUP, true);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001312
David Härdeman99b0f3c2014-04-04 19:06:06 -03001313static struct attribute *rc_dev_protocol_attrs[] = {
James Hoganab88c662014-02-28 20:17:05 -03001314 &dev_attr_protocols.attr.attr,
David Härdeman99b0f3c2014-04-04 19:06:06 -03001315 NULL,
1316};
1317
1318static struct attribute_group rc_dev_protocol_attr_grp = {
1319 .attrs = rc_dev_protocol_attrs,
1320};
1321
1322static struct attribute *rc_dev_wakeup_protocol_attrs[] = {
James Hoganab88c662014-02-28 20:17:05 -03001323 &dev_attr_wakeup_protocols.attr.attr,
David Härdeman99b0f3c2014-04-04 19:06:06 -03001324 NULL,
1325};
1326
1327static struct attribute_group rc_dev_wakeup_protocol_attr_grp = {
1328 .attrs = rc_dev_wakeup_protocol_attrs,
1329};
1330
1331static struct attribute *rc_dev_filter_attrs[] = {
James Hogan00942d12014-01-17 10:58:49 -03001332 &dev_attr_filter.attr.attr,
1333 &dev_attr_filter_mask.attr.attr,
David Härdeman99b0f3c2014-04-04 19:06:06 -03001334 NULL,
1335};
1336
1337static struct attribute_group rc_dev_filter_attr_grp = {
1338 .attrs = rc_dev_filter_attrs,
1339};
1340
1341static struct attribute *rc_dev_wakeup_filter_attrs[] = {
James Hogan00942d12014-01-17 10:58:49 -03001342 &dev_attr_wakeup_filter.attr.attr,
1343 &dev_attr_wakeup_filter_mask.attr.attr,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001344 NULL,
1345};
1346
David Härdeman99b0f3c2014-04-04 19:06:06 -03001347static struct attribute_group rc_dev_wakeup_filter_attr_grp = {
1348 .attrs = rc_dev_wakeup_filter_attrs,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001349};
1350
1351static struct device_type rc_dev_type = {
David Härdemand8b4b582010-10-29 16:08:23 -03001352 .release = rc_dev_release,
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001353 .uevent = rc_dev_uevent,
1354};
1355
David Härdemand8b4b582010-10-29 16:08:23 -03001356struct rc_dev *rc_allocate_device(void)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001357{
David Härdemand8b4b582010-10-29 16:08:23 -03001358 struct rc_dev *dev;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001359
David Härdemand8b4b582010-10-29 16:08:23 -03001360 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1361 if (!dev)
1362 return NULL;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001363
David Härdemand8b4b582010-10-29 16:08:23 -03001364 dev->input_dev = input_allocate_device();
1365 if (!dev->input_dev) {
1366 kfree(dev);
1367 return NULL;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001368 }
1369
Dmitry Torokhovaebd6362011-01-31 21:06:39 -08001370 dev->input_dev->getkeycode = ir_getkeycode;
1371 dev->input_dev->setkeycode = ir_setkeycode;
David Härdemand8b4b582010-10-29 16:08:23 -03001372 input_set_drvdata(dev->input_dev, dev);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001373
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001374 spin_lock_init(&dev->rc_map.lock);
David Härdemand8b4b582010-10-29 16:08:23 -03001375 spin_lock_init(&dev->keylock);
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001376 mutex_init(&dev->lock);
David Härdemand8b4b582010-10-29 16:08:23 -03001377 setup_timer(&dev->timer_keyup, ir_timer_keyup, (unsigned long)dev);
1378
1379 dev->dev.type = &rc_dev_type;
David Härdeman40fc5322013-03-06 16:52:10 -03001380 dev->dev.class = &rc_class;
David Härdemand8b4b582010-10-29 16:08:23 -03001381 device_initialize(&dev->dev);
1382
1383 __module_get(THIS_MODULE);
1384 return dev;
1385}
1386EXPORT_SYMBOL_GPL(rc_allocate_device);
1387
1388void rc_free_device(struct rc_dev *dev)
1389{
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001390 if (!dev)
1391 return;
1392
Markus Elfring3dd94f02014-11-20 09:01:32 -03001393 input_free_device(dev->input_dev);
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001394
1395 put_device(&dev->dev);
1396
Max Kellermann47cae1e2016-03-21 08:33:05 -03001397 /* kfree(dev) will be called by the callback function
1398 rc_dev_release() */
1399
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001400 module_put(THIS_MODULE);
David Härdemand8b4b582010-10-29 16:08:23 -03001401}
1402EXPORT_SYMBOL_GPL(rc_free_device);
1403
1404int rc_register_device(struct rc_dev *dev)
1405{
Ezequiel García5da6e982012-03-15 16:53:49 -03001406 static bool raw_init = false; /* raw decoders loaded? */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001407 struct rc_map *rc_map;
David Härdemand8b4b582010-10-29 16:08:23 -03001408 const char *path;
David Härdemanfcb13092015-05-19 19:03:17 -03001409 int attr = 0;
1410 int minor;
1411 int rc;
David Härdemand8b4b582010-10-29 16:08:23 -03001412
1413 if (!dev || !dev->map_name)
1414 return -EINVAL;
1415
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001416 rc_map = rc_map_get(dev->map_name);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001417 if (!rc_map)
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001418 rc_map = rc_map_get(RC_MAP_EMPTY);
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001419 if (!rc_map || !rc_map->scan || rc_map->size == 0)
David Härdemand8b4b582010-10-29 16:08:23 -03001420 return -EINVAL;
1421
1422 set_bit(EV_KEY, dev->input_dev->evbit);
1423 set_bit(EV_REP, dev->input_dev->evbit);
1424 set_bit(EV_MSC, dev->input_dev->evbit);
1425 set_bit(MSC_SCAN, dev->input_dev->mscbit);
1426 if (dev->open)
1427 dev->input_dev->open = ir_open;
1428 if (dev->close)
1429 dev->input_dev->close = ir_close;
1430
David Härdemanfcb13092015-05-19 19:03:17 -03001431 minor = ida_simple_get(&rc_ida, 0, RC_DEV_MAX, GFP_KERNEL);
1432 if (minor < 0)
1433 return minor;
1434
1435 dev->minor = minor;
1436 dev_set_name(&dev->dev, "rc%u", dev->minor);
1437 dev_set_drvdata(&dev->dev, dev);
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001438 atomic_set(&dev->initialized, 0);
Mauro Carvalho Chehab587d1b02014-01-14 16:27:55 -03001439
David Härdeman99b0f3c2014-04-04 19:06:06 -03001440 dev->dev.groups = dev->sysfs_groups;
1441 dev->sysfs_groups[attr++] = &rc_dev_protocol_attr_grp;
1442 if (dev->s_filter)
David Härdeman120703f2014-04-03 20:31:30 -03001443 dev->sysfs_groups[attr++] = &rc_dev_filter_attr_grp;
David Härdeman99b0f3c2014-04-04 19:06:06 -03001444 if (dev->s_wakeup_filter)
1445 dev->sysfs_groups[attr++] = &rc_dev_wakeup_filter_attr_grp;
1446 if (dev->change_wakeup_protocol)
1447 dev->sysfs_groups[attr++] = &rc_dev_wakeup_protocol_attr_grp;
1448 dev->sysfs_groups[attr++] = NULL;
1449
David Härdemand8b4b582010-10-29 16:08:23 -03001450 rc = device_add(&dev->dev);
1451 if (rc)
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001452 goto out_unlock;
David Härdemand8b4b582010-10-29 16:08:23 -03001453
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001454 rc = ir_setkeytable(dev, rc_map);
David Härdemand8b4b582010-10-29 16:08:23 -03001455 if (rc)
1456 goto out_dev;
1457
1458 dev->input_dev->dev.parent = &dev->dev;
1459 memcpy(&dev->input_dev->id, &dev->input_id, sizeof(dev->input_id));
1460 dev->input_dev->phys = dev->input_phys;
1461 dev->input_dev->name = dev->input_name;
Srinivas Kandagatla8b2ff322013-07-22 04:22:57 -03001462
David Härdemand8b4b582010-10-29 16:08:23 -03001463 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001464 * Default delay of 250ms is too short for some protocols, especially
David Härdemand8b4b582010-10-29 16:08:23 -03001465 * since the timeout is currently set to 250ms. Increase it to 500ms,
1466 * to avoid wrong repetition of the keycodes. Note that this must be
1467 * set after the call to input_register_device().
1468 */
1469 dev->input_dev->rep[REP_DELAY] = 500;
1470
Mauro Carvalho Chehabca540c82011-05-11 22:36:47 -03001471 /*
1472 * As a repeat event on protocols like RC-5 and NEC take as long as
1473 * 110/114ms, using 33ms as a repeat period is not the right thing
1474 * to do.
1475 */
1476 dev->input_dev->rep[REP_PERIOD] = 125;
1477
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001478 /* rc_open will be called here */
1479 rc = input_register_device(dev->input_dev);
1480 if (rc)
1481 goto out_table;
1482
David Härdemand8b4b582010-10-29 16:08:23 -03001483 path = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
Heiner Kallweit4dc0e902015-10-29 19:39:06 -02001484 dev_info(&dev->dev, "%s as %s\n",
1485 dev->input_name ?: "Unspecified device", path ?: "N/A");
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001486 kfree(path);
1487
David Härdeman3a03b862015-07-20 16:16:41 -03001488 if (dev->driver_type == RC_DRIVER_IR_RAW) {
Ezequiel García5da6e982012-03-15 16:53:49 -03001489 if (!raw_init) {
Heiner Kallweitc1500ba2015-11-21 12:55:03 -02001490 request_module_nowait("ir-lirc-codec");
Ezequiel García5da6e982012-03-15 16:53:49 -03001491 raw_init = true;
1492 }
David Härdemand8b4b582010-10-29 16:08:23 -03001493 rc = ir_raw_event_register(dev);
1494 if (rc < 0)
1495 goto out_input;
1496 }
1497
1498 if (dev->change_protocol) {
Mauro Carvalho Chehabfb9b1642014-11-05 09:28:01 -02001499 u64 rc_type = (1ll << rc_map->rc_type);
David Härdemanc003ab12012-10-11 19:11:54 -03001500 rc = dev->change_protocol(dev, &rc_type);
David Härdemand8b4b582010-10-29 16:08:23 -03001501 if (rc < 0)
1502 goto out_raw;
David Härdemanc5540fb2014-04-03 20:32:21 -03001503 dev->enabled_protocols = rc_type;
David Härdemand8b4b582010-10-29 16:08:23 -03001504 }
1505
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001506 /* Allow the RC sysfs nodes to be accessible */
Mauro Carvalho Chehab078600f2016-03-02 08:00:15 -03001507 atomic_set(&dev->initialized, 1);
Dan Carpenter0528f352011-05-26 05:52:01 -03001508
David Härdemanfcb13092015-05-19 19:03:17 -03001509 IR_dprintk(1, "Registered rc%u (driver: %s, remote: %s, mode %s)\n",
1510 dev->minor,
David Härdemand8b4b582010-10-29 16:08:23 -03001511 dev->driver_name ? dev->driver_name : "unknown",
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001512 rc_map->name ? rc_map->name : "unknown",
David Härdemand8b4b582010-10-29 16:08:23 -03001513 dev->driver_type == RC_DRIVER_IR_RAW ? "raw" : "cooked");
1514
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001515 return 0;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001516
David Härdemand8b4b582010-10-29 16:08:23 -03001517out_raw:
1518 if (dev->driver_type == RC_DRIVER_IR_RAW)
1519 ir_raw_event_unregister(dev);
1520out_input:
1521 input_unregister_device(dev->input_dev);
1522 dev->input_dev = NULL;
1523out_table:
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001524 ir_free_table(&dev->rc_map);
David Härdemand8b4b582010-10-29 16:08:23 -03001525out_dev:
1526 device_del(&dev->dev);
Jarod Wilson08aeb7c2011-05-11 15:14:31 -03001527out_unlock:
David Härdemanfcb13092015-05-19 19:03:17 -03001528 ida_simple_remove(&rc_ida, minor);
David Härdemand8b4b582010-10-29 16:08:23 -03001529 return rc;
1530}
1531EXPORT_SYMBOL_GPL(rc_register_device);
1532
1533void rc_unregister_device(struct rc_dev *dev)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001534{
David Härdemand8b4b582010-10-29 16:08:23 -03001535 if (!dev)
1536 return;
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001537
David Härdemand8b4b582010-10-29 16:08:23 -03001538 del_timer_sync(&dev->timer_keyup);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001539
David Härdemand8b4b582010-10-29 16:08:23 -03001540 if (dev->driver_type == RC_DRIVER_IR_RAW)
1541 ir_raw_event_unregister(dev);
1542
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001543 /* Freeing the table should also call the stop callback */
Mauro Carvalho Chehabb088ba62010-11-17 14:28:27 -03001544 ir_free_table(&dev->rc_map);
David Härdemand8b4b582010-10-29 16:08:23 -03001545 IR_dprintk(1, "Freed keycode table\n");
1546
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001547 input_unregister_device(dev->input_dev);
1548 dev->input_dev = NULL;
1549
1550 device_del(&dev->dev);
1551
David Härdemanfcb13092015-05-19 19:03:17 -03001552 ida_simple_remove(&rc_ida, dev->minor);
1553
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001554 rc_free_device(dev);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001555}
Mauro Carvalho Chehabb05681b2011-07-29 02:23:20 -03001556
David Härdemand8b4b582010-10-29 16:08:23 -03001557EXPORT_SYMBOL_GPL(rc_unregister_device);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001558
1559/*
1560 * Init/exit code for the module. Basically, creates/removes /sys/class/rc
1561 */
1562
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001563static int __init rc_core_init(void)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001564{
David Härdeman40fc5322013-03-06 16:52:10 -03001565 int rc = class_register(&rc_class);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001566 if (rc) {
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001567 printk(KERN_ERR "rc_core: unable to register rc class\n");
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001568 return rc;
1569 }
1570
Sean Young153a60b2013-07-30 19:00:01 -03001571 led_trigger_register_simple("rc-feedback", &led_feedback);
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001572 rc_map_register(&empty_map);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001573
1574 return 0;
1575}
1576
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001577static void __exit rc_core_exit(void)
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001578{
David Härdeman40fc5322013-03-06 16:52:10 -03001579 class_unregister(&rc_class);
Sean Young153a60b2013-07-30 19:00:01 -03001580 led_trigger_unregister_simple(led_feedback);
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -03001581 rc_map_unregister(&empty_map);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001582}
1583
David Härdemane76d4ce2013-03-06 16:52:15 -03001584subsys_initcall(rc_core_init);
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001585module_exit(rc_core_exit);
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001586
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -03001587int rc_core_debug; /* ir_debug level (0,1,2) */
1588EXPORT_SYMBOL_GPL(rc_core_debug);
1589module_param_named(debug, rc_core_debug, int, 0644);
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03001590
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02001591MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03001592MODULE_LICENSE("GPL");