2 * Streamzap Remote Control driver
7 * This driver was based on the work of Greg Wickham and Adrian
8 * Dewhurst. It was substantially rewritten to support correct signal
9 * gaps and now maintains a delay buffer, which is used to present
10 * consistent timing behaviour to user space applications. Without the
11 * delay buffer an ugly hack would be required in lircd, which can
12 * cause sluggish signal decoding in certain situations.
14 * Ported to in-kernel ir-core interface by Jarod Wilson
16 * This driver is based on the USB skeleton driver packaged with the
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 #include <linux/device.h>
35 #include <linux/module.h>
36 #include <linux/slab.h>
37 #include <linux/usb.h>
38 #include <linux/usb/input.h>
39 #include <media/rc-core.h>
41 #define DRIVER_VERSION "1.61"
42 #define DRIVER_NAME "streamzap"
43 #define DRIVER_DESC "Streamzap Remote Control driver"
45 #ifdef CONFIG_USB_DEBUG
51 #define USB_STREAMZAP_VENDOR_ID 0x0e9c
52 #define USB_STREAMZAP_PRODUCT_ID 0x0000
54 /* table of devices that work with this driver */
55 static struct usb_device_id streamzap_table[] = {
56 /* Streamzap Remote Control */
57 { USB_DEVICE(USB_STREAMZAP_VENDOR_ID, USB_STREAMZAP_PRODUCT_ID) },
58 /* Terminating entry */
62 MODULE_DEVICE_TABLE(usb, streamzap_table);
64 #define SZ_PULSE_MASK 0xf0
65 #define SZ_SPACE_MASK 0x0f
66 #define SZ_TIMEOUT 0xff
67 #define SZ_RESOLUTION 256
69 /* number of samples buffered */
70 #define SZ_BUF_LEN 128
72 /* from ir-rc5-sz-decoder.c */
73 #ifdef CONFIG_IR_RC5_SZ_DECODER_MODULE
74 #define load_rc5_sz_decode() request_module("ir-rc5-sz-decoder")
76 #define load_rc5_sz_decode() {}
79 enum StreamzapDecoderState {
86 /* structure to hold our device specific stuff */
91 /* core device info */
95 struct usb_device *usbdev;
96 struct usb_interface *interface;
97 struct usb_endpoint_descriptor *endpoint;
101 unsigned char *buf_in;
103 unsigned int buf_in_len;
105 /* track what state we're in */
106 enum StreamzapDecoderState decoder_state;
107 /* tracks whether we are currently receiving some signal */
109 /* sum of signal lengths received since signal start */
111 /* start time of signal; necessary for gap tracking */
112 struct timeval signal_last;
113 struct timeval signal_start;
114 bool timeout_enabled;
121 /* local function prototypes */
122 static int streamzap_probe(struct usb_interface *interface,
123 const struct usb_device_id *id);
124 static void streamzap_disconnect(struct usb_interface *interface);
125 static void streamzap_callback(struct urb *urb);
126 static int streamzap_suspend(struct usb_interface *intf, pm_message_t message);
127 static int streamzap_resume(struct usb_interface *intf);
129 /* usb specific object needed to register this driver with the usb subsystem */
130 static struct usb_driver streamzap_driver = {
132 .probe = streamzap_probe,
133 .disconnect = streamzap_disconnect,
134 .suspend = streamzap_suspend,
135 .resume = streamzap_resume,
136 .id_table = streamzap_table,
139 static void sz_push(struct streamzap_ir *sz, struct ir_raw_event rawir)
141 dev_dbg(sz->dev, "Storing %s with duration %u us\n",
142 (rawir.pulse ? "pulse" : "space"), rawir.duration);
143 ir_raw_event_store_with_filter(sz->rdev, &rawir);
146 static void sz_push_full_pulse(struct streamzap_ir *sz,
149 DEFINE_IR_RAW_EVENT(rawir);
154 sz->signal_last = sz->signal_start;
155 do_gettimeofday(&sz->signal_start);
157 deltv = sz->signal_start.tv_sec - sz->signal_last.tv_sec;
160 /* really long time */
161 rawir.duration = IR_MAX_DURATION;
163 rawir.duration = (int)(deltv * 1000000 +
164 sz->signal_start.tv_usec -
165 sz->signal_last.tv_usec);
166 rawir.duration -= sz->sum;
167 rawir.duration *= 1000;
168 rawir.duration &= IR_MAX_DURATION;
177 rawir.duration = ((int) value) * SZ_RESOLUTION;
178 rawir.duration += SZ_RESOLUTION / 2;
179 sz->sum += rawir.duration;
180 rawir.duration *= 1000;
181 rawir.duration &= IR_MAX_DURATION;
185 static void sz_push_half_pulse(struct streamzap_ir *sz,
188 sz_push_full_pulse(sz, (value & SZ_PULSE_MASK) >> 4);
191 static void sz_push_full_space(struct streamzap_ir *sz,
194 DEFINE_IR_RAW_EVENT(rawir);
197 rawir.duration = ((int) value) * SZ_RESOLUTION;
198 rawir.duration += SZ_RESOLUTION / 2;
199 sz->sum += rawir.duration;
200 rawir.duration *= 1000;
204 static void sz_push_half_space(struct streamzap_ir *sz,
207 sz_push_full_space(sz, value & SZ_SPACE_MASK);
211 * streamzap_callback - usb IRQ handler callback
213 * This procedure is invoked on reception of data from
216 static void streamzap_callback(struct urb *urb)
218 struct streamzap_ir *sz;
226 len = urb->actual_length;
228 switch (urb->status) {
233 * this urb is terminated, clean up.
234 * sz might already be invalid at this point
236 dev_err(sz->dev, "urb terminated, status: %d\n", urb->status);
242 dev_dbg(sz->dev, "%s: received urb, len %d\n", __func__, len);
243 for (i = 0; i < len; i++) {
244 dev_dbg(sz->dev, "sz->buf_in[%d]: %x\n",
245 i, (unsigned char)sz->buf_in[i]);
246 switch (sz->decoder_state) {
248 if ((sz->buf_in[i] & SZ_PULSE_MASK) ==
250 sz->decoder_state = FullPulse;
252 } else if ((sz->buf_in[i] & SZ_SPACE_MASK)
254 sz_push_half_pulse(sz, sz->buf_in[i]);
255 sz->decoder_state = FullSpace;
258 sz_push_half_pulse(sz, sz->buf_in[i]);
259 sz_push_half_space(sz, sz->buf_in[i]);
263 sz_push_full_pulse(sz, sz->buf_in[i]);
264 sz->decoder_state = IgnorePulse;
267 if (sz->buf_in[i] == SZ_TIMEOUT) {
268 DEFINE_IR_RAW_EVENT(rawir);
271 rawir.duration = sz->rdev->timeout;
273 if (sz->timeout_enabled)
275 ir_raw_event_handle(sz->rdev);
277 sz_push_full_space(sz, sz->buf_in[i]);
279 sz->decoder_state = PulseSpace;
282 if ((sz->buf_in[i] & SZ_SPACE_MASK) ==
284 sz->decoder_state = FullSpace;
287 sz_push_half_space(sz, sz->buf_in[i]);
288 sz->decoder_state = PulseSpace;
293 usb_submit_urb(urb, GFP_ATOMIC);
298 static struct rc_dev *streamzap_init_rc_dev(struct streamzap_ir *sz)
301 struct device *dev = sz->dev;
304 rdev = rc_allocate_device();
306 dev_err(dev, "remote dev allocation failed\n");
310 snprintf(sz->name, sizeof(sz->name), "Streamzap PC Remote Infrared "
311 "Receiver (%04x:%04x)",
312 le16_to_cpu(sz->usbdev->descriptor.idVendor),
313 le16_to_cpu(sz->usbdev->descriptor.idProduct));
314 usb_make_path(sz->usbdev, sz->phys, sizeof(sz->phys));
315 strlcat(sz->phys, "/input0", sizeof(sz->phys));
317 rdev->input_name = sz->name;
318 rdev->input_phys = sz->phys;
319 usb_to_input_id(sz->usbdev, &rdev->input_id);
320 rdev->dev.parent = dev;
322 rdev->driver_type = RC_DRIVER_IR_RAW;
323 rdev->allowed_protos = RC_TYPE_ALL;
324 rdev->driver_name = DRIVER_NAME;
325 rdev->map_name = RC_MAP_STREAMZAP;
327 ret = rc_register_device(rdev);
329 dev_err(dev, "remote input device register failed\n");
336 rc_free_device(rdev);
343 * Called by usb-core to associated with a candidate device
344 * On any failure the return value is the ERROR
345 * On success return 0
347 static int __devinit streamzap_probe(struct usb_interface *intf,
348 const struct usb_device_id *id)
350 struct usb_device *usbdev = interface_to_usbdev(intf);
351 struct usb_host_interface *iface_host;
352 struct streamzap_ir *sz = NULL;
353 char buf[63], name[128] = "";
354 int retval = -ENOMEM;
357 /* Allocate space for device driver specific data */
358 sz = kzalloc(sizeof(struct streamzap_ir), GFP_KERNEL);
363 sz->interface = intf;
365 /* Check to ensure endpoint information matches requirements */
366 iface_host = intf->cur_altsetting;
368 if (iface_host->desc.bNumEndpoints != 1) {
369 dev_err(&intf->dev, "%s: Unexpected desc.bNumEndpoints (%d)\n",
370 __func__, iface_host->desc.bNumEndpoints);
375 sz->endpoint = &(iface_host->endpoint[0].desc);
376 if ((sz->endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
378 dev_err(&intf->dev, "%s: endpoint doesn't match input device "
379 "02%02x\n", __func__, sz->endpoint->bEndpointAddress);
384 if ((sz->endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
385 != USB_ENDPOINT_XFER_INT) {
386 dev_err(&intf->dev, "%s: endpoint attributes don't match xfer "
387 "02%02x\n", __func__, sz->endpoint->bmAttributes);
392 pipe = usb_rcvintpipe(usbdev, sz->endpoint->bEndpointAddress);
393 maxp = usb_maxpacket(usbdev, pipe, usb_pipeout(pipe));
396 dev_err(&intf->dev, "%s: endpoint Max Packet Size is 0!?!\n",
402 /* Allocate the USB buffer and IRQ URB */
403 sz->buf_in = usb_alloc_coherent(usbdev, maxp, GFP_ATOMIC, &sz->dma_in);
407 sz->urb_in = usb_alloc_urb(0, GFP_KERNEL);
411 sz->dev = &intf->dev;
412 sz->buf_in_len = maxp;
414 if (usbdev->descriptor.iManufacturer
415 && usb_string(usbdev, usbdev->descriptor.iManufacturer,
416 buf, sizeof(buf)) > 0)
417 strlcpy(name, buf, sizeof(name));
419 if (usbdev->descriptor.iProduct
420 && usb_string(usbdev, usbdev->descriptor.iProduct,
421 buf, sizeof(buf)) > 0)
422 snprintf(name + strlen(name), sizeof(name) - strlen(name),
425 sz->rdev = streamzap_init_rc_dev(sz);
430 sz->decoder_state = PulseSpace;
431 /* FIXME: don't yet have a way to set this */
432 sz->timeout_enabled = true;
433 sz->rdev->timeout = (((SZ_TIMEOUT * SZ_RESOLUTION * 1000) &
434 IR_MAX_DURATION) | 0x03000000);
436 /* not yet supported, depends on patches from maxim */
437 /* see also: LIRC_GET_REC_RESOLUTION and LIRC_SET_REC_TIMEOUT */
438 sz->min_timeout = SZ_TIMEOUT * SZ_RESOLUTION * 1000;
439 sz->max_timeout = SZ_TIMEOUT * SZ_RESOLUTION * 1000;
442 do_gettimeofday(&sz->signal_start);
444 /* Complete final initialisations */
445 usb_fill_int_urb(sz->urb_in, usbdev, pipe, sz->buf_in,
446 maxp, (usb_complete_t)streamzap_callback,
447 sz, sz->endpoint->bInterval);
448 sz->urb_in->transfer_dma = sz->dma_in;
449 sz->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
451 usb_set_intfdata(intf, sz);
453 if (usb_submit_urb(sz->urb_in, GFP_ATOMIC))
454 dev_err(sz->dev, "urb submit failed\n");
456 dev_info(sz->dev, "Registered %s on usb%d:%d\n", name,
457 usbdev->bus->busnum, usbdev->devnum);
459 /* Load the streamzap not-quite-rc5 decoder too */
460 load_rc5_sz_decode();
465 usb_free_urb(sz->urb_in);
467 usb_free_coherent(usbdev, maxp, sz->buf_in, sz->dma_in);
475 * streamzap_disconnect
477 * Called by the usb core when the device is removed from the system.
479 * This routine guarantees that the driver will not submit any more urbs
480 * by clearing dev->usbdev. It is also supposed to terminate any currently
481 * active urbs. Unfortunately, usb_bulk_msg(), used in streamzap_read(),
482 * does not provide any way to do this.
484 static void streamzap_disconnect(struct usb_interface *interface)
486 struct streamzap_ir *sz = usb_get_intfdata(interface);
487 struct usb_device *usbdev = interface_to_usbdev(interface);
489 usb_set_intfdata(interface, NULL);
495 rc_unregister_device(sz->rdev);
496 usb_kill_urb(sz->urb_in);
497 usb_free_urb(sz->urb_in);
498 usb_free_coherent(usbdev, sz->buf_in_len, sz->buf_in, sz->dma_in);
503 static int streamzap_suspend(struct usb_interface *intf, pm_message_t message)
505 struct streamzap_ir *sz = usb_get_intfdata(intf);
507 usb_kill_urb(sz->urb_in);
512 static int streamzap_resume(struct usb_interface *intf)
514 struct streamzap_ir *sz = usb_get_intfdata(intf);
516 if (usb_submit_urb(sz->urb_in, GFP_ATOMIC)) {
517 dev_err(sz->dev, "Error sumbiting urb\n");
527 static int __init streamzap_init(void)
531 /* register this driver with the USB subsystem */
532 ret = usb_register(&streamzap_driver);
534 printk(KERN_ERR DRIVER_NAME ": usb register failed, "
535 "result = %d\n", ret);
543 static void __exit streamzap_exit(void)
545 usb_deregister(&streamzap_driver);
549 module_init(streamzap_init);
550 module_exit(streamzap_exit);
553 MODULE_DESCRIPTION(DRIVER_DESC);
554 MODULE_LICENSE("GPL");
556 module_param(debug, bool, S_IRUGO | S_IWUSR);
557 MODULE_PARM_DESC(debug, "Enable debugging messages");