4 * serial_ir - Device driver that records pulse- and pause-lengths
5 * (space-lengths) between DDCD event on a serial port.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26 #include <linux/module.h>
27 #include <linux/errno.h>
28 #include <linux/interrupt.h>
29 #include <linux/kernel.h>
30 #include <linux/serial_reg.h>
31 #include <linux/types.h>
32 #include <linux/delay.h>
33 #include <linux/platform_device.h>
34 #include <linux/spinlock.h>
35 #include <media/rc-core.h>
39 int signal_pin_change;
42 unsigned set_send_carrier:1;
43 unsigned set_duty_cycle:1;
44 void (*send_pulse)(unsigned int length, ktime_t edge);
45 void (*send_space)(void);
51 #define IR_IRDEO_REMOTE 2
55 /* module parameters */
61 static bool softcarrier = true;
62 static bool share_irq;
63 static int sense = -1; /* -1 = auto, 0 = active high, 1 = active low */
64 static bool txsense; /* 0 = active high, 1 = active low */
66 /* forward declarations */
67 static void send_pulse_irdeo(unsigned int length, ktime_t edge);
68 static void send_space_irdeo(void);
69 #ifdef CONFIG_IR_SERIAL_TRANSMITTER
70 static void send_pulse_homebrew(unsigned int length, ktime_t edge);
71 static void send_space_homebrew(void);
74 static struct serial_ir_hw hardware[] = {
76 .lock = __SPIN_LOCK_UNLOCKED(hardware[IR_HOMEBREW].lock),
77 .signal_pin = UART_MSR_DCD,
78 .signal_pin_change = UART_MSR_DDCD,
79 .on = (UART_MCR_RTS | UART_MCR_OUT2 | UART_MCR_DTR),
80 .off = (UART_MCR_RTS | UART_MCR_OUT2),
81 #ifdef CONFIG_IR_SERIAL_TRANSMITTER
82 .send_pulse = send_pulse_homebrew,
83 .send_space = send_space_homebrew,
84 .set_send_carrier = true,
85 .set_duty_cycle = true,
90 .lock = __SPIN_LOCK_UNLOCKED(hardware[IR_IRDEO].lock),
91 .signal_pin = UART_MSR_DSR,
92 .signal_pin_change = UART_MSR_DDSR,
94 .off = (UART_MCR_RTS | UART_MCR_DTR | UART_MCR_OUT2),
95 .send_pulse = send_pulse_irdeo,
96 .send_space = send_space_irdeo,
97 .set_duty_cycle = true,
100 [IR_IRDEO_REMOTE] = {
101 .lock = __SPIN_LOCK_UNLOCKED(hardware[IR_IRDEO_REMOTE].lock),
102 .signal_pin = UART_MSR_DSR,
103 .signal_pin_change = UART_MSR_DDSR,
104 .on = (UART_MCR_RTS | UART_MCR_DTR | UART_MCR_OUT2),
105 .off = (UART_MCR_RTS | UART_MCR_DTR | UART_MCR_OUT2),
106 .send_pulse = send_pulse_irdeo,
107 .send_space = send_space_irdeo,
108 .set_duty_cycle = true,
112 .lock = __SPIN_LOCK_UNLOCKED(hardware[IR_ANIMAX].lock),
113 .signal_pin = UART_MSR_DCD,
114 .signal_pin_change = UART_MSR_DDCD,
116 .off = (UART_MCR_RTS | UART_MCR_DTR | UART_MCR_OUT2),
120 .lock = __SPIN_LOCK_UNLOCKED(hardware[IR_IGOR].lock),
121 .signal_pin = UART_MSR_DSR,
122 .signal_pin_change = UART_MSR_DDSR,
123 .on = (UART_MCR_RTS | UART_MCR_OUT2 | UART_MCR_DTR),
124 .off = (UART_MCR_RTS | UART_MCR_OUT2),
125 #ifdef CONFIG_IR_SERIAL_TRANSMITTER
126 .send_pulse = send_pulse_homebrew,
127 .send_space = send_space_homebrew,
128 .set_send_carrier = true,
129 .set_duty_cycle = true,
134 #define RS_ISR_PASS_LIMIT 256
138 struct rc_dev *rcdev;
139 struct platform_device *pdev;
140 struct timer_list timeout_timer;
143 unsigned int duty_cycle;
145 unsigned int pulse_width, space_width;
148 static struct serial_ir serial_ir;
150 /* fetch serial input packet (1 byte) from register offset */
151 static u8 sinp(int offset)
154 /* the register is memory-mapped */
157 return inb(io + offset);
160 /* write serial output packet (1 byte) of value to register offset */
161 static void soutp(int offset, u8 value)
164 /* the register is memory-mapped */
167 outb(value, io + offset);
173 soutp(UART_MCR, hardware[type].off);
175 soutp(UART_MCR, hardware[type].on);
178 static void off(void)
181 soutp(UART_MCR, hardware[type].on);
183 soutp(UART_MCR, hardware[type].off);
186 static void init_timing_params(unsigned int new_duty_cycle,
187 unsigned int new_freq)
189 serial_ir.duty_cycle = new_duty_cycle;
190 serial_ir.freq = new_freq;
192 serial_ir.pulse_width = DIV_ROUND_CLOSEST(
193 new_duty_cycle * NSEC_PER_SEC, new_freq * 100l);
194 serial_ir.space_width = DIV_ROUND_CLOSEST(
195 (100l - new_duty_cycle) * NSEC_PER_SEC, new_freq * 100l);
198 static void send_pulse_irdeo(unsigned int length, ktime_t target)
202 unsigned char output;
203 unsigned char chunk, shifted;
205 /* how many bits have to be sent ? */
206 rawbits = length * 1152 / 10000;
207 if (serial_ir.duty_cycle > 50)
211 for (i = 0, output = 0x7f; rawbits > 0; rawbits -= 3) {
212 shifted = chunk << (i * 3);
214 output &= (~shifted);
217 soutp(UART_TX, output);
218 while (!(sinp(UART_LSR) & UART_LSR_THRE))
225 soutp(UART_TX, output);
226 while (!(sinp(UART_LSR) & UART_LSR_TEMT))
231 static void send_space_irdeo(void)
235 #ifdef CONFIG_IR_SERIAL_TRANSMITTER
236 static void send_pulse_homebrew_softcarrier(unsigned int length, ktime_t edge)
238 ktime_t now, target = ktime_add_us(edge, length);
240 * delta should never exceed 4 seconds and on m68k
241 * ndelay(s64) does not compile; so use s32 rather than s64.
247 if (ktime_compare(now, target) >= 0)
250 edge = ktime_add_ns(edge, serial_ir.pulse_width);
251 delta = ktime_to_ns(ktime_sub(edge, now));
256 if (ktime_compare(now, target) >= 0)
258 edge = ktime_add_ns(edge, serial_ir.space_width);
259 delta = ktime_to_ns(ktime_sub(edge, now));
265 static void send_pulse_homebrew(unsigned int length, ktime_t edge)
268 send_pulse_homebrew_softcarrier(length, edge);
273 static void send_space_homebrew(void)
279 static void frbwrite(unsigned int l, bool is_pulse)
281 /* simple noise filter */
282 static unsigned int ptr, pulse, space;
283 DEFINE_IR_RAW_EVENT(ev);
285 if (ptr > 0 && is_pulse) {
287 if (pulse > 250000) {
290 ir_raw_event_store_with_filter(serial_ir.rcdev, &ev);
293 ir_raw_event_store_with_filter(serial_ir.rcdev, &ev);
309 if (space > IR_MAX_DURATION)
310 space = IR_MAX_DURATION;
312 if (space > IR_MAX_DURATION)
313 space = IR_MAX_DURATION;
320 ir_raw_event_store_with_filter(serial_ir.rcdev, &ev);
323 ir_raw_event_store_with_filter(serial_ir.rcdev, &ev);
331 ir_raw_event_store_with_filter(serial_ir.rcdev, &ev);
334 static irqreturn_t serial_ir_irq_handler(int i, void *blah)
341 static int last_dcd = -1;
343 if ((sinp(UART_IIR) & UART_IIR_NO_INT)) {
344 /* not our interrupt */
351 status = sinp(UART_MSR);
352 if (counter > RS_ISR_PASS_LIMIT) {
353 dev_err(&serial_ir.pdev->dev, "Trapped in interrupt");
356 if ((status & hardware[type].signal_pin_change) &&
358 /* get current time */
362 * The driver needs to know if your receiver is
363 * active high or active low, or the space/pulse
364 * sense could be inverted.
367 /* calc time since last interrupt in nanoseconds */
368 dcd = (status & hardware[type].signal_pin) ? 1 : 0;
370 if (dcd == last_dcd) {
371 dev_err(&serial_ir.pdev->dev,
372 "ignoring spike: %d %d %lldns %lldns\n",
373 dcd, sense, ktime_to_ns(kt),
374 ktime_to_ns(serial_ir.lastkt));
378 delkt = ktime_sub(kt, serial_ir.lastkt);
379 if (ktime_compare(delkt, ktime_set(15, 0)) > 0) {
380 data = IR_MAX_DURATION; /* really long time */
381 if (!(dcd ^ sense)) {
383 dev_err(&serial_ir.pdev->dev,
384 "dcd unexpected: %d %d %lldns %lldns\n",
385 dcd, sense, ktime_to_ns(kt),
386 ktime_to_ns(serial_ir.lastkt));
388 * detecting pulse while this
391 sense = sense ? 0 : 1;
394 data = ktime_to_ns(delkt);
396 frbwrite(data, !(dcd ^ sense));
397 serial_ir.lastkt = kt;
400 } while (!(sinp(UART_IIR) & UART_IIR_NO_INT)); /* still pending ? */
402 mod_timer(&serial_ir.timeout_timer,
403 jiffies + nsecs_to_jiffies(serial_ir.rcdev->timeout));
405 ir_raw_event_handle(serial_ir.rcdev);
410 static int hardware_init_port(void)
412 u8 scratch, scratch2, scratch3;
415 * This is a simple port existence test, borrowed from the autoconfig
416 * function in drivers/tty/serial/8250/8250_port.c
418 scratch = sinp(UART_IER);
423 scratch2 = sinp(UART_IER) & 0x0f;
424 soutp(UART_IER, 0x0f);
428 scratch3 = sinp(UART_IER) & 0x0f;
429 soutp(UART_IER, scratch);
430 if (scratch2 != 0 || scratch3 != 0x0f) {
431 /* we fail, there's nothing here */
432 pr_err("port existence test failed, cannot continue\n");
437 soutp(UART_LCR, sinp(UART_LCR) & (~UART_LCR_DLAB));
439 /* First of all, disable all interrupts */
440 soutp(UART_IER, sinp(UART_IER) &
441 (~(UART_IER_MSI | UART_IER_RLSI | UART_IER_THRI | UART_IER_RDI)));
443 /* Clear registers. */
449 /* Set line for power source */
452 /* Clear registers again to be sure. */
460 case IR_IRDEO_REMOTE:
461 /* setup port to 7N1 @ 115200 Baud */
462 /* 7N1+start = 9 bits at 115200 ~ 3 bits at 38kHz */
465 soutp(UART_LCR, sinp(UART_LCR) | UART_LCR_DLAB);
466 /* Set divisor to 1 => 115200 Baud */
469 /* Set DLAB 0 + 7N1 */
470 soutp(UART_LCR, UART_LCR_WLEN7);
471 /* THR interrupt already disabled at this point */
480 static void serial_ir_timeout(unsigned long arg)
482 DEFINE_IR_RAW_EVENT(ev);
485 ev.duration = serial_ir.rcdev->timeout;
486 ir_raw_event_store_with_filter(serial_ir.rcdev, &ev);
487 ir_raw_event_handle(serial_ir.rcdev);
490 /* Needed by serial_ir_probe() */
491 static int serial_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
493 static int serial_ir_tx_duty_cycle(struct rc_dev *dev, u32 cycle);
494 static int serial_ir_tx_carrier(struct rc_dev *dev, u32 carrier);
495 static int serial_ir_open(struct rc_dev *rcdev);
496 static void serial_ir_close(struct rc_dev *rcdev);
498 static int serial_ir_probe(struct platform_device *dev)
500 struct rc_dev *rcdev;
501 int i, nlow, nhigh, result;
503 rcdev = devm_rc_allocate_device(&dev->dev, RC_DRIVER_IR_RAW);
507 if (hardware[type].send_pulse && hardware[type].send_space)
508 rcdev->tx_ir = serial_ir_tx;
509 if (hardware[type].set_send_carrier)
510 rcdev->s_tx_carrier = serial_ir_tx_carrier;
511 if (hardware[type].set_duty_cycle)
512 rcdev->s_tx_duty_cycle = serial_ir_tx_duty_cycle;
516 rcdev->input_name = "Serial IR type home-brew";
519 rcdev->input_name = "Serial IR type IRdeo";
521 case IR_IRDEO_REMOTE:
522 rcdev->input_name = "Serial IR type IRdeo remote";
525 rcdev->input_name = "Serial IR type AnimaX";
528 rcdev->input_name = "Serial IR type IgorPlug";
532 rcdev->input_phys = KBUILD_MODNAME "/input0";
533 rcdev->input_id.bustype = BUS_HOST;
534 rcdev->input_id.vendor = 0x0001;
535 rcdev->input_id.product = 0x0001;
536 rcdev->input_id.version = 0x0100;
537 rcdev->open = serial_ir_open;
538 rcdev->close = serial_ir_close;
539 rcdev->dev.parent = &serial_ir.pdev->dev;
540 rcdev->allowed_protocols = RC_BIT_ALL_IR_DECODER;
541 rcdev->driver_name = KBUILD_MODNAME;
542 rcdev->map_name = RC_MAP_RC6_MCE;
543 rcdev->min_timeout = 1;
544 rcdev->timeout = IR_DEFAULT_TIMEOUT;
545 rcdev->max_timeout = 10 * IR_DEFAULT_TIMEOUT;
546 rcdev->rx_resolution = 250000;
548 serial_ir.rcdev = rcdev;
550 setup_timer(&serial_ir.timeout_timer, serial_ir_timeout,
551 (unsigned long)&serial_ir);
553 result = devm_request_irq(&dev->dev, irq, serial_ir_irq_handler,
554 share_irq ? IRQF_SHARED : 0,
555 KBUILD_MODNAME, &hardware);
557 if (result == -EBUSY)
558 dev_err(&dev->dev, "IRQ %d busy\n", irq);
559 else if (result == -EINVAL)
560 dev_err(&dev->dev, "Bad irq number or handler\n");
564 /* Reserve io region. */
566 (devm_request_mem_region(&dev->dev, iommap, 8 << ioshift,
567 KBUILD_MODNAME) == NULL)) ||
568 (!iommap && (devm_request_region(&dev->dev, io, 8,
569 KBUILD_MODNAME) == NULL))) {
570 dev_err(&dev->dev, "port %04x already in use\n", io);
571 dev_warn(&dev->dev, "use 'setserial /dev/ttySX uart none'\n");
573 "or compile the serial port driver as module and\n");
574 dev_warn(&dev->dev, "make sure this module is loaded first\n");
578 result = hardware_init_port();
582 /* Initialize pulse/space widths */
583 init_timing_params(50, 38000);
585 /* If pin is high, then this must be an active low receiver. */
587 /* wait 1/2 sec for the power supply */
591 * probe 9 times every 0.04s, collect "votes" for
596 for (i = 0; i < 9; i++) {
597 if (sinp(UART_MSR) & hardware[type].signal_pin)
603 sense = nlow >= nhigh ? 1 : 0;
604 dev_info(&dev->dev, "auto-detected active %s receiver\n",
605 sense ? "low" : "high");
607 dev_info(&dev->dev, "Manually using active %s receiver\n",
608 sense ? "low" : "high");
610 dev_dbg(&dev->dev, "Interrupt %d, port %04x obtained\n", irq, io);
612 return devm_rc_register_device(&dev->dev, rcdev);
615 static int serial_ir_open(struct rc_dev *rcdev)
619 /* initialize timestamp */
620 serial_ir.lastkt = ktime_get();
622 spin_lock_irqsave(&hardware[type].lock, flags);
625 soutp(UART_LCR, sinp(UART_LCR) & (~UART_LCR_DLAB));
627 soutp(UART_IER, sinp(UART_IER) | UART_IER_MSI);
629 spin_unlock_irqrestore(&hardware[type].lock, flags);
634 static void serial_ir_close(struct rc_dev *rcdev)
638 spin_lock_irqsave(&hardware[type].lock, flags);
641 soutp(UART_LCR, sinp(UART_LCR) & (~UART_LCR_DLAB));
643 /* First of all, disable all interrupts */
644 soutp(UART_IER, sinp(UART_IER) &
645 (~(UART_IER_MSI | UART_IER_RLSI | UART_IER_THRI | UART_IER_RDI)));
646 spin_unlock_irqrestore(&hardware[type].lock, flags);
649 static int serial_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
657 spin_lock_irqsave(&hardware[type].lock, flags);
658 if (type == IR_IRDEO) {
664 for (i = 0; i < count; i++) {
666 hardware[type].send_space();
668 hardware[type].send_pulse(txbuf[i], edge);
670 edge = ktime_add_us(edge, txbuf[i]);
671 delta = ktime_us_delta(edge, ktime_get());
673 spin_unlock_irqrestore(&hardware[type].lock, flags);
674 usleep_range(delta - 25, delta + 25);
675 spin_lock_irqsave(&hardware[type].lock, flags);
676 } else if (delta > 0) {
681 spin_unlock_irqrestore(&hardware[type].lock, flags);
685 static int serial_ir_tx_duty_cycle(struct rc_dev *dev, u32 cycle)
687 init_timing_params(cycle, serial_ir.freq);
691 static int serial_ir_tx_carrier(struct rc_dev *dev, u32 carrier)
693 if (carrier > 500000 || carrier < 20000)
696 init_timing_params(serial_ir.duty_cycle, carrier);
700 static int serial_ir_suspend(struct platform_device *dev,
704 soutp(UART_LCR, sinp(UART_LCR) & (~UART_LCR_DLAB));
706 /* Disable all interrupts */
707 soutp(UART_IER, sinp(UART_IER) &
708 (~(UART_IER_MSI | UART_IER_RLSI | UART_IER_THRI | UART_IER_RDI)));
710 /* Clear registers. */
719 static int serial_ir_resume(struct platform_device *dev)
724 result = hardware_init_port();
728 spin_lock_irqsave(&hardware[type].lock, flags);
729 /* Enable Interrupt */
730 serial_ir.lastkt = ktime_get();
731 soutp(UART_IER, sinp(UART_IER) | UART_IER_MSI);
734 spin_unlock_irqrestore(&hardware[type].lock, flags);
739 static struct platform_driver serial_ir_driver = {
740 .probe = serial_ir_probe,
741 .suspend = serial_ir_suspend,
742 .resume = serial_ir_resume,
748 static int __init serial_ir_init(void)
752 result = platform_driver_register(&serial_ir_driver);
756 serial_ir.pdev = platform_device_alloc("serial_ir", 0);
757 if (!serial_ir.pdev) {
759 goto exit_driver_unregister;
762 result = platform_device_add(serial_ir.pdev);
764 goto exit_device_put;
769 platform_device_put(serial_ir.pdev);
770 exit_driver_unregister:
771 platform_driver_unregister(&serial_ir_driver);
775 static void serial_ir_exit(void)
777 platform_device_unregister(serial_ir.pdev);
778 platform_driver_unregister(&serial_ir_driver);
781 static int __init serial_ir_init_module(void)
788 case IR_IRDEO_REMOTE:
791 /* if nothing specified, use ttyS0/com1 and irq 4 */
792 io = io ? io : 0x3f8;
802 hardware[type].set_send_carrier = false;
803 hardware[type].set_duty_cycle = false;
808 /* make sure sense is either -1, 0, or 1 */
812 result = serial_ir_init();
820 static void __exit serial_ir_exit_module(void)
822 del_timer_sync(&serial_ir.timeout_timer);
826 module_init(serial_ir_init_module);
827 module_exit(serial_ir_exit_module);
829 MODULE_DESCRIPTION("Infra-red receiver driver for serial ports.");
830 MODULE_AUTHOR("Ralph Metzler, Trent Piepho, Ben Pfaff, Christoph Bartelmus, Andrei Tanas");
831 MODULE_LICENSE("GPL");
833 module_param(type, int, 0444);
834 MODULE_PARM_DESC(type, "Hardware type (0 = home-brew, 1 = IRdeo, 2 = IRdeo Remote, 3 = AnimaX, 4 = IgorPlug");
836 module_param(io, int, 0444);
837 MODULE_PARM_DESC(io, "I/O address base (0x3f8 or 0x2f8)");
839 /* some architectures (e.g. intel xscale) have memory mapped registers */
840 module_param(iommap, bool, 0444);
841 MODULE_PARM_DESC(iommap, "physical base for memory mapped I/O (0 = no memory mapped io)");
844 * some architectures (e.g. intel xscale) align the 8bit serial registers
845 * on 32bit word boundaries.
846 * See linux-kernel/drivers/tty/serial/8250/8250.c serial_in()/out()
848 module_param(ioshift, int, 0444);
849 MODULE_PARM_DESC(ioshift, "shift I/O register offset (0 = no shift)");
851 module_param(irq, int, 0444);
852 MODULE_PARM_DESC(irq, "Interrupt (4 or 3)");
854 module_param(share_irq, bool, 0444);
855 MODULE_PARM_DESC(share_irq, "Share interrupts (0 = off, 1 = on)");
857 module_param(sense, int, 0444);
858 MODULE_PARM_DESC(sense, "Override autodetection of IR receiver circuit (0 = active high, 1 = active low )");
860 #ifdef CONFIG_IR_SERIAL_TRANSMITTER
861 module_param(txsense, bool, 0444);
862 MODULE_PARM_DESC(txsense, "Sense of transmitter circuit (0 = active high, 1 = active low )");
865 module_param(softcarrier, bool, 0444);
866 MODULE_PARM_DESC(softcarrier, "Software carrier (0 = off, 1 = on, default on)");