Linux 3.11-rc3
[cris-mirror.git] / drivers / media / rc / winbond-cir.c
blob87af2d3ba601228960b52d4ff87eac51660d6709
1 /*
2 * winbond-cir.c - Driver for the Consumer IR functionality of Winbond
3 * SuperI/O chips.
5 * Currently supports the Winbond WPCD376i chip (PNP id WEC1022), but
6 * could probably support others (Winbond WEC102X, NatSemi, etc)
7 * with minor modifications.
9 * Original Author: David Härdeman <david@hardeman.nu>
10 * Copyright (C) 2012 Sean Young <sean@mess.org>
11 * Copyright (C) 2009 - 2011 David Härdeman <david@hardeman.nu>
13 * Dedicated to my daughter Matilda, without whose loving attention this
14 * driver would have been finished in half the time and with a fraction
15 * of the bugs.
17 * Written using:
18 * o Winbond WPCD376I datasheet helpfully provided by Jesse Barnes at Intel
19 * o NatSemi PC87338/PC97338 datasheet (for the serial port stuff)
20 * o DSDT dumps
22 * Supported features:
23 * o IR Receive
24 * o IR Transmit
25 * o Wake-On-CIR functionality
26 * o Carrier detection
28 * This program is free software; you can redistribute it and/or modify
29 * it under the terms of the GNU General Public License as published by
30 * the Free Software Foundation; either version 2 of the License, or
31 * (at your option) any later version.
33 * This program is distributed in the hope that it will be useful,
34 * but WITHOUT ANY WARRANTY; without even the implied warranty of
35 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36 * GNU General Public License for more details.
38 * You should have received a copy of the GNU General Public License
39 * along with this program; if not, write to the Free Software
40 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
43 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
45 #include <linux/module.h>
46 #include <linux/pnp.h>
47 #include <linux/interrupt.h>
48 #include <linux/timer.h>
49 #include <linux/leds.h>
50 #include <linux/spinlock.h>
51 #include <linux/pci_ids.h>
52 #include <linux/io.h>
53 #include <linux/bitrev.h>
54 #include <linux/slab.h>
55 #include <linux/wait.h>
56 #include <linux/sched.h>
57 #include <media/rc-core.h>
59 #define DRVNAME "winbond-cir"
61 /* CEIR Wake-Up Registers, relative to data->wbase */
62 #define WBCIR_REG_WCEIR_CTL 0x03 /* CEIR Receiver Control */
63 #define WBCIR_REG_WCEIR_STS 0x04 /* CEIR Receiver Status */
64 #define WBCIR_REG_WCEIR_EV_EN 0x05 /* CEIR Receiver Event Enable */
65 #define WBCIR_REG_WCEIR_CNTL 0x06 /* CEIR Receiver Counter Low */
66 #define WBCIR_REG_WCEIR_CNTH 0x07 /* CEIR Receiver Counter High */
67 #define WBCIR_REG_WCEIR_INDEX 0x08 /* CEIR Receiver Index */
68 #define WBCIR_REG_WCEIR_DATA 0x09 /* CEIR Receiver Data */
69 #define WBCIR_REG_WCEIR_CSL 0x0A /* CEIR Re. Compare Strlen */
70 #define WBCIR_REG_WCEIR_CFG1 0x0B /* CEIR Re. Configuration 1 */
71 #define WBCIR_REG_WCEIR_CFG2 0x0C /* CEIR Re. Configuration 2 */
73 /* CEIR Enhanced Functionality Registers, relative to data->ebase */
74 #define WBCIR_REG_ECEIR_CTS 0x00 /* Enhanced IR Control Status */
75 #define WBCIR_REG_ECEIR_CCTL 0x01 /* Infrared Counter Control */
76 #define WBCIR_REG_ECEIR_CNT_LO 0x02 /* Infrared Counter LSB */
77 #define WBCIR_REG_ECEIR_CNT_HI 0x03 /* Infrared Counter MSB */
78 #define WBCIR_REG_ECEIR_IREM 0x04 /* Infrared Emitter Status */
80 /* SP3 Banked Registers, relative to data->sbase */
81 #define WBCIR_REG_SP3_BSR 0x03 /* Bank Select, all banks */
82 /* Bank 0 */
83 #define WBCIR_REG_SP3_RXDATA 0x00 /* FIFO RX data (r) */
84 #define WBCIR_REG_SP3_TXDATA 0x00 /* FIFO TX data (w) */
85 #define WBCIR_REG_SP3_IER 0x01 /* Interrupt Enable */
86 #define WBCIR_REG_SP3_EIR 0x02 /* Event Identification (r) */
87 #define WBCIR_REG_SP3_FCR 0x02 /* FIFO Control (w) */
88 #define WBCIR_REG_SP3_MCR 0x04 /* Mode Control */
89 #define WBCIR_REG_SP3_LSR 0x05 /* Link Status */
90 #define WBCIR_REG_SP3_MSR 0x06 /* Modem Status */
91 #define WBCIR_REG_SP3_ASCR 0x07 /* Aux Status and Control */
92 /* Bank 2 */
93 #define WBCIR_REG_SP3_BGDL 0x00 /* Baud Divisor LSB */
94 #define WBCIR_REG_SP3_BGDH 0x01 /* Baud Divisor MSB */
95 #define WBCIR_REG_SP3_EXCR1 0x02 /* Extended Control 1 */
96 #define WBCIR_REG_SP3_EXCR2 0x04 /* Extended Control 2 */
97 #define WBCIR_REG_SP3_TXFLV 0x06 /* TX FIFO Level */
98 #define WBCIR_REG_SP3_RXFLV 0x07 /* RX FIFO Level */
99 /* Bank 3 */
100 #define WBCIR_REG_SP3_MRID 0x00 /* Module Identification */
101 #define WBCIR_REG_SP3_SH_LCR 0x01 /* LCR Shadow */
102 #define WBCIR_REG_SP3_SH_FCR 0x02 /* FCR Shadow */
103 /* Bank 4 */
104 #define WBCIR_REG_SP3_IRCR1 0x02 /* Infrared Control 1 */
105 /* Bank 5 */
106 #define WBCIR_REG_SP3_IRCR2 0x04 /* Infrared Control 2 */
107 /* Bank 6 */
108 #define WBCIR_REG_SP3_IRCR3 0x00 /* Infrared Control 3 */
109 #define WBCIR_REG_SP3_SIR_PW 0x02 /* SIR Pulse Width */
110 /* Bank 7 */
111 #define WBCIR_REG_SP3_IRRXDC 0x00 /* IR RX Demod Control */
112 #define WBCIR_REG_SP3_IRTXMC 0x01 /* IR TX Mod Control */
113 #define WBCIR_REG_SP3_RCCFG 0x02 /* CEIR Config */
114 #define WBCIR_REG_SP3_IRCFG1 0x04 /* Infrared Config 1 */
115 #define WBCIR_REG_SP3_IRCFG4 0x07 /* Infrared Config 4 */
118 * Magic values follow
121 /* No interrupts for WBCIR_REG_SP3_IER and WBCIR_REG_SP3_EIR */
122 #define WBCIR_IRQ_NONE 0x00
123 /* RX data bit for WBCIR_REG_SP3_IER and WBCIR_REG_SP3_EIR */
124 #define WBCIR_IRQ_RX 0x01
125 /* TX data low bit for WBCIR_REG_SP3_IER and WBCIR_REG_SP3_EIR */
126 #define WBCIR_IRQ_TX_LOW 0x02
127 /* Over/Under-flow bit for WBCIR_REG_SP3_IER and WBCIR_REG_SP3_EIR */
128 #define WBCIR_IRQ_ERR 0x04
129 /* TX data empty bit for WBCEIR_REG_SP3_IER and WBCIR_REG_SP3_EIR */
130 #define WBCIR_IRQ_TX_EMPTY 0x20
131 /* Led enable/disable bit for WBCIR_REG_ECEIR_CTS */
132 #define WBCIR_LED_ENABLE 0x80
133 /* RX data available bit for WBCIR_REG_SP3_LSR */
134 #define WBCIR_RX_AVAIL 0x01
135 /* RX data overrun error bit for WBCIR_REG_SP3_LSR */
136 #define WBCIR_RX_OVERRUN 0x02
137 /* TX End-Of-Transmission bit for WBCIR_REG_SP3_ASCR */
138 #define WBCIR_TX_EOT 0x04
139 /* RX disable bit for WBCIR_REG_SP3_ASCR */
140 #define WBCIR_RX_DISABLE 0x20
141 /* TX data underrun error bit for WBCIR_REG_SP3_ASCR */
142 #define WBCIR_TX_UNDERRUN 0x40
143 /* Extended mode enable bit for WBCIR_REG_SP3_EXCR1 */
144 #define WBCIR_EXT_ENABLE 0x01
145 /* Select compare register in WBCIR_REG_WCEIR_INDEX (bits 5 & 6) */
146 #define WBCIR_REGSEL_COMPARE 0x10
147 /* Select mask register in WBCIR_REG_WCEIR_INDEX (bits 5 & 6) */
148 #define WBCIR_REGSEL_MASK 0x20
149 /* Starting address of selected register in WBCIR_REG_WCEIR_INDEX */
150 #define WBCIR_REG_ADDR0 0x00
151 /* Enable carrier counter */
152 #define WBCIR_CNTR_EN 0x01
153 /* Reset carrier counter */
154 #define WBCIR_CNTR_R 0x02
155 /* Invert TX */
156 #define WBCIR_IRTX_INV 0x04
157 /* Receiver oversampling */
158 #define WBCIR_RX_T_OV 0x40
160 /* Valid banks for the SP3 UART */
161 enum wbcir_bank {
162 WBCIR_BANK_0 = 0x00,
163 WBCIR_BANK_1 = 0x80,
164 WBCIR_BANK_2 = 0xE0,
165 WBCIR_BANK_3 = 0xE4,
166 WBCIR_BANK_4 = 0xE8,
167 WBCIR_BANK_5 = 0xEC,
168 WBCIR_BANK_6 = 0xF0,
169 WBCIR_BANK_7 = 0xF4,
172 /* Supported power-on IR Protocols */
173 enum wbcir_protocol {
174 IR_PROTOCOL_RC5 = 0x0,
175 IR_PROTOCOL_NEC = 0x1,
176 IR_PROTOCOL_RC6 = 0x2,
179 /* Possible states for IR reception */
180 enum wbcir_rxstate {
181 WBCIR_RXSTATE_INACTIVE = 0,
182 WBCIR_RXSTATE_ACTIVE,
183 WBCIR_RXSTATE_ERROR
186 /* Possible states for IR transmission */
187 enum wbcir_txstate {
188 WBCIR_TXSTATE_INACTIVE = 0,
189 WBCIR_TXSTATE_ACTIVE,
190 WBCIR_TXSTATE_ERROR
193 /* Misc */
194 #define WBCIR_NAME "Winbond CIR"
195 #define WBCIR_ID_FAMILY 0xF1 /* Family ID for the WPCD376I */
196 #define WBCIR_ID_CHIP 0x04 /* Chip ID for the WPCD376I */
197 #define INVALID_SCANCODE 0x7FFFFFFF /* Invalid with all protos */
198 #define WAKEUP_IOMEM_LEN 0x10 /* Wake-Up I/O Reg Len */
199 #define EHFUNC_IOMEM_LEN 0x10 /* Enhanced Func I/O Reg Len */
200 #define SP_IOMEM_LEN 0x08 /* Serial Port 3 (IR) Reg Len */
202 /* Per-device data */
203 struct wbcir_data {
204 spinlock_t spinlock;
205 struct rc_dev *dev;
206 struct led_classdev led;
208 unsigned long wbase; /* Wake-Up Baseaddr */
209 unsigned long ebase; /* Enhanced Func. Baseaddr */
210 unsigned long sbase; /* Serial Port Baseaddr */
211 unsigned int irq; /* Serial Port IRQ */
212 u8 irqmask;
214 /* RX state */
215 enum wbcir_rxstate rxstate;
216 struct led_trigger *rxtrigger;
217 int carrier_report_enabled;
218 u32 pulse_duration;
220 /* TX state */
221 enum wbcir_txstate txstate;
222 struct led_trigger *txtrigger;
223 u32 txlen;
224 u32 txoff;
225 u32 *txbuf;
226 u8 txmask;
227 u32 txcarrier;
230 static enum wbcir_protocol protocol = IR_PROTOCOL_RC6;
231 module_param(protocol, uint, 0444);
232 MODULE_PARM_DESC(protocol, "IR protocol to use for the power-on command "
233 "(0 = RC5, 1 = NEC, 2 = RC6A, default)");
235 static bool invert; /* default = 0 */
236 module_param(invert, bool, 0444);
237 MODULE_PARM_DESC(invert, "Invert the signal from the IR receiver");
239 static bool txandrx; /* default = 0 */
240 module_param(txandrx, bool, 0444);
241 MODULE_PARM_DESC(txandrx, "Allow simultaneous TX and RX");
243 static unsigned int wake_sc = 0x800F040C;
244 module_param(wake_sc, uint, 0644);
245 MODULE_PARM_DESC(wake_sc, "Scancode of the power-on IR command");
247 static unsigned int wake_rc6mode = 6;
248 module_param(wake_rc6mode, uint, 0644);
249 MODULE_PARM_DESC(wake_rc6mode, "RC6 mode for the power-on command "
250 "(0 = 0, 6 = 6A, default)");
254 /*****************************************************************************
256 * UTILITY FUNCTIONS
258 *****************************************************************************/
260 /* Caller needs to hold wbcir_lock */
261 static void
262 wbcir_set_bits(unsigned long addr, u8 bits, u8 mask)
264 u8 val;
266 val = inb(addr);
267 val = ((val & ~mask) | (bits & mask));
268 outb(val, addr);
271 /* Selects the register bank for the serial port */
272 static inline void
273 wbcir_select_bank(struct wbcir_data *data, enum wbcir_bank bank)
275 outb(bank, data->sbase + WBCIR_REG_SP3_BSR);
278 static inline void
279 wbcir_set_irqmask(struct wbcir_data *data, u8 irqmask)
281 if (data->irqmask == irqmask)
282 return;
284 wbcir_select_bank(data, WBCIR_BANK_0);
285 outb(irqmask, data->sbase + WBCIR_REG_SP3_IER);
286 data->irqmask = irqmask;
289 static enum led_brightness
290 wbcir_led_brightness_get(struct led_classdev *led_cdev)
292 struct wbcir_data *data = container_of(led_cdev,
293 struct wbcir_data,
294 led);
296 if (inb(data->ebase + WBCIR_REG_ECEIR_CTS) & WBCIR_LED_ENABLE)
297 return LED_FULL;
298 else
299 return LED_OFF;
302 static void
303 wbcir_led_brightness_set(struct led_classdev *led_cdev,
304 enum led_brightness brightness)
306 struct wbcir_data *data = container_of(led_cdev,
307 struct wbcir_data,
308 led);
310 wbcir_set_bits(data->ebase + WBCIR_REG_ECEIR_CTS,
311 brightness == LED_OFF ? 0x00 : WBCIR_LED_ENABLE,
312 WBCIR_LED_ENABLE);
315 /* Manchester encodes bits to RC6 message cells (see wbcir_shutdown) */
316 static u8
317 wbcir_to_rc6cells(u8 val)
319 u8 coded = 0x00;
320 int i;
322 val &= 0x0F;
323 for (i = 0; i < 4; i++) {
324 if (val & 0x01)
325 coded |= 0x02 << (i * 2);
326 else
327 coded |= 0x01 << (i * 2);
328 val >>= 1;
331 return coded;
334 /*****************************************************************************
336 * INTERRUPT FUNCTIONS
338 *****************************************************************************/
340 static void
341 wbcir_carrier_report(struct wbcir_data *data)
343 unsigned counter = inb(data->ebase + WBCIR_REG_ECEIR_CNT_LO) |
344 inb(data->ebase + WBCIR_REG_ECEIR_CNT_HI) << 8;
346 if (counter > 0 && counter < 0xffff) {
347 DEFINE_IR_RAW_EVENT(ev);
349 ev.carrier_report = 1;
350 ev.carrier = DIV_ROUND_CLOSEST(counter * 1000000u,
351 data->pulse_duration);
353 ir_raw_event_store(data->dev, &ev);
356 /* reset and restart the counter */
357 data->pulse_duration = 0;
358 wbcir_set_bits(data->ebase + WBCIR_REG_ECEIR_CCTL, WBCIR_CNTR_R,
359 WBCIR_CNTR_EN | WBCIR_CNTR_R);
360 wbcir_set_bits(data->ebase + WBCIR_REG_ECEIR_CCTL, WBCIR_CNTR_EN,
361 WBCIR_CNTR_EN | WBCIR_CNTR_R);
364 static void
365 wbcir_idle_rx(struct rc_dev *dev, bool idle)
367 struct wbcir_data *data = dev->priv;
369 if (!idle && data->rxstate == WBCIR_RXSTATE_INACTIVE) {
370 data->rxstate = WBCIR_RXSTATE_ACTIVE;
371 led_trigger_event(data->rxtrigger, LED_FULL);
374 if (idle && data->rxstate != WBCIR_RXSTATE_INACTIVE) {
375 data->rxstate = WBCIR_RXSTATE_INACTIVE;
376 led_trigger_event(data->rxtrigger, LED_OFF);
378 if (data->carrier_report_enabled)
379 wbcir_carrier_report(data);
381 /* Tell hardware to go idle by setting RXINACTIVE */
382 outb(WBCIR_RX_DISABLE, data->sbase + WBCIR_REG_SP3_ASCR);
386 static void
387 wbcir_irq_rx(struct wbcir_data *data, struct pnp_dev *device)
389 u8 irdata;
390 DEFINE_IR_RAW_EVENT(rawir);
391 unsigned duration;
393 /* Since RXHDLEV is set, at least 8 bytes are in the FIFO */
394 while (inb(data->sbase + WBCIR_REG_SP3_LSR) & WBCIR_RX_AVAIL) {
395 irdata = inb(data->sbase + WBCIR_REG_SP3_RXDATA);
396 if (data->rxstate == WBCIR_RXSTATE_ERROR)
397 continue;
399 duration = ((irdata & 0x7F) + 1) *
400 (data->carrier_report_enabled ? 2 : 10);
401 rawir.pulse = irdata & 0x80 ? false : true;
402 rawir.duration = US_TO_NS(duration);
404 if (rawir.pulse)
405 data->pulse_duration += duration;
407 ir_raw_event_store_with_filter(data->dev, &rawir);
410 ir_raw_event_handle(data->dev);
413 static void
414 wbcir_irq_tx(struct wbcir_data *data)
416 unsigned int space;
417 unsigned int used;
418 u8 bytes[16];
419 u8 byte;
421 if (!data->txbuf)
422 return;
424 switch (data->txstate) {
425 case WBCIR_TXSTATE_INACTIVE:
426 /* TX FIFO empty */
427 space = 16;
428 led_trigger_event(data->txtrigger, LED_FULL);
429 break;
430 case WBCIR_TXSTATE_ACTIVE:
431 /* TX FIFO low (3 bytes or less) */
432 space = 13;
433 break;
434 case WBCIR_TXSTATE_ERROR:
435 space = 0;
436 break;
437 default:
438 return;
442 * TX data is run-length coded in bytes: YXXXXXXX
443 * Y = space (1) or pulse (0)
444 * X = duration, encoded as (X + 1) * 10us (i.e 10 to 1280 us)
446 for (used = 0; used < space && data->txoff != data->txlen; used++) {
447 if (data->txbuf[data->txoff] == 0) {
448 data->txoff++;
449 continue;
451 byte = min((u32)0x80, data->txbuf[data->txoff]);
452 data->txbuf[data->txoff] -= byte;
453 byte--;
454 byte |= (data->txoff % 2 ? 0x80 : 0x00); /* pulse/space */
455 bytes[used] = byte;
458 while (data->txbuf[data->txoff] == 0 && data->txoff != data->txlen)
459 data->txoff++;
461 if (used == 0) {
462 /* Finished */
463 if (data->txstate == WBCIR_TXSTATE_ERROR)
464 /* Clear TX underrun bit */
465 outb(WBCIR_TX_UNDERRUN, data->sbase + WBCIR_REG_SP3_ASCR);
466 wbcir_set_irqmask(data, WBCIR_IRQ_RX | WBCIR_IRQ_ERR);
467 led_trigger_event(data->txtrigger, LED_OFF);
468 kfree(data->txbuf);
469 data->txbuf = NULL;
470 data->txstate = WBCIR_TXSTATE_INACTIVE;
471 } else if (data->txoff == data->txlen) {
472 /* At the end of transmission, tell the hw before last byte */
473 outsb(data->sbase + WBCIR_REG_SP3_TXDATA, bytes, used - 1);
474 outb(WBCIR_TX_EOT, data->sbase + WBCIR_REG_SP3_ASCR);
475 outb(bytes[used - 1], data->sbase + WBCIR_REG_SP3_TXDATA);
476 wbcir_set_irqmask(data, WBCIR_IRQ_RX | WBCIR_IRQ_ERR |
477 WBCIR_IRQ_TX_EMPTY);
478 } else {
479 /* More data to follow... */
480 outsb(data->sbase + WBCIR_REG_SP3_RXDATA, bytes, used);
481 if (data->txstate == WBCIR_TXSTATE_INACTIVE) {
482 wbcir_set_irqmask(data, WBCIR_IRQ_RX | WBCIR_IRQ_ERR |
483 WBCIR_IRQ_TX_LOW);
484 data->txstate = WBCIR_TXSTATE_ACTIVE;
489 static irqreturn_t
490 wbcir_irq_handler(int irqno, void *cookie)
492 struct pnp_dev *device = cookie;
493 struct wbcir_data *data = pnp_get_drvdata(device);
494 unsigned long flags;
495 u8 status;
497 spin_lock_irqsave(&data->spinlock, flags);
498 wbcir_select_bank(data, WBCIR_BANK_0);
499 status = inb(data->sbase + WBCIR_REG_SP3_EIR);
500 status &= data->irqmask;
502 if (!status) {
503 spin_unlock_irqrestore(&data->spinlock, flags);
504 return IRQ_NONE;
507 if (status & WBCIR_IRQ_ERR) {
508 /* RX overflow? (read clears bit) */
509 if (inb(data->sbase + WBCIR_REG_SP3_LSR) & WBCIR_RX_OVERRUN) {
510 data->rxstate = WBCIR_RXSTATE_ERROR;
511 ir_raw_event_reset(data->dev);
514 /* TX underflow? */
515 if (inb(data->sbase + WBCIR_REG_SP3_ASCR) & WBCIR_TX_UNDERRUN)
516 data->txstate = WBCIR_TXSTATE_ERROR;
519 if (status & WBCIR_IRQ_RX)
520 wbcir_irq_rx(data, device);
522 if (status & (WBCIR_IRQ_TX_LOW | WBCIR_IRQ_TX_EMPTY))
523 wbcir_irq_tx(data);
525 spin_unlock_irqrestore(&data->spinlock, flags);
526 return IRQ_HANDLED;
529 /*****************************************************************************
531 * RC-CORE INTERFACE FUNCTIONS
533 *****************************************************************************/
535 static int
536 wbcir_set_carrier_report(struct rc_dev *dev, int enable)
538 struct wbcir_data *data = dev->priv;
539 unsigned long flags;
541 spin_lock_irqsave(&data->spinlock, flags);
543 if (data->carrier_report_enabled == enable) {
544 spin_unlock_irqrestore(&data->spinlock, flags);
545 return 0;
548 data->pulse_duration = 0;
549 wbcir_set_bits(data->ebase + WBCIR_REG_ECEIR_CCTL, WBCIR_CNTR_R,
550 WBCIR_CNTR_EN | WBCIR_CNTR_R);
552 if (enable && data->dev->idle)
553 wbcir_set_bits(data->ebase + WBCIR_REG_ECEIR_CCTL,
554 WBCIR_CNTR_EN, WBCIR_CNTR_EN | WBCIR_CNTR_R);
556 /* Set a higher sampling resolution if carrier reports are enabled */
557 wbcir_select_bank(data, WBCIR_BANK_2);
558 data->dev->rx_resolution = US_TO_NS(enable ? 2 : 10);
559 outb(enable ? 0x03 : 0x0f, data->sbase + WBCIR_REG_SP3_BGDL);
560 outb(0x00, data->sbase + WBCIR_REG_SP3_BGDH);
562 /* Enable oversampling if carrier reports are enabled */
563 wbcir_select_bank(data, WBCIR_BANK_7);
564 wbcir_set_bits(data->sbase + WBCIR_REG_SP3_RCCFG,
565 enable ? WBCIR_RX_T_OV : 0, WBCIR_RX_T_OV);
567 data->carrier_report_enabled = enable;
568 spin_unlock_irqrestore(&data->spinlock, flags);
570 return 0;
573 static int
574 wbcir_txcarrier(struct rc_dev *dev, u32 carrier)
576 struct wbcir_data *data = dev->priv;
577 unsigned long flags;
578 u8 val;
579 u32 freq;
581 freq = DIV_ROUND_CLOSEST(carrier, 1000);
582 if (freq < 30 || freq > 60)
583 return -EINVAL;
585 switch (freq) {
586 case 58:
587 case 59:
588 case 60:
589 val = freq - 58;
590 freq *= 1000;
591 break;
592 case 57:
593 val = freq - 27;
594 freq = 56900;
595 break;
596 default:
597 val = freq - 27;
598 freq *= 1000;
599 break;
602 spin_lock_irqsave(&data->spinlock, flags);
603 if (data->txstate != WBCIR_TXSTATE_INACTIVE) {
604 spin_unlock_irqrestore(&data->spinlock, flags);
605 return -EBUSY;
608 if (data->txcarrier != freq) {
609 wbcir_select_bank(data, WBCIR_BANK_7);
610 wbcir_set_bits(data->sbase + WBCIR_REG_SP3_IRTXMC, val, 0x1F);
611 data->txcarrier = freq;
614 spin_unlock_irqrestore(&data->spinlock, flags);
615 return 0;
618 static int
619 wbcir_txmask(struct rc_dev *dev, u32 mask)
621 struct wbcir_data *data = dev->priv;
622 unsigned long flags;
623 u8 val;
625 /* Four outputs, only one output can be enabled at a time */
626 switch (mask) {
627 case 0x1:
628 val = 0x0;
629 break;
630 case 0x2:
631 val = 0x1;
632 break;
633 case 0x4:
634 val = 0x2;
635 break;
636 case 0x8:
637 val = 0x3;
638 break;
639 default:
640 return -EINVAL;
643 spin_lock_irqsave(&data->spinlock, flags);
644 if (data->txstate != WBCIR_TXSTATE_INACTIVE) {
645 spin_unlock_irqrestore(&data->spinlock, flags);
646 return -EBUSY;
649 if (data->txmask != mask) {
650 wbcir_set_bits(data->ebase + WBCIR_REG_ECEIR_CTS, val, 0x0c);
651 data->txmask = mask;
654 spin_unlock_irqrestore(&data->spinlock, flags);
655 return 0;
658 static int
659 wbcir_tx(struct rc_dev *dev, unsigned *b, unsigned count)
661 struct wbcir_data *data = dev->priv;
662 unsigned *buf;
663 unsigned i;
664 unsigned long flags;
666 buf = kmalloc(count * sizeof(*b), GFP_KERNEL);
667 if (!buf)
668 return -ENOMEM;
670 /* Convert values to multiples of 10us */
671 for (i = 0; i < count; i++)
672 buf[i] = DIV_ROUND_CLOSEST(b[i], 10);
674 /* Not sure if this is possible, but better safe than sorry */
675 spin_lock_irqsave(&data->spinlock, flags);
676 if (data->txstate != WBCIR_TXSTATE_INACTIVE) {
677 spin_unlock_irqrestore(&data->spinlock, flags);
678 kfree(buf);
679 return -EBUSY;
682 /* Fill the TX fifo once, the irq handler will do the rest */
683 data->txbuf = buf;
684 data->txlen = count;
685 data->txoff = 0;
686 wbcir_irq_tx(data);
688 /* We're done */
689 spin_unlock_irqrestore(&data->spinlock, flags);
690 return count;
693 /*****************************************************************************
695 * SETUP/INIT/SUSPEND/RESUME FUNCTIONS
697 *****************************************************************************/
699 static void
700 wbcir_shutdown(struct pnp_dev *device)
702 struct device *dev = &device->dev;
703 struct wbcir_data *data = pnp_get_drvdata(device);
704 bool do_wake = true;
705 u8 match[11];
706 u8 mask[11];
707 u8 rc6_csl = 0;
708 int i;
710 memset(match, 0, sizeof(match));
711 memset(mask, 0, sizeof(mask));
713 if (wake_sc == INVALID_SCANCODE || !device_may_wakeup(dev)) {
714 do_wake = false;
715 goto finish;
718 switch (protocol) {
719 case IR_PROTOCOL_RC5:
720 if (wake_sc > 0xFFF) {
721 do_wake = false;
722 dev_err(dev, "RC5 - Invalid wake scancode\n");
723 break;
726 /* Mask = 13 bits, ex toggle */
727 mask[0] = 0xFF;
728 mask[1] = 0x17;
730 match[0] = (wake_sc & 0x003F); /* 6 command bits */
731 match[0] |= (wake_sc & 0x0180) >> 1; /* 2 address bits */
732 match[1] = (wake_sc & 0x0E00) >> 9; /* 3 address bits */
733 if (!(wake_sc & 0x0040)) /* 2nd start bit */
734 match[1] |= 0x10;
736 break;
738 case IR_PROTOCOL_NEC:
739 if (wake_sc > 0xFFFFFF) {
740 do_wake = false;
741 dev_err(dev, "NEC - Invalid wake scancode\n");
742 break;
745 mask[0] = mask[1] = mask[2] = mask[3] = 0xFF;
747 match[1] = bitrev8((wake_sc & 0xFF));
748 match[0] = ~match[1];
750 match[3] = bitrev8((wake_sc & 0xFF00) >> 8);
751 if (wake_sc > 0xFFFF)
752 match[2] = bitrev8((wake_sc & 0xFF0000) >> 16);
753 else
754 match[2] = ~match[3];
756 break;
758 case IR_PROTOCOL_RC6:
760 if (wake_rc6mode == 0) {
761 if (wake_sc > 0xFFFF) {
762 do_wake = false;
763 dev_err(dev, "RC6 - Invalid wake scancode\n");
764 break;
767 /* Command */
768 match[0] = wbcir_to_rc6cells(wake_sc >> 0);
769 mask[0] = 0xFF;
770 match[1] = wbcir_to_rc6cells(wake_sc >> 4);
771 mask[1] = 0xFF;
773 /* Address */
774 match[2] = wbcir_to_rc6cells(wake_sc >> 8);
775 mask[2] = 0xFF;
776 match[3] = wbcir_to_rc6cells(wake_sc >> 12);
777 mask[3] = 0xFF;
779 /* Header */
780 match[4] = 0x50; /* mode1 = mode0 = 0, ignore toggle */
781 mask[4] = 0xF0;
782 match[5] = 0x09; /* start bit = 1, mode2 = 0 */
783 mask[5] = 0x0F;
785 rc6_csl = 44;
787 } else if (wake_rc6mode == 6) {
788 i = 0;
790 /* Command */
791 match[i] = wbcir_to_rc6cells(wake_sc >> 0);
792 mask[i++] = 0xFF;
793 match[i] = wbcir_to_rc6cells(wake_sc >> 4);
794 mask[i++] = 0xFF;
796 /* Address + Toggle */
797 match[i] = wbcir_to_rc6cells(wake_sc >> 8);
798 mask[i++] = 0xFF;
799 match[i] = wbcir_to_rc6cells(wake_sc >> 12);
800 mask[i++] = 0x3F;
802 /* Customer bits 7 - 0 */
803 match[i] = wbcir_to_rc6cells(wake_sc >> 16);
804 mask[i++] = 0xFF;
805 match[i] = wbcir_to_rc6cells(wake_sc >> 20);
806 mask[i++] = 0xFF;
808 if (wake_sc & 0x80000000) {
809 /* Customer range bit and bits 15 - 8 */
810 match[i] = wbcir_to_rc6cells(wake_sc >> 24);
811 mask[i++] = 0xFF;
812 match[i] = wbcir_to_rc6cells(wake_sc >> 28);
813 mask[i++] = 0xFF;
814 rc6_csl = 76;
815 } else if (wake_sc <= 0x007FFFFF) {
816 rc6_csl = 60;
817 } else {
818 do_wake = false;
819 dev_err(dev, "RC6 - Invalid wake scancode\n");
820 break;
823 /* Header */
824 match[i] = 0x93; /* mode1 = mode0 = 1, submode = 0 */
825 mask[i++] = 0xFF;
826 match[i] = 0x0A; /* start bit = 1, mode2 = 1 */
827 mask[i++] = 0x0F;
829 } else {
830 do_wake = false;
831 dev_err(dev, "RC6 - Invalid wake mode\n");
834 break;
836 default:
837 do_wake = false;
838 break;
841 finish:
842 if (do_wake) {
843 /* Set compare and compare mask */
844 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_INDEX,
845 WBCIR_REGSEL_COMPARE | WBCIR_REG_ADDR0,
846 0x3F);
847 outsb(data->wbase + WBCIR_REG_WCEIR_DATA, match, 11);
848 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_INDEX,
849 WBCIR_REGSEL_MASK | WBCIR_REG_ADDR0,
850 0x3F);
851 outsb(data->wbase + WBCIR_REG_WCEIR_DATA, mask, 11);
853 /* RC6 Compare String Len */
854 outb(rc6_csl, data->wbase + WBCIR_REG_WCEIR_CSL);
856 /* Clear status bits NEC_REP, BUFF, MSG_END, MATCH */
857 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_STS, 0x17, 0x17);
859 /* Clear BUFF_EN, Clear END_EN, Set MATCH_EN */
860 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_EV_EN, 0x01, 0x07);
862 /* Set CEIR_EN */
863 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_CTL, 0x01, 0x01);
865 } else {
866 /* Clear BUFF_EN, Clear END_EN, Clear MATCH_EN */
867 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_EV_EN, 0x00, 0x07);
869 /* Clear CEIR_EN */
870 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_CTL, 0x00, 0x01);
874 * ACPI will set the HW disable bit for SP3 which means that the
875 * output signals are left in an undefined state which may cause
876 * spurious interrupts which we need to ignore until the hardware
877 * is reinitialized.
879 wbcir_set_irqmask(data, WBCIR_IRQ_NONE);
880 disable_irq(data->irq);
882 /* Disable LED */
883 led_trigger_event(data->rxtrigger, LED_OFF);
884 led_trigger_event(data->txtrigger, LED_OFF);
887 static int
888 wbcir_suspend(struct pnp_dev *device, pm_message_t state)
890 wbcir_shutdown(device);
891 return 0;
894 static void
895 wbcir_init_hw(struct wbcir_data *data)
897 u8 tmp;
899 /* Disable interrupts */
900 wbcir_set_irqmask(data, WBCIR_IRQ_NONE);
902 /* Set PROT_SEL, RX_INV, Clear CEIR_EN (needed for the led) */
903 tmp = protocol << 4;
904 if (invert)
905 tmp |= 0x08;
906 outb(tmp, data->wbase + WBCIR_REG_WCEIR_CTL);
908 /* Clear status bits NEC_REP, BUFF, MSG_END, MATCH */
909 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_STS, 0x17, 0x17);
911 /* Clear BUFF_EN, Clear END_EN, Clear MATCH_EN */
912 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_EV_EN, 0x00, 0x07);
914 /* Set RC5 cell time to correspond to 36 kHz */
915 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_CFG1, 0x4A, 0x7F);
917 /* Set IRTX_INV */
918 if (invert)
919 outb(WBCIR_IRTX_INV, data->ebase + WBCIR_REG_ECEIR_CCTL);
920 else
921 outb(0x00, data->ebase + WBCIR_REG_ECEIR_CCTL);
924 * Clear IR LED, set SP3 clock to 24Mhz, set TX mask to IRTX1,
925 * set SP3_IRRX_SW to binary 01, helpfully not documented
927 outb(0x10, data->ebase + WBCIR_REG_ECEIR_CTS);
928 data->txmask = 0x1;
930 /* Enable extended mode */
931 wbcir_select_bank(data, WBCIR_BANK_2);
932 outb(WBCIR_EXT_ENABLE, data->sbase + WBCIR_REG_SP3_EXCR1);
935 * Configure baud generator, IR data will be sampled at
936 * a bitrate of: (24Mhz * prescaler) / (divisor * 16).
938 * The ECIR registers include a flag to change the
939 * 24Mhz clock freq to 48Mhz.
941 * It's not documented in the specs, but fifo levels
942 * other than 16 seems to be unsupported.
945 /* prescaler 1.0, tx/rx fifo lvl 16 */
946 outb(0x30, data->sbase + WBCIR_REG_SP3_EXCR2);
948 /* Set baud divisor to sample every 10 us */
949 outb(0x0f, data->sbase + WBCIR_REG_SP3_BGDL);
950 outb(0x00, data->sbase + WBCIR_REG_SP3_BGDH);
952 /* Set CEIR mode */
953 wbcir_select_bank(data, WBCIR_BANK_0);
954 outb(0xC0, data->sbase + WBCIR_REG_SP3_MCR);
955 inb(data->sbase + WBCIR_REG_SP3_LSR); /* Clear LSR */
956 inb(data->sbase + WBCIR_REG_SP3_MSR); /* Clear MSR */
958 /* Disable RX demod, enable run-length enc/dec, set freq span */
959 wbcir_select_bank(data, WBCIR_BANK_7);
960 outb(0x90, data->sbase + WBCIR_REG_SP3_RCCFG);
962 /* Disable timer */
963 wbcir_select_bank(data, WBCIR_BANK_4);
964 outb(0x00, data->sbase + WBCIR_REG_SP3_IRCR1);
966 /* Disable MSR interrupt, clear AUX_IRX, mask RX during TX? */
967 wbcir_select_bank(data, WBCIR_BANK_5);
968 outb(txandrx ? 0x03 : 0x02, data->sbase + WBCIR_REG_SP3_IRCR2);
970 /* Disable CRC */
971 wbcir_select_bank(data, WBCIR_BANK_6);
972 outb(0x20, data->sbase + WBCIR_REG_SP3_IRCR3);
974 /* Set RX demodulation freq, not really used */
975 wbcir_select_bank(data, WBCIR_BANK_7);
976 outb(0xF2, data->sbase + WBCIR_REG_SP3_IRRXDC);
978 /* Set TX modulation, 36kHz, 7us pulse width */
979 outb(0x69, data->sbase + WBCIR_REG_SP3_IRTXMC);
980 data->txcarrier = 36000;
982 /* Set invert and pin direction */
983 if (invert)
984 outb(0x10, data->sbase + WBCIR_REG_SP3_IRCFG4);
985 else
986 outb(0x00, data->sbase + WBCIR_REG_SP3_IRCFG4);
988 /* Set FIFO thresholds (RX = 8, TX = 3), reset RX/TX */
989 wbcir_select_bank(data, WBCIR_BANK_0);
990 outb(0x97, data->sbase + WBCIR_REG_SP3_FCR);
992 /* Clear AUX status bits */
993 outb(0xE0, data->sbase + WBCIR_REG_SP3_ASCR);
995 /* Clear RX state */
996 data->rxstate = WBCIR_RXSTATE_INACTIVE;
997 ir_raw_event_reset(data->dev);
998 ir_raw_event_set_idle(data->dev, true);
1000 /* Clear TX state */
1001 if (data->txstate == WBCIR_TXSTATE_ACTIVE) {
1002 kfree(data->txbuf);
1003 data->txbuf = NULL;
1004 data->txstate = WBCIR_TXSTATE_INACTIVE;
1007 /* Enable interrupts */
1008 wbcir_set_irqmask(data, WBCIR_IRQ_RX | WBCIR_IRQ_ERR);
1011 static int
1012 wbcir_resume(struct pnp_dev *device)
1014 struct wbcir_data *data = pnp_get_drvdata(device);
1016 wbcir_init_hw(data);
1017 enable_irq(data->irq);
1019 return 0;
1022 static int
1023 wbcir_probe(struct pnp_dev *device, const struct pnp_device_id *dev_id)
1025 struct device *dev = &device->dev;
1026 struct wbcir_data *data;
1027 int err;
1029 if (!(pnp_port_len(device, 0) == EHFUNC_IOMEM_LEN &&
1030 pnp_port_len(device, 1) == WAKEUP_IOMEM_LEN &&
1031 pnp_port_len(device, 2) == SP_IOMEM_LEN)) {
1032 dev_err(dev, "Invalid resources\n");
1033 return -ENODEV;
1036 data = kzalloc(sizeof(*data), GFP_KERNEL);
1037 if (!data) {
1038 err = -ENOMEM;
1039 goto exit;
1042 pnp_set_drvdata(device, data);
1044 spin_lock_init(&data->spinlock);
1045 data->ebase = pnp_port_start(device, 0);
1046 data->wbase = pnp_port_start(device, 1);
1047 data->sbase = pnp_port_start(device, 2);
1048 data->irq = pnp_irq(device, 0);
1050 if (data->wbase == 0 || data->ebase == 0 ||
1051 data->sbase == 0 || data->irq == 0) {
1052 err = -ENODEV;
1053 dev_err(dev, "Invalid resources\n");
1054 goto exit_free_data;
1057 dev_dbg(&device->dev, "Found device "
1058 "(w: 0x%lX, e: 0x%lX, s: 0x%lX, i: %u)\n",
1059 data->wbase, data->ebase, data->sbase, data->irq);
1061 led_trigger_register_simple("cir-tx", &data->txtrigger);
1062 if (!data->txtrigger) {
1063 err = -ENOMEM;
1064 goto exit_free_data;
1067 led_trigger_register_simple("cir-rx", &data->rxtrigger);
1068 if (!data->rxtrigger) {
1069 err = -ENOMEM;
1070 goto exit_unregister_txtrigger;
1073 data->led.name = "cir::activity";
1074 data->led.default_trigger = "cir-rx";
1075 data->led.brightness_set = wbcir_led_brightness_set;
1076 data->led.brightness_get = wbcir_led_brightness_get;
1077 err = led_classdev_register(&device->dev, &data->led);
1078 if (err)
1079 goto exit_unregister_rxtrigger;
1081 data->dev = rc_allocate_device();
1082 if (!data->dev) {
1083 err = -ENOMEM;
1084 goto exit_unregister_led;
1087 data->dev->driver_type = RC_DRIVER_IR_RAW;
1088 data->dev->driver_name = DRVNAME;
1089 data->dev->input_name = WBCIR_NAME;
1090 data->dev->input_phys = "wbcir/cir0";
1091 data->dev->input_id.bustype = BUS_HOST;
1092 data->dev->input_id.vendor = PCI_VENDOR_ID_WINBOND;
1093 data->dev->input_id.product = WBCIR_ID_FAMILY;
1094 data->dev->input_id.version = WBCIR_ID_CHIP;
1095 data->dev->map_name = RC_MAP_RC6_MCE;
1096 data->dev->s_idle = wbcir_idle_rx;
1097 data->dev->s_carrier_report = wbcir_set_carrier_report;
1098 data->dev->s_tx_mask = wbcir_txmask;
1099 data->dev->s_tx_carrier = wbcir_txcarrier;
1100 data->dev->tx_ir = wbcir_tx;
1101 data->dev->priv = data;
1102 data->dev->dev.parent = &device->dev;
1103 data->dev->timeout = MS_TO_NS(100);
1104 data->dev->rx_resolution = US_TO_NS(2);
1105 data->dev->allowed_protos = RC_BIT_ALL;
1107 err = rc_register_device(data->dev);
1108 if (err)
1109 goto exit_free_rc;
1111 if (!request_region(data->wbase, WAKEUP_IOMEM_LEN, DRVNAME)) {
1112 dev_err(dev, "Region 0x%lx-0x%lx already in use!\n",
1113 data->wbase, data->wbase + WAKEUP_IOMEM_LEN - 1);
1114 err = -EBUSY;
1115 goto exit_unregister_device;
1118 if (!request_region(data->ebase, EHFUNC_IOMEM_LEN, DRVNAME)) {
1119 dev_err(dev, "Region 0x%lx-0x%lx already in use!\n",
1120 data->ebase, data->ebase + EHFUNC_IOMEM_LEN - 1);
1121 err = -EBUSY;
1122 goto exit_release_wbase;
1125 if (!request_region(data->sbase, SP_IOMEM_LEN, DRVNAME)) {
1126 dev_err(dev, "Region 0x%lx-0x%lx already in use!\n",
1127 data->sbase, data->sbase + SP_IOMEM_LEN - 1);
1128 err = -EBUSY;
1129 goto exit_release_ebase;
1132 err = request_irq(data->irq, wbcir_irq_handler,
1133 IRQF_DISABLED, DRVNAME, device);
1134 if (err) {
1135 dev_err(dev, "Failed to claim IRQ %u\n", data->irq);
1136 err = -EBUSY;
1137 goto exit_release_sbase;
1140 device_init_wakeup(&device->dev, 1);
1142 wbcir_init_hw(data);
1144 return 0;
1146 exit_release_sbase:
1147 release_region(data->sbase, SP_IOMEM_LEN);
1148 exit_release_ebase:
1149 release_region(data->ebase, EHFUNC_IOMEM_LEN);
1150 exit_release_wbase:
1151 release_region(data->wbase, WAKEUP_IOMEM_LEN);
1152 exit_unregister_device:
1153 rc_unregister_device(data->dev);
1154 data->dev = NULL;
1155 exit_free_rc:
1156 rc_free_device(data->dev);
1157 exit_unregister_led:
1158 led_classdev_unregister(&data->led);
1159 exit_unregister_rxtrigger:
1160 led_trigger_unregister_simple(data->rxtrigger);
1161 exit_unregister_txtrigger:
1162 led_trigger_unregister_simple(data->txtrigger);
1163 exit_free_data:
1164 kfree(data);
1165 pnp_set_drvdata(device, NULL);
1166 exit:
1167 return err;
1170 static void
1171 wbcir_remove(struct pnp_dev *device)
1173 struct wbcir_data *data = pnp_get_drvdata(device);
1175 /* Disable interrupts */
1176 wbcir_set_irqmask(data, WBCIR_IRQ_NONE);
1177 free_irq(data->irq, device);
1179 /* Clear status bits NEC_REP, BUFF, MSG_END, MATCH */
1180 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_STS, 0x17, 0x17);
1182 /* Clear CEIR_EN */
1183 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_CTL, 0x00, 0x01);
1185 /* Clear BUFF_EN, END_EN, MATCH_EN */
1186 wbcir_set_bits(data->wbase + WBCIR_REG_WCEIR_EV_EN, 0x00, 0x07);
1188 rc_unregister_device(data->dev);
1190 led_trigger_unregister_simple(data->rxtrigger);
1191 led_trigger_unregister_simple(data->txtrigger);
1192 led_classdev_unregister(&data->led);
1194 /* This is ok since &data->led isn't actually used */
1195 wbcir_led_brightness_set(&data->led, LED_OFF);
1197 release_region(data->wbase, WAKEUP_IOMEM_LEN);
1198 release_region(data->ebase, EHFUNC_IOMEM_LEN);
1199 release_region(data->sbase, SP_IOMEM_LEN);
1201 kfree(data);
1203 pnp_set_drvdata(device, NULL);
1206 static const struct pnp_device_id wbcir_ids[] = {
1207 { "WEC1022", 0 },
1208 { "", 0 }
1210 MODULE_DEVICE_TABLE(pnp, wbcir_ids);
1212 static struct pnp_driver wbcir_driver = {
1213 .name = WBCIR_NAME,
1214 .id_table = wbcir_ids,
1215 .probe = wbcir_probe,
1216 .remove = wbcir_remove,
1217 .suspend = wbcir_suspend,
1218 .resume = wbcir_resume,
1219 .shutdown = wbcir_shutdown
1222 static int __init
1223 wbcir_init(void)
1225 int ret;
1227 switch (protocol) {
1228 case IR_PROTOCOL_RC5:
1229 case IR_PROTOCOL_NEC:
1230 case IR_PROTOCOL_RC6:
1231 break;
1232 default:
1233 pr_err("Invalid power-on protocol\n");
1236 ret = pnp_register_driver(&wbcir_driver);
1237 if (ret)
1238 pr_err("Unable to register driver\n");
1240 return ret;
1243 static void __exit
1244 wbcir_exit(void)
1246 pnp_unregister_driver(&wbcir_driver);
1249 module_init(wbcir_init);
1250 module_exit(wbcir_exit);
1252 MODULE_AUTHOR("David Härdeman <david@hardeman.nu>");
1253 MODULE_DESCRIPTION("Winbond SuperI/O Consumer IR Driver");
1254 MODULE_LICENSE("GPL");