2 * LIRC driver for ITE IT8712/IT8705 CIR port
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * ITE IT8705 and IT8712(not tested) and IT8720 CIR-port support for lirc based
22 * via cut and paste from lirc_sir.c (C) 2000 Milan Pikula
24 * Attention: Sendmode only tested with debugging logs
27 * reimplemented read function
28 * 2005/06/05 Andrew Calkin implemented support for Asus Digimatrix,
29 * based on work of the following member of the Outertrack Digimatrix
32 * for ITE8704/ITE8718, on my machine, the DSDT reports 8704, but the
33 * chip identifies as 18.
36 #include <linux/module.h>
37 #include <linux/sched.h>
38 #include <linux/errno.h>
39 #include <linux/signal.h>
41 #include <linux/interrupt.h>
42 #include <linux/ioport.h>
43 #include <linux/kernel.h>
44 #include <linux/time.h>
45 #include <linux/string.h>
46 #include <linux/types.h>
47 #include <linux/wait.h>
49 #include <linux/delay.h>
50 #include <linux/poll.h>
51 #include <asm/system.h>
53 #include <linux/irq.h>
54 #include <linux/fcntl.h>
56 #include <linux/timer.h>
57 #include <linux/pnp.h>
59 #include <media/lirc.h>
60 #include <media/lirc_dev.h>
62 #include "lirc_it87.h"
64 #ifdef LIRC_IT87_DIGIMATRIX
65 static int digimatrix = 1;
66 static int it87_freq = 36; /* kHz */
69 static int digimatrix;
70 static int it87_freq = 38; /* kHz */
71 static int irq = IT87_CIR_DEFAULT_IRQ;
74 static unsigned long it87_bits_in_byte_out;
75 static unsigned long it87_send_counter;
76 static unsigned char it87_RXEN_mask = IT87_CIR_RCR_RXEN;
80 #define LIRC_DRIVER_NAME "lirc_it87"
82 /* timeout for sequences in jiffies (=5/100s) */
83 /* must be longer than TIME_CONST */
84 #define IT87_TIMEOUT (HZ*5/100)
86 /* module parameters */
88 #define dprintk(fmt, args...) \
91 printk(KERN_DEBUG LIRC_DRIVER_NAME ": " \
95 static int io = IT87_CIR_DEFAULT_IOBASE;
96 /* receiver demodulator default: off */
97 static int it87_enable_demodulator;
99 static int timer_enabled;
100 static DEFINE_SPINLOCK(timer_lock);
101 static struct timer_list timerlist;
102 /* time of last signal change detected */
103 static struct timeval last_tv = {0, 0};
104 /* time of last UART data ready interrupt */
105 static struct timeval last_intr_tv = {0, 0};
106 static int last_value;
108 static DECLARE_WAIT_QUEUE_HEAD(lirc_read_queue);
110 static DEFINE_SPINLOCK(hardware_lock);
111 static DEFINE_SPINLOCK(dev_lock);
112 static bool device_open;
114 static int rx_buf[RBUF_LEN];
115 unsigned int rx_tail, rx_head;
117 static struct pnp_driver it87_pnp_driver;
119 /* SECTION: Prototypes */
121 /* Communication with user-space */
122 static int lirc_open(struct inode *inode, struct file *file);
123 static int lirc_close(struct inode *inode, struct file *file);
124 static unsigned int lirc_poll(struct file *file, poll_table *wait);
125 static ssize_t lirc_read(struct file *file, char *buf,
126 size_t count, loff_t *ppos);
127 static ssize_t lirc_write(struct file *file, const char *buf,
128 size_t n, loff_t *pos);
129 static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg);
130 static void add_read_queue(int flag, unsigned long val);
131 static int init_chrdev(void);
132 static void drop_chrdev(void);
134 static irqreturn_t it87_interrupt(int irq, void *dev_id);
135 static void send_space(unsigned long len);
136 static void send_pulse(unsigned long len);
137 static void init_send(void);
138 static void terminate_send(unsigned long len);
139 static int init_hardware(void);
140 static void drop_hardware(void);
142 static int init_port(void);
143 static void drop_port(void);
146 /* SECTION: Communication with user-space */
148 static int lirc_open(struct inode *inode, struct file *file)
150 spin_lock(&dev_lock);
152 spin_unlock(&dev_lock);
156 spin_unlock(&dev_lock);
161 static int lirc_close(struct inode *inode, struct file *file)
163 spin_lock(&dev_lock);
165 spin_unlock(&dev_lock);
170 static unsigned int lirc_poll(struct file *file, poll_table *wait)
172 poll_wait(file, &lirc_read_queue, wait);
173 if (rx_head != rx_tail)
174 return POLLIN | POLLRDNORM;
179 static ssize_t lirc_read(struct file *file, char *buf,
180 size_t count, loff_t *ppos)
186 if (file->f_flags & O_NONBLOCK && rx_head == rx_tail) {
190 retval = wait_event_interruptible(lirc_read_queue,
195 if (copy_to_user((void *) buf + n, (void *) (rx_buf + rx_head),
200 rx_head = (rx_head + 1) & (RBUF_LEN - 1);
209 static ssize_t lirc_write(struct file *file, const char *buf,
210 size_t n, loff_t *pos)
217 tx_buf = memdup_user(buf, n);
219 return PTR_ERR(tx_buf);
226 send_pulse(tx_buf[i]);
231 send_space(tx_buf[i]);
234 terminate_send(tx_buf[i - 1]);
240 static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
244 unsigned long hw_flags;
246 if (cmd == LIRC_GET_FEATURES)
247 value = LIRC_CAN_SEND_PULSE |
248 LIRC_CAN_SET_SEND_CARRIER |
250 else if (cmd == LIRC_GET_SEND_MODE)
251 value = LIRC_MODE_PULSE;
252 else if (cmd == LIRC_GET_REC_MODE)
253 value = LIRC_MODE_MODE2;
256 case LIRC_GET_FEATURES:
257 case LIRC_GET_SEND_MODE:
258 case LIRC_GET_REC_MODE:
259 retval = put_user(value, (__u32 *) arg);
262 case LIRC_SET_SEND_MODE:
263 case LIRC_SET_REC_MODE:
264 retval = get_user(value, (__u32 *) arg);
267 case LIRC_SET_SEND_CARRIER:
268 retval = get_user(value, (__u32 *) arg);
272 if (value > IT87_CIR_FREQ_MAX ||
273 value < IT87_CIR_FREQ_MIN)
278 spin_lock_irqsave(&hardware_lock, hw_flags);
279 outb(((inb(io + IT87_CIR_TCR2) & IT87_CIR_TCR2_TXMPW) |
280 (it87_freq - IT87_CIR_FREQ_MIN) << 3),
282 spin_unlock_irqrestore(&hardware_lock, hw_flags);
283 dprintk("demodulation frequency: %d kHz\n", it87_freq);
294 if (cmd == LIRC_SET_REC_MODE) {
295 if (value != LIRC_MODE_MODE2)
297 } else if (cmd == LIRC_SET_SEND_MODE) {
298 if (value != LIRC_MODE_PULSE)
304 static void add_read_queue(int flag, unsigned long val)
306 unsigned int new_rx_tail;
309 dprintk("add flag %d with val %lu\n", flag, val);
311 newval = val & PULSE_MASK;
314 * statistically, pulses are ~TIME_CONST/2 too long. we could
315 * maybe make this more exact, but this is good enough
319 if (newval > TIME_CONST / 2)
320 newval -= TIME_CONST / 2;
321 else /* should not ever happen */
325 newval += TIME_CONST / 2;
326 new_rx_tail = (rx_tail + 1) & (RBUF_LEN - 1);
327 if (new_rx_tail == rx_head) {
328 dprintk("Buffer overrun.\n");
331 rx_buf[rx_tail] = newval;
332 rx_tail = new_rx_tail;
333 wake_up_interruptible(&lirc_read_queue);
337 static const struct file_operations lirc_fops = {
338 .owner = THIS_MODULE,
342 .unlocked_ioctl = lirc_ioctl,
344 .compat_ioctl = lirc_ioctl,
347 .release = lirc_close,
348 .llseek = noop_llseek,
351 static int set_use_inc(void *data)
356 static void set_use_dec(void *data)
360 static struct lirc_driver driver = {
361 .name = LIRC_DRIVER_NAME,
367 .set_use_inc = set_use_inc,
368 .set_use_dec = set_use_dec,
371 .owner = THIS_MODULE,
375 static int init_chrdev(void)
377 driver.minor = lirc_register_driver(&driver);
379 if (driver.minor < 0) {
380 printk(KERN_ERR LIRC_DRIVER_NAME ": init_chrdev() failed.\n");
387 static void drop_chrdev(void)
389 lirc_unregister_driver(driver.minor);
393 /* SECTION: Hardware */
394 static long delta(struct timeval *tv1, struct timeval *tv2)
398 deltv = tv2->tv_sec - tv1->tv_sec;
402 deltv = deltv*1000000 + tv2->tv_usec - tv1->tv_usec;
406 static void it87_timeout(unsigned long data)
410 /* avoid interference with interrupt */
411 spin_lock_irqsave(&timer_lock, flags);
414 /* We have timed out. Disable the RX mechanism. */
416 outb((inb(io + IT87_CIR_RCR) & ~IT87_CIR_RCR_RXEN) |
417 IT87_CIR_RCR_RXACT, io + IT87_CIR_RCR);
419 outb(inb(io + IT87_CIR_RCR) | IT87_CIR_RCR_RXEN,
421 dprintk(" TIMEOUT\n");
425 outb(inb(io + IT87_CIR_TCR1) | IT87_CIR_TCR1_FIFOCLR,
430 * if last received signal was a pulse, but receiving stopped
431 * within the 9 bit frame, we need to finish this pulse and
432 * simulate a signal change to from pulse to space. Otherwise
433 * upper layers will receive two sequences next time.
437 unsigned long pulse_end;
439 /* determine 'virtual' pulse end: */
440 pulse_end = delta(&last_tv, &last_intr_tv);
441 dprintk("timeout add %d for %lu usec\n",
442 last_value, pulse_end);
443 add_read_queue(last_value, pulse_end);
445 last_tv = last_intr_tv;
448 spin_unlock_irqrestore(&timer_lock, flags);
451 static irqreturn_t it87_interrupt(int irq, void *dev_id)
454 struct timeval curr_tv;
455 static unsigned long deltv;
456 unsigned long deltintrtv;
457 unsigned long flags, hw_flags;
463 /* Bit duration in microseconds */
464 const unsigned long bit_duration = 1000000ul /
465 (115200 / IT87_CIR_BAUDRATE_DIVISOR);
468 iir = inb(io + IT87_CIR_IIR);
470 switch (iir & IT87_CIR_IIR_IID) {
473 lsr = inb(io + IT87_CIR_RSR) & (IT87_CIR_RSR_RXFTO |
475 fifo = lsr & IT87_CIR_RSR_RXFBC;
476 dprintk("iir: 0x%x fifo: 0x%x\n", iir, lsr);
478 /* avoid interference with timer */
479 spin_lock_irqsave(&timer_lock, flags);
480 spin_lock_irqsave(&hardware_lock, hw_flags);
482 static unsigned long acc_pulse;
483 static unsigned long acc_space;
486 data = inb(io + IT87_CIR_DR);
491 del_timer(&timerlist);
493 * start timer for end of
496 timerlist.expires = jiffies +
498 add_timer(&timerlist);
502 for (bit = 0; bit < 8; ++bit) {
503 if ((data >> bit) & 1) {
520 lastbit = (data >> bit) & 1;
524 } else { /* Normal Operation */
526 del_timer(&timerlist);
527 data = inb(io + IT87_CIR_DR);
529 dprintk("data=%02x\n", data);
530 do_gettimeofday(&curr_tv);
531 deltv = delta(&last_tv, &curr_tv);
532 deltintrtv = delta(&last_intr_tv, &curr_tv);
534 dprintk("t %lu , d %d\n",
535 deltintrtv, (int)data);
538 * if nothing came in last 2 cycles,
541 if (deltintrtv > TIME_CONST * 2) {
545 /* simulate signal change */
546 add_read_queue(last_value,
553 last_intr_tv.tv_usec;
558 if (data ^ last_value) {
560 * deltintrtv > 2*TIME_CONST,
561 * remember ? the other case is
564 add_read_queue(last_value,
568 if (last_tv.tv_usec >= TIME_CONST)
569 last_tv.tv_usec -= TIME_CONST;
572 last_tv.tv_usec += 1000000 -
576 last_intr_tv = curr_tv;
579 * start timer for end of
583 jiffies + IT87_TIMEOUT;
584 add_timer(&timerlist);
586 outb((inb(io + IT87_CIR_RCR) &
587 ~IT87_CIR_RCR_RXEN) |
591 outb(inb(io + IT87_CIR_RCR) |
597 spin_unlock_irqrestore(&hardware_lock, hw_flags);
598 spin_unlock_irqrestore(&timer_lock, flags);
600 return IRQ_RETVAL(IRQ_HANDLED);
604 dprintk("unknown IRQ (shouldn't happen) !!\n");
605 return IRQ_RETVAL(IRQ_NONE);
610 static void send_it87(unsigned long len, unsigned long stime,
611 unsigned char send_byte, unsigned int count_bits)
613 long count = len / stime;
615 static unsigned char byte_out;
616 unsigned long hw_flags;
618 dprintk("%s: len=%ld, sb=%d\n", __func__, len, send_byte);
620 time_left = (long)len - (long)count * (long)stime;
621 count += ((2 * time_left) / stime);
624 for (i = 0; i < count_bits; i++) {
625 byte_out = (byte_out << 1) | (send_byte & 1);
626 it87_bits_in_byte_out++;
628 if (it87_bits_in_byte_out == 8) {
629 dprintk("out=0x%x, tsr_txfbc: 0x%x\n",
631 inb(io + IT87_CIR_TSR) &
634 while ((inb(io + IT87_CIR_TSR) &
635 IT87_CIR_TSR_TXFBC) >= IT87_CIR_FIFO_SIZE)
638 spin_lock_irqsave(&hardware_lock, hw_flags);
639 outb(byte_out, io + IT87_CIR_DR);
640 spin_unlock_irqrestore(&hardware_lock, hw_flags);
642 it87_bits_in_byte_out = 0;
651 /*TODO: maybe exchange space and pulse because it8705 only modulates 0-bits */
653 static void send_space(unsigned long len)
655 send_it87(len, TIME_CONST, IT87_CIR_SPACE, IT87_CIR_BAUDRATE_DIVISOR);
658 static void send_pulse(unsigned long len)
660 send_it87(len, TIME_CONST, IT87_CIR_PULSE, IT87_CIR_BAUDRATE_DIVISOR);
664 static void init_send()
668 spin_lock_irqsave(&hardware_lock, flags);
669 /* RXEN=0: receiver disable */
671 outb(inb(io + IT87_CIR_RCR) & ~IT87_CIR_RCR_RXEN,
673 spin_unlock_irqrestore(&hardware_lock, flags);
674 it87_bits_in_byte_out = 0;
675 it87_send_counter = 0;
679 static void terminate_send(unsigned long len)
682 unsigned long last = 0;
684 last = it87_send_counter;
685 /* make sure all necessary data has been sent */
686 while (last == it87_send_counter)
688 /* wait until all data sent */
689 while ((inb(io + IT87_CIR_TSR) & IT87_CIR_TSR_TXFBC) != 0)
691 /* then re-enable receiver */
692 spin_lock_irqsave(&hardware_lock, flags);
693 it87_RXEN_mask = IT87_CIR_RCR_RXEN;
694 outb(inb(io + IT87_CIR_RCR) | IT87_CIR_RCR_RXEN,
696 spin_unlock_irqrestore(&hardware_lock, flags);
700 static int init_hardware(void)
703 unsigned char it87_rcr = 0;
705 spin_lock_irqsave(&hardware_lock, flags);
707 /* enable r/w-access to Baudrate-Register */
708 outb(IT87_CIR_IER_BR, io + IT87_CIR_IER);
709 outb(IT87_CIR_BAUDRATE_DIVISOR % 0x100, io+IT87_CIR_BDLR);
710 outb(IT87_CIR_BAUDRATE_DIVISOR / 0x100, io+IT87_CIR_BDHR);
711 /* Baudrate Register off, define IRQs: Input only */
713 outb(IT87_CIR_IER_IEC | IT87_CIR_IER_RFOIE, io + IT87_CIR_IER);
714 /* RX: HCFS=0, RXDCR = 001b (33,75..38,25 kHz), RXEN=1 */
716 outb(IT87_CIR_IER_IEC | IT87_CIR_IER_RDAIE, io + IT87_CIR_IER);
717 /* RX: HCFS=0, RXDCR = 001b (35,6..40,3 kHz), RXEN=1 */
719 it87_rcr = (IT87_CIR_RCR_RXEN & it87_RXEN_mask) | 0x1;
720 if (it87_enable_demodulator)
721 it87_rcr |= IT87_CIR_RCR_RXEND;
722 outb(it87_rcr, io + IT87_CIR_RCR);
724 /* Set FIFO depth to 1 byte, and disable TX */
725 outb(inb(io + IT87_CIR_TCR1) | 0x00,
729 * TX: it87_freq (36kHz), 'reserved' sensitivity
732 outb(((it87_freq - IT87_CIR_FREQ_MIN) << 3) | 0x00,
735 /* TX: 38kHz, 13,3us (pulse-width) */
736 outb(((it87_freq - IT87_CIR_FREQ_MIN) << 3) | 0x06,
739 spin_unlock_irqrestore(&hardware_lock, flags);
744 static void drop_hardware(void)
748 spin_lock_irqsave(&hardware_lock, flags);
750 /* receiver disable */
752 outb(0x1, io + IT87_CIR_RCR);
754 outb(0, io + IT87_CIR_IER);
756 outb(IT87_CIR_TCR1_FIFOCLR, io+IT87_CIR_TCR1);
758 outb(IT87_CIR_IER_RESET, io+IT87_CIR_IER);
760 spin_unlock_irqrestore(&hardware_lock, flags);
764 static unsigned char it87_read(unsigned char port)
766 outb(port, IT87_ADRPORT);
767 return inb(IT87_DATAPORT);
771 static void it87_write(unsigned char port, unsigned char data)
773 outb(port, IT87_ADRPORT);
774 outb(data, IT87_DATAPORT);
778 /* SECTION: Initialisation */
780 static int init_port(void)
782 unsigned long hw_flags;
785 unsigned char init_bytes[4] = IT87_INIT;
786 unsigned char it87_chipid = 0;
787 unsigned char ldn = 0;
788 unsigned int it87_io = 0;
789 unsigned int it87_irq = 0;
791 /* Enter MB PnP Mode */
792 outb(init_bytes[0], IT87_ADRPORT);
793 outb(init_bytes[1], IT87_ADRPORT);
794 outb(init_bytes[2], IT87_ADRPORT);
795 outb(init_bytes[3], IT87_ADRPORT);
798 it87_chipid = it87_read(IT87_CHIP_ID1);
799 if (it87_chipid != 0x87) {
803 it87_chipid = it87_read(IT87_CHIP_ID2);
804 if ((it87_chipid != 0x05) &&
805 (it87_chipid != 0x12) &&
806 (it87_chipid != 0x18) &&
807 (it87_chipid != 0x20)) {
808 printk(KERN_INFO LIRC_DRIVER_NAME
809 ": no IT8704/05/12/18/20 found (claimed IT87%02x), "
810 "exiting..\n", it87_chipid);
814 printk(KERN_INFO LIRC_DRIVER_NAME
815 ": found IT87%02x.\n",
818 /* get I/O-Port and IRQ */
819 if (it87_chipid == 0x12 || it87_chipid == 0x18)
820 ldn = IT8712_CIR_LDN;
822 ldn = IT8705_CIR_LDN;
823 it87_write(IT87_LDN, ldn);
825 it87_io = it87_read(IT87_CIR_BASE_MSB) * 256 +
826 it87_read(IT87_CIR_BASE_LSB);
829 io = IT87_CIR_DEFAULT_IOBASE;
830 printk(KERN_INFO LIRC_DRIVER_NAME
831 ": set default io 0x%x\n",
833 it87_write(IT87_CIR_BASE_MSB, io / 0x100);
834 it87_write(IT87_CIR_BASE_LSB, io % 0x100);
838 it87_irq = it87_read(IT87_CIR_IRQ);
839 if (digimatrix || it87_irq == 0) {
841 irq = IT87_CIR_DEFAULT_IRQ;
842 printk(KERN_INFO LIRC_DRIVER_NAME
843 ": set default irq 0x%x\n",
845 it87_write(IT87_CIR_IRQ, irq);
849 spin_lock_irqsave(&hardware_lock, hw_flags);
851 outb(IT87_CIR_IER_RESET, io+IT87_CIR_IER);
853 outb(IT87_CIR_TCR1_FIFOCLR |
854 /* IT87_CIR_TCR1_ILE | */
855 IT87_CIR_TCR1_TXRLE |
856 IT87_CIR_TCR1_TXENDF, io+IT87_CIR_TCR1);
857 spin_unlock_irqrestore(&hardware_lock, hw_flags);
859 /* get I/O port access and IRQ line */
860 if (request_region(io, 8, LIRC_DRIVER_NAME) == NULL) {
861 printk(KERN_ERR LIRC_DRIVER_NAME
862 ": i/o port 0x%.4x already in use.\n", io);
863 /* Leaving MB PnP Mode */
864 it87_write(IT87_CFGCTRL, 0x2);
868 /* activate CIR-Device */
869 it87_write(IT87_CIR_ACT, 0x1);
871 /* Leaving MB PnP Mode */
872 it87_write(IT87_CFGCTRL, 0x2);
874 retval = request_irq(irq, it87_interrupt, 0 /*IRQF_DISABLED*/,
875 LIRC_DRIVER_NAME, NULL);
877 printk(KERN_ERR LIRC_DRIVER_NAME
878 ": IRQ %d already in use.\n",
880 release_region(io, 8);
884 printk(KERN_INFO LIRC_DRIVER_NAME
885 ": I/O port 0x%.4x, IRQ %d.\n", io, irq);
887 init_timer(&timerlist);
888 timerlist.function = it87_timeout;
889 timerlist.data = 0xabadcafe;
895 static void drop_port(void)
898 unsigned char init_bytes[4] = IT87_INIT;
900 /* Enter MB PnP Mode */
901 outb(init_bytes[0], IT87_ADRPORT);
902 outb(init_bytes[1], IT87_ADRPORT);
903 outb(init_bytes[2], IT87_ADRPORT);
904 outb(init_bytes[3], IT87_ADRPORT);
906 /* deactivate CIR-Device */
907 it87_write(IT87_CIR_ACT, 0x0);
909 /* Leaving MB PnP Mode */
910 it87_write(IT87_CFGCTRL, 0x2);
913 del_timer_sync(&timerlist);
915 release_region(io, 8);
919 static int init_lirc_it87(void)
923 init_waitqueue_head(&lirc_read_queue);
924 retval = init_port();
928 printk(KERN_INFO LIRC_DRIVER_NAME ": Installed.\n");
932 static int it87_probe(struct pnp_dev *pnp_dev,
933 const struct pnp_device_id *dev_id)
937 driver.dev = &pnp_dev->dev;
939 retval = init_chrdev();
943 retval = init_lirc_it87();
945 goto init_lirc_it87_failed;
949 init_lirc_it87_failed:
955 static int __init lirc_it87_init(void)
957 return pnp_register_driver(&it87_pnp_driver);
961 static void __exit lirc_it87_exit(void)
966 pnp_unregister_driver(&it87_pnp_driver);
967 printk(KERN_INFO LIRC_DRIVER_NAME ": Uninstalled.\n");
970 /* SECTION: PNP for ITE8704/13/18 */
972 static const struct pnp_device_id pnp_dev_table[] = {
978 MODULE_DEVICE_TABLE(pnp, pnp_dev_table);
980 static struct pnp_driver it87_pnp_driver = {
981 .name = LIRC_DRIVER_NAME,
982 .id_table = pnp_dev_table,
986 module_init(lirc_it87_init);
987 module_exit(lirc_it87_exit);
989 MODULE_DESCRIPTION("LIRC driver for ITE IT8704/05/12/18/20 CIR port");
990 MODULE_AUTHOR("Hans-Gunter Lutke Uphues");
991 MODULE_LICENSE("GPL");
993 module_param(io, int, S_IRUGO);
994 MODULE_PARM_DESC(io, "I/O base address (default: 0x310)");
996 module_param(irq, int, S_IRUGO);
997 #ifdef LIRC_IT87_DIGIMATRIX
998 MODULE_PARM_DESC(irq, "Interrupt (1,3-12) (default: 9)");
1000 MODULE_PARM_DESC(irq, "Interrupt (1,3-12) (default: 7)");
1003 module_param(it87_enable_demodulator, bool, S_IRUGO);
1004 MODULE_PARM_DESC(it87_enable_demodulator,
1005 "Receiver demodulator enable/disable (1/0), default: 0");
1007 module_param(debug, bool, S_IRUGO | S_IWUSR);
1008 MODULE_PARM_DESC(debug, "Enable debugging messages");
1010 module_param(digimatrix, bool, S_IRUGO | S_IWUSR);
1011 #ifdef LIRC_IT87_DIGIMATRIX
1012 MODULE_PARM_DESC(digimatrix,
1013 "Asus Digimatrix it87 compat. enable/disable (1/0), default: 1");
1015 MODULE_PARM_DESC(digimatrix,
1016 "Asus Digimatrix it87 compat. enable/disable (1/0), default: 0");
1020 module_param(it87_freq, int, S_IRUGO);
1021 #ifdef LIRC_IT87_DIGIMATRIX
1022 MODULE_PARM_DESC(it87_freq,
1023 "Carrier demodulator frequency (kHz), (default: 36)");
1025 MODULE_PARM_DESC(it87_freq,
1026 "Carrier demodulator frequency (kHz), (default: 38)");