Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 1 | /* |
| 2 | * Remote Controller core header |
| 3 | * |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 4 | * Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com> |
| 5 | * |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #ifndef _IR_CORE |
| 17 | #define _IR_CORE |
| 18 | |
| 19 | #include <linux/input.h> |
| 20 | #include <linux/spinlock.h> |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 21 | #include <linux/kfifo.h> |
| 22 | #include <linux/time.h> |
Mauro Carvalho Chehab | 9f15478 | 2010-03-21 13:00:55 -0300 | [diff] [blame] | 23 | #include <linux/timer.h> |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 24 | #include <media/rc-map.h> |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 25 | |
| 26 | extern int ir_core_debug; |
| 27 | #define IR_dprintk(level, fmt, arg...) if (ir_core_debug >= level) \ |
| 28 | printk(KERN_DEBUG "%s: " fmt , __func__, ## arg) |
| 29 | |
Mauro Carvalho Chehab | 971e829 | 2009-12-14 13:53:37 -0300 | [diff] [blame] | 30 | #define IR_TYPE_UNKNOWN 0 |
| 31 | #define IR_TYPE_RC5 (1 << 0) /* Philips RC5 protocol */ |
| 32 | #define IR_TYPE_PD (1 << 1) /* Pulse distance encoded IR */ |
| 33 | #define IR_TYPE_NEC (1 << 2) |
| 34 | #define IR_TYPE_OTHER (((u64)1) << 63l) |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 35 | |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 36 | enum raw_event_type { |
| 37 | IR_SPACE = (1 << 0), |
| 38 | IR_PULSE = (1 << 1), |
| 39 | IR_START_EVENT = (1 << 2), |
| 40 | IR_STOP_EVENT = (1 << 3), |
| 41 | }; |
| 42 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 43 | struct ir_scancode { |
| 44 | u16 scancode; |
| 45 | u32 keycode; |
| 46 | }; |
| 47 | |
| 48 | struct ir_scancode_table { |
| 49 | struct ir_scancode *scan; |
David Härdeman | b3074c0 | 2010-04-02 15:58:28 -0300 | [diff] [blame] | 50 | unsigned int size; /* Max number of entries */ |
| 51 | unsigned int len; /* Used number of entries */ |
| 52 | unsigned int alloc; /* Size of *scan in bytes */ |
Mauro Carvalho Chehab | 2915e5e | 2010-03-12 11:40:13 -0300 | [diff] [blame] | 53 | u64 ir_type; |
| 54 | char *name; |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 55 | spinlock_t lock; |
| 56 | }; |
| 57 | |
Mauro Carvalho Chehab | 9ce50c1 | 2010-04-02 02:33:35 -0300 | [diff] [blame] | 58 | struct rc_keymap { |
| 59 | struct list_head list; |
| 60 | struct ir_scancode_table map; |
| 61 | }; |
| 62 | |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 63 | struct ir_dev_props { |
| 64 | unsigned long allowed_protos; |
| 65 | void *priv; |
Mauro Carvalho Chehab | 971e829 | 2009-12-14 13:53:37 -0300 | [diff] [blame] | 66 | int (*change_protocol)(void *priv, u64 ir_type); |
Mauro Carvalho Chehab | 716aab4 | 2010-03-31 14:40:35 -0300 | [diff] [blame] | 67 | int (*open)(void *priv); |
| 68 | void (*close)(void *priv); |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 69 | }; |
| 70 | |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 71 | struct ir_raw_event { |
| 72 | struct timespec delta; /* Time spent before event */ |
| 73 | enum raw_event_type type; /* event type */ |
| 74 | }; |
| 75 | |
| 76 | struct ir_raw_event_ctrl { |
| 77 | struct kfifo kfifo; /* fifo for the pulse/space events */ |
| 78 | struct timespec last_event; /* when last event occurred */ |
| 79 | }; |
Mauro Carvalho Chehab | 53f8702 | 2009-12-14 02:16:36 -0300 | [diff] [blame] | 80 | |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 81 | struct ir_input_dev { |
Mauro Carvalho Chehab | 945cdfa | 2010-03-11 12:41:56 -0300 | [diff] [blame] | 82 | struct device dev; /* device */ |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 83 | char *driver_name; /* Name of the driver module */ |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 84 | struct ir_scancode_table rc_tab; /* scan/key table */ |
| 85 | unsigned long devno; /* device number */ |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 86 | const struct ir_dev_props *props; /* Device properties */ |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 87 | struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */ |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame^] | 88 | struct input_dev *input_dev; /* the input device associated with this device */ |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 89 | |
| 90 | /* key info - needed by IR keycode handlers */ |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame^] | 91 | spinlock_t keylock; /* protects the below members */ |
| 92 | bool keypressed; /* current state */ |
| 93 | unsigned long keyup_jiffies; /* when should the current keypress be released? */ |
| 94 | struct timer_list timer_keyup; /* timer for releasing a keypress */ |
| 95 | u32 last_keycode; /* keycode of last command */ |
| 96 | u32 last_scancode; /* scancode of last command */ |
| 97 | u8 last_toggle; /* toggle of last command */ |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 98 | }; |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 99 | |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 100 | struct ir_raw_handler { |
| 101 | struct list_head list; |
| 102 | |
| 103 | int (*decode)(struct input_dev *input_dev, |
| 104 | struct ir_raw_event *evs, |
| 105 | int len); |
Mauro Carvalho Chehab | 93c312f | 2010-03-25 21:13:43 -0300 | [diff] [blame] | 106 | int (*raw_register)(struct input_dev *input_dev); |
| 107 | int (*raw_unregister)(struct input_dev *input_dev); |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 108 | }; |
| 109 | |
Mauro Carvalho Chehab | 53f8702 | 2009-12-14 02:16:36 -0300 | [diff] [blame] | 110 | #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] | 111 | |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 112 | /* Routines from rc-map.c */ |
| 113 | |
| 114 | int ir_register_map(struct rc_keymap *map); |
| 115 | void ir_unregister_map(struct rc_keymap *map); |
| 116 | struct ir_scancode_table *get_rc_map(const char *name); |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 117 | void rc_map_init(void); |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 118 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 119 | /* Routines from ir-keytable.c */ |
| 120 | |
| 121 | u32 ir_g_keycode_from_table(struct input_dev *input_dev, |
| 122 | u32 scancode); |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame^] | 123 | void ir_repeat(struct input_dev *dev); |
| 124 | void ir_keydown(struct input_dev *dev, int scancode, u8 toggle); |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 125 | int __ir_input_register(struct input_dev *dev, |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 126 | const struct ir_scancode_table *ir_codes, |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 127 | const struct ir_dev_props *props, |
| 128 | const char *driver_name); |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 129 | |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 130 | static inline int ir_input_register(struct input_dev *dev, |
| 131 | const char *map_name, |
| 132 | const struct ir_dev_props *props, |
| 133 | const char *driver_name) { |
| 134 | struct ir_scancode_table *ir_codes; |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 135 | struct ir_input_dev *ir_dev; |
| 136 | int rc; |
| 137 | |
| 138 | if (!map_name) |
| 139 | return -EINVAL; |
Mauro Carvalho Chehab | 9ce50c1 | 2010-04-02 02:33:35 -0300 | [diff] [blame] | 140 | |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 141 | ir_codes = get_rc_map(map_name); |
| 142 | if (!ir_codes) |
| 143 | return -EINVAL; |
| 144 | |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 145 | rc = __ir_input_register(dev, ir_codes, props, driver_name); |
| 146 | if (rc < 0) |
| 147 | return -EINVAL; |
| 148 | |
| 149 | ir_dev = input_get_drvdata(dev); |
| 150 | |
| 151 | if (!rc && ir_dev->props && ir_dev->props->change_protocol) |
| 152 | rc = ir_dev->props->change_protocol(ir_dev->props->priv, |
| 153 | ir_codes->ir_type); |
| 154 | |
| 155 | return rc; |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 156 | } |
| 157 | |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 158 | void ir_input_unregister(struct input_dev *input_dev); |
Mauro Carvalho Chehab | 9ce50c1 | 2010-04-02 02:33:35 -0300 | [diff] [blame] | 159 | |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 160 | /* Routines from ir-sysfs.c */ |
| 161 | |
| 162 | int ir_register_class(struct input_dev *input_dev); |
| 163 | void ir_unregister_class(struct input_dev *input_dev); |
| 164 | |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 165 | /* Routines from ir-raw-event.c */ |
| 166 | int ir_raw_event_register(struct input_dev *input_dev); |
| 167 | void ir_raw_event_unregister(struct input_dev *input_dev); |
| 168 | int ir_raw_event_store(struct input_dev *input_dev, enum raw_event_type type); |
| 169 | int ir_raw_event_handle(struct input_dev *input_dev); |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 170 | int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler); |
| 171 | void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler); |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 172 | void ir_raw_init(void); |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 173 | |
| 174 | /* from ir-nec-decoder.c */ |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 175 | #ifdef CONFIG_IR_NEC_DECODER_MODULE |
| 176 | #define load_nec_decode() request_module("ir-nec-decoder") |
| 177 | #else |
| 178 | #define load_nec_decode() 0 |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 179 | #endif |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 180 | |
| 181 | #endif /* _IR_CORE */ |