blob: dbdffd1458fb3a56c3704ac03f614c6c7db12302 [file] [log] [blame]
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -03001/*
2 * Remote Controller core header
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#ifndef _IR_CORE
15#define _IR_CORE
16
17#include <linux/input.h>
18#include <linux/spinlock.h>
19
20extern int ir_core_debug;
21#define IR_dprintk(level, fmt, arg...) if (ir_core_debug >= level) \
22 printk(KERN_DEBUG "%s: " fmt , __func__, ## arg)
23
24enum ir_type {
25 IR_TYPE_UNKNOWN = 0,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030026 IR_TYPE_RC5 = 1L << 0, /* Philips RC5 protocol */
27 IR_TYPE_PD = 1L << 1, /* Pulse distance encoded IR */
28 IR_TYPE_NEC = 1L << 2,
29 IR_TYPE_OTHER = 1L << 63,
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030030};
31
32struct ir_scancode {
33 u16 scancode;
34 u32 keycode;
35};
36
37struct ir_scancode_table {
38 struct ir_scancode *scan;
39 int size;
40 enum ir_type ir_type;
41 spinlock_t lock;
42};
43
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030044struct ir_dev_props {
45 unsigned long allowed_protos;
46 void *priv;
47 int (*change_protocol)(void *priv, unsigned long protocol);
48};
49
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030050struct ir_input_dev {
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030051 struct input_dev *dev; /* Input device*/
52 struct ir_scancode_table rc_tab; /* scan/key table */
53 unsigned long devno; /* device number */
54 struct attribute_group attr; /* IR attributes */
55 struct device *class_dev; /* virtual class dev */
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030056 const struct ir_dev_props *props; /* Device properties */
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030057};
58
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030059/* Routines from ir-keytable.c */
60
61u32 ir_g_keycode_from_table(struct input_dev *input_dev,
62 u32 scancode);
63
64int ir_set_keycode_table(struct input_dev *input_dev,
65 struct ir_scancode_table *rc_tab);
66
67int ir_roundup_tablesize(int n_elems);
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030068int ir_input_register(struct input_dev *dev,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030069 const struct ir_scancode_table *ir_codes,
70 const struct ir_dev_props *props);
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -030071void ir_input_unregister(struct input_dev *input_dev);
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030072
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030073/* Routines from ir-sysfs.c */
74
75int ir_register_class(struct input_dev *input_dev);
76void ir_unregister_class(struct input_dev *input_dev);
77
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -030078#endif