blob: 3a20aef67d08f97f7f0b92b143a85a67bbe24304 [file] [log] [blame]
Jarod Wilson19770692010-07-26 20:32:49 -03001/*
2 * Streamzap Remote Control driver
3 *
4 * Copyright (c) 2005 Christoph Bartelmus <lirc@bartelmus.de>
Jarod Wilson8e9e6062010-08-03 01:07:04 -03005 * Copyright (c) 2010 Jarod Wilson <jarod@wilsonet.com>
Jarod Wilson19770692010-07-26 20:32:49 -03006 *
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.
13 *
Jarod Wilson8e9e6062010-08-03 01:07:04 -030014 * Ported to in-kernel ir-core interface by Jarod Wilson
15 *
Jarod Wilson19770692010-07-26 20:32:49 -030016 * This driver is based on the USB skeleton driver packaged with the
17 * kernel; copyright (C) 2001-2003 Greg Kroah-Hartman (greg@kroah.com)
18 *
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.
23 *
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.
28 *
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
32 */
33
Jarod Wilson8e9e6062010-08-03 01:07:04 -030034#include <linux/device.h>
Jarod Wilson19770692010-07-26 20:32:49 -030035#include <linux/module.h>
Jarod Wilson8e9e6062010-08-03 01:07:04 -030036#include <linux/slab.h>
Jarod Wilson8e9e6062010-08-03 01:07:04 -030037#include <linux/input.h>
Paul Bender635f76b2010-12-16 13:23:07 -030038#include <linux/usb.h>
39#include <linux/usb/input.h>
Jarod Wilson8e9e6062010-08-03 01:07:04 -030040#include <media/ir-core.h>
Jarod Wilson19770692010-07-26 20:32:49 -030041
Jarod Wilson7a569f52010-08-07 13:31:40 -030042#define DRIVER_VERSION "1.61"
Jarod Wilson8e9e6062010-08-03 01:07:04 -030043#define DRIVER_NAME "streamzap"
Jarod Wilson19770692010-07-26 20:32:49 -030044#define DRIVER_DESC "Streamzap Remote Control driver"
45
Jarod Wilson8e9e6062010-08-03 01:07:04 -030046#ifdef CONFIG_USB_DEBUG
47static int debug = 1;
48#else
Jarod Wilson19770692010-07-26 20:32:49 -030049static int debug;
Jarod Wilson8e9e6062010-08-03 01:07:04 -030050#endif
Jarod Wilson19770692010-07-26 20:32:49 -030051
52#define USB_STREAMZAP_VENDOR_ID 0x0e9c
53#define USB_STREAMZAP_PRODUCT_ID 0x0000
54
Jarod Wilson19770692010-07-26 20:32:49 -030055/* table of devices that work with this driver */
56static struct usb_device_id streamzap_table[] = {
57 /* Streamzap Remote Control */
58 { USB_DEVICE(USB_STREAMZAP_VENDOR_ID, USB_STREAMZAP_PRODUCT_ID) },
59 /* Terminating entry */
60 { }
61};
62
63MODULE_DEVICE_TABLE(usb, streamzap_table);
64
Jarod Wilsonb768d472010-10-12 10:41:27 -030065#define SZ_PULSE_MASK 0xf0
66#define SZ_SPACE_MASK 0x0f
67#define SZ_TIMEOUT 0xff
68#define SZ_RESOLUTION 256
Jarod Wilson19770692010-07-26 20:32:49 -030069
70/* number of samples buffered */
Jarod Wilson8e9e6062010-08-03 01:07:04 -030071#define SZ_BUF_LEN 128
Jarod Wilson19770692010-07-26 20:32:49 -030072
Jarod Wilson7a569f52010-08-07 13:31:40 -030073/* from ir-rc5-sz-decoder.c */
74#ifdef CONFIG_IR_RC5_SZ_DECODER_MODULE
75#define load_rc5_sz_decode() request_module("ir-rc5-sz-decoder")
76#else
77#define load_rc5_sz_decode() 0
78#endif
79
Jarod Wilson19770692010-07-26 20:32:49 -030080enum StreamzapDecoderState {
81 PulseSpace,
82 FullPulse,
83 FullSpace,
84 IgnorePulse
85};
86
Jarod Wilson8e9e6062010-08-03 01:07:04 -030087/* structure to hold our device specific stuff */
88struct streamzap_ir {
89
90 /* ir-core */
91 struct ir_dev_props *props;
Jarod Wilson8e9e6062010-08-03 01:07:04 -030092
93 /* core device info */
94 struct device *dev;
95 struct input_dev *idev;
Jarod Wilson19770692010-07-26 20:32:49 -030096
97 /* usb */
Jarod Wilson8e9e6062010-08-03 01:07:04 -030098 struct usb_device *usbdev;
Jarod Wilson19770692010-07-26 20:32:49 -030099 struct usb_interface *interface;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300100 struct usb_endpoint_descriptor *endpoint;
101 struct urb *urb_in;
Jarod Wilson19770692010-07-26 20:32:49 -0300102
103 /* buffer & dma */
104 unsigned char *buf_in;
105 dma_addr_t dma_in;
106 unsigned int buf_in_len;
107
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300108 /* track what state we're in */
109 enum StreamzapDecoderState decoder_state;
Jarod Wilson19770692010-07-26 20:32:49 -0300110 /* tracks whether we are currently receiving some signal */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300111 bool idle;
Jarod Wilson19770692010-07-26 20:32:49 -0300112 /* sum of signal lengths received since signal start */
113 unsigned long sum;
114 /* start time of signal; necessary for gap tracking */
115 struct timeval signal_last;
116 struct timeval signal_start;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300117 bool timeout_enabled;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300118
119 char name[128];
120 char phys[64];
Jarod Wilson19770692010-07-26 20:32:49 -0300121};
122
123
124/* local function prototypes */
125static int streamzap_probe(struct usb_interface *interface,
126 const struct usb_device_id *id);
127static void streamzap_disconnect(struct usb_interface *interface);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300128static void streamzap_callback(struct urb *urb);
Jarod Wilson19770692010-07-26 20:32:49 -0300129static int streamzap_suspend(struct usb_interface *intf, pm_message_t message);
130static int streamzap_resume(struct usb_interface *intf);
131
132/* usb specific object needed to register this driver with the usb subsystem */
Jarod Wilson19770692010-07-26 20:32:49 -0300133static struct usb_driver streamzap_driver = {
134 .name = DRIVER_NAME,
135 .probe = streamzap_probe,
136 .disconnect = streamzap_disconnect,
137 .suspend = streamzap_suspend,
138 .resume = streamzap_resume,
139 .id_table = streamzap_table,
140};
141
Jarod Wilson7a569f52010-08-07 13:31:40 -0300142static void sz_push(struct streamzap_ir *sz, struct ir_raw_event rawir)
Jarod Wilson19770692010-07-26 20:32:49 -0300143{
Jarod Wilson1338c922010-11-17 12:25:45 -0300144 dev_dbg(sz->dev, "Storing %s with duration %u us\n",
145 (rawir.pulse ? "pulse" : "space"), rawir.duration);
146 ir_raw_event_store_with_filter(sz->idev, &rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300147}
148
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300149static void sz_push_full_pulse(struct streamzap_ir *sz,
150 unsigned char value)
Jarod Wilson19770692010-07-26 20:32:49 -0300151{
Maxim Levitsky46519182010-10-16 19:56:28 -0300152 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300153
Jarod Wilson19770692010-07-26 20:32:49 -0300154 if (sz->idle) {
155 long deltv;
Jarod Wilson19770692010-07-26 20:32:49 -0300156
157 sz->signal_last = sz->signal_start;
158 do_gettimeofday(&sz->signal_start);
159
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300160 deltv = sz->signal_start.tv_sec - sz->signal_last.tv_sec;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300161 rawir.pulse = false;
Jarod Wilson19770692010-07-26 20:32:49 -0300162 if (deltv > 15) {
163 /* really long time */
Jarod Wilson7a569f52010-08-07 13:31:40 -0300164 rawir.duration = IR_MAX_DURATION;
Jarod Wilson19770692010-07-26 20:32:49 -0300165 } else {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300166 rawir.duration = (int)(deltv * 1000000 +
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300167 sz->signal_start.tv_usec -
168 sz->signal_last.tv_usec);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300169 rawir.duration -= sz->sum;
170 rawir.duration *= 1000;
171 rawir.duration &= IR_MAX_DURATION;
Jarod Wilson19770692010-07-26 20:32:49 -0300172 }
Jarod Wilson7a569f52010-08-07 13:31:40 -0300173 sz_push(sz, rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300174
Jarod Wilson7a569f52010-08-07 13:31:40 -0300175 sz->idle = false;
Jarod Wilson19770692010-07-26 20:32:49 -0300176 sz->sum = 0;
177 }
178
Jarod Wilson7a569f52010-08-07 13:31:40 -0300179 rawir.pulse = true;
Jarod Wilsonb768d472010-10-12 10:41:27 -0300180 rawir.duration = ((int) value) * SZ_RESOLUTION;
181 rawir.duration += SZ_RESOLUTION / 2;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300182 sz->sum += rawir.duration;
183 rawir.duration *= 1000;
184 rawir.duration &= IR_MAX_DURATION;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300185 sz_push(sz, rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300186}
187
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300188static void sz_push_half_pulse(struct streamzap_ir *sz,
189 unsigned char value)
Jarod Wilson19770692010-07-26 20:32:49 -0300190{
Jarod Wilsonb768d472010-10-12 10:41:27 -0300191 sz_push_full_pulse(sz, (value & SZ_PULSE_MASK) >> 4);
Jarod Wilson19770692010-07-26 20:32:49 -0300192}
193
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300194static void sz_push_full_space(struct streamzap_ir *sz,
195 unsigned char value)
Jarod Wilson19770692010-07-26 20:32:49 -0300196{
Maxim Levitsky46519182010-10-16 19:56:28 -0300197 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300198
199 rawir.pulse = false;
Jarod Wilsonb768d472010-10-12 10:41:27 -0300200 rawir.duration = ((int) value) * SZ_RESOLUTION;
201 rawir.duration += SZ_RESOLUTION / 2;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300202 sz->sum += rawir.duration;
203 rawir.duration *= 1000;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300204 sz_push(sz, rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300205}
206
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300207static void sz_push_half_space(struct streamzap_ir *sz,
208 unsigned long value)
Jarod Wilson19770692010-07-26 20:32:49 -0300209{
Jarod Wilsonb768d472010-10-12 10:41:27 -0300210 sz_push_full_space(sz, value & SZ_SPACE_MASK);
Jarod Wilson19770692010-07-26 20:32:49 -0300211}
212
213/**
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300214 * streamzap_callback - usb IRQ handler callback
Jarod Wilson19770692010-07-26 20:32:49 -0300215 *
216 * This procedure is invoked on reception of data from
217 * the usb remote.
218 */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300219static void streamzap_callback(struct urb *urb)
Jarod Wilson19770692010-07-26 20:32:49 -0300220{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300221 struct streamzap_ir *sz;
222 unsigned int i;
223 int len;
Jarod Wilson19770692010-07-26 20:32:49 -0300224
225 if (!urb)
226 return;
227
228 sz = urb->context;
229 len = urb->actual_length;
230
231 switch (urb->status) {
232 case -ECONNRESET:
233 case -ENOENT:
234 case -ESHUTDOWN:
235 /*
236 * this urb is terminated, clean up.
237 * sz might already be invalid at this point
238 */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300239 dev_err(sz->dev, "urb terminated, status: %d\n", urb->status);
Jarod Wilson19770692010-07-26 20:32:49 -0300240 return;
241 default:
242 break;
243 }
244
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300245 dev_dbg(sz->dev, "%s: received urb, len %d\n", __func__, len);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300246 for (i = 0; i < len; i++) {
Jarod Wilson1338c922010-11-17 12:25:45 -0300247 dev_dbg(sz->dev, "sz->buf_in[%d]: %x\n",
Jarod Wilson7a569f52010-08-07 13:31:40 -0300248 i, (unsigned char)sz->buf_in[i]);
249 switch (sz->decoder_state) {
250 case PulseSpace:
Jarod Wilsonb768d472010-10-12 10:41:27 -0300251 if ((sz->buf_in[i] & SZ_PULSE_MASK) ==
252 SZ_PULSE_MASK) {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300253 sz->decoder_state = FullPulse;
254 continue;
Jarod Wilsonb768d472010-10-12 10:41:27 -0300255 } else if ((sz->buf_in[i] & SZ_SPACE_MASK)
256 == SZ_SPACE_MASK) {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300257 sz_push_half_pulse(sz, sz->buf_in[i]);
258 sz->decoder_state = FullSpace;
259 continue;
260 } else {
261 sz_push_half_pulse(sz, sz->buf_in[i]);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300262 sz_push_half_space(sz, sz->buf_in[i]);
Jarod Wilson19770692010-07-26 20:32:49 -0300263 }
Jarod Wilson7a569f52010-08-07 13:31:40 -0300264 break;
265 case FullPulse:
266 sz_push_full_pulse(sz, sz->buf_in[i]);
267 sz->decoder_state = IgnorePulse;
268 break;
269 case FullSpace:
Jarod Wilsonb768d472010-10-12 10:41:27 -0300270 if (sz->buf_in[i] == SZ_TIMEOUT) {
Maxim Levitsky46519182010-10-16 19:56:28 -0300271 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300272
273 rawir.pulse = false;
Jarod Wilson1338c922010-11-17 12:25:45 -0300274 rawir.duration = sz->props->timeout;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300275 sz->idle = true;
276 if (sz->timeout_enabled)
277 sz_push(sz, rawir);
278 ir_raw_event_handle(sz->idev);
279 } else {
280 sz_push_full_space(sz, sz->buf_in[i]);
281 }
282 sz->decoder_state = PulseSpace;
283 break;
284 case IgnorePulse:
Jarod Wilsonb768d472010-10-12 10:41:27 -0300285 if ((sz->buf_in[i] & SZ_SPACE_MASK) ==
286 SZ_SPACE_MASK) {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300287 sz->decoder_state = FullSpace;
288 continue;
289 }
290 sz_push_half_space(sz, sz->buf_in[i]);
291 sz->decoder_state = PulseSpace;
292 break;
Jarod Wilson19770692010-07-26 20:32:49 -0300293 }
294 }
295
296 usb_submit_urb(urb, GFP_ATOMIC);
297
298 return;
299}
300
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300301static struct input_dev *streamzap_init_input_dev(struct streamzap_ir *sz)
302{
303 struct input_dev *idev;
304 struct ir_dev_props *props;
305 struct device *dev = sz->dev;
306 int ret;
Jarod Wilson19770692010-07-26 20:32:49 -0300307
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300308 idev = input_allocate_device();
309 if (!idev) {
310 dev_err(dev, "remote input dev allocation failed\n");
311 goto idev_alloc_failed;
312 }
313
314 props = kzalloc(sizeof(struct ir_dev_props), GFP_KERNEL);
315 if (!props) {
316 dev_err(dev, "remote ir dev props allocation failed\n");
317 goto props_alloc_failed;
318 }
319
320 snprintf(sz->name, sizeof(sz->name), "Streamzap PC Remote Infrared "
321 "Receiver (%04x:%04x)",
322 le16_to_cpu(sz->usbdev->descriptor.idVendor),
323 le16_to_cpu(sz->usbdev->descriptor.idProduct));
324
325 idev->name = sz->name;
326 usb_make_path(sz->usbdev, sz->phys, sizeof(sz->phys));
327 strlcat(sz->phys, "/input0", sizeof(sz->phys));
328 idev->phys = sz->phys;
329
330 props->priv = sz;
331 props->driver_type = RC_DRIVER_IR_RAW;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300332 props->allowed_protos = IR_TYPE_ALL;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300333
334 sz->props = props;
335
Paul Bender635f76b2010-12-16 13:23:07 -0300336 usb_to_input_id(sz->usbdev, &idev->id);
337 idev->dev.parent = sz->dev;
338
Jarod Wilson7a569f52010-08-07 13:31:40 -0300339 ret = ir_input_register(idev, RC_MAP_STREAMZAP, props, DRIVER_NAME);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300340 if (ret < 0) {
341 dev_err(dev, "remote input device register failed\n");
342 goto irdev_failed;
343 }
344
345 return idev;
346
347irdev_failed:
348 kfree(props);
349props_alloc_failed:
350 input_free_device(idev);
351idev_alloc_failed:
352 return NULL;
353}
354
Jarod Wilson19770692010-07-26 20:32:49 -0300355/**
356 * streamzap_probe
357 *
358 * Called by usb-core to associated with a candidate device
359 * On any failure the return value is the ERROR
360 * On success return 0
361 */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300362static int __devinit streamzap_probe(struct usb_interface *intf,
363 const struct usb_device_id *id)
Jarod Wilson19770692010-07-26 20:32:49 -0300364{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300365 struct usb_device *usbdev = interface_to_usbdev(intf);
Jarod Wilson19770692010-07-26 20:32:49 -0300366 struct usb_host_interface *iface_host;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300367 struct streamzap_ir *sz = NULL;
Jarod Wilson19770692010-07-26 20:32:49 -0300368 char buf[63], name[128] = "";
369 int retval = -ENOMEM;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300370 int pipe, maxp;
Jarod Wilson19770692010-07-26 20:32:49 -0300371
372 /* Allocate space for device driver specific data */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300373 sz = kzalloc(sizeof(struct streamzap_ir), GFP_KERNEL);
374 if (!sz)
Jarod Wilson19770692010-07-26 20:32:49 -0300375 return -ENOMEM;
376
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300377 sz->usbdev = usbdev;
378 sz->interface = intf;
Jarod Wilson19770692010-07-26 20:32:49 -0300379
380 /* Check to ensure endpoint information matches requirements */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300381 iface_host = intf->cur_altsetting;
Jarod Wilson19770692010-07-26 20:32:49 -0300382
383 if (iface_host->desc.bNumEndpoints != 1) {
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300384 dev_err(&intf->dev, "%s: Unexpected desc.bNumEndpoints (%d)\n",
385 __func__, iface_host->desc.bNumEndpoints);
Jarod Wilson19770692010-07-26 20:32:49 -0300386 retval = -ENODEV;
387 goto free_sz;
388 }
389
390 sz->endpoint = &(iface_host->endpoint[0].desc);
391 if ((sz->endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
392 != USB_DIR_IN) {
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300393 dev_err(&intf->dev, "%s: endpoint doesn't match input device "
394 "02%02x\n", __func__, sz->endpoint->bEndpointAddress);
Jarod Wilson19770692010-07-26 20:32:49 -0300395 retval = -ENODEV;
396 goto free_sz;
397 }
398
399 if ((sz->endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
400 != USB_ENDPOINT_XFER_INT) {
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300401 dev_err(&intf->dev, "%s: endpoint attributes don't match xfer "
402 "02%02x\n", __func__, sz->endpoint->bmAttributes);
Jarod Wilson19770692010-07-26 20:32:49 -0300403 retval = -ENODEV;
404 goto free_sz;
405 }
406
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300407 pipe = usb_rcvintpipe(usbdev, sz->endpoint->bEndpointAddress);
408 maxp = usb_maxpacket(usbdev, pipe, usb_pipeout(pipe));
409
410 if (maxp == 0) {
411 dev_err(&intf->dev, "%s: endpoint Max Packet Size is 0!?!\n",
412 __func__);
Jarod Wilson19770692010-07-26 20:32:49 -0300413 retval = -ENODEV;
414 goto free_sz;
415 }
416
417 /* Allocate the USB buffer and IRQ URB */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300418 sz->buf_in = usb_alloc_coherent(usbdev, maxp, GFP_ATOMIC, &sz->dma_in);
419 if (!sz->buf_in)
Jarod Wilson19770692010-07-26 20:32:49 -0300420 goto free_sz;
421
422 sz->urb_in = usb_alloc_urb(0, GFP_KERNEL);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300423 if (!sz->urb_in)
424 goto free_buf_in;
Jarod Wilson19770692010-07-26 20:32:49 -0300425
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300426 sz->dev = &intf->dev;
427 sz->buf_in_len = maxp;
Jarod Wilson19770692010-07-26 20:32:49 -0300428
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300429 if (usbdev->descriptor.iManufacturer
430 && usb_string(usbdev, usbdev->descriptor.iManufacturer,
Jarod Wilson19770692010-07-26 20:32:49 -0300431 buf, sizeof(buf)) > 0)
432 strlcpy(name, buf, sizeof(name));
433
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300434 if (usbdev->descriptor.iProduct
435 && usb_string(usbdev, usbdev->descriptor.iProduct,
Jarod Wilson19770692010-07-26 20:32:49 -0300436 buf, sizeof(buf)) > 0)
437 snprintf(name + strlen(name), sizeof(name) - strlen(name),
438 " %s", buf);
439
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300440 sz->idev = streamzap_init_input_dev(sz);
441 if (!sz->idev)
442 goto input_dev_fail;
Jarod Wilson19770692010-07-26 20:32:49 -0300443
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300444 sz->idle = true;
445 sz->decoder_state = PulseSpace;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300446 /* FIXME: don't yet have a way to set this */
447 sz->timeout_enabled = true;
Jarod Wilson1338c922010-11-17 12:25:45 -0300448 sz->props->timeout = (((SZ_TIMEOUT * SZ_RESOLUTION * 1000) &
449 IR_MAX_DURATION) | 0x03000000);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300450 #if 0
451 /* not yet supported, depends on patches from maxim */
452 /* see also: LIRC_GET_REC_RESOLUTION and LIRC_SET_REC_TIMEOUT */
Jarod Wilsonb768d472010-10-12 10:41:27 -0300453 sz->min_timeout = SZ_TIMEOUT * SZ_RESOLUTION * 1000;
454 sz->max_timeout = SZ_TIMEOUT * SZ_RESOLUTION * 1000;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300455 #endif
Jarod Wilson19770692010-07-26 20:32:49 -0300456
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300457 do_gettimeofday(&sz->signal_start);
458
459 /* Complete final initialisations */
460 usb_fill_int_urb(sz->urb_in, usbdev, pipe, sz->buf_in,
461 maxp, (usb_complete_t)streamzap_callback,
462 sz, sz->endpoint->bInterval);
463 sz->urb_in->transfer_dma = sz->dma_in;
464 sz->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
465
466 usb_set_intfdata(intf, sz);
467
Jarod Wilson7a569f52010-08-07 13:31:40 -0300468 if (usb_submit_urb(sz->urb_in, GFP_ATOMIC))
469 dev_err(sz->dev, "urb submit failed\n");
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300470
471 dev_info(sz->dev, "Registered %s on usb%d:%d\n", name,
472 usbdev->bus->busnum, usbdev->devnum);
Jarod Wilson19770692010-07-26 20:32:49 -0300473
Jarod Wilson7a569f52010-08-07 13:31:40 -0300474 /* Load the streamzap not-quite-rc5 decoder too */
475 load_rc5_sz_decode();
476
Jarod Wilson19770692010-07-26 20:32:49 -0300477 return 0;
478
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300479input_dev_fail:
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300480 usb_free_urb(sz->urb_in);
481free_buf_in:
482 usb_free_coherent(usbdev, maxp, sz->buf_in, sz->dma_in);
Jarod Wilson19770692010-07-26 20:32:49 -0300483free_sz:
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300484 kfree(sz);
Jarod Wilson19770692010-07-26 20:32:49 -0300485
486 return retval;
487}
488
Jarod Wilson19770692010-07-26 20:32:49 -0300489/**
490 * streamzap_disconnect
491 *
492 * Called by the usb core when the device is removed from the system.
493 *
494 * This routine guarantees that the driver will not submit any more urbs
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300495 * by clearing dev->usbdev. It is also supposed to terminate any currently
Jarod Wilson19770692010-07-26 20:32:49 -0300496 * active urbs. Unfortunately, usb_bulk_msg(), used in streamzap_read(),
497 * does not provide any way to do this.
498 */
499static void streamzap_disconnect(struct usb_interface *interface)
500{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300501 struct streamzap_ir *sz = usb_get_intfdata(interface);
502 struct usb_device *usbdev = interface_to_usbdev(interface);
Jarod Wilson19770692010-07-26 20:32:49 -0300503
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300504 usb_set_intfdata(interface, NULL);
Jarod Wilson19770692010-07-26 20:32:49 -0300505
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300506 if (!sz)
507 return;
Jarod Wilson19770692010-07-26 20:32:49 -0300508
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300509 sz->usbdev = NULL;
510 ir_input_unregister(sz->idev);
511 usb_kill_urb(sz->urb_in);
Jarod Wilson19770692010-07-26 20:32:49 -0300512 usb_free_urb(sz->urb_in);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300513 usb_free_coherent(usbdev, sz->buf_in_len, sz->buf_in, sz->dma_in);
Jarod Wilson19770692010-07-26 20:32:49 -0300514
Jarod Wilson19770692010-07-26 20:32:49 -0300515 kfree(sz);
Jarod Wilson19770692010-07-26 20:32:49 -0300516}
517
518static int streamzap_suspend(struct usb_interface *intf, pm_message_t message)
519{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300520 struct streamzap_ir *sz = usb_get_intfdata(intf);
Jarod Wilson19770692010-07-26 20:32:49 -0300521
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300522 usb_kill_urb(sz->urb_in);
523
Jarod Wilson19770692010-07-26 20:32:49 -0300524 return 0;
525}
526
527static int streamzap_resume(struct usb_interface *intf)
528{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300529 struct streamzap_ir *sz = usb_get_intfdata(intf);
Jarod Wilson19770692010-07-26 20:32:49 -0300530
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300531 if (usb_submit_urb(sz->urb_in, GFP_ATOMIC)) {
532 dev_err(sz->dev, "Error sumbiting urb\n");
533 return -EIO;
Jarod Wilson19770692010-07-26 20:32:49 -0300534 }
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300535
Jarod Wilson19770692010-07-26 20:32:49 -0300536 return 0;
537}
538
539/**
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300540 * streamzap_init
Jarod Wilson19770692010-07-26 20:32:49 -0300541 */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300542static int __init streamzap_init(void)
Jarod Wilson19770692010-07-26 20:32:49 -0300543{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300544 int ret;
Jarod Wilson19770692010-07-26 20:32:49 -0300545
546 /* register this driver with the USB subsystem */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300547 ret = usb_register(&streamzap_driver);
548 if (ret < 0)
549 printk(KERN_ERR DRIVER_NAME ": usb register failed, "
550 "result = %d\n", ret);
Jarod Wilson19770692010-07-26 20:32:49 -0300551
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300552 return ret;
Jarod Wilson19770692010-07-26 20:32:49 -0300553}
554
555/**
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300556 * streamzap_exit
Jarod Wilson19770692010-07-26 20:32:49 -0300557 */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300558static void __exit streamzap_exit(void)
Jarod Wilson19770692010-07-26 20:32:49 -0300559{
560 usb_deregister(&streamzap_driver);
561}
562
563
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300564module_init(streamzap_init);
565module_exit(streamzap_exit);
Jarod Wilson19770692010-07-26 20:32:49 -0300566
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300567MODULE_AUTHOR("Jarod Wilson <jarod@wilsonet.com>");
Jarod Wilson19770692010-07-26 20:32:49 -0300568MODULE_DESCRIPTION(DRIVER_DESC);
569MODULE_LICENSE("GPL");
570
571module_param(debug, bool, S_IRUGO | S_IWUSR);
572MODULE_PARM_DESC(debug, "Enable debugging messages");