Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 1 | /* ir-register.c - handle IR scancode->keycode tables |
| 2 | * |
| 3 | * Copyright (C) 2009 by Mauro Carvalho Chehab <mchehab@redhat.com> |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame^] | 4 | * |
| 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 Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/usb/input.h> |
| 16 | |
| 17 | #include <media/ir-common.h> |
| 18 | |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 19 | #define IR_TAB_MIN_SIZE 32 |
Mauro Carvalho Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 20 | #define IR_TAB_MAX_SIZE 1024 |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 21 | |
| 22 | /** |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 23 | * ir_seek_table() - returns the element order on the table |
| 24 | * @rc_tab: the ir_scancode_table with the keymap to be used |
| 25 | * @scancode: the scancode that we're seeking |
| 26 | * |
| 27 | * This routine is used by the input routines when a key is pressed at the |
| 28 | * IR. The scancode is received and needs to be converted into a keycode. |
| 29 | * If the key is not found, it returns KEY_UNKNOWN. Otherwise, returns the |
| 30 | * corresponding keycode from the table. |
| 31 | */ |
| 32 | static int ir_seek_table(struct ir_scancode_table *rc_tab, u32 scancode) |
| 33 | { |
| 34 | int rc; |
| 35 | unsigned long flags; |
| 36 | struct ir_scancode *keymap = rc_tab->scan; |
| 37 | |
| 38 | spin_lock_irqsave(&rc_tab->lock, flags); |
| 39 | |
| 40 | /* FIXME: replace it by a binary search */ |
| 41 | |
| 42 | for (rc = 0; rc < rc_tab->size; rc++) |
| 43 | if (keymap[rc].scancode == scancode) |
| 44 | goto exit; |
| 45 | |
| 46 | /* Not found */ |
| 47 | rc = -EINVAL; |
| 48 | |
| 49 | exit: |
| 50 | spin_unlock_irqrestore(&rc_tab->lock, flags); |
| 51 | return rc; |
| 52 | } |
| 53 | |
| 54 | /** |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 55 | * ir_roundup_tablesize() - gets an optimum value for the table size |
| 56 | * @n_elems: minimum number of entries to store keycodes |
| 57 | * |
| 58 | * This routine is used to choose the keycode table size. |
| 59 | * |
| 60 | * In order to have some empty space for new keycodes, |
| 61 | * and knowing in advance that kmalloc allocates only power of two |
| 62 | * segments, it optimizes the allocated space to have some spare space |
| 63 | * for those new keycodes by using the maximum number of entries that |
| 64 | * will be effectively be allocated by kmalloc. |
| 65 | * In order to reduce the quantity of table resizes, it has a minimum |
| 66 | * table size of IR_TAB_MIN_SIZE. |
| 67 | */ |
| 68 | int ir_roundup_tablesize(int n_elems) |
| 69 | { |
| 70 | size_t size; |
| 71 | |
| 72 | if (n_elems < IR_TAB_MIN_SIZE) |
| 73 | n_elems = IR_TAB_MIN_SIZE; |
| 74 | |
| 75 | /* |
| 76 | * As kmalloc only allocates sizes of power of two, get as |
| 77 | * much entries as possible for the allocated memory segment |
| 78 | */ |
| 79 | size = roundup_pow_of_two(n_elems * sizeof(struct ir_scancode)); |
| 80 | n_elems = size / sizeof(struct ir_scancode); |
| 81 | |
| 82 | return n_elems; |
| 83 | } |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame^] | 84 | EXPORT_SYMBOL_GPL(ir_roundup_tablesize); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 85 | |
| 86 | /** |
| 87 | * ir_copy_table() - copies a keytable, discarding the unused entries |
| 88 | * @destin: destin table |
| 89 | * @origin: origin table |
| 90 | * |
| 91 | * Copies all entries where the keycode is not KEY_UNKNOWN/KEY_RESERVED |
| 92 | */ |
| 93 | |
| 94 | int ir_copy_table(struct ir_scancode_table *destin, |
| 95 | const struct ir_scancode_table *origin) |
| 96 | { |
| 97 | int i, j = 0; |
| 98 | |
| 99 | for (i = 0; i < origin->size; i++) { |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 100 | if (origin->scan[i].keycode == KEY_UNKNOWN || |
| 101 | origin->scan[i].keycode == KEY_RESERVED) |
| 102 | continue; |
| 103 | |
| 104 | memcpy(&destin->scan[j], &origin->scan[i], sizeof(struct ir_scancode)); |
| 105 | j++; |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 106 | } |
| 107 | destin->size = j; |
| 108 | |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 109 | IR_dprintk(1, "Copied %d scancodes to the new keycode table\n", destin->size); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 110 | |
| 111 | return 0; |
| 112 | } |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame^] | 113 | EXPORT_SYMBOL_GPL(ir_copy_table); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 114 | |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 115 | /** |
| 116 | * ir_getkeycode() - get a keycode at the evdev scancode ->keycode table |
| 117 | * @dev: the struct input_dev device descriptor |
| 118 | * @scancode: the desired scancode |
| 119 | * @keycode: the keycode to be retorned. |
| 120 | * |
| 121 | * This routine is used to handle evdev EVIOCGKEY ioctl. |
| 122 | * If the key is not found, returns -EINVAL, otherwise, returns 0. |
| 123 | */ |
| 124 | static int ir_getkeycode(struct input_dev *dev, |
| 125 | int scancode, int *keycode) |
| 126 | { |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 127 | int elem; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 128 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 129 | |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 130 | elem = ir_seek_table(rc_tab, scancode); |
| 131 | if (elem >= 0) { |
| 132 | *keycode = rc_tab->scan[elem].keycode; |
| 133 | return 0; |
| 134 | } |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 135 | |
Mauro Carvalho Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 136 | /* |
| 137 | * Scancode not found and table can't be expanded |
| 138 | */ |
| 139 | if (elem < 0 && rc_tab->size == IR_TAB_MAX_SIZE) |
| 140 | return -EINVAL; |
| 141 | |
| 142 | /* |
| 143 | * If is there extra space, returns KEY_RESERVED, |
| 144 | * otherwise, input core won't let ir_setkeycode to work |
| 145 | */ |
| 146 | *keycode = KEY_RESERVED; |
| 147 | return 0; |
| 148 | } |
| 149 | |
Mauro Carvalho Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 150 | /** |
| 151 | * ir_is_resize_needed() - Check if the table needs rezise |
| 152 | * @table: keycode table that may need to resize |
| 153 | * @n_elems: minimum number of entries to store keycodes |
| 154 | * |
| 155 | * Considering that kmalloc uses power of two storage areas, this |
| 156 | * routine detects if the real alloced size will change. If not, it |
| 157 | * just returns without doing nothing. Otherwise, it will extend or |
| 158 | * reduce the table size to meet the new needs. |
| 159 | * |
| 160 | * It returns 0 if no resize is needed, 1 otherwise. |
| 161 | */ |
| 162 | static int ir_is_resize_needed(struct ir_scancode_table *table, int n_elems) |
| 163 | { |
| 164 | int cur_size = ir_roundup_tablesize(table->size); |
| 165 | int new_size = ir_roundup_tablesize(n_elems); |
| 166 | |
| 167 | if (cur_size == new_size) |
| 168 | return 0; |
| 169 | |
| 170 | /* Resize is needed */ |
| 171 | return 1; |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * ir_delete_key() - remove a keycode from the table |
| 176 | * @rc_tab: keycode table |
| 177 | * @elem: element to be removed |
| 178 | * |
| 179 | */ |
| 180 | static void ir_delete_key(struct ir_scancode_table *rc_tab, int elem) |
| 181 | { |
| 182 | unsigned long flags = 0; |
| 183 | int newsize = rc_tab->size - 1; |
| 184 | int resize = ir_is_resize_needed(rc_tab, newsize); |
| 185 | struct ir_scancode *oldkeymap = rc_tab->scan; |
| 186 | struct ir_scancode *newkeymap; |
| 187 | |
| 188 | if (resize) { |
| 189 | newkeymap = kzalloc(ir_roundup_tablesize(newsize) * |
| 190 | sizeof(*newkeymap), GFP_ATOMIC); |
| 191 | |
| 192 | /* There's no memory for resize. Keep the old table */ |
| 193 | if (!newkeymap) |
| 194 | resize = 0; |
| 195 | } |
| 196 | |
| 197 | if (!resize) { |
| 198 | newkeymap = oldkeymap; |
| 199 | |
| 200 | /* We'll modify the live table. Lock it */ |
| 201 | spin_lock_irqsave(&rc_tab->lock, flags); |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * Copy the elements before the one that will be deleted |
| 206 | * if (!resize), both oldkeymap and newkeymap points |
| 207 | * to the same place, so, there's no need to copy |
| 208 | */ |
| 209 | if (resize && elem > 0) |
| 210 | memcpy(newkeymap, oldkeymap, |
| 211 | elem * sizeof(*newkeymap)); |
| 212 | |
| 213 | /* |
| 214 | * Copy the other elements overwriting the element to be removed |
| 215 | * This operation applies to both resize and non-resize case |
| 216 | */ |
| 217 | if (elem < newsize) |
| 218 | memcpy(&newkeymap[elem], &oldkeymap[elem + 1], |
| 219 | (newsize - elem) * sizeof(*newkeymap)); |
| 220 | |
| 221 | if (resize) { |
| 222 | /* |
| 223 | * As the copy happened to a temporary table, only here |
| 224 | * it needs to lock while replacing the table pointers |
| 225 | * to use the new table |
| 226 | */ |
| 227 | spin_lock_irqsave(&rc_tab->lock, flags); |
| 228 | rc_tab->size = newsize; |
| 229 | rc_tab->scan = newkeymap; |
| 230 | spin_unlock_irqrestore(&rc_tab->lock, flags); |
| 231 | |
| 232 | /* Frees the old keytable */ |
| 233 | kfree(oldkeymap); |
| 234 | } else { |
| 235 | rc_tab->size = newsize; |
| 236 | spin_unlock_irqrestore(&rc_tab->lock, flags); |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * ir_insert_key() - insert a keycode at the table |
| 242 | * @rc_tab: keycode table |
| 243 | * @scancode: the desired scancode |
| 244 | * @keycode: the keycode to be retorned. |
| 245 | * |
| 246 | */ |
| 247 | static int ir_insert_key(struct ir_scancode_table *rc_tab, |
| 248 | int scancode, int keycode) |
| 249 | { |
| 250 | unsigned long flags; |
| 251 | int elem = rc_tab->size; |
| 252 | int newsize = rc_tab->size + 1; |
| 253 | int resize = ir_is_resize_needed(rc_tab, newsize); |
| 254 | struct ir_scancode *oldkeymap = rc_tab->scan; |
| 255 | struct ir_scancode *newkeymap; |
| 256 | |
| 257 | if (resize) { |
| 258 | newkeymap = kzalloc(ir_roundup_tablesize(newsize) * |
| 259 | sizeof(*newkeymap), GFP_ATOMIC); |
| 260 | if (!newkeymap) |
| 261 | return -ENOMEM; |
| 262 | |
| 263 | memcpy(newkeymap, oldkeymap, |
| 264 | rc_tab->size * sizeof(*newkeymap)); |
| 265 | } else |
| 266 | newkeymap = oldkeymap; |
| 267 | |
| 268 | /* Stores the new code at the table */ |
| 269 | IR_dprintk(1, "#%d: New scan 0x%04x with key 0x%04x\n", |
| 270 | rc_tab->size, scancode, keycode); |
| 271 | |
| 272 | spin_lock_irqsave(&rc_tab->lock, flags); |
| 273 | rc_tab->size = newsize; |
| 274 | if (resize) { |
| 275 | rc_tab->scan = newkeymap; |
| 276 | kfree(oldkeymap); |
| 277 | } |
| 278 | newkeymap[elem].scancode = scancode; |
| 279 | newkeymap[elem].keycode = keycode; |
| 280 | spin_unlock_irqrestore(&rc_tab->lock, flags); |
| 281 | |
| 282 | return 0; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | /** |
| 286 | * ir_setkeycode() - set a keycode at the evdev scancode ->keycode table |
| 287 | * @dev: the struct input_dev device descriptor |
| 288 | * @scancode: the desired scancode |
| 289 | * @keycode: the keycode to be retorned. |
| 290 | * |
| 291 | * This routine is used to handle evdev EVIOCSKEY ioctl. |
| 292 | * There's one caveat here: how can we increase the size of the table? |
| 293 | * If the key is not found, returns -EINVAL, otherwise, returns 0. |
| 294 | */ |
| 295 | static int ir_setkeycode(struct input_dev *dev, |
| 296 | int scancode, int keycode) |
| 297 | { |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 298 | int rc = 0; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 299 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); |
| 300 | struct ir_scancode *keymap = rc_tab->scan; |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 301 | unsigned long flags; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 302 | |
Mauro Carvalho Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 303 | /* |
| 304 | * Handle keycode table deletions |
| 305 | * |
| 306 | * If userspace is adding a KEY_UNKNOWN or KEY_RESERVED, |
| 307 | * deal as a trial to remove an existing scancode attribution |
| 308 | * if table become too big, reduce it to save space |
| 309 | */ |
| 310 | if (keycode == KEY_UNKNOWN || keycode == KEY_RESERVED) { |
| 311 | rc = ir_seek_table(rc_tab, scancode); |
| 312 | if (rc < 0) |
| 313 | return 0; |
| 314 | |
| 315 | IR_dprintk(1, "#%d: Deleting scan 0x%04x\n", rc, scancode); |
| 316 | clear_bit(keymap[rc].keycode, dev->keybit); |
| 317 | ir_delete_key(rc_tab, rc); |
| 318 | |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | /* |
| 323 | * Handle keycode replacements |
| 324 | * |
| 325 | * If the scancode exists, just replace by the new value |
| 326 | */ |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 327 | rc = ir_seek_table(rc_tab, scancode); |
Mauro Carvalho Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 328 | if (rc >= 0) { |
| 329 | IR_dprintk(1, "#%d: Replacing scan 0x%04x with key 0x%04x\n", |
| 330 | rc, scancode, keycode); |
| 331 | |
| 332 | clear_bit(keymap[rc].keycode, dev->keybit); |
| 333 | |
| 334 | spin_lock_irqsave(&rc_tab->lock, flags); |
| 335 | keymap[rc].keycode = keycode; |
| 336 | spin_unlock_irqrestore(&rc_tab->lock, flags); |
| 337 | |
| 338 | set_bit(keycode, dev->keybit); |
| 339 | |
| 340 | return 0; |
| 341 | } |
| 342 | |
| 343 | /* |
| 344 | * Handle new scancode inserts |
| 345 | * |
| 346 | * reallocate table if needed and insert a new keycode |
| 347 | */ |
| 348 | |
| 349 | /* Avoid growing the table indefinitely */ |
| 350 | if (rc_tab->size + 1 > IR_TAB_MAX_SIZE) |
| 351 | return -EINVAL; |
| 352 | |
| 353 | rc = ir_insert_key(rc_tab, scancode, keycode); |
| 354 | if (rc < 0) |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 355 | return rc; |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 356 | set_bit(keycode, dev->keybit); |
| 357 | |
| 358 | return 0; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | /** |
| 362 | * ir_g_keycode_from_table() - gets the keycode that corresponds to a scancode |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 363 | * @input_dev: the struct input_dev descriptor of the device |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 364 | * @scancode: the scancode that we're seeking |
| 365 | * |
| 366 | * This routine is used by the input routines when a key is pressed at the |
| 367 | * IR. The scancode is received and needs to be converted into a keycode. |
| 368 | * If the key is not found, it returns KEY_UNKNOWN. Otherwise, returns the |
| 369 | * corresponding keycode from the table. |
| 370 | */ |
| 371 | u32 ir_g_keycode_from_table(struct input_dev *dev, u32 scancode) |
| 372 | { |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 373 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); |
| 374 | struct ir_scancode *keymap = rc_tab->scan; |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 375 | int elem; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 376 | |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 377 | elem = ir_seek_table(rc_tab, scancode); |
| 378 | if (elem >= 0) { |
| 379 | IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n", |
| 380 | dev->name, scancode, keymap[elem].keycode); |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 381 | |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 382 | return rc_tab->scan[elem].keycode; |
| 383 | } |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 384 | |
| 385 | printk(KERN_INFO "%s: unknown key for scancode 0x%04x\n", |
| 386 | dev->name, scancode); |
| 387 | |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 388 | /* Reports userspace that an unknown keycode were got */ |
| 389 | return KEY_RESERVED; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 390 | } |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame^] | 391 | EXPORT_SYMBOL_GPL(ir_g_keycode_from_table); |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 392 | |
| 393 | /** |
| 394 | * ir_set_keycode_table() - sets the IR keycode table and add the handlers |
| 395 | * for keymap table get/set |
| 396 | * @input_dev: the struct input_dev descriptor of the device |
| 397 | * @rc_tab: the struct ir_scancode_table table of scancode/keymap |
| 398 | * |
| 399 | * This routine is used to initialize the input infrastructure to work with |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 400 | * an IR. |
| 401 | * It should be called before registering the IR device. |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 402 | */ |
| 403 | int ir_set_keycode_table(struct input_dev *input_dev, |
| 404 | struct ir_scancode_table *rc_tab) |
| 405 | { |
| 406 | struct ir_scancode *keymap = rc_tab->scan; |
| 407 | int i; |
| 408 | |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 409 | spin_lock_init(&rc_tab->lock); |
| 410 | |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 411 | if (rc_tab->scan == NULL || !rc_tab->size) |
| 412 | return -EINVAL; |
| 413 | |
| 414 | /* set the bits for the keys */ |
| 415 | IR_dprintk(1, "key map size: %d\n", rc_tab->size); |
| 416 | for (i = 0; i < rc_tab->size; i++) { |
| 417 | IR_dprintk(1, "#%d: setting bit for keycode 0x%04x\n", |
| 418 | i, keymap[i].keycode); |
| 419 | set_bit(keymap[i].keycode, input_dev->keybit); |
| 420 | } |
| 421 | |
| 422 | input_dev->getkeycode = ir_getkeycode; |
| 423 | input_dev->setkeycode = ir_setkeycode; |
| 424 | input_set_drvdata(input_dev, rc_tab); |
| 425 | |
| 426 | return 0; |
| 427 | } |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame^] | 428 | EXPORT_SYMBOL_GPL(ir_set_keycode_table); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 429 | |
| 430 | void ir_input_free(struct input_dev *dev) |
| 431 | { |
| 432 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); |
| 433 | |
Mauro Carvalho Chehab | 05395a3 | 2009-12-06 08:32:49 -0300 | [diff] [blame] | 434 | if (!rc_tab) |
| 435 | return; |
| 436 | |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 437 | IR_dprintk(1, "Freed keycode table\n"); |
| 438 | |
| 439 | rc_tab->size = 0; |
| 440 | kfree(rc_tab->scan); |
| 441 | rc_tab->scan = NULL; |
| 442 | } |
| 443 | EXPORT_SYMBOL_GPL(ir_input_free); |
| 444 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame^] | 445 | int ir_core_debug; /* ir_debug level (0,1,2) */ |
| 446 | EXPORT_SYMBOL_GPL(ir_core_debug); |
| 447 | module_param_named(debug, ir_core_debug, int, 0644); |
| 448 | |
| 449 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |
| 450 | MODULE_LICENSE("GPL"); |