Mauro Carvalho Chehab | bc2a6c5 | 2010-11-09 23:18:24 -0300 | [diff] [blame] | 1 | /* rc-core.c - handle IR scancode->keycode tables |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 2 | * |
Mauro Carvalho Chehab | bc2a6c5 | 2010-11-09 23:18:24 -0300 | [diff] [blame] | 3 | * Copyright (C) 2009-2010 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 | |
Mauro Carvalho Chehab | 631493e | 2010-11-09 23:44:27 -0300 | [diff] [blame^] | 15 | #include <media/ir-core.h> |
| 16 | #include <linux/spinlock.h> |
| 17 | #include <linux/delay.h> |
Mauro Carvalho Chehab | 882ead3 | 2009-12-29 10:37:38 -0300 | [diff] [blame] | 18 | #include <linux/input.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Mauro Carvalho Chehab | bc2a6c5 | 2010-11-09 23:18:24 -0300 | [diff] [blame] | 20 | #include <linux/device.h> |
Mauro Carvalho Chehab | f62de67 | 2010-11-09 23:09:57 -0300 | [diff] [blame] | 21 | #include "rc-core-priv.h" |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 22 | |
Mauro Carvalho Chehab | bc2a6c5 | 2010-11-09 23:18:24 -0300 | [diff] [blame] | 23 | #define IRRCV_NUM_DEVICES 256 |
| 24 | |
| 25 | /* bit array to represent IR sysfs device number */ |
| 26 | static unsigned long ir_core_dev_number; |
| 27 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 28 | /* 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 Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 31 | |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 32 | /* FIXME: IR_KEYPRESS_TIMEOUT should be protocol specific */ |
| 33 | #define IR_KEYPRESS_TIMEOUT 250 |
| 34 | |
Mauro Carvalho Chehab | 631493e | 2010-11-09 23:44:27 -0300 | [diff] [blame^] | 35 | /* Used to handle IR raw handler extensions */ |
| 36 | static LIST_HEAD(rc_map_list); |
| 37 | static DEFINE_SPINLOCK(rc_map_lock); |
| 38 | |
| 39 | static 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 | |
| 55 | struct 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 | } |
| 82 | EXPORT_SYMBOL_GPL(get_rc_map); |
| 83 | |
| 84 | int 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 | } |
| 91 | EXPORT_SYMBOL_GPL(ir_register_map); |
| 92 | |
| 93 | void 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 | } |
| 99 | EXPORT_SYMBOL_GPL(ir_unregister_map); |
| 100 | |
| 101 | |
| 102 | static struct ir_scancode empty[] = { |
| 103 | { 0x2a, KEY_COFFEE }, |
| 104 | }; |
| 105 | |
| 106 | static 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 | |
| 115 | int ir_rcmap_init(void) |
| 116 | { |
| 117 | return ir_register_map(&empty_map); |
| 118 | } |
| 119 | |
| 120 | void ir_rcmap_cleanup(void) |
| 121 | { |
| 122 | ir_unregister_map(&empty_map); |
| 123 | } |
| 124 | |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 125 | /** |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 126 | * 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 | */ |
| 136 | static 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 | */ |
| 159 | static 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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 167 | * ir_resize_table() - resizes a scancode table if necessary |
| 168 | * @rc_tab: the ir_scancode_table to resize |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 169 | * @gfp_flags: gfp flags to use when allocating memory |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 170 | * @return: zero on success or a negative error code |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 171 | * |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 172 | * 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 Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 174 | */ |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 175 | static int ir_resize_table(struct ir_scancode_table *rc_tab, gfp_t gfp_flags) |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 176 | { |
| 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 Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 200 | newscan = kmalloc(newalloc, gfp_flags); |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 201 | 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 Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 215 | * ir_update_mapping() - set a keycode in the scancode->keycode table |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 216 | * @dev: the struct input_dev device descriptor |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 217 | * @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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 221 | * |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 222 | * This routine is used to update scancode->keycopde mapping at given |
| 223 | * position. |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 224 | */ |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 225 | static 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 | */ |
| 281 | static 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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 285 | { |
| 286 | unsigned int i; |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 287 | |
| 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 Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 295 | if (ir_dev->props && ir_dev->props->scanmask) |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 296 | scancode &= ir_dev->props->scanmask; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 297 | |
| 298 | /* First check if we already have a mapping for this ir command */ |
| 299 | for (i = 0; i < rc_tab->len; i++) { |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 300 | if (rc_tab->scan[i].scancode == scancode) |
| 301 | return i; |
| 302 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 303 | /* Keytable is sorted from lowest to highest scancode */ |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 304 | if (rc_tab->scan[i].scancode >= scancode) |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 305 | break; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 306 | } |
| 307 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 308 | /* 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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 313 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 314 | /* i is the proper index to insert our new keycode */ |
| 315 | if (i < rc_tab->len) |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 316 | memmove(&rc_tab->scan[i + 1], &rc_tab->scan[i], |
| 317 | (rc_tab->len - i) * sizeof(struct ir_scancode)); |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 318 | rc_tab->scan[i].scancode = scancode; |
| 319 | rc_tab->scan[i].keycode = KEY_RESERVED; |
| 320 | rc_tab->len++; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 321 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 322 | return i; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 323 | } |
| 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 | */ |
| 334 | static int ir_setkeycode(struct input_dev *dev, |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 335 | const struct input_keymap_entry *ke, |
| 336 | unsigned int *old_keycode) |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 337 | { |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 338 | struct ir_input_dev *ir_dev = input_get_drvdata(dev); |
| 339 | struct ir_scancode_table *rc_tab = &ir_dev->rc_tab; |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 340 | unsigned int index; |
| 341 | unsigned int scancode; |
| 342 | int retval; |
| 343 | unsigned long flags; |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 344 | |
| 345 | spin_lock_irqsave(&rc_tab->lock, flags); |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 346 | |
| 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 | |
| 367 | out: |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 368 | spin_unlock_irqrestore(&rc_tab->lock, flags); |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 369 | return retval; |
Mauro Carvalho Chehab | 7fee03e | 2009-12-02 15:56:47 -0300 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | /** |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 373 | * 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 Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 377 | * @return: -ENOMEM if all keycodes could not be inserted, otherwise zero. |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 378 | * |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 379 | * This routine is used to handle table initialization. |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 380 | */ |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 381 | static int ir_setkeytable(struct ir_input_dev *ir_dev, |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 382 | const struct ir_scancode_table *from) |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 383 | { |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 384 | struct ir_scancode_table *rc_tab = &ir_dev->rc_tab; |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 385 | unsigned int i, index; |
| 386 | int rc; |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 387 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 388 | 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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 396 | for (i = 0; i < from->size; i++) { |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 397 | 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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 401 | break; |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | ir_update_mapping(ir_dev->input_dev, rc_tab, index, |
| 405 | from->scan[i].keycode); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 406 | } |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 407 | |
| 408 | if (rc) |
| 409 | ir_free_table(rc_tab); |
| 410 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 411 | return rc; |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 412 | } |
| 413 | |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 414 | /** |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 415 | * 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 | */ |
| 423 | static unsigned int ir_lookup_by_scancode(const struct ir_scancode_table *rc_tab, |
| 424 | unsigned int scancode) |
| 425 | { |
David Härdeman | 0d07025 | 2010-10-30 22:17:44 +0200 | [diff] [blame] | 426 | int start = 0; |
| 427 | int end = rc_tab->len - 1; |
| 428 | int mid; |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 429 | |
| 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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 444 | * ir_getkeycode() - get a keycode from the scancode->keycode table |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 445 | * @dev: the struct input_dev device descriptor |
| 446 | * @scancode: the desired scancode |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 447 | * @keycode: used to return the keycode, if found, or KEY_RESERVED |
| 448 | * @return: always returns zero. |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 449 | * |
| 450 | * This routine is used to handle evdev EVIOCGKEY ioctl. |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 451 | */ |
| 452 | static int ir_getkeycode(struct input_dev *dev, |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 453 | struct input_keymap_entry *ke) |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 454 | { |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 455 | struct ir_input_dev *ir_dev = input_get_drvdata(dev); |
| 456 | struct ir_scancode_table *rc_tab = &ir_dev->rc_tab; |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 457 | struct ir_scancode *entry; |
| 458 | unsigned long flags; |
| 459 | unsigned int index; |
| 460 | unsigned int scancode; |
| 461 | int retval; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 462 | |
Mauro Carvalho Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 463 | spin_lock_irqsave(&rc_tab->lock, flags); |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 464 | |
| 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 Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 473 | } |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 474 | |
| 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 Torokhov | 47c5ba5 | 2010-10-31 15:18:42 -0700 | [diff] [blame] | 490 | retval = 0; |
| 491 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 492 | out: |
Mauro Carvalho Chehab | e97f467 | 2009-12-04 17:17:47 -0300 | [diff] [blame] | 493 | spin_unlock_irqrestore(&rc_tab->lock, flags); |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 494 | return retval; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | /** |
| 498 | * 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] | 499 | * @input_dev: the struct input_dev descriptor of the device |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 500 | * @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 Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 504 | * If the key is not found, it returns KEY_RESERVED. Otherwise, returns the |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 505 | * corresponding keycode from the table. |
| 506 | */ |
| 507 | u32 ir_g_keycode_from_table(struct input_dev *dev, u32 scancode) |
| 508 | { |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 509 | 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 Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 514 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 515 | 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 Chehab | 3543894 | 2010-04-03 16:53:16 -0300 | [diff] [blame] | 523 | if (keycode != KEY_RESERVED) |
| 524 | IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n", |
| 525 | dev->name, scancode, keycode); |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 526 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 527 | return keycode; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 528 | } |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 529 | EXPORT_SYMBOL_GPL(ir_g_keycode_from_table); |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 530 | |
| 531 | /** |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 532 | * ir_do_keyup() - internal function to signal the release of a keypress |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 533 | * @ir: the struct ir_input_dev descriptor of the device |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 534 | * |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 535 | * This function is used internally to release a keypress, it must be |
| 536 | * called with keylock held. |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 537 | */ |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 538 | static void ir_do_keyup(struct ir_input_dev *ir) |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 539 | { |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 540 | if (!ir->keypressed) |
| 541 | return; |
| 542 | |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 543 | 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 Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 547 | } |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 548 | |
| 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 | */ |
| 556 | void 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 Wilson | ee08940 | 2010-09-15 15:31:12 -0300 | [diff] [blame] | 565 | EXPORT_SYMBOL_GPL(ir_keyup); |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 566 | |
| 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 | */ |
| 574 | static 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 Levitsky | e0172fd | 2010-09-06 18:26:09 -0300 | [diff] [blame] | 590 | if (time_is_before_eq_jiffies(ir->keyup_jiffies)) |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 591 | ir_do_keyup(ir); |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 592 | 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 | */ |
| 603 | void 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 Levitsky | ed4d387 | 2010-07-31 11:59:24 -0300 | [diff] [blame] | 610 | input_event(dev, EV_MSC, MSC_SCAN, ir->last_scancode); |
| 611 | |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 612 | 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 | |
| 618 | out: |
| 619 | spin_unlock_irqrestore(&ir->keylock, flags); |
| 620 | } |
| 621 | EXPORT_SYMBOL_GPL(ir_repeat); |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 622 | |
| 623 | /** |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 624 | * 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 | */ |
| 633 | static 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 Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 665 | * ir_keydown() - generates input event for a key press |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 666 | * @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 Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 670 | * |
| 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ärdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 675 | void ir_keydown(struct input_dev *dev, int scancode, u8 toggle) |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 676 | { |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 677 | unsigned long flags; |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 678 | struct ir_input_dev *ir = input_get_drvdata(dev); |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 679 | u32 keycode = ir_g_keycode_from_table(dev, scancode); |
| 680 | |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 681 | spin_lock_irqsave(&ir->keylock, flags); |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 682 | ir_do_keydown(dev, scancode, keycode, toggle); |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 683 | |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 684 | 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ärdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 688 | spin_unlock_irqrestore(&ir->keylock, flags); |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 689 | } |
| 690 | EXPORT_SYMBOL_GPL(ir_keydown); |
| 691 | |
David Härdeman | 62c6503 | 2010-10-29 16:08:07 -0300 | [diff] [blame] | 692 | /** |
| 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 | */ |
| 705 | void 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 | } |
| 715 | EXPORT_SYMBOL_GPL(ir_keydown_notimeout); |
| 716 | |
Mauro Carvalho Chehab | 716aab4 | 2010-03-31 14:40:35 -0300 | [diff] [blame] | 717 | static 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 | |
| 724 | static 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 Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 730 | |
| 731 | /** |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 732 | * __ir_input_register() - sets the IR keycode table and add the handlers |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 733 | * 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 Chehab | d4b778d | 2009-12-14 02:55:03 -0300 | [diff] [blame] | 737 | * 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 Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 741 | */ |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 742 | int __ir_input_register(struct input_dev *input_dev, |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 743 | const struct ir_scancode_table *rc_tab, |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 744 | struct ir_dev_props *props, |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 745 | const char *driver_name) |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 746 | { |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 747 | struct ir_input_dev *ir_dev; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 748 | int rc; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 749 | |
| 750 | if (rc_tab->scan == NULL || !rc_tab->size) |
| 751 | return -EINVAL; |
| 752 | |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 753 | ir_dev = kzalloc(sizeof(*ir_dev), GFP_KERNEL); |
| 754 | if (!ir_dev) |
| 755 | return -ENOMEM; |
| 756 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 757 | ir_dev->driver_name = kasprintf(GFP_KERNEL, "%s", driver_name); |
| 758 | if (!ir_dev->driver_name) { |
| 759 | rc = -ENOMEM; |
| 760 | goto out_dev; |
Alexander Beregalov | 8231152 | 2010-01-09 13:51:14 -0300 | [diff] [blame] | 761 | } |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 762 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 763 | input_dev->getkeycode_new = ir_getkeycode; |
| 764 | input_dev->setkeycode_new = ir_setkeycode; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 765 | input_set_drvdata(input_dev, ir_dev); |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 766 | ir_dev->input_dev = input_dev; |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 767 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 768 | spin_lock_init(&ir_dev->rc_tab.lock); |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 769 | spin_lock_init(&ir_dev->keylock); |
| 770 | setup_timer(&ir_dev->timer_keyup, ir_timer_keyup, (unsigned long)ir_dev); |
| 771 | |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 772 | 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ärdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 779 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 780 | set_bit(EV_KEY, input_dev->evbit); |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 781 | set_bit(EV_REP, input_dev->evbit); |
Maxim Levitsky | ed4d387 | 2010-07-31 11:59:24 -0300 | [diff] [blame] | 782 | set_bit(EV_MSC, input_dev->evbit); |
| 783 | set_bit(MSC_SCAN, input_dev->mscbit); |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 784 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 785 | rc = ir_setkeytable(ir_dev, rc_tab); |
| 786 | if (rc) |
| 787 | goto out_name; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 788 | |
Mauro Carvalho Chehab | 945cdfa | 2010-03-11 12:41:56 -0300 | [diff] [blame] | 789 | rc = ir_register_class(input_dev); |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 790 | if (rc < 0) |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 791 | goto out_table; |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 792 | |
Igor M. Liplianin | 84b14f1 | 2010-05-26 23:31:21 -0300 | [diff] [blame] | 793 | 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 Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 799 | |
Maxim Levitsky | 58b3dd4 | 2010-09-06 18:26:07 -0300 | [diff] [blame] | 800 | rc = ir_register_input(input_dev); |
Mauro Carvalho Chehab | 991369e | 2010-10-14 17:49:33 -0300 | [diff] [blame] | 801 | if (rc < 0) |
| 802 | goto out_event; |
Maxim Levitsky | 58b3dd4 | 2010-09-06 18:26:07 -0300 | [diff] [blame] | 803 | |
Mauro Carvalho Chehab | 844a9e9 | 2010-08-01 17:19:29 -0300 | [diff] [blame] | 804 | IR_dprintk(1, "Registered input device on %s for %s remote%s.\n", |
| 805 | driver_name, rc_tab->name, |
Dan Carpenter | ede67a3 | 2010-08-06 03:31:00 -0300 | [diff] [blame] | 806 | (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_IR_RAW) ? |
| 807 | " in raw mode" : ""); |
Mauro Carvalho Chehab | 3543894 | 2010-04-03 16:53:16 -0300 | [diff] [blame] | 808 | |
Mauro Carvalho Chehab | 04cab131 | 2010-09-08 12:58:12 -0300 | [diff] [blame] | 809 | /* |
| 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 Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 816 | return 0; |
| 817 | |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 818 | out_event: |
| 819 | ir_unregister_class(input_dev); |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 820 | out_table: |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 821 | ir_free_table(&ir_dev->rc_tab); |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 822 | out_name: |
| 823 | kfree(ir_dev->driver_name); |
| 824 | out_dev: |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 825 | kfree(ir_dev); |
Mauro Carvalho Chehab | 579e7d6 | 2009-12-11 11:20:59 -0300 | [diff] [blame] | 826 | return rc; |
Mauro Carvalho Chehab | ef53a11 | 2009-11-27 22:01:23 -0300 | [diff] [blame] | 827 | } |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 828 | EXPORT_SYMBOL_GPL(__ir_input_register); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 829 | |
Mauro Carvalho Chehab | d4b778d | 2009-12-14 02:55:03 -0300 | [diff] [blame] | 830 | /** |
| 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 Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 836 | void ir_input_unregister(struct input_dev *input_dev) |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 837 | { |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 838 | struct ir_input_dev *ir_dev = input_get_drvdata(input_dev); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 839 | |
Mauro Carvalho Chehab | 579e7d6 | 2009-12-11 11:20:59 -0300 | [diff] [blame] | 840 | if (!ir_dev) |
Mauro Carvalho Chehab | 05395a3 | 2009-12-06 08:32:49 -0300 | [diff] [blame] | 841 | return; |
| 842 | |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 843 | IR_dprintk(1, "Freed keycode table\n"); |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 844 | |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 845 | del_timer_sync(&ir_dev->timer_keyup); |
Igor M. Liplianin | 84b14f1 | 2010-05-26 23:31:21 -0300 | [diff] [blame] | 846 | if (ir_dev->props) |
| 847 | if (ir_dev->props->driver_type == RC_DRIVER_IR_RAW) |
| 848 | ir_raw_event_unregister(input_dev); |
| 849 | |
Dmitry Torokhov | 9f47009 | 2010-09-09 21:59:11 -0700 | [diff] [blame] | 850 | ir_free_table(&ir_dev->rc_tab); |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 851 | |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 852 | ir_unregister_class(input_dev); |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 853 | |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 854 | kfree(ir_dev->driver_name); |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 855 | kfree(ir_dev); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 856 | } |
Mauro Carvalho Chehab | 38ef6aa | 2009-12-11 09:47:42 -0300 | [diff] [blame] | 857 | EXPORT_SYMBOL_GPL(ir_input_unregister); |
Mauro Carvalho Chehab | f6fc504 | 2009-11-29 11:08:02 -0300 | [diff] [blame] | 858 | |
Mauro Carvalho Chehab | bc2a6c5 | 2010-11-09 23:18:24 -0300 | [diff] [blame] | 859 | /* class for /sys/class/rc */ |
| 860 | static char *ir_devnode(struct device *dev, mode_t *mode) |
| 861 | { |
| 862 | return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev)); |
| 863 | } |
| 864 | |
| 865 | static struct class ir_input_class = { |
| 866 | .name = "rc", |
| 867 | .devnode = ir_devnode, |
| 868 | }; |
| 869 | |
| 870 | static 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 | */ |
| 897 | static 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 | */ |
| 951 | static 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 | |
| 1057 | static 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 | */ |
| 1072 | static DEVICE_ATTR(protocols, S_IRUGO | S_IWUSR, |
| 1073 | show_protocols, store_protocols); |
| 1074 | |
| 1075 | static struct attribute *rc_dev_attrs[] = { |
| 1076 | &dev_attr_protocols.attr, |
| 1077 | NULL, |
| 1078 | }; |
| 1079 | |
| 1080 | static struct attribute_group rc_dev_attr_grp = { |
| 1081 | .attrs = rc_dev_attrs, |
| 1082 | }; |
| 1083 | |
| 1084 | static const struct attribute_group *rc_dev_attr_groups[] = { |
| 1085 | &rc_dev_attr_grp, |
| 1086 | NULL |
| 1087 | }; |
| 1088 | |
| 1089 | static 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 | */ |
| 1100 | int 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 | |
| 1125 | int 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 | */ |
| 1158 | void 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 | |
| 1174 | static 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 | |
| 1189 | static void __exit ir_core_exit(void) |
| 1190 | { |
| 1191 | class_unregister(&ir_input_class); |
| 1192 | ir_rcmap_cleanup(); |
| 1193 | } |
| 1194 | |
| 1195 | module_init(ir_core_init); |
| 1196 | module_exit(ir_core_exit); |
| 1197 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 1198 | int ir_core_debug; /* ir_debug level (0,1,2) */ |
| 1199 | EXPORT_SYMBOL_GPL(ir_core_debug); |
| 1200 | module_param_named(debug, ir_core_debug, int, 0644); |
| 1201 | |
| 1202 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |
| 1203 | MODULE_LICENSE("GPL"); |