Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 1 | /* |
| 2 | * Remote Controller core header |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation version 2 of the License. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | */ |
| 13 | |
| 14 | #ifndef _IR_CORE |
| 15 | #define _IR_CORE |
| 16 | |
| 17 | #include <linux/input.h> |
| 18 | #include <linux/spinlock.h> |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 19 | #include <linux/kfifo.h> |
| 20 | #include <linux/time.h> |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 21 | |
| 22 | extern int ir_core_debug; |
| 23 | #define IR_dprintk(level, fmt, arg...) if (ir_core_debug >= level) \ |
| 24 | printk(KERN_DEBUG "%s: " fmt , __func__, ## arg) |
| 25 | |
Mauro Carvalho Chehab | 971e829 | 2009-12-14 13:53:37 -0300 | [diff] [blame] | 26 | #define IR_TYPE_UNKNOWN 0 |
| 27 | #define IR_TYPE_RC5 (1 << 0) /* Philips RC5 protocol */ |
| 28 | #define IR_TYPE_PD (1 << 1) /* Pulse distance encoded IR */ |
| 29 | #define IR_TYPE_NEC (1 << 2) |
| 30 | #define IR_TYPE_OTHER (((u64)1) << 63l) |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 31 | |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 32 | enum raw_event_type { |
| 33 | IR_SPACE = (1 << 0), |
| 34 | IR_PULSE = (1 << 1), |
| 35 | IR_START_EVENT = (1 << 2), |
| 36 | IR_STOP_EVENT = (1 << 3), |
| 37 | }; |
| 38 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 39 | struct ir_scancode { |
| 40 | u16 scancode; |
| 41 | u32 keycode; |
| 42 | }; |
| 43 | |
| 44 | struct ir_scancode_table { |
| 45 | struct ir_scancode *scan; |
| 46 | int size; |
Mauro Carvalho Chehab | 2915e5e | 2010-03-12 11:40:13 -0300 | [diff] [blame] | 47 | u64 ir_type; |
| 48 | char *name; |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 49 | spinlock_t lock; |
| 50 | }; |
| 51 | |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 52 | struct ir_dev_props { |
| 53 | unsigned long allowed_protos; |
| 54 | void *priv; |
Mauro Carvalho Chehab | 971e829 | 2009-12-14 13:53:37 -0300 | [diff] [blame] | 55 | int (*change_protocol)(void *priv, u64 ir_type); |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 56 | }; |
| 57 | |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 58 | struct ir_raw_event { |
| 59 | struct timespec delta; /* Time spent before event */ |
| 60 | enum raw_event_type type; /* event type */ |
| 61 | }; |
| 62 | |
| 63 | struct ir_raw_event_ctrl { |
| 64 | struct kfifo kfifo; /* fifo for the pulse/space events */ |
| 65 | struct timespec last_event; /* when last event occurred */ |
| 66 | }; |
Mauro Carvalho Chehab | 53f8702 | 2009-12-14 02:16:36 -0300 | [diff] [blame] | 67 | |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 68 | struct ir_input_dev { |
Mauro Carvalho Chehab | 945cdfa | 2010-03-11 12:41:56 -0300 | [diff] [blame] | 69 | struct device dev; /* device */ |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 70 | char *driver_name; /* Name of the driver module */ |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 71 | struct ir_scancode_table rc_tab; /* scan/key table */ |
| 72 | unsigned long devno; /* device number */ |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 73 | const struct ir_dev_props *props; /* Device properties */ |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 74 | struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */ |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame^] | 75 | |
| 76 | /* key info - needed by IR keycode handlers */ |
| 77 | u32 keycode; /* linux key code */ |
| 78 | int keypressed; /* current state */ |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 79 | }; |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 80 | |
Mauro Carvalho Chehab | 53f8702 | 2009-12-14 02:16:36 -0300 | [diff] [blame] | 81 | #define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr) |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 82 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 83 | /* Routines from ir-keytable.c */ |
| 84 | |
| 85 | u32 ir_g_keycode_from_table(struct input_dev *input_dev, |
| 86 | u32 scancode); |
| 87 | |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 88 | int ir_input_register(struct input_dev *dev, |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 89 | const struct ir_scancode_table *ir_codes, |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 90 | const struct ir_dev_props *props, |
| 91 | const char *driver_name); |
Mauro Carvalho Chehab | 38ef6aa | 2009-12-11 09:47:42 -0300 | [diff] [blame] | 92 | void ir_input_unregister(struct input_dev *input_dev); |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 93 | |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 94 | /* Routines from ir-sysfs.c */ |
| 95 | |
| 96 | int ir_register_class(struct input_dev *input_dev); |
| 97 | void ir_unregister_class(struct input_dev *input_dev); |
| 98 | |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 99 | /* Routines from ir-raw-event.c */ |
| 100 | int ir_raw_event_register(struct input_dev *input_dev); |
| 101 | void ir_raw_event_unregister(struct input_dev *input_dev); |
| 102 | int ir_raw_event_store(struct input_dev *input_dev, enum raw_event_type type); |
| 103 | int ir_raw_event_handle(struct input_dev *input_dev); |
| 104 | |
| 105 | /* from ir-nec-decoder.c */ |
| 106 | int ir_nec_decode(struct input_dev *input_dev, |
| 107 | struct ir_raw_event *evs, |
| 108 | int len); |
| 109 | |
| 110 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 111 | #endif |