gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / media / rc / ati_remote.c
blob9cdef17b4793f19e8ac40c5045e19ffb2621c85e
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * USB ATI Remote support
5 * Copyright (c) 2011, 2012 Anssi Hannula <anssi.hannula@iki.fi>
6 * Version 2.2.0 Copyright (c) 2004 Torrey Hoffman <thoffman@arnor.net>
7 * Version 2.1.1 Copyright (c) 2002 Vladimir Dergachev
9 * This 2.2.0 version is a rewrite / cleanup of the 2.1.1 driver, including
10 * porting to the 2.6 kernel interfaces, along with other modification
11 * to better match the style of the existing usb/input drivers. However, the
12 * protocol and hardware handling is essentially unchanged from 2.1.1.
14 * The 2.1.1 driver was derived from the usbati_remote and usbkbd drivers by
15 * Vojtech Pavlik.
17 * Changes:
19 * Feb 2004: Torrey Hoffman <thoffman@arnor.net>
20 * Version 2.2.0
21 * Jun 2004: Torrey Hoffman <thoffman@arnor.net>
22 * Version 2.2.1
23 * Added key repeat support contributed by:
24 * Vincent Vanackere <vanackere@lif.univ-mrs.fr>
25 * Added support for the "Lola" remote contributed by:
26 * Seth Cohn <sethcohn@yahoo.com>
28 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
30 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
32 * Hardware & software notes
34 * These remote controls are distributed by ATI as part of their
35 * "All-In-Wonder" video card packages. The receiver self-identifies as a
36 * "USB Receiver" with manufacturer "X10 Wireless Technology Inc".
38 * The "Lola" remote is available from X10. See:
39 * http://www.x10.com/products/lola_sg1.htm
40 * The Lola is similar to the ATI remote but has no mouse support, and slightly
41 * different keys.
43 * It is possible to use multiple receivers and remotes on multiple computers
44 * simultaneously by configuring them to use specific channels.
46 * The RF protocol used by the remote supports 16 distinct channels, 1 to 16.
47 * Actually, it may even support more, at least in some revisions of the
48 * hardware.
50 * Each remote can be configured to transmit on one channel as follows:
51 * - Press and hold the "hand icon" button.
52 * - When the red LED starts to blink, let go of the "hand icon" button.
53 * - When it stops blinking, input the channel code as two digits, from 01
54 * to 16, and press the hand icon again.
56 * The timing can be a little tricky. Try loading the module with debug=1
57 * to have the kernel print out messages about the remote control number
58 * and mask. Note: debugging prints remote numbers as zero-based hexadecimal.
60 * The driver has a "channel_mask" parameter. This bitmask specifies which
61 * channels will be ignored by the module. To mask out channels, just add
62 * all the 2^channel_number values together.
64 * For instance, set channel_mask = 2^4 = 16 (binary 10000) to make ati_remote
65 * ignore signals coming from remote controls transmitting on channel 4, but
66 * accept all other channels.
68 * Or, set channel_mask = 65533, (0xFFFD), and all channels except 1 will be
69 * ignored.
71 * The default is 0 (respond to all channels). Bit 0 and bits 17-32 of this
72 * parameter are unused.
75 #include <linux/kernel.h>
76 #include <linux/errno.h>
77 #include <linux/init.h>
78 #include <linux/slab.h>
79 #include <linux/module.h>
80 #include <linux/mutex.h>
81 #include <linux/usb/input.h>
82 #include <linux/wait.h>
83 #include <linux/jiffies.h>
84 #include <media/rc-core.h>
87 * Module and Version Information, Module Parameters
90 #define ATI_REMOTE_VENDOR_ID 0x0bc7
91 #define LOLA_REMOTE_PRODUCT_ID 0x0002
92 #define LOLA2_REMOTE_PRODUCT_ID 0x0003
93 #define ATI_REMOTE_PRODUCT_ID 0x0004
94 #define NVIDIA_REMOTE_PRODUCT_ID 0x0005
95 #define MEDION_REMOTE_PRODUCT_ID 0x0006
96 #define FIREFLY_REMOTE_PRODUCT_ID 0x0008
98 #define DRIVER_VERSION "2.2.1"
99 #define DRIVER_AUTHOR "Torrey Hoffman <thoffman@arnor.net>"
100 #define DRIVER_DESC "ATI/X10 RF USB Remote Control"
102 #define NAME_BUFSIZE 80 /* size of product name, path buffers */
103 #define DATA_BUFSIZE 63 /* size of URB data buffers */
106 * Duplicate event filtering time.
107 * Sequential, identical KIND_FILTERED inputs with less than
108 * FILTER_TIME milliseconds between them are considered as repeat
109 * events. The hardware generates 5 events for the first keypress
110 * and we have to take this into account for an accurate repeat
111 * behaviour.
113 #define FILTER_TIME 60 /* msec */
114 #define REPEAT_DELAY 500 /* msec */
116 static unsigned long channel_mask;
117 module_param(channel_mask, ulong, 0644);
118 MODULE_PARM_DESC(channel_mask, "Bitmask of remote control channels to ignore");
120 static int debug;
121 module_param(debug, int, 0644);
122 MODULE_PARM_DESC(debug, "Enable extra debug messages and information");
124 static int repeat_filter = FILTER_TIME;
125 module_param(repeat_filter, int, 0644);
126 MODULE_PARM_DESC(repeat_filter, "Repeat filter time, default = 60 msec");
128 static int repeat_delay = REPEAT_DELAY;
129 module_param(repeat_delay, int, 0644);
130 MODULE_PARM_DESC(repeat_delay, "Delay before sending repeats, default = 500 msec");
132 static bool mouse = true;
133 module_param(mouse, bool, 0444);
134 MODULE_PARM_DESC(mouse, "Enable mouse device, default = yes");
136 #define dbginfo(dev, format, arg...) \
137 do { if (debug) dev_info(dev , format , ## arg); } while (0)
138 #undef err
139 #define err(format, arg...) printk(KERN_ERR format , ## arg)
141 struct ati_receiver_type {
142 /* either default_keymap or get_default_keymap should be set */
143 const char *default_keymap;
144 const char *(*get_default_keymap)(struct usb_interface *interface);
147 static const char *get_medion_keymap(struct usb_interface *interface)
149 struct usb_device *udev = interface_to_usbdev(interface);
152 * There are many different Medion remotes shipped with a receiver
153 * with the same usb id, but the receivers have subtle differences
154 * in the USB descriptors allowing us to detect them.
157 if (udev->manufacturer && udev->product) {
158 if (udev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_WAKEUP) {
160 if (!strcmp(udev->manufacturer, "X10 Wireless Technology Inc")
161 && !strcmp(udev->product, "USB Receiver"))
162 return RC_MAP_MEDION_X10_DIGITAINER;
164 if (!strcmp(udev->manufacturer, "X10 WTI")
165 && !strcmp(udev->product, "RF receiver"))
166 return RC_MAP_MEDION_X10_OR2X;
167 } else {
169 if (!strcmp(udev->manufacturer, "X10 Wireless Technology Inc")
170 && !strcmp(udev->product, "USB Receiver"))
171 return RC_MAP_MEDION_X10;
175 dev_info(&interface->dev,
176 "Unknown Medion X10 receiver, using default ati_remote Medion keymap\n");
178 return RC_MAP_MEDION_X10;
181 static const struct ati_receiver_type type_ati = {
182 .default_keymap = RC_MAP_ATI_X10
184 static const struct ati_receiver_type type_medion = {
185 .get_default_keymap = get_medion_keymap
187 static const struct ati_receiver_type type_firefly = {
188 .default_keymap = RC_MAP_SNAPSTREAM_FIREFLY
191 static const struct usb_device_id ati_remote_table[] = {
193 USB_DEVICE(ATI_REMOTE_VENDOR_ID, LOLA_REMOTE_PRODUCT_ID),
194 .driver_info = (unsigned long)&type_ati
197 USB_DEVICE(ATI_REMOTE_VENDOR_ID, LOLA2_REMOTE_PRODUCT_ID),
198 .driver_info = (unsigned long)&type_ati
201 USB_DEVICE(ATI_REMOTE_VENDOR_ID, ATI_REMOTE_PRODUCT_ID),
202 .driver_info = (unsigned long)&type_ati
205 USB_DEVICE(ATI_REMOTE_VENDOR_ID, NVIDIA_REMOTE_PRODUCT_ID),
206 .driver_info = (unsigned long)&type_ati
209 USB_DEVICE(ATI_REMOTE_VENDOR_ID, MEDION_REMOTE_PRODUCT_ID),
210 .driver_info = (unsigned long)&type_medion
213 USB_DEVICE(ATI_REMOTE_VENDOR_ID, FIREFLY_REMOTE_PRODUCT_ID),
214 .driver_info = (unsigned long)&type_firefly
216 {} /* Terminating entry */
219 MODULE_DEVICE_TABLE(usb, ati_remote_table);
221 /* Get hi and low bytes of a 16-bits int */
222 #define HI(a) ((unsigned char)((a) >> 8))
223 #define LO(a) ((unsigned char)((a) & 0xff))
225 #define SEND_FLAG_IN_PROGRESS 1
226 #define SEND_FLAG_COMPLETE 2
228 /* Device initialization strings */
229 static char init1[] = { 0x01, 0x00, 0x20, 0x14 };
230 static char init2[] = { 0x01, 0x00, 0x20, 0x14, 0x20, 0x20, 0x20 };
232 struct ati_remote {
233 struct input_dev *idev;
234 struct rc_dev *rdev;
235 struct usb_device *udev;
236 struct usb_interface *interface;
238 struct urb *irq_urb;
239 struct urb *out_urb;
240 struct usb_endpoint_descriptor *endpoint_in;
241 struct usb_endpoint_descriptor *endpoint_out;
242 unsigned char *inbuf;
243 unsigned char *outbuf;
244 dma_addr_t inbuf_dma;
245 dma_addr_t outbuf_dma;
247 unsigned char old_data; /* Detect duplicate events */
248 unsigned long old_jiffies;
249 unsigned long acc_jiffies; /* handle acceleration */
250 unsigned long first_jiffies;
252 unsigned int repeat_count;
254 char rc_name[NAME_BUFSIZE];
255 char rc_phys[NAME_BUFSIZE];
256 char mouse_name[NAME_BUFSIZE];
257 char mouse_phys[NAME_BUFSIZE];
259 wait_queue_head_t wait;
260 int send_flags;
262 int users; /* 0-2, users are rc and input */
263 struct mutex open_mutex;
266 /* "Kinds" of messages sent from the hardware to the driver. */
267 #define KIND_END 0
268 #define KIND_LITERAL 1 /* Simply pass to input system as EV_KEY */
269 #define KIND_FILTERED 2 /* Add artificial key-up events, drop keyrepeats */
270 #define KIND_ACCEL 3 /* Translate to EV_REL mouse-move events */
272 /* Translation table from hardware messages to input events. */
273 static const struct {
274 unsigned char kind;
275 unsigned char data; /* Raw key code from remote */
276 unsigned short code; /* Input layer translation */
277 } ati_remote_tbl[] = {
278 /* Directional control pad axes. Code is xxyy */
279 {KIND_ACCEL, 0x70, 0xff00}, /* left */
280 {KIND_ACCEL, 0x71, 0x0100}, /* right */
281 {KIND_ACCEL, 0x72, 0x00ff}, /* up */
282 {KIND_ACCEL, 0x73, 0x0001}, /* down */
284 /* Directional control pad diagonals */
285 {KIND_ACCEL, 0x74, 0xffff}, /* left up */
286 {KIND_ACCEL, 0x75, 0x01ff}, /* right up */
287 {KIND_ACCEL, 0x77, 0xff01}, /* left down */
288 {KIND_ACCEL, 0x76, 0x0101}, /* right down */
290 /* "Mouse button" buttons. The code below uses the fact that the
291 * lsbit of the raw code is a down/up indicator. */
292 {KIND_LITERAL, 0x78, BTN_LEFT}, /* left btn down */
293 {KIND_LITERAL, 0x79, BTN_LEFT}, /* left btn up */
294 {KIND_LITERAL, 0x7c, BTN_RIGHT},/* right btn down */
295 {KIND_LITERAL, 0x7d, BTN_RIGHT},/* right btn up */
297 /* Artificial "double-click" events are generated by the hardware.
298 * They are mapped to the "side" and "extra" mouse buttons here. */
299 {KIND_FILTERED, 0x7a, BTN_SIDE}, /* left dblclick */
300 {KIND_FILTERED, 0x7e, BTN_EXTRA},/* right dblclick */
302 /* Non-mouse events are handled by rc-core */
303 {KIND_END, 0x00, 0}
307 * ati_remote_dump_input
309 static void ati_remote_dump(struct device *dev, unsigned char *data,
310 unsigned int len)
312 if (len == 1) {
313 if (data[0] != (unsigned char)0xff && data[0] != 0x00)
314 dev_warn(dev, "Weird byte 0x%02x\n", data[0]);
315 } else if (len == 4)
316 dev_warn(dev, "Weird key %*ph\n", 4, data);
317 else
318 dev_warn(dev, "Weird data, len=%d %*ph ...\n", len, 6, data);
322 * ati_remote_open
324 static int ati_remote_open(struct ati_remote *ati_remote)
326 int err = 0;
328 mutex_lock(&ati_remote->open_mutex);
330 if (ati_remote->users++ != 0)
331 goto out; /* one was already active */
333 /* On first open, submit the read urb which was set up previously. */
334 ati_remote->irq_urb->dev = ati_remote->udev;
335 if (usb_submit_urb(ati_remote->irq_urb, GFP_KERNEL)) {
336 dev_err(&ati_remote->interface->dev,
337 "%s: usb_submit_urb failed!\n", __func__);
338 err = -EIO;
341 out: mutex_unlock(&ati_remote->open_mutex);
342 return err;
346 * ati_remote_close
348 static void ati_remote_close(struct ati_remote *ati_remote)
350 mutex_lock(&ati_remote->open_mutex);
351 if (--ati_remote->users == 0)
352 usb_kill_urb(ati_remote->irq_urb);
353 mutex_unlock(&ati_remote->open_mutex);
356 static int ati_remote_input_open(struct input_dev *inputdev)
358 struct ati_remote *ati_remote = input_get_drvdata(inputdev);
359 return ati_remote_open(ati_remote);
362 static void ati_remote_input_close(struct input_dev *inputdev)
364 struct ati_remote *ati_remote = input_get_drvdata(inputdev);
365 ati_remote_close(ati_remote);
368 static int ati_remote_rc_open(struct rc_dev *rdev)
370 struct ati_remote *ati_remote = rdev->priv;
371 return ati_remote_open(ati_remote);
374 static void ati_remote_rc_close(struct rc_dev *rdev)
376 struct ati_remote *ati_remote = rdev->priv;
377 ati_remote_close(ati_remote);
381 * ati_remote_irq_out
383 static void ati_remote_irq_out(struct urb *urb)
385 struct ati_remote *ati_remote = urb->context;
387 if (urb->status) {
388 dev_dbg(&ati_remote->interface->dev, "%s: status %d\n",
389 __func__, urb->status);
390 return;
393 ati_remote->send_flags |= SEND_FLAG_COMPLETE;
394 wmb();
395 wake_up(&ati_remote->wait);
399 * ati_remote_sendpacket
401 * Used to send device initialization strings
403 static int ati_remote_sendpacket(struct ati_remote *ati_remote, u16 cmd,
404 unsigned char *data)
406 int retval = 0;
408 /* Set up out_urb */
409 memcpy(ati_remote->out_urb->transfer_buffer + 1, data, LO(cmd));
410 ((char *) ati_remote->out_urb->transfer_buffer)[0] = HI(cmd);
412 ati_remote->out_urb->transfer_buffer_length = LO(cmd) + 1;
413 ati_remote->out_urb->dev = ati_remote->udev;
414 ati_remote->send_flags = SEND_FLAG_IN_PROGRESS;
416 retval = usb_submit_urb(ati_remote->out_urb, GFP_ATOMIC);
417 if (retval) {
418 dev_dbg(&ati_remote->interface->dev,
419 "sendpacket: usb_submit_urb failed: %d\n", retval);
420 return retval;
423 wait_event_timeout(ati_remote->wait,
424 ((ati_remote->out_urb->status != -EINPROGRESS) ||
425 (ati_remote->send_flags & SEND_FLAG_COMPLETE)),
426 HZ);
427 usb_kill_urb(ati_remote->out_urb);
429 return retval;
432 struct accel_times {
433 const char value;
434 unsigned int msecs;
437 static const struct accel_times accel[] = {
438 { 1, 125 },
439 { 2, 250 },
440 { 4, 500 },
441 { 6, 1000 },
442 { 9, 1500 },
443 { 13, 2000 },
444 { 20, 0 },
448 * ati_remote_compute_accel
450 * Implements acceleration curve for directional control pad
451 * If elapsed time since last event is > 1/4 second, user "stopped",
452 * so reset acceleration. Otherwise, user is probably holding the control
453 * pad down, so we increase acceleration, ramping up over two seconds to
454 * a maximum speed.
456 static int ati_remote_compute_accel(struct ati_remote *ati_remote)
458 unsigned long now = jiffies, reset_time;
459 int i;
461 reset_time = msecs_to_jiffies(250);
463 if (time_after(now, ati_remote->old_jiffies + reset_time)) {
464 ati_remote->acc_jiffies = now;
465 return 1;
467 for (i = 0; i < ARRAY_SIZE(accel) - 1; i++) {
468 unsigned long timeout = msecs_to_jiffies(accel[i].msecs);
470 if (time_before(now, ati_remote->acc_jiffies + timeout))
471 return accel[i].value;
473 return accel[i].value;
477 * ati_remote_report_input
479 static void ati_remote_input_report(struct urb *urb)
481 struct ati_remote *ati_remote = urb->context;
482 unsigned char *data= ati_remote->inbuf;
483 struct input_dev *dev = ati_remote->idev;
484 int index = -1;
485 int remote_num;
486 unsigned char scancode;
487 u32 wheel_keycode = KEY_RESERVED;
488 int i;
491 * data[0] = 0x14
492 * data[1] = data[2] + data[3] + 0xd5 (a checksum byte)
493 * data[2] = the key code (with toggle bit in MSB with some models)
494 * data[3] = channel << 4 (the low 4 bits must be zero)
497 /* Deal with strange looking inputs */
498 if ( urb->actual_length != 4 || data[0] != 0x14 ||
499 data[1] != (unsigned char)(data[2] + data[3] + 0xD5) ||
500 (data[3] & 0x0f) != 0x00) {
501 ati_remote_dump(&urb->dev->dev, data, urb->actual_length);
502 return;
505 if (data[1] != ((data[2] + data[3] + 0xd5) & 0xff)) {
506 dbginfo(&ati_remote->interface->dev,
507 "wrong checksum in input: %*ph\n", 4, data);
508 return;
511 /* Mask unwanted remote channels. */
512 /* note: remote_num is 0-based, channel 1 on remote == 0 here */
513 remote_num = (data[3] >> 4) & 0x0f;
514 if (channel_mask & (1 << (remote_num + 1))) {
515 dbginfo(&ati_remote->interface->dev,
516 "Masked input from channel 0x%02x: data %02x, mask= 0x%02lx\n",
517 remote_num, data[2], channel_mask);
518 return;
522 * MSB is a toggle code, though only used by some devices
523 * (e.g. SnapStream Firefly)
525 scancode = data[2] & 0x7f;
527 dbginfo(&ati_remote->interface->dev,
528 "channel 0x%02x; key data %02x, scancode %02x\n",
529 remote_num, data[2], scancode);
531 if (scancode >= 0x70) {
533 * This is either a mouse or scrollwheel event, depending on
534 * the remote/keymap.
535 * Get the keycode assigned to scancode 0x78/0x70. If it is
536 * set, assume this is a scrollwheel up/down event.
538 wheel_keycode = rc_g_keycode_from_table(ati_remote->rdev,
539 scancode & 0x78);
541 if (wheel_keycode == KEY_RESERVED) {
542 /* scrollwheel was not mapped, assume mouse */
544 /* Look up event code index in the mouse translation
545 * table.
547 for (i = 0; ati_remote_tbl[i].kind != KIND_END; i++) {
548 if (scancode == ati_remote_tbl[i].data) {
549 index = i;
550 break;
556 if (index >= 0 && ati_remote_tbl[index].kind == KIND_LITERAL) {
558 * The lsbit of the raw key code is a down/up flag.
559 * Invert it to match the input layer's conventions.
561 input_event(dev, EV_KEY, ati_remote_tbl[index].code,
562 !(data[2] & 1));
564 ati_remote->old_jiffies = jiffies;
566 } else if (index < 0 || ati_remote_tbl[index].kind == KIND_FILTERED) {
567 unsigned long now = jiffies;
569 /* Filter duplicate events which happen "too close" together. */
570 if (ati_remote->old_data == data[2] &&
571 time_before(now, ati_remote->old_jiffies +
572 msecs_to_jiffies(repeat_filter))) {
573 ati_remote->repeat_count++;
574 } else {
575 ati_remote->repeat_count = 0;
576 ati_remote->first_jiffies = now;
579 ati_remote->old_jiffies = now;
581 /* Ensure we skip at least the 4 first duplicate events
582 * (generated by a single keypress), and continue skipping
583 * until repeat_delay msecs have passed.
585 if (ati_remote->repeat_count > 0 &&
586 (ati_remote->repeat_count < 5 ||
587 time_before(now, ati_remote->first_jiffies +
588 msecs_to_jiffies(repeat_delay))))
589 return;
591 if (index >= 0) {
592 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 1);
593 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 0);
594 } else {
595 /* Not a mouse event, hand it to rc-core. */
596 int count = 1;
598 if (wheel_keycode != KEY_RESERVED) {
600 * This is a scrollwheel event, send the
601 * scroll up (0x78) / down (0x70) scancode
602 * repeatedly as many times as indicated by
603 * rest of the scancode.
605 count = (scancode & 0x07) + 1;
606 scancode &= 0x78;
609 while (count--) {
611 * We don't use the rc-core repeat handling yet as
612 * it would cause ghost repeats which would be a
613 * regression for this driver.
615 rc_keydown_notimeout(ati_remote->rdev,
616 RC_PROTO_OTHER,
617 scancode, data[2]);
618 rc_keyup(ati_remote->rdev);
620 goto nosync;
623 } else if (ati_remote_tbl[index].kind == KIND_ACCEL) {
624 signed char dx = ati_remote_tbl[index].code >> 8;
625 signed char dy = ati_remote_tbl[index].code & 255;
628 * Other event kinds are from the directional control pad, and
629 * have an acceleration factor applied to them. Without this
630 * acceleration, the control pad is mostly unusable.
632 int acc = ati_remote_compute_accel(ati_remote);
633 if (dx)
634 input_report_rel(dev, REL_X, dx * acc);
635 if (dy)
636 input_report_rel(dev, REL_Y, dy * acc);
637 ati_remote->old_jiffies = jiffies;
639 } else {
640 dev_dbg(&ati_remote->interface->dev, "ati_remote kind=%d\n",
641 ati_remote_tbl[index].kind);
642 return;
644 input_sync(dev);
645 nosync:
646 ati_remote->old_data = data[2];
650 * ati_remote_irq_in
652 static void ati_remote_irq_in(struct urb *urb)
654 struct ati_remote *ati_remote = urb->context;
655 int retval;
657 switch (urb->status) {
658 case 0: /* success */
659 ati_remote_input_report(urb);
660 break;
661 case -ECONNRESET: /* unlink */
662 case -ENOENT:
663 case -ESHUTDOWN:
664 dev_dbg(&ati_remote->interface->dev,
665 "%s: urb error status, unlink?\n",
666 __func__);
667 return;
668 default: /* error */
669 dev_dbg(&ati_remote->interface->dev,
670 "%s: Nonzero urb status %d\n",
671 __func__, urb->status);
674 retval = usb_submit_urb(urb, GFP_ATOMIC);
675 if (retval)
676 dev_err(&ati_remote->interface->dev,
677 "%s: usb_submit_urb()=%d\n",
678 __func__, retval);
682 * ati_remote_alloc_buffers
684 static int ati_remote_alloc_buffers(struct usb_device *udev,
685 struct ati_remote *ati_remote)
687 ati_remote->inbuf = usb_alloc_coherent(udev, DATA_BUFSIZE, GFP_ATOMIC,
688 &ati_remote->inbuf_dma);
689 if (!ati_remote->inbuf)
690 return -1;
692 ati_remote->outbuf = usb_alloc_coherent(udev, DATA_BUFSIZE, GFP_ATOMIC,
693 &ati_remote->outbuf_dma);
694 if (!ati_remote->outbuf)
695 return -1;
697 ati_remote->irq_urb = usb_alloc_urb(0, GFP_KERNEL);
698 if (!ati_remote->irq_urb)
699 return -1;
701 ati_remote->out_urb = usb_alloc_urb(0, GFP_KERNEL);
702 if (!ati_remote->out_urb)
703 return -1;
705 return 0;
709 * ati_remote_free_buffers
711 static void ati_remote_free_buffers(struct ati_remote *ati_remote)
713 usb_free_urb(ati_remote->irq_urb);
714 usb_free_urb(ati_remote->out_urb);
716 usb_free_coherent(ati_remote->udev, DATA_BUFSIZE,
717 ati_remote->inbuf, ati_remote->inbuf_dma);
719 usb_free_coherent(ati_remote->udev, DATA_BUFSIZE,
720 ati_remote->outbuf, ati_remote->outbuf_dma);
723 static void ati_remote_input_init(struct ati_remote *ati_remote)
725 struct input_dev *idev = ati_remote->idev;
726 int i;
728 idev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
729 idev->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_LEFT) |
730 BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_SIDE) | BIT_MASK(BTN_EXTRA);
731 idev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
732 for (i = 0; ati_remote_tbl[i].kind != KIND_END; i++)
733 if (ati_remote_tbl[i].kind == KIND_LITERAL ||
734 ati_remote_tbl[i].kind == KIND_FILTERED)
735 __set_bit(ati_remote_tbl[i].code, idev->keybit);
737 input_set_drvdata(idev, ati_remote);
739 idev->open = ati_remote_input_open;
740 idev->close = ati_remote_input_close;
742 idev->name = ati_remote->mouse_name;
743 idev->phys = ati_remote->mouse_phys;
745 usb_to_input_id(ati_remote->udev, &idev->id);
746 idev->dev.parent = &ati_remote->interface->dev;
749 static void ati_remote_rc_init(struct ati_remote *ati_remote)
751 struct rc_dev *rdev = ati_remote->rdev;
753 rdev->priv = ati_remote;
754 rdev->allowed_protocols = RC_PROTO_BIT_OTHER;
755 rdev->driver_name = "ati_remote";
757 rdev->open = ati_remote_rc_open;
758 rdev->close = ati_remote_rc_close;
760 rdev->device_name = ati_remote->rc_name;
761 rdev->input_phys = ati_remote->rc_phys;
763 usb_to_input_id(ati_remote->udev, &rdev->input_id);
764 rdev->dev.parent = &ati_remote->interface->dev;
767 static int ati_remote_initialize(struct ati_remote *ati_remote)
769 struct usb_device *udev = ati_remote->udev;
770 int pipe, maxp;
772 init_waitqueue_head(&ati_remote->wait);
774 /* Set up irq_urb */
775 pipe = usb_rcvintpipe(udev, ati_remote->endpoint_in->bEndpointAddress);
776 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
777 maxp = (maxp > DATA_BUFSIZE) ? DATA_BUFSIZE : maxp;
779 usb_fill_int_urb(ati_remote->irq_urb, udev, pipe, ati_remote->inbuf,
780 maxp, ati_remote_irq_in, ati_remote,
781 ati_remote->endpoint_in->bInterval);
782 ati_remote->irq_urb->transfer_dma = ati_remote->inbuf_dma;
783 ati_remote->irq_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
785 /* Set up out_urb */
786 pipe = usb_sndintpipe(udev, ati_remote->endpoint_out->bEndpointAddress);
787 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
788 maxp = (maxp > DATA_BUFSIZE) ? DATA_BUFSIZE : maxp;
790 usb_fill_int_urb(ati_remote->out_urb, udev, pipe, ati_remote->outbuf,
791 maxp, ati_remote_irq_out, ati_remote,
792 ati_remote->endpoint_out->bInterval);
793 ati_remote->out_urb->transfer_dma = ati_remote->outbuf_dma;
794 ati_remote->out_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
796 /* send initialization strings */
797 if ((ati_remote_sendpacket(ati_remote, 0x8004, init1)) ||
798 (ati_remote_sendpacket(ati_remote, 0x8007, init2))) {
799 dev_err(&ati_remote->interface->dev,
800 "Initializing ati_remote hardware failed.\n");
801 return -EIO;
804 return 0;
808 * ati_remote_probe
810 static int ati_remote_probe(struct usb_interface *interface,
811 const struct usb_device_id *id)
813 struct usb_device *udev = interface_to_usbdev(interface);
814 struct usb_host_interface *iface_host = interface->cur_altsetting;
815 struct usb_endpoint_descriptor *endpoint_in, *endpoint_out;
816 struct ati_receiver_type *type = (struct ati_receiver_type *)id->driver_info;
817 struct ati_remote *ati_remote;
818 struct input_dev *input_dev;
819 struct rc_dev *rc_dev;
820 int err = -ENOMEM;
822 if (iface_host->desc.bNumEndpoints != 2) {
823 err("%s: Unexpected desc.bNumEndpoints\n", __func__);
824 return -ENODEV;
827 endpoint_in = &iface_host->endpoint[0].desc;
828 endpoint_out = &iface_host->endpoint[1].desc;
830 if (!usb_endpoint_is_int_in(endpoint_in)) {
831 err("%s: Unexpected endpoint_in\n", __func__);
832 return -ENODEV;
834 if (le16_to_cpu(endpoint_in->wMaxPacketSize) == 0) {
835 err("%s: endpoint_in message size==0? \n", __func__);
836 return -ENODEV;
839 ati_remote = kzalloc(sizeof (struct ati_remote), GFP_KERNEL);
840 rc_dev = rc_allocate_device(RC_DRIVER_SCANCODE);
841 if (!ati_remote || !rc_dev)
842 goto exit_free_dev_rdev;
844 /* Allocate URB buffers, URBs */
845 if (ati_remote_alloc_buffers(udev, ati_remote))
846 goto exit_free_buffers;
848 ati_remote->endpoint_in = endpoint_in;
849 ati_remote->endpoint_out = endpoint_out;
850 ati_remote->udev = udev;
851 ati_remote->rdev = rc_dev;
852 ati_remote->interface = interface;
854 usb_make_path(udev, ati_remote->rc_phys, sizeof(ati_remote->rc_phys));
855 strscpy(ati_remote->mouse_phys, ati_remote->rc_phys,
856 sizeof(ati_remote->mouse_phys));
858 strlcat(ati_remote->rc_phys, "/input0", sizeof(ati_remote->rc_phys));
859 strlcat(ati_remote->mouse_phys, "/input1", sizeof(ati_remote->mouse_phys));
861 snprintf(ati_remote->rc_name, sizeof(ati_remote->rc_name), "%s%s%s",
862 udev->manufacturer ?: "",
863 udev->manufacturer && udev->product ? " " : "",
864 udev->product ?: "");
866 if (!strlen(ati_remote->rc_name))
867 snprintf(ati_remote->rc_name, sizeof(ati_remote->rc_name),
868 DRIVER_DESC "(%04x,%04x)",
869 le16_to_cpu(ati_remote->udev->descriptor.idVendor),
870 le16_to_cpu(ati_remote->udev->descriptor.idProduct));
872 snprintf(ati_remote->mouse_name, sizeof(ati_remote->mouse_name),
873 "%s mouse", ati_remote->rc_name);
875 rc_dev->map_name = RC_MAP_ATI_X10; /* default map */
877 /* set default keymap according to receiver model */
878 if (type) {
879 if (type->default_keymap)
880 rc_dev->map_name = type->default_keymap;
881 else if (type->get_default_keymap)
882 rc_dev->map_name = type->get_default_keymap(interface);
885 ati_remote_rc_init(ati_remote);
886 mutex_init(&ati_remote->open_mutex);
888 /* Device Hardware Initialization - fills in ati_remote->idev from udev. */
889 err = ati_remote_initialize(ati_remote);
890 if (err)
891 goto exit_kill_urbs;
893 /* Set up and register rc device */
894 err = rc_register_device(ati_remote->rdev);
895 if (err)
896 goto exit_kill_urbs;
898 /* Set up and register mouse input device */
899 if (mouse) {
900 input_dev = input_allocate_device();
901 if (!input_dev) {
902 err = -ENOMEM;
903 goto exit_unregister_device;
906 ati_remote->idev = input_dev;
907 ati_remote_input_init(ati_remote);
908 err = input_register_device(input_dev);
910 if (err)
911 goto exit_free_input_device;
914 usb_set_intfdata(interface, ati_remote);
915 return 0;
917 exit_free_input_device:
918 input_free_device(input_dev);
919 exit_unregister_device:
920 rc_unregister_device(rc_dev);
921 rc_dev = NULL;
922 exit_kill_urbs:
923 usb_kill_urb(ati_remote->irq_urb);
924 usb_kill_urb(ati_remote->out_urb);
925 exit_free_buffers:
926 ati_remote_free_buffers(ati_remote);
927 exit_free_dev_rdev:
928 rc_free_device(rc_dev);
929 kfree(ati_remote);
930 return err;
934 * ati_remote_disconnect
936 static void ati_remote_disconnect(struct usb_interface *interface)
938 struct ati_remote *ati_remote;
940 ati_remote = usb_get_intfdata(interface);
941 usb_set_intfdata(interface, NULL);
942 if (!ati_remote) {
943 dev_warn(&interface->dev, "%s - null device?\n", __func__);
944 return;
947 usb_kill_urb(ati_remote->irq_urb);
948 usb_kill_urb(ati_remote->out_urb);
949 if (ati_remote->idev)
950 input_unregister_device(ati_remote->idev);
951 rc_unregister_device(ati_remote->rdev);
952 ati_remote_free_buffers(ati_remote);
953 kfree(ati_remote);
956 /* usb specific object to register with the usb subsystem */
957 static struct usb_driver ati_remote_driver = {
958 .name = "ati_remote",
959 .probe = ati_remote_probe,
960 .disconnect = ati_remote_disconnect,
961 .id_table = ati_remote_table,
964 module_usb_driver(ati_remote_driver);
966 MODULE_AUTHOR(DRIVER_AUTHOR);
967 MODULE_DESCRIPTION(DRIVER_DESC);
968 MODULE_LICENSE("GPL");