2 * IR SIR driver, (C) 2000 Milan Pikula <www@fornax.sk>
4 * sir_ir - Device driver for use with SIR (serial infra red)
5 * mode of IrDA on many notebooks.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/kernel.h>
18 #include <linux/serial_reg.h>
19 #include <linux/ktime.h>
20 #include <linux/delay.h>
21 #include <linux/platform_device.h>
23 #include <media/rc-core.h>
25 /* SECTION: Definitions */
28 /* 9bit * 1s/115200bit in milli seconds = 78.125ms*/
29 #define TIME_CONST (9000000ul / 115200ul)
31 /* timeout for sequences in jiffies (=5/100s), must be longer than TIME_CONST */
32 #define SIR_TIMEOUT (HZ * 5 / 100)
34 /* onboard sir ports are typically com3 */
35 static int io
= 0x3e8;
37 static int threshold
= 3;
39 static DEFINE_SPINLOCK(timer_lock
);
40 static struct timer_list timerlist
;
41 /* time of last signal change detected */
43 /* time of last UART data ready interrupt */
44 static ktime_t last_intr_time
;
45 static int last_value
;
46 static struct rc_dev
*rcdev
;
48 static struct platform_device
*sir_ir_dev
;
50 static DEFINE_SPINLOCK(hardware_lock
);
52 /* SECTION: Prototypes */
54 /* Communication with user-space */
55 static void add_read_queue(int flag
, unsigned long val
);
57 static irqreturn_t
sir_interrupt(int irq
, void *dev_id
);
58 static void send_space(unsigned long len
);
59 static void send_pulse(unsigned long len
);
60 static int init_hardware(void);
61 static void drop_hardware(void);
64 static inline unsigned int sinp(int offset
)
66 return inb(io
+ offset
);
69 static inline void soutp(int offset
, int value
)
71 outb(value
, io
+ offset
);
74 /* SECTION: Communication with user-space */
75 static int sir_tx_ir(struct rc_dev
*dev
, unsigned int *tx_buf
,
81 local_irq_save(flags
);
82 for (i
= 0; i
< count
;) {
84 send_pulse(tx_buf
[i
]);
89 send_space(tx_buf
[i
]);
92 local_irq_restore(flags
);
97 static void add_read_queue(int flag
, unsigned long val
)
99 DEFINE_IR_RAW_EVENT(ev
);
101 pr_debug("add flag %d with val %lu\n", flag
, val
);
104 * statistically, pulses are ~TIME_CONST/2 too long. we could
105 * maybe make this more exact, but this is good enough
109 if (val
> TIME_CONST
/ 2)
110 val
-= TIME_CONST
/ 2;
111 else /* should not ever happen */
115 val
+= TIME_CONST
/ 2;
117 ev
.duration
= US_TO_NS(val
);
119 ir_raw_event_store_with_filter(rcdev
, &ev
);
122 /* SECTION: Hardware */
123 static void sir_timeout(struct timer_list
*unused
)
126 * if last received signal was a pulse, but receiving stopped
127 * within the 9 bit frame, we need to finish this pulse and
128 * simulate a signal change to from pulse to space. Otherwise
129 * upper layers will receive two sequences next time.
133 unsigned long pulse_end
;
135 /* avoid interference with interrupt */
136 spin_lock_irqsave(&timer_lock
, flags
);
138 /* clear unread bits in UART and restart */
139 outb(UART_FCR_CLEAR_RCVR
, io
+ UART_FCR
);
140 /* determine 'virtual' pulse end: */
141 pulse_end
= min_t(unsigned long,
142 ktime_us_delta(last
, last_intr_time
),
144 dev_dbg(&sir_ir_dev
->dev
, "timeout add %d for %lu usec\n",
145 last_value
, pulse_end
);
146 add_read_queue(last_value
, pulse_end
);
148 last
= last_intr_time
;
150 spin_unlock_irqrestore(&timer_lock
, flags
);
151 ir_raw_event_handle(rcdev
);
154 static irqreturn_t
sir_interrupt(int irq
, void *dev_id
)
159 unsigned long deltintr
;
164 while ((iir
= inb(io
+ UART_IIR
) & UART_IIR_ID
)) {
165 if (++counter
> 256) {
166 dev_err(&sir_ir_dev
->dev
, "Trapped in interrupt");
170 switch (iir
& UART_IIR_ID
) { /* FIXME toto treba preriedit */
172 (void)inb(io
+ UART_MSR
);
176 (void)inb(io
+ UART_LSR
);
179 /* avoid interference with timer */
180 spin_lock_irqsave(&timer_lock
, flags
);
182 del_timer(&timerlist
);
183 data
= inb(io
+ UART_RX
);
184 curr_time
= ktime_get();
185 delt
= min_t(unsigned long,
186 ktime_us_delta(last
, curr_time
),
188 deltintr
= min_t(unsigned long,
189 ktime_us_delta(last_intr_time
,
192 dev_dbg(&sir_ir_dev
->dev
, "t %lu, d %d\n",
193 deltintr
, (int)data
);
195 * if nothing came in last X cycles,
198 if (deltintr
> TIME_CONST
* threshold
) {
200 dev_dbg(&sir_ir_dev
->dev
, "GAP\n");
201 /* simulate signal change */
202 add_read_queue(last_value
,
206 last
= last_intr_time
;
211 if (data
^ last_value
) {
213 * deltintr > 2*TIME_CONST, remember?
214 * the other case is timeout
216 add_read_queue(last_value
,
220 last
= ktime_sub_us(last
,
223 last_intr_time
= curr_time
;
226 * start timer for end of
229 timerlist
.expires
= jiffies
+
231 add_timer(&timerlist
);
234 lsr
= inb(io
+ UART_LSR
);
235 } while (lsr
& UART_LSR_DR
); /* data ready */
236 spin_unlock_irqrestore(&timer_lock
, flags
);
242 ir_raw_event_handle(rcdev
);
243 return IRQ_RETVAL(IRQ_HANDLED
);
246 static void send_space(unsigned long len
)
248 usleep_range(len
, len
+ 25);
251 static void send_pulse(unsigned long len
)
253 long bytes_out
= len
/ TIME_CONST
;
258 while (bytes_out
--) {
259 outb(PULSE
, io
+ UART_TX
);
260 /* FIXME treba seriozne cakanie z char/serial.c */
261 while (!(inb(io
+ UART_LSR
) & UART_LSR_THRE
))
266 static int init_hardware(void)
268 u8 scratch
, scratch2
, scratch3
;
271 spin_lock_irqsave(&hardware_lock
, flags
);
274 * This is a simple port existence test, borrowed from the autoconfig
275 * function in drivers/tty/serial/8250/8250_port.c
277 scratch
= sinp(UART_IER
);
282 scratch2
= sinp(UART_IER
) & 0x0f;
283 soutp(UART_IER
, 0x0f);
287 scratch3
= sinp(UART_IER
) & 0x0f;
288 soutp(UART_IER
, scratch
);
289 if (scratch2
!= 0 || scratch3
!= 0x0f) {
290 /* we fail, there's nothing here */
291 spin_unlock_irqrestore(&hardware_lock
, flags
);
292 pr_err("port existence test failed, cannot continue\n");
297 outb(0, io
+ UART_MCR
);
298 outb(0, io
+ UART_IER
);
300 /* set DLAB, speed = 115200 */
301 outb(UART_LCR_DLAB
| UART_LCR_WLEN7
, io
+ UART_LCR
);
302 outb(1, io
+ UART_DLL
); outb(0, io
+ UART_DLM
);
303 /* 7N1+start = 9 bits at 115200 ~ 3 bits at 44000 */
304 outb(UART_LCR_WLEN7
, io
+ UART_LCR
);
306 outb(UART_FCR_ENABLE_FIFO
, io
+ UART_FCR
);
308 /* outb(UART_IER_RLSI|UART_IER_RDI|UART_IER_THRI, io + UART_IER); */
309 outb(UART_IER_RDI
, io
+ UART_IER
);
311 outb(UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
, io
+ UART_MCR
);
312 spin_unlock_irqrestore(&hardware_lock
, flags
);
317 static void drop_hardware(void)
321 spin_lock_irqsave(&hardware_lock
, flags
);
323 /* turn off interrupts */
324 outb(0, io
+ UART_IER
);
326 spin_unlock_irqrestore(&hardware_lock
, flags
);
329 /* SECTION: Initialisation */
330 static int sir_ir_probe(struct platform_device
*dev
)
334 rcdev
= devm_rc_allocate_device(&sir_ir_dev
->dev
, RC_DRIVER_IR_RAW
);
338 rcdev
->device_name
= "SIR IrDA port";
339 rcdev
->input_phys
= KBUILD_MODNAME
"/input0";
340 rcdev
->input_id
.bustype
= BUS_HOST
;
341 rcdev
->input_id
.vendor
= 0x0001;
342 rcdev
->input_id
.product
= 0x0001;
343 rcdev
->input_id
.version
= 0x0100;
344 rcdev
->tx_ir
= sir_tx_ir
;
345 rcdev
->allowed_protocols
= RC_PROTO_BIT_ALL_IR_DECODER
;
346 rcdev
->driver_name
= KBUILD_MODNAME
;
347 rcdev
->map_name
= RC_MAP_RC6_MCE
;
348 rcdev
->timeout
= IR_DEFAULT_TIMEOUT
;
349 rcdev
->dev
.parent
= &sir_ir_dev
->dev
;
351 timer_setup(&timerlist
, sir_timeout
, 0);
353 /* get I/O port access and IRQ line */
354 if (!devm_request_region(&sir_ir_dev
->dev
, io
, 8, KBUILD_MODNAME
)) {
355 pr_err("i/o port 0x%.4x already in use.\n", io
);
358 retval
= devm_request_irq(&sir_ir_dev
->dev
, irq
, sir_interrupt
, 0,
359 KBUILD_MODNAME
, NULL
);
361 pr_err("IRQ %d already in use.\n", irq
);
365 retval
= init_hardware();
367 del_timer_sync(&timerlist
);
371 pr_info("I/O port 0x%.4x, IRQ %d.\n", io
, irq
);
373 retval
= devm_rc_register_device(&sir_ir_dev
->dev
, rcdev
);
380 static int sir_ir_remove(struct platform_device
*dev
)
383 del_timer_sync(&timerlist
);
387 static struct platform_driver sir_ir_driver
= {
388 .probe
= sir_ir_probe
,
389 .remove
= sir_ir_remove
,
395 static int __init
sir_ir_init(void)
399 retval
= platform_driver_register(&sir_ir_driver
);
403 sir_ir_dev
= platform_device_alloc("sir_ir", 0);
406 goto pdev_alloc_fail
;
409 retval
= platform_device_add(sir_ir_dev
);
416 platform_device_put(sir_ir_dev
);
418 platform_driver_unregister(&sir_ir_driver
);
422 static void __exit
sir_ir_exit(void)
424 platform_device_unregister(sir_ir_dev
);
425 platform_driver_unregister(&sir_ir_driver
);
428 module_init(sir_ir_init
);
429 module_exit(sir_ir_exit
);
431 MODULE_DESCRIPTION("Infrared receiver driver for SIR type serial ports");
432 MODULE_AUTHOR("Milan Pikula");
433 MODULE_LICENSE("GPL");
435 module_param_hw(io
, int, ioport
, 0444);
436 MODULE_PARM_DESC(io
, "I/O address base (0x3f8 or 0x2f8)");
438 module_param_hw(irq
, int, irq
, 0444);
439 MODULE_PARM_DESC(irq
, "Interrupt (4 or 3)");
441 module_param(threshold
, int, 0444);
442 MODULE_PARM_DESC(threshold
, "space detection threshold (3)");