blob: fdac5704c30e6e4688c68b78f748c3d59217dea3 [file] [log] [blame]
Jarod Wilson404f3e92010-07-26 20:32:03 -03001/*
Sean Young402e7b62017-03-07 16:13:15 -03002 * IR SIR driver, (C) 2000 Milan Pikula <www@fornax.sk>
Jarod Wilson404f3e92010-07-26 20:32:03 -03003 *
Sean Youngcc063932016-12-19 20:07:08 -02004 * sir_ir - Device driver for use with SIR (serial infra red)
Jarod Wilson404f3e92010-07-26 20:32:03 -03005 * mode of IrDA on many notebooks.
6 *
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.
Jarod Wilson404f3e92010-07-26 20:32:03 -030011 */
12
YAMANE Toshiaki014f0062012-11-08 15:53:37 -030013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Jarod Wilson404f3e92010-07-26 20:32:03 -030015#include <linux/module.h>
Jarod Wilson404f3e92010-07-26 20:32:03 -030016#include <linux/interrupt.h>
Jarod Wilson404f3e92010-07-26 20:32:03 -030017#include <linux/kernel.h>
18#include <linux/serial_reg.h>
Ksenija Stanojevic34668352015-05-22 12:58:42 -030019#include <linux/ktime.h>
Jarod Wilson404f3e92010-07-26 20:32:03 -030020#include <linux/delay.h>
Jarod Wilson4b71ca62012-06-04 13:05:24 -030021#include <linux/platform_device.h>
Jarod Wilson404f3e92010-07-26 20:32:03 -030022
Sean Youngcc063932016-12-19 20:07:08 -020023#include <media/rc-core.h>
Jarod Wilson404f3e92010-07-26 20:32:03 -030024
25/* SECTION: Definitions */
Jarod Wilson404f3e92010-07-26 20:32:03 -030026#define PULSE '['
27
Jarod Wilson404f3e92010-07-26 20:32:03 -030028/* 9bit * 1s/115200bit in milli seconds = 78.125ms*/
Sean Young43371f62017-03-07 16:25:45 -030029#define TIME_CONST (9000000ul / 115200ul)
Jarod Wilson404f3e92010-07-26 20:32:03 -030030
31/* timeout for sequences in jiffies (=5/100s), must be longer than TIME_CONST */
Sean Young43371f62017-03-07 16:25:45 -030032#define SIR_TIMEOUT (HZ * 5 / 100)
Jarod Wilson404f3e92010-07-26 20:32:03 -030033
Jarod Wilson404f3e92010-07-26 20:32:03 -030034/* onboard sir ports are typically com3 */
Sean Young402e7b62017-03-07 16:13:15 -030035static int io = 0x3e8;
36static int irq = 4;
Jarod Wilson404f3e92010-07-26 20:32:03 -030037static int threshold = 3;
Jarod Wilson404f3e92010-07-26 20:32:03 -030038
39static DEFINE_SPINLOCK(timer_lock);
40static struct timer_list timerlist;
41/* time of last signal change detected */
Ksenija Stanojevic34668352015-05-22 12:58:42 -030042static ktime_t last;
Jarod Wilson404f3e92010-07-26 20:32:03 -030043/* time of last UART data ready interrupt */
Ksenija Stanojevic34668352015-05-22 12:58:42 -030044static ktime_t last_intr_time;
Jarod Wilson404f3e92010-07-26 20:32:03 -030045static int last_value;
Sean Youngcc063932016-12-19 20:07:08 -020046static struct rc_dev *rcdev;
Jarod Wilson404f3e92010-07-26 20:32:03 -030047
Sean Youngcc063932016-12-19 20:07:08 -020048static struct platform_device *sir_ir_dev;
Jarod Wilson404f3e92010-07-26 20:32:03 -030049
50static DEFINE_SPINLOCK(hardware_lock);
51
Jarod Wilson404f3e92010-07-26 20:32:03 -030052/* SECTION: Prototypes */
53
54/* Communication with user-space */
Jarod Wilson404f3e92010-07-26 20:32:03 -030055static void add_read_queue(int flag, unsigned long val);
56static int init_chrdev(void);
Jarod Wilson404f3e92010-07-26 20:32:03 -030057/* Hardware */
58static irqreturn_t sir_interrupt(int irq, void *dev_id);
59static void send_space(unsigned long len);
60static void send_pulse(unsigned long len);
Sean Youngf23f54082017-05-17 14:32:52 -030061static void init_hardware(void);
Jarod Wilson404f3e92010-07-26 20:32:03 -030062static void drop_hardware(void);
63/* Initialisation */
Jarod Wilson404f3e92010-07-26 20:32:03 -030064
Jarod Wilson404f3e92010-07-26 20:32:03 -030065static inline unsigned int sinp(int offset)
66{
67 return inb(io + offset);
68}
69
70static inline void soutp(int offset, int value)
71{
72 outb(value, io + offset);
73}
Jarod Wilson404f3e92010-07-26 20:32:03 -030074
Jarod Wilson404f3e92010-07-26 20:32:03 -030075/* SECTION: Communication with user-space */
Sean Youngcc063932016-12-19 20:07:08 -020076static int sir_tx_ir(struct rc_dev *dev, unsigned int *tx_buf,
77 unsigned int count)
Jarod Wilson404f3e92010-07-26 20:32:03 -030078{
79 unsigned long flags;
Sean Youngcc063932016-12-19 20:07:08 -020080 int i;
Jarod Wilson404f3e92010-07-26 20:32:03 -030081
Jarod Wilson404f3e92010-07-26 20:32:03 -030082 local_irq_save(flags);
Sean Youngcc063932016-12-19 20:07:08 -020083 for (i = 0; i < count;) {
Jarod Wilson404f3e92010-07-26 20:32:03 -030084 if (tx_buf[i])
85 send_pulse(tx_buf[i]);
86 i++;
87 if (i >= count)
88 break;
89 if (tx_buf[i])
90 send_space(tx_buf[i]);
91 i++;
92 }
93 local_irq_restore(flags);
Sean Youngcc063932016-12-19 20:07:08 -020094
Jarod Wilson404f3e92010-07-26 20:32:03 -030095 return count;
96}
97
Jarod Wilson404f3e92010-07-26 20:32:03 -030098static void add_read_queue(int flag, unsigned long val)
99{
Sean Youngcc063932016-12-19 20:07:08 -0200100 DEFINE_IR_RAW_EVENT(ev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300101
Aya Mahfouzc96bf1d2014-10-26 19:46:00 +0200102 pr_debug("add flag %d with val %lu\n", flag, val);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300103
Jarod Wilson404f3e92010-07-26 20:32:03 -0300104 /*
105 * statistically, pulses are ~TIME_CONST/2 too long. we could
106 * maybe make this more exact, but this is good enough
107 */
108 if (flag) {
109 /* pulse */
Sean Youngcc063932016-12-19 20:07:08 -0200110 if (val > TIME_CONST / 2)
111 val -= TIME_CONST / 2;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300112 else /* should not ever happen */
Sean Youngcc063932016-12-19 20:07:08 -0200113 val = 1;
114 ev.pulse = true;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300115 } else {
Sean Youngcc063932016-12-19 20:07:08 -0200116 val += TIME_CONST / 2;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300117 }
Sean Youngcc063932016-12-19 20:07:08 -0200118 ev.duration = US_TO_NS(val);
119
120 ir_raw_event_store_with_filter(rcdev, &ev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300121}
122
Jarod Wilson404f3e92010-07-26 20:32:03 -0300123static int init_chrdev(void)
124{
Sean Youngcc063932016-12-19 20:07:08 -0200125 rcdev = devm_rc_allocate_device(&sir_ir_dev->dev, RC_DRIVER_IR_RAW);
126 if (!rcdev)
127 return -ENOMEM;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300128
Sean Youngcf9ed9a2017-03-25 07:31:57 -0300129 rcdev->input_name = "SIR IrDA port";
Sean Youngcc063932016-12-19 20:07:08 -0200130 rcdev->input_phys = KBUILD_MODNAME "/input0";
131 rcdev->input_id.bustype = BUS_HOST;
132 rcdev->input_id.vendor = 0x0001;
133 rcdev->input_id.product = 0x0001;
134 rcdev->input_id.version = 0x0100;
135 rcdev->tx_ir = sir_tx_ir;
136 rcdev->allowed_protocols = RC_BIT_ALL_IR_DECODER;
Sean Youngcf9ed9a2017-03-25 07:31:57 -0300137 rcdev->driver_name = KBUILD_MODNAME;
Sean Youngcc063932016-12-19 20:07:08 -0200138 rcdev->map_name = RC_MAP_RC6_MCE;
139 rcdev->timeout = IR_DEFAULT_TIMEOUT;
140 rcdev->dev.parent = &sir_ir_dev->dev;
141
142 return devm_rc_register_device(&sir_ir_dev->dev, rcdev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300143}
144
145/* SECTION: Hardware */
Jarod Wilson404f3e92010-07-26 20:32:03 -0300146static void sir_timeout(unsigned long data)
147{
148 /*
149 * if last received signal was a pulse, but receiving stopped
150 * within the 9 bit frame, we need to finish this pulse and
151 * simulate a signal change to from pulse to space. Otherwise
152 * upper layers will receive two sequences next time.
153 */
154
155 unsigned long flags;
156 unsigned long pulse_end;
157
158 /* avoid interference with interrupt */
159 spin_lock_irqsave(&timer_lock, flags);
160 if (last_value) {
Jarod Wilson404f3e92010-07-26 20:32:03 -0300161 /* clear unread bits in UART and restart */
162 outb(UART_FCR_CLEAR_RCVR, io + UART_FCR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300163 /* determine 'virtual' pulse end: */
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300164 pulse_end = min_t(unsigned long,
165 ktime_us_delta(last, last_intr_time),
Sean Youngcc063932016-12-19 20:07:08 -0200166 IR_MAX_DURATION);
167 dev_dbg(&sir_ir_dev->dev, "timeout add %d for %lu usec\n",
168 last_value, pulse_end);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300169 add_read_queue(last_value, pulse_end);
170 last_value = 0;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300171 last = last_intr_time;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300172 }
173 spin_unlock_irqrestore(&timer_lock, flags);
Sean Youngcc063932016-12-19 20:07:08 -0200174 ir_raw_event_handle(rcdev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300175}
176
177static irqreturn_t sir_interrupt(int irq, void *dev_id)
178{
179 unsigned char data;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300180 ktime_t curr_time;
181 static unsigned long delt;
182 unsigned long deltintr;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300183 unsigned long flags;
Sean Young592ddc92017-05-16 04:56:14 -0300184 int counter = 0;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300185 int iir, lsr;
186
187 while ((iir = inb(io + UART_IIR) & UART_IIR_ID)) {
Sean Young592ddc92017-05-16 04:56:14 -0300188 if (++counter > 256) {
189 dev_err(&sir_ir_dev->dev, "Trapped in interrupt");
190 break;
191 }
192
Sean Young43371f62017-03-07 16:25:45 -0300193 switch (iir & UART_IIR_ID) { /* FIXME toto treba preriedit */
Jarod Wilson404f3e92010-07-26 20:32:03 -0300194 case UART_IIR_MSI:
Sean Young43371f62017-03-07 16:25:45 -0300195 (void)inb(io + UART_MSR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300196 break;
197 case UART_IIR_RLSI:
Jarod Wilson404f3e92010-07-26 20:32:03 -0300198 case UART_IIR_THRI:
Sean Young43371f62017-03-07 16:25:45 -0300199 (void)inb(io + UART_LSR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300200 break;
201 case UART_IIR_RDI:
202 /* avoid interference with timer */
203 spin_lock_irqsave(&timer_lock, flags);
204 do {
205 del_timer(&timerlist);
206 data = inb(io + UART_RX);
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300207 curr_time = ktime_get();
208 delt = min_t(unsigned long,
209 ktime_us_delta(last, curr_time),
Sean Youngcc063932016-12-19 20:07:08 -0200210 IR_MAX_DURATION);
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300211 deltintr = min_t(unsigned long,
212 ktime_us_delta(last_intr_time,
213 curr_time),
Sean Youngcc063932016-12-19 20:07:08 -0200214 IR_MAX_DURATION);
215 dev_dbg(&sir_ir_dev->dev, "t %lu, d %d\n",
216 deltintr, (int)data);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300217 /*
218 * if nothing came in last X cycles,
219 * it was gap
220 */
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300221 if (deltintr > TIME_CONST * threshold) {
Jarod Wilson404f3e92010-07-26 20:32:03 -0300222 if (last_value) {
Sean Youngcc063932016-12-19 20:07:08 -0200223 dev_dbg(&sir_ir_dev->dev, "GAP\n");
Jarod Wilson404f3e92010-07-26 20:32:03 -0300224 /* simulate signal change */
225 add_read_queue(last_value,
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300226 delt -
227 deltintr);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300228 last_value = 0;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300229 last = last_intr_time;
230 delt = deltintr;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300231 }
232 }
233 data = 1;
234 if (data ^ last_value) {
235 /*
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300236 * deltintr > 2*TIME_CONST, remember?
Jarod Wilson404f3e92010-07-26 20:32:03 -0300237 * the other case is timeout
238 */
239 add_read_queue(last_value,
Sean Young43371f62017-03-07 16:25:45 -0300240 delt - TIME_CONST);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300241 last_value = data;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300242 last = curr_time;
243 last = ktime_sub_us(last,
244 TIME_CONST);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300245 }
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300246 last_intr_time = curr_time;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300247 if (data) {
248 /*
249 * start timer for end of
250 * sequence detection
251 */
252 timerlist.expires = jiffies +
253 SIR_TIMEOUT;
254 add_timer(&timerlist);
255 }
256
257 lsr = inb(io + UART_LSR);
258 } while (lsr & UART_LSR_DR); /* data ready */
259 spin_unlock_irqrestore(&timer_lock, flags);
260 break;
261 default:
262 break;
263 }
264 }
Sean Youngcc063932016-12-19 20:07:08 -0200265 ir_raw_event_handle(rcdev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300266 return IRQ_RETVAL(IRQ_HANDLED);
267}
268
Jarod Wilson404f3e92010-07-26 20:32:03 -0300269static void send_space(unsigned long len)
270{
Sean Young19bc4e02017-03-07 17:01:48 -0300271 usleep_range(len, len + 25);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300272}
273
274static void send_pulse(unsigned long len)
275{
276 long bytes_out = len / TIME_CONST;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300277
Jarod Wilson04f561f2011-05-27 15:46:19 -0300278 if (bytes_out == 0)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300279 bytes_out++;
Jarod Wilson04f561f2011-05-27 15:46:19 -0300280
Jarod Wilson404f3e92010-07-26 20:32:03 -0300281 while (bytes_out--) {
282 outb(PULSE, io + UART_TX);
283 /* FIXME treba seriozne cakanie z char/serial.c */
284 while (!(inb(io + UART_LSR) & UART_LSR_THRE))
285 ;
286 }
Jarod Wilson404f3e92010-07-26 20:32:03 -0300287}
Jarod Wilson404f3e92010-07-26 20:32:03 -0300288
Sean Youngf23f54082017-05-17 14:32:52 -0300289static void init_hardware(void)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300290{
291 unsigned long flags;
292
293 spin_lock_irqsave(&hardware_lock, flags);
294 /* reset UART */
Jarod Wilson404f3e92010-07-26 20:32:03 -0300295 outb(0, io + UART_MCR);
296 outb(0, io + UART_IER);
297 /* init UART */
298 /* set DLAB, speed = 115200 */
299 outb(UART_LCR_DLAB | UART_LCR_WLEN7, io + UART_LCR);
300 outb(1, io + UART_DLL); outb(0, io + UART_DLM);
301 /* 7N1+start = 9 bits at 115200 ~ 3 bits at 44000 */
302 outb(UART_LCR_WLEN7, io + UART_LCR);
303 /* FIFO operation */
304 outb(UART_FCR_ENABLE_FIFO, io + UART_FCR);
305 /* interrupts */
306 /* outb(UART_IER_RLSI|UART_IER_RDI|UART_IER_THRI, io + UART_IER); */
307 outb(UART_IER_RDI, io + UART_IER);
308 /* turn on UART */
Sean Young43371f62017-03-07 16:25:45 -0300309 outb(UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2, io + UART_MCR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300310 spin_unlock_irqrestore(&hardware_lock, flags);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300311}
312
313static void drop_hardware(void)
314{
315 unsigned long flags;
316
317 spin_lock_irqsave(&hardware_lock, flags);
318
Jarod Wilson404f3e92010-07-26 20:32:03 -0300319 /* turn off interrupts */
320 outb(0, io + UART_IER);
Arnd Bergmannc72374f2014-06-05 22:48:11 +0200321
Jarod Wilson404f3e92010-07-26 20:32:03 -0300322 spin_unlock_irqrestore(&hardware_lock, flags);
323}
324
325/* SECTION: Initialisation */
326
Sean Youngf23f54082017-05-17 14:32:52 -0300327static int init_sir_ir(void)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300328{
329 int retval;
330
Sean Young8c7c6ca2017-03-25 08:45:38 -0300331 setup_timer(&timerlist, sir_timeout, 0);
332
Jarod Wilson404f3e92010-07-26 20:32:03 -0300333 /* get I/O port access and IRQ line */
Sean Youngb462e1b2017-05-17 14:32:51 -0300334 if (!devm_request_region(&sir_ir_dev->dev, io, 8, KBUILD_MODNAME)) {
YAMANE Toshiaki014f0062012-11-08 15:53:37 -0300335 pr_err("i/o port 0x%.4x already in use.\n", io);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300336 return -EBUSY;
337 }
Sean Youngb462e1b2017-05-17 14:32:51 -0300338 retval = devm_request_irq(&sir_ir_dev->dev, irq, sir_interrupt, 0,
339 KBUILD_MODNAME, NULL);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300340 if (retval < 0) {
YAMANE Toshiaki014f0062012-11-08 15:53:37 -0300341 pr_err("IRQ %d already in use.\n", irq);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300342 return retval;
343 }
YAMANE Toshiaki014f0062012-11-08 15:53:37 -0300344 pr_info("I/O port 0x%.4x, IRQ %d.\n", io, irq);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300345
Jarod Wilson404f3e92010-07-26 20:32:03 -0300346 init_hardware();
Sean Youngf23f54082017-05-17 14:32:52 -0300347
Jarod Wilson404f3e92010-07-26 20:32:03 -0300348 return 0;
349}
350
Sean Youngcc063932016-12-19 20:07:08 -0200351static int sir_ir_probe(struct platform_device *dev)
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300352{
Sean Youngcf9ed9a2017-03-25 07:31:57 -0300353 int retval;
354
355 retval = init_chrdev();
356 if (retval < 0)
357 return retval;
358
359 return init_sir_ir();
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300360}
361
Sean Youngcc063932016-12-19 20:07:08 -0200362static int sir_ir_remove(struct platform_device *dev)
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300363{
Sean Young1beb5a72017-05-17 14:32:50 -0300364 drop_hardware();
Sean Youngf23f54082017-05-17 14:32:52 -0300365 del_timer_sync(&timerlist);
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300366 return 0;
367}
368
Sean Youngcc063932016-12-19 20:07:08 -0200369static struct platform_driver sir_ir_driver = {
370 .probe = sir_ir_probe,
371 .remove = sir_ir_remove,
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300372 .driver = {
Sean Youngcc063932016-12-19 20:07:08 -0200373 .name = "sir_ir",
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300374 },
375};
Jarod Wilson404f3e92010-07-26 20:32:03 -0300376
Sean Youngcc063932016-12-19 20:07:08 -0200377static int __init sir_ir_init(void)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300378{
379 int retval;
380
Sean Youngcc063932016-12-19 20:07:08 -0200381 retval = platform_driver_register(&sir_ir_driver);
Sean Young4d7cf7e2017-03-25 07:41:39 -0300382 if (retval)
383 return retval;
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300384
Sean Youngcc063932016-12-19 20:07:08 -0200385 sir_ir_dev = platform_device_alloc("sir_ir", 0);
386 if (!sir_ir_dev) {
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300387 retval = -ENOMEM;
388 goto pdev_alloc_fail;
389 }
390
Sean Youngcc063932016-12-19 20:07:08 -0200391 retval = platform_device_add(sir_ir_dev);
Sean Young4d7cf7e2017-03-25 07:41:39 -0300392 if (retval)
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300393 goto pdev_add_fail;
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300394
Jarod Wilson404f3e92010-07-26 20:32:03 -0300395 return 0;
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300396
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300397pdev_add_fail:
Sean Youngcc063932016-12-19 20:07:08 -0200398 platform_device_put(sir_ir_dev);
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300399pdev_alloc_fail:
Sean Youngcc063932016-12-19 20:07:08 -0200400 platform_driver_unregister(&sir_ir_driver);
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300401 return retval;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300402}
403
Sean Youngcc063932016-12-19 20:07:08 -0200404static void __exit sir_ir_exit(void)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300405{
Sean Youngcc063932016-12-19 20:07:08 -0200406 platform_device_unregister(sir_ir_dev);
407 platform_driver_unregister(&sir_ir_driver);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300408}
409
Sean Youngcc063932016-12-19 20:07:08 -0200410module_init(sir_ir_init);
411module_exit(sir_ir_exit);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300412
Jarod Wilson404f3e92010-07-26 20:32:03 -0300413MODULE_DESCRIPTION("Infrared receiver driver for SIR type serial ports");
414MODULE_AUTHOR("Milan Pikula");
Jarod Wilson404f3e92010-07-26 20:32:03 -0300415MODULE_LICENSE("GPL");
416
Derek Robson5cd65222017-02-10 22:42:38 -0200417module_param(io, int, 0444);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300418MODULE_PARM_DESC(io, "I/O address base (0x3f8 or 0x2f8)");
419
Derek Robson5cd65222017-02-10 22:42:38 -0200420module_param(irq, int, 0444);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300421MODULE_PARM_DESC(irq, "Interrupt (4 or 3)");
422
Derek Robson5cd65222017-02-10 22:42:38 -0200423module_param(threshold, int, 0444);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300424MODULE_PARM_DESC(threshold, "space detection threshold (3)");