ir-rc5-decoder.c 5.4 KB
Newer Older
1
/* ir-rc5-decoder.c - decoder for RC5(x) and StreamZap protocols
2
 *
3
 * Copyright (C) 2010 by Mauro Carvalho Chehab
4
 * Copyright (C) 2010 by Jarod Wilson <jarod@redhat.com>
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation version 2 of the License.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 */

/*
17 18
 * This decoder handles the 14 bit RC5 protocol, 15 bit "StreamZap" protocol
 * and 20 bit RC5x protocol.
19 20
 */

21
#include "rc-core-priv.h"
22
#include <linux/module.h>
23

24
#define RC5_NBITS		14
25
#define RC5_SZ_NBITS		15
26 27
#define RC5X_NBITS		20
#define CHECK_RC5X_NBITS	8
28
#define RC5_UNIT		888888 /* ns */
29 30 31
#define RC5_BIT_START		(1 * RC5_UNIT)
#define RC5_BIT_END		(1 * RC5_UNIT)
#define RC5X_SPACE		(4 * RC5_UNIT)
32
#define RC5_TRAILER		(10 * RC5_UNIT) /* In reality, approx 100 */
33 34 35

enum rc5_state {
	STATE_INACTIVE,
36 37
	STATE_BIT_START,
	STATE_BIT_END,
38
	STATE_CHECK_RC5X,
39
	STATE_FINISHED,
40 41 42
};

/**
43
 * ir_rc5_decode() - Decode one RC-5 pulse or space
44
 * @dev:	the struct rc_dev descriptor of the device
45
 * @ev:		the struct ir_raw_event descriptor of the pulse/space
46 47 48
 *
 * This function returns -EINVAL if the pulse violates the state machine
 */
49
static int ir_rc5_decode(struct rc_dev *dev, struct ir_raw_event ev)
50
{
51
	struct rc5_dec *data = &dev->raw->rc5;
52
	u8 toggle;
53
	u32 scancode;
54
	enum rc_type protocol;
55

56
	if (!(dev->enabled_protocols & (RC_BIT_RC5 | RC_BIT_RC5X)))
57
		return 0;
58

59 60 61
	if (!is_timing_event(ev)) {
		if (ev.reset)
			data->state = STATE_INACTIVE;
62
		return 0;
63
	}
64

65
	if (!geq_margin(ev.duration, RC5_UNIT, RC5_UNIT / 2))
66
		goto out;
67

68
again:
69
	IR_dprintk(2, "RC5(x/sz) decode started at state %i (%uus %s)\n",
70
		   data->state, TO_US(ev.duration), TO_STR(ev.pulse));
71

72
	if (!geq_margin(ev.duration, RC5_UNIT, RC5_UNIT / 2))
73
		return 0;
74

75
	switch (data->state) {
76

77
	case STATE_INACTIVE:
78 79 80 81 82 83 84
		if (!ev.pulse)
			break;

		data->state = STATE_BIT_START;
		data->count = 1;
		decrease_duration(&ev, RC5_BIT_START);
		goto again;
85 86

	case STATE_BIT_START:
87 88 89 90 91
		if (!ev.pulse && geq_margin(ev.duration, RC5_TRAILER, RC5_UNIT / 2)) {
			data->state = STATE_FINISHED;
			goto again;
		}

92 93 94
		if (!eq_margin(ev.duration, RC5_BIT_START, RC5_UNIT / 2))
			break;

95
		data->bits <<= 1;
96
		if (!ev.pulse)
97
			data->bits |= 1;
98 99 100
		data->count++;
		data->state = STATE_BIT_END;
		return 0;
101

102
	case STATE_BIT_END:
103
		if (!is_transition(&ev, &dev->raw->prev_ev))
104 105
			break;

106
		if (data->count == CHECK_RC5X_NBITS)
107 108 109 110 111 112
			data->state = STATE_CHECK_RC5X;
		else
			data->state = STATE_BIT_START;

		decrease_duration(&ev, RC5_BIT_END);
		goto again;
113

114
	case STATE_CHECK_RC5X:
115
		if (!ev.pulse && geq_margin(ev.duration, RC5X_SPACE, RC5_UNIT / 2)) {
116
			data->is_rc5x = true;
117
			decrease_duration(&ev, RC5X_SPACE);
118 119
		} else
			data->is_rc5x = false;
120 121 122
		data->state = STATE_BIT_START;
		goto again;

123
	case STATE_FINISHED:
124 125 126
		if (ev.pulse)
			break;

127
		if (data->is_rc5x && data->count == RC5X_NBITS) {
128 129
			/* RC5X */
			u8 xdata, command, system;
130
			if (!(dev->enabled_protocols & RC_BIT_RC5X)) {
131 132 133
				data->state = STATE_INACTIVE;
				return 0;
			}
134 135 136 137 138
			xdata    = (data->bits & 0x0003F) >> 0;
			command  = (data->bits & 0x00FC0) >> 6;
			system   = (data->bits & 0x1F000) >> 12;
			toggle   = (data->bits & 0x20000) ? 1 : 0;
			command += (data->bits & 0x01000) ? 0 : 0x40;
139
			scancode = system << 16 | command << 8 | xdata;
140
			protocol = RC_TYPE_RC5X;
141

142
		} else if (!data->is_rc5x && data->count == RC5_NBITS) {
143 144
			/* RC5 */
			u8 command, system;
145
			if (!(dev->enabled_protocols & RC_BIT_RC5)) {
146 147 148
				data->state = STATE_INACTIVE;
				return 0;
			}
149 150 151 152
			command  = (data->bits & 0x0003F) >> 0;
			system   = (data->bits & 0x007C0) >> 6;
			toggle   = (data->bits & 0x00800) ? 1 : 0;
			command += (data->bits & 0x01000) ? 0 : 0x40;
153
			scancode = system << 8 | command;
154
			protocol = RC_TYPE_RC5;
155

156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
		} else if (!data->is_rc5x && data->count == RC5_SZ_NBITS) {
			/* RC5 StreamZap */
			u8 command, system;
			if (!(dev->enabled_protocols & RC_BIT_RC5_SZ)) {
				data->state = STATE_INACTIVE;
				return 0;
			}
			command  = (data->bits & 0x0003F) >> 0;
			system   = (data->bits & 0x02FC0) >> 6;
			toggle   = (data->bits & 0x01000) ? 1 : 0;
			scancode = system << 6 | command;
			protocol = RC_TYPE_RC5_SZ;

		} else
			break;

		IR_dprintk(1, "RC5(x/sz) scancode 0x%06x (p: %u, t: %u)\n",
			   scancode, protocol, toggle);
174

175
		rc_keydown(dev, protocol, scancode, toggle);
176 177 178 179
		data->state = STATE_INACTIVE;
		return 0;
	}

180
out:
181
	IR_dprintk(1, "RC5(x/sz) decode failed at state %i (%uus %s)\n",
182
		   data->state, TO_US(ev.duration), TO_STR(ev.pulse));
183 184 185 186 187
	data->state = STATE_INACTIVE;
	return -EINVAL;
}

static struct ir_raw_handler rc5_handler = {
188
	.protocols	= RC_BIT_RC5 | RC_BIT_RC5X | RC_BIT_RC5_SZ,
189 190 191 192 193 194 195
	.decode		= ir_rc5_decode,
};

static int __init ir_rc5_decode_init(void)
{
	ir_raw_handler_register(&rc5_handler);

196
	printk(KERN_INFO "IR RC5(x/sz) protocol handler initialized\n");
197 198 199 200 201 202 203 204 205 206 207 208
	return 0;
}

static void __exit ir_rc5_decode_exit(void)
{
	ir_raw_handler_unregister(&rc5_handler);
}

module_init(ir_rc5_decode_init);
module_exit(ir_rc5_decode_exit);

MODULE_LICENSE("GPL");
209
MODULE_AUTHOR("Mauro Carvalho Chehab and Jarod Wilson");
210
MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
211
MODULE_DESCRIPTION("RC5(x/sz) IR protocol decoder");