Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * LIRC base driver
  4 *
  5 * by Artur Lipowski <alipowski@interia.pl>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  6 */
  7
  8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  9
 10#include <linux/module.h>
 11#include <linux/mutex.h>
 12#include <linux/device.h>
 13#include <linux/file.h>
 14#include <linux/idr.h>
 15#include <linux/poll.h>
 16#include <linux/sched.h>
 
 
 
 
 
 
 17#include <linux/wait.h>
 
 
 
 
 
 18
 19#include "rc-core-priv.h"
 20#include <uapi/linux/lirc.h>
 21
 22#define LIRCBUF_SIZE	1024
 
 
 
 
 23
 24static dev_t lirc_base_dev;
 25
 26/* Used to keep track of allocated lirc devices */
 27static DEFINE_IDA(lirc_ida);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 28
 29/* Only used for sysfs but defined to void otherwise */
 30static struct class *lirc_class;
 31
 32/**
 33 * lirc_raw_event() - Send raw IR data to lirc to be relayed to userspace
 34 *
 35 * @dev:	the struct rc_dev descriptor of the device
 36 * @ev:		the struct ir_raw_event descriptor of the pulse/space
 37 */
 38void lirc_raw_event(struct rc_dev *dev, struct ir_raw_event ev)
 39{
 40	unsigned long flags;
 41	struct lirc_fh *fh;
 42	int sample;
 43
 44	/* Receiver overflow, data missing */
 45	if (ev.overflow) {
 46		/*
 47		 * Send lirc overflow message. This message is unknown to
 48		 * lircd, but it will interpret this as a long space as
 49		 * long as the value is set to high value. This resets its
 50		 * decoder state.
 51		 */
 52		sample = LIRC_OVERFLOW(LIRC_VALUE_MASK);
 53		dev_dbg(&dev->dev, "delivering overflow to lirc_dev\n");
 54
 55	/* Carrier reports */
 56	} else if (ev.carrier_report) {
 57		sample = LIRC_FREQUENCY(ev.carrier);
 58		dev_dbg(&dev->dev, "carrier report (freq: %d)\n", sample);
 59
 60	/* Packet end */
 61	} else if (ev.timeout) {
 62		dev->gap_start = ktime_get();
 63
 64		sample = LIRC_TIMEOUT(ev.duration);
 65		dev_dbg(&dev->dev, "timeout report (duration: %d)\n", sample);
 66
 67	/* Normal sample */
 68	} else {
 69		if (dev->gap_start) {
 70			u64 duration = ktime_us_delta(ktime_get(),
 71						      dev->gap_start);
 72
 73			/* Cap by LIRC_VALUE_MASK */
 74			duration = min_t(u64, duration, LIRC_VALUE_MASK);
 75
 76			spin_lock_irqsave(&dev->lirc_fh_lock, flags);
 77			list_for_each_entry(fh, &dev->lirc_fh, list)
 78				kfifo_put(&fh->rawir, LIRC_SPACE(duration));
 79			spin_unlock_irqrestore(&dev->lirc_fh_lock, flags);
 80			dev->gap_start = 0;
 81		}
 82
 83		sample = ev.pulse ? LIRC_PULSE(ev.duration) :
 84					LIRC_SPACE(ev.duration);
 85		dev_dbg(&dev->dev, "delivering %uus %s to lirc_dev\n",
 86			ev.duration, TO_STR(ev.pulse));
 87	}
 88
 89	/*
 90	 * bpf does not care about the gap generated above; that exists
 91	 * for backwards compatibility
 92	 */
 93	lirc_bpf_run(dev, sample);
 94
 95	spin_lock_irqsave(&dev->lirc_fh_lock, flags);
 96	list_for_each_entry(fh, &dev->lirc_fh, list) {
 97		if (kfifo_put(&fh->rawir, sample))
 98			wake_up_poll(&fh->wait_poll, EPOLLIN | EPOLLRDNORM);
 99	}
100	spin_unlock_irqrestore(&dev->lirc_fh_lock, flags);
101}
102
103/**
104 * lirc_scancode_event() - Send scancode data to lirc to be relayed to
105 *		userspace. This can be called in atomic context.
106 * @dev:	the struct rc_dev descriptor of the device
107 * @lsc:	the struct lirc_scancode describing the decoded scancode
108 */
109void lirc_scancode_event(struct rc_dev *dev, struct lirc_scancode *lsc)
110{
111	unsigned long flags;
112	struct lirc_fh *fh;
 
 
 
 
 
 
 
 
 
 
 
 
113
114	lsc->timestamp = ktime_get_ns();
 
115
116	spin_lock_irqsave(&dev->lirc_fh_lock, flags);
117	list_for_each_entry(fh, &dev->lirc_fh, list) {
118		if (kfifo_put(&fh->scancodes, *lsc))
119			wake_up_poll(&fh->wait_poll, EPOLLIN | EPOLLRDNORM);
120	}
121	spin_unlock_irqrestore(&dev->lirc_fh_lock, flags);
 
122}
123EXPORT_SYMBOL_GPL(lirc_scancode_event);
124
125static int lirc_open(struct inode *inode, struct file *file)
 
 
126{
127	struct rc_dev *dev = container_of(inode->i_cdev, struct rc_dev,
128					  lirc_cdev);
129	struct lirc_fh *fh = kzalloc(sizeof(*fh), GFP_KERNEL);
130	unsigned long flags;
131	int retval;
132
133	if (!fh)
134		return -ENOMEM;
135
136	get_device(&dev->dev);
 
137
138	if (!dev->registered) {
139		retval = -ENODEV;
140		goto out_fh;
141	}
142
143	if (dev->driver_type == RC_DRIVER_IR_RAW) {
144		if (kfifo_alloc(&fh->rawir, MAX_IR_EVENT_SIZE, GFP_KERNEL)) {
145			retval = -ENOMEM;
146			goto out_fh;
 
 
 
 
147		}
148	}
149
150	if (dev->driver_type != RC_DRIVER_IR_RAW_TX) {
151		if (kfifo_alloc(&fh->scancodes, 32, GFP_KERNEL)) {
152			retval = -ENOMEM;
153			goto out_rawir;
154		}
155	}
156
157	fh->send_mode = LIRC_MODE_PULSE;
158	fh->rc = dev;
159
160	if (dev->driver_type == RC_DRIVER_SCANCODE)
161		fh->rec_mode = LIRC_MODE_SCANCODE;
162	else
163		fh->rec_mode = LIRC_MODE_MODE2;
164
165	retval = rc_open(dev);
166	if (retval)
167		goto out_kfifo;
 
 
 
 
 
 
 
 
 
 
168
169	init_waitqueue_head(&fh->wait_poll);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
171	file->private_data = fh;
172	spin_lock_irqsave(&dev->lirc_fh_lock, flags);
173	list_add(&fh->list, &dev->lirc_fh);
174	spin_unlock_irqrestore(&dev->lirc_fh_lock, flags);
 
175
176	stream_open(inode, file);
177
178	return 0;
179out_kfifo:
180	if (dev->driver_type != RC_DRIVER_IR_RAW_TX)
181		kfifo_free(&fh->scancodes);
182out_rawir:
183	if (dev->driver_type == RC_DRIVER_IR_RAW)
184		kfifo_free(&fh->rawir);
185out_fh:
186	kfree(fh);
187	put_device(&dev->dev);
188
 
 
189	return retval;
190}
191
192static int lirc_close(struct inode *inode, struct file *file)
193{
194	struct lirc_fh *fh = file->private_data;
195	struct rc_dev *dev = fh->rc;
196	unsigned long flags;
197
198	spin_lock_irqsave(&dev->lirc_fh_lock, flags);
199	list_del(&fh->list);
200	spin_unlock_irqrestore(&dev->lirc_fh_lock, flags);
201
202	if (dev->driver_type == RC_DRIVER_IR_RAW)
203		kfifo_free(&fh->rawir);
204	if (dev->driver_type != RC_DRIVER_IR_RAW_TX)
205		kfifo_free(&fh->scancodes);
206	kfree(fh);
207
208	rc_close(dev);
209	put_device(&dev->dev);
210
211	return 0;
212}
 
 
 
213
214static ssize_t lirc_transmit(struct file *file, const char __user *buf,
215			     size_t n, loff_t *ppos)
216{
217	struct lirc_fh *fh = file->private_data;
218	struct rc_dev *dev = fh->rc;
219	unsigned int *txbuf;
220	struct ir_raw_event *raw = NULL;
221	ssize_t ret;
222	size_t count;
223	ktime_t start;
224	s64 towait;
225	unsigned int duration = 0; /* signal duration in us */
226	int i;
227
228	ret = mutex_lock_interruptible(&dev->lock);
229	if (ret)
230		return ret;
231
232	if (!dev->registered) {
233		ret = -ENODEV;
234		goto out_unlock;
 
 
 
 
235	}
236
237	if (!dev->tx_ir) {
238		ret = -EINVAL;
239		goto out_unlock;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240	}
241
242	if (fh->send_mode == LIRC_MODE_SCANCODE) {
243		struct lirc_scancode scan;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
245		if (n != sizeof(scan)) {
246			ret = -EINVAL;
247			goto out_unlock;
248		}
 
 
249
250		if (copy_from_user(&scan, buf, sizeof(scan))) {
251			ret = -EFAULT;
252			goto out_unlock;
253		}
254
255		if (scan.flags || scan.keycode || scan.timestamp ||
256		    scan.rc_proto > RC_PROTO_MAX) {
257			ret = -EINVAL;
258			goto out_unlock;
259		}
260
261		/* We only have encoders for 32-bit protocols. */
262		if (scan.scancode > U32_MAX ||
263		    !rc_validate_scancode(scan.rc_proto, scan.scancode)) {
264			ret = -EINVAL;
265			goto out_unlock;
 
 
266		}
267
268		raw = kmalloc_array(LIRCBUF_SIZE, sizeof(*raw), GFP_KERNEL);
269		if (!raw) {
270			ret = -ENOMEM;
271			goto out_unlock;
272		}
 
 
 
 
 
273
274		ret = ir_raw_encode_scancode(scan.rc_proto, scan.scancode,
275					     raw, LIRCBUF_SIZE);
276		if (ret < 0)
277			goto out_kfree_raw;
278
279		count = ret;
 
 
280
281		txbuf = kmalloc_array(count, sizeof(unsigned int), GFP_KERNEL);
282		if (!txbuf) {
283			ret = -ENOMEM;
284			goto out_kfree_raw;
 
 
 
 
 
285		}
 
 
 
 
 
286
287		for (i = 0; i < count; i++)
288			txbuf[i] = raw[i].duration;
289
290		if (dev->s_tx_carrier) {
291			int carrier = ir_raw_encode_carrier(scan.rc_proto);
 
 
 
 
 
 
 
 
 
 
292
293			if (carrier > 0)
294				dev->s_tx_carrier(dev, carrier);
295		}
296	} else {
297		if (n < sizeof(unsigned int) || n % sizeof(unsigned int)) {
298			ret = -EINVAL;
299			goto out_unlock;
300		}
301
302		count = n / sizeof(unsigned int);
303		if (count > LIRCBUF_SIZE || count % 2 == 0) {
304			ret = -EINVAL;
305			goto out_unlock;
306		}
307
308		txbuf = memdup_user(buf, n);
309		if (IS_ERR(txbuf)) {
310			ret = PTR_ERR(txbuf);
311			goto out_unlock;
312		}
313	}
314
315	for (i = 0; i < count; i++) {
316		if (txbuf[i] > IR_MAX_DURATION - duration || !txbuf[i]) {
317			ret = -EINVAL;
318			goto out_kfree;
319		}
320
321		duration += txbuf[i];
322	}
323
324	start = ktime_get();
 
 
 
 
 
325
326	ret = dev->tx_ir(dev, txbuf, count);
327	if (ret < 0)
328		goto out_kfree;
329
330	kfree(txbuf);
331	kfree(raw);
332	mutex_unlock(&dev->lock);
333
334	/*
335	 * The lircd gap calculation expects the write function to
336	 * wait for the actual IR signal to be transmitted before
337	 * returning.
338	 */
339	towait = ktime_us_delta(ktime_add_us(start, duration),
340				ktime_get());
341	if (towait > 0) {
342		set_current_state(TASK_INTERRUPTIBLE);
343		schedule_timeout(usecs_to_jiffies(towait));
 
 
 
 
 
344	}
345
346	return n;
347out_kfree:
348	kfree(txbuf);
349out_kfree_raw:
350	kfree(raw);
351out_unlock:
352	mutex_unlock(&dev->lock);
353	return ret;
354}
 
355
356static long lirc_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
357{
358	struct lirc_fh *fh = file->private_data;
359	struct rc_dev *dev = fh->rc;
360	u32 __user *argp = (u32 __user *)(arg);
361	u32 val = 0;
362	int ret;
363
364	if (_IOC_DIR(cmd) & _IOC_WRITE) {
365		ret = get_user(val, argp);
366		if (ret)
367			return ret;
368	}
369
370	ret = mutex_lock_interruptible(&dev->lock);
371	if (ret)
372		return ret;
373
374	if (!dev->registered) {
375		ret = -ENODEV;
376		goto out;
 
377	}
378
379	switch (cmd) {
380	case LIRC_GET_FEATURES:
381		if (dev->driver_type == RC_DRIVER_SCANCODE)
382			val |= LIRC_CAN_REC_SCANCODE;
383
384		if (dev->driver_type == RC_DRIVER_IR_RAW) {
385			val |= LIRC_CAN_REC_MODE2;
386			if (dev->rx_resolution)
387				val |= LIRC_CAN_GET_REC_RESOLUTION;
388		}
389
390		if (dev->tx_ir) {
391			val |= LIRC_CAN_SEND_PULSE;
392			if (dev->s_tx_mask)
393				val |= LIRC_CAN_SET_TRANSMITTER_MASK;
394			if (dev->s_tx_carrier)
395				val |= LIRC_CAN_SET_SEND_CARRIER;
396			if (dev->s_tx_duty_cycle)
397				val |= LIRC_CAN_SET_SEND_DUTY_CYCLE;
398		}
399
400		if (dev->s_rx_carrier_range)
401			val |= LIRC_CAN_SET_REC_CARRIER |
402				LIRC_CAN_SET_REC_CARRIER_RANGE;
403
404		if (dev->s_wideband_receiver)
405			val |= LIRC_CAN_USE_WIDEBAND_RECEIVER;
 
 
406
407		if (dev->s_carrier_report)
408			val |= LIRC_CAN_MEASURE_CARRIER;
 
 
409
410		if (dev->max_timeout)
411			val |= LIRC_CAN_SET_REC_TIMEOUT;
 
 
 
 
 
 
 
412
413		break;
 
 
 
414
415	/* mode support */
416	case LIRC_GET_REC_MODE:
417		if (dev->driver_type == RC_DRIVER_IR_RAW_TX)
418			ret = -ENOTTY;
419		else
420			val = fh->rec_mode;
421		break;
422
423	case LIRC_SET_REC_MODE:
424		switch (dev->driver_type) {
425		case RC_DRIVER_IR_RAW_TX:
426			ret = -ENOTTY;
427			break;
428		case RC_DRIVER_SCANCODE:
429			if (val != LIRC_MODE_SCANCODE)
430				ret = -EINVAL;
431			break;
432		case RC_DRIVER_IR_RAW:
433			if (!(val == LIRC_MODE_MODE2 ||
434			      val == LIRC_MODE_SCANCODE))
435				ret = -EINVAL;
436			break;
437		}
438
439		if (!ret)
440			fh->rec_mode = val;
441		break;
442
443	case LIRC_GET_SEND_MODE:
444		if (!dev->tx_ir)
445			ret = -ENOTTY;
446		else
447			val = fh->send_mode;
448		break;
449
450	case LIRC_SET_SEND_MODE:
451		if (!dev->tx_ir)
452			ret = -ENOTTY;
453		else if (!(val == LIRC_MODE_PULSE || val == LIRC_MODE_SCANCODE))
454			ret = -EINVAL;
455		else
456			fh->send_mode = val;
457		break;
458
459	/* TX settings */
460	case LIRC_SET_TRANSMITTER_MASK:
461		if (!dev->s_tx_mask)
462			ret = -ENOTTY;
463		else
464			ret = dev->s_tx_mask(dev, val);
465		break;
466
467	case LIRC_SET_SEND_CARRIER:
468		if (!dev->s_tx_carrier)
469			ret = -ENOTTY;
470		else
471			ret = dev->s_tx_carrier(dev, val);
472		break;
473
474	case LIRC_SET_SEND_DUTY_CYCLE:
475		if (!dev->s_tx_duty_cycle)
476			ret = -ENOTTY;
477		else if (val <= 0 || val >= 100)
478			ret = -EINVAL;
479		else
480			ret = dev->s_tx_duty_cycle(dev, val);
481		break;
482
483	/* RX settings */
484	case LIRC_SET_REC_CARRIER:
485		if (!dev->s_rx_carrier_range)
486			ret = -ENOTTY;
487		else if (val <= 0)
488			ret = -EINVAL;
489		else
490			ret = dev->s_rx_carrier_range(dev, fh->carrier_low,
491						      val);
492		break;
 
493
494	case LIRC_SET_REC_CARRIER_RANGE:
495		if (!dev->s_rx_carrier_range)
496			ret = -ENOTTY;
497		else if (val <= 0)
498			ret = -EINVAL;
499		else
500			fh->carrier_low = val;
501		break;
502
503	case LIRC_GET_REC_RESOLUTION:
504		if (!dev->rx_resolution)
505			ret = -ENOTTY;
506		else
507			val = dev->rx_resolution;
508		break;
509
510	case LIRC_SET_WIDEBAND_RECEIVER:
511		if (!dev->s_wideband_receiver)
512			ret = -ENOTTY;
513		else
514			ret = dev->s_wideband_receiver(dev, !!val);
515		break;
516
517	case LIRC_SET_MEASURE_CARRIER_MODE:
518		if (!dev->s_carrier_report)
519			ret = -ENOTTY;
520		else
521			ret = dev->s_carrier_report(dev, !!val);
522		break;
523
524	/* Generic timeout support */
525	case LIRC_GET_MIN_TIMEOUT:
526		if (!dev->max_timeout)
527			ret = -ENOTTY;
528		else
529			val = dev->min_timeout;
530		break;
531
532	case LIRC_GET_MAX_TIMEOUT:
533		if (!dev->max_timeout)
534			ret = -ENOTTY;
535		else
536			val = dev->max_timeout;
537		break;
538
539	case LIRC_SET_REC_TIMEOUT:
540		if (!dev->max_timeout) {
541			ret = -ENOTTY;
542		} else {
543			if (val < dev->min_timeout || val > dev->max_timeout)
544				ret = -EINVAL;
545			else if (dev->s_timeout)
546				ret = dev->s_timeout(dev, val);
547			else
548				dev->timeout = val;
549		}
550		break;
551
552	case LIRC_GET_REC_TIMEOUT:
553		if (!dev->timeout)
554			ret = -ENOTTY;
555		else
556			val = dev->timeout;
557		break;
558
559	case LIRC_SET_REC_TIMEOUT_REPORTS:
560		if (dev->driver_type != RC_DRIVER_IR_RAW)
561			ret = -ENOTTY;
562		break;
563
564	default:
565		ret = -ENOTTY;
566	}
567
568	if (!ret && _IOC_DIR(cmd) & _IOC_READ)
569		ret = put_user(val, argp);
570
571out:
572	mutex_unlock(&dev->lock);
573	return ret;
574}
 
575
576static __poll_t lirc_poll(struct file *file, struct poll_table_struct *wait)
577{
578	struct lirc_fh *fh = file->private_data;
579	struct rc_dev *rcdev = fh->rc;
580	__poll_t events = 0;
581
582	poll_wait(file, &fh->wait_poll, wait);
583
584	if (!rcdev->registered) {
585		events = EPOLLHUP | EPOLLERR;
586	} else if (rcdev->driver_type != RC_DRIVER_IR_RAW_TX) {
587		if (fh->rec_mode == LIRC_MODE_SCANCODE &&
588		    !kfifo_is_empty(&fh->scancodes))
589			events = EPOLLIN | EPOLLRDNORM;
590
591		if (fh->rec_mode == LIRC_MODE_MODE2 &&
592		    !kfifo_is_empty(&fh->rawir))
593			events = EPOLLIN | EPOLLRDNORM;
594	}
595
596	return events;
597}
598
599static ssize_t lirc_read_mode2(struct file *file, char __user *buffer,
600			       size_t length)
601{
602	struct lirc_fh *fh = file->private_data;
603	struct rc_dev *rcdev = fh->rc;
604	unsigned int copied;
605	int ret;
606
607	if (length < sizeof(unsigned int) || length % sizeof(unsigned int))
608		return -EINVAL;
609
610	do {
611		if (kfifo_is_empty(&fh->rawir)) {
612			if (file->f_flags & O_NONBLOCK)
613				return -EAGAIN;
614
615			ret = wait_event_interruptible(fh->wait_poll,
616					!kfifo_is_empty(&fh->rawir) ||
617					!rcdev->registered);
618			if (ret)
619				return ret;
620		}
621
622		if (!rcdev->registered)
623			return -ENODEV;
624
625		ret = mutex_lock_interruptible(&rcdev->lock);
626		if (ret)
627			return ret;
628		ret = kfifo_to_user(&fh->rawir, buffer, length, &copied);
629		mutex_unlock(&rcdev->lock);
630		if (ret)
631			return ret;
632	} while (copied == 0);
633
634	return copied;
635}
636
637static ssize_t lirc_read_scancode(struct file *file, char __user *buffer,
638				  size_t length)
639{
640	struct lirc_fh *fh = file->private_data;
641	struct rc_dev *rcdev = fh->rc;
642	unsigned int copied;
643	int ret;
644
645	if (length < sizeof(struct lirc_scancode) ||
646	    length % sizeof(struct lirc_scancode))
647		return -EINVAL;
 
 
 
 
 
 
648
649	do {
650		if (kfifo_is_empty(&fh->scancodes)) {
651			if (file->f_flags & O_NONBLOCK)
652				return -EAGAIN;
 
 
 
 
 
 
 
 
 
 
 
 
 
653
654			ret = wait_event_interruptible(fh->wait_poll,
655					!kfifo_is_empty(&fh->scancodes) ||
656					!rcdev->registered);
657			if (ret)
658				return ret;
 
 
659		}
660
661		if (!rcdev->registered)
662			return -ENODEV;
 
 
 
 
 
 
663
664		ret = mutex_lock_interruptible(&rcdev->lock);
665		if (ret)
666			return ret;
667		ret = kfifo_to_user(&fh->scancodes, buffer, length, &copied);
668		mutex_unlock(&rcdev->lock);
669		if (ret)
670			return ret;
671	} while (copied == 0);
672
673	return copied;
674}
 
675
676static ssize_t lirc_read(struct file *file, char __user *buffer, size_t length,
677			 loff_t *ppos)
 
 
678{
679	struct lirc_fh *fh = file->private_data;
680	struct rc_dev *rcdev = fh->rc;
 
 
681
682	if (rcdev->driver_type == RC_DRIVER_IR_RAW_TX)
683		return -EINVAL;
684
685	if (!rcdev->registered)
686		return -ENODEV;
 
687
688	if (fh->rec_mode == LIRC_MODE_MODE2)
689		return lirc_read_mode2(file, buffer, length);
690	else /* LIRC_MODE_SCANCODE */
691		return lirc_read_scancode(file, buffer, length);
692}
693
694static const struct file_operations lirc_fops = {
695	.owner		= THIS_MODULE,
696	.write		= lirc_transmit,
697	.unlocked_ioctl	= lirc_ioctl,
698	.compat_ioctl	= compat_ptr_ioctl,
699	.read		= lirc_read,
700	.poll		= lirc_poll,
701	.open		= lirc_open,
702	.release	= lirc_close,
703	.llseek		= no_llseek,
704};
705
706static void lirc_release_device(struct device *ld)
707{
708	struct rc_dev *rcdev = container_of(ld, struct rc_dev, lirc_dev);
 
 
 
 
 
709
710	put_device(&rcdev->dev);
711}
 
 
712
713int lirc_register(struct rc_dev *dev)
714{
715	const char *rx_type, *tx_type;
716	int err, minor;
 
 
 
717
718	minor = ida_alloc_max(&lirc_ida, RC_DEV_MAX - 1, GFP_KERNEL);
719	if (minor < 0)
720		return minor;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
721
722	device_initialize(&dev->lirc_dev);
723	dev->lirc_dev.class = lirc_class;
724	dev->lirc_dev.parent = &dev->dev;
725	dev->lirc_dev.release = lirc_release_device;
726	dev->lirc_dev.devt = MKDEV(MAJOR(lirc_base_dev), minor);
727	dev_set_name(&dev->lirc_dev, "lirc%d", minor);
728
729	INIT_LIST_HEAD(&dev->lirc_fh);
730	spin_lock_init(&dev->lirc_fh_lock);
731
732	cdev_init(&dev->lirc_cdev, &lirc_fops);
 
 
 
733
734	err = cdev_device_add(&dev->lirc_cdev, &dev->lirc_dev);
735	if (err)
736		goto out_ida;
737
738	get_device(&dev->dev);
 
 
739
740	switch (dev->driver_type) {
741	case RC_DRIVER_SCANCODE:
742		rx_type = "scancode";
743		break;
744	case RC_DRIVER_IR_RAW:
745		rx_type = "raw IR";
746		break;
747	default:
748		rx_type = "no";
749		break;
750	}
751
752	if (dev->tx_ir)
753		tx_type = "raw IR";
754	else
755		tx_type = "no";
756
757	dev_info(&dev->dev, "lirc_dev: driver %s registered at minor = %d, %s receiver, %s transmitter",
758		 dev->driver_name, minor, rx_type, tx_type);
759
760	return 0;
761
762out_ida:
763	ida_free(&lirc_ida, minor);
764	return err;
765}
 
766
767void lirc_unregister(struct rc_dev *dev)
 
 
768{
769	unsigned long flags;
770	struct lirc_fh *fh;
771
772	dev_dbg(&dev->dev, "lirc_dev: driver %s unregistered from minor = %d\n",
773		dev->driver_name, MINOR(dev->lirc_dev.devt));
 
 
 
 
774
775	spin_lock_irqsave(&dev->lirc_fh_lock, flags);
776	list_for_each_entry(fh, &dev->lirc_fh, list)
777		wake_up_poll(&fh->wait_poll, EPOLLHUP | EPOLLERR);
778	spin_unlock_irqrestore(&dev->lirc_fh_lock, flags);
779
780	cdev_device_del(&dev->lirc_cdev, &dev->lirc_dev);
781	ida_free(&lirc_ida, MINOR(dev->lirc_dev.devt));
782}
 
 
783
784int __init lirc_dev_init(void)
785{
786	int retval;
787
788	lirc_class = class_create(THIS_MODULE, "lirc");
789	if (IS_ERR(lirc_class)) {
790		pr_err("class_create failed\n");
791		return PTR_ERR(lirc_class);
 
792	}
793
794	retval = alloc_chrdev_region(&lirc_base_dev, 0, RC_DEV_MAX, "lirc");
 
795	if (retval) {
796		class_destroy(lirc_class);
797		pr_err("alloc_chrdev_region failed\n");
798		return retval;
799	}
800
801	pr_debug("IR Remote Control driver registered, major %d\n",
802		 MAJOR(lirc_base_dev));
803
804	return 0;
805}
806
807void __exit lirc_dev_exit(void)
808{
809	class_destroy(lirc_class);
810	unregister_chrdev_region(lirc_base_dev, RC_DEV_MAX);
811}
812
813struct rc_dev *rc_dev_get_from_fd(int fd)
814{
815	struct fd f = fdget(fd);
816	struct lirc_fh *fh;
817	struct rc_dev *dev;
818
819	if (!f.file)
820		return ERR_PTR(-EBADF);
821
822	if (f.file->f_op != &lirc_fops) {
823		fdput(f);
824		return ERR_PTR(-EINVAL);
825	}
826
827	fh = f.file->private_data;
828	dev = fh->rc;
 
 
 
 
829
830	get_device(&dev->dev);
831	fdput(f);
832
833	return dev;
834}
 
835
836MODULE_ALIAS("lirc_dev");
 
v3.5.6
 
  1/*
  2 * LIRC base driver
  3 *
  4 * by Artur Lipowski <alipowski@interia.pl>
  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; either version 2 of the License, or
  9 *  (at your option) any later version.
 10 *
 11 *  This program is distributed in the hope that it will be useful,
 12 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 13 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 14 *  GNU General Public License for more details.
 15 *
 16 *  You should have received a copy of the GNU General Public License
 17 *  along with this program; if not, write to the Free Software
 18 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 19 *
 20 */
 21
 
 
 22#include <linux/module.h>
 23#include <linux/kernel.h>
 
 
 
 
 24#include <linux/sched.h>
 25#include <linux/errno.h>
 26#include <linux/ioctl.h>
 27#include <linux/fs.h>
 28#include <linux/poll.h>
 29#include <linux/completion.h>
 30#include <linux/mutex.h>
 31#include <linux/wait.h>
 32#include <linux/unistd.h>
 33#include <linux/kthread.h>
 34#include <linux/bitops.h>
 35#include <linux/device.h>
 36#include <linux/cdev.h>
 37
 38#include <media/lirc.h>
 39#include <media/lirc_dev.h>
 40
 41static bool debug;
 42
 43#define IRCTL_DEV_NAME	"BaseRemoteCtl"
 44#define NOPLUG		-1
 45#define LOGHEAD		"lirc_dev (%s[%d]): "
 46
 47static dev_t lirc_base_dev;
 48
 49struct irctl {
 50	struct lirc_driver d;
 51	int attached;
 52	int open;
 53
 54	struct mutex irctl_lock;
 55	struct lirc_buffer *buf;
 56	unsigned int chunk_size;
 57
 58	struct cdev *cdev;
 59
 60	struct task_struct *task;
 61	long jiffies_to_wait;
 62};
 63
 64static DEFINE_MUTEX(lirc_dev_lock);
 65
 66static struct irctl *irctls[MAX_IRCTL_DEVICES];
 67
 68/* Only used for sysfs but defined to void otherwise */
 69static struct class *lirc_class;
 70
 71/*  helper function
 72 *  initializes the irctl structure
 
 
 
 73 */
 74static void lirc_irctl_init(struct irctl *ir)
 75{
 76	mutex_init(&ir->irctl_lock);
 77	ir->d.minor = NOPLUG;
 78}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 79
 80static void lirc_irctl_cleanup(struct irctl *ir)
 81{
 82	dev_dbg(ir->d.dev, LOGHEAD "cleaning up\n", ir->d.name, ir->d.minor);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 83
 84	device_destroy(lirc_class, MKDEV(MAJOR(lirc_base_dev), ir->d.minor));
 
 
 
 
 85
 86	if (ir->buf != ir->d.rbuf) {
 87		lirc_buffer_free(ir->buf);
 88		kfree(ir->buf);
 
 89	}
 90	ir->buf = NULL;
 91}
 92
 93/*  helper function
 94 *  reads key codes from driver and puts them into buffer
 95 *  returns 0 on success
 
 
 96 */
 97static int lirc_add_to_buf(struct irctl *ir)
 98{
 99	if (ir->d.add_to_buf) {
100		int res = -ENODATA;
101		int got_data = 0;
102
103		/*
104		 * service the device as long as it is returning
105		 * data and we have space
106		 */
107get_data:
108		res = ir->d.add_to_buf(ir->d.data, ir->buf);
109		if (res == 0) {
110			got_data++;
111			goto get_data;
112		}
113
114		if (res == -ENODEV)
115			kthread_stop(ir->task);
116
117		return got_data ? 0 : res;
 
 
 
118	}
119
120	return 0;
121}
 
122
123/* main function of the polling thread
124 */
125static int lirc_thread(void *irctl)
126{
127	struct irctl *ir = irctl;
 
 
 
 
 
 
 
128
129	dev_dbg(ir->d.dev, LOGHEAD "poll thread started\n",
130		ir->d.name, ir->d.minor);
131
132	do {
133		if (ir->open) {
134			if (ir->jiffies_to_wait) {
135				set_current_state(TASK_INTERRUPTIBLE);
136				schedule_timeout(ir->jiffies_to_wait);
137			}
138			if (kthread_should_stop())
139				break;
140			if (!lirc_add_to_buf(ir))
141				wake_up_interruptible(&ir->buf->wait_poll);
142		} else {
143			set_current_state(TASK_INTERRUPTIBLE);
144			schedule();
145		}
146	} while (!kthread_should_stop());
147
148	dev_dbg(ir->d.dev, LOGHEAD "poll thread ended\n",
149		ir->d.name, ir->d.minor);
 
 
 
 
150
151	return 0;
152}
153
 
 
 
 
154
155static struct file_operations lirc_dev_fops = {
156	.owner		= THIS_MODULE,
157	.read		= lirc_dev_fop_read,
158	.write		= lirc_dev_fop_write,
159	.poll		= lirc_dev_fop_poll,
160	.unlocked_ioctl	= lirc_dev_fop_ioctl,
161#ifdef CONFIG_COMPAT
162	.compat_ioctl	= lirc_dev_fop_ioctl,
163#endif
164	.open		= lirc_dev_fop_open,
165	.release	= lirc_dev_fop_close,
166	.llseek		= noop_llseek,
167};
168
169static int lirc_cdev_add(struct irctl *ir)
170{
171	int retval = -ENOMEM;
172	struct lirc_driver *d = &ir->d;
173	struct cdev *cdev;
174
175	cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
176	if (!cdev)
177		goto err_out;
178
179	if (d->fops) {
180		cdev_init(cdev, d->fops);
181		cdev->owner = d->owner;
182	} else {
183		cdev_init(cdev, &lirc_dev_fops);
184		cdev->owner = THIS_MODULE;
185	}
186	retval = kobject_set_name(&cdev->kobj, "lirc%d", d->minor);
187	if (retval)
188		goto err_out;
189
190	retval = cdev_add(cdev, MKDEV(MAJOR(lirc_base_dev), d->minor), 1);
191	if (retval) {
192		kobject_put(&cdev->kobj);
193		goto err_out;
194	}
195
196	ir->cdev = cdev;
197
198	return 0;
 
 
 
 
 
 
 
 
 
199
200err_out:
201	kfree(cdev);
202	return retval;
203}
204
205int lirc_register_driver(struct lirc_driver *d)
206{
207	struct irctl *ir;
208	int minor;
209	int bytes_in_key;
210	unsigned int chunk_size;
211	unsigned int buffer_size;
212	int err;
213
214	if (!d) {
215		printk(KERN_ERR "lirc_dev: lirc_register_driver: "
216		       "driver pointer must be not NULL!\n");
217		err = -EBADRQC;
218		goto out;
219	}
 
 
 
220
221	if (!d->dev) {
222		printk(KERN_ERR "%s: dev pointer not filled in!\n", __func__);
223		err = -EINVAL;
224		goto out;
225	}
226
227	if (MAX_IRCTL_DEVICES <= d->minor) {
228		dev_err(d->dev, "lirc_dev: lirc_register_driver: "
229			"\"minor\" must be between 0 and %d (%d)!\n",
230			MAX_IRCTL_DEVICES - 1, d->minor);
231		err = -EBADRQC;
232		goto out;
233	}
 
 
 
 
 
 
 
 
 
 
234
235	if (1 > d->code_length || (BUFLEN * 8) < d->code_length) {
236		dev_err(d->dev, "lirc_dev: lirc_register_driver: "
237			"code length in bits for minor (%d) "
238			"must be less than %d!\n",
239			d->minor, BUFLEN * 8);
240		err = -EBADRQC;
241		goto out;
242	}
243
244	dev_dbg(d->dev, "lirc_dev: lirc_register_driver: sample_rate: %d\n",
245		d->sample_rate);
246	if (d->sample_rate) {
247		if (2 > d->sample_rate || HZ < d->sample_rate) {
248			dev_err(d->dev, "lirc_dev: lirc_register_driver: "
249				"sample_rate must be between 2 and %d!\n", HZ);
250			err = -EBADRQC;
251			goto out;
252		}
253		if (!d->add_to_buf) {
254			dev_err(d->dev, "lirc_dev: lirc_register_driver: "
255				"add_to_buf cannot be NULL when "
256				"sample_rate is set\n");
257			err = -EBADRQC;
258			goto out;
259		}
260	} else if (!(d->fops && d->fops->read) && !d->rbuf) {
261		dev_err(d->dev, "lirc_dev: lirc_register_driver: "
262			"fops->read and rbuf cannot all be NULL!\n");
263		err = -EBADRQC;
264		goto out;
265	} else if (!d->rbuf) {
266		if (!(d->fops && d->fops->read && d->fops->poll &&
267		      d->fops->unlocked_ioctl)) {
268			dev_err(d->dev, "lirc_dev: lirc_register_driver: "
269				"neither read, poll nor unlocked_ioctl can be NULL!\n");
270			err = -EBADRQC;
271			goto out;
272		}
273	}
274
275	mutex_lock(&lirc_dev_lock);
276
277	minor = d->minor;
278
279	if (minor < 0) {
280		/* find first free slot for driver */
281		for (minor = 0; minor < MAX_IRCTL_DEVICES; minor++)
282			if (!irctls[minor])
283				break;
284		if (MAX_IRCTL_DEVICES == minor) {
285			dev_err(d->dev, "lirc_dev: lirc_register_driver: "
286				"no free slots for drivers!\n");
287			err = -ENOMEM;
288			goto out_lock;
289		}
290	} else if (irctls[minor]) {
291		dev_err(d->dev, "lirc_dev: lirc_register_driver: "
292			"minor (%d) just registered!\n", minor);
293		err = -EBUSY;
294		goto out_lock;
295	}
296
297	ir = kzalloc(sizeof(struct irctl), GFP_KERNEL);
298	if (!ir) {
299		err = -ENOMEM;
300		goto out_lock;
301	}
302	lirc_irctl_init(ir);
303	irctls[minor] = ir;
304	d->minor = minor;
305
306	if (d->sample_rate) {
307		ir->jiffies_to_wait = HZ / d->sample_rate;
308	} else {
309		/* it means - wait for external event in task queue */
310		ir->jiffies_to_wait = 0;
311	}
312
313	/* some safety check 8-) */
314	d->name[sizeof(d->name)-1] = '\0';
 
 
315
316	bytes_in_key = BITS_TO_LONGS(d->code_length) +
317			(d->code_length % 8 ? 1 : 0);
318	buffer_size = d->buffer_size ? d->buffer_size : BUFLEN / bytes_in_key;
319	chunk_size  = d->chunk_size  ? d->chunk_size  : bytes_in_key;
 
320
321	if (d->rbuf) {
322		ir->buf = d->rbuf;
323	} else {
324		ir->buf = kmalloc(sizeof(struct lirc_buffer), GFP_KERNEL);
325		if (!ir->buf) {
326			err = -ENOMEM;
327			goto out_lock;
328		}
329		err = lirc_buffer_init(ir->buf, chunk_size, buffer_size);
330		if (err) {
331			kfree(ir->buf);
332			goto out_lock;
 
333		}
334	}
335	ir->chunk_size = ir->buf->chunk_size;
336
337	if (d->features == 0)
338		d->features = LIRC_CAN_REC_LIRCCODE;
339
340	ir->d = *d;
 
 
 
341
342	device_create(lirc_class, ir->d.dev,
343		      MKDEV(MAJOR(lirc_base_dev), ir->d.minor), NULL,
344		      "lirc%u", ir->d.minor);
345
346	if (d->sample_rate) {
347		/* try to fire up polling thread */
348		ir->task = kthread_run(lirc_thread, (void *)ir, "lirc_dev");
349		if (IS_ERR(ir->task)) {
350			dev_err(d->dev, "lirc_dev: lirc_register_driver: "
351				"cannot run poll thread for minor = %d\n",
352				d->minor);
353			err = -ECHILD;
354			goto out_sysfs;
355		}
356	}
357
358	err = lirc_cdev_add(ir);
359	if (err)
360		goto out_sysfs;
361
362	ir->attached = 1;
363	mutex_unlock(&lirc_dev_lock);
364
365	dev_info(ir->d.dev, "lirc_dev: driver %s registered at minor = %d\n",
366		 ir->d.name, ir->d.minor);
367	return minor;
368
369out_sysfs:
370	device_destroy(lirc_class, MKDEV(MAJOR(lirc_base_dev), ir->d.minor));
371out_lock:
372	mutex_unlock(&lirc_dev_lock);
373out:
374	return err;
375}
376EXPORT_SYMBOL(lirc_register_driver);
377
378int lirc_unregister_driver(int minor)
379{
380	struct irctl *ir;
381	struct cdev *cdev;
 
 
 
 
382
383	if (minor < 0 || minor >= MAX_IRCTL_DEVICES) {
384		printk(KERN_ERR "lirc_dev: %s: minor (%d) must be between "
385		       "0 and %d!\n", __func__, minor, MAX_IRCTL_DEVICES - 1);
386		return -EBADRQC;
387	}
388
389	ir = irctls[minor];
390	if (!ir) {
391		printk(KERN_ERR "lirc_dev: %s: failed to get irctl struct "
392		       "for minor %d!\n", __func__, minor);
393		return -ENOENT;
394	}
395
396	cdev = ir->cdev;
 
 
 
 
397
398	mutex_lock(&lirc_dev_lock);
 
399
400	if (ir->d.minor != minor) {
401		printk(KERN_ERR "lirc_dev: %s: minor (%d) device not "
402		       "registered!\n", __func__, minor);
403		mutex_unlock(&lirc_dev_lock);
404		return -ENOENT;
405	}
406
407	/* end up polling thread */
408	if (ir->task)
409		kthread_stop(ir->task);
410
411	dev_dbg(ir->d.dev, "lirc_dev: driver %s unregistered from minor = %d\n",
412		ir->d.name, ir->d.minor);
 
413
414	ir->attached = 0;
415	if (ir->open) {
416		dev_dbg(ir->d.dev, LOGHEAD "releasing opened driver\n",
417			ir->d.name, ir->d.minor);
418		wake_up_interruptible(&ir->buf->wait_poll);
419		mutex_lock(&ir->irctl_lock);
420		ir->d.set_use_dec(ir->d.data);
421		module_put(cdev->owner);
422		mutex_unlock(&ir->irctl_lock);
423	} else {
424		lirc_irctl_cleanup(ir);
425		cdev_del(cdev);
426		kfree(cdev);
427		kfree(ir);
428		irctls[minor] = NULL;
429	}
430
431	mutex_unlock(&lirc_dev_lock);
432
433	return 0;
 
 
 
 
 
434}
435EXPORT_SYMBOL(lirc_unregister_driver);
436
437int lirc_dev_fop_open(struct inode *inode, struct file *file)
438{
439	struct irctl *ir;
440	struct cdev *cdev;
441	int retval = 0;
 
 
442
443	if (iminor(inode) >= MAX_IRCTL_DEVICES) {
444		printk(KERN_WARNING "lirc_dev [%d]: open result = -ENODEV\n",
445		       iminor(inode));
446		return -ENODEV;
447	}
448
449	if (mutex_lock_interruptible(&lirc_dev_lock))
450		return -ERESTARTSYS;
 
451
452	ir = irctls[iminor(inode)];
453	if (!ir) {
454		retval = -ENODEV;
455		goto error;
456	}
457
458	dev_dbg(ir->d.dev, LOGHEAD "open called\n", ir->d.name, ir->d.minor);
 
 
 
459
460	if (ir->d.minor == NOPLUG) {
461		retval = -ENODEV;
462		goto error;
463	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
465	if (ir->open) {
466		retval = -EBUSY;
467		goto error;
468	}
469
470	cdev = ir->cdev;
471	if (try_module_get(cdev->owner)) {
472		ir->open++;
473		retval = ir->d.set_use_inc(ir->d.data);
474
475		if (retval) {
476			module_put(cdev->owner);
477			ir->open--;
478		} else {
479			lirc_buffer_clear(ir->buf);
480		}
481		if (ir->task)
482			wake_up_process(ir->task);
483	}
484
485error:
486	if (ir)
487		dev_dbg(ir->d.dev, LOGHEAD "open result = %d\n",
488			ir->d.name, ir->d.minor, retval);
489
490	mutex_unlock(&lirc_dev_lock);
 
 
 
 
 
 
491
492	nonseekable_open(inode, file);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
494	return retval;
495}
496EXPORT_SYMBOL(lirc_dev_fop_open);
497
498int lirc_dev_fop_close(struct inode *inode, struct file *file)
499{
500	struct irctl *ir = irctls[iminor(inode)];
501	struct cdev *cdev;
 
 
502
503	if (!ir) {
504		printk(KERN_ERR "%s: called with invalid irctl\n", __func__);
505		return -EINVAL;
506	}
 
 
 
 
507
508	cdev = ir->cdev;
 
 
 
 
 
 
509
510	dev_dbg(ir->d.dev, LOGHEAD "close called\n", ir->d.name, ir->d.minor);
 
 
 
 
 
511
512	WARN_ON(mutex_lock_killable(&lirc_dev_lock));
 
 
 
 
 
 
 
513
514	ir->open--;
515	if (ir->attached) {
516		ir->d.set_use_dec(ir->d.data);
517		module_put(cdev->owner);
518	} else {
519		lirc_irctl_cleanup(ir);
520		cdev_del(cdev);
521		irctls[ir->d.minor] = NULL;
522		kfree(cdev);
523		kfree(ir);
524	}
525
526	mutex_unlock(&lirc_dev_lock);
 
 
 
 
 
 
 
527
528	return 0;
529}
530EXPORT_SYMBOL(lirc_dev_fop_close);
 
 
 
531
532unsigned int lirc_dev_fop_poll(struct file *file, poll_table *wait)
533{
534	struct irctl *ir = irctls[iminor(file->f_dentry->d_inode)];
535	unsigned int ret;
 
 
536
537	if (!ir) {
538		printk(KERN_ERR "%s: called with invalid irctl\n", __func__);
539		return POLLERR;
540	}
 
 
541
542	dev_dbg(ir->d.dev, LOGHEAD "poll called\n", ir->d.name, ir->d.minor);
 
 
 
 
 
 
543
544	if (!ir->attached)
545		return POLLERR;
 
 
 
 
546
547	poll_wait(file, &ir->buf->wait_poll, wait);
 
 
 
 
 
 
 
 
 
 
 
548
549	if (ir->buf)
550		if (lirc_buffer_empty(ir->buf))
551			ret = 0;
552		else
553			ret = POLLIN | POLLRDNORM;
554	else
555		ret = POLLERR;
 
 
 
 
 
 
 
 
556
557	dev_dbg(ir->d.dev, LOGHEAD "poll result = %d\n",
558		ir->d.name, ir->d.minor, ret);
559
 
 
560	return ret;
561}
562EXPORT_SYMBOL(lirc_dev_fop_poll);
563
564long lirc_dev_fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
565{
566	__u32 mode;
567	int result = 0;
568	struct irctl *ir = irctls[iminor(file->f_dentry->d_inode)];
 
 
 
 
 
 
 
 
 
569
570	if (!ir) {
571		printk(KERN_ERR "lirc_dev: %s: no irctl found!\n", __func__);
572		return -ENODEV;
573	}
574
575	dev_dbg(ir->d.dev, LOGHEAD "ioctl called (0x%x)\n",
576		ir->d.name, ir->d.minor, cmd);
577
578	if (ir->d.minor == NOPLUG || !ir->attached) {
579		dev_dbg(ir->d.dev, LOGHEAD "ioctl result = -ENODEV\n",
580			ir->d.name, ir->d.minor);
581		return -ENODEV;
582	}
 
 
583
584	mutex_lock(&ir->irctl_lock);
 
585
586	switch (cmd) {
587	case LIRC_GET_FEATURES:
588		result = put_user(ir->d.features, (__u32 *)arg);
589		break;
590	case LIRC_GET_REC_MODE:
591		if (!(ir->d.features & LIRC_CAN_REC_MASK)) {
592			result = -ENOSYS;
593			break;
594		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
596		result = put_user(LIRC_REC2MODE
597				  (ir->d.features & LIRC_CAN_REC_MASK),
598				  (__u32 *)arg);
599		break;
600	case LIRC_SET_REC_MODE:
601		if (!(ir->d.features & LIRC_CAN_REC_MASK)) {
602			result = -ENOSYS;
603			break;
604		}
605
606		result = get_user(mode, (__u32 *)arg);
607		if (!result && !(LIRC_MODE2REC(mode) & ir->d.features))
608			result = -EINVAL;
609		/*
610		 * FIXME: We should actually set the mode somehow but
611		 * for now, lirc_serial doesn't support mode changing either
612		 */
613		break;
614	case LIRC_GET_LENGTH:
615		result = put_user(ir->d.code_length, (__u32 *)arg);
616		break;
617	case LIRC_GET_MIN_TIMEOUT:
618		if (!(ir->d.features & LIRC_CAN_SET_REC_TIMEOUT) ||
619		    ir->d.min_timeout == 0) {
620			result = -ENOSYS;
621			break;
622		}
623
624		result = put_user(ir->d.min_timeout, (__u32 *)arg);
625		break;
626	case LIRC_GET_MAX_TIMEOUT:
627		if (!(ir->d.features & LIRC_CAN_SET_REC_TIMEOUT) ||
628		    ir->d.max_timeout == 0) {
629			result = -ENOSYS;
630			break;
631		}
632
633		result = put_user(ir->d.max_timeout, (__u32 *)arg);
634		break;
635	default:
636		result = -EINVAL;
637	}
638
639	dev_dbg(ir->d.dev, LOGHEAD "ioctl result = %d\n",
640		ir->d.name, ir->d.minor, result);
641
642	mutex_unlock(&ir->irctl_lock);
 
 
 
 
 
 
 
643
644	return result;
645}
646EXPORT_SYMBOL(lirc_dev_fop_ioctl);
647
648ssize_t lirc_dev_fop_read(struct file *file,
649			  char __user *buffer,
650			  size_t length,
651			  loff_t *ppos)
652{
653	struct irctl *ir = irctls[iminor(file->f_dentry->d_inode)];
654	unsigned char *buf;
655	int ret = 0, written = 0;
656	DECLARE_WAITQUEUE(wait, current);
657
658	if (!ir) {
659		printk(KERN_ERR "%s: called with invalid irctl\n", __func__);
 
 
660		return -ENODEV;
661	}
662
663	dev_dbg(ir->d.dev, LOGHEAD "read called\n", ir->d.name, ir->d.minor);
 
 
 
 
664
665	buf = kzalloc(ir->chunk_size, GFP_KERNEL);
666	if (!buf)
667		return -ENOMEM;
 
 
 
 
 
 
 
 
668
669	if (mutex_lock_interruptible(&ir->irctl_lock)) {
670		ret = -ERESTARTSYS;
671		goto out_unlocked;
672	}
673	if (!ir->attached) {
674		ret = -ENODEV;
675		goto out_locked;
676	}
677
678	if (length % ir->chunk_size) {
679		ret = -EINVAL;
680		goto out_locked;
681	}
682
683	/*
684	 * we add ourselves to the task queue before buffer check
685	 * to avoid losing scan code (in case when queue is awaken somewhere
686	 * between while condition checking and scheduling)
687	 */
688	add_wait_queue(&ir->buf->wait_poll, &wait);
689	set_current_state(TASK_INTERRUPTIBLE);
690
691	/*
692	 * while we didn't provide 'length' bytes, device is opened in blocking
693	 * mode and 'copy_to_user' is happy, wait for data.
694	 */
695	while (written < length && ret == 0) {
696		if (lirc_buffer_empty(ir->buf)) {
697			/* According to the read(2) man page, 'written' can be
698			 * returned as less than 'length', instead of blocking
699			 * again, returning -EWOULDBLOCK, or returning
700			 * -ERESTARTSYS */
701			if (written)
702				break;
703			if (file->f_flags & O_NONBLOCK) {
704				ret = -EWOULDBLOCK;
705				break;
706			}
707			if (signal_pending(current)) {
708				ret = -ERESTARTSYS;
709				break;
710			}
711
712			mutex_unlock(&ir->irctl_lock);
713			schedule();
714			set_current_state(TASK_INTERRUPTIBLE);
715
716			if (mutex_lock_interruptible(&ir->irctl_lock)) {
717				ret = -ERESTARTSYS;
718				remove_wait_queue(&ir->buf->wait_poll, &wait);
719				set_current_state(TASK_RUNNING);
720				goto out_unlocked;
721			}
722
723			if (!ir->attached) {
724				ret = -ENODEV;
725				break;
726			}
727		} else {
728			lirc_buffer_read(ir->buf, buf);
729			ret = copy_to_user((void *)buffer+written, buf,
730					   ir->buf->chunk_size);
731			if (!ret)
732				written += ir->buf->chunk_size;
733			else
734				ret = -EFAULT;
735		}
736	}
737
738	remove_wait_queue(&ir->buf->wait_poll, &wait);
739	set_current_state(TASK_RUNNING);
 
 
 
 
740
741out_locked:
742	mutex_unlock(&ir->irctl_lock);
743
744out_unlocked:
745	kfree(buf);
746	dev_dbg(ir->d.dev, LOGHEAD "read result = %s (%d)\n",
747		ir->d.name, ir->d.minor, ret ? "<fail>" : "<ok>", ret);
748
749	return ret ? ret : written;
750}
751EXPORT_SYMBOL(lirc_dev_fop_read);
752
753void *lirc_get_pdata(struct file *file)
754{
755	void *data = NULL;
756
757	if (file && file->f_dentry && file->f_dentry->d_inode &&
758	    file->f_dentry->d_inode->i_rdev) {
759		struct irctl *ir;
760		ir = irctls[iminor(file->f_dentry->d_inode)];
761		data = ir->d.data;
 
 
 
 
 
762	}
763
764	return data;
 
 
 
 
 
 
 
 
 
 
 
 
765}
766EXPORT_SYMBOL(lirc_get_pdata);
767
768
769ssize_t lirc_dev_fop_write(struct file *file, const char __user *buffer,
770			   size_t length, loff_t *ppos)
771{
772	struct irctl *ir = irctls[iminor(file->f_dentry->d_inode)];
 
773
774	if (!ir) {
775		printk(KERN_ERR "%s: called with invalid irctl\n", __func__);
776		return -ENODEV;
777	}
778
779	dev_dbg(ir->d.dev, LOGHEAD "write called\n", ir->d.name, ir->d.minor);
780
781	if (!ir->attached)
782		return -ENODEV;
 
 
783
784	return -EINVAL;
 
785}
786EXPORT_SYMBOL(lirc_dev_fop_write);
787
788
789static int __init lirc_dev_init(void)
790{
791	int retval;
792
793	lirc_class = class_create(THIS_MODULE, "lirc");
794	if (IS_ERR(lirc_class)) {
795		retval = PTR_ERR(lirc_class);
796		printk(KERN_ERR "lirc_dev: class_create failed\n");
797		goto error;
798	}
799
800	retval = alloc_chrdev_region(&lirc_base_dev, 0, MAX_IRCTL_DEVICES,
801				     IRCTL_DEV_NAME);
802	if (retval) {
803		class_destroy(lirc_class);
804		printk(KERN_ERR "lirc_dev: alloc_chrdev_region failed\n");
805		goto error;
806	}
807
 
 
808
809	printk(KERN_INFO "lirc_dev: IR Remote Control driver registered, "
810	       "major %d \n", MAJOR(lirc_base_dev));
811
812error:
813	return retval;
 
 
814}
815
 
 
 
 
 
 
 
 
816
 
 
 
 
817
818static void __exit lirc_dev_exit(void)
819{
820	class_destroy(lirc_class);
821	unregister_chrdev_region(lirc_base_dev, MAX_IRCTL_DEVICES);
822	printk(KERN_INFO "lirc_dev: module unloaded\n");
823}
824
825module_init(lirc_dev_init);
826module_exit(lirc_dev_exit);
827
828MODULE_DESCRIPTION("LIRC base driver module");
829MODULE_AUTHOR("Artur Lipowski");
830MODULE_LICENSE("GPL");
831
832module_param(debug, bool, S_IRUGO | S_IWUSR);
833MODULE_PARM_DESC(debug, "Enable debugging messages");