blob: 513e60dd101018f265622521fde93606aa8dbd12 [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
44 * @priv: driver-specific data, to be used on the callbacks
45 * @change_protocol: allow changing the protocol used on hardware decoders
46 * @open: callback to allow drivers to enable polling/irq when IR input device
47 * is opened.
48 * @close: callback to allow drivers to disable polling/irq when IR input device
49 * is opened.
Jarod Wilson9b7c54d2010-06-16 17:55:25 -030050 * @s_tx_mask: set transmitter mask (for devices with multiple tx outputs)
51 * @s_tx_carrier: set transmit carrier frequency
52 * @tx_ir: transmit IR
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -030053 */
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030054struct ir_dev_props {
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -030055 enum rc_driver_type driver_type;
56 unsigned long allowed_protos;
57 u32 scanmask;
Jarod Wilson9b7c54d2010-06-16 17:55:25 -030058 void *priv;
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -030059 int (*change_protocol)(void *priv, u64 ir_type);
60 int (*open)(void *priv);
61 void (*close)(void *priv);
Jarod Wilson9b7c54d2010-06-16 17:55:25 -030062 int (*s_tx_mask)(void *priv, u32 mask);
63 int (*s_tx_carrier)(void *priv, u32 carrier);
Jarod Wilson30eb1be2010-07-02 00:38:09 -030064 int (*tx_ir)(void *priv, int *txbuf, u32 n);
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030065};
66
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030067struct ir_input_dev {
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -030068 struct device dev; /* device */
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030069 char *driver_name; /* Name of the driver module */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030070 struct ir_scancode_table rc_tab; /* scan/key table */
71 unsigned long devno; /* device number */
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030072 const struct ir_dev_props *props; /* Device properties */
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030073 struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */
David Härdemana374fef2010-04-02 15:58:29 -030074 struct input_dev *input_dev; /* the input device associated with this device */
Mauro Carvalho Chehab6660de52010-03-21 12:15:16 -030075
76 /* key info - needed by IR keycode handlers */
David Härdemana374fef2010-04-02 15:58:29 -030077 spinlock_t keylock; /* protects the below members */
78 bool keypressed; /* current state */
79 unsigned long keyup_jiffies; /* when should the current keypress be released? */
80 struct timer_list timer_keyup; /* timer for releasing a keypress */
81 u32 last_keycode; /* keycode of last command */
82 u32 last_scancode; /* scancode of last command */
83 u8 last_toggle; /* toggle of last command */
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030084};
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030085
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -030086enum raw_event_type {
87 IR_SPACE = (1 << 0),
88 IR_PULSE = (1 << 1),
89 IR_START_EVENT = (1 << 2),
90 IR_STOP_EVENT = (1 << 3),
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030091};
92
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030093#define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr)
Mauro Carvalho Chehab75543cc2009-12-11 09:44:23 -030094
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -030095/* From ir-keytable.c */
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -030096int __ir_input_register(struct input_dev *dev,
Mauro Carvalho Chehabe93854d2009-12-14 00:16:55 -030097 const struct ir_scancode_table *ir_codes,
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030098 const struct ir_dev_props *props,
99 const char *driver_name);
Mauro Carvalho Chehab446e4a62009-12-11 08:34:07 -0300100
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300101static inline int ir_input_register(struct input_dev *dev,
102 const char *map_name,
103 const struct ir_dev_props *props,
104 const char *driver_name) {
105 struct ir_scancode_table *ir_codes;
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300106 struct ir_input_dev *ir_dev;
107 int rc;
108
109 if (!map_name)
110 return -EINVAL;
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300111
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300112 ir_codes = get_rc_map(map_name);
113 if (!ir_codes)
114 return -EINVAL;
115
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300116 rc = __ir_input_register(dev, ir_codes, props, driver_name);
117 if (rc < 0)
118 return -EINVAL;
119
120 ir_dev = input_get_drvdata(dev);
121
122 if (!rc && ir_dev->props && ir_dev->props->change_protocol)
123 rc = ir_dev->props->change_protocol(ir_dev->props->priv,
124 ir_codes->ir_type);
125
126 return rc;
Mauro Carvalho Chehabb2245ba2010-04-02 13:18:42 -0300127}
128
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300129void ir_input_unregister(struct input_dev *input_dev);
Mauro Carvalho Chehab9ce50c12010-04-02 02:33:35 -0300130
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -0300131void ir_repeat(struct input_dev *dev);
132void ir_keydown(struct input_dev *dev, int scancode, u8 toggle);
Jarod Wilson1c0e0ee2010-04-16 18:27:58 -0300133u32 ir_g_keycode_from_table(struct input_dev *input_dev, u32 scancode);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300134
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -0300135/* From ir-raw-event.c */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300136
David Härdemane40b1122010-04-15 18:46:00 -0300137struct ir_raw_event {
138 unsigned pulse:1;
139 unsigned duration:31;
140};
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300141
David Härdemane40b1122010-04-15 18:46:00 -0300142#define IR_MAX_DURATION 0x7FFFFFFF /* a bit more than 2 seconds */
143
144void ir_raw_event_handle(struct input_dev *input_dev);
145int ir_raw_event_store(struct input_dev *input_dev, struct ir_raw_event *ev);
146int ir_raw_event_store_edge(struct input_dev *input_dev, enum raw_event_type type);
147static inline void ir_raw_event_reset(struct input_dev *input_dev)
148{
149 struct ir_raw_event ev = { .pulse = false, .duration = 0 };
150 ir_raw_event_store(input_dev, &ev);
151 ir_raw_event_handle(input_dev);
152}
David Härdeman724e2492010-04-08 13:10:00 -0300153
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300154#endif /* _IR_CORE */