blob: 6dc37fae660609e278b4dd1977120a29ee28f636 [file] [log] [blame]
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03001/*
2 * Remote Controller core header
3 *
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -03004 * Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
5 *
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03006 * 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 Chehab446e4a62009-12-11 08:34:07 -030019#include <linux/spinlock.h>
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030020#include <linux/kfifo.h>
21#include <linux/time.h>
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -030022#include <linux/timer.h>
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -030023#include <media/rc-map.h>
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030024
25extern 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 Chehab626cf692010-04-06 23:21:46 -030029enum 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 Chehab9dfe4e82010-04-04 14:06:55 -030034/**
35 * struct ir_dev_props - Allow caller drivers to set special properties
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -030036 * @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 Chehab9dfe4e82010-04-04 14:06:55 -030038 * @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 Levitsky4a702eb2010-07-31 11:59:22 -030044 * @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 Levitskye5893332010-07-31 11:59:23 -030047 * @rx_resolution : resolution (in ns) of input sampler
48 * @tx_resolution: resolution (in ns) of output sampler
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -030049 * @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 Wilson9b7c54d2010-06-16 17:55:25 -030055 * @s_tx_mask: set transmitter mask (for devices with multiple tx outputs)
56 * @s_tx_carrier: set transmit carrier frequency
Maxim Levitskye5893332010-07-31 11:59:23 -030057 * @s_tx_duty_cycle: set transmit duty cycle (0% - 100%)
58 * @s_rx_carrier: inform driver about carrier it is expected to handle
Jarod Wilson9b7c54d2010-06-16 17:55:25 -030059 * @tx_ir: transmit IR
Maxim Levitsky4a702eb2010-07-31 11:59:22 -030060 * @s_idle: optional: enable/disable hardware idle mode, upon which,
Maxim Levitskye5893332010-07-31 11:59:23 -030061 device doesn't interrupt host until it sees IR pulses
62 * @s_learning_mode: enable wide band receiver used for learning
Maxim Levitsky46519182010-10-16 19:56:28 -030063 * @s_carrier_report: enable carrier reports
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -030064 */
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030065struct ir_dev_props {
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -030066 enum rc_driver_type driver_type;
67 unsigned long allowed_protos;
68 u32 scanmask;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -030069
70 u32 timeout;
71 u32 min_timeout;
72 u32 max_timeout;
73
Maxim Levitskye5893332010-07-31 11:59:23 -030074 u32 rx_resolution;
75 u32 tx_resolution;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -030076
Jarod Wilson9b7c54d2010-06-16 17:55:25 -030077 void *priv;
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -030078 int (*change_protocol)(void *priv, u64 ir_type);
79 int (*open)(void *priv);
80 void (*close)(void *priv);
Jarod Wilson9b7c54d2010-06-16 17:55:25 -030081 int (*s_tx_mask)(void *priv, u32 mask);
82 int (*s_tx_carrier)(void *priv, u32 carrier);
Maxim Levitskye5893332010-07-31 11:59:23 -030083 int (*s_tx_duty_cycle)(void *priv, u32 duty_cycle);
84 int (*s_rx_carrier_range)(void *priv, u32 min, u32 max);
Jarod Wilson30eb1be2010-07-02 00:38:09 -030085 int (*tx_ir)(void *priv, int *txbuf, u32 n);
Maxim Levitsky46519182010-10-16 19:56:28 -030086 void (*s_idle)(void *priv, bool enable);
Maxim Levitskye5893332010-07-31 11:59:23 -030087 int (*s_learning_mode)(void *priv, int enable);
Maxim Levitsky46519182010-10-16 19:56:28 -030088 int (*s_carrier_report) (void *priv, int enable);
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030089};
90
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030091struct ir_input_dev {
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -030092 struct device dev; /* device */
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030093 char *driver_name; /* Name of the driver module */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030094 struct ir_scancode_table rc_tab; /* scan/key table */
95 unsigned long devno; /* device number */
Maxim Levitsky4a702eb2010-07-31 11:59:22 -030096 struct ir_dev_props *props; /* Device properties */
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030097 struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */
David Härdemana374fef2010-04-02 15:58:29 -030098 struct input_dev *input_dev; /* the input device associated with this device */
Maxim Levitsky4a702eb2010-07-31 11:59:22 -030099 bool idle;
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -0300100
101 /* key info - needed by IR keycode handlers */
David Härdemana374fef2010-04-02 15:58:29 -0300102 spinlock_t keylock; /* protects the below members */
103 bool keypressed; /* current state */
104 unsigned long keyup_jiffies; /* when should the current keypress be released? */
105 struct timer_list timer_keyup; /* timer for releasing a keypress */
106 u32 last_keycode; /* keycode of last command */
107 u32 last_scancode; /* scancode of last command */
108 u8 last_toggle; /* toggle of last command */
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300109};
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300110
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -0300111enum raw_event_type {
112 IR_SPACE = (1 << 0),
113 IR_PULSE = (1 << 1),
114 IR_START_EVENT = (1 << 2),
115 IR_STOP_EVENT = (1 << 3),
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300116};
117
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -0300118#define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr)
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300119
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -0300120/* From ir-keytable.c */
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300121int __ir_input_register(struct input_dev *dev,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -0300122 const struct ir_scancode_table *ir_codes,
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300123 struct ir_dev_props *props,
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300124 const char *driver_name);
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300125
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300126static inline int ir_input_register(struct input_dev *dev,
127 const char *map_name,
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300128 struct ir_dev_props *props,
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300129 const char *driver_name) {
130 struct ir_scancode_table *ir_codes;
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300131 struct ir_input_dev *ir_dev;
132 int rc;
133
134 if (!map_name)
135 return -EINVAL;
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300136
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300137 ir_codes = get_rc_map(map_name);
Maxim Levitskyb378f432010-07-31 11:59:21 -0300138 if (!ir_codes) {
139 ir_codes = get_rc_map(RC_MAP_EMPTY);
140
141 if (!ir_codes)
142 return -EINVAL;
143 }
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300144
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300145 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 Chehabb2245ba2010-04-02 13:18:42 -0300156}
157
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300158void ir_input_unregister(struct input_dev *input_dev);
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300159
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -0300160void ir_repeat(struct input_dev *dev);
161void ir_keydown(struct input_dev *dev, int scancode, u8 toggle);
Jarod Wilsonee089402010-09-15 15:31:12 -0300162void ir_keyup(struct ir_input_dev *ir);
Jarod Wilson1c0e0ee2010-04-16 18:27:58 -0300163u32 ir_g_keycode_from_table(struct input_dev *input_dev, u32 scancode);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300164
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -0300165/* From ir-raw-event.c */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300166
David Härdemane40b1122010-04-15 18:46:00 -0300167struct ir_raw_event {
Maxim Levitsky46519182010-10-16 19:56:28 -0300168 union {
169 u32 duration;
170
171 struct {
172 u32 carrier;
173 u8 duty_cycle;
174 };
175 };
176
177 unsigned pulse:1;
178 unsigned reset:1;
179 unsigned timeout:1;
180 unsigned carrier_report:1;
David Härdemane40b1122010-04-15 18:46:00 -0300181};
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300182
Maxim Levitsky46519182010-10-16 19:56:28 -0300183#define DEFINE_IR_RAW_EVENT(event) \
184 struct ir_raw_event event = { \
185 { .duration = 0 } , \
186 .pulse = 0, \
187 .reset = 0, \
188 .timeout = 0, \
189 .carrier_report = 0 }
190
191static inline void init_ir_raw_event(struct ir_raw_event *ev)
192{
193 memset(ev, 0, sizeof(*ev));
194}
195
196#define IR_MAX_DURATION 0xFFFFFFFF /* a bit more than 4 seconds */
David Härdemane40b1122010-04-15 18:46:00 -0300197
198void ir_raw_event_handle(struct input_dev *input_dev);
199int ir_raw_event_store(struct input_dev *input_dev, struct ir_raw_event *ev);
200int ir_raw_event_store_edge(struct input_dev *input_dev, enum raw_event_type type);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300201int ir_raw_event_store_with_filter(struct input_dev *input_dev,
202 struct ir_raw_event *ev);
Maxim Levitsky46519182010-10-16 19:56:28 -0300203void ir_raw_event_set_idle(struct input_dev *input_dev, bool idle);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300204
David Härdemane40b1122010-04-15 18:46:00 -0300205static inline void ir_raw_event_reset(struct input_dev *input_dev)
206{
Maxim Levitsky46519182010-10-16 19:56:28 -0300207 DEFINE_IR_RAW_EVENT(ev);
208 ev.reset = true;
209
David Härdemane40b1122010-04-15 18:46:00 -0300210 ir_raw_event_store(input_dev, &ev);
211 ir_raw_event_handle(input_dev);
212}
David Härdeman724e2492010-04-08 13:10:00 -0300213
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300214#endif /* _IR_CORE */