1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * keyboard input driver for i2c IR remote controls
7 * modified for PixelView (BT878P+W/FM) by
10 * modified for KNC ONE TV Station/Anubis Typhoon TView Tuner by
12 * modified for em2820 based USB TV tuners by
14 * modified for DViCO Fusion HDTV 5 RT GOLD by
16 * modified for MSI TV@nywhere Plus by
20 * modified for AVerMedia Cardbus by
22 * Zilog Transmitter portions/ideas were derived from GPLv2+ sources:
23 * - drivers/char/pctv_zilogir.[ch] from Hauppauge Broadway product
24 * Copyright 2011 Hauppauge Computer works
25 * - drivers/staging/media/lirc/lirc_zilog.c
38 #include <asm/unaligned.h>
39 #include <linux/module.h>
40 #include <linux/init.h>
41 #include <linux/kernel.h>
42 #include <linux/string.h>
43 #include <linux/timer.h>
44 #include <linux/delay.h>
45 #include <linux/errno.h>
46 #include <linux/slab.h>
47 #include <linux/i2c.h>
48 #include <linux/workqueue.h>
50 #include <media/rc-core.h>
51 #include <media/i2c/ir-kbd-i2c.h>
56 static bool enable_hdpvr;
57 module_param(enable_hdpvr, bool, 0644);
59 static int get_key_haup_common(struct IR_i2c *ir, enum rc_proto *protocol,
60 u32 *scancode, u8 *ptoggle, int size)
63 int start, range, toggle, dev, code, ircode, vendor;
66 if (size != i2c_master_recv(ir->c, buf, size))
70 int offset = (size == 6) ? 3 : 0;
72 /* split rc5 data block ... */
73 start = (buf[offset] >> 7) & 1;
74 range = (buf[offset] >> 6) & 1;
75 toggle = (buf[offset] >> 5) & 1;
76 dev = buf[offset] & 0x1f;
77 code = (buf[offset+1] >> 2) & 0x3f;
79 /* rc5 has two start bits
80 * the first bit must be one
81 * the second bit defines the command range:
82 * 1 = 0-63, 0 = 64 - 127
88 /* filter out invalid key presses */
89 ircode = (start << 12) | (toggle << 11) | (dev << 6) | code;
90 if ((ircode & 0x1fff) == 0x1fff)
97 "ir hauppauge (rc5): s%d r%d t%d dev=%d code=%d\n",
98 start, range, toggle, dev, code);
100 *protocol = RC_PROTO_RC5;
101 *scancode = RC_SCANCODE_RC5(dev, code);
105 } else if (size == 6 && (buf[0] & 0x40)) {
108 vendor = get_unaligned_be16(buf + 1);
110 if (vendor == 0x800f) {
111 *ptoggle = (dev & 0x80) != 0;
112 *protocol = RC_PROTO_RC6_MCE;
114 dev_dbg(&ir->rc->dev,
115 "ir hauppauge (rc6-mce): t%d vendor=%d dev=%d code=%d\n",
116 *ptoggle, vendor, dev, code);
119 *protocol = RC_PROTO_RC6_6A_32;
120 dev_dbg(&ir->rc->dev,
121 "ir hauppauge (rc6-6a-32): vendor=%d dev=%d code=%d\n",
125 *scancode = RC_SCANCODE_RC6_6A(vendor, dev, code);
133 static int get_key_haup(struct IR_i2c *ir, enum rc_proto *protocol,
134 u32 *scancode, u8 *toggle)
136 return get_key_haup_common(ir, protocol, scancode, toggle, 3);
139 static int get_key_haup_xvr(struct IR_i2c *ir, enum rc_proto *protocol,
140 u32 *scancode, u8 *toggle)
143 unsigned char buf[1] = { 0 };
146 * This is the same apparent "are you ready?" poll command observed
147 * watching Windows driver traffic and implemented in lirc_zilog. With
148 * this added, we get far saner remote behavior with z8 chips on usb
149 * connected devices, even with the default polling interval of 100ms.
151 ret = i2c_master_send(ir->c, buf, 1);
153 return (ret < 0) ? ret : -EINVAL;
155 return get_key_haup_common(ir, protocol, scancode, toggle, 6);
158 static int get_key_pixelview(struct IR_i2c *ir, enum rc_proto *protocol,
159 u32 *scancode, u8 *toggle)
165 rc = i2c_master_recv(ir->c, &b, 1);
167 dev_dbg(&ir->rc->dev, "read error\n");
173 *protocol = RC_PROTO_OTHER;
179 static int get_key_fusionhdtv(struct IR_i2c *ir, enum rc_proto *protocol,
180 u32 *scancode, u8 *toggle)
183 unsigned char buf[4];
186 rc = i2c_master_recv(ir->c, buf, 4);
188 dev_dbg(&ir->rc->dev, "read error\n");
194 if (buf[0] != 0 || buf[1] != 0 || buf[2] != 0 || buf[3] != 0)
195 dev_dbg(&ir->rc->dev, "%s: %*ph\n", __func__, 4, buf);
197 /* no key pressed or signal from other ir remote */
198 if(buf[0] != 0x1 || buf[1] != 0xfe)
201 *protocol = RC_PROTO_UNKNOWN;
207 static int get_key_knc1(struct IR_i2c *ir, enum rc_proto *protocol,
208 u32 *scancode, u8 *toggle)
214 rc = i2c_master_recv(ir->c, &b, 1);
216 dev_dbg(&ir->rc->dev, "read error\n");
222 /* it seems that 0xFE indicates that a button is still hold
223 down, while 0xff indicates that no button is hold
224 down. 0xfe sequences are sometimes interrupted by 0xFF */
226 dev_dbg(&ir->rc->dev, "key %02x\n", b);
235 *protocol = RC_PROTO_UNKNOWN;
241 static int get_key_geniatech(struct IR_i2c *ir, enum rc_proto *protocol,
242 u32 *scancode, u8 *toggle)
248 for (i = 0; i < 4; i++) {
249 rc = i2c_master_recv(ir->c, &b, 1);
255 dev_dbg(&ir->rc->dev, "read error\n");
261 /* don't repeat the key */
270 dev_dbg(&ir->rc->dev, "key %02x\n", b);
272 *protocol = RC_PROTO_RC5;
274 *toggle = ir->old >> 7;
278 static int get_key_avermedia_cardbus(struct IR_i2c *ir, enum rc_proto *protocol,
279 u32 *scancode, u8 *toggle)
281 unsigned char subaddr, key, keygroup;
282 struct i2c_msg msg[] = { { .addr = ir->c->addr, .flags = 0,
283 .buf = &subaddr, .len = 1},
284 { .addr = ir->c->addr, .flags = I2C_M_RD,
285 .buf = &key, .len = 1} };
287 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
288 dev_dbg(&ir->rc->dev, "read error\n");
296 msg[1].buf = &keygroup;
297 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
298 dev_dbg(&ir->rc->dev, "read error\n");
302 if (keygroup == 0xff)
305 dev_dbg(&ir->rc->dev, "read key 0x%02x/0x%02x\n", key, keygroup);
306 if (keygroup < 2 || keygroup > 4) {
307 dev_warn(&ir->rc->dev, "warning: invalid key group 0x%02x for key 0x%02x\n",
310 key |= (keygroup & 1) << 6;
312 *protocol = RC_PROTO_UNKNOWN;
314 if (ir->c->addr == 0x41) /* AVerMedia EM78P153 */
315 *scancode |= keygroup << 8;
320 /* ----------------------------------------------------------------------- */
322 static int ir_key_poll(struct IR_i2c *ir)
324 enum rc_proto protocol;
329 dev_dbg(&ir->rc->dev, "%s\n", __func__);
330 rc = ir->get_key(ir, &protocol, &scancode, &toggle);
332 dev_warn(&ir->rc->dev, "error %d\n", rc);
337 dev_dbg(&ir->rc->dev, "%s: proto = 0x%04x, scancode = 0x%08x\n",
338 __func__, protocol, scancode);
339 rc_keydown(ir->rc, protocol, scancode, toggle);
344 static void ir_work(struct work_struct *work)
347 struct IR_i2c *ir = container_of(work, struct IR_i2c, work.work);
350 * If the transmit code is holding the lock, skip polling for
351 * IR, we'll get it to it next time round
353 if (mutex_trylock(&ir->lock)) {
354 rc = ir_key_poll(ir);
355 mutex_unlock(&ir->lock);
357 rc_unregister_device(ir->rc);
363 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling_interval));
366 static int ir_open(struct rc_dev *dev)
368 struct IR_i2c *ir = dev->priv;
370 schedule_delayed_work(&ir->work, 0);
375 static void ir_close(struct rc_dev *dev)
377 struct IR_i2c *ir = dev->priv;
379 cancel_delayed_work_sync(&ir->work);
382 /* Zilog Transmit Interface */
383 #define XTAL_FREQ 18432000
385 #define ZILOG_SEND 0x80
386 #define ZILOG_UIR_END 0x40
387 #define ZILOG_INIT_END 0x20
388 #define ZILOG_LIR_END 0x10
390 #define ZILOG_STATUS_OK 0x80
391 #define ZILOG_STATUS_TX 0x40
392 #define ZILOG_STATUS_SET 0x20
395 * As you can see here, very few different lengths of pulse and space
396 * can be encoded. This means that the hardware does not work well with
397 * recorded IR. It's best to work with generated IR, like from ir-ctl or
398 * the in-kernel encoders.
402 u16 pulse[7]; /* not aligned */
405 u16 space[8]; /* not aligned */
410 static int send_data_block(struct IR_i2c *ir, int cmd,
411 struct code_block *code_block)
416 p = &code_block->length;
417 for (i = 0; p < code_block->csum; i++)
418 code_block->csum[i & 1] ^= *p++;
420 p = &code_block->length;
422 for (i = 0; i < sizeof(*code_block);) {
423 int tosend = sizeof(*code_block) - i;
428 for (j = 0; j < tosend; ++j)
429 buf[1 + j] = p[i + j];
430 dev_dbg(&ir->rc->dev, "%*ph", tosend + 1, buf);
431 ret = i2c_master_send(ir->tx_c, buf, tosend + 1);
432 if (ret != tosend + 1) {
433 dev_dbg(&ir->rc->dev,
434 "i2c_master_send failed with %d\n", ret);
435 return ret < 0 ? ret : -EIO;
442 ret = i2c_master_send(ir->tx_c, buf, 2);
444 dev_err(&ir->rc->dev, "i2c_master_send failed with %d\n", ret);
445 return ret < 0 ? ret : -EIO;
448 usleep_range(2000, 5000);
450 ret = i2c_master_send(ir->tx_c, buf, 1);
452 dev_err(&ir->rc->dev, "i2c_master_send failed with %d\n", ret);
453 return ret < 0 ? ret : -EIO;
459 static int zilog_init(struct IR_i2c *ir)
461 struct code_block code_block = { .length = sizeof(code_block) };
465 put_unaligned_be16(0x1000, &code_block.pulse[3]);
467 ret = send_data_block(ir, ZILOG_INIT_END, &code_block);
471 ret = i2c_master_recv(ir->tx_c, buf, 4);
473 dev_err(&ir->c->dev, "failed to retrieve firmware version: %d\n",
475 return ret < 0 ? ret : -EIO;
478 dev_info(&ir->c->dev, "Zilog/Hauppauge IR blaster firmware version %d.%d.%d\n",
479 buf[1], buf[2], buf[3]);
485 * If the last slot for pulse is the same as the current slot for pulse,
486 * then use slot no 7.
488 static void copy_codes(u8 *dst, u8 *src, unsigned int count)
494 if ((c & 0xf0) == last) {
495 *dst++ = 0x70 | (c & 0xf);
504 * When looking for repeats, we don't care about the trailing space. This
505 * is set to the shortest possible anyway.
507 static int cmp_no_trail(u8 *a, u8 *b, unsigned int count)
514 return (*a & 0xf0) - (*b & 0xf0);
517 static int find_slot(u16 *array, unsigned int size, u16 val)
521 for (i = 0; i < size; i++) {
522 if (get_unaligned_be16(&array[i]) == val) {
524 } else if (!array[i]) {
525 put_unaligned_be16(val, &array[i]);
533 static int zilog_ir_format(struct rc_dev *rcdev, unsigned int *txbuf,
534 unsigned int count, struct code_block *code_block)
536 struct IR_i2c *ir = rcdev->priv;
537 int rep, i, l, p = 0, s, c = 0;
541 code_block->carrier_pulse = DIV_ROUND_CLOSEST(
542 ir->duty_cycle * XTAL_FREQ / 1000, ir->carrier);
543 code_block->carrier_space = DIV_ROUND_CLOSEST(
544 (100 - ir->duty_cycle) * XTAL_FREQ / 1000, ir->carrier);
546 for (i = 0; i < count; i++) {
547 if (c >= ARRAY_SIZE(codes) - 1) {
548 dev_warn(&rcdev->dev, "IR too long, cannot transmit\n");
553 * Lengths more than 142220us cannot be encoded; also
554 * this checks for multiply overflow
556 if (txbuf[i] > 142220)
559 l = DIV_ROUND_CLOSEST((XTAL_FREQ / 1000) * txbuf[i], 40000);
562 s = find_slot(code_block->space,
563 ARRAY_SIZE(code_block->space), l);
565 dev_warn(&rcdev->dev, "Too many different lengths spaces, cannot transmit");
569 /* We have a pulse and space */
570 codes[c++] = (p << 4) | s;
572 p = find_slot(code_block->pulse,
573 ARRAY_SIZE(code_block->pulse), l);
575 dev_warn(&rcdev->dev, "Too many different lengths pulses, cannot transmit");
581 /* We have to encode the trailing pulse. Find the shortest space */
583 for (i = 1; i < ARRAY_SIZE(code_block->space); i++) {
584 u16 d = get_unaligned_be16(&code_block->space[i]);
586 if (get_unaligned_be16(&code_block->space[s]) > d)
590 codes[c++] = (p << 4) | s;
592 dev_dbg(&rcdev->dev, "generated %d codes\n", c);
595 * Are the last N codes (so pulse + space) repeating 3 times?
596 * if so we can shorten the codes list and use code 0xc0 to repeat
601 for (rep = c / 3; rep >= 1; rep--) {
602 if (!memcmp(&codes[c - rep * 3], &codes[c - rep * 2], rep) &&
603 !cmp_no_trail(&codes[c - rep], &codes[c - rep * 2], rep)) {
610 /* first copy any leading non-repeating */
611 int leading = c - rep * 3;
613 if (leading >= ARRAY_SIZE(code_block->codes) - 3 - rep) {
614 dev_warn(&rcdev->dev, "IR too long, cannot transmit\n");
618 dev_dbg(&rcdev->dev, "found trailing %d repeat\n", rep);
619 copy_codes(code_block->codes, codes, leading);
620 code_block->codes[leading] = 0x82;
621 copy_codes(code_block->codes + leading + 1, codes + leading,
623 c = leading + 1 + rep;
624 code_block->codes[c++] = 0xc0;
626 if (c >= ARRAY_SIZE(code_block->codes) - 3) {
627 dev_warn(&rcdev->dev, "IR too long, cannot transmit\n");
631 dev_dbg(&rcdev->dev, "found no trailing repeat\n");
632 code_block->codes[0] = 0x82;
633 copy_codes(code_block->codes + 1, codes, c);
635 code_block->codes[c++] = 0xc4;
638 while (c < ARRAY_SIZE(code_block->codes))
639 code_block->codes[c++] = 0x83;
644 static int zilog_tx(struct rc_dev *rcdev, unsigned int *txbuf,
647 struct IR_i2c *ir = rcdev->priv;
648 struct code_block code_block = { .length = sizeof(code_block) };
652 ret = zilog_ir_format(rcdev, txbuf, count, &code_block);
656 ret = mutex_lock_interruptible(&ir->lock);
660 ret = send_data_block(ir, ZILOG_UIR_END, &code_block);
664 ret = i2c_master_recv(ir->tx_c, buf, 1);
666 dev_err(&ir->rc->dev, "i2c_master_recv failed with %d\n", ret);
670 dev_dbg(&ir->rc->dev, "code set status: %02x\n", buf[0]);
672 if (buf[0] != (ZILOG_STATUS_OK | ZILOG_STATUS_SET)) {
673 dev_err(&ir->rc->dev, "unexpected IR TX response %02x\n",
682 ret = i2c_master_send(ir->tx_c, buf, 2);
684 dev_err(&ir->rc->dev, "i2c_master_send failed with %d\n", ret);
690 dev_dbg(&ir->rc->dev, "send command sent\n");
693 * This bit NAKs until the device is ready, so we retry it
694 * sleeping a bit each time. This seems to be what the windows
695 * driver does, approximately.
698 for (i = 0; i < 20; ++i) {
699 set_current_state(TASK_UNINTERRUPTIBLE);
700 schedule_timeout(msecs_to_jiffies(50));
701 ret = i2c_master_send(ir->tx_c, buf, 1);
704 dev_dbg(&ir->rc->dev,
705 "NAK expected: i2c_master_send failed with %d (try %d)\n",
710 dev_err(&ir->rc->dev,
711 "IR TX chip never got ready: last i2c_master_send failed with %d\n",
718 ret = i2c_master_recv(ir->tx_c, buf, 1);
720 dev_err(&ir->rc->dev, "i2c_master_recv failed with %d\n", ret);
723 } else if (buf[0] != ZILOG_STATUS_OK) {
724 dev_err(&ir->rc->dev, "unexpected IR TX response #2: %02x\n",
729 dev_dbg(&ir->rc->dev, "transmit complete\n");
731 /* Oh good, it worked */
734 mutex_unlock(&ir->lock);
739 static int zilog_tx_carrier(struct rc_dev *dev, u32 carrier)
741 struct IR_i2c *ir = dev->priv;
743 if (carrier > 500000 || carrier < 20000)
746 ir->carrier = carrier;
751 static int zilog_tx_duty_cycle(struct rc_dev *dev, u32 duty_cycle)
753 struct IR_i2c *ir = dev->priv;
755 ir->duty_cycle = duty_cycle;
760 static int ir_probe(struct i2c_client *client)
762 const struct i2c_device_id *id = i2c_client_get_device_id(client);
763 char *ir_codes = NULL;
764 const char *name = NULL;
765 u64 rc_proto = RC_PROTO_BIT_UNKNOWN;
767 struct rc_dev *rc = NULL;
768 struct i2c_adapter *adap = client->adapter;
769 unsigned short addr = client->addr;
770 bool probe_tx = (id->driver_data & FLAG_TX) != 0;
773 if ((id->driver_data & FLAG_HDPVR) && !enable_hdpvr) {
774 dev_err(&client->dev, "IR for HDPVR is known to cause problems during recording, use enable_hdpvr modparam to enable\n");
778 ir = devm_kzalloc(&client->dev, sizeof(*ir), GFP_KERNEL);
783 ir->polling_interval = DEFAULT_POLLING_INTERVAL;
784 i2c_set_clientdata(client, ir);
789 ir->get_key = get_key_pixelview;
790 rc_proto = RC_PROTO_BIT_OTHER;
791 ir_codes = RC_MAP_EMPTY;
797 ir->get_key = get_key_haup;
798 rc_proto = RC_PROTO_BIT_RC5;
799 ir_codes = RC_MAP_HAUPPAUGE;
803 ir->get_key = get_key_knc1;
804 rc_proto = RC_PROTO_BIT_OTHER;
805 ir_codes = RC_MAP_EMPTY;
809 ir->get_key = get_key_geniatech;
810 rc_proto = RC_PROTO_BIT_RC5;
811 ir_codes = RC_MAP_TOTAL_MEDIA_IN_HAND_02;
816 ir->get_key = get_key_fusionhdtv;
817 rc_proto = RC_PROTO_BIT_UNKNOWN;
818 ir_codes = RC_MAP_FUSIONHDTV_MCE;
821 name = "AVerMedia Cardbus remote";
822 ir->get_key = get_key_avermedia_cardbus;
823 rc_proto = RC_PROTO_BIT_OTHER;
824 ir_codes = RC_MAP_AVERMEDIA_CARDBUS;
827 name = "AVerMedia EM78P153";
828 ir->get_key = get_key_avermedia_cardbus;
829 rc_proto = RC_PROTO_BIT_OTHER;
830 /* RM-KV remote, seems to be same as RM-K6 */
831 ir_codes = RC_MAP_AVERMEDIA_M733A_RM_K6;
834 name = "Hauppauge/Zilog Z8";
835 ir->get_key = get_key_haup_xvr;
836 rc_proto = RC_PROTO_BIT_RC5 | RC_PROTO_BIT_RC6_MCE |
837 RC_PROTO_BIT_RC6_6A_32;
838 ir_codes = RC_MAP_HAUPPAUGE;
839 ir->polling_interval = 125;
844 /* Let the caller override settings */
845 if (client->dev.platform_data) {
846 const struct IR_i2c_init_data *init_data =
847 client->dev.platform_data;
849 ir_codes = init_data->ir_codes;
850 rc = init_data->rc_dev;
852 name = init_data->name;
854 rc_proto = init_data->type;
856 if (init_data->polling_interval)
857 ir->polling_interval = init_data->polling_interval;
859 switch (init_data->internal_get_key_func) {
860 case IR_KBD_GET_KEY_CUSTOM:
861 /* The bridge driver provided us its own function */
862 ir->get_key = init_data->get_key;
864 case IR_KBD_GET_KEY_PIXELVIEW:
865 ir->get_key = get_key_pixelview;
867 case IR_KBD_GET_KEY_HAUP:
868 ir->get_key = get_key_haup;
870 case IR_KBD_GET_KEY_KNC1:
871 ir->get_key = get_key_knc1;
873 case IR_KBD_GET_KEY_GENIATECH:
874 ir->get_key = get_key_geniatech;
876 case IR_KBD_GET_KEY_FUSIONHDTV:
877 ir->get_key = get_key_fusionhdtv;
879 case IR_KBD_GET_KEY_HAUP_XVR:
880 ir->get_key = get_key_haup_xvr;
882 case IR_KBD_GET_KEY_AVERMEDIA_CARDBUS:
883 ir->get_key = get_key_avermedia_cardbus;
890 * If platform_data doesn't specify rc_dev, initialize it
893 rc = rc_allocate_device(RC_DRIVER_SCANCODE);
899 /* Make sure we are all setup before going on */
900 if (!name || !ir->get_key || !rc_proto || !ir_codes) {
901 dev_warn(&client->dev, "Unsupported device at address 0x%02x\n",
907 ir->ir_codes = ir_codes;
909 snprintf(ir->phys, sizeof(ir->phys), "%s/%s", dev_name(&adap->dev),
910 dev_name(&client->dev));
913 * Initialize input_dev fields
914 * It doesn't make sense to allow overriding them via platform_data
916 rc->input_id.bustype = BUS_I2C;
917 rc->input_phys = ir->phys;
918 rc->device_name = name;
919 rc->dev.parent = &client->dev;
922 rc->close = ir_close;
925 * Initialize the other fields of rc_dev
927 rc->map_name = ir->ir_codes;
928 rc->allowed_protocols = rc_proto;
929 if (!rc->driver_name)
930 rc->driver_name = KBUILD_MODNAME;
932 mutex_init(&ir->lock);
934 INIT_DELAYED_WORK(&ir->work, ir_work);
937 ir->tx_c = i2c_new_dummy_device(client->adapter, 0x70);
938 if (IS_ERR(ir->tx_c)) {
939 dev_err(&client->dev, "failed to setup tx i2c address");
940 err = PTR_ERR(ir->tx_c);
942 } else if (!zilog_init(ir)) {
945 rc->tx_ir = zilog_tx;
946 rc->s_tx_carrier = zilog_tx_carrier;
947 rc->s_tx_duty_cycle = zilog_tx_duty_cycle;
951 err = rc_register_device(rc);
958 if (!IS_ERR(ir->tx_c))
959 i2c_unregister_device(ir->tx_c);
961 /* Only frees rc if it were allocated internally */
966 static void ir_remove(struct i2c_client *client)
968 struct IR_i2c *ir = i2c_get_clientdata(client);
970 cancel_delayed_work_sync(&ir->work);
972 i2c_unregister_device(ir->tx_c);
974 rc_unregister_device(ir->rc);
977 static const struct i2c_device_id ir_kbd_id[] = {
978 /* Generic entry for any IR receiver */
980 /* IR device specific entries should be added here */
981 { "ir_z8f0811_haup", FLAG_TX },
982 { "ir_z8f0811_hdpvr", FLAG_TX | FLAG_HDPVR },
985 MODULE_DEVICE_TABLE(i2c, ir_kbd_id);
987 static struct i2c_driver ir_kbd_driver = {
989 .name = "ir-kbd-i2c",
993 .id_table = ir_kbd_id,
996 module_i2c_driver(ir_kbd_driver);
998 /* ----------------------------------------------------------------------- */
1000 MODULE_AUTHOR("Gerd Knorr, Michal Kochanowicz, Christoph Bartelmus, Ulrich Mueller");
1001 MODULE_DESCRIPTION("input driver for i2c IR remote controls");
1002 MODULE_LICENSE("GPL");