blob: 9374a006f43d6c82ba276e3d35f8261aa16a4108 [file] [log] [blame]
David Härdemandd3f6162010-04-15 18:46:35 -03001/* ir-keytable.c - handle IR scancode->keycode tables
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -03002 *
3 * Copyright (C) 2009 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 Chehabef53a112009-11-27 22:01:23 -030015
Mauro Carvalho Chehab882ead32009-12-29 10:37:38 -030016#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -030018#include "ir-core-priv.h"
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -030019
David Härdemanb3074c02010-04-02 15:58:28 -030020/* Sizes are in bytes, 256 bytes allows for 32 entries on x64 */
21#define IR_TAB_MIN_SIZE 256
22#define IR_TAB_MAX_SIZE 8192
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -030023
David Härdemana374fef2010-04-02 15:58:29 -030024/* FIXME: IR_KEYPRESS_TIMEOUT should be protocol specific */
25#define IR_KEYPRESS_TIMEOUT 250
26
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -030027/**
David Härdemanb3074c02010-04-02 15:58:28 -030028 * ir_resize_table() - resizes a scancode table if necessary
29 * @rc_tab: the ir_scancode_table to resize
30 * @return: zero on success or a negative error code
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -030031 *
David Härdemanb3074c02010-04-02 15:58:28 -030032 * This routine will shrink the ir_scancode_table if it has lots of
33 * unused entries and grow it if it is full.
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -030034 */
David Härdemanb3074c02010-04-02 15:58:28 -030035static int ir_resize_table(struct ir_scancode_table *rc_tab)
36{
37 unsigned int oldalloc = rc_tab->alloc;
38 unsigned int newalloc = oldalloc;
39 struct ir_scancode *oldscan = rc_tab->scan;
40 struct ir_scancode *newscan;
41
42 if (rc_tab->size == rc_tab->len) {
43 /* All entries in use -> grow keytable */
44 if (rc_tab->alloc >= IR_TAB_MAX_SIZE)
45 return -ENOMEM;
46
47 newalloc *= 2;
48 IR_dprintk(1, "Growing table to %u bytes\n", newalloc);
49 }
50
51 if ((rc_tab->len * 3 < rc_tab->size) && (oldalloc > IR_TAB_MIN_SIZE)) {
52 /* Less than 1/3 of entries in use -> shrink keytable */
53 newalloc /= 2;
54 IR_dprintk(1, "Shrinking table to %u bytes\n", newalloc);
55 }
56
57 if (newalloc == oldalloc)
58 return 0;
59
60 newscan = kmalloc(newalloc, GFP_ATOMIC);
61 if (!newscan) {
62 IR_dprintk(1, "Failed to kmalloc %u bytes\n", newalloc);
63 return -ENOMEM;
64 }
65
66 memcpy(newscan, rc_tab->scan, rc_tab->len * sizeof(struct ir_scancode));
67 rc_tab->scan = newscan;
68 rc_tab->alloc = newalloc;
69 rc_tab->size = rc_tab->alloc / sizeof(struct ir_scancode);
70 kfree(oldscan);
71 return 0;
72}
73
74/**
75 * ir_do_setkeycode() - internal function to set a keycode in the
76 * scancode->keycode table
77 * @dev: the struct input_dev device descriptor
78 * @rc_tab: the struct ir_scancode_table to set the keycode in
79 * @scancode: the scancode for the ir command
80 * @keycode: the keycode for the ir command
Mauro Carvalho Chehab42880cd2010-05-18 02:06:06 -030081 * @resize: whether the keytable may be shrunk
David Härdemanb3074c02010-04-02 15:58:28 -030082 * @return: -EINVAL if the keycode could not be inserted, otherwise zero.
83 *
84 * This routine is used internally to manipulate the scancode->keycode table.
85 * The caller has to hold @rc_tab->lock.
86 */
87static int ir_do_setkeycode(struct input_dev *dev,
88 struct ir_scancode_table *rc_tab,
Mauro Carvalho Chehab42880cd2010-05-18 02:06:06 -030089 unsigned scancode, unsigned keycode,
90 bool resize)
David Härdemanb3074c02010-04-02 15:58:28 -030091{
92 unsigned int i;
93 int old_keycode = KEY_RESERVED;
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -030094 struct ir_input_dev *ir_dev = input_get_drvdata(dev);
95
96 /*
97 * Unfortunately, some hardware-based IR decoders don't provide
98 * all bits for the complete IR code. In general, they provide only
99 * the command part of the IR code. Yet, as it is possible to replace
100 * the provided IR with another one, it is needed to allow loading
101 * IR tables from other remotes. So,
102 */
103 if (ir_dev->props && ir_dev->props->scanmask) {
104 scancode &= ir_dev->props->scanmask;
105 }
David Härdemanb3074c02010-04-02 15:58:28 -0300106
107 /* First check if we already have a mapping for this ir command */
108 for (i = 0; i < rc_tab->len; i++) {
109 /* Keytable is sorted from lowest to highest scancode */
110 if (rc_tab->scan[i].scancode > scancode)
111 break;
112 else if (rc_tab->scan[i].scancode < scancode)
113 continue;
114
115 old_keycode = rc_tab->scan[i].keycode;
116 rc_tab->scan[i].keycode = keycode;
117
118 /* Did the user wish to remove the mapping? */
119 if (keycode == KEY_RESERVED || keycode == KEY_UNKNOWN) {
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300120 IR_dprintk(1, "#%d: Deleting scan 0x%04x\n",
121 i, scancode);
David Härdemanb3074c02010-04-02 15:58:28 -0300122 rc_tab->len--;
123 memmove(&rc_tab->scan[i], &rc_tab->scan[i + 1],
124 (rc_tab->len - i) * sizeof(struct ir_scancode));
125 }
126
127 /* Possibly shrink the keytable, failure is not a problem */
128 ir_resize_table(rc_tab);
129 break;
130 }
131
Mauro Carvalho Chehab09bd00e2010-04-11 00:26:23 -0300132 if (old_keycode == KEY_RESERVED && keycode != KEY_RESERVED) {
David Härdemanb3074c02010-04-02 15:58:28 -0300133 /* No previous mapping found, we might need to grow the table */
Mauro Carvalho Chehab42880cd2010-05-18 02:06:06 -0300134 if (resize && ir_resize_table(rc_tab))
David Härdemanb3074c02010-04-02 15:58:28 -0300135 return -ENOMEM;
136
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300137 IR_dprintk(1, "#%d: New scan 0x%04x with key 0x%04x\n",
138 i, scancode, keycode);
139
David Härdemanb3074c02010-04-02 15:58:28 -0300140 /* i is the proper index to insert our new keycode */
141 memmove(&rc_tab->scan[i + 1], &rc_tab->scan[i],
142 (rc_tab->len - i) * sizeof(struct ir_scancode));
143 rc_tab->scan[i].scancode = scancode;
144 rc_tab->scan[i].keycode = keycode;
145 rc_tab->len++;
146 set_bit(keycode, dev->keybit);
147 } else {
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300148 IR_dprintk(1, "#%d: Replacing scan 0x%04x with key 0x%04x\n",
149 i, scancode, keycode);
David Härdemanb3074c02010-04-02 15:58:28 -0300150 /* A previous mapping was updated... */
151 clear_bit(old_keycode, dev->keybit);
152 /* ...but another scancode might use the same keycode */
153 for (i = 0; i < rc_tab->len; i++) {
154 if (rc_tab->scan[i].keycode == old_keycode) {
155 set_bit(old_keycode, dev->keybit);
156 break;
157 }
158 }
159 }
160
161 return 0;
162}
163
164/**
165 * ir_setkeycode() - set a keycode in the scancode->keycode table
166 * @dev: the struct input_dev device descriptor
167 * @scancode: the desired scancode
168 * @keycode: result
169 * @return: -EINVAL if the keycode could not be inserted, otherwise zero.
170 *
171 * This routine is used to handle evdev EVIOCSKEY ioctl.
172 */
173static int ir_setkeycode(struct input_dev *dev,
174 unsigned int scancode, unsigned int keycode)
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300175{
176 int rc;
177 unsigned long flags;
David Härdemanb3074c02010-04-02 15:58:28 -0300178 struct ir_input_dev *ir_dev = input_get_drvdata(dev);
179 struct ir_scancode_table *rc_tab = &ir_dev->rc_tab;
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300180
181 spin_lock_irqsave(&rc_tab->lock, flags);
Mauro Carvalho Chehab42880cd2010-05-18 02:06:06 -0300182 rc = ir_do_setkeycode(dev, rc_tab, scancode, keycode, true);
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300183 spin_unlock_irqrestore(&rc_tab->lock, flags);
184 return rc;
185}
186
187/**
David Härdemanb3074c02010-04-02 15:58:28 -0300188 * ir_setkeytable() - sets several entries in the scancode->keycode table
189 * @dev: the struct input_dev device descriptor
190 * @to: the struct ir_scancode_table to copy entries to
191 * @from: the struct ir_scancode_table to copy entries from
192 * @return: -EINVAL if all keycodes could not be inserted, otherwise zero.
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300193 *
David Härdemanb3074c02010-04-02 15:58:28 -0300194 * This routine is used to handle table initialization.
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300195 */
David Härdemanb3074c02010-04-02 15:58:28 -0300196static int ir_setkeytable(struct input_dev *dev,
197 struct ir_scancode_table *to,
198 const struct ir_scancode_table *from)
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300199{
David Härdemanb3074c02010-04-02 15:58:28 -0300200 struct ir_input_dev *ir_dev = input_get_drvdata(dev);
201 struct ir_scancode_table *rc_tab = &ir_dev->rc_tab;
202 unsigned long flags;
203 unsigned int i;
204 int rc = 0;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300205
David Härdemanb3074c02010-04-02 15:58:28 -0300206 spin_lock_irqsave(&rc_tab->lock, flags);
207 for (i = 0; i < from->size; i++) {
208 rc = ir_do_setkeycode(dev, to, from->scan[i].scancode,
Mauro Carvalho Chehab42880cd2010-05-18 02:06:06 -0300209 from->scan[i].keycode, false);
David Härdemanb3074c02010-04-02 15:58:28 -0300210 if (rc)
211 break;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300212 }
David Härdemanb3074c02010-04-02 15:58:28 -0300213 spin_unlock_irqrestore(&rc_tab->lock, flags);
214 return rc;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300215}
216
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300217/**
David Härdemanb3074c02010-04-02 15:58:28 -0300218 * ir_getkeycode() - get a keycode from the scancode->keycode table
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300219 * @dev: the struct input_dev device descriptor
220 * @scancode: the desired scancode
David Härdemanb3074c02010-04-02 15:58:28 -0300221 * @keycode: used to return the keycode, if found, or KEY_RESERVED
222 * @return: always returns zero.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300223 *
224 * This routine is used to handle evdev EVIOCGKEY ioctl.
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300225 */
226static int ir_getkeycode(struct input_dev *dev,
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800227 unsigned int scancode, unsigned int *keycode)
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300228{
David Härdemanb3074c02010-04-02 15:58:28 -0300229 int start, end, mid;
230 unsigned long flags;
231 int key = KEY_RESERVED;
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300232 struct ir_input_dev *ir_dev = input_get_drvdata(dev);
233 struct ir_scancode_table *rc_tab = &ir_dev->rc_tab;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300234
Mauro Carvalho Chehabe97f4672009-12-04 17:17:47 -0300235 spin_lock_irqsave(&rc_tab->lock, flags);
David Härdemanb3074c02010-04-02 15:58:28 -0300236 start = 0;
237 end = rc_tab->len - 1;
238 while (start <= end) {
239 mid = (start + end) / 2;
240 if (rc_tab->scan[mid].scancode < scancode)
241 start = mid + 1;
242 else if (rc_tab->scan[mid].scancode > scancode)
243 end = mid - 1;
244 else {
245 key = rc_tab->scan[mid].keycode;
246 break;
247 }
Mauro Carvalho Chehabe97f4672009-12-04 17:17:47 -0300248 }
Mauro Carvalho Chehabe97f4672009-12-04 17:17:47 -0300249 spin_unlock_irqrestore(&rc_tab->lock, flags);
250
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300251 if (key == KEY_RESERVED)
252 IR_dprintk(1, "unknown key for scancode 0x%04x\n",
253 scancode);
254
David Härdemanb3074c02010-04-02 15:58:28 -0300255 *keycode = key;
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300256 return 0;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300257}
258
259/**
260 * ir_g_keycode_from_table() - gets the keycode that corresponds to a scancode
Mauro Carvalho Chehab7fee03e2009-12-02 15:56:47 -0300261 * @input_dev: the struct input_dev descriptor of the device
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300262 * @scancode: the scancode that we're seeking
263 *
264 * This routine is used by the input routines when a key is pressed at the
265 * IR. The scancode is received and needs to be converted into a keycode.
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300266 * If the key is not found, it returns KEY_RESERVED. Otherwise, returns the
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300267 * corresponding keycode from the table.
268 */
269u32 ir_g_keycode_from_table(struct input_dev *dev, u32 scancode)
270{
David Härdemanb3074c02010-04-02 15:58:28 -0300271 int keycode;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300272
David Härdemanb3074c02010-04-02 15:58:28 -0300273 ir_getkeycode(dev, scancode, &keycode);
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300274 if (keycode != KEY_RESERVED)
275 IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n",
276 dev->name, scancode, keycode);
David Härdemanb3074c02010-04-02 15:58:28 -0300277 return keycode;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300278}
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300279EXPORT_SYMBOL_GPL(ir_g_keycode_from_table);
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300280
281/**
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300282 * ir_keyup() - generates input event to cleanup a key press
David Härdemana374fef2010-04-02 15:58:29 -0300283 * @ir: the struct ir_input_dev descriptor of the device
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300284 *
David Härdemana374fef2010-04-02 15:58:29 -0300285 * This routine is used to signal that a key has been released on the
286 * remote control. It reports a keyup input event via input_report_key().
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300287 */
David Härdemana374fef2010-04-02 15:58:29 -0300288static void ir_keyup(struct ir_input_dev *ir)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300289{
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300290 if (!ir->keypressed)
291 return;
292
David Härdemana374fef2010-04-02 15:58:29 -0300293 IR_dprintk(1, "keyup key 0x%04x\n", ir->last_keycode);
294 input_report_key(ir->input_dev, ir->last_keycode, 0);
295 input_sync(ir->input_dev);
296 ir->keypressed = false;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300297}
David Härdemana374fef2010-04-02 15:58:29 -0300298
299/**
300 * ir_timer_keyup() - generates a keyup event after a timeout
301 * @cookie: a pointer to struct ir_input_dev passed to setup_timer()
302 *
303 * This routine will generate a keyup event some time after a keydown event
304 * is generated when no further activity has been detected.
305 */
306static void ir_timer_keyup(unsigned long cookie)
307{
308 struct ir_input_dev *ir = (struct ir_input_dev *)cookie;
309 unsigned long flags;
310
311 /*
312 * ir->keyup_jiffies is used to prevent a race condition if a
313 * hardware interrupt occurs at this point and the keyup timer
314 * event is moved further into the future as a result.
315 *
316 * The timer will then be reactivated and this function called
317 * again in the future. We need to exit gracefully in that case
318 * to allow the input subsystem to do its auto-repeat magic or
319 * a keyup event might follow immediately after the keydown.
320 */
321 spin_lock_irqsave(&ir->keylock, flags);
322 if (time_is_after_eq_jiffies(ir->keyup_jiffies))
323 ir_keyup(ir);
324 spin_unlock_irqrestore(&ir->keylock, flags);
325}
326
327/**
328 * ir_repeat() - notifies the IR core that a key is still pressed
329 * @dev: the struct input_dev descriptor of the device
330 *
331 * This routine is used by IR decoders when a repeat message which does
332 * not include the necessary bits to reproduce the scancode has been
333 * received.
334 */
335void ir_repeat(struct input_dev *dev)
336{
337 unsigned long flags;
338 struct ir_input_dev *ir = input_get_drvdata(dev);
339
340 spin_lock_irqsave(&ir->keylock, flags);
341
342 if (!ir->keypressed)
343 goto out;
344
345 ir->keyup_jiffies = jiffies + msecs_to_jiffies(IR_KEYPRESS_TIMEOUT);
346 mod_timer(&ir->timer_keyup, ir->keyup_jiffies);
347
348out:
349 spin_unlock_irqrestore(&ir->keylock, flags);
350}
351EXPORT_SYMBOL_GPL(ir_repeat);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300352
353/**
354 * ir_keydown() - generates input event for a key press
David Härdemana374fef2010-04-02 15:58:29 -0300355 * @dev: the struct input_dev descriptor of the device
356 * @scancode: the scancode that we're seeking
357 * @toggle: the toggle value (protocol dependent, if the protocol doesn't
358 * support toggle values, this should be set to zero)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300359 *
360 * This routine is used by the input routines when a key is pressed at the
361 * IR. It gets the keycode for a scancode and reports an input event via
362 * input_report_key().
363 */
David Härdemana374fef2010-04-02 15:58:29 -0300364void ir_keydown(struct input_dev *dev, int scancode, u8 toggle)
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300365{
David Härdemana374fef2010-04-02 15:58:29 -0300366 unsigned long flags;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300367 struct ir_input_dev *ir = input_get_drvdata(dev);
368
369 u32 keycode = ir_g_keycode_from_table(dev, scancode);
370
David Härdemana374fef2010-04-02 15:58:29 -0300371 spin_lock_irqsave(&ir->keylock, flags);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300372
David Härdemana374fef2010-04-02 15:58:29 -0300373 /* Repeat event? */
374 if (ir->keypressed &&
375 ir->last_scancode == scancode &&
376 ir->last_toggle == toggle)
377 goto set_timer;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300378
David Härdemana374fef2010-04-02 15:58:29 -0300379 /* Release old keypress */
380 ir_keyup(ir);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300381
David Härdemana374fef2010-04-02 15:58:29 -0300382 ir->last_scancode = scancode;
383 ir->last_toggle = toggle;
384 ir->last_keycode = keycode;
385
386 if (keycode == KEY_RESERVED)
387 goto out;
388
389 /* Register a keypress */
390 ir->keypressed = true;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300391 IR_dprintk(1, "%s: key down event, key 0x%04x, scancode 0x%04x\n",
David Härdemana374fef2010-04-02 15:58:29 -0300392 dev->name, keycode, scancode);
393 input_report_key(dev, ir->last_keycode, 1);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300394 input_sync(dev);
395
David Härdemana374fef2010-04-02 15:58:29 -0300396set_timer:
397 ir->keyup_jiffies = jiffies + msecs_to_jiffies(IR_KEYPRESS_TIMEOUT);
398 mod_timer(&ir->timer_keyup, ir->keyup_jiffies);
399out:
400 spin_unlock_irqrestore(&ir->keylock, flags);
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300401}
402EXPORT_SYMBOL_GPL(ir_keydown);
403
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -0300404static int ir_open(struct input_dev *input_dev)
405{
406 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
407
408 return ir_dev->props->open(ir_dev->props->priv);
409}
410
411static void ir_close(struct input_dev *input_dev)
412{
413 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
414
415 ir_dev->props->close(ir_dev->props->priv);
416}
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300417
418/**
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300419 * __ir_input_register() - sets the IR keycode table and add the handlers
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300420 * for keymap table get/set
421 * @input_dev: the struct input_dev descriptor of the device
422 * @rc_tab: the struct ir_scancode_table table of scancode/keymap
423 *
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300424 * This routine is used to initialize the input infrastructure
425 * to work with an IR.
426 * It will register the input/evdev interface for the device and
427 * register the syfs code for IR class
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300428 */
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300429int __ir_input_register(struct input_dev *input_dev,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -0300430 const struct ir_scancode_table *rc_tab,
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300431 const struct ir_dev_props *props,
432 const char *driver_name)
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300433{
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300434 struct ir_input_dev *ir_dev;
David Härdemanb3074c02010-04-02 15:58:28 -0300435 int rc;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300436
437 if (rc_tab->scan == NULL || !rc_tab->size)
438 return -EINVAL;
439
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300440 ir_dev = kzalloc(sizeof(*ir_dev), GFP_KERNEL);
441 if (!ir_dev)
442 return -ENOMEM;
443
David Härdemanb3074c02010-04-02 15:58:28 -0300444 ir_dev->driver_name = kasprintf(GFP_KERNEL, "%s", driver_name);
445 if (!ir_dev->driver_name) {
446 rc = -ENOMEM;
447 goto out_dev;
Alexander Beregalov82311522010-01-09 13:51:14 -0300448 }
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300449
David Härdemanb3074c02010-04-02 15:58:28 -0300450 input_dev->getkeycode = ir_getkeycode;
451 input_dev->setkeycode = ir_setkeycode;
452 input_set_drvdata(input_dev, ir_dev);
David Härdemana374fef2010-04-02 15:58:29 -0300453 ir_dev->input_dev = input_dev;
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300454
David Härdemanb3074c02010-04-02 15:58:28 -0300455 spin_lock_init(&ir_dev->rc_tab.lock);
David Härdemana374fef2010-04-02 15:58:29 -0300456 spin_lock_init(&ir_dev->keylock);
457 setup_timer(&ir_dev->timer_keyup, ir_timer_keyup, (unsigned long)ir_dev);
458
David Härdemanb3074c02010-04-02 15:58:28 -0300459 ir_dev->rc_tab.name = rc_tab->name;
460 ir_dev->rc_tab.ir_type = rc_tab->ir_type;
461 ir_dev->rc_tab.alloc = roundup_pow_of_two(rc_tab->size *
462 sizeof(struct ir_scancode));
463 ir_dev->rc_tab.scan = kmalloc(ir_dev->rc_tab.alloc, GFP_KERNEL);
464 ir_dev->rc_tab.size = ir_dev->rc_tab.alloc / sizeof(struct ir_scancode);
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300465 if (props) {
466 ir_dev->props = props;
467 if (props->open)
468 input_dev->open = ir_open;
469 if (props->close)
470 input_dev->close = ir_close;
471 }
David Härdemanb3074c02010-04-02 15:58:28 -0300472
473 if (!ir_dev->rc_tab.scan) {
474 rc = -ENOMEM;
475 goto out_name;
476 }
477
478 IR_dprintk(1, "Allocated space for %u keycode entries (%u bytes)\n",
479 ir_dev->rc_tab.size, ir_dev->rc_tab.alloc);
480
481 set_bit(EV_KEY, input_dev->evbit);
David Härdemana374fef2010-04-02 15:58:29 -0300482 set_bit(EV_REP, input_dev->evbit);
483
David Härdemanb3074c02010-04-02 15:58:28 -0300484 if (ir_setkeytable(input_dev, &ir_dev->rc_tab, rc_tab)) {
485 rc = -ENOMEM;
486 goto out_table;
487 }
488
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300489 rc = ir_register_class(input_dev);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300490 if (rc < 0)
David Härdemanb3074c02010-04-02 15:58:28 -0300491 goto out_table;
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300492
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300493 if (ir_dev->props->driver_type == RC_DRIVER_IR_RAW) {
494 rc = ir_raw_event_register(input_dev);
495 if (rc < 0)
496 goto out_event;
497 }
498
Mauro Carvalho Chehab35438942010-04-03 16:53:16 -0300499 IR_dprintk(1, "Registered input device on %s for %s remote.\n",
500 driver_name, rc_tab->name);
501
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300502 return 0;
503
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300504out_event:
505 ir_unregister_class(input_dev);
David Härdemanb3074c02010-04-02 15:58:28 -0300506out_table:
507 kfree(ir_dev->rc_tab.scan);
508out_name:
509 kfree(ir_dev->driver_name);
510out_dev:
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300511 kfree(ir_dev);
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300512 return rc;
Mauro Carvalho Chehabef53a112009-11-27 22:01:23 -0300513}
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300514EXPORT_SYMBOL_GPL(__ir_input_register);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300515
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300516/**
517 * ir_input_unregister() - unregisters IR and frees resources
518 * @input_dev: the struct input_dev descriptor of the device
519
520 * This routine is used to free memory and de-register interfaces.
521 */
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300522void ir_input_unregister(struct input_dev *input_dev)
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300523{
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300524 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300525 struct ir_scancode_table *rc_tab;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300526
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300527 if (!ir_dev)
Mauro Carvalho Chehab05395a32009-12-06 08:32:49 -0300528 return;
529
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300530 IR_dprintk(1, "Freed keycode table\n");
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300531
David Härdemana374fef2010-04-02 15:58:29 -0300532 del_timer_sync(&ir_dev->timer_keyup);
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300533 if (ir_dev->props->driver_type == RC_DRIVER_IR_RAW)
534 ir_raw_event_unregister(input_dev);
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300535 rc_tab = &ir_dev->rc_tab;
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300536 rc_tab->size = 0;
537 kfree(rc_tab->scan);
538 rc_tab->scan = NULL;
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300539
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300540 ir_unregister_class(input_dev);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300541
David Härdemanb3074c02010-04-02 15:58:28 -0300542 kfree(ir_dev->driver_name);
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300543 kfree(ir_dev);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300544}
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300545EXPORT_SYMBOL_GPL(ir_input_unregister);
Mauro Carvalho Chehabf6fc5042009-11-29 11:08:02 -0300546
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300547int ir_core_debug; /* ir_debug level (0,1,2) */
548EXPORT_SYMBOL_GPL(ir_core_debug);
549module_param_named(debug, ir_core_debug, int, 0644);
550
551MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
552MODULE_LICENSE("GPL");