rc-core-priv.h 7.8 KB
Newer Older
1 2 3 4
// SPDX-License-Identifier: GPL-2.0
// Remote Controller core raw events header
//
// Copyright (C) 2010 by Mauro Carvalho Chehab
5

6 7
#ifndef _RC_CORE_PRIV
#define _RC_CORE_PRIV
8

9 10 11
/* Define the max number of pulse/space transitions to buffer */
#define	MAX_IR_EVENT_SIZE	512

12
#include <linux/slab.h>
13
#include <media/rc-core.h>
14

15 16 17 18 19 20 21 22 23 24 25 26 27 28
/**
 * rc_open - Opens a RC device
 *
 * @rdev: pointer to struct rc_dev.
 */
int rc_open(struct rc_dev *rdev);

/**
 * rc_close - Closes a RC device
 *
 * @rdev: pointer to struct rc_dev.
 */
void rc_close(struct rc_dev *rdev);

29 30 31
struct ir_raw_handler {
	struct list_head list;

32
	u64 protocols; /* which are handled by this handler */
33
	int (*decode)(struct rc_dev *dev, struct ir_raw_event event);
34
	int (*encode)(enum rc_proto protocol, u32 scancode,
35
		      struct ir_raw_event *events, unsigned int max);
36
	u32 carrier;
37

38
	/* These two should only be used by the mce kbd decoder */
39 40
	int (*raw_register)(struct rc_dev *dev);
	int (*raw_unregister)(struct rc_dev *dev);
41 42 43
};

struct ir_raw_event_ctrl {
44
	struct list_head		list;		/* to keep track of raw clients */
45
	struct task_struct		*thread;
46 47
	/* fifo for the pulse/space durations */
	DECLARE_KFIFO(kfifo, struct ir_raw_event, MAX_IR_EVENT_SIZE);
48
	ktime_t				last_event;	/* when last event occurred */
49
	struct rc_dev			*dev;		/* pointer to the parent rc_dev */
50 51
	/* edge driver */
	struct timer_list edge_handle;
52 53 54

	/* raw decoder state follows */
	struct ir_raw_event prev_ev;
55
	struct ir_raw_event this_ev;
56 57 58 59
	struct nec_dec {
		int state;
		unsigned count;
		u32 bits;
60 61
		bool is_nec_x;
		bool necx_repeat;
62 63 64 65 66
	} nec;
	struct rc5_dec {
		int state;
		u32 bits;
		unsigned count;
67
		bool is_rc5x;
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	} rc5;
	struct rc6_dec {
		int state;
		u8 header;
		u32 body;
		bool toggle;
		unsigned count;
		unsigned wanted_bits;
	} rc6;
	struct sony_dec {
		int state;
		u32 bits;
		unsigned count;
	} sony;
	struct jvc_dec {
		int state;
		u16 bits;
		u16 old_bits;
		unsigned count;
		bool first;
		bool toggle;
	} jvc;
90 91 92 93 94
	struct sanyo_dec {
		int state;
		unsigned count;
		u64 bits;
	} sanyo;
95 96 97 98 99 100
	struct sharp_dec {
		int state;
		unsigned count;
		u32 bits;
		unsigned int pulse_len;
	} sharp;
101 102 103 104 105 106 107 108 109 110 111
	struct mce_kbd_dec {
		struct input_dev *idev;
		struct timer_list rx_timeout;
		char name[64];
		char phys[64];
		int state;
		u8 header;
		u32 body;
		unsigned count;
		unsigned wanted_bits;
	} mce_kbd;
112 113 114 115 116
	struct xmp_dec {
		int state;
		unsigned count;
		u32 durations[16];
	} xmp;
117 118 119
};

/* macros for IR decoders */
120 121
static inline bool geq_margin(unsigned d1, unsigned d2, unsigned margin)
{
122 123 124
	return d1 > (d2 - margin);
}

125 126
static inline bool eq_margin(unsigned d1, unsigned d2, unsigned margin)
{
127 128 129
	return ((d1 > (d2 - margin)) && (d1 < (d2 + margin)));
}

130 131
static inline bool is_transition(struct ir_raw_event *x, struct ir_raw_event *y)
{
132 133 134
	return x->pulse != y->pulse;
}

135 136
static inline void decrease_duration(struct ir_raw_event *ev, unsigned duration)
{
137 138 139 140 141 142
	if (duration > ev->duration)
		ev->duration = 0;
	else
		ev->duration -= duration;
}

143 144 145 146 147 148
/* Returns true if event is normal pulse/space event */
static inline bool is_timing_event(struct ir_raw_event ev)
{
	return !ev.carrier_report && !ev.reset;
}

M
Maxim Levitsky 已提交
149
#define TO_US(duration)			DIV_ROUND_CLOSEST((duration), 1000)
150
#define TO_STR(is_pulse)		((is_pulse) ? "pulse" : "space")
151

152
/* functions for IR encoders */
153
bool rc_validate_scancode(enum rc_proto proto, u32 scancode);
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

static inline void init_ir_raw_event_duration(struct ir_raw_event *ev,
					      unsigned int pulse,
					      u32 duration)
{
	init_ir_raw_event(ev);
	ev->duration = duration;
	ev->pulse = pulse;
}

/**
 * struct ir_raw_timings_manchester - Manchester coding timings
 * @leader:		duration of leader pulse (if any) 0 if continuing
 *			existing signal (see @pulse_space_start)
 * @pulse_space_start:	1 for starting with pulse (0 for starting with space)
 * @clock:		duration of each pulse/space in ns
 * @invert:		if set clock logic is inverted
 *			(0 = space + pulse, 1 = pulse + space)
 * @trailer_space:	duration of trailer space in ns
 */
struct ir_raw_timings_manchester {
	unsigned int leader;
	unsigned int pulse_space_start:1;
	unsigned int clock;
	unsigned int invert:1;
	unsigned int trailer_space;
};

int ir_raw_gen_manchester(struct ir_raw_event **ev, unsigned int max,
			  const struct ir_raw_timings_manchester *timings,
S
Sean Young 已提交
184
			  unsigned int n, u64 data);
185

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
/**
 * ir_raw_gen_pulse_space() - generate pulse and space raw events.
 * @ev:			Pointer to pointer to next free raw event.
 *			Will be incremented for each raw event written.
 * @max:		Pointer to number of raw events available in buffer.
 *			Will be decremented for each raw event written.
 * @pulse_width:	Width of pulse in ns.
 * @space_width:	Width of space in ns.
 *
 * Returns:	0 on success.
 *		-ENOBUFS if there isn't enough buffer space to write both raw
 *		events. In this case @max events will have been written.
 */
static inline int ir_raw_gen_pulse_space(struct ir_raw_event **ev,
					 unsigned int *max,
					 unsigned int pulse_width,
					 unsigned int space_width)
{
	if (!*max)
		return -ENOBUFS;
	init_ir_raw_event_duration((*ev)++, 1, pulse_width);
	if (!--*max)
		return -ENOBUFS;
	init_ir_raw_event_duration((*ev)++, 0, space_width);
	--*max;
	return 0;
}

/**
 * struct ir_raw_timings_pd - pulse-distance modulation timings
 * @header_pulse:	duration of header pulse in ns (0 for none)
 * @header_space:	duration of header space in ns
 * @bit_pulse:		duration of bit pulse in ns
 * @bit_space:		duration of bit space (for logic 0 and 1) in ns
 * @trailer_pulse:	duration of trailer pulse in ns
 * @trailer_space:	duration of trailer space in ns
 * @msb_first:		1 if most significant bit is sent first
 */
struct ir_raw_timings_pd {
	unsigned int header_pulse;
	unsigned int header_space;
	unsigned int bit_pulse;
	unsigned int bit_space[2];
	unsigned int trailer_pulse;
	unsigned int trailer_space;
	unsigned int msb_first:1;
};

int ir_raw_gen_pd(struct ir_raw_event **ev, unsigned int max,
		  const struct ir_raw_timings_pd *timings,
		  unsigned int n, u64 data);

238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
/**
 * struct ir_raw_timings_pl - pulse-length modulation timings
 * @header_pulse:	duration of header pulse in ns (0 for none)
 * @bit_space:		duration of bit space in ns
 * @bit_pulse:		duration of bit pulse (for logic 0 and 1) in ns
 * @trailer_space:	duration of trailer space in ns
 * @msb_first:		1 if most significant bit is sent first
 */
struct ir_raw_timings_pl {
	unsigned int header_pulse;
	unsigned int bit_space;
	unsigned int bit_pulse[2];
	unsigned int trailer_space;
	unsigned int msb_first:1;
};

int ir_raw_gen_pl(struct ir_raw_event **ev, unsigned int max,
		  const struct ir_raw_timings_pl *timings,
		  unsigned int n, u64 data);

258
/*
259
 * Routines from rc-raw.c to be used internally and by decoders
260
 */
261
u64 ir_raw_get_allowed_protocols(void);
262
int ir_raw_event_prepare(struct rc_dev *dev);
263
int ir_raw_event_register(struct rc_dev *dev);
264
void ir_raw_event_free(struct rc_dev *dev);
265
void ir_raw_event_unregister(struct rc_dev *dev);
266 267
int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler);
void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler);
268
void ir_raw_load_modules(u64 *protocols);
269 270
void ir_raw_init(void);

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
/*
 * lirc interface
 */
#ifdef CONFIG_LIRC
int lirc_dev_init(void);
void lirc_dev_exit(void);
void ir_lirc_raw_event(struct rc_dev *dev, struct ir_raw_event ev);
int ir_lirc_register(struct rc_dev *dev);
void ir_lirc_unregister(struct rc_dev *dev);
#else
static inline int lirc_dev_init(void) { return 0; }
static inline void lirc_dev_exit(void) {}
static inline void ir_lirc_raw_event(struct rc_dev *dev,
				     struct ir_raw_event ev) { }
static inline int ir_lirc_register(struct rc_dev *dev) { return 0; }
static inline void ir_lirc_unregister(struct rc_dev *dev) { }
#endif

289 290 291 292 293 294 295
/*
 * Decoder initialization code
 *
 * Those load logic are called during ir-core init, and automatically
 * loads the compiled decoders for their usage with IR raw events
 */

296
#endif /* _RC_CORE_PRIV */