blob: 1e65f7aa58e2d88d43e37002615f1e6d3086d34c [file] [log] [blame]
Jarod Wilson2154be62011-05-04 14:02:42 -03001/*
2 * USB RedRat3 IR Transceiver rc-core driver
3 *
4 * Copyright (c) 2011 by Jarod Wilson <jarod@redhat.com>
5 * based heavily on the work of Stephen Cox, with additional
6 * help from RedRat Ltd.
7 *
8 * This driver began life based an an old version of the first-generation
9 * lirc_mceusb driver from the lirc 0.7.2 distribution. It was then
10 * significantly rewritten by Stephen Cox with the aid of RedRat Ltd's
11 * Chris Dodge.
12 *
13 * The driver was then ported to rc-core and significantly rewritten again,
14 * by Jarod, using the in-kernel mceusb driver as a guide, after an initial
15 * port effort was started by Stephen.
16 *
17 * TODO LIST:
18 * - fix lirc not showing repeats properly
19 * --
20 *
21 * The RedRat3 is a USB transceiver with both send & receive,
22 * with 2 separate sensors available for receive to enable
23 * both good long range reception for general use, and good
24 * short range reception when required for learning a signal.
25 *
26 * http://www.redrat.co.uk/
27 *
28 * It uses its own little protocol to communicate, the required
29 * parts of which are embedded within this driver.
30 * --
31 *
32 * This program is free software; you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License as published by
34 * the Free Software Foundation; either version 2 of the License, or
35 * (at your option) any later version.
36 *
37 * This program is distributed in the hope that it will be useful,
38 * but WITHOUT ANY WARRANTY; without even the implied warranty of
39 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40 * GNU General Public License for more details.
41 *
42 * You should have received a copy of the GNU General Public License
43 * along with this program; if not, write to the Free Software
44 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
45 *
46 */
47
Sean Young4c055a52013-02-16 17:25:44 -030048#include <asm/unaligned.h>
Jarod Wilson2154be62011-05-04 14:02:42 -030049#include <linux/device.h>
Sean Youngbf139722013-07-30 19:00:04 -030050#include <linux/leds.h>
Jarod Wilson2154be62011-05-04 14:02:42 -030051#include <linux/module.h>
52#include <linux/slab.h>
53#include <linux/usb.h>
54#include <linux/usb/input.h>
55#include <media/rc-core.h>
56
57/* Driver Information */
Jarod Wilson2154be62011-05-04 14:02:42 -030058#define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
59#define DRIVER_AUTHOR2 "The Dweller, Stephen Cox"
60#define DRIVER_DESC "RedRat3 USB IR Transceiver Driver"
61#define DRIVER_NAME "redrat3"
62
Jarod Wilson2154be62011-05-04 14:02:42 -030063/* bulk data transfer types */
64#define RR3_ERROR 0x01
65#define RR3_MOD_SIGNAL_IN 0x20
66#define RR3_MOD_SIGNAL_OUT 0x21
67
68/* Get the RR firmware version */
69#define RR3_FW_VERSION 0xb1
70#define RR3_FW_VERSION_LEN 64
71/* Send encoded signal bulk-sent earlier*/
72#define RR3_TX_SEND_SIGNAL 0xb3
73#define RR3_SET_IR_PARAM 0xb7
74#define RR3_GET_IR_PARAM 0xb8
75/* Blink the red LED on the device */
76#define RR3_BLINK_LED 0xb9
77/* Read serial number of device */
78#define RR3_READ_SER_NO 0xba
79#define RR3_SER_NO_LEN 4
80/* Start capture with the RC receiver */
81#define RR3_RC_DET_ENABLE 0xbb
82/* Stop capture with the RC receiver */
83#define RR3_RC_DET_DISABLE 0xbc
84/* Return the status of RC detector capture */
85#define RR3_RC_DET_STATUS 0xbd
86/* Reset redrat */
87#define RR3_RESET 0xa0
88
89/* Max number of lengths in the signal. */
90#define RR3_IR_IO_MAX_LENGTHS 0x01
91/* Periods to measure mod. freq. */
92#define RR3_IR_IO_PERIODS_MF 0x02
93/* Size of memory for main signal data */
94#define RR3_IR_IO_SIG_MEM_SIZE 0x03
95/* Delta value when measuring lengths */
96#define RR3_IR_IO_LENGTH_FUZZ 0x04
97/* Timeout for end of signal detection */
98#define RR3_IR_IO_SIG_TIMEOUT 0x05
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -030099/* Minimum value for pause recognition. */
Jarod Wilson2154be62011-05-04 14:02:42 -0300100#define RR3_IR_IO_MIN_PAUSE 0x06
101
102/* Clock freq. of EZ-USB chip */
103#define RR3_CLK 24000000
104/* Clock periods per timer count */
105#define RR3_CLK_PER_COUNT 12
106/* (RR3_CLK / RR3_CLK_PER_COUNT) */
107#define RR3_CLK_CONV_FACTOR 2000000
108/* USB bulk-in IR data endpoint address */
109#define RR3_BULK_IN_EP_ADDR 0x82
110
Jarod Wilson2154be62011-05-04 14:02:42 -0300111/* Size of the fixed-length portion of the signal */
Jarod Wilson2154be62011-05-04 14:02:42 -0300112#define RR3_DRIVER_MAXLENS 128
113#define RR3_MAX_SIG_SIZE 512
Jarod Wilson2154be62011-05-04 14:02:42 -0300114#define RR3_TIME_UNIT 50
115#define RR3_END_OF_SIGNAL 0x7f
Jarod Wilson2154be62011-05-04 14:02:42 -0300116#define RR3_TX_TRAILER_LEN 2
117#define RR3_RX_MIN_TIMEOUT 5
118#define RR3_RX_MAX_TIMEOUT 2000
119
120/* The 8051's CPUCS Register address */
121#define RR3_CPUCS_REG_ADDR 0x7f92
122
123#define USB_RR3USB_VENDOR_ID 0x112a
124#define USB_RR3USB_PRODUCT_ID 0x0001
125#define USB_RR3IIUSB_PRODUCT_ID 0x0005
126
Sean Young4c055a52013-02-16 17:25:44 -0300127struct redrat3_header {
128 __be16 length;
129 __be16 transfer_type;
130} __packed;
131
132/* sending and receiving irdata */
133struct redrat3_irdata {
134 struct redrat3_header header;
135 __be32 pause;
136 __be16 mod_freq_count;
137 __be16 num_periods;
138 __u8 max_lengths;
139 __u8 no_lengths;
140 __be16 max_sig_size;
141 __be16 sig_size;
142 __u8 no_repeats;
143 __be16 lens[RR3_DRIVER_MAXLENS]; /* not aligned */
144 __u8 sigdata[RR3_MAX_SIG_SIZE];
145} __packed;
146
147/* firmware errors */
148struct redrat3_error {
149 struct redrat3_header header;
150 __be16 fw_error;
151} __packed;
152
Jarod Wilson2154be62011-05-04 14:02:42 -0300153/* table of devices that work with this driver */
154static struct usb_device_id redrat3_dev_table[] = {
155 /* Original version of the RedRat3 */
156 {USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3USB_PRODUCT_ID)},
157 /* Second Version/release of the RedRat3 - RetRat3-II */
158 {USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3IIUSB_PRODUCT_ID)},
159 {} /* Terminating entry */
160};
161
162/* Structure to hold all of our device specific stuff */
163struct redrat3_dev {
164 /* core device bits */
165 struct rc_dev *rc;
166 struct device *dev;
167
Sean Youngbf139722013-07-30 19:00:04 -0300168 /* led control */
169 struct led_classdev led;
170 atomic_t flash;
171 struct usb_ctrlrequest flash_control;
172 struct urb *flash_urb;
173 u8 flash_in_buf;
174
Jarod Wilson2154be62011-05-04 14:02:42 -0300175 /* save off the usb device pointer */
176 struct usb_device *udev;
177
178 /* the receive endpoint */
179 struct usb_endpoint_descriptor *ep_in;
180 /* the buffer to receive data */
Sean Young4c055a52013-02-16 17:25:44 -0300181 void *bulk_in_buf;
Jarod Wilson2154be62011-05-04 14:02:42 -0300182 /* urb used to read ir data */
183 struct urb *read_urb;
184
185 /* the send endpoint */
186 struct usb_endpoint_descriptor *ep_out;
Jarod Wilson2154be62011-05-04 14:02:42 -0300187
188 /* usb dma */
189 dma_addr_t dma_in;
Jarod Wilson2154be62011-05-04 14:02:42 -0300190
Sean Young25da6612016-07-10 13:34:37 -0300191 /* rx signal timeout */
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300192 u32 hw_timeout;
Jarod Wilson2154be62011-05-04 14:02:42 -0300193
Jarod Wilson2154be62011-05-04 14:02:42 -0300194 /* Is the device currently transmitting?*/
195 bool transmitting;
196
197 /* store for current packet */
Sean Young4c055a52013-02-16 17:25:44 -0300198 struct redrat3_irdata irdata;
Jarod Wilson2154be62011-05-04 14:02:42 -0300199 u16 bytes_read;
Jarod Wilson2154be62011-05-04 14:02:42 -0300200
201 u32 carrier;
202
Sean Young4c055a52013-02-16 17:25:44 -0300203 char name[64];
Jarod Wilson2154be62011-05-04 14:02:42 -0300204 char phys[64];
205};
206
Jarod Wilson2154be62011-05-04 14:02:42 -0300207/*
208 * redrat3_issue_async
209 *
210 * Issues an async read to the ir data in port..
211 * sets the callback to be redrat3_handle_async
212 */
213static void redrat3_issue_async(struct redrat3_dev *rr3)
214{
215 int res;
216
Jarod Wilson2154be62011-05-04 14:02:42 -0300217 res = usb_submit_urb(rr3->read_urb, GFP_ATOMIC);
218 if (res)
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700219 dev_dbg(rr3->dev,
220 "%s: receive request FAILED! (res %d, len %d)\n",
221 __func__, res, rr3->read_urb->transfer_buffer_length);
Jarod Wilson2154be62011-05-04 14:02:42 -0300222}
223
224static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code)
225{
226 if (!rr3->transmitting && (code != 0x40))
227 dev_info(rr3->dev, "fw error code 0x%02x: ", code);
228
229 switch (code) {
230 case 0x00:
231 pr_cont("No Error\n");
232 break;
233
234 /* Codes 0x20 through 0x2f are IR Firmware Errors */
235 case 0x20:
236 pr_cont("Initial signal pulse not long enough "
237 "to measure carrier frequency\n");
238 break;
239 case 0x21:
240 pr_cont("Not enough length values allocated for signal\n");
241 break;
242 case 0x22:
243 pr_cont("Not enough memory allocated for signal data\n");
244 break;
245 case 0x23:
246 pr_cont("Too many signal repeats\n");
247 break;
248 case 0x28:
249 pr_cont("Insufficient memory available for IR signal "
250 "data memory allocation\n");
251 break;
252 case 0x29:
253 pr_cont("Insufficient memory available "
254 "for IrDa signal data memory allocation\n");
255 break;
256
257 /* Codes 0x30 through 0x3f are USB Firmware Errors */
258 case 0x30:
259 pr_cont("Insufficient memory available for bulk "
260 "transfer structure\n");
261 break;
262
263 /*
264 * Other error codes... These are primarily errors that can occur in
265 * the control messages sent to the redrat
266 */
267 case 0x40:
268 if (!rr3->transmitting)
269 pr_cont("Signal capture has been terminated\n");
270 break;
271 case 0x41:
272 pr_cont("Attempt to set/get and unknown signal I/O "
273 "algorithm parameter\n");
274 break;
275 case 0x42:
276 pr_cont("Signal capture already started\n");
277 break;
278
279 default:
280 pr_cont("Unknown Error\n");
281 break;
282 }
283}
284
Sean Young4c055a52013-02-16 17:25:44 -0300285static u32 redrat3_val_to_mod_freq(struct redrat3_irdata *irdata)
Jarod Wilson2154be62011-05-04 14:02:42 -0300286{
287 u32 mod_freq = 0;
Sean Young4c055a52013-02-16 17:25:44 -0300288 u16 mod_freq_count = be16_to_cpu(irdata->mod_freq_count);
Jarod Wilson2154be62011-05-04 14:02:42 -0300289
Sean Young4c055a52013-02-16 17:25:44 -0300290 if (mod_freq_count != 0)
291 mod_freq = (RR3_CLK * be16_to_cpu(irdata->num_periods)) /
292 (mod_freq_count * RR3_CLK_PER_COUNT);
Jarod Wilson2154be62011-05-04 14:02:42 -0300293
294 return mod_freq;
295}
296
297/* this function scales down the figures for the same result... */
298static u32 redrat3_len_to_us(u32 length)
299{
300 u32 biglen = length * 1000;
301 u32 divisor = (RR3_CLK_CONV_FACTOR) / 1000;
302 u32 result = (u32) (biglen / divisor);
303
304 /* don't allow zero lengths to go back, breaks lirc */
305 return result ? result : 1;
306}
307
308/*
309 * convert us back into redrat3 lengths
310 *
311 * length * 1000 length * 1000000
312 * ------------- = ---------------- = micro
313 * rr3clk / 1000 rr3clk
314
315 * 6 * 2 4 * 3 micro * rr3clk micro * rr3clk / 1000
316 * ----- = 4 ----- = 6 -------------- = len ---------------------
317 * 3 2 1000000 1000
318 */
319static u32 redrat3_us_to_len(u32 microsec)
320{
321 u32 result;
322 u32 divisor;
323
Mauro Carvalho Chehab95cf60a2015-06-05 10:25:24 -0300324 microsec = (microsec > IR_MAX_DURATION) ? IR_MAX_DURATION : microsec;
Jarod Wilson2154be62011-05-04 14:02:42 -0300325 divisor = (RR3_CLK_CONV_FACTOR / 1000);
326 result = (u32)(microsec * divisor) / 1000;
327
328 /* don't allow zero lengths to go back, breaks lirc */
329 return result ? result : 1;
Jarod Wilson2154be62011-05-04 14:02:42 -0300330}
331
Jarod Wilson2154be62011-05-04 14:02:42 -0300332static void redrat3_process_ir_data(struct redrat3_dev *rr3)
333{
334 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson2154be62011-05-04 14:02:42 -0300335 struct device *dev;
Sean Young25da6612016-07-10 13:34:37 -0300336 unsigned int i, sig_size, single_len, offset, val;
Sean Young4c055a52013-02-16 17:25:44 -0300337 u32 mod_freq;
Jarod Wilson2154be62011-05-04 14:02:42 -0300338
339 if (!rr3) {
340 pr_err("%s called with no context!\n", __func__);
341 return;
342 }
343
Jarod Wilson2154be62011-05-04 14:02:42 -0300344 dev = rr3->dev;
Jarod Wilson2154be62011-05-04 14:02:42 -0300345
Sean Young4c055a52013-02-16 17:25:44 -0300346 mod_freq = redrat3_val_to_mod_freq(&rr3->irdata);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700347 dev_dbg(dev, "Got mod_freq of %u\n", mod_freq);
Jarod Wilson2154be62011-05-04 14:02:42 -0300348
Jarod Wilson2154be62011-05-04 14:02:42 -0300349 /* process each rr3 encoded byte into an int */
Sean Young4c055a52013-02-16 17:25:44 -0300350 sig_size = be16_to_cpu(rr3->irdata.sig_size);
351 for (i = 0; i < sig_size; i++) {
352 offset = rr3->irdata.sigdata[i];
353 val = get_unaligned_be16(&rr3->irdata.lens[offset]);
354 single_len = redrat3_len_to_us(val);
Jarod Wilson2154be62011-05-04 14:02:42 -0300355
Jarod Wilson2154be62011-05-04 14:02:42 -0300356 /* we should always get pulse/space/pulse/space samples */
357 if (i % 2)
358 rawir.pulse = false;
359 else
360 rawir.pulse = true;
361
362 rawir.duration = US_TO_NS(single_len);
Jarod Wilson2c594ff2011-07-13 18:26:06 -0300363 /* cap the value to IR_MAX_DURATION */
Mauro Carvalho Chehab95cf60a2015-06-05 10:25:24 -0300364 rawir.duration = (rawir.duration > IR_MAX_DURATION) ?
365 IR_MAX_DURATION : rawir.duration;
Jarod Wilson2c594ff2011-07-13 18:26:06 -0300366
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700367 dev_dbg(dev, "storing %s with duration %d (i: %d)\n",
Jarod Wilson2154be62011-05-04 14:02:42 -0300368 rawir.pulse ? "pulse" : "space", rawir.duration, i);
369 ir_raw_event_store_with_filter(rr3->rc, &rawir);
370 }
371
Sean Young25da6612016-07-10 13:34:37 -0300372 /* add a trailing space */
373 rawir.pulse = false;
374 rawir.timeout = true;
375 rawir.duration = US_TO_NS(rr3->hw_timeout);
376 dev_dbg(dev, "storing trailing timeout with duration %d\n",
377 rawir.duration);
378 ir_raw_event_store_with_filter(rr3->rc, &rawir);
Jarod Wilson2154be62011-05-04 14:02:42 -0300379
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700380 dev_dbg(dev, "calling ir_raw_event_handle\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300381 ir_raw_event_handle(rr3->rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300382}
383
384/* Util fn to send rr3 cmds */
Mauro Carvalho Chehab69485242015-04-29 15:00:30 -0300385static int redrat3_send_cmd(int cmd, struct redrat3_dev *rr3)
Jarod Wilson2154be62011-05-04 14:02:42 -0300386{
387 struct usb_device *udev;
388 u8 *data;
389 int res;
390
391 data = kzalloc(sizeof(u8), GFP_KERNEL);
392 if (!data)
393 return -ENOMEM;
394
395 udev = rr3->udev;
396 res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), cmd,
397 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
398 0x0000, 0x0000, data, sizeof(u8), HZ * 10);
399
400 if (res < 0) {
401 dev_err(rr3->dev, "%s: Error sending rr3 cmd res %d, data %d",
402 __func__, res, *data);
403 res = -EIO;
404 } else
Sean Young4c055a52013-02-16 17:25:44 -0300405 res = data[0];
Jarod Wilson2154be62011-05-04 14:02:42 -0300406
407 kfree(data);
408
409 return res;
410}
411
412/* Enables the long range detector and starts async receive */
413static int redrat3_enable_detector(struct redrat3_dev *rr3)
414{
415 struct device *dev = rr3->dev;
416 u8 ret;
417
Jarod Wilson2154be62011-05-04 14:02:42 -0300418 ret = redrat3_send_cmd(RR3_RC_DET_ENABLE, rr3);
419 if (ret != 0)
420 dev_dbg(dev, "%s: unexpected ret of %d\n",
421 __func__, ret);
422
423 ret = redrat3_send_cmd(RR3_RC_DET_STATUS, rr3);
424 if (ret != 1) {
425 dev_err(dev, "%s: detector status: %d, should be 1\n",
426 __func__, ret);
427 return -EIO;
428 }
429
Jarod Wilson2154be62011-05-04 14:02:42 -0300430 redrat3_issue_async(rr3);
431
432 return 0;
433}
434
Jarod Wilson2154be62011-05-04 14:02:42 -0300435static inline void redrat3_delete(struct redrat3_dev *rr3,
436 struct usb_device *udev)
437{
Jarod Wilson2154be62011-05-04 14:02:42 -0300438 usb_kill_urb(rr3->read_urb);
Sean Youngbf139722013-07-30 19:00:04 -0300439 usb_kill_urb(rr3->flash_urb);
Jarod Wilson2154be62011-05-04 14:02:42 -0300440 usb_free_urb(rr3->read_urb);
Sean Youngbf139722013-07-30 19:00:04 -0300441 usb_free_urb(rr3->flash_urb);
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300442 usb_free_coherent(udev, le16_to_cpu(rr3->ep_in->wMaxPacketSize),
Jarod Wilson2154be62011-05-04 14:02:42 -0300443 rr3->bulk_in_buf, rr3->dma_in);
Jarod Wilson2154be62011-05-04 14:02:42 -0300444
445 kfree(rr3);
446}
447
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300448static u32 redrat3_get_timeout(struct redrat3_dev *rr3)
Jarod Wilson2154be62011-05-04 14:02:42 -0300449{
Sean Young801b69f2013-02-16 17:25:43 -0300450 __be32 *tmp;
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300451 u32 timeout = MS_TO_US(150); /* a sane default, if things go haywire */
Jarod Wilson2154be62011-05-04 14:02:42 -0300452 int len, ret, pipe;
453
454 len = sizeof(*tmp);
455 tmp = kzalloc(len, GFP_KERNEL);
456 if (!tmp) {
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300457 dev_warn(rr3->dev, "Memory allocation faillure\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300458 return timeout;
459 }
460
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300461 pipe = usb_rcvctrlpipe(rr3->udev, 0);
462 ret = usb_control_msg(rr3->udev, pipe, RR3_GET_IR_PARAM,
Jarod Wilson2154be62011-05-04 14:02:42 -0300463 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
464 RR3_IR_IO_SIG_TIMEOUT, 0, tmp, len, HZ * 5);
Sean Young801b69f2013-02-16 17:25:43 -0300465 if (ret != len)
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300466 dev_warn(rr3->dev, "Failed to read timeout from hardware\n");
Sean Young801b69f2013-02-16 17:25:43 -0300467 else {
468 timeout = redrat3_len_to_us(be32_to_cpup(tmp));
469
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700470 dev_dbg(rr3->dev, "Got timeout of %d ms\n", timeout / 1000);
Jarod Wilson2154be62011-05-04 14:02:42 -0300471 }
472
Sean Young801b69f2013-02-16 17:25:43 -0300473 kfree(tmp);
Jarod Wilson2154be62011-05-04 14:02:42 -0300474
Jarod Wilson2154be62011-05-04 14:02:42 -0300475 return timeout;
476}
477
478static void redrat3_reset(struct redrat3_dev *rr3)
479{
480 struct usb_device *udev = rr3->udev;
481 struct device *dev = rr3->dev;
482 int rc, rxpipe, txpipe;
483 u8 *val;
484 int len = sizeof(u8);
485
Jarod Wilson2154be62011-05-04 14:02:42 -0300486 rxpipe = usb_rcvctrlpipe(udev, 0);
487 txpipe = usb_sndctrlpipe(udev, 0);
488
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300489 val = kmalloc(len, GFP_KERNEL);
Jarod Wilson2154be62011-05-04 14:02:42 -0300490 if (!val) {
491 dev_err(dev, "Memory allocation failure\n");
492 return;
493 }
494
495 *val = 0x01;
496 rc = usb_control_msg(udev, rxpipe, RR3_RESET,
497 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
498 RR3_CPUCS_REG_ADDR, 0, val, len, HZ * 25);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700499 dev_dbg(dev, "reset returned 0x%02x\n", rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300500
501 *val = 5;
502 rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
503 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
504 RR3_IR_IO_LENGTH_FUZZ, 0, val, len, HZ * 25);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700505 dev_dbg(dev, "set ir parm len fuzz %d rc 0x%02x\n", *val, rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300506
507 *val = RR3_DRIVER_MAXLENS;
508 rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
509 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
510 RR3_IR_IO_MAX_LENGTHS, 0, val, len, HZ * 25);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700511 dev_dbg(dev, "set ir parm max lens %d rc 0x%02x\n", *val, rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300512
513 kfree(val);
514}
515
516static void redrat3_get_firmware_rev(struct redrat3_dev *rr3)
517{
518 int rc = 0;
519 char *buffer;
520
Jarod Wilson2154be62011-05-04 14:02:42 -0300521 buffer = kzalloc(sizeof(char) * (RR3_FW_VERSION_LEN + 1), GFP_KERNEL);
522 if (!buffer) {
523 dev_err(rr3->dev, "Memory allocation failure\n");
524 return;
525 }
526
527 rc = usb_control_msg(rr3->udev, usb_rcvctrlpipe(rr3->udev, 0),
528 RR3_FW_VERSION,
529 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
530 0, 0, buffer, RR3_FW_VERSION_LEN, HZ * 5);
531
532 if (rc >= 0)
533 dev_info(rr3->dev, "Firmware rev: %s", buffer);
534 else
535 dev_err(rr3->dev, "Problem fetching firmware ID\n");
536
537 kfree(buffer);
Jarod Wilson2154be62011-05-04 14:02:42 -0300538}
539
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300540static void redrat3_read_packet_start(struct redrat3_dev *rr3, unsigned len)
Jarod Wilson2154be62011-05-04 14:02:42 -0300541{
Sean Young4c055a52013-02-16 17:25:44 -0300542 struct redrat3_header *header = rr3->bulk_in_buf;
543 unsigned pktlen, pkttype;
Jarod Wilson2154be62011-05-04 14:02:42 -0300544
Jarod Wilson2154be62011-05-04 14:02:42 -0300545 /* grab the Length and type of transfer */
Sean Young4c055a52013-02-16 17:25:44 -0300546 pktlen = be16_to_cpu(header->length);
547 pkttype = be16_to_cpu(header->transfer_type);
Jarod Wilson2154be62011-05-04 14:02:42 -0300548
Sean Young4c055a52013-02-16 17:25:44 -0300549 if (pktlen > sizeof(rr3->irdata)) {
550 dev_warn(rr3->dev, "packet length %u too large\n", pktlen);
551 return;
552 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300553
Sean Young4c055a52013-02-16 17:25:44 -0300554 switch (pkttype) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300555 case RR3_ERROR:
Sean Young4c055a52013-02-16 17:25:44 -0300556 if (len >= sizeof(struct redrat3_error)) {
557 struct redrat3_error *error = rr3->bulk_in_buf;
558 unsigned fw_error = be16_to_cpu(error->fw_error);
559 redrat3_dump_fw_error(rr3, fw_error);
560 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300561 break;
562
563 case RR3_MOD_SIGNAL_IN:
Sean Young4c055a52013-02-16 17:25:44 -0300564 memcpy(&rr3->irdata, rr3->bulk_in_buf, len);
Jarod Wilson2154be62011-05-04 14:02:42 -0300565 rr3->bytes_read = len;
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700566 dev_dbg(rr3->dev, "bytes_read %d, pktlen %d\n",
Sean Young4c055a52013-02-16 17:25:44 -0300567 rr3->bytes_read, pktlen);
Jarod Wilson2154be62011-05-04 14:02:42 -0300568 break;
569
570 default:
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700571 dev_dbg(rr3->dev, "ignoring packet with type 0x%02x, len of %d, 0x%02x\n",
Sean Young4c055a52013-02-16 17:25:44 -0300572 pkttype, len, pktlen);
Jarod Wilson2154be62011-05-04 14:02:42 -0300573 break;
574 }
575}
576
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300577static void redrat3_read_packet_continue(struct redrat3_dev *rr3, unsigned len)
Jarod Wilson2154be62011-05-04 14:02:42 -0300578{
Sean Young4c055a52013-02-16 17:25:44 -0300579 void *irdata = &rr3->irdata;
580
Sean Young4c055a52013-02-16 17:25:44 -0300581 if (len + rr3->bytes_read > sizeof(rr3->irdata)) {
582 dev_warn(rr3->dev, "too much data for packet\n");
583 rr3->bytes_read = 0;
584 return;
585 }
586
587 memcpy(irdata + rr3->bytes_read, rr3->bulk_in_buf, len);
Jarod Wilson2154be62011-05-04 14:02:42 -0300588
589 rr3->bytes_read += len;
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700590 dev_dbg(rr3->dev, "bytes_read %d, pktlen %d\n", rr3->bytes_read,
Sean Young4c055a52013-02-16 17:25:44 -0300591 be16_to_cpu(rr3->irdata.header.length));
Jarod Wilson2154be62011-05-04 14:02:42 -0300592}
593
594/* gather IR data from incoming urb, process it when we have enough */
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300595static int redrat3_get_ir_data(struct redrat3_dev *rr3, unsigned len)
Jarod Wilson2154be62011-05-04 14:02:42 -0300596{
597 struct device *dev = rr3->dev;
Sean Young4c055a52013-02-16 17:25:44 -0300598 unsigned pkttype;
Jarod Wilson2154be62011-05-04 14:02:42 -0300599 int ret = 0;
600
Sean Young4c055a52013-02-16 17:25:44 -0300601 if (rr3->bytes_read == 0 && len >= sizeof(struct redrat3_header)) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300602 redrat3_read_packet_start(rr3, len);
603 } else if (rr3->bytes_read != 0) {
604 redrat3_read_packet_continue(rr3, len);
605 } else if (rr3->bytes_read == 0) {
606 dev_err(dev, "error: no packet data read\n");
607 ret = -ENODATA;
608 goto out;
609 }
610
Sean Young38e35a82013-07-30 19:00:00 -0300611 if (rr3->bytes_read < be16_to_cpu(rr3->irdata.header.length) +
612 sizeof(struct redrat3_header))
Jarod Wilson2154be62011-05-04 14:02:42 -0300613 /* we're still accumulating data */
614 return 0;
615
616 /* if we get here, we've got IR data to decode */
Sean Young4c055a52013-02-16 17:25:44 -0300617 pkttype = be16_to_cpu(rr3->irdata.header.transfer_type);
618 if (pkttype == RR3_MOD_SIGNAL_IN)
Jarod Wilson2154be62011-05-04 14:02:42 -0300619 redrat3_process_ir_data(rr3);
620 else
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700621 dev_dbg(dev, "discarding non-signal data packet (type 0x%02x)\n",
Sean Young4c055a52013-02-16 17:25:44 -0300622 pkttype);
Jarod Wilson2154be62011-05-04 14:02:42 -0300623
624out:
625 rr3->bytes_read = 0;
Jarod Wilson2154be62011-05-04 14:02:42 -0300626 return ret;
627}
628
629/* callback function from USB when async USB request has completed */
Sean Young801b69f2013-02-16 17:25:43 -0300630static void redrat3_handle_async(struct urb *urb)
Jarod Wilson2154be62011-05-04 14:02:42 -0300631{
632 struct redrat3_dev *rr3;
Andrew Vincerdbea1882011-11-08 12:43:45 -0300633 int ret;
Jarod Wilson2154be62011-05-04 14:02:42 -0300634
635 if (!urb)
636 return;
637
638 rr3 = urb->context;
639 if (!rr3) {
640 pr_err("%s called with invalid context!\n", __func__);
641 usb_unlink_urb(urb);
642 return;
643 }
644
Jarod Wilson2154be62011-05-04 14:02:42 -0300645 switch (urb->status) {
646 case 0:
Andrew Vincerdbea1882011-11-08 12:43:45 -0300647 ret = redrat3_get_ir_data(rr3, urb->actual_length);
648 if (!ret) {
649 /* no error, prepare to read more */
650 redrat3_issue_async(rr3);
651 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300652 break;
653
654 case -ECONNRESET:
655 case -ENOENT:
656 case -ESHUTDOWN:
657 usb_unlink_urb(urb);
658 return;
659
660 case -EPIPE:
661 default:
662 dev_warn(rr3->dev, "Error: urb status = %d\n", urb->status);
663 rr3->bytes_read = 0;
Jarod Wilson2154be62011-05-04 14:02:42 -0300664 break;
665 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300666}
667
Jarod Wilson2154be62011-05-04 14:02:42 -0300668static u16 mod_freq_to_val(unsigned int mod_freq)
669{
670 int mult = 6000000;
671
672 /* Clk used in mod. freq. generation is CLK24/4. */
Sean Young4c055a52013-02-16 17:25:44 -0300673 return 65536 - (mult / mod_freq);
Jarod Wilson2154be62011-05-04 14:02:42 -0300674}
675
Andrew Vincerdbea1882011-11-08 12:43:45 -0300676static int redrat3_set_tx_carrier(struct rc_dev *rcdev, u32 carrier)
Jarod Wilson2154be62011-05-04 14:02:42 -0300677{
Andrew Vincerdbea1882011-11-08 12:43:45 -0300678 struct redrat3_dev *rr3 = rcdev->priv;
679 struct device *dev = rr3->dev;
Jarod Wilson2154be62011-05-04 14:02:42 -0300680
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700681 dev_dbg(dev, "Setting modulation frequency to %u", carrier);
Dan Carpenter48cafec2012-09-11 07:11:24 -0300682 if (carrier == 0)
683 return -EINVAL;
684
Jarod Wilson2154be62011-05-04 14:02:42 -0300685 rr3->carrier = carrier;
686
Sean Young14d81882016-07-10 13:34:33 -0300687 return 0;
Jarod Wilson2154be62011-05-04 14:02:42 -0300688}
689
Andrew Vincerdbea1882011-11-08 12:43:45 -0300690static int redrat3_transmit_ir(struct rc_dev *rcdev, unsigned *txbuf,
691 unsigned count)
Jarod Wilson2154be62011-05-04 14:02:42 -0300692{
693 struct redrat3_dev *rr3 = rcdev->priv;
694 struct device *dev = rr3->dev;
Sean Young4c055a52013-02-16 17:25:44 -0300695 struct redrat3_irdata *irdata = NULL;
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300696 int ret, ret_len;
Jarod Wilson2154be62011-05-04 14:02:42 -0300697 int lencheck, cur_sample_len, pipe;
Jarod Wilson2154be62011-05-04 14:02:42 -0300698 int *sample_lens = NULL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300699 u8 curlencheck = 0;
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300700 unsigned i, sendbuf_len;
Jarod Wilson2154be62011-05-04 14:02:42 -0300701
Jarod Wilson2154be62011-05-04 14:02:42 -0300702 if (rr3->transmitting) {
703 dev_warn(dev, "%s: transmitter already in use\n", __func__);
704 return -EAGAIN;
705 }
706
Sean Young671ea672013-07-08 17:33:09 -0300707 if (count > RR3_MAX_SIG_SIZE - RR3_TX_TRAILER_LEN)
708 return -EINVAL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300709
Andrew Vincerdbea1882011-11-08 12:43:45 -0300710 /* rr3 will disable rc detector on transmit */
Jarod Wilson2154be62011-05-04 14:02:42 -0300711 rr3->transmitting = true;
712
Jarod Wilson2154be62011-05-04 14:02:42 -0300713 sample_lens = kzalloc(sizeof(int) * RR3_DRIVER_MAXLENS, GFP_KERNEL);
714 if (!sample_lens) {
715 ret = -ENOMEM;
716 goto out;
717 }
718
Sean Young4c055a52013-02-16 17:25:44 -0300719 irdata = kzalloc(sizeof(*irdata), GFP_KERNEL);
720 if (!irdata) {
Sean Young801b69f2013-02-16 17:25:43 -0300721 ret = -ENOMEM;
722 goto out;
723 }
724
Jarod Wilson2154be62011-05-04 14:02:42 -0300725 for (i = 0; i < count; i++) {
Sean Young06eae252013-01-29 08:19:31 -0300726 cur_sample_len = redrat3_us_to_len(txbuf[i]);
Sean Young801b69f2013-02-16 17:25:43 -0300727 if (cur_sample_len > 0xffff) {
728 dev_warn(dev, "transmit period of %uus truncated to %uus\n",
729 txbuf[i], redrat3_len_to_us(0xffff));
730 cur_sample_len = 0xffff;
731 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300732 for (lencheck = 0; lencheck < curlencheck; lencheck++) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300733 if (sample_lens[lencheck] == cur_sample_len)
734 break;
735 }
736 if (lencheck == curlencheck) {
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700737 dev_dbg(dev, "txbuf[%d]=%u, pos %d, enc %u\n",
Jarod Wilson2154be62011-05-04 14:02:42 -0300738 i, txbuf[i], curlencheck, cur_sample_len);
Sean Young06eae252013-01-29 08:19:31 -0300739 if (curlencheck < RR3_DRIVER_MAXLENS) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300740 /* now convert the value to a proper
741 * rr3 value.. */
742 sample_lens[curlencheck] = cur_sample_len;
Sean Young4c055a52013-02-16 17:25:44 -0300743 put_unaligned_be16(cur_sample_len,
744 &irdata->lens[curlencheck]);
Jarod Wilson2154be62011-05-04 14:02:42 -0300745 curlencheck++;
746 } else {
Sean Young671ea672013-07-08 17:33:09 -0300747 ret = -EINVAL;
748 goto out;
Jarod Wilson2154be62011-05-04 14:02:42 -0300749 }
750 }
Sean Young4c055a52013-02-16 17:25:44 -0300751 irdata->sigdata[i] = lencheck;
Jarod Wilson2154be62011-05-04 14:02:42 -0300752 }
753
Sean Young4c055a52013-02-16 17:25:44 -0300754 irdata->sigdata[count] = RR3_END_OF_SIGNAL;
755 irdata->sigdata[count + 1] = RR3_END_OF_SIGNAL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300756
Sean Young4c055a52013-02-16 17:25:44 -0300757 sendbuf_len = offsetof(struct redrat3_irdata,
758 sigdata[count + RR3_TX_TRAILER_LEN]);
Jarod Wilson2154be62011-05-04 14:02:42 -0300759 /* fill in our packet header */
Sean Young4c055a52013-02-16 17:25:44 -0300760 irdata->header.length = cpu_to_be16(sendbuf_len -
761 sizeof(struct redrat3_header));
762 irdata->header.transfer_type = cpu_to_be16(RR3_MOD_SIGNAL_OUT);
763 irdata->pause = cpu_to_be32(redrat3_len_to_us(100));
764 irdata->mod_freq_count = cpu_to_be16(mod_freq_to_val(rr3->carrier));
765 irdata->no_lengths = curlencheck;
766 irdata->sig_size = cpu_to_be16(count + RR3_TX_TRAILER_LEN);
Jarod Wilson2154be62011-05-04 14:02:42 -0300767
768 pipe = usb_sndbulkpipe(rr3->udev, rr3->ep_out->bEndpointAddress);
Sean Young4c055a52013-02-16 17:25:44 -0300769 ret = usb_bulk_msg(rr3->udev, pipe, irdata,
Jarod Wilson2154be62011-05-04 14:02:42 -0300770 sendbuf_len, &ret_len, 10 * HZ);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700771 dev_dbg(dev, "sent %d bytes, (ret %d)\n", ret_len, ret);
Jarod Wilson2154be62011-05-04 14:02:42 -0300772
773 /* now tell the hardware to transmit what we sent it */
774 pipe = usb_rcvctrlpipe(rr3->udev, 0);
775 ret = usb_control_msg(rr3->udev, pipe, RR3_TX_SEND_SIGNAL,
776 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
Sean Young4c055a52013-02-16 17:25:44 -0300777 0, 0, irdata, 2, HZ * 10);
Jarod Wilson2154be62011-05-04 14:02:42 -0300778
779 if (ret < 0)
780 dev_err(dev, "Error: control msg send failed, rc %d\n", ret);
781 else
Andrew Vincerdbea1882011-11-08 12:43:45 -0300782 ret = count;
Jarod Wilson2154be62011-05-04 14:02:42 -0300783
784out:
785 kfree(sample_lens);
Sean Young4c055a52013-02-16 17:25:44 -0300786 kfree(irdata);
Jarod Wilson2154be62011-05-04 14:02:42 -0300787
788 rr3->transmitting = false;
Andrew Vincerdbea1882011-11-08 12:43:45 -0300789 /* rr3 re-enables rc detector because it was enabled before */
Jarod Wilson2154be62011-05-04 14:02:42 -0300790
791 return ret;
792}
793
Sean Youngbf139722013-07-30 19:00:04 -0300794static void redrat3_brightness_set(struct led_classdev *led_dev, enum
795 led_brightness brightness)
796{
797 struct redrat3_dev *rr3 = container_of(led_dev, struct redrat3_dev,
798 led);
799
800 if (brightness != LED_OFF && atomic_cmpxchg(&rr3->flash, 0, 1) == 0) {
801 int ret = usb_submit_urb(rr3->flash_urb, GFP_ATOMIC);
802 if (ret != 0) {
803 dev_dbg(rr3->dev, "%s: unexpected ret of %d\n",
804 __func__, ret);
805 atomic_set(&rr3->flash, 0);
806 }
807 }
808}
809
810static void redrat3_led_complete(struct urb *urb)
811{
812 struct redrat3_dev *rr3 = urb->context;
813
814 switch (urb->status) {
815 case 0:
816 break;
817 case -ECONNRESET:
818 case -ENOENT:
819 case -ESHUTDOWN:
820 usb_unlink_urb(urb);
821 return;
822 case -EPIPE:
823 default:
824 dev_dbg(rr3->dev, "Error: urb status = %d\n", urb->status);
825 break;
826 }
827
828 rr3->led.brightness = LED_OFF;
829 atomic_dec(&rr3->flash);
830}
831
Jarod Wilson2154be62011-05-04 14:02:42 -0300832static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3)
833{
834 struct device *dev = rr3->dev;
835 struct rc_dev *rc;
836 int ret = -ENODEV;
837 u16 prod = le16_to_cpu(rr3->udev->descriptor.idProduct);
838
839 rc = rc_allocate_device();
840 if (!rc) {
841 dev_err(dev, "remote input dev allocation failed\n");
842 goto out;
843 }
844
845 snprintf(rr3->name, sizeof(rr3->name), "RedRat3%s "
846 "Infrared Remote Transceiver (%04x:%04x)",
847 prod == USB_RR3IIUSB_PRODUCT_ID ? "-II" : "",
848 le16_to_cpu(rr3->udev->descriptor.idVendor), prod);
849
850 usb_make_path(rr3->udev, rr3->phys, sizeof(rr3->phys));
851
852 rc->input_name = rr3->name;
853 rc->input_phys = rr3->phys;
854 usb_to_input_id(rr3->udev, &rc->input_id);
855 rc->dev.parent = dev;
856 rc->priv = rr3;
857 rc->driver_type = RC_DRIVER_IR_RAW;
David Härdemanc5540fb2014-04-03 20:32:21 -0300858 rc->allowed_protocols = RC_BIT_ALL;
Sean Young25da6612016-07-10 13:34:37 -0300859 rc->timeout = US_TO_NS(rr3->hw_timeout);
Jarod Wilson2154be62011-05-04 14:02:42 -0300860 rc->tx_ir = redrat3_transmit_ir;
861 rc->s_tx_carrier = redrat3_set_tx_carrier;
862 rc->driver_name = DRIVER_NAME;
Sean Young06eae252013-01-29 08:19:31 -0300863 rc->rx_resolution = US_TO_NS(2);
Jarod Wilson2154be62011-05-04 14:02:42 -0300864 rc->map_name = RC_MAP_HAUPPAUGE;
865
866 ret = rc_register_device(rc);
867 if (ret < 0) {
868 dev_err(dev, "remote dev registration failed\n");
869 goto out;
870 }
871
872 return rc;
873
874out:
875 rc_free_device(rc);
876 return NULL;
877}
878
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800879static int redrat3_dev_probe(struct usb_interface *intf,
880 const struct usb_device_id *id)
Jarod Wilson2154be62011-05-04 14:02:42 -0300881{
882 struct usb_device *udev = interface_to_usbdev(intf);
883 struct device *dev = &intf->dev;
884 struct usb_host_interface *uhi;
885 struct redrat3_dev *rr3;
886 struct usb_endpoint_descriptor *ep;
887 struct usb_endpoint_descriptor *ep_in = NULL;
888 struct usb_endpoint_descriptor *ep_out = NULL;
889 u8 addr, attrs;
890 int pipe, i;
891 int retval = -ENOMEM;
892
Jarod Wilson2154be62011-05-04 14:02:42 -0300893 uhi = intf->cur_altsetting;
894
895 /* find our bulk-in and bulk-out endpoints */
896 for (i = 0; i < uhi->desc.bNumEndpoints; ++i) {
897 ep = &uhi->endpoint[i].desc;
898 addr = ep->bEndpointAddress;
899 attrs = ep->bmAttributes;
900
901 if ((ep_in == NULL) &&
902 ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN) &&
903 ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
904 USB_ENDPOINT_XFER_BULK)) {
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700905 dev_dbg(dev, "found bulk-in endpoint at 0x%02x\n",
Jarod Wilson2154be62011-05-04 14:02:42 -0300906 ep->bEndpointAddress);
907 /* data comes in on 0x82, 0x81 is for other data... */
908 if (ep->bEndpointAddress == RR3_BULK_IN_EP_ADDR)
909 ep_in = ep;
910 }
911
912 if ((ep_out == NULL) &&
913 ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) &&
914 ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
915 USB_ENDPOINT_XFER_BULK)) {
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700916 dev_dbg(dev, "found bulk-out endpoint at 0x%02x\n",
Jarod Wilson2154be62011-05-04 14:02:42 -0300917 ep->bEndpointAddress);
918 ep_out = ep;
919 }
920 }
921
922 if (!ep_in || !ep_out) {
923 dev_err(dev, "Couldn't find both in and out endpoints\n");
924 retval = -ENODEV;
925 goto no_endpoints;
926 }
927
928 /* allocate memory for our device state and initialize it */
929 rr3 = kzalloc(sizeof(*rr3), GFP_KERNEL);
930 if (rr3 == NULL) {
931 dev_err(dev, "Memory allocation failure\n");
Dan Carpenter7eb75712011-05-26 05:55:08 -0300932 goto no_endpoints;
Jarod Wilson2154be62011-05-04 14:02:42 -0300933 }
934
935 rr3->dev = &intf->dev;
936
937 /* set up bulk-in endpoint */
938 rr3->read_urb = usb_alloc_urb(0, GFP_KERNEL);
939 if (!rr3->read_urb) {
940 dev_err(dev, "Read urb allocation failure\n");
941 goto error;
942 }
943
944 rr3->ep_in = ep_in;
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300945 rr3->bulk_in_buf = usb_alloc_coherent(udev,
Sean Youngd0a0a652014-12-01 05:48:16 -0300946 le16_to_cpu(ep_in->wMaxPacketSize), GFP_KERNEL, &rr3->dma_in);
Jarod Wilson2154be62011-05-04 14:02:42 -0300947 if (!rr3->bulk_in_buf) {
948 dev_err(dev, "Read buffer allocation failure\n");
949 goto error;
950 }
951
952 pipe = usb_rcvbulkpipe(udev, ep_in->bEndpointAddress);
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300953 usb_fill_bulk_urb(rr3->read_urb, udev, pipe, rr3->bulk_in_buf,
954 le16_to_cpu(ep_in->wMaxPacketSize), redrat3_handle_async, rr3);
Sean Youngd0a0a652014-12-01 05:48:16 -0300955 rr3->read_urb->transfer_dma = rr3->dma_in;
956 rr3->read_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jarod Wilson2154be62011-05-04 14:02:42 -0300957
958 rr3->ep_out = ep_out;
Jarod Wilson2154be62011-05-04 14:02:42 -0300959 rr3->udev = udev;
960
961 redrat3_reset(rr3);
962 redrat3_get_firmware_rev(rr3);
963
964 /* might be all we need to do? */
965 retval = redrat3_enable_detector(rr3);
966 if (retval < 0)
967 goto error;
968
Sean Young25da6612016-07-10 13:34:37 -0300969 /* store current hardware timeout, in µs */
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300970 rr3->hw_timeout = redrat3_get_timeout(rr3);
971
Jarod Wilson2154be62011-05-04 14:02:42 -0300972 /* default.. will get overridden by any sends with a freq defined */
973 rr3->carrier = 38000;
974
Sean Youngbf139722013-07-30 19:00:04 -0300975 /* led control */
976 rr3->led.name = "redrat3:red:feedback";
977 rr3->led.default_trigger = "rc-feedback";
978 rr3->led.brightness_set = redrat3_brightness_set;
979 retval = led_classdev_register(&intf->dev, &rr3->led);
980 if (retval)
981 goto error;
982
983 atomic_set(&rr3->flash, 0);
984 rr3->flash_urb = usb_alloc_urb(0, GFP_KERNEL);
985 if (!rr3->flash_urb) {
986 retval = -ENOMEM;
987 goto led_free_error;
988 }
989
990 /* setup packet is 'c0 b9 0000 0000 0001' */
991 rr3->flash_control.bRequestType = 0xc0;
992 rr3->flash_control.bRequest = RR3_BLINK_LED;
993 rr3->flash_control.wLength = cpu_to_le16(1);
994
995 usb_fill_control_urb(rr3->flash_urb, udev, usb_rcvctrlpipe(udev, 0),
996 (unsigned char *)&rr3->flash_control,
997 &rr3->flash_in_buf, sizeof(rr3->flash_in_buf),
998 redrat3_led_complete, rr3);
999
Jarod Wilson2154be62011-05-04 14:02:42 -03001000 rr3->rc = redrat3_init_rc_dev(rr3);
Peter Senna Tschudin6ea7cf72012-09-04 08:05:05 -03001001 if (!rr3->rc) {
1002 retval = -ENOMEM;
Sean Youngbf139722013-07-30 19:00:04 -03001003 goto led_free_error;
Peter Senna Tschudin6ea7cf72012-09-04 08:05:05 -03001004 }
Jarod Wilson2154be62011-05-04 14:02:42 -03001005
1006 /* we can register the device now, as it is ready */
1007 usb_set_intfdata(intf, rr3);
1008
Jarod Wilson2154be62011-05-04 14:02:42 -03001009 return 0;
1010
Sean Youngbf139722013-07-30 19:00:04 -03001011led_free_error:
1012 led_classdev_unregister(&rr3->led);
Jarod Wilson2154be62011-05-04 14:02:42 -03001013error:
1014 redrat3_delete(rr3, rr3->udev);
1015
1016no_endpoints:
1017 dev_err(dev, "%s: retval = %x", __func__, retval);
1018
1019 return retval;
1020}
1021
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001022static void redrat3_dev_disconnect(struct usb_interface *intf)
Jarod Wilson2154be62011-05-04 14:02:42 -03001023{
1024 struct usb_device *udev = interface_to_usbdev(intf);
1025 struct redrat3_dev *rr3 = usb_get_intfdata(intf);
1026
Jarod Wilson2154be62011-05-04 14:02:42 -03001027 if (!rr3)
1028 return;
1029
Jarod Wilson2154be62011-05-04 14:02:42 -03001030 usb_set_intfdata(intf, NULL);
1031 rc_unregister_device(rr3->rc);
Sean Youngbf139722013-07-30 19:00:04 -03001032 led_classdev_unregister(&rr3->led);
Jarod Wilson2154be62011-05-04 14:02:42 -03001033 redrat3_delete(rr3, udev);
Jarod Wilson2154be62011-05-04 14:02:42 -03001034}
1035
1036static int redrat3_dev_suspend(struct usb_interface *intf, pm_message_t message)
1037{
1038 struct redrat3_dev *rr3 = usb_get_intfdata(intf);
Greg Kroah-Hartmana36d5b62014-05-28 11:34:00 -07001039
Sean Youngbf139722013-07-30 19:00:04 -03001040 led_classdev_suspend(&rr3->led);
Jarod Wilson2154be62011-05-04 14:02:42 -03001041 usb_kill_urb(rr3->read_urb);
Sean Youngbf139722013-07-30 19:00:04 -03001042 usb_kill_urb(rr3->flash_urb);
Jarod Wilson2154be62011-05-04 14:02:42 -03001043 return 0;
1044}
1045
1046static int redrat3_dev_resume(struct usb_interface *intf)
1047{
1048 struct redrat3_dev *rr3 = usb_get_intfdata(intf);
Greg Kroah-Hartmana36d5b62014-05-28 11:34:00 -07001049
Jarod Wilson2154be62011-05-04 14:02:42 -03001050 if (usb_submit_urb(rr3->read_urb, GFP_ATOMIC))
1051 return -EIO;
Sean Youngbf139722013-07-30 19:00:04 -03001052 led_classdev_resume(&rr3->led);
Jarod Wilson2154be62011-05-04 14:02:42 -03001053 return 0;
1054}
1055
1056static struct usb_driver redrat3_dev_driver = {
1057 .name = DRIVER_NAME,
1058 .probe = redrat3_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001059 .disconnect = redrat3_dev_disconnect,
Jarod Wilson2154be62011-05-04 14:02:42 -03001060 .suspend = redrat3_dev_suspend,
1061 .resume = redrat3_dev_resume,
1062 .reset_resume = redrat3_dev_resume,
1063 .id_table = redrat3_dev_table
1064};
1065
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001066module_usb_driver(redrat3_dev_driver);
Jarod Wilson2154be62011-05-04 14:02:42 -03001067
1068MODULE_DESCRIPTION(DRIVER_DESC);
1069MODULE_AUTHOR(DRIVER_AUTHOR);
1070MODULE_AUTHOR(DRIVER_AUTHOR2);
1071MODULE_LICENSE("GPL");
1072MODULE_DEVICE_TABLE(usb, redrat3_dev_table);