blob: 8e975f24dae1c6f8cdac62cb14dd02b11e71070e [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
19#include <linux/input.h>
20#include <linux/spinlock.h>
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030021#include <linux/kfifo.h>
22#include <linux/time.h>
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -030023#include <linux/timer.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 Chehab971e8292009-12-14 13:53:37 -030029#define IR_TYPE_UNKNOWN 0
30#define IR_TYPE_RC5 (1 << 0) /* Philips RC5 protocol */
31#define IR_TYPE_PD (1 << 1) /* Pulse distance encoded IR */
32#define IR_TYPE_NEC (1 << 2)
33#define IR_TYPE_OTHER (((u64)1) << 63l)
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030034
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030035enum raw_event_type {
36 IR_SPACE = (1 << 0),
37 IR_PULSE = (1 << 1),
38 IR_START_EVENT = (1 << 2),
39 IR_STOP_EVENT = (1 << 3),
40};
41
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030042struct ir_scancode {
43 u16 scancode;
44 u32 keycode;
45};
46
47struct ir_scancode_table {
48 struct ir_scancode *scan;
49 int size;
Mauro Carvalho Chehab2915e5e2010-03-12 11:40:13 -030050 u64 ir_type;
51 char *name;
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030052 spinlock_t lock;
53};
54
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -030055struct rc_keymap {
56 struct list_head list;
57 struct ir_scancode_table map;
58};
59
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030060struct ir_dev_props {
61 unsigned long allowed_protos;
62 void *priv;
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -030063 int (*change_protocol)(void *priv, u64 ir_type);
Mauro Carvalho Chehab716aab42010-03-31 14:40:35 -030064 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 {
69 struct timespec delta; /* Time spent before event */
70 enum raw_event_type type; /* event type */
71};
72
73struct ir_raw_event_ctrl {
74 struct kfifo kfifo; /* fifo for the pulse/space events */
75 struct timespec last_event; /* when last event occurred */
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -030076 struct timer_list timer_keyup; /* timer for key release */
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030077};
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030078
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030079struct ir_input_dev {
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -030080 struct device dev; /* device */
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030081 char *driver_name; /* Name of the driver module */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030082 struct ir_scancode_table rc_tab; /* scan/key table */
83 unsigned long devno; /* device number */
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030084 const struct ir_dev_props *props; /* Device properties */
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030085 struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -030086
87 /* key info - needed by IR keycode handlers */
88 u32 keycode; /* linux key code */
89 int keypressed; /* current state */
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030090};
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030091
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030092struct ir_raw_handler {
93 struct list_head list;
94
95 int (*decode)(struct input_dev *input_dev,
96 struct ir_raw_event *evs,
97 int len);
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -030098 int (*raw_register)(struct input_dev *input_dev);
99 int (*raw_unregister)(struct input_dev *input_dev);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300100};
101
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -0300102#define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr)
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -0300103
Mauro Carvalho Chehab77b74222010-04-01 22:43:29 -0300104#define IR_KEYTABLE(a) \
105ir_codes_ ## a ## _table
106
107#define DECLARE_IR_KEYTABLE(a) \
108extern struct ir_scancode_table IR_KEYTABLE(a)
109
110#define DEFINE_IR_KEYTABLE(tabname, type) \
111struct ir_scancode_table IR_KEYTABLE(tabname) = { \
112 .scan = tabname, \
113 .size = ARRAY_SIZE(tabname), \
114 .ir_type = type, \
115 .name = #tabname, \
116}; \
117EXPORT_SYMBOL_GPL(IR_KEYTABLE(tabname))
118
119#define DEFINE_LEGACY_IR_KEYTABLE(tabname) \
120 DEFINE_IR_KEYTABLE(tabname, IR_TYPE_UNKNOWN)
121
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300122/* Routines from rc-map.c */
123
124int ir_register_map(struct rc_keymap *map);
125void ir_unregister_map(struct rc_keymap *map);
126struct ir_scancode_table *get_rc_map(const char *name);
127
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300128/* Routines from ir-keytable.c */
129
130u32 ir_g_keycode_from_table(struct input_dev *input_dev,
131 u32 scancode);
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300132void ir_keyup(struct input_dev *dev);
133void ir_keydown(struct input_dev *dev, int scancode);
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300134int __ir_input_register(struct input_dev *dev,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -0300135 const struct ir_scancode_table *ir_codes,
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300136 const struct ir_dev_props *props,
137 const char *driver_name);
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300138
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300139static inline int ir_input_register(struct input_dev *dev,
140 const char *map_name,
141 const struct ir_dev_props *props,
142 const char *driver_name) {
143 struct ir_scancode_table *ir_codes;
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300144
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300145 ir_codes = get_rc_map(map_name);
146 if (!ir_codes)
147 return -EINVAL;
148
149 return __ir_input_register(dev, ir_codes, props, driver_name);
150}
151
152 void ir_input_unregister(struct input_dev *input_dev);
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300153
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300154/* Routines from ir-sysfs.c */
155
156int ir_register_class(struct input_dev *input_dev);
157void ir_unregister_class(struct input_dev *input_dev);
158
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300159/* Routines from ir-raw-event.c */
160int ir_raw_event_register(struct input_dev *input_dev);
161void ir_raw_event_unregister(struct input_dev *input_dev);
162int ir_raw_event_store(struct input_dev *input_dev, enum raw_event_type type);
163int ir_raw_event_handle(struct input_dev *input_dev);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300164int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler);
165void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300166void ir_raw_init(void);
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300167
168/* from ir-nec-decoder.c */
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300169#ifdef CONFIG_IR_NEC_DECODER_MODULE
170#define load_nec_decode() request_module("ir-nec-decoder")
171#else
172#define load_nec_decode() 0
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300173#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300174
175#endif /* _IR_CORE */