2 * Remote Controller core raw events header
4 * Copyright (C) 2010 by Mauro Carvalho Chehab
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.
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.
19 /* Define the max number of pulse/space transitions to buffer */
20 #define MAX_IR_EVENT_SIZE 512
22 #include <linux/slab.h>
23 #include <media/rc-core.h>
25 struct ir_raw_handler
{
26 struct list_head list
;
28 u64 protocols
; /* which are handled by this handler */
29 int (*decode
)(struct rc_dev
*dev
, struct ir_raw_event event
);
30 int (*encode
)(enum rc_type protocol
, u32 scancode
,
31 struct ir_raw_event
*events
, unsigned int max
);
33 /* These two should only be used by the lirc decoder */
34 int (*raw_register
)(struct rc_dev
*dev
);
35 int (*raw_unregister
)(struct rc_dev
*dev
);
38 struct ir_raw_event_ctrl
{
39 struct list_head list
; /* to keep track of raw clients */
40 struct task_struct
*thread
;
41 /* fifo for the pulse/space durations */
42 DECLARE_KFIFO(kfifo
, struct ir_raw_event
, MAX_IR_EVENT_SIZE
);
43 ktime_t last_event
; /* when last event occurred */
44 enum raw_event_type last_type
; /* last event type */
45 struct rc_dev
*dev
; /* pointer to the parent rc_dev */
47 /* raw decoder state follows */
48 struct ir_raw_event prev_ev
;
49 struct ir_raw_event this_ev
;
93 unsigned int pulse_len
;
96 struct input_dev
*idev
;
97 struct timer_list rx_timeout
;
104 unsigned wanted_bits
;
108 struct lirc_driver
*drv
;
114 bool send_timeout_reports
;
124 /* macros for IR decoders */
125 static inline bool geq_margin(unsigned d1
, unsigned d2
, unsigned margin
)
127 return d1
> (d2
- margin
);
130 static inline bool eq_margin(unsigned d1
, unsigned d2
, unsigned margin
)
132 return ((d1
> (d2
- margin
)) && (d1
< (d2
+ margin
)));
135 static inline bool is_transition(struct ir_raw_event
*x
, struct ir_raw_event
*y
)
137 return x
->pulse
!= y
->pulse
;
140 static inline void decrease_duration(struct ir_raw_event
*ev
, unsigned duration
)
142 if (duration
> ev
->duration
)
145 ev
->duration
-= duration
;
148 /* Returns true if event is normal pulse/space event */
149 static inline bool is_timing_event(struct ir_raw_event ev
)
151 return !ev
.carrier_report
&& !ev
.reset
;
154 #define TO_US(duration) DIV_ROUND_CLOSEST((duration), 1000)
155 #define TO_STR(is_pulse) ((is_pulse) ? "pulse" : "space")
157 /* functions for IR encoders */
159 static inline void init_ir_raw_event_duration(struct ir_raw_event
*ev
,
163 init_ir_raw_event(ev
);
164 ev
->duration
= duration
;
169 * struct ir_raw_timings_manchester - Manchester coding timings
170 * @leader: duration of leader pulse (if any) 0 if continuing
171 * existing signal (see @pulse_space_start)
172 * @pulse_space_start: 1 for starting with pulse (0 for starting with space)
173 * @clock: duration of each pulse/space in ns
174 * @invert: if set clock logic is inverted
175 * (0 = space + pulse, 1 = pulse + space)
176 * @trailer_space: duration of trailer space in ns
178 struct ir_raw_timings_manchester
{
180 unsigned int pulse_space_start
:1;
182 unsigned int invert
:1;
183 unsigned int trailer_space
;
186 int ir_raw_gen_manchester(struct ir_raw_event
**ev
, unsigned int max
,
187 const struct ir_raw_timings_manchester
*timings
,
188 unsigned int n
, u64 data
);
191 * ir_raw_gen_pulse_space() - generate pulse and space raw events.
192 * @ev: Pointer to pointer to next free raw event.
193 * Will be incremented for each raw event written.
194 * @max: Pointer to number of raw events available in buffer.
195 * Will be decremented for each raw event written.
196 * @pulse_width: Width of pulse in ns.
197 * @space_width: Width of space in ns.
199 * Returns: 0 on success.
200 * -ENOBUFS if there isn't enough buffer space to write both raw
201 * events. In this case @max events will have been written.
203 static inline int ir_raw_gen_pulse_space(struct ir_raw_event
**ev
,
205 unsigned int pulse_width
,
206 unsigned int space_width
)
210 init_ir_raw_event_duration((*ev
)++, 1, pulse_width
);
213 init_ir_raw_event_duration((*ev
)++, 0, space_width
);
219 * struct ir_raw_timings_pd - pulse-distance modulation timings
220 * @header_pulse: duration of header pulse in ns (0 for none)
221 * @header_space: duration of header space in ns
222 * @bit_pulse: duration of bit pulse in ns
223 * @bit_space: duration of bit space (for logic 0 and 1) in ns
224 * @trailer_pulse: duration of trailer pulse in ns
225 * @trailer_space: duration of trailer space in ns
226 * @msb_first: 1 if most significant bit is sent first
228 struct ir_raw_timings_pd
{
229 unsigned int header_pulse
;
230 unsigned int header_space
;
231 unsigned int bit_pulse
;
232 unsigned int bit_space
[2];
233 unsigned int trailer_pulse
;
234 unsigned int trailer_space
;
235 unsigned int msb_first
:1;
238 int ir_raw_gen_pd(struct ir_raw_event
**ev
, unsigned int max
,
239 const struct ir_raw_timings_pd
*timings
,
240 unsigned int n
, u64 data
);
243 * struct ir_raw_timings_pl - pulse-length modulation timings
244 * @header_pulse: duration of header pulse in ns (0 for none)
245 * @bit_space: duration of bit space in ns
246 * @bit_pulse: duration of bit pulse (for logic 0 and 1) in ns
247 * @trailer_space: duration of trailer space in ns
248 * @msb_first: 1 if most significant bit is sent first
250 struct ir_raw_timings_pl
{
251 unsigned int header_pulse
;
252 unsigned int bit_space
;
253 unsigned int bit_pulse
[2];
254 unsigned int trailer_space
;
255 unsigned int msb_first
:1;
258 int ir_raw_gen_pl(struct ir_raw_event
**ev
, unsigned int max
,
259 const struct ir_raw_timings_pl
*timings
,
260 unsigned int n
, u64 data
);
263 * Routines from rc-raw.c to be used internally and by decoders
265 u64
ir_raw_get_allowed_protocols(void);
266 int ir_raw_event_register(struct rc_dev
*dev
);
267 void ir_raw_event_unregister(struct rc_dev
*dev
);
268 int ir_raw_handler_register(struct ir_raw_handler
*ir_raw_handler
);
269 void ir_raw_handler_unregister(struct ir_raw_handler
*ir_raw_handler
);
270 void ir_raw_init(void);
273 * Decoder initialization code
275 * Those load logic are called during ir-core init, and automatically
276 * loads the compiled decoders for their usage with IR raw events
279 #endif /* _RC_CORE_PRIV */