aboutsummaryrefslogtreecommitdiffstats
path: root/include/media/ir-common.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-11-27 20:01:23 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-12-05 15:42:19 -0500
commitef53a1159dfcdc1fecf5adb5b8d26803f194c09b (patch)
tree34e477e3db2a69c6cfa6607933f552c2c89d952b /include/media/ir-common.h
parent4e89217b943cfb26f88f04920d44f2077931f0e7 (diff)
V4L/DVB (13532): ir-common: Add infrastructure to use a dynamic keycode table
V4L drivers use an static keycode vector with 128 entries, where the scancode indexes the keycode. While this works, it limits the scancodes to have only 7 bits, not allowing for example full RC5 codes. Instead of implementing the same code on every V4L driver, provide a common infrastructure to handle the bigger tables, minimizing the changes inside each driver. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/ir-common.h')
-rw-r--r--include/media/ir-common.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/media/ir-common.h b/include/media/ir-common.h
index 5964145d65e6..805f1e09770f 100644
--- a/include/media/ir-common.h
+++ b/include/media/ir-common.h
@@ -106,6 +106,8 @@ struct card_ir {
106 struct tasklet_struct tlet; 106 struct tasklet_struct tlet;
107}; 107};
108 108
109/* Routines from ir-functions.c */
110
109void ir_input_init(struct input_dev *dev, struct ir_input_state *ir, 111void ir_input_init(struct input_dev *dev, struct ir_input_state *ir,
110 int ir_type, struct ir_scancode_table *ir_codes); 112 int ir_type, struct ir_scancode_table *ir_codes);
111void ir_input_nokey(struct input_dev *dev, struct ir_input_state *ir); 113void ir_input_nokey(struct input_dev *dev, struct ir_input_state *ir);
@@ -120,7 +122,15 @@ u32 ir_rc5_decode(unsigned int code);
120void ir_rc5_timer_end(unsigned long data); 122void ir_rc5_timer_end(unsigned long data);
121void ir_rc5_timer_keyup(unsigned long data); 123void ir_rc5_timer_keyup(unsigned long data);
122 124
123/* Keymaps to be used by other modules */ 125/* Routines from ir-keytable.c */
126
127u32 ir_g_keycode_from_table(struct input_dev *input_dev,
128 u32 scancode);
129
130int ir_set_keycode_table(struct input_dev *input_dev,
131 struct ir_scancode_table *rc_tab);
132
133/* scancode->keycode map tables from ir-keymaps.c */
124 134
125extern struct ir_scancode_table ir_codes_empty_table; 135extern struct ir_scancode_table ir_codes_empty_table;
126extern struct ir_scancode_table ir_codes_avermedia_table; 136extern struct ir_scancode_table ir_codes_avermedia_table;