]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/media/ir-core.h
V4L/DVB: Break Remote Controller keymaps into modules
[mirror_ubuntu-zesty-kernel.git] / include / media / ir-core.h
CommitLineData
446e4a64
MCC
1/*
2 * Remote Controller core header
3 *
995187be
MCC
4 * Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
5 *
446e4a64
MCC
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>
a3572c34
MCC
21#include <linux/kfifo.h>
22#include <linux/time.h>
9f154782 23#include <linux/timer.h>
446e4a64
MCC
24
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
971e8298
MCC
29#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)
446e4a64 34
a3572c34
MCC
35enum 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
446e4a64
MCC
42struct ir_scancode {
43 u16 scancode;
44 u32 keycode;
45};
46
47struct ir_scancode_table {
48 struct ir_scancode *scan;
49 int size;
2915e5ef
MCC
50 u64 ir_type;
51 char *name;
446e4a64
MCC
52 spinlock_t lock;
53};
54
9ce50c1a
MCC
55struct rc_keymap {
56 struct list_head list;
57 struct ir_scancode_table map;
58};
59
e93854da
MCC
60struct ir_dev_props {
61 unsigned long allowed_protos;
62 void *priv;
971e8298 63 int (*change_protocol)(void *priv, u64 ir_type);
716aab44
MCC
64 int (*open)(void *priv);
65 void (*close)(void *priv);
e93854da
MCC
66};
67
a3572c34
MCC
68struct 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 */
9f154782 76 struct timer_list timer_keyup; /* timer for key release */
a3572c34 77};
53f87022 78
75543cce 79struct ir_input_dev {
945cdfa2 80 struct device dev; /* device */
727e625c 81 char *driver_name; /* Name of the driver module */
4714eda8
MCC
82 struct ir_scancode_table rc_tab; /* scan/key table */
83 unsigned long devno; /* device number */
e93854da 84 const struct ir_dev_props *props; /* Device properties */
a3572c34 85 struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */
6660de56
MCC
86
87 /* key info - needed by IR keycode handlers */
88 u32 keycode; /* linux key code */
89 int keypressed; /* current state */
75543cce 90};
a3572c34 91
995187be
MCC
92struct 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);
93c312ff
MCC
98 int (*raw_register)(struct input_dev *input_dev);
99 int (*raw_unregister)(struct input_dev *input_dev);
995187be
MCC
100};
101
53f87022 102#define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr)
75543cce 103
77b7422d
MCC
104#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
446e4a64
MCC
122/* Routines from ir-keytable.c */
123
124u32 ir_g_keycode_from_table(struct input_dev *input_dev,
125 u32 scancode);
ada39630
MCC
126void ir_keyup(struct input_dev *dev);
127void ir_keydown(struct input_dev *dev, int scancode);
75543cce 128int ir_input_register(struct input_dev *dev,
e93854da 129 const struct ir_scancode_table *ir_codes,
727e625c
MCC
130 const struct ir_dev_props *props,
131 const char *driver_name);
38ef6aa8 132void ir_input_unregister(struct input_dev *input_dev);
446e4a64 133
9ce50c1a
MCC
134/* Routines from rc-map.c */
135
136int ir_register_map(struct rc_keymap *map);
137void ir_unregister_map(struct rc_keymap *map);
138struct ir_scancode_table *get_rc_map(const char *name);
139
4714eda8
MCC
140/* Routines from ir-sysfs.c */
141
142int ir_register_class(struct input_dev *input_dev);
143void ir_unregister_class(struct input_dev *input_dev);
144
a3572c34
MCC
145/* Routines from ir-raw-event.c */
146int ir_raw_event_register(struct input_dev *input_dev);
147void ir_raw_event_unregister(struct input_dev *input_dev);
148int ir_raw_event_store(struct input_dev *input_dev, enum raw_event_type type);
149int ir_raw_event_handle(struct input_dev *input_dev);
995187be
MCC
150int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler);
151void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler);
995187be 152void ir_raw_init(void);
a3572c34 153
995187be
MCC
154/* from ir-nec-decoder.c */
155#ifdef CONFIG_IR_NEC_DECODER_MODULE
156#define load_nec_decode() request_module("ir-nec-decoder")
157#else
158#define load_nec_decode() 0
446e4a64 159#endif
995187be
MCC
160
161#endif /* _IR_CORE */