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 | |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 19 | #include <linux/spinlock.h> |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 20 | #include <linux/kfifo.h> |
| 21 | #include <linux/time.h> |
Mauro Carvalho Chehab | 9f15478 | 2010-03-21 13:00:55 -0300 | [diff] [blame] | 22 | #include <linux/timer.h> |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 23 | #include <media/rc-map.h> |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 24 | |
| 25 | extern int ir_core_debug; |
| 26 | #define IR_dprintk(level, fmt, arg...) if (ir_core_debug >= level) \ |
| 27 | printk(KERN_DEBUG "%s: " fmt , __func__, ## arg) |
| 28 | |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 29 | enum rc_driver_type { |
| 30 | RC_DRIVER_SCANCODE = 0, /* Driver or hardware generates a scancode */ |
| 31 | RC_DRIVER_IR_RAW, /* Needs a Infra-Red pulse/space decoder */ |
| 32 | }; |
| 33 | |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 34 | /** |
| 35 | * struct ir_dev_props - Allow caller drivers to set special properties |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 36 | * @driver_type: specifies if the driver or hardware have already a decoder, |
| 37 | * or if it needs to use the IR raw event decoders to produce a scancode |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 38 | * @allowed_protos: bitmask with the supported IR_TYPE_* protocols |
| 39 | * @scanmask: some hardware decoders are not capable of providing the full |
| 40 | * scancode to the application. As this is a hardware limit, we can't do |
| 41 | * anything with it. Yet, as the same keycode table can be used with other |
| 42 | * devices, a mask is provided to allow its usage. Drivers should generally |
| 43 | * leave this field in blank |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 44 | * @timeout: optional time after which device stops sending data |
| 45 | * @min_timeout: minimum timeout supported by device |
| 46 | * @max_timeout: maximum timeout supported by device |
Maxim Levitsky | e589333 | 2010-07-31 11:59:23 -0300 | [diff] [blame] | 47 | * @rx_resolution : resolution (in ns) of input sampler |
| 48 | * @tx_resolution: resolution (in ns) of output sampler |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 49 | * @priv: driver-specific data, to be used on the callbacks |
| 50 | * @change_protocol: allow changing the protocol used on hardware decoders |
| 51 | * @open: callback to allow drivers to enable polling/irq when IR input device |
| 52 | * is opened. |
| 53 | * @close: callback to allow drivers to disable polling/irq when IR input device |
| 54 | * is opened. |
Jarod Wilson | 9b7c54d | 2010-06-16 17:55:25 -0300 | [diff] [blame] | 55 | * @s_tx_mask: set transmitter mask (for devices with multiple tx outputs) |
| 56 | * @s_tx_carrier: set transmit carrier frequency |
Maxim Levitsky | e589333 | 2010-07-31 11:59:23 -0300 | [diff] [blame] | 57 | * @s_tx_duty_cycle: set transmit duty cycle (0% - 100%) |
| 58 | * @s_rx_carrier: inform driver about carrier it is expected to handle |
Jarod Wilson | 9b7c54d | 2010-06-16 17:55:25 -0300 | [diff] [blame] | 59 | * @tx_ir: transmit IR |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 60 | * @s_idle: optional: enable/disable hardware idle mode, upon which, |
Maxim Levitsky | e589333 | 2010-07-31 11:59:23 -0300 | [diff] [blame] | 61 | device doesn't interrupt host until it sees IR pulses |
| 62 | * @s_learning_mode: enable wide band receiver used for learning |
Mauro Carvalho Chehab | 9dfe4e8 | 2010-04-04 14:06:55 -0300 | [diff] [blame] | 63 | */ |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 64 | struct ir_dev_props { |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 65 | enum rc_driver_type driver_type; |
| 66 | unsigned long allowed_protos; |
| 67 | u32 scanmask; |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 68 | |
| 69 | u32 timeout; |
| 70 | u32 min_timeout; |
| 71 | u32 max_timeout; |
| 72 | |
Maxim Levitsky | e589333 | 2010-07-31 11:59:23 -0300 | [diff] [blame] | 73 | u32 rx_resolution; |
| 74 | u32 tx_resolution; |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 75 | |
Jarod Wilson | 9b7c54d | 2010-06-16 17:55:25 -0300 | [diff] [blame] | 76 | void *priv; |
Mauro Carvalho Chehab | 626cf69 | 2010-04-06 23:21:46 -0300 | [diff] [blame] | 77 | int (*change_protocol)(void *priv, u64 ir_type); |
| 78 | int (*open)(void *priv); |
| 79 | void (*close)(void *priv); |
Jarod Wilson | 9b7c54d | 2010-06-16 17:55:25 -0300 | [diff] [blame] | 80 | int (*s_tx_mask)(void *priv, u32 mask); |
| 81 | int (*s_tx_carrier)(void *priv, u32 carrier); |
Maxim Levitsky | e589333 | 2010-07-31 11:59:23 -0300 | [diff] [blame] | 82 | int (*s_tx_duty_cycle)(void *priv, u32 duty_cycle); |
| 83 | int (*s_rx_carrier_range)(void *priv, u32 min, u32 max); |
Jarod Wilson | 30eb1be | 2010-07-02 00:38:09 -0300 | [diff] [blame] | 84 | int (*tx_ir)(void *priv, int *txbuf, u32 n); |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 85 | void (*s_idle)(void *priv, int enable); |
Maxim Levitsky | e589333 | 2010-07-31 11:59:23 -0300 | [diff] [blame] | 86 | int (*s_learning_mode)(void *priv, int enable); |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 87 | }; |
| 88 | |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 89 | struct ir_input_dev { |
Mauro Carvalho Chehab | 945cdfa | 2010-03-11 12:41:56 -0300 | [diff] [blame] | 90 | struct device dev; /* device */ |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 91 | char *driver_name; /* Name of the driver module */ |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 92 | struct ir_scancode_table rc_tab; /* scan/key table */ |
| 93 | unsigned long devno; /* device number */ |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 94 | struct ir_dev_props *props; /* Device properties */ |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 95 | struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */ |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 96 | struct input_dev *input_dev; /* the input device associated with this device */ |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 97 | bool idle; |
Mauro Carvalho Chehab | 6660de5 | 2010-03-21 12:15:16 -0300 | [diff] [blame] | 98 | |
| 99 | /* key info - needed by IR keycode handlers */ |
David Härdeman | a374fef | 2010-04-02 15:58:29 -0300 | [diff] [blame] | 100 | spinlock_t keylock; /* protects the below members */ |
| 101 | bool keypressed; /* current state */ |
| 102 | unsigned long keyup_jiffies; /* when should the current keypress be released? */ |
| 103 | struct timer_list timer_keyup; /* timer for releasing a keypress */ |
| 104 | u32 last_keycode; /* keycode of last command */ |
| 105 | u32 last_scancode; /* scancode of last command */ |
| 106 | u8 last_toggle; /* toggle of last command */ |
Mauro Carvalho Chehab | 75543cc | 2009-12-11 09:44:23 -0300 | [diff] [blame] | 107 | }; |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 108 | |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 109 | enum raw_event_type { |
| 110 | IR_SPACE = (1 << 0), |
| 111 | IR_PULSE = (1 << 1), |
| 112 | IR_START_EVENT = (1 << 2), |
| 113 | IR_STOP_EVENT = (1 << 3), |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 114 | }; |
| 115 | |
Mauro Carvalho Chehab | 53f8702 | 2009-12-14 02:16:36 -0300 | [diff] [blame] | 116 | #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] | 117 | |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 118 | /* From ir-keytable.c */ |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 119 | int __ir_input_register(struct input_dev *dev, |
Mauro Carvalho Chehab | e93854d | 2009-12-14 00:16:55 -0300 | [diff] [blame] | 120 | const struct ir_scancode_table *ir_codes, |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 121 | struct ir_dev_props *props, |
Mauro Carvalho Chehab | 727e625 | 2010-03-12 21:18:14 -0300 | [diff] [blame] | 122 | const char *driver_name); |
Mauro Carvalho Chehab | 446e4a6 | 2009-12-11 08:34:07 -0300 | [diff] [blame] | 123 | |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 124 | static inline int ir_input_register(struct input_dev *dev, |
| 125 | const char *map_name, |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 126 | struct ir_dev_props *props, |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 127 | const char *driver_name) { |
| 128 | struct ir_scancode_table *ir_codes; |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 129 | struct ir_input_dev *ir_dev; |
| 130 | int rc; |
| 131 | |
| 132 | if (!map_name) |
| 133 | return -EINVAL; |
Mauro Carvalho Chehab | 9ce50c1 | 2010-04-02 02:33:35 -0300 | [diff] [blame] | 134 | |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 135 | ir_codes = get_rc_map(map_name); |
Maxim Levitsky | b378f43 | 2010-07-31 11:59:21 -0300 | [diff] [blame] | 136 | if (!ir_codes) { |
| 137 | ir_codes = get_rc_map(RC_MAP_EMPTY); |
| 138 | |
| 139 | if (!ir_codes) |
| 140 | return -EINVAL; |
| 141 | } |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 142 | |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 143 | rc = __ir_input_register(dev, ir_codes, props, driver_name); |
| 144 | if (rc < 0) |
| 145 | return -EINVAL; |
| 146 | |
| 147 | ir_dev = input_get_drvdata(dev); |
| 148 | |
| 149 | if (!rc && ir_dev->props && ir_dev->props->change_protocol) |
| 150 | rc = ir_dev->props->change_protocol(ir_dev->props->priv, |
| 151 | ir_codes->ir_type); |
| 152 | |
| 153 | return rc; |
Mauro Carvalho Chehab | b2245ba | 2010-04-02 13:18:42 -0300 | [diff] [blame] | 154 | } |
| 155 | |
Mauro Carvalho Chehab | 02858ee | 2010-04-02 20:01:00 -0300 | [diff] [blame] | 156 | void ir_input_unregister(struct input_dev *input_dev); |
Mauro Carvalho Chehab | 9ce50c1 | 2010-04-02 02:33:35 -0300 | [diff] [blame] | 157 | |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 158 | void ir_repeat(struct input_dev *dev); |
| 159 | void ir_keydown(struct input_dev *dev, int scancode, u8 toggle); |
Jarod Wilson | 1c0e0ee | 2010-04-16 18:27:58 -0300 | [diff] [blame] | 160 | u32 ir_g_keycode_from_table(struct input_dev *input_dev, u32 scancode); |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 161 | |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 162 | /* From ir-raw-event.c */ |
Mauro Carvalho Chehab | 4714eda | 2009-12-13 16:00:08 -0300 | [diff] [blame] | 163 | |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 164 | struct ir_raw_event { |
| 165 | unsigned pulse:1; |
| 166 | unsigned duration:31; |
| 167 | }; |
Mauro Carvalho Chehab | a3572c3 | 2010-03-20 20:59:44 -0300 | [diff] [blame] | 168 | |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 169 | #define IR_MAX_DURATION 0x7FFFFFFF /* a bit more than 2 seconds */ |
| 170 | |
| 171 | void ir_raw_event_handle(struct input_dev *input_dev); |
| 172 | int ir_raw_event_store(struct input_dev *input_dev, struct ir_raw_event *ev); |
| 173 | int ir_raw_event_store_edge(struct input_dev *input_dev, enum raw_event_type type); |
Maxim Levitsky | 4a702eb | 2010-07-31 11:59:22 -0300 | [diff] [blame] | 174 | int ir_raw_event_store_with_filter(struct input_dev *input_dev, |
| 175 | struct ir_raw_event *ev); |
| 176 | void ir_raw_event_set_idle(struct input_dev *input_dev, int idle); |
| 177 | |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 178 | static inline void ir_raw_event_reset(struct input_dev *input_dev) |
| 179 | { |
| 180 | struct ir_raw_event ev = { .pulse = false, .duration = 0 }; |
| 181 | ir_raw_event_store(input_dev, &ev); |
| 182 | ir_raw_event_handle(input_dev); |
| 183 | } |
David Härdeman | 724e249 | 2010-04-08 13:10:00 -0300 | [diff] [blame] | 184 | |
Mauro Carvalho Chehab | 995187b | 2010-03-24 20:47:53 -0300 | [diff] [blame] | 185 | #endif /* _IR_CORE */ |