blob: e12ec50bf0bf7531cb76ef129149d77f531fa525 [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);
61static int init_hardware(void);
62static void drop_hardware(void);
63/* Initialisation */
64static int init_port(void);
65static void drop_port(void);
66
Jarod Wilson404f3e92010-07-26 20:32:03 -030067static inline unsigned int sinp(int offset)
68{
69 return inb(io + offset);
70}
71
72static inline void soutp(int offset, int value)
73{
74 outb(value, io + offset);
75}
Jarod Wilson404f3e92010-07-26 20:32:03 -030076
Jarod Wilson404f3e92010-07-26 20:32:03 -030077/* SECTION: Communication with user-space */
Sean Youngcc063932016-12-19 20:07:08 -020078static int sir_tx_ir(struct rc_dev *dev, unsigned int *tx_buf,
79 unsigned int count)
Jarod Wilson404f3e92010-07-26 20:32:03 -030080{
81 unsigned long flags;
Sean Youngcc063932016-12-19 20:07:08 -020082 int i;
Jarod Wilson404f3e92010-07-26 20:32:03 -030083
Jarod Wilson404f3e92010-07-26 20:32:03 -030084 local_irq_save(flags);
Sean Youngcc063932016-12-19 20:07:08 -020085 for (i = 0; i < count;) {
Jarod Wilson404f3e92010-07-26 20:32:03 -030086 if (tx_buf[i])
87 send_pulse(tx_buf[i]);
88 i++;
89 if (i >= count)
90 break;
91 if (tx_buf[i])
92 send_space(tx_buf[i]);
93 i++;
94 }
95 local_irq_restore(flags);
Sean Youngcc063932016-12-19 20:07:08 -020096
Jarod Wilson404f3e92010-07-26 20:32:03 -030097 return count;
98}
99
Jarod Wilson404f3e92010-07-26 20:32:03 -0300100static void add_read_queue(int flag, unsigned long val)
101{
Sean Youngcc063932016-12-19 20:07:08 -0200102 DEFINE_IR_RAW_EVENT(ev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300103
Aya Mahfouzc96bf1d2014-10-26 19:46:00 +0200104 pr_debug("add flag %d with val %lu\n", flag, val);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300105
Jarod Wilson404f3e92010-07-26 20:32:03 -0300106 /*
107 * statistically, pulses are ~TIME_CONST/2 too long. we could
108 * maybe make this more exact, but this is good enough
109 */
110 if (flag) {
111 /* pulse */
Sean Youngcc063932016-12-19 20:07:08 -0200112 if (val > TIME_CONST / 2)
113 val -= TIME_CONST / 2;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300114 else /* should not ever happen */
Sean Youngcc063932016-12-19 20:07:08 -0200115 val = 1;
116 ev.pulse = true;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300117 } else {
Sean Youngcc063932016-12-19 20:07:08 -0200118 val += TIME_CONST / 2;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300119 }
Sean Youngcc063932016-12-19 20:07:08 -0200120 ev.duration = US_TO_NS(val);
121
122 ir_raw_event_store_with_filter(rcdev, &ev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300123}
124
Jarod Wilson404f3e92010-07-26 20:32:03 -0300125static int init_chrdev(void)
126{
Sean Youngcc063932016-12-19 20:07:08 -0200127 rcdev = devm_rc_allocate_device(&sir_ir_dev->dev, RC_DRIVER_IR_RAW);
128 if (!rcdev)
129 return -ENOMEM;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300130
Sean Youngcf9ed9a2017-03-25 07:31:57 -0300131 rcdev->input_name = "SIR IrDA port";
Sean Youngcc063932016-12-19 20:07:08 -0200132 rcdev->input_phys = KBUILD_MODNAME "/input0";
133 rcdev->input_id.bustype = BUS_HOST;
134 rcdev->input_id.vendor = 0x0001;
135 rcdev->input_id.product = 0x0001;
136 rcdev->input_id.version = 0x0100;
137 rcdev->tx_ir = sir_tx_ir;
138 rcdev->allowed_protocols = RC_BIT_ALL_IR_DECODER;
Sean Youngcf9ed9a2017-03-25 07:31:57 -0300139 rcdev->driver_name = KBUILD_MODNAME;
Sean Youngcc063932016-12-19 20:07:08 -0200140 rcdev->map_name = RC_MAP_RC6_MCE;
141 rcdev->timeout = IR_DEFAULT_TIMEOUT;
142 rcdev->dev.parent = &sir_ir_dev->dev;
143
144 return devm_rc_register_device(&sir_ir_dev->dev, rcdev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300145}
146
147/* SECTION: Hardware */
Jarod Wilson404f3e92010-07-26 20:32:03 -0300148static void sir_timeout(unsigned long data)
149{
150 /*
151 * if last received signal was a pulse, but receiving stopped
152 * within the 9 bit frame, we need to finish this pulse and
153 * simulate a signal change to from pulse to space. Otherwise
154 * upper layers will receive two sequences next time.
155 */
156
157 unsigned long flags;
158 unsigned long pulse_end;
159
160 /* avoid interference with interrupt */
161 spin_lock_irqsave(&timer_lock, flags);
162 if (last_value) {
Jarod Wilson404f3e92010-07-26 20:32:03 -0300163 /* clear unread bits in UART and restart */
164 outb(UART_FCR_CLEAR_RCVR, io + UART_FCR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300165 /* determine 'virtual' pulse end: */
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300166 pulse_end = min_t(unsigned long,
167 ktime_us_delta(last, last_intr_time),
Sean Youngcc063932016-12-19 20:07:08 -0200168 IR_MAX_DURATION);
169 dev_dbg(&sir_ir_dev->dev, "timeout add %d for %lu usec\n",
170 last_value, pulse_end);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300171 add_read_queue(last_value, pulse_end);
172 last_value = 0;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300173 last = last_intr_time;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300174 }
175 spin_unlock_irqrestore(&timer_lock, flags);
Sean Youngcc063932016-12-19 20:07:08 -0200176 ir_raw_event_handle(rcdev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300177}
178
179static irqreturn_t sir_interrupt(int irq, void *dev_id)
180{
181 unsigned char data;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300182 ktime_t curr_time;
183 static unsigned long delt;
184 unsigned long deltintr;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300185 unsigned long flags;
186 int iir, lsr;
187
188 while ((iir = inb(io + UART_IIR) & UART_IIR_ID)) {
Sean Young43371f62017-03-07 16:25:45 -0300189 switch (iir & UART_IIR_ID) { /* FIXME toto treba preriedit */
Jarod Wilson404f3e92010-07-26 20:32:03 -0300190 case UART_IIR_MSI:
Sean Young43371f62017-03-07 16:25:45 -0300191 (void)inb(io + UART_MSR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300192 break;
193 case UART_IIR_RLSI:
Jarod Wilson404f3e92010-07-26 20:32:03 -0300194 case UART_IIR_THRI:
Sean Young43371f62017-03-07 16:25:45 -0300195 (void)inb(io + UART_LSR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300196 break;
197 case UART_IIR_RDI:
198 /* avoid interference with timer */
199 spin_lock_irqsave(&timer_lock, flags);
200 do {
201 del_timer(&timerlist);
202 data = inb(io + UART_RX);
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300203 curr_time = ktime_get();
204 delt = min_t(unsigned long,
205 ktime_us_delta(last, curr_time),
Sean Youngcc063932016-12-19 20:07:08 -0200206 IR_MAX_DURATION);
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300207 deltintr = min_t(unsigned long,
208 ktime_us_delta(last_intr_time,
209 curr_time),
Sean Youngcc063932016-12-19 20:07:08 -0200210 IR_MAX_DURATION);
211 dev_dbg(&sir_ir_dev->dev, "t %lu, d %d\n",
212 deltintr, (int)data);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300213 /*
214 * if nothing came in last X cycles,
215 * it was gap
216 */
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300217 if (deltintr > TIME_CONST * threshold) {
Jarod Wilson404f3e92010-07-26 20:32:03 -0300218 if (last_value) {
Sean Youngcc063932016-12-19 20:07:08 -0200219 dev_dbg(&sir_ir_dev->dev, "GAP\n");
Jarod Wilson404f3e92010-07-26 20:32:03 -0300220 /* simulate signal change */
221 add_read_queue(last_value,
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300222 delt -
223 deltintr);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300224 last_value = 0;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300225 last = last_intr_time;
226 delt = deltintr;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300227 }
228 }
229 data = 1;
230 if (data ^ last_value) {
231 /*
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300232 * deltintr > 2*TIME_CONST, remember?
Jarod Wilson404f3e92010-07-26 20:32:03 -0300233 * the other case is timeout
234 */
235 add_read_queue(last_value,
Sean Young43371f62017-03-07 16:25:45 -0300236 delt - TIME_CONST);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300237 last_value = data;
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300238 last = curr_time;
239 last = ktime_sub_us(last,
240 TIME_CONST);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300241 }
Ksenija Stanojevic34668352015-05-22 12:58:42 -0300242 last_intr_time = curr_time;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300243 if (data) {
244 /*
245 * start timer for end of
246 * sequence detection
247 */
248 timerlist.expires = jiffies +
249 SIR_TIMEOUT;
250 add_timer(&timerlist);
251 }
252
253 lsr = inb(io + UART_LSR);
254 } while (lsr & UART_LSR_DR); /* data ready */
255 spin_unlock_irqrestore(&timer_lock, flags);
256 break;
257 default:
258 break;
259 }
260 }
Sean Youngcc063932016-12-19 20:07:08 -0200261 ir_raw_event_handle(rcdev);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300262 return IRQ_RETVAL(IRQ_HANDLED);
263}
264
Jarod Wilson404f3e92010-07-26 20:32:03 -0300265static void send_space(unsigned long len)
266{
Sean Young19bc4e02017-03-07 17:01:48 -0300267 usleep_range(len, len + 25);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300268}
269
270static void send_pulse(unsigned long len)
271{
272 long bytes_out = len / TIME_CONST;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300273
Jarod Wilson04f561f2011-05-27 15:46:19 -0300274 if (bytes_out == 0)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300275 bytes_out++;
Jarod Wilson04f561f2011-05-27 15:46:19 -0300276
Jarod Wilson404f3e92010-07-26 20:32:03 -0300277 while (bytes_out--) {
278 outb(PULSE, io + UART_TX);
279 /* FIXME treba seriozne cakanie z char/serial.c */
280 while (!(inb(io + UART_LSR) & UART_LSR_THRE))
281 ;
282 }
Jarod Wilson404f3e92010-07-26 20:32:03 -0300283}
Jarod Wilson404f3e92010-07-26 20:32:03 -0300284
285static int init_hardware(void)
286{
287 unsigned long flags;
288
289 spin_lock_irqsave(&hardware_lock, flags);
290 /* reset UART */
Jarod Wilson404f3e92010-07-26 20:32:03 -0300291 outb(0, io + UART_MCR);
292 outb(0, io + UART_IER);
293 /* init UART */
294 /* set DLAB, speed = 115200 */
295 outb(UART_LCR_DLAB | UART_LCR_WLEN7, io + UART_LCR);
296 outb(1, io + UART_DLL); outb(0, io + UART_DLM);
297 /* 7N1+start = 9 bits at 115200 ~ 3 bits at 44000 */
298 outb(UART_LCR_WLEN7, io + UART_LCR);
299 /* FIFO operation */
300 outb(UART_FCR_ENABLE_FIFO, io + UART_FCR);
301 /* interrupts */
302 /* outb(UART_IER_RLSI|UART_IER_RDI|UART_IER_THRI, io + UART_IER); */
303 outb(UART_IER_RDI, io + UART_IER);
304 /* turn on UART */
Sean Young43371f62017-03-07 16:25:45 -0300305 outb(UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2, io + UART_MCR);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300306 spin_unlock_irqrestore(&hardware_lock, flags);
307 return 0;
308}
309
310static void drop_hardware(void)
311{
312 unsigned long flags;
313
314 spin_lock_irqsave(&hardware_lock, flags);
315
Jarod Wilson404f3e92010-07-26 20:32:03 -0300316 /* turn off interrupts */
317 outb(0, io + UART_IER);
Arnd Bergmannc72374f2014-06-05 22:48:11 +0200318
Jarod Wilson404f3e92010-07-26 20:32:03 -0300319 spin_unlock_irqrestore(&hardware_lock, flags);
320}
321
322/* SECTION: Initialisation */
323
324static int init_port(void)
325{
326 int retval;
327
Sean Young8c7c6ca2017-03-25 08:45:38 -0300328 setup_timer(&timerlist, sir_timeout, 0);
329
Jarod Wilson404f3e92010-07-26 20:32:03 -0300330 /* get I/O port access and IRQ line */
Sean Youngcc063932016-12-19 20:07:08 -0200331 if (!request_region(io, 8, KBUILD_MODNAME)) {
YAMANE Toshiaki014f0062012-11-08 15:53:37 -0300332 pr_err("i/o port 0x%.4x already in use.\n", io);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300333 return -EBUSY;
334 }
Yong Zhang18e93512011-09-07 16:10:22 +0800335 retval = request_irq(irq, sir_interrupt, 0,
Sean Youngcc063932016-12-19 20:07:08 -0200336 KBUILD_MODNAME, NULL);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300337 if (retval < 0) {
Jarod Wilson404f3e92010-07-26 20:32:03 -0300338 release_region(io, 8);
YAMANE Toshiaki014f0062012-11-08 15:53:37 -0300339 pr_err("IRQ %d already in use.\n", irq);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300340 return retval;
341 }
YAMANE Toshiaki014f0062012-11-08 15:53:37 -0300342 pr_info("I/O port 0x%.4x, IRQ %d.\n", io, irq);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300343
Jarod Wilson404f3e92010-07-26 20:32:03 -0300344 return 0;
345}
346
347static void drop_port(void)
348{
349 free_irq(irq, NULL);
350 del_timer_sync(&timerlist);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300351 release_region(io, 8);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300352}
353
Sean Youngcc063932016-12-19 20:07:08 -0200354static int init_sir_ir(void)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300355{
356 int retval;
357
Jarod Wilson404f3e92010-07-26 20:32:03 -0300358 retval = init_port();
359 if (retval < 0)
360 return retval;
361 init_hardware();
Jarod Wilson404f3e92010-07-26 20:32:03 -0300362 return 0;
363}
364
Sean Youngcc063932016-12-19 20:07:08 -0200365static int sir_ir_probe(struct platform_device *dev)
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300366{
Sean Youngcf9ed9a2017-03-25 07:31:57 -0300367 int retval;
368
369 retval = init_chrdev();
370 if (retval < 0)
371 return retval;
372
373 return init_sir_ir();
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300374}
375
Sean Youngcc063932016-12-19 20:07:08 -0200376static int sir_ir_remove(struct platform_device *dev)
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300377{
378 return 0;
379}
380
Sean Youngcc063932016-12-19 20:07:08 -0200381static struct platform_driver sir_ir_driver = {
382 .probe = sir_ir_probe,
383 .remove = sir_ir_remove,
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300384 .driver = {
Sean Youngcc063932016-12-19 20:07:08 -0200385 .name = "sir_ir",
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300386 },
387};
Jarod Wilson404f3e92010-07-26 20:32:03 -0300388
Sean Youngcc063932016-12-19 20:07:08 -0200389static int __init sir_ir_init(void)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300390{
391 int retval;
392
Sean Youngcc063932016-12-19 20:07:08 -0200393 retval = platform_driver_register(&sir_ir_driver);
Sean Young4d7cf7e2017-03-25 07:41:39 -0300394 if (retval)
395 return retval;
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300396
Sean Youngcc063932016-12-19 20:07:08 -0200397 sir_ir_dev = platform_device_alloc("sir_ir", 0);
398 if (!sir_ir_dev) {
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300399 retval = -ENOMEM;
400 goto pdev_alloc_fail;
401 }
402
Sean Youngcc063932016-12-19 20:07:08 -0200403 retval = platform_device_add(sir_ir_dev);
Sean Young4d7cf7e2017-03-25 07:41:39 -0300404 if (retval)
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300405 goto pdev_add_fail;
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300406
Jarod Wilson404f3e92010-07-26 20:32:03 -0300407 return 0;
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300408
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300409pdev_add_fail:
Sean Youngcc063932016-12-19 20:07:08 -0200410 platform_device_put(sir_ir_dev);
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300411pdev_alloc_fail:
Sean Youngcc063932016-12-19 20:07:08 -0200412 platform_driver_unregister(&sir_ir_driver);
Jarod Wilson4b71ca62012-06-04 13:05:24 -0300413 return retval;
Jarod Wilson404f3e92010-07-26 20:32:03 -0300414}
415
Sean Youngcc063932016-12-19 20:07:08 -0200416static void __exit sir_ir_exit(void)
Jarod Wilson404f3e92010-07-26 20:32:03 -0300417{
418 drop_hardware();
Jarod Wilson404f3e92010-07-26 20:32:03 -0300419 drop_port();
Sean Youngcc063932016-12-19 20:07:08 -0200420 platform_device_unregister(sir_ir_dev);
421 platform_driver_unregister(&sir_ir_driver);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300422}
423
Sean Youngcc063932016-12-19 20:07:08 -0200424module_init(sir_ir_init);
425module_exit(sir_ir_exit);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300426
Jarod Wilson404f3e92010-07-26 20:32:03 -0300427MODULE_DESCRIPTION("Infrared receiver driver for SIR type serial ports");
428MODULE_AUTHOR("Milan Pikula");
Jarod Wilson404f3e92010-07-26 20:32:03 -0300429MODULE_LICENSE("GPL");
430
Derek Robson5cd65222017-02-10 22:42:38 -0200431module_param(io, int, 0444);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300432MODULE_PARM_DESC(io, "I/O address base (0x3f8 or 0x2f8)");
433
Derek Robson5cd65222017-02-10 22:42:38 -0200434module_param(irq, int, 0444);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300435MODULE_PARM_DESC(irq, "Interrupt (4 or 3)");
436
Derek Robson5cd65222017-02-10 22:42:38 -0200437module_param(threshold, int, 0444);
Jarod Wilson404f3e92010-07-26 20:32:03 -0300438MODULE_PARM_DESC(threshold, "space detection threshold (3)");