1 /* ir-lirc-codec.c - rc-core to classic lirc interface bridge
3 * Copyright (C) 2010 by Jarod Wilson <jarod@redhat.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation version 2 of the License.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/sched.h>
16 #include <linux/wait.h>
17 #include <linux/module.h>
18 #include <media/lirc.h>
19 #include <media/lirc_dev.h>
20 #include <media/rc-core.h>
21 #include "rc-core-priv.h"
23 #define LIRCBUF_SIZE 256
26 * ir_lirc_decode() - Send raw IR data to lirc_dev to be relayed to the
27 * lircd userspace daemon for decoding.
28 * @input_dev: the struct rc_dev descriptor of the device
29 * @duration: the struct ir_raw_event descriptor of the pulse/space
31 * This function returns -EINVAL if the lirc interfaces aren't wired up.
33 static int ir_lirc_decode(struct rc_dev
*dev
, struct ir_raw_event ev
)
35 struct lirc_codec
*lirc
= &dev
->raw
->lirc
;
38 if (!(dev
->enabled_protocols
& RC_BIT_LIRC
))
41 if (!dev
->raw
->lirc
.drv
|| !dev
->raw
->lirc
.drv
->rbuf
)
46 /* Userspace expects a long space event before the start of
47 * the signal to use as a sync. This may be done with repeat
48 * packets and normal samples. But if a reset has been sent
49 * then we assume that a long time has passed, so we send a
50 * space with the maximum time value. */
51 sample
= LIRC_SPACE(LIRC_VALUE_MASK
);
52 IR_dprintk(2, "delivering reset sync space to lirc_dev\n");
55 } else if (ev
.carrier_report
) {
56 sample
= LIRC_FREQUENCY(ev
.carrier
);
57 IR_dprintk(2, "carrier report (freq: %d)\n", sample
);
60 } else if (ev
.timeout
) {
65 lirc
->gap_start
= ktime_get();
67 lirc
->gap_duration
= ev
.duration
;
69 if (!lirc
->send_timeout_reports
)
72 sample
= LIRC_TIMEOUT(ev
.duration
/ 1000);
73 IR_dprintk(2, "timeout report (duration: %d)\n", sample
);
81 lirc
->gap_duration
+= ktime_to_ns(ktime_sub(ktime_get(),
84 /* Convert to ms and cap by LIRC_VALUE_MASK */
85 do_div(lirc
->gap_duration
, 1000);
86 lirc
->gap_duration
= min(lirc
->gap_duration
,
87 (u64
)LIRC_VALUE_MASK
);
89 gap_sample
= LIRC_SPACE(lirc
->gap_duration
);
90 lirc_buffer_write(dev
->raw
->lirc
.drv
->rbuf
,
91 (unsigned char *) &gap_sample
);
95 sample
= ev
.pulse
? LIRC_PULSE(ev
.duration
/ 1000) :
96 LIRC_SPACE(ev
.duration
/ 1000);
97 IR_dprintk(2, "delivering %uus %s to lirc_dev\n",
98 TO_US(ev
.duration
), TO_STR(ev
.pulse
));
101 lirc_buffer_write(dev
->raw
->lirc
.drv
->rbuf
,
102 (unsigned char *) &sample
);
103 wake_up(&dev
->raw
->lirc
.drv
->rbuf
->wait_poll
);
108 static ssize_t
ir_lirc_transmit_ir(struct file
*file
, const char __user
*buf
,
109 size_t n
, loff_t
*ppos
)
111 struct lirc_codec
*lirc
;
113 unsigned int *txbuf
; /* buffer with values to transmit */
114 ssize_t ret
= -EINVAL
;
118 unsigned int duration
= 0; /* signal duration in us */
123 lirc
= lirc_get_pdata(file
);
127 if (n
< sizeof(unsigned) || n
% sizeof(unsigned))
130 count
= n
/ sizeof(unsigned);
131 if (count
> LIRCBUF_SIZE
|| count
% 2 == 0)
134 txbuf
= memdup_user(buf
, n
);
136 return PTR_ERR(txbuf
);
149 for (i
= 0; i
< count
; i
++) {
150 if (txbuf
[i
] > IR_MAX_DURATION
/ 1000 - duration
|| !txbuf
[i
]) {
155 duration
+= txbuf
[i
];
158 ret
= dev
->tx_ir(dev
, txbuf
, count
);
162 for (duration
= i
= 0; i
< ret
; i
++)
163 duration
+= txbuf
[i
];
165 ret
*= sizeof(unsigned int);
168 * The lircd gap calculation expects the write function to
169 * wait for the actual IR signal to be transmitted before
172 towait
= ktime_us_delta(ktime_add_us(start
, duration
), ktime_get());
174 set_current_state(TASK_INTERRUPTIBLE
);
175 schedule_timeout(usecs_to_jiffies(towait
));
183 static long ir_lirc_ioctl(struct file
*filep
, unsigned int cmd
,
186 struct lirc_codec
*lirc
;
188 u32 __user
*argp
= (u32 __user
*)(arg
);
192 lirc
= lirc_get_pdata(filep
);
200 if (_IOC_DIR(cmd
) & _IOC_WRITE
) {
201 ret
= get_user(val
, argp
);
209 case LIRC_GET_SEND_MODE
:
210 val
= LIRC_CAN_SEND_PULSE
& LIRC_CAN_SEND_MASK
;
213 case LIRC_SET_SEND_MODE
:
214 if (val
!= (LIRC_MODE_PULSE
& LIRC_CAN_SEND_MASK
))
219 case LIRC_SET_TRANSMITTER_MASK
:
223 return dev
->s_tx_mask(dev
, val
);
225 case LIRC_SET_SEND_CARRIER
:
226 if (!dev
->s_tx_carrier
)
229 return dev
->s_tx_carrier(dev
, val
);
231 case LIRC_SET_SEND_DUTY_CYCLE
:
232 if (!dev
->s_tx_duty_cycle
)
235 if (val
<= 0 || val
>= 100)
238 return dev
->s_tx_duty_cycle(dev
, val
);
241 case LIRC_SET_REC_CARRIER
:
242 if (!dev
->s_rx_carrier_range
)
248 return dev
->s_rx_carrier_range(dev
,
249 dev
->raw
->lirc
.carrier_low
,
252 case LIRC_SET_REC_CARRIER_RANGE
:
256 dev
->raw
->lirc
.carrier_low
= val
;
259 case LIRC_GET_REC_RESOLUTION
:
260 val
= dev
->rx_resolution
;
263 case LIRC_SET_WIDEBAND_RECEIVER
:
264 if (!dev
->s_learning_mode
)
267 return dev
->s_learning_mode(dev
, !!val
);
269 case LIRC_SET_MEASURE_CARRIER_MODE
:
270 if (!dev
->s_carrier_report
)
273 return dev
->s_carrier_report(dev
, !!val
);
275 /* Generic timeout support */
276 case LIRC_GET_MIN_TIMEOUT
:
277 if (!dev
->max_timeout
)
279 val
= dev
->min_timeout
/ 1000;
282 case LIRC_GET_MAX_TIMEOUT
:
283 if (!dev
->max_timeout
)
285 val
= dev
->max_timeout
/ 1000;
288 case LIRC_SET_REC_TIMEOUT
:
289 if (!dev
->max_timeout
)
292 /* Check for multiply overflow */
293 if (val
> U32_MAX
/ 1000)
298 if (tmp
< dev
->min_timeout
|| tmp
> dev
->max_timeout
)
304 case LIRC_SET_REC_TIMEOUT_REPORTS
:
305 lirc
->send_timeout_reports
= !!val
;
309 return lirc_dev_fop_ioctl(filep
, cmd
, arg
);
312 if (_IOC_DIR(cmd
) & _IOC_READ
)
313 ret
= put_user(val
, argp
);
318 static int ir_lirc_open(void *data
)
323 static void ir_lirc_close(void *data
)
328 static const struct file_operations lirc_fops
= {
329 .owner
= THIS_MODULE
,
330 .write
= ir_lirc_transmit_ir
,
331 .unlocked_ioctl
= ir_lirc_ioctl
,
333 .compat_ioctl
= ir_lirc_ioctl
,
335 .read
= lirc_dev_fop_read
,
336 .poll
= lirc_dev_fop_poll
,
337 .open
= lirc_dev_fop_open
,
338 .release
= lirc_dev_fop_close
,
342 static int ir_lirc_register(struct rc_dev
*dev
)
344 struct lirc_driver
*drv
;
345 struct lirc_buffer
*rbuf
;
347 unsigned long features
;
349 drv
= kzalloc(sizeof(struct lirc_driver
), GFP_KERNEL
);
353 rbuf
= kzalloc(sizeof(struct lirc_buffer
), GFP_KERNEL
);
355 goto rbuf_alloc_failed
;
357 rc
= lirc_buffer_init(rbuf
, sizeof(int), LIRCBUF_SIZE
);
359 goto rbuf_init_failed
;
361 features
= LIRC_CAN_REC_MODE2
;
363 features
|= LIRC_CAN_SEND_PULSE
;
365 features
|= LIRC_CAN_SET_TRANSMITTER_MASK
;
366 if (dev
->s_tx_carrier
)
367 features
|= LIRC_CAN_SET_SEND_CARRIER
;
368 if (dev
->s_tx_duty_cycle
)
369 features
|= LIRC_CAN_SET_SEND_DUTY_CYCLE
;
372 if (dev
->s_rx_carrier_range
)
373 features
|= LIRC_CAN_SET_REC_CARRIER
|
374 LIRC_CAN_SET_REC_CARRIER_RANGE
;
376 if (dev
->s_learning_mode
)
377 features
|= LIRC_CAN_USE_WIDEBAND_RECEIVER
;
379 if (dev
->s_carrier_report
)
380 features
|= LIRC_CAN_MEASURE_CARRIER
;
382 if (dev
->max_timeout
)
383 features
|= LIRC_CAN_SET_REC_TIMEOUT
;
385 snprintf(drv
->name
, sizeof(drv
->name
), "ir-lirc-codec (%s)",
388 drv
->features
= features
;
389 drv
->data
= &dev
->raw
->lirc
;
391 drv
->set_use_inc
= &ir_lirc_open
;
392 drv
->set_use_dec
= &ir_lirc_close
;
393 drv
->code_length
= sizeof(struct ir_raw_event
) * 8;
394 drv
->fops
= &lirc_fops
;
395 drv
->dev
= &dev
->dev
;
397 drv
->owner
= THIS_MODULE
;
399 drv
->minor
= lirc_register_driver(drv
);
400 if (drv
->minor
< 0) {
402 goto lirc_register_failed
;
405 dev
->raw
->lirc
.drv
= drv
;
406 dev
->raw
->lirc
.dev
= dev
;
409 lirc_register_failed
:
418 static int ir_lirc_unregister(struct rc_dev
*dev
)
420 struct lirc_codec
*lirc
= &dev
->raw
->lirc
;
422 lirc_unregister_driver(lirc
->drv
->minor
);
423 lirc_buffer_free(lirc
->drv
->rbuf
);
429 static struct ir_raw_handler lirc_handler
= {
430 .protocols
= RC_BIT_LIRC
,
431 .decode
= ir_lirc_decode
,
432 .raw_register
= ir_lirc_register
,
433 .raw_unregister
= ir_lirc_unregister
,
436 static int __init
ir_lirc_codec_init(void)
438 ir_raw_handler_register(&lirc_handler
);
440 printk(KERN_INFO
"IR LIRC bridge handler initialized\n");
444 static void __exit
ir_lirc_codec_exit(void)
446 ir_raw_handler_unregister(&lirc_handler
);
449 module_init(ir_lirc_codec_init
);
450 module_exit(ir_lirc_codec_exit
);
452 MODULE_LICENSE("GPL");
453 MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>");
454 MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
455 MODULE_DESCRIPTION("LIRC IR handler bridge");