blob: e9a0cbf67ff671917f29982e2c0d3ec088419a48 [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 Chehaba3572c32010-03-20 20:59:44 -030034enum raw_event_type {
35 IR_SPACE = (1 << 0),
36 IR_PULSE = (1 << 1),
37 IR_START_EVENT = (1 << 2),
38 IR_STOP_EVENT = (1 << 3),
39};
40
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -030041/**
42 * struct ir_dev_props - Allow caller drivers to set special properties
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -030043 * @driver_type: specifies if the driver or hardware have already a decoder,
44 * or if it needs to use the IR raw event decoders to produce a scancode
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -030045 * @allowed_protos: bitmask with the supported IR_TYPE_* protocols
46 * @scanmask: some hardware decoders are not capable of providing the full
47 * scancode to the application. As this is a hardware limit, we can't do
48 * anything with it. Yet, as the same keycode table can be used with other
49 * devices, a mask is provided to allow its usage. Drivers should generally
50 * leave this field in blank
51 * @priv: driver-specific data, to be used on the callbacks
52 * @change_protocol: allow changing the protocol used on hardware decoders
53 * @open: callback to allow drivers to enable polling/irq when IR input device
54 * is opened.
55 * @close: callback to allow drivers to disable polling/irq when IR input device
56 * is opened.
57 */
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030058struct ir_dev_props {
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -030059 enum rc_driver_type driver_type;
60 unsigned long allowed_protos;
61 u32 scanmask;
62 void *priv;
63 int (*change_protocol)(void *priv, u64 ir_type);
64 int (*open)(void *priv);
65 void (*close)(void *priv);
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030066};
67
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030068struct ir_raw_event_ctrl {
David Härdeman724e2492010-04-08 13:10:00 -030069 struct work_struct rx_work; /* for the rx decoding workqueue */
70 struct kfifo kfifo; /* fifo for the pulse/space durations */
71 ktime_t last_event; /* when last event occurred */
72 enum raw_event_type last_type; /* last event type */
73 struct input_dev *input_dev; /* pointer to the parent input_dev */
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030074};
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030075
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030076struct ir_input_dev {
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -030077 struct device dev; /* device */
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030078 char *driver_name; /* Name of the driver module */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030079 struct ir_scancode_table rc_tab; /* scan/key table */
80 unsigned long devno; /* device number */
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030081 const struct ir_dev_props *props; /* Device properties */
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030082 struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */
David Härdemana374fef2010-04-02 15:58:29 -030083 struct input_dev *input_dev; /* the input device associated with this device */
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -030084
85 /* key info - needed by IR keycode handlers */
David Härdemana374fef2010-04-02 15:58:29 -030086 spinlock_t keylock; /* protects the below members */
87 bool keypressed; /* current state */
88 unsigned long keyup_jiffies; /* when should the current keypress be released? */
89 struct timer_list timer_keyup; /* timer for releasing a keypress */
90 u32 last_keycode; /* keycode of last command */
91 u32 last_scancode; /* scancode of last command */
92 u8 last_toggle; /* toggle of last command */
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030093};
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030094
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030095struct ir_raw_handler {
96 struct list_head list;
97
David Härdeman724e2492010-04-08 13:10:00 -030098 int (*decode)(struct input_dev *input_dev, s64 duration);
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -030099 int (*raw_register)(struct input_dev *input_dev);
100 int (*raw_unregister)(struct input_dev *input_dev);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300101};
102
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -0300103#define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr)
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300104
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300105/* Routines from ir-keytable.c */
106
107u32 ir_g_keycode_from_table(struct input_dev *input_dev,
108 u32 scancode);
David Härdemana374fef2010-04-02 15:58:29 -0300109void ir_repeat(struct input_dev *dev);
110void ir_keydown(struct input_dev *dev, int scancode, u8 toggle);
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300111int __ir_input_register(struct input_dev *dev,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -0300112 const struct ir_scancode_table *ir_codes,
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300113 const struct ir_dev_props *props,
114 const char *driver_name);
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300115
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300116static inline int ir_input_register(struct input_dev *dev,
117 const char *map_name,
118 const struct ir_dev_props *props,
119 const char *driver_name) {
120 struct ir_scancode_table *ir_codes;
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300121 struct ir_input_dev *ir_dev;
122 int rc;
123
124 if (!map_name)
125 return -EINVAL;
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300126
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300127 ir_codes = get_rc_map(map_name);
128 if (!ir_codes)
129 return -EINVAL;
130
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300131 rc = __ir_input_register(dev, ir_codes, props, driver_name);
132 if (rc < 0)
133 return -EINVAL;
134
135 ir_dev = input_get_drvdata(dev);
136
137 if (!rc && ir_dev->props && ir_dev->props->change_protocol)
138 rc = ir_dev->props->change_protocol(ir_dev->props->priv,
139 ir_codes->ir_type);
140
141 return rc;
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300142}
143
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300144void ir_input_unregister(struct input_dev *input_dev);
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300145
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300146/* Routines from ir-sysfs.c */
147
148int ir_register_class(struct input_dev *input_dev);
149void ir_unregister_class(struct input_dev *input_dev);
150
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300151/* Routines from ir-raw-event.c */
152int ir_raw_event_register(struct input_dev *input_dev);
153void ir_raw_event_unregister(struct input_dev *input_dev);
David Härdeman724e2492010-04-08 13:10:00 -0300154void ir_raw_event_handle(struct input_dev *input_dev);
155int ir_raw_event_store(struct input_dev *input_dev, s64 duration);
156int ir_raw_event_store_edge(struct input_dev *input_dev, enum raw_event_type type);
157static inline void ir_raw_event_reset(struct input_dev *input_dev)
158{
159 ir_raw_event_store(input_dev, 0);
160 ir_raw_event_handle(input_dev);
161}
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300162int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler);
163void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300164void ir_raw_init(void);
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300165
166/* from ir-nec-decoder.c */
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300167#ifdef CONFIG_IR_NEC_DECODER_MODULE
168#define load_nec_decode() request_module("ir-nec-decoder")
169#else
170#define load_nec_decode() 0
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300171#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300172
Mauro Carvalho Chehabdb1423a2010-04-04 10:27:20 -0300173/* from ir-rc5-decoder.c */
174#ifdef CONFIG_IR_RC5_DECODER_MODULE
175#define load_rc5_decode() request_module("ir-rc5-decoder")
176#else
177#define load_rc5_decode() 0
178#endif
179
David Härdeman724e2492010-04-08 13:10:00 -0300180/* macros for ir decoders */
181#define PULSE(units) ((units))
182#define SPACE(units) (-(units))
183#define IS_RESET(duration) ((duration) == 0)
184#define IS_PULSE(duration) ((duration) > 0)
185#define IS_SPACE(duration) ((duration) < 0)
186#define DURATION(duration) (abs((duration)))
187#define IS_TRANSITION(x, y) ((x) * (y) < 0)
188#define DECREASE_DURATION(duration, amount) \
189 do { \
190 if (IS_SPACE(duration)) \
191 duration += (amount); \
192 else if (IS_PULSE(duration)) \
193 duration -= (amount); \
194 } while (0)
195
196#define TO_UNITS(duration, unit_len) \
197 ((int)((duration) > 0 ? \
198 DIV_ROUND_CLOSEST(abs((duration)), (unit_len)) :\
199 -DIV_ROUND_CLOSEST(abs((duration)), (unit_len))))
200#define TO_US(duration) ((int)TO_UNITS(duration, 1000))
201
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300202#endif /* _IR_CORE */