blob: afcf0a88464dc0d07a074351da71b429843fc0a5 [file] [log] [blame]
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03001/* rc-core.c - handle IR scancode->keycode tables
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -03002 *
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -03003 * Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
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 Chehab631493e2010-11-09 23:44:27 -030015#include <media/ir-core.h>
16#include <linux/spinlock.h>
17#include <linux/delay.h>
Mauro Carvalho Chehab882ead32009-12-29 10:37:38 -030018#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -030020#include <linux/device.h>
Mauro Carvalho Chehabf62de672010-11-09 23:09:57 -030021#include "rc-core-priv.h"
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -030022
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -030023#define IRRCV_NUM_DEVICES 256
24
25/* bit array to represent IR sysfs device number */
26static unsigned long ir_core_dev_number;
27
David Härdemanb3074c02010-04-02 15:58:28 -030028/* Sizes are in bytes, 256 bytes allows for 32 entries on x64 */
29#define IR_TAB_MIN_SIZE 256
30#define IR_TAB_MAX_SIZE 8192
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
Mauro Carvalho Chehab631493e2010-11-09 23:44:27 -030035/* Used to handle IR raw handler extensions */
36static LIST_HEAD(rc_map_list);
37static DEFINE_SPINLOCK(rc_map_lock);
38
39static struct rc_keymap *seek_rc_map(const char *name)
40{
41 struct rc_keymap *map = NULL;
42
43 spin_lock(&rc_map_lock);
44 list_for_each_entry(map, &rc_map_list, list) {
45 if (!strcmp(name, map->map.name)) {
46 spin_unlock(&rc_map_lock);
47 return map;
48 }
49 }
50 spin_unlock(&rc_map_lock);
51
52 return NULL;
53}
54
55struct ir_scancode_table *get_rc_map(const char *name)
56{
57
58 struct rc_keymap *map;
59
60 map = seek_rc_map(name);
61#ifdef MODULE
62 if (!map) {
63 int rc = request_module(name);
64 if (rc < 0) {
65 printk(KERN_ERR "Couldn't load IR keymap %s\n", name);
66 return NULL;
67 }
68 msleep(20); /* Give some time for IR to register */
69
70 map = seek_rc_map(name);
71 }
72#endif
73 if (!map) {
74 printk(KERN_ERR "IR keymap %s not found\n", name);
75 return NULL;
76 }
77
78 printk(KERN_INFO "Registered IR keymap %s\n", map->map.name);
79
80 return &map->map;
81}
82EXPORT_SYMBOL_GPL(get_rc_map);
83
84int ir_register_map(struct rc_keymap *map)
85{
86 spin_lock(&rc_map_lock);
87 list_add_tail(&map->list, &rc_map_list);
88 spin_unlock(&rc_map_lock);
89 return 0;
90}
91EXPORT_SYMBOL_GPL(ir_register_map);
92
93void ir_unregister_map(struct rc_keymap *map)
94{
95 spin_lock(&rc_map_lock);
96 list_del(&map->list);
97 spin_unlock(&rc_map_lock);
98}
99EXPORT_SYMBOL_GPL(ir_unregister_map);
100
101
102static struct ir_scancode empty[] = {
103 { 0x2a, KEY_COFFEE },
104};
105
106static struct rc_keymap empty_map = {
107 .map = {
108 .scan = empty,
109 .size = ARRAY_SIZE(empty),
110 .ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */
111 .name = RC_MAP_EMPTY,
112 }
113};
114
115int ir_rcmap_init(void)
116{
117 return ir_register_map(&empty_map);
118}
119
120void ir_rcmap_cleanup(void)
121{
122 ir_unregister_map(&empty_map);
123}
124
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300125/**
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700126 * ir_create_table() - initializes a scancode table
127 * @rc_tab: the ir_scancode_table to initialize
128 * @name: name to assign to the table
129 * @ir_type: ir type to assign to the new table
130 * @size: initial size of the table
131 * @return: zero on success or a negative error code
132 *
133 * This routine will initialize the ir_scancode_table and will allocate
134 * memory to hold at least the specified number elements.
135 */
136static int ir_create_table(struct ir_scancode_table *rc_tab,
137 const char *name, u64 ir_type, size_t size)
138{
139 rc_tab->name = name;
140 rc_tab->ir_type = ir_type;
141 rc_tab->alloc = roundup_pow_of_two(size * sizeof(struct ir_scancode));
142 rc_tab->size = rc_tab->alloc / sizeof(struct ir_scancode);
143 rc_tab->scan = kmalloc(rc_tab->alloc, GFP_KERNEL);
144 if (!rc_tab->scan)
145 return -ENOMEM;
146
147 IR_dprintk(1, "Allocated space for %u keycode entries (%u bytes)\n",
148 rc_tab->size, rc_tab->alloc);
149 return 0;
150}
151
152/**
153 * ir_free_table() - frees memory allocated by a scancode table
154 * @rc_tab: the table whose mappings need to be freed
155 *
156 * This routine will free memory alloctaed for key mappings used by given
157 * scancode table.
158 */
159static void ir_free_table(struct ir_scancode_table *rc_tab)
160{
161 rc_tab->size = 0;
162 kfree(rc_tab->scan);
163 rc_tab->scan = NULL;
164}
165
166/**
David Härdemanb3074c02010-04-02 15:58:28 -0300167 * ir_resize_table() - resizes a scancode table if necessary
168 * @rc_tab: the ir_scancode_table 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 *
David Härdemanb3074c02010-04-02 15:58:28 -0300172 * This routine will shrink the ir_scancode_table if it has lots of
173 * unused entries and grow it if it is full.
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300174 */
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700175static int ir_resize_table(struct ir_scancode_table *rc_tab, gfp_t gfp_flags)
David Härdemanb3074c02010-04-02 15:58:28 -0300176{
177 unsigned int oldalloc = rc_tab->alloc;
178 unsigned int newalloc = oldalloc;
179 struct ir_scancode *oldscan = rc_tab->scan;
180 struct ir_scancode *newscan;
181
182 if (rc_tab->size == rc_tab->len) {
183 /* All entries in use -> grow keytable */
184 if (rc_tab->alloc >= IR_TAB_MAX_SIZE)
185 return -ENOMEM;
186
187 newalloc *= 2;
188 IR_dprintk(1, "Growing table to %u bytes\n", newalloc);
189 }
190
191 if ((rc_tab->len * 3 < rc_tab->size) && (oldalloc > IR_TAB_MIN_SIZE)) {
192 /* 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
206 memcpy(newscan, rc_tab->scan, rc_tab->len * sizeof(struct ir_scancode));
207 rc_tab->scan = newscan;
208 rc_tab->alloc = newalloc;
209 rc_tab->size = rc_tab->alloc / sizeof(struct ir_scancode);
210 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ärdemanb3074c02010-04-02 15:58:28 -0300216 * @dev: the struct input_dev device descriptor
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700217 * @rc_tab: scancode table to be adjusted
218 * @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 *
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700222 * This routine is used to update scancode->keycopde mapping at given
223 * position.
David Härdemanb3074c02010-04-02 15:58:28 -0300224 */
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700225static unsigned int ir_update_mapping(struct input_dev *dev,
226 struct ir_scancode_table *rc_tab,
227 unsigned int index,
228 unsigned int new_keycode)
229{
230 int old_keycode = rc_tab->scan[index].keycode;
231 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",
236 index, rc_tab->scan[index].scancode);
237 rc_tab->len--;
238 memmove(&rc_tab->scan[index], &rc_tab->scan[index+ 1],
239 (rc_tab->len - index) * sizeof(struct ir_scancode));
240 } else {
241 IR_dprintk(1, "#%d: %s scan 0x%04x with key 0x%04x\n",
242 index,
243 old_keycode == KEY_RESERVED ? "New" : "Replacing",
244 rc_tab->scan[index].scancode, new_keycode);
245 rc_tab->scan[index].keycode = new_keycode;
246 __set_bit(new_keycode, dev->keybit);
247 }
248
249 if (old_keycode != KEY_RESERVED) {
250 /* A previous mapping was updated... */
251 __clear_bit(old_keycode, dev->keybit);
252 /* ... but another scancode might use the same keycode */
253 for (i = 0; i < rc_tab->len; i++) {
254 if (rc_tab->scan[i].keycode == old_keycode) {
255 __set_bit(old_keycode, dev->keybit);
256 break;
257 }
258 }
259
260 /* Possibly shrink the keytable, failure is not a problem */
261 ir_resize_table(rc_tab, GFP_ATOMIC);
262 }
263
264 return old_keycode;
265}
266
267/**
268 * ir_locate_scancode() - set a keycode in the scancode->keycode table
269 * @ir_dev: the struct ir_input_dev device descriptor
270 * @rc_tab: scancode table to be searched
271 * @scancode: the desired scancode
272 * @resize: controls whether we allowed to resize the table to
273 * accomodate not yet present scancodes
274 * @return: index of the mapping containing scancode in question
275 * or -1U in case of failure.
276 *
277 * This routine is used to locate given scancode in ir_scancode_table.
278 * If scancode is not yet present the routine will allocate a new slot
279 * for it.
280 */
281static unsigned int ir_establish_scancode(struct ir_input_dev *ir_dev,
282 struct ir_scancode_table *rc_tab,
283 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
293 * IR tables from other remotes. So,
294 */
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700295 if (ir_dev->props && ir_dev->props->scanmask)
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300296 scancode &= ir_dev->props->scanmask;
David Härdemanb3074c02010-04-02 15:58:28 -0300297
298 /* First check if we already have a mapping for this ir command */
299 for (i = 0; i < rc_tab->len; i++) {
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700300 if (rc_tab->scan[i].scancode == scancode)
301 return i;
302
David Härdemanb3074c02010-04-02 15:58:28 -0300303 /* Keytable is sorted from lowest to highest scancode */
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700304 if (rc_tab->scan[i].scancode >= scancode)
David Härdemanb3074c02010-04-02 15:58:28 -0300305 break;
David Härdemanb3074c02010-04-02 15:58:28 -0300306 }
307
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700308 /* No previous mapping found, we might need to grow the table */
309 if (rc_tab->size == rc_tab->len) {
310 if (!resize || ir_resize_table(rc_tab, GFP_ATOMIC))
311 return -1U;
312 }
David Härdemanb3074c02010-04-02 15:58:28 -0300313
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700314 /* i is the proper index to insert our new keycode */
315 if (i < rc_tab->len)
David Härdemanb3074c02010-04-02 15:58:28 -0300316 memmove(&rc_tab->scan[i + 1], &rc_tab->scan[i],
317 (rc_tab->len - i) * sizeof(struct ir_scancode));
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700318 rc_tab->scan[i].scancode = scancode;
319 rc_tab->scan[i].keycode = KEY_RESERVED;
320 rc_tab->len++;
David Härdemanb3074c02010-04-02 15:58:28 -0300321
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700322 return i;
David Härdemanb3074c02010-04-02 15:58:28 -0300323}
324
325/**
326 * ir_setkeycode() - set a keycode in the scancode->keycode table
327 * @dev: the struct input_dev device descriptor
328 * @scancode: the desired scancode
329 * @keycode: result
330 * @return: -EINVAL if the keycode could not be inserted, otherwise zero.
331 *
332 * This routine is used to handle evdev EVIOCSKEY ioctl.
333 */
334static int ir_setkeycode(struct input_dev *dev,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700335 const struct input_keymap_entry *ke,
336 unsigned int *old_keycode)
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300337{
David Härdemanb3074c02010-04-02 15:58:28 -0300338 struct ir_input_dev *ir_dev = input_get_drvdata(dev);
339 struct ir_scancode_table *rc_tab = &ir_dev->rc_tab;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700340 unsigned int index;
341 unsigned int scancode;
342 int retval;
343 unsigned long flags;
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300344
345 spin_lock_irqsave(&rc_tab->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700346
347 if (ke->flags & INPUT_KEYMAP_BY_INDEX) {
348 index = ke->index;
349 if (index >= rc_tab->len) {
350 retval = -EINVAL;
351 goto out;
352 }
353 } else {
354 retval = input_scancode_to_scalar(ke, &scancode);
355 if (retval)
356 goto out;
357
358 index = ir_establish_scancode(ir_dev, rc_tab, scancode, true);
359 if (index >= rc_tab->len) {
360 retval = -ENOMEM;
361 goto out;
362 }
363 }
364
365 *old_keycode = ir_update_mapping(dev, rc_tab, index, ke->keycode);
366
367out:
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300368 spin_unlock_irqrestore(&rc_tab->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700369 return retval;
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300370}
371
372/**
David Härdemanb3074c02010-04-02 15:58:28 -0300373 * ir_setkeytable() - sets several entries in the scancode->keycode table
374 * @dev: the struct input_dev device descriptor
375 * @to: the struct ir_scancode_table to copy entries to
376 * @from: the struct ir_scancode_table to copy entries from
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700377 * @return: -ENOMEM if all keycodes could not be inserted, otherwise zero.
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300378 *
David Härdemanb3074c02010-04-02 15:58:28 -0300379 * This routine is used to handle table initialization.
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300380 */
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700381static int ir_setkeytable(struct ir_input_dev *ir_dev,
David Härdemanb3074c02010-04-02 15:58:28 -0300382 const struct ir_scancode_table *from)
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300383{
David Härdemanb3074c02010-04-02 15:58:28 -0300384 struct ir_scancode_table *rc_tab = &ir_dev->rc_tab;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700385 unsigned int i, index;
386 int rc;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300387
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700388 rc = ir_create_table(&ir_dev->rc_tab,
389 from->name, from->ir_type, from->size);
390 if (rc)
391 return rc;
392
393 IR_dprintk(1, "Allocated space for %u keycode entries (%u bytes)\n",
394 rc_tab->size, rc_tab->alloc);
395
David Härdemanb3074c02010-04-02 15:58:28 -0300396 for (i = 0; i < from->size; i++) {
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700397 index = ir_establish_scancode(ir_dev, rc_tab,
398 from->scan[i].scancode, false);
399 if (index >= rc_tab->len) {
400 rc = -ENOMEM;
David Härdemanb3074c02010-04-02 15:58:28 -0300401 break;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700402 }
403
404 ir_update_mapping(ir_dev->input_dev, rc_tab, index,
405 from->scan[i].keycode);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300406 }
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700407
408 if (rc)
409 ir_free_table(rc_tab);
410
David Härdemanb3074c02010-04-02 15:58:28 -0300411 return rc;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300412}
413
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300414/**
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700415 * ir_lookup_by_scancode() - locate mapping by scancode
416 * @rc_tab: the &struct ir_scancode_table to search
417 * @scancode: scancode to look for in the table
418 * @return: index in the table, -1U if not found
419 *
420 * This routine performs binary search in RC keykeymap table for
421 * given scancode.
422 */
423static unsigned int ir_lookup_by_scancode(const struct ir_scancode_table *rc_tab,
424 unsigned int scancode)
425{
David Härdeman0d070252010-10-30 22:17:44 +0200426 int start = 0;
427 int end = rc_tab->len - 1;
428 int mid;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700429
430 while (start <= end) {
431 mid = (start + end) / 2;
432 if (rc_tab->scan[mid].scancode < scancode)
433 start = mid + 1;
434 else if (rc_tab->scan[mid].scancode > scancode)
435 end = mid - 1;
436 else
437 return mid;
438 }
439
440 return -1U;
441}
442
443/**
David Härdemanb3074c02010-04-02 15:58:28 -0300444 * ir_getkeycode() - get a keycode from the scancode->keycode table
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300445 * @dev: the struct input_dev device descriptor
446 * @scancode: the desired scancode
David Härdemanb3074c02010-04-02 15:58:28 -0300447 * @keycode: used to return the keycode, if found, or KEY_RESERVED
448 * @return: always returns zero.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300449 *
450 * This routine is used to handle evdev EVIOCGKEY ioctl.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300451 */
452static int ir_getkeycode(struct input_dev *dev,
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700453 struct input_keymap_entry *ke)
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300454{
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300455 struct ir_input_dev *ir_dev = input_get_drvdata(dev);
456 struct ir_scancode_table *rc_tab = &ir_dev->rc_tab;
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700457 struct ir_scancode *entry;
458 unsigned long flags;
459 unsigned int index;
460 unsigned int scancode;
461 int retval;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300462
Mauro Carvalho Chehabe97f4672009-12-04 17:17:47 -0300463 spin_lock_irqsave(&rc_tab->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700464
465 if (ke->flags & INPUT_KEYMAP_BY_INDEX) {
466 index = ke->index;
467 } else {
468 retval = input_scancode_to_scalar(ke, &scancode);
469 if (retval)
470 goto out;
471
472 index = ir_lookup_by_scancode(rc_tab, scancode);
Mauro Carvalho Chehabe97f4672009-12-04 17:17:47 -0300473 }
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700474
475 if (index >= rc_tab->len) {
476 if (!(ke->flags & INPUT_KEYMAP_BY_INDEX))
477 IR_dprintk(1, "unknown key for scancode 0x%04x\n",
478 scancode);
479 retval = -EINVAL;
480 goto out;
481 }
482
483 entry = &rc_tab->scan[index];
484
485 ke->index = index;
486 ke->keycode = entry->keycode;
487 ke->len = sizeof(entry->scancode);
488 memcpy(ke->scancode, &entry->scancode, sizeof(entry->scancode));
489
Dmitry Torokhov47c5ba52010-10-31 15:18:42 -0700490 retval = 0;
491
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700492out:
Mauro Carvalho Chehabe97f4672009-12-04 17:17:47 -0300493 spin_unlock_irqrestore(&rc_tab->lock, flags);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700494 return retval;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300495}
496
497/**
498 * ir_g_keycode_from_table() - gets the keycode that corresponds to a scancode
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300499 * @input_dev: the struct input_dev descriptor of the device
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300500 * @scancode: the scancode that we're seeking
501 *
502 * This routine is used by the input routines when a key is pressed at the
503 * IR. The scancode is received and needs to be converted into a keycode.
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300504 * If the key is not found, it returns KEY_RESERVED. Otherwise, returns the
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300505 * corresponding keycode from the table.
506 */
507u32 ir_g_keycode_from_table(struct input_dev *dev, u32 scancode)
508{
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700509 struct ir_input_dev *ir_dev = input_get_drvdata(dev);
510 struct ir_scancode_table *rc_tab = &ir_dev->rc_tab;
511 unsigned int keycode;
512 unsigned int index;
513 unsigned long flags;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300514
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700515 spin_lock_irqsave(&rc_tab->lock, flags);
516
517 index = ir_lookup_by_scancode(rc_tab, scancode);
518 keycode = index < rc_tab->len ?
519 rc_tab->scan[index].keycode : KEY_RESERVED;
520
521 spin_unlock_irqrestore(&rc_tab->lock, flags);
522
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300523 if (keycode != KEY_RESERVED)
524 IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n",
525 dev->name, scancode, keycode);
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700526
David Härdemanb3074c02010-04-02 15:58:28 -0300527 return keycode;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300528}
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300529EXPORT_SYMBOL_GPL(ir_g_keycode_from_table);
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300530
531/**
David Härdeman62c65032010-10-29 16:08:07 -0300532 * ir_do_keyup() - internal function to signal the release of a keypress
David Härdemana374fef2010-04-02 15:58:29 -0300533 * @ir: the struct ir_input_dev descriptor of the device
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300534 *
David Härdeman62c65032010-10-29 16:08:07 -0300535 * This function is used internally to release a keypress, it must be
536 * called with keylock held.
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300537 */
David Härdeman62c65032010-10-29 16:08:07 -0300538static void ir_do_keyup(struct ir_input_dev *ir)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300539{
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300540 if (!ir->keypressed)
541 return;
542
David Härdemana374fef2010-04-02 15:58:29 -0300543 IR_dprintk(1, "keyup key 0x%04x\n", ir->last_keycode);
544 input_report_key(ir->input_dev, ir->last_keycode, 0);
545 input_sync(ir->input_dev);
546 ir->keypressed = false;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300547}
David Härdeman62c65032010-10-29 16:08:07 -0300548
549/**
550 * ir_keyup() - generates input event to signal the release of a keypress
551 * @dev: the struct input_dev descriptor of the device
552 *
553 * This routine is used to signal that a key has been released on the
554 * remote control.
555 */
556void ir_keyup(struct input_dev *dev)
557{
558 unsigned long flags;
559 struct ir_input_dev *ir = input_get_drvdata(dev);
560
561 spin_lock_irqsave(&ir->keylock, flags);
562 ir_do_keyup(ir);
563 spin_unlock_irqrestore(&ir->keylock, flags);
564}
Jarod Wilsonee089402010-09-15 15:31:12 -0300565EXPORT_SYMBOL_GPL(ir_keyup);
David Härdemana374fef2010-04-02 15:58:29 -0300566
567/**
568 * ir_timer_keyup() - generates a keyup event after a timeout
569 * @cookie: a pointer to struct ir_input_dev passed to setup_timer()
570 *
571 * This routine will generate a keyup event some time after a keydown event
572 * is generated when no further activity has been detected.
573 */
574static void ir_timer_keyup(unsigned long cookie)
575{
576 struct ir_input_dev *ir = (struct ir_input_dev *)cookie;
577 unsigned long flags;
578
579 /*
580 * ir->keyup_jiffies is used to prevent a race condition if a
581 * hardware interrupt occurs at this point and the keyup timer
582 * event is moved further into the future as a result.
583 *
584 * The timer will then be reactivated and this function called
585 * again in the future. We need to exit gracefully in that case
586 * to allow the input subsystem to do its auto-repeat magic or
587 * a keyup event might follow immediately after the keydown.
588 */
589 spin_lock_irqsave(&ir->keylock, flags);
Maxim Levitskye0172fd2010-09-06 18:26:09 -0300590 if (time_is_before_eq_jiffies(ir->keyup_jiffies))
David Härdeman62c65032010-10-29 16:08:07 -0300591 ir_do_keyup(ir);
David Härdemana374fef2010-04-02 15:58:29 -0300592 spin_unlock_irqrestore(&ir->keylock, flags);
593}
594
595/**
596 * ir_repeat() - notifies the IR core that a key is still pressed
597 * @dev: the struct input_dev descriptor of the device
598 *
599 * This routine is used by IR decoders when a repeat message which does
600 * not include the necessary bits to reproduce the scancode has been
601 * received.
602 */
603void ir_repeat(struct input_dev *dev)
604{
605 unsigned long flags;
606 struct ir_input_dev *ir = input_get_drvdata(dev);
607
608 spin_lock_irqsave(&ir->keylock, flags);
609
Maxim Levitskyed4d3872010-07-31 11:59:24 -0300610 input_event(dev, EV_MSC, MSC_SCAN, ir->last_scancode);
611
David Härdemana374fef2010-04-02 15:58:29 -0300612 if (!ir->keypressed)
613 goto out;
614
615 ir->keyup_jiffies = jiffies + msecs_to_jiffies(IR_KEYPRESS_TIMEOUT);
616 mod_timer(&ir->timer_keyup, ir->keyup_jiffies);
617
618out:
619 spin_unlock_irqrestore(&ir->keylock, flags);
620}
621EXPORT_SYMBOL_GPL(ir_repeat);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300622
623/**
David Härdeman62c65032010-10-29 16:08:07 -0300624 * ir_do_keydown() - internal function to process a keypress
625 * @dev: the struct input_dev descriptor of the device
626 * @scancode: the scancode of the keypress
627 * @keycode: the keycode of the keypress
628 * @toggle: the toggle value of the keypress
629 *
630 * This function is used internally to register a keypress, it must be
631 * called with keylock held.
632 */
633static void ir_do_keydown(struct input_dev *dev, int scancode,
634 u32 keycode, u8 toggle)
635{
636 struct ir_input_dev *ir = input_get_drvdata(dev);
637
638 input_event(dev, EV_MSC, MSC_SCAN, scancode);
639
640 /* Repeat event? */
641 if (ir->keypressed &&
642 ir->last_scancode == scancode &&
643 ir->last_toggle == toggle)
644 return;
645
646 /* Release old keypress */
647 ir_do_keyup(ir);
648
649 ir->last_scancode = scancode;
650 ir->last_toggle = toggle;
651 ir->last_keycode = keycode;
652
653 if (keycode == KEY_RESERVED)
654 return;
655
656 /* Register a keypress */
657 ir->keypressed = true;
658 IR_dprintk(1, "%s: key down event, key 0x%04x, scancode 0x%04x\n",
659 dev->name, keycode, scancode);
660 input_report_key(dev, ir->last_keycode, 1);
661 input_sync(dev);
662}
663
664/**
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300665 * ir_keydown() - generates input event for a key press
David Härdemana374fef2010-04-02 15:58:29 -0300666 * @dev: the struct input_dev descriptor of the device
667 * @scancode: the scancode that we're seeking
668 * @toggle: the toggle value (protocol dependent, if the protocol doesn't
669 * support toggle values, this should be set to zero)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300670 *
671 * This routine is used by the input routines when a key is pressed at the
672 * IR. It gets the keycode for a scancode and reports an input event via
673 * input_report_key().
674 */
David Härdemana374fef2010-04-02 15:58:29 -0300675void ir_keydown(struct input_dev *dev, int scancode, u8 toggle)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300676{
David Härdemana374fef2010-04-02 15:58:29 -0300677 unsigned long flags;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300678 struct ir_input_dev *ir = input_get_drvdata(dev);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300679 u32 keycode = ir_g_keycode_from_table(dev, scancode);
680
David Härdemana374fef2010-04-02 15:58:29 -0300681 spin_lock_irqsave(&ir->keylock, flags);
David Härdeman62c65032010-10-29 16:08:07 -0300682 ir_do_keydown(dev, scancode, keycode, toggle);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300683
David Härdeman62c65032010-10-29 16:08:07 -0300684 if (ir->keypressed) {
685 ir->keyup_jiffies = jiffies + msecs_to_jiffies(IR_KEYPRESS_TIMEOUT);
686 mod_timer(&ir->timer_keyup, ir->keyup_jiffies);
687 }
David Härdemana374fef2010-04-02 15:58:29 -0300688 spin_unlock_irqrestore(&ir->keylock, flags);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300689}
690EXPORT_SYMBOL_GPL(ir_keydown);
691
David Härdeman62c65032010-10-29 16:08:07 -0300692/**
693 * ir_keydown_notimeout() - generates input event for a key press without
694 * an automatic keyup event at a later time
695 * @dev: the struct input_dev descriptor of the device
696 * @scancode: the scancode that we're seeking
697 * @toggle: the toggle value (protocol dependent, if the protocol doesn't
698 * support toggle values, this should be set to zero)
699 *
700 * This routine is used by the input routines when a key is pressed at the
701 * IR. It gets the keycode for a scancode and reports an input event via
702 * input_report_key(). The driver must manually call ir_keyup() at a later
703 * stage.
704 */
705void ir_keydown_notimeout(struct input_dev *dev, int scancode, u8 toggle)
706{
707 unsigned long flags;
708 struct ir_input_dev *ir = input_get_drvdata(dev);
709 u32 keycode = ir_g_keycode_from_table(dev, scancode);
710
711 spin_lock_irqsave(&ir->keylock, flags);
712 ir_do_keydown(dev, scancode, keycode, toggle);
713 spin_unlock_irqrestore(&ir->keylock, flags);
714}
715EXPORT_SYMBOL_GPL(ir_keydown_notimeout);
716
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -0300717static int ir_open(struct input_dev *input_dev)
718{
719 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
720
721 return ir_dev->props->open(ir_dev->props->priv);
722}
723
724static void ir_close(struct input_dev *input_dev)
725{
726 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
727
728 ir_dev->props->close(ir_dev->props->priv);
729}
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300730
731/**
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300732 * __ir_input_register() - sets the IR keycode table and add the handlers
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300733 * for keymap table get/set
734 * @input_dev: the struct input_dev descriptor of the device
735 * @rc_tab: the struct ir_scancode_table table of scancode/keymap
736 *
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300737 * This routine is used to initialize the input infrastructure
738 * to work with an IR.
739 * It will register the input/evdev interface for the device and
740 * register the syfs code for IR class
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300741 */
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300742int __ir_input_register(struct input_dev *input_dev,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -0300743 const struct ir_scancode_table *rc_tab,
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300744 struct ir_dev_props *props,
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300745 const char *driver_name)
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300746{
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300747 struct ir_input_dev *ir_dev;
David Härdemanb3074c02010-04-02 15:58:28 -0300748 int rc;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300749
750 if (rc_tab->scan == NULL || !rc_tab->size)
751 return -EINVAL;
752
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300753 ir_dev = kzalloc(sizeof(*ir_dev), GFP_KERNEL);
754 if (!ir_dev)
755 return -ENOMEM;
756
David Härdemanb3074c02010-04-02 15:58:28 -0300757 ir_dev->driver_name = kasprintf(GFP_KERNEL, "%s", driver_name);
758 if (!ir_dev->driver_name) {
759 rc = -ENOMEM;
760 goto out_dev;
Alexander Beregalov82311522010-01-09 13:51:14 -0300761 }
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300762
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700763 input_dev->getkeycode_new = ir_getkeycode;
764 input_dev->setkeycode_new = ir_setkeycode;
David Härdemanb3074c02010-04-02 15:58:28 -0300765 input_set_drvdata(input_dev, ir_dev);
David Härdemana374fef2010-04-02 15:58:29 -0300766 ir_dev->input_dev = input_dev;
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300767
David Härdemanb3074c02010-04-02 15:58:28 -0300768 spin_lock_init(&ir_dev->rc_tab.lock);
David Härdemana374fef2010-04-02 15:58:29 -0300769 spin_lock_init(&ir_dev->keylock);
770 setup_timer(&ir_dev->timer_keyup, ir_timer_keyup, (unsigned long)ir_dev);
771
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300772 if (props) {
773 ir_dev->props = props;
774 if (props->open)
775 input_dev->open = ir_open;
776 if (props->close)
777 input_dev->close = ir_close;
778 }
David Härdemanb3074c02010-04-02 15:58:28 -0300779
David Härdemanb3074c02010-04-02 15:58:28 -0300780 set_bit(EV_KEY, input_dev->evbit);
David Härdemana374fef2010-04-02 15:58:29 -0300781 set_bit(EV_REP, input_dev->evbit);
Maxim Levitskyed4d3872010-07-31 11:59:24 -0300782 set_bit(EV_MSC, input_dev->evbit);
783 set_bit(MSC_SCAN, input_dev->mscbit);
David Härdemana374fef2010-04-02 15:58:29 -0300784
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700785 rc = ir_setkeytable(ir_dev, rc_tab);
786 if (rc)
787 goto out_name;
David Härdemanb3074c02010-04-02 15:58:28 -0300788
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300789 rc = ir_register_class(input_dev);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300790 if (rc < 0)
David Härdemanb3074c02010-04-02 15:58:28 -0300791 goto out_table;
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300792
Igor M. Liplianin84b14f12010-05-26 23:31:21 -0300793 if (ir_dev->props)
794 if (ir_dev->props->driver_type == RC_DRIVER_IR_RAW) {
795 rc = ir_raw_event_register(input_dev);
796 if (rc < 0)
797 goto out_event;
798 }
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300799
Maxim Levitsky58b3dd42010-09-06 18:26:07 -0300800 rc = ir_register_input(input_dev);
Mauro Carvalho Chehab991369e2010-10-14 17:49:33 -0300801 if (rc < 0)
802 goto out_event;
Maxim Levitsky58b3dd42010-09-06 18:26:07 -0300803
Mauro Carvalho Chehab844a9e92010-08-01 17:19:29 -0300804 IR_dprintk(1, "Registered input device on %s for %s remote%s.\n",
805 driver_name, rc_tab->name,
Dan Carpenterede67a32010-08-06 03:31:00 -0300806 (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_IR_RAW) ?
807 " in raw mode" : "");
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300808
Mauro Carvalho Chehab04cab1312010-09-08 12:58:12 -0300809 /*
810 * Default delay of 250ms is too short for some protocols, expecially
811 * since the timeout is currently set to 250ms. Increase it to 500ms,
812 * to avoid wrong repetition of the keycodes.
813 */
814 input_dev->rep[REP_DELAY] = 500;
815
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300816 return 0;
817
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300818out_event:
819 ir_unregister_class(input_dev);
David Härdemanb3074c02010-04-02 15:58:28 -0300820out_table:
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700821 ir_free_table(&ir_dev->rc_tab);
David Härdemanb3074c02010-04-02 15:58:28 -0300822out_name:
823 kfree(ir_dev->driver_name);
824out_dev:
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300825 kfree(ir_dev);
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300826 return rc;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300827}
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300828EXPORT_SYMBOL_GPL(__ir_input_register);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300829
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300830/**
831 * ir_input_unregister() - unregisters IR and frees resources
832 * @input_dev: the struct input_dev descriptor of the device
833
834 * This routine is used to free memory and de-register interfaces.
835 */
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300836void ir_input_unregister(struct input_dev *input_dev)
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300837{
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300838 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300839
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300840 if (!ir_dev)
Mauro Carvalho Chehab05395a32009-12-06 08:32:49 -0300841 return;
842
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300843 IR_dprintk(1, "Freed keycode table\n");
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300844
David Härdemana374fef2010-04-02 15:58:29 -0300845 del_timer_sync(&ir_dev->timer_keyup);
Igor M. Liplianin84b14f12010-05-26 23:31:21 -0300846 if (ir_dev->props)
847 if (ir_dev->props->driver_type == RC_DRIVER_IR_RAW)
848 ir_raw_event_unregister(input_dev);
849
Dmitry Torokhov9f470092010-09-09 21:59:11 -0700850 ir_free_table(&ir_dev->rc_tab);
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300851
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300852 ir_unregister_class(input_dev);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300853
David Härdemanb3074c02010-04-02 15:58:28 -0300854 kfree(ir_dev->driver_name);
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300855 kfree(ir_dev);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300856}
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300857EXPORT_SYMBOL_GPL(ir_input_unregister);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300858
Mauro Carvalho Chehabbc2a6c52010-11-09 23:18:24 -0300859/* class for /sys/class/rc */
860static char *ir_devnode(struct device *dev, mode_t *mode)
861{
862 return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev));
863}
864
865static struct class ir_input_class = {
866 .name = "rc",
867 .devnode = ir_devnode,
868};
869
870static struct {
871 u64 type;
872 char *name;
873} proto_names[] = {
874 { IR_TYPE_UNKNOWN, "unknown" },
875 { IR_TYPE_RC5, "rc-5" },
876 { IR_TYPE_NEC, "nec" },
877 { IR_TYPE_RC6, "rc-6" },
878 { IR_TYPE_JVC, "jvc" },
879 { IR_TYPE_SONY, "sony" },
880 { IR_TYPE_RC5_SZ, "rc-5-sz" },
881 { IR_TYPE_LIRC, "lirc" },
882};
883
884#define PROTO_NONE "none"
885
886/**
887 * show_protocols() - shows the current IR protocol(s)
888 * @d: the device descriptor
889 * @mattr: the device attribute struct (unused)
890 * @buf: a pointer to the output buffer
891 *
892 * This routine is a callback routine for input read the IR protocol type(s).
893 * it is trigged by reading /sys/class/rc/rc?/protocols.
894 * It returns the protocol names of supported protocols.
895 * Enabled protocols are printed in brackets.
896 */
897static ssize_t show_protocols(struct device *d,
898 struct device_attribute *mattr, char *buf)
899{
900 struct ir_input_dev *ir_dev = dev_get_drvdata(d);
901 u64 allowed, enabled;
902 char *tmp = buf;
903 int i;
904
905 /* Device is being removed */
906 if (!ir_dev)
907 return -EINVAL;
908
909 if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE) {
910 enabled = ir_dev->rc_tab.ir_type;
911 allowed = ir_dev->props->allowed_protos;
912 } else if (ir_dev->raw) {
913 enabled = ir_dev->raw->enabled_protocols;
914 allowed = ir_raw_get_allowed_protocols();
915 } else
916 return sprintf(tmp, "[builtin]\n");
917
918 IR_dprintk(1, "allowed - 0x%llx, enabled - 0x%llx\n",
919 (long long)allowed,
920 (long long)enabled);
921
922 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
923 if (allowed & enabled & proto_names[i].type)
924 tmp += sprintf(tmp, "[%s] ", proto_names[i].name);
925 else if (allowed & proto_names[i].type)
926 tmp += sprintf(tmp, "%s ", proto_names[i].name);
927 }
928
929 if (tmp != buf)
930 tmp--;
931 *tmp = '\n';
932 return tmp + 1 - buf;
933}
934
935/**
936 * store_protocols() - changes the current IR protocol(s)
937 * @d: the device descriptor
938 * @mattr: the device attribute struct (unused)
939 * @buf: a pointer to the input buffer
940 * @len: length of the input buffer
941 *
942 * This routine is a callback routine for changing the IR protocol type.
943 * It is trigged by writing to /sys/class/rc/rc?/protocols.
944 * Writing "+proto" will add a protocol to the list of enabled protocols.
945 * Writing "-proto" will remove a protocol from the list of enabled protocols.
946 * Writing "proto" will enable only "proto".
947 * Writing "none" will disable all protocols.
948 * Returns -EINVAL if an invalid protocol combination or unknown protocol name
949 * is used, otherwise @len.
950 */
951static ssize_t store_protocols(struct device *d,
952 struct device_attribute *mattr,
953 const char *data,
954 size_t len)
955{
956 struct ir_input_dev *ir_dev = dev_get_drvdata(d);
957 bool enable, disable;
958 const char *tmp;
959 u64 type;
960 u64 mask;
961 int rc, i, count = 0;
962 unsigned long flags;
963
964 /* Device is being removed */
965 if (!ir_dev)
966 return -EINVAL;
967
968 if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE)
969 type = ir_dev->rc_tab.ir_type;
970 else if (ir_dev->raw)
971 type = ir_dev->raw->enabled_protocols;
972 else {
973 IR_dprintk(1, "Protocol switching not supported\n");
974 return -EINVAL;
975 }
976
977 while ((tmp = strsep((char **) &data, " \n")) != NULL) {
978 if (!*tmp)
979 break;
980
981 if (*tmp == '+') {
982 enable = true;
983 disable = false;
984 tmp++;
985 } else if (*tmp == '-') {
986 enable = false;
987 disable = true;
988 tmp++;
989 } else {
990 enable = false;
991 disable = false;
992 }
993
994 if (!enable && !disable && !strncasecmp(tmp, PROTO_NONE, sizeof(PROTO_NONE))) {
995 tmp += sizeof(PROTO_NONE);
996 mask = 0;
997 count++;
998 } else {
999 for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
1000 if (!strncasecmp(tmp, proto_names[i].name, strlen(proto_names[i].name))) {
1001 tmp += strlen(proto_names[i].name);
1002 mask = proto_names[i].type;
1003 break;
1004 }
1005 }
1006 if (i == ARRAY_SIZE(proto_names)) {
1007 IR_dprintk(1, "Unknown protocol: '%s'\n", tmp);
1008 return -EINVAL;
1009 }
1010 count++;
1011 }
1012
1013 if (enable)
1014 type |= mask;
1015 else if (disable)
1016 type &= ~mask;
1017 else
1018 type = mask;
1019 }
1020
1021 if (!count) {
1022 IR_dprintk(1, "Protocol not specified\n");
1023 return -EINVAL;
1024 }
1025
1026 if (ir_dev->props && ir_dev->props->change_protocol) {
1027 rc = ir_dev->props->change_protocol(ir_dev->props->priv,
1028 type);
1029 if (rc < 0) {
1030 IR_dprintk(1, "Error setting protocols to 0x%llx\n",
1031 (long long)type);
1032 return -EINVAL;
1033 }
1034 }
1035
1036 if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE) {
1037 spin_lock_irqsave(&ir_dev->rc_tab.lock, flags);
1038 ir_dev->rc_tab.ir_type = type;
1039 spin_unlock_irqrestore(&ir_dev->rc_tab.lock, flags);
1040 } else {
1041 ir_dev->raw->enabled_protocols = type;
1042 }
1043
1044 IR_dprintk(1, "Current protocol(s): 0x%llx\n",
1045 (long long)type);
1046
1047 return len;
1048}
1049
1050#define ADD_HOTPLUG_VAR(fmt, val...) \
1051 do { \
1052 int err = add_uevent_var(env, fmt, val); \
1053 if (err) \
1054 return err; \
1055 } while (0)
1056
1057static int rc_dev_uevent(struct device *device, struct kobj_uevent_env *env)
1058{
1059 struct ir_input_dev *ir_dev = dev_get_drvdata(device);
1060
1061 if (ir_dev->rc_tab.name)
1062 ADD_HOTPLUG_VAR("NAME=%s", ir_dev->rc_tab.name);
1063 if (ir_dev->driver_name)
1064 ADD_HOTPLUG_VAR("DRV_NAME=%s", ir_dev->driver_name);
1065
1066 return 0;
1067}
1068
1069/*
1070 * Static device attribute struct with the sysfs attributes for IR's
1071 */
1072static DEVICE_ATTR(protocols, S_IRUGO | S_IWUSR,
1073 show_protocols, store_protocols);
1074
1075static struct attribute *rc_dev_attrs[] = {
1076 &dev_attr_protocols.attr,
1077 NULL,
1078};
1079
1080static struct attribute_group rc_dev_attr_grp = {
1081 .attrs = rc_dev_attrs,
1082};
1083
1084static const struct attribute_group *rc_dev_attr_groups[] = {
1085 &rc_dev_attr_grp,
1086 NULL
1087};
1088
1089static struct device_type rc_dev_type = {
1090 .groups = rc_dev_attr_groups,
1091 .uevent = rc_dev_uevent,
1092};
1093
1094/**
1095 * ir_register_class() - creates the sysfs for /sys/class/rc/rc?
1096 * @input_dev: the struct input_dev descriptor of the device
1097 *
1098 * This routine is used to register the syfs code for IR class
1099 */
1100int ir_register_class(struct input_dev *input_dev)
1101{
1102 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
1103 int devno = find_first_zero_bit(&ir_core_dev_number,
1104 IRRCV_NUM_DEVICES);
1105
1106 if (unlikely(devno < 0))
1107 return devno;
1108
1109 ir_dev->dev.type = &rc_dev_type;
1110 ir_dev->devno = devno;
1111
1112 ir_dev->dev.class = &ir_input_class;
1113 ir_dev->dev.parent = input_dev->dev.parent;
1114 input_dev->dev.parent = &ir_dev->dev;
1115 dev_set_name(&ir_dev->dev, "rc%d", devno);
1116 dev_set_drvdata(&ir_dev->dev, ir_dev);
1117 return device_register(&ir_dev->dev);
1118};
1119
1120/**
1121 * ir_register_input - registers ir input device with input subsystem
1122 * @input_dev: the struct input_dev descriptor of the device
1123 */
1124
1125int ir_register_input(struct input_dev *input_dev)
1126{
1127 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
1128 int rc;
1129 const char *path;
1130
1131
1132 rc = input_register_device(input_dev);
1133 if (rc < 0) {
1134 device_del(&ir_dev->dev);
1135 return rc;
1136 }
1137
1138 __module_get(THIS_MODULE);
1139
1140 path = kobject_get_path(&ir_dev->dev.kobj, GFP_KERNEL);
1141 printk(KERN_INFO "%s: %s as %s\n",
1142 dev_name(&ir_dev->dev),
1143 input_dev->name ? input_dev->name : "Unspecified device",
1144 path ? path : "N/A");
1145 kfree(path);
1146
1147 set_bit(ir_dev->devno, &ir_core_dev_number);
1148 return 0;
1149}
1150
1151/**
1152 * ir_unregister_class() - removes the sysfs for sysfs for
1153 * /sys/class/rc/rc?
1154 * @input_dev: the struct input_dev descriptor of the device
1155 *
1156 * This routine is used to unregister the syfs code for IR class
1157 */
1158void ir_unregister_class(struct input_dev *input_dev)
1159{
1160 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
1161
1162 input_set_drvdata(input_dev, NULL);
1163 clear_bit(ir_dev->devno, &ir_core_dev_number);
1164 input_unregister_device(input_dev);
1165 device_del(&ir_dev->dev);
1166
1167 module_put(THIS_MODULE);
1168}
1169
1170/*
1171 * Init/exit code for the module. Basically, creates/removes /sys/class/rc
1172 */
1173
1174static int __init ir_core_init(void)
1175{
1176 int rc = class_register(&ir_input_class);
1177 if (rc) {
1178 printk(KERN_ERR "ir_core: unable to register rc class\n");
1179 return rc;
1180 }
1181
1182 /* Initialize/load the decoders/keymap code that will be used */
1183 ir_raw_init();
1184 ir_rcmap_init();
1185
1186 return 0;
1187}
1188
1189static void __exit ir_core_exit(void)
1190{
1191 class_unregister(&ir_input_class);
1192 ir_rcmap_cleanup();
1193}
1194
1195module_init(ir_core_init);
1196module_exit(ir_core_exit);
1197
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03001198int ir_core_debug; /* ir_debug level (0,1,2) */
1199EXPORT_SYMBOL_GPL(ir_core_debug);
1200module_param_named(debug, ir_core_debug, int, 0644);
1201
1202MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
1203MODULE_LICENSE("GPL");