diff options
| -rw-r--r-- | drivers/media/common/ir-keytable.c | 137 | ||||
| -rw-r--r-- | include/media/ir-common.h | 2 |
2 files changed, 77 insertions, 62 deletions
diff --git a/drivers/media/common/ir-keytable.c b/drivers/media/common/ir-keytable.c index 6e3cc78c33b2..b06f023ca760 100644 --- a/drivers/media/common/ir-keytable.c +++ b/drivers/media/common/ir-keytable.c | |||
| @@ -10,6 +10,38 @@ | |||
| 10 | #define IR_TAB_MIN_SIZE 32 | 10 | #define IR_TAB_MIN_SIZE 32 |
| 11 | 11 | ||
| 12 | /** | 12 | /** |
| 13 | * ir_seek_table() - returns the element order on the table | ||
| 14 | * @rc_tab: the ir_scancode_table with the keymap to be used | ||
| 15 | * @scancode: the scancode that we're seeking | ||
| 16 | * | ||
| 17 | * This routine is used by the input routines when a key is pressed at the | ||
| 18 | * IR. The scancode is received and needs to be converted into a keycode. | ||
| 19 | * If the key is not found, it returns KEY_UNKNOWN. Otherwise, returns the | ||
| 20 | * corresponding keycode from the table. | ||
| 21 | */ | ||
| 22 | static int ir_seek_table(struct ir_scancode_table *rc_tab, u32 scancode) | ||
| 23 | { | ||
| 24 | int rc; | ||
| 25 | unsigned long flags; | ||
| 26 | struct ir_scancode *keymap = rc_tab->scan; | ||
| 27 | |||
| 28 | spin_lock_irqsave(&rc_tab->lock, flags); | ||
| 29 | |||
| 30 | /* FIXME: replace it by a binary search */ | ||
| 31 | |||
| 32 | for (rc = 0; rc < rc_tab->size; rc++) | ||
| 33 | if (keymap[rc].scancode == scancode) | ||
| 34 | goto exit; | ||
| 35 | |||
| 36 | /* Not found */ | ||
| 37 | rc = -EINVAL; | ||
| 38 | |||
| 39 | exit: | ||
| 40 | spin_unlock_irqrestore(&rc_tab->lock, flags); | ||
| 41 | return rc; | ||
| 42 | } | ||
| 43 | |||
| 44 | /** | ||
| 13 | * ir_roundup_tablesize() - gets an optimum value for the table size | 45 | * ir_roundup_tablesize() - gets an optimum value for the table size |
| 14 | * @n_elems: minimum number of entries to store keycodes | 46 | * @n_elems: minimum number of entries to store keycodes |
| 15 | * | 47 | * |
| @@ -54,21 +86,20 @@ int ir_copy_table(struct ir_scancode_table *destin, | |||
| 54 | int i, j = 0; | 86 | int i, j = 0; |
| 55 | 87 | ||
| 56 | for (i = 0; i < origin->size; i++) { | 88 | for (i = 0; i < origin->size; i++) { |
| 57 | if (origin->scan[i].keycode != KEY_UNKNOWN && | 89 | if (origin->scan[i].keycode == KEY_UNKNOWN || |
| 58 | origin->scan[i].keycode != KEY_RESERVED) { | 90 | origin->scan[i].keycode == KEY_RESERVED) |
| 59 | memcpy(&destin->scan[j], &origin->scan[i], | 91 | continue; |
| 60 | sizeof(struct ir_scancode)); | 92 | |
| 61 | j++; | 93 | memcpy(&destin->scan[j], &origin->scan[i], sizeof(struct ir_scancode)); |
| 62 | } | 94 | j++; |
| 63 | } | 95 | } |
| 64 | destin->size = j; | 96 | destin->size = j; |
| 65 | 97 | ||
| 66 | IR_dprintk(1, "Copied %d scancodes to the new keycode table\n", j); | 98 | IR_dprintk(1, "Copied %d scancodes to the new keycode table\n", destin->size); |
| 67 | 99 | ||
| 68 | return 0; | 100 | return 0; |
| 69 | } | 101 | } |
| 70 | 102 | ||
| 71 | |||
| 72 | /** | 103 | /** |
| 73 | * ir_getkeycode() - get a keycode at the evdev scancode ->keycode table | 104 | * ir_getkeycode() - get a keycode at the evdev scancode ->keycode table |
| 74 | * @dev: the struct input_dev device descriptor | 105 | * @dev: the struct input_dev device descriptor |
| @@ -81,28 +112,14 @@ int ir_copy_table(struct ir_scancode_table *destin, | |||
| 81 | static int ir_getkeycode(struct input_dev *dev, | 112 | static int ir_getkeycode(struct input_dev *dev, |
| 82 | int scancode, int *keycode) | 113 | int scancode, int *keycode) |
| 83 | { | 114 | { |
| 84 | int i; | 115 | int elem; |
| 85 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); | 116 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); |
| 86 | struct ir_scancode *keymap = rc_tab->scan; | ||
| 87 | |||
| 88 | /* See if we can match the raw key code. */ | ||
| 89 | for (i = 0; i < rc_tab->size; i++) | ||
| 90 | if (keymap[i].scancode == scancode) { | ||
| 91 | *keycode = keymap[i].keycode; | ||
| 92 | return 0; | ||
| 93 | } | ||
| 94 | 117 | ||
| 95 | /* | 118 | elem = ir_seek_table(rc_tab, scancode); |
| 96 | * If is there extra space, returns KEY_RESERVED, | 119 | if (elem >= 0) { |
| 97 | * otherwise, input core won't let ir_setkeycode | 120 | *keycode = rc_tab->scan[elem].keycode; |
| 98 | * to work | 121 | return 0; |
| 99 | */ | 122 | } |
| 100 | for (i = 0; i < rc_tab->size; i++) | ||
| 101 | if (keymap[i].keycode == KEY_RESERVED || | ||
| 102 | keymap[i].keycode == KEY_UNKNOWN) { | ||
| 103 | *keycode = KEY_RESERVED; | ||
| 104 | return 0; | ||
| 105 | } | ||
| 106 | 123 | ||
| 107 | return -EINVAL; | 124 | return -EINVAL; |
| 108 | } | 125 | } |
| @@ -120,40 +137,33 @@ static int ir_getkeycode(struct input_dev *dev, | |||
| 120 | static int ir_setkeycode(struct input_dev *dev, | 137 | static int ir_setkeycode(struct input_dev *dev, |
| 121 | int scancode, int keycode) | 138 | int scancode, int keycode) |
| 122 | { | 139 | { |
| 123 | int i; | 140 | int rc = 0; |
| 124 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); | 141 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); |
| 125 | struct ir_scancode *keymap = rc_tab->scan; | 142 | struct ir_scancode *keymap = rc_tab->scan; |
| 143 | unsigned long flags; | ||
| 126 | 144 | ||
| 127 | /* Search if it is replacing an existing keycode */ | 145 | /* Search if it is replacing an existing keycode */ |
| 128 | for (i = 0; i < rc_tab->size; i++) | 146 | rc = ir_seek_table(rc_tab, scancode); |
| 129 | if (keymap[i].scancode == scancode) { | 147 | if (rc <0) |
| 130 | keymap[i].keycode = keycode; | 148 | return rc; |
| 131 | return 0; | ||
| 132 | } | ||
| 133 | |||
| 134 | /* Search if is there a clean entry. If so, use it */ | ||
| 135 | for (i = 0; i < rc_tab->size; i++) | ||
| 136 | if (keymap[i].keycode == KEY_RESERVED || | ||
| 137 | keymap[i].keycode == KEY_UNKNOWN) { | ||
| 138 | keymap[i].scancode = scancode; | ||
| 139 | keymap[i].keycode = keycode; | ||
| 140 | return 0; | ||
| 141 | } | ||
| 142 | 149 | ||
| 143 | /* | 150 | IR_dprintk(1, "#%d: Replacing scan 0x%04x with key 0x%04x\n", |
| 144 | * FIXME: Currently, it is not possible to increase the size of | 151 | rc, scancode, keycode); |
| 145 | * scancode table. For it to happen, one possibility | ||
| 146 | * would be to allocate a table with key_map_size + 1, | ||
| 147 | * copying data, appending the new key on it, and freeing | ||
| 148 | * the old one - or maybe just allocating some spare space | ||
| 149 | */ | ||
| 150 | 152 | ||
| 151 | return -EINVAL; | 153 | clear_bit(keymap[rc].keycode, dev->keybit); |
| 154 | |||
| 155 | spin_lock_irqsave(&rc_tab->lock, flags); | ||
| 156 | keymap[rc].keycode = keycode; | ||
| 157 | spin_unlock_irqrestore(&rc_tab->lock, flags); | ||
| 158 | |||
| 159 | set_bit(keycode, dev->keybit); | ||
| 160 | |||
| 161 | return 0; | ||
| 152 | } | 162 | } |
| 153 | 163 | ||
| 154 | /** | 164 | /** |
| 155 | * ir_g_keycode_from_table() - gets the keycode that corresponds to a scancode | 165 | * ir_g_keycode_from_table() - gets the keycode that corresponds to a scancode |
| 156 | * @rc_tab: the ir_scancode_table with the keymap to be used | 166 | * @input_dev: the struct input_dev descriptor of the device |
| 157 | * @scancode: the scancode that we're seeking | 167 | * @scancode: the scancode that we're seeking |
| 158 | * | 168 | * |
| 159 | * This routine is used by the input routines when a key is pressed at the | 169 | * This routine is used by the input routines when a key is pressed at the |
| @@ -163,22 +173,23 @@ static int ir_setkeycode(struct input_dev *dev, | |||
| 163 | */ | 173 | */ |
| 164 | u32 ir_g_keycode_from_table(struct input_dev *dev, u32 scancode) | 174 | u32 ir_g_keycode_from_table(struct input_dev *dev, u32 scancode) |
| 165 | { | 175 | { |
| 166 | int i; | ||
| 167 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); | 176 | struct ir_scancode_table *rc_tab = input_get_drvdata(dev); |
| 168 | struct ir_scancode *keymap = rc_tab->scan; | 177 | struct ir_scancode *keymap = rc_tab->scan; |
| 178 | int elem; | ||
| 169 | 179 | ||
| 170 | for (i = 0; i < rc_tab->size; i++) | 180 | elem = ir_seek_table(rc_tab, scancode); |
| 171 | if (keymap[i].scancode == scancode) { | 181 | if (elem >= 0) { |
| 172 | IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n", | 182 | IR_dprintk(1, "%s: scancode 0x%04x keycode 0x%02x\n", |
| 173 | dev->name, scancode, keymap[i].keycode); | 183 | dev->name, scancode, keymap[elem].keycode); |
| 174 | 184 | ||
| 175 | return keymap[i].keycode; | 185 | return rc_tab->scan[elem].keycode; |
| 176 | } | 186 | } |
| 177 | 187 | ||
| 178 | printk(KERN_INFO "%s: unknown key for scancode 0x%04x\n", | 188 | printk(KERN_INFO "%s: unknown key for scancode 0x%04x\n", |
| 179 | dev->name, scancode); | 189 | dev->name, scancode); |
| 180 | 190 | ||
| 181 | return KEY_UNKNOWN; | 191 | /* Reports userspace that an unknown keycode were got */ |
| 192 | return KEY_RESERVED; | ||
| 182 | } | 193 | } |
| 183 | 194 | ||
| 184 | /** | 195 | /** |
| @@ -188,8 +199,8 @@ u32 ir_g_keycode_from_table(struct input_dev *dev, u32 scancode) | |||
| 188 | * @rc_tab: the struct ir_scancode_table table of scancode/keymap | 199 | * @rc_tab: the struct ir_scancode_table table of scancode/keymap |
| 189 | * | 200 | * |
| 190 | * This routine is used to initialize the input infrastructure to work with | 201 | * This routine is used to initialize the input infrastructure to work with |
| 191 | * an IR. It requires that the caller initializes the input_dev struct with | 202 | * an IR. |
| 192 | * some fields: name, | 203 | * It should be called before registering the IR device. |
| 193 | */ | 204 | */ |
| 194 | int ir_set_keycode_table(struct input_dev *input_dev, | 205 | int ir_set_keycode_table(struct input_dev *input_dev, |
| 195 | struct ir_scancode_table *rc_tab) | 206 | struct ir_scancode_table *rc_tab) |
| @@ -197,6 +208,8 @@ int ir_set_keycode_table(struct input_dev *input_dev, | |||
| 197 | struct ir_scancode *keymap = rc_tab->scan; | 208 | struct ir_scancode *keymap = rc_tab->scan; |
| 198 | int i; | 209 | int i; |
| 199 | 210 | ||
| 211 | spin_lock_init(&rc_tab->lock); | ||
| 212 | |||
| 200 | if (rc_tab->scan == NULL || !rc_tab->size) | 213 | if (rc_tab->scan == NULL || !rc_tab->size) |
| 201 | return -EINVAL; | 214 | return -EINVAL; |
| 202 | 215 | ||
diff --git a/include/media/ir-common.h b/include/media/ir-common.h index 452f6e86084d..e41a99ee353e 100644 --- a/include/media/ir-common.h +++ b/include/media/ir-common.h | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <linux/input.h> | 26 | #include <linux/input.h> |
| 27 | #include <linux/workqueue.h> | 27 | #include <linux/workqueue.h> |
| 28 | #include <linux/interrupt.h> | 28 | #include <linux/interrupt.h> |
| 29 | #include <linux/spinlock.h> | ||
| 29 | 30 | ||
| 30 | extern int media_ir_debug; /* media_ir_debug level (0,1,2) */ | 31 | extern int media_ir_debug; /* media_ir_debug level (0,1,2) */ |
| 31 | #define IR_dprintk(level, fmt, arg...) if (media_ir_debug >= level) \ | 32 | #define IR_dprintk(level, fmt, arg...) if (media_ir_debug >= level) \ |
| @@ -43,6 +44,7 @@ struct ir_scancode { | |||
| 43 | struct ir_scancode_table { | 44 | struct ir_scancode_table { |
| 44 | struct ir_scancode *scan; | 45 | struct ir_scancode *scan; |
| 45 | int size; | 46 | int size; |
| 47 | spinlock_t lock; | ||
| 46 | }; | 48 | }; |
| 47 | 49 | ||
| 48 | #define RC5_START(x) (((x)>>12)&3) | 50 | #define RC5_START(x) (((x)>>12)&3) |
