blob: bd5e4ff9e0ba08213ccfef975318b84ebdef19c9 [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>
Paul Bender635f76b2010-12-16 13:23:07 -030037#include <linux/usb.h>
38#include <linux/usb/input.h>
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030039#include <media/rc-core.h>
Jarod Wilson19770692010-07-26 20:32:49 -030040
Jarod Wilson7a569f52010-08-07 13:31:40 -030041#define DRIVER_VERSION "1.61"
Jarod Wilson8e9e6062010-08-03 01:07:04 -030042#define DRIVER_NAME "streamzap"
Jarod Wilson19770692010-07-26 20:32:49 -030043#define DRIVER_DESC "Streamzap Remote Control driver"
44
Jarod Wilson19770692010-07-26 20:32:49 -030045#define USB_STREAMZAP_VENDOR_ID 0x0e9c
46#define USB_STREAMZAP_PRODUCT_ID 0x0000
47
Jarod Wilson19770692010-07-26 20:32:49 -030048/* table of devices that work with this driver */
49static struct usb_device_id streamzap_table[] = {
50 /* Streamzap Remote Control */
51 { USB_DEVICE(USB_STREAMZAP_VENDOR_ID, USB_STREAMZAP_PRODUCT_ID) },
52 /* Terminating entry */
53 { }
54};
55
56MODULE_DEVICE_TABLE(usb, streamzap_table);
57
Jarod Wilsonb768d472010-10-12 10:41:27 -030058#define SZ_PULSE_MASK 0xf0
59#define SZ_SPACE_MASK 0x0f
60#define SZ_TIMEOUT 0xff
61#define SZ_RESOLUTION 256
Jarod Wilson19770692010-07-26 20:32:49 -030062
63/* number of samples buffered */
Jarod Wilson8e9e6062010-08-03 01:07:04 -030064#define SZ_BUF_LEN 128
Jarod Wilson19770692010-07-26 20:32:49 -030065
Jarod Wilson7a569f52010-08-07 13:31:40 -030066/* from ir-rc5-sz-decoder.c */
67#ifdef CONFIG_IR_RC5_SZ_DECODER_MODULE
68#define load_rc5_sz_decode() request_module("ir-rc5-sz-decoder")
69#else
Mauro Carvalho Chehab0170f6b2010-12-27 13:00:04 -030070#define load_rc5_sz_decode() {}
Jarod Wilson7a569f52010-08-07 13:31:40 -030071#endif
72
Jarod Wilson19770692010-07-26 20:32:49 -030073enum StreamzapDecoderState {
74 PulseSpace,
75 FullPulse,
76 FullSpace,
77 IgnorePulse
78};
79
Jarod Wilson8e9e6062010-08-03 01:07:04 -030080/* structure to hold our device specific stuff */
81struct streamzap_ir {
Jarod Wilson8e9e6062010-08-03 01:07:04 -030082 /* ir-core */
David Härdemand8b4b582010-10-29 16:08:23 -030083 struct rc_dev *rdev;
Jarod Wilson8e9e6062010-08-03 01:07:04 -030084
85 /* core device info */
86 struct device *dev;
Jarod Wilson19770692010-07-26 20:32:49 -030087
88 /* usb */
Jarod Wilson8e9e6062010-08-03 01:07:04 -030089 struct usb_device *usbdev;
Jarod Wilson19770692010-07-26 20:32:49 -030090 struct usb_interface *interface;
Jarod Wilson8e9e6062010-08-03 01:07:04 -030091 struct usb_endpoint_descriptor *endpoint;
92 struct urb *urb_in;
Jarod Wilson19770692010-07-26 20:32:49 -030093
94 /* buffer & dma */
95 unsigned char *buf_in;
96 dma_addr_t dma_in;
97 unsigned int buf_in_len;
98
Jarod Wilson8e9e6062010-08-03 01:07:04 -030099 /* track what state we're in */
100 enum StreamzapDecoderState decoder_state;
Jarod Wilson19770692010-07-26 20:32:49 -0300101 /* tracks whether we are currently receiving some signal */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300102 bool idle;
Jarod Wilson19770692010-07-26 20:32:49 -0300103 /* sum of signal lengths received since signal start */
104 unsigned long sum;
105 /* start time of signal; necessary for gap tracking */
106 struct timeval signal_last;
107 struct timeval signal_start;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300108 bool timeout_enabled;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300109
110 char name[128];
111 char phys[64];
Jarod Wilson19770692010-07-26 20:32:49 -0300112};
113
114
115/* local function prototypes */
116static int streamzap_probe(struct usb_interface *interface,
117 const struct usb_device_id *id);
118static void streamzap_disconnect(struct usb_interface *interface);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300119static void streamzap_callback(struct urb *urb);
Jarod Wilson19770692010-07-26 20:32:49 -0300120static int streamzap_suspend(struct usb_interface *intf, pm_message_t message);
121static int streamzap_resume(struct usb_interface *intf);
122
123/* usb specific object needed to register this driver with the usb subsystem */
Jarod Wilson19770692010-07-26 20:32:49 -0300124static struct usb_driver streamzap_driver = {
125 .name = DRIVER_NAME,
126 .probe = streamzap_probe,
127 .disconnect = streamzap_disconnect,
128 .suspend = streamzap_suspend,
129 .resume = streamzap_resume,
130 .id_table = streamzap_table,
131};
132
Jarod Wilson7a569f52010-08-07 13:31:40 -0300133static void sz_push(struct streamzap_ir *sz, struct ir_raw_event rawir)
Jarod Wilson19770692010-07-26 20:32:49 -0300134{
Jarod Wilson1338c922010-11-17 12:25:45 -0300135 dev_dbg(sz->dev, "Storing %s with duration %u us\n",
136 (rawir.pulse ? "pulse" : "space"), rawir.duration);
David Härdemand8b4b582010-10-29 16:08:23 -0300137 ir_raw_event_store_with_filter(sz->rdev, &rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300138}
139
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300140static void sz_push_full_pulse(struct streamzap_ir *sz,
141 unsigned char value)
Jarod Wilson19770692010-07-26 20:32:49 -0300142{
Maxim Levitsky46519182010-10-16 19:56:28 -0300143 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300144
Jarod Wilson19770692010-07-26 20:32:49 -0300145 if (sz->idle) {
146 long deltv;
Jarod Wilson19770692010-07-26 20:32:49 -0300147
148 sz->signal_last = sz->signal_start;
149 do_gettimeofday(&sz->signal_start);
150
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300151 deltv = sz->signal_start.tv_sec - sz->signal_last.tv_sec;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300152 rawir.pulse = false;
Jarod Wilson19770692010-07-26 20:32:49 -0300153 if (deltv > 15) {
154 /* really long time */
Jarod Wilson7a569f52010-08-07 13:31:40 -0300155 rawir.duration = IR_MAX_DURATION;
Jarod Wilson19770692010-07-26 20:32:49 -0300156 } else {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300157 rawir.duration = (int)(deltv * 1000000 +
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300158 sz->signal_start.tv_usec -
159 sz->signal_last.tv_usec);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300160 rawir.duration -= sz->sum;
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300161 rawir.duration = US_TO_NS(rawir.duration);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300162 rawir.duration &= IR_MAX_DURATION;
Jarod Wilson19770692010-07-26 20:32:49 -0300163 }
Jarod Wilson7a569f52010-08-07 13:31:40 -0300164 sz_push(sz, rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300165
Jarod Wilson7a569f52010-08-07 13:31:40 -0300166 sz->idle = false;
Jarod Wilson19770692010-07-26 20:32:49 -0300167 sz->sum = 0;
168 }
169
Jarod Wilson7a569f52010-08-07 13:31:40 -0300170 rawir.pulse = true;
Jarod Wilsonb768d472010-10-12 10:41:27 -0300171 rawir.duration = ((int) value) * SZ_RESOLUTION;
172 rawir.duration += SZ_RESOLUTION / 2;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300173 sz->sum += rawir.duration;
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300174 rawir.duration = US_TO_NS(rawir.duration);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300175 rawir.duration &= IR_MAX_DURATION;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300176 sz_push(sz, rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300177}
178
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300179static void sz_push_half_pulse(struct streamzap_ir *sz,
180 unsigned char value)
Jarod Wilson19770692010-07-26 20:32:49 -0300181{
Jarod Wilsonb768d472010-10-12 10:41:27 -0300182 sz_push_full_pulse(sz, (value & SZ_PULSE_MASK) >> 4);
Jarod Wilson19770692010-07-26 20:32:49 -0300183}
184
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300185static void sz_push_full_space(struct streamzap_ir *sz,
186 unsigned char value)
Jarod Wilson19770692010-07-26 20:32:49 -0300187{
Maxim Levitsky46519182010-10-16 19:56:28 -0300188 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300189
190 rawir.pulse = false;
Jarod Wilsonb768d472010-10-12 10:41:27 -0300191 rawir.duration = ((int) value) * SZ_RESOLUTION;
192 rawir.duration += SZ_RESOLUTION / 2;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300193 sz->sum += rawir.duration;
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300194 rawir.duration = US_TO_NS(rawir.duration);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300195 sz_push(sz, rawir);
Jarod Wilson19770692010-07-26 20:32:49 -0300196}
197
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300198static void sz_push_half_space(struct streamzap_ir *sz,
199 unsigned long value)
Jarod Wilson19770692010-07-26 20:32:49 -0300200{
Jarod Wilsonb768d472010-10-12 10:41:27 -0300201 sz_push_full_space(sz, value & SZ_SPACE_MASK);
Jarod Wilson19770692010-07-26 20:32:49 -0300202}
203
204/**
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300205 * streamzap_callback - usb IRQ handler callback
Jarod Wilson19770692010-07-26 20:32:49 -0300206 *
207 * This procedure is invoked on reception of data from
208 * the usb remote.
209 */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300210static void streamzap_callback(struct urb *urb)
Jarod Wilson19770692010-07-26 20:32:49 -0300211{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300212 struct streamzap_ir *sz;
213 unsigned int i;
214 int len;
Jarod Wilson19770692010-07-26 20:32:49 -0300215
216 if (!urb)
217 return;
218
219 sz = urb->context;
220 len = urb->actual_length;
221
222 switch (urb->status) {
223 case -ECONNRESET:
224 case -ENOENT:
225 case -ESHUTDOWN:
226 /*
227 * this urb is terminated, clean up.
228 * sz might already be invalid at this point
229 */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300230 dev_err(sz->dev, "urb terminated, status: %d\n", urb->status);
Jarod Wilson19770692010-07-26 20:32:49 -0300231 return;
232 default:
233 break;
234 }
235
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300236 dev_dbg(sz->dev, "%s: received urb, len %d\n", __func__, len);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300237 for (i = 0; i < len; i++) {
Jarod Wilson1338c922010-11-17 12:25:45 -0300238 dev_dbg(sz->dev, "sz->buf_in[%d]: %x\n",
Jarod Wilson7a569f52010-08-07 13:31:40 -0300239 i, (unsigned char)sz->buf_in[i]);
240 switch (sz->decoder_state) {
241 case PulseSpace:
Jarod Wilsonb768d472010-10-12 10:41:27 -0300242 if ((sz->buf_in[i] & SZ_PULSE_MASK) ==
243 SZ_PULSE_MASK) {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300244 sz->decoder_state = FullPulse;
245 continue;
Jarod Wilsonb768d472010-10-12 10:41:27 -0300246 } else if ((sz->buf_in[i] & SZ_SPACE_MASK)
247 == SZ_SPACE_MASK) {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300248 sz_push_half_pulse(sz, sz->buf_in[i]);
249 sz->decoder_state = FullSpace;
250 continue;
251 } else {
252 sz_push_half_pulse(sz, sz->buf_in[i]);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300253 sz_push_half_space(sz, sz->buf_in[i]);
Jarod Wilson19770692010-07-26 20:32:49 -0300254 }
Jarod Wilson7a569f52010-08-07 13:31:40 -0300255 break;
256 case FullPulse:
257 sz_push_full_pulse(sz, sz->buf_in[i]);
258 sz->decoder_state = IgnorePulse;
259 break;
260 case FullSpace:
Jarod Wilsonb768d472010-10-12 10:41:27 -0300261 if (sz->buf_in[i] == SZ_TIMEOUT) {
Maxim Levitsky46519182010-10-16 19:56:28 -0300262 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300263
264 rawir.pulse = false;
David Härdemand8b4b582010-10-29 16:08:23 -0300265 rawir.duration = sz->rdev->timeout;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300266 sz->idle = true;
267 if (sz->timeout_enabled)
268 sz_push(sz, rawir);
David Härdemand8b4b582010-10-29 16:08:23 -0300269 ir_raw_event_handle(sz->rdev);
Jarod Wilson56b0ec32011-01-27 15:08:35 -0300270 ir_raw_event_reset(sz->rdev);
Jarod Wilson7a569f52010-08-07 13:31:40 -0300271 } else {
272 sz_push_full_space(sz, sz->buf_in[i]);
273 }
274 sz->decoder_state = PulseSpace;
275 break;
276 case IgnorePulse:
Jarod Wilsonb768d472010-10-12 10:41:27 -0300277 if ((sz->buf_in[i] & SZ_SPACE_MASK) ==
278 SZ_SPACE_MASK) {
Jarod Wilson7a569f52010-08-07 13:31:40 -0300279 sz->decoder_state = FullSpace;
280 continue;
281 }
282 sz_push_half_space(sz, sz->buf_in[i]);
283 sz->decoder_state = PulseSpace;
284 break;
Jarod Wilson19770692010-07-26 20:32:49 -0300285 }
286 }
287
Jarod Wilson56b0ec32011-01-27 15:08:35 -0300288 ir_raw_event_handle(sz->rdev);
Jarod Wilson19770692010-07-26 20:32:49 -0300289 usb_submit_urb(urb, GFP_ATOMIC);
290
291 return;
292}
293
David Härdemand8b4b582010-10-29 16:08:23 -0300294static struct rc_dev *streamzap_init_rc_dev(struct streamzap_ir *sz)
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300295{
David Härdemand8b4b582010-10-29 16:08:23 -0300296 struct rc_dev *rdev;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300297 struct device *dev = sz->dev;
298 int ret;
Jarod Wilson19770692010-07-26 20:32:49 -0300299
David Härdemand8b4b582010-10-29 16:08:23 -0300300 rdev = rc_allocate_device();
301 if (!rdev) {
302 dev_err(dev, "remote dev allocation failed\n");
303 goto out;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300304 }
305
306 snprintf(sz->name, sizeof(sz->name), "Streamzap PC Remote Infrared "
307 "Receiver (%04x:%04x)",
308 le16_to_cpu(sz->usbdev->descriptor.idVendor),
309 le16_to_cpu(sz->usbdev->descriptor.idProduct));
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300310 usb_make_path(sz->usbdev, sz->phys, sizeof(sz->phys));
311 strlcat(sz->phys, "/input0", sizeof(sz->phys));
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300312
David Härdemand8b4b582010-10-29 16:08:23 -0300313 rdev->input_name = sz->name;
314 rdev->input_phys = sz->phys;
Paul Bender5ad1a552010-11-17 16:56:17 -0300315 usb_to_input_id(sz->usbdev, &rdev->input_id);
316 rdev->dev.parent = dev;
David Härdemand8b4b582010-10-29 16:08:23 -0300317 rdev->priv = sz;
318 rdev->driver_type = RC_DRIVER_IR_RAW;
James Hogan1a1934f2014-02-28 20:17:03 -0300319 rc_set_allowed_protocols(rdev, RC_BIT_ALL);
David Härdemand8b4b582010-10-29 16:08:23 -0300320 rdev->driver_name = DRIVER_NAME;
321 rdev->map_name = RC_MAP_STREAMZAP;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300322
David Härdemand8b4b582010-10-29 16:08:23 -0300323 ret = rc_register_device(rdev);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300324 if (ret < 0) {
325 dev_err(dev, "remote input device register failed\n");
David Härdemand8b4b582010-10-29 16:08:23 -0300326 goto out;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300327 }
328
David Härdemand8b4b582010-10-29 16:08:23 -0300329 return rdev;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300330
David Härdemand8b4b582010-10-29 16:08:23 -0300331out:
332 rc_free_device(rdev);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300333 return NULL;
334}
335
Jarod Wilson19770692010-07-26 20:32:49 -0300336/**
337 * streamzap_probe
338 *
339 * Called by usb-core to associated with a candidate device
340 * On any failure the return value is the ERROR
341 * On success return 0
342 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800343static int streamzap_probe(struct usb_interface *intf,
344 const struct usb_device_id *id)
Jarod Wilson19770692010-07-26 20:32:49 -0300345{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300346 struct usb_device *usbdev = interface_to_usbdev(intf);
Jarod Wilson19770692010-07-26 20:32:49 -0300347 struct usb_host_interface *iface_host;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300348 struct streamzap_ir *sz = NULL;
Jarod Wilson19770692010-07-26 20:32:49 -0300349 char buf[63], name[128] = "";
350 int retval = -ENOMEM;
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300351 int pipe, maxp;
Jarod Wilson19770692010-07-26 20:32:49 -0300352
353 /* Allocate space for device driver specific data */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300354 sz = kzalloc(sizeof(struct streamzap_ir), GFP_KERNEL);
355 if (!sz)
Jarod Wilson19770692010-07-26 20:32:49 -0300356 return -ENOMEM;
357
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300358 sz->usbdev = usbdev;
359 sz->interface = intf;
Jarod Wilson19770692010-07-26 20:32:49 -0300360
361 /* Check to ensure endpoint information matches requirements */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300362 iface_host = intf->cur_altsetting;
Jarod Wilson19770692010-07-26 20:32:49 -0300363
364 if (iface_host->desc.bNumEndpoints != 1) {
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300365 dev_err(&intf->dev, "%s: Unexpected desc.bNumEndpoints (%d)\n",
366 __func__, iface_host->desc.bNumEndpoints);
Jarod Wilson19770692010-07-26 20:32:49 -0300367 retval = -ENODEV;
368 goto free_sz;
369 }
370
371 sz->endpoint = &(iface_host->endpoint[0].desc);
372 if ((sz->endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
373 != USB_DIR_IN) {
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300374 dev_err(&intf->dev, "%s: endpoint doesn't match input device "
375 "02%02x\n", __func__, sz->endpoint->bEndpointAddress);
Jarod Wilson19770692010-07-26 20:32:49 -0300376 retval = -ENODEV;
377 goto free_sz;
378 }
379
380 if ((sz->endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
381 != USB_ENDPOINT_XFER_INT) {
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300382 dev_err(&intf->dev, "%s: endpoint attributes don't match xfer "
383 "02%02x\n", __func__, sz->endpoint->bmAttributes);
Jarod Wilson19770692010-07-26 20:32:49 -0300384 retval = -ENODEV;
385 goto free_sz;
386 }
387
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300388 pipe = usb_rcvintpipe(usbdev, sz->endpoint->bEndpointAddress);
389 maxp = usb_maxpacket(usbdev, pipe, usb_pipeout(pipe));
390
391 if (maxp == 0) {
392 dev_err(&intf->dev, "%s: endpoint Max Packet Size is 0!?!\n",
393 __func__);
Jarod Wilson19770692010-07-26 20:32:49 -0300394 retval = -ENODEV;
395 goto free_sz;
396 }
397
398 /* Allocate the USB buffer and IRQ URB */
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300399 sz->buf_in = usb_alloc_coherent(usbdev, maxp, GFP_ATOMIC, &sz->dma_in);
400 if (!sz->buf_in)
Jarod Wilson19770692010-07-26 20:32:49 -0300401 goto free_sz;
402
403 sz->urb_in = usb_alloc_urb(0, GFP_KERNEL);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300404 if (!sz->urb_in)
405 goto free_buf_in;
Jarod Wilson19770692010-07-26 20:32:49 -0300406
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300407 sz->dev = &intf->dev;
408 sz->buf_in_len = maxp;
Jarod Wilson19770692010-07-26 20:32:49 -0300409
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300410 if (usbdev->descriptor.iManufacturer
411 && usb_string(usbdev, usbdev->descriptor.iManufacturer,
Jarod Wilson19770692010-07-26 20:32:49 -0300412 buf, sizeof(buf)) > 0)
413 strlcpy(name, buf, sizeof(name));
414
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300415 if (usbdev->descriptor.iProduct
416 && usb_string(usbdev, usbdev->descriptor.iProduct,
Jarod Wilson19770692010-07-26 20:32:49 -0300417 buf, sizeof(buf)) > 0)
418 snprintf(name + strlen(name), sizeof(name) - strlen(name),
419 " %s", buf);
420
David Härdemand8b4b582010-10-29 16:08:23 -0300421 sz->rdev = streamzap_init_rc_dev(sz);
422 if (!sz->rdev)
423 goto rc_dev_fail;
Jarod Wilson19770692010-07-26 20:32:49 -0300424
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300425 sz->idle = true;
426 sz->decoder_state = PulseSpace;
Jarod Wilson7a569f52010-08-07 13:31:40 -0300427 /* FIXME: don't yet have a way to set this */
428 sz->timeout_enabled = true;
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300429 sz->rdev->timeout = ((US_TO_NS(SZ_TIMEOUT * SZ_RESOLUTION) &
Jarod Wilson1338c922010-11-17 12:25:45 -0300430 IR_MAX_DURATION) | 0x03000000);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300431 #if 0
432 /* not yet supported, depends on patches from maxim */
433 /* see also: LIRC_GET_REC_RESOLUTION and LIRC_SET_REC_TIMEOUT */
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300434 sz->min_timeout = US_TO_NS(SZ_TIMEOUT * SZ_RESOLUTION);
435 sz->max_timeout = US_TO_NS(SZ_TIMEOUT * SZ_RESOLUTION);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300436 #endif
Jarod Wilson19770692010-07-26 20:32:49 -0300437
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300438 do_gettimeofday(&sz->signal_start);
439
440 /* Complete final initialisations */
441 usb_fill_int_urb(sz->urb_in, usbdev, pipe, sz->buf_in,
442 maxp, (usb_complete_t)streamzap_callback,
443 sz, sz->endpoint->bInterval);
444 sz->urb_in->transfer_dma = sz->dma_in;
445 sz->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
446
447 usb_set_intfdata(intf, sz);
448
Jarod Wilson7a569f52010-08-07 13:31:40 -0300449 if (usb_submit_urb(sz->urb_in, GFP_ATOMIC))
450 dev_err(sz->dev, "urb submit failed\n");
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300451
452 dev_info(sz->dev, "Registered %s on usb%d:%d\n", name,
453 usbdev->bus->busnum, usbdev->devnum);
Jarod Wilson19770692010-07-26 20:32:49 -0300454
Jarod Wilson7a569f52010-08-07 13:31:40 -0300455 /* Load the streamzap not-quite-rc5 decoder too */
456 load_rc5_sz_decode();
457
Jarod Wilson19770692010-07-26 20:32:49 -0300458 return 0;
459
David Härdemand8b4b582010-10-29 16:08:23 -0300460rc_dev_fail:
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300461 usb_free_urb(sz->urb_in);
462free_buf_in:
463 usb_free_coherent(usbdev, maxp, sz->buf_in, sz->dma_in);
Jarod Wilson19770692010-07-26 20:32:49 -0300464free_sz:
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300465 kfree(sz);
Jarod Wilson19770692010-07-26 20:32:49 -0300466
467 return retval;
468}
469
Jarod Wilson19770692010-07-26 20:32:49 -0300470/**
471 * streamzap_disconnect
472 *
473 * Called by the usb core when the device is removed from the system.
474 *
475 * This routine guarantees that the driver will not submit any more urbs
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300476 * by clearing dev->usbdev. It is also supposed to terminate any currently
Jarod Wilson19770692010-07-26 20:32:49 -0300477 * active urbs. Unfortunately, usb_bulk_msg(), used in streamzap_read(),
478 * does not provide any way to do this.
479 */
480static void streamzap_disconnect(struct usb_interface *interface)
481{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300482 struct streamzap_ir *sz = usb_get_intfdata(interface);
483 struct usb_device *usbdev = interface_to_usbdev(interface);
Jarod Wilson19770692010-07-26 20:32:49 -0300484
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300485 usb_set_intfdata(interface, NULL);
Jarod Wilson19770692010-07-26 20:32:49 -0300486
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300487 if (!sz)
488 return;
Jarod Wilson19770692010-07-26 20:32:49 -0300489
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300490 sz->usbdev = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -0300491 rc_unregister_device(sz->rdev);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300492 usb_kill_urb(sz->urb_in);
Jarod Wilson19770692010-07-26 20:32:49 -0300493 usb_free_urb(sz->urb_in);
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300494 usb_free_coherent(usbdev, sz->buf_in_len, sz->buf_in, sz->dma_in);
Jarod Wilson19770692010-07-26 20:32:49 -0300495
Jarod Wilson19770692010-07-26 20:32:49 -0300496 kfree(sz);
Jarod Wilson19770692010-07-26 20:32:49 -0300497}
498
499static int streamzap_suspend(struct usb_interface *intf, pm_message_t message)
500{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300501 struct streamzap_ir *sz = usb_get_intfdata(intf);
Jarod Wilson19770692010-07-26 20:32:49 -0300502
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300503 usb_kill_urb(sz->urb_in);
504
Jarod Wilson19770692010-07-26 20:32:49 -0300505 return 0;
506}
507
508static int streamzap_resume(struct usb_interface *intf)
509{
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300510 struct streamzap_ir *sz = usb_get_intfdata(intf);
Jarod Wilson19770692010-07-26 20:32:49 -0300511
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300512 if (usb_submit_urb(sz->urb_in, GFP_ATOMIC)) {
513 dev_err(sz->dev, "Error sumbiting urb\n");
514 return -EIO;
Jarod Wilson19770692010-07-26 20:32:49 -0300515 }
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300516
Jarod Wilson19770692010-07-26 20:32:49 -0300517 return 0;
518}
519
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -0800520module_usb_driver(streamzap_driver);
Jarod Wilson19770692010-07-26 20:32:49 -0300521
Jarod Wilson8e9e6062010-08-03 01:07:04 -0300522MODULE_AUTHOR("Jarod Wilson <jarod@wilsonet.com>");
Jarod Wilson19770692010-07-26 20:32:49 -0300523MODULE_DESCRIPTION(DRIVER_DESC);
524MODULE_LICENSE("GPL");