]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/media/ir-kbd-i2c.h
8139cp: fix checksum broken
[net-next-2.6.git] / include / media / ir-kbd-i2c.h
CommitLineData
d5e52653
MCC
1#ifndef _IR_I2C
2#define _IR_I2C
3
4#include <media/ir-common.h>
5
c72ba8e6
MCC
6#define DEFAULT_POLLING_INTERVAL 100 /* ms */
7
d5e52653
MCC
8struct IR_i2c;
9
10struct IR_i2c {
02858eed 11 char *ir_codes;
715a2233 12
c668f32d 13 struct i2c_client *c;
d5e52653
MCC
14 struct input_dev *input;
15 struct ir_input_state ir;
0dc50942 16 u64 ir_type;
d5e52653
MCC
17 /* Used to avoid fast repeating */
18 unsigned char old;
19
c72ba8e6
MCC
20 u32 polling_interval; /* in ms */
21
c1089bdc 22 struct delayed_work work;
1df8e986 23 char name[32];
d5e52653
MCC
24 char phys[32];
25 int (*get_key)(struct IR_i2c*, u32*, u32*);
26};
4d7a2d67 27
1b6e59e3
AW
28enum ir_kbd_get_key_fn {
29 IR_KBD_GET_KEY_CUSTOM = 0,
30 IR_KBD_GET_KEY_PIXELVIEW,
1b6e59e3
AW
31 IR_KBD_GET_KEY_HAUP,
32 IR_KBD_GET_KEY_KNC1,
33 IR_KBD_GET_KEY_FUSIONHDTV,
34 IR_KBD_GET_KEY_HAUP_XVR,
35 IR_KBD_GET_KEY_AVERMEDIA_CARDBUS,
36};
37
4d7a2d67
JD
38/* Can be passed when instantiating an ir_video i2c device */
39struct IR_i2c_init_data {
02858eed 40 char *ir_codes;
c72ba8e6
MCC
41 const char *name;
42 u64 type; /* IR_TYPE_RC5, etc */
43 u32 polling_interval; /* 0 means DEFAULT_POLLING_INTERVAL */
1b6e59e3
AW
44 /*
45 * Specify either a function pointer or a value indicating one of
46 * ir_kbd_i2c's internal get_key functions
47 */
4d7a2d67 48 int (*get_key)(struct IR_i2c*, u32*, u32*);
1b6e59e3 49 enum ir_kbd_get_key_fn internal_get_key_func;
4d7a2d67 50};
d5e52653 51#endif