Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux...
[deliverable/linux.git] / drivers / media / rc / ir-rc5-decoder.c
CommitLineData
e87b540b 1/* ir-rc5-decoder.c - decoder for RC5(x) and StreamZap protocols
db1423a6 2 *
37e59f87 3 * Copyright (C) 2010 by Mauro Carvalho Chehab
e87b540b 4 * Copyright (C) 2010 by Jarod Wilson <jarod@redhat.com>
db1423a6
MCC
5 *
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/*
e87b540b
DH
17 * This decoder handles the 14 bit RC5 protocol, 15 bit "StreamZap" protocol
18 * and 20 bit RC5x protocol.
db1423a6
MCC
19 */
20
f62de675 21#include "rc-core-priv.h"
7a707b89 22#include <linux/module.h>
db1423a6 23
9b09df51 24#define RC5_NBITS 14
e87b540b 25#define RC5_SZ_NBITS 15
733419b5
DH
26#define RC5X_NBITS 20
27#define CHECK_RC5X_NBITS 8
724e2495 28#define RC5_UNIT 888888 /* ns */
e40b1127
DH
29#define RC5_BIT_START (1 * RC5_UNIT)
30#define RC5_BIT_END (1 * RC5_UNIT)
31#define RC5X_SPACE (4 * RC5_UNIT)
e87b540b 32#define RC5_TRAILER (10 * RC5_UNIT) /* In reality, approx 100 */
db1423a6 33
db1423a6
MCC
34enum rc5_state {
35 STATE_INACTIVE,
724e2495
DH
36 STATE_BIT_START,
37 STATE_BIT_END,
733419b5 38 STATE_CHECK_RC5X,
724e2495 39 STATE_FINISHED,
db1423a6
MCC
40};
41
db1423a6 42/**
724e2495 43 * ir_rc5_decode() - Decode one RC-5 pulse or space
d8b4b582 44 * @dev: the struct rc_dev descriptor of the device
e40b1127 45 * @ev: the struct ir_raw_event descriptor of the pulse/space
db1423a6
MCC
46 *
47 * This function returns -EINVAL if the pulse violates the state machine
48 */
d8b4b582 49static int ir_rc5_decode(struct rc_dev *dev, struct ir_raw_event ev)
db1423a6 50{
d8b4b582 51 struct rc5_dec *data = &dev->raw->rc5;
733419b5 52 u8 toggle;
724e2495 53 u32 scancode;
120703f9 54 enum rc_type protocol;
db1423a6 55
cef83483 56 if (!(dev->enabled_protocols & (RC_BIT_RC5 | RC_BIT_RC5X | RC_BIT_RC5_SZ)))
c003ab1b 57 return 0;
7f20d32d 58
4651918a
ML
59 if (!is_timing_event(ev)) {
60 if (ev.reset)
61 data->state = STATE_INACTIVE;
db1423a6 62 return 0;
724e2495 63 }
db1423a6 64
e40b1127 65 if (!geq_margin(ev.duration, RC5_UNIT, RC5_UNIT / 2))
724e2495 66 goto out;
db1423a6 67
724e2495 68again:
e87b540b 69 IR_dprintk(2, "RC5(x/sz) decode started at state %i (%uus %s)\n",
e40b1127 70 data->state, TO_US(ev.duration), TO_STR(ev.pulse));
db1423a6 71
e40b1127 72 if (!geq_margin(ev.duration, RC5_UNIT, RC5_UNIT / 2))
724e2495 73 return 0;
db1423a6 74
724e2495 75 switch (data->state) {
db1423a6 76
724e2495 77 case STATE_INACTIVE:
e40b1127
DH
78 if (!ev.pulse)
79 break;
80
81 data->state = STATE_BIT_START;
82 data->count = 1;
e40b1127
DH
83 decrease_duration(&ev, RC5_BIT_START);
84 goto again;
724e2495
DH
85
86 case STATE_BIT_START:
e87b540b
DH
87 if (!ev.pulse && geq_margin(ev.duration, RC5_TRAILER, RC5_UNIT / 2)) {
88 data->state = STATE_FINISHED;
89 goto again;
90 }
91
e40b1127
DH
92 if (!eq_margin(ev.duration, RC5_BIT_START, RC5_UNIT / 2))
93 break;
94
c216369e 95 data->bits <<= 1;
e40b1127 96 if (!ev.pulse)
c216369e 97 data->bits |= 1;
e40b1127 98 data->count++;
e40b1127
DH
99 data->state = STATE_BIT_END;
100 return 0;
9b09df51 101
724e2495 102 case STATE_BIT_END:
d8b4b582 103 if (!is_transition(&ev, &dev->raw->prev_ev))
e40b1127
DH
104 break;
105
e87b540b 106 if (data->count == CHECK_RC5X_NBITS)
e40b1127
DH
107 data->state = STATE_CHECK_RC5X;
108 else
109 data->state = STATE_BIT_START;
110
111 decrease_duration(&ev, RC5_BIT_END);
112 goto again;
724e2495 113
733419b5 114 case STATE_CHECK_RC5X:
e40b1127 115 if (!ev.pulse && geq_margin(ev.duration, RC5X_SPACE, RC5_UNIT / 2)) {
e87b540b 116 data->is_rc5x = true;
e40b1127 117 decrease_duration(&ev, RC5X_SPACE);
e87b540b
DH
118 } else
119 data->is_rc5x = false;
733419b5
DH
120 data->state = STATE_BIT_START;
121 goto again;
122
724e2495 123 case STATE_FINISHED:
e40b1127
DH
124 if (ev.pulse)
125 break;
126
e87b540b 127 if (data->is_rc5x && data->count == RC5X_NBITS) {
733419b5
DH
128 /* RC5X */
129 u8 xdata, command, system;
c5540fbb 130 if (!(dev->enabled_protocols & RC_BIT_RC5X)) {
c003ab1b
DH
131 data->state = STATE_INACTIVE;
132 return 0;
133 }
c216369e
DH
134 xdata = (data->bits & 0x0003F) >> 0;
135 command = (data->bits & 0x00FC0) >> 6;
136 system = (data->bits & 0x1F000) >> 12;
137 toggle = (data->bits & 0x20000) ? 1 : 0;
138 command += (data->bits & 0x01000) ? 0 : 0x40;
733419b5 139 scancode = system << 16 | command << 8 | xdata;
120703f9 140 protocol = RC_TYPE_RC5X;
733419b5 141
e87b540b 142 } else if (!data->is_rc5x && data->count == RC5_NBITS) {
733419b5
DH
143 /* RC5 */
144 u8 command, system;
c5540fbb 145 if (!(dev->enabled_protocols & RC_BIT_RC5)) {
c003ab1b
DH
146 data->state = STATE_INACTIVE;
147 return 0;
148 }
c216369e
DH
149 command = (data->bits & 0x0003F) >> 0;
150 system = (data->bits & 0x007C0) >> 6;
151 toggle = (data->bits & 0x00800) ? 1 : 0;
152 command += (data->bits & 0x01000) ? 0 : 0x40;
733419b5 153 scancode = system << 8 | command;
120703f9 154 protocol = RC_TYPE_RC5;
733419b5 155
e87b540b
DH
156 } else if (!data->is_rc5x && data->count == RC5_SZ_NBITS) {
157 /* RC5 StreamZap */
158 u8 command, system;
159 if (!(dev->enabled_protocols & RC_BIT_RC5_SZ)) {
160 data->state = STATE_INACTIVE;
161 return 0;
162 }
163 command = (data->bits & 0x0003F) >> 0;
164 system = (data->bits & 0x02FC0) >> 6;
165 toggle = (data->bits & 0x01000) ? 1 : 0;
166 scancode = system << 6 | command;
167 protocol = RC_TYPE_RC5_SZ;
168
169 } else
170 break;
171
172 IR_dprintk(1, "RC5(x/sz) scancode 0x%06x (p: %u, t: %u)\n",
173 scancode, protocol, toggle);
733419b5 174
120703f9 175 rc_keydown(dev, protocol, scancode, toggle);
db1423a6
MCC
176 data->state = STATE_INACTIVE;
177 return 0;
178 }
179
724e2495 180out:
32570579
MCC
181 IR_dprintk(1, "RC5(x/sz) decode failed at state %i count %d (%uus %s)\n",
182 data->state, data->count, TO_US(ev.duration), TO_STR(ev.pulse));
db1423a6
MCC
183 data->state = STATE_INACTIVE;
184 return -EINVAL;
185}
186
db1423a6 187static struct ir_raw_handler rc5_handler = {
e87b540b 188 .protocols = RC_BIT_RC5 | RC_BIT_RC5X | RC_BIT_RC5_SZ,
db1423a6 189 .decode = ir_rc5_decode,
db1423a6
MCC
190};
191
192static int __init ir_rc5_decode_init(void)
193{
194 ir_raw_handler_register(&rc5_handler);
195
e87b540b 196 printk(KERN_INFO "IR RC5(x/sz) protocol handler initialized\n");
db1423a6
MCC
197 return 0;
198}
199
200static void __exit ir_rc5_decode_exit(void)
201{
202 ir_raw_handler_unregister(&rc5_handler);
203}
204
205module_init(ir_rc5_decode_init);
206module_exit(ir_rc5_decode_exit);
207
208MODULE_LICENSE("GPL");
e87b540b 209MODULE_AUTHOR("Mauro Carvalho Chehab and Jarod Wilson");
db1423a6 210MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
e87b540b 211MODULE_DESCRIPTION("RC5(x/sz) IR protocol decoder");
This page took 0.567529 seconds and 5 git commands to generate.