blob: 06bea6c00620bdb8ad5bdea9bc33e375e49829a4 [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 *
Jarod Wilson2154be62011-05-04 14:02:42 -030042 */
43
Sean Young4c055a52013-02-16 17:25:44 -030044#include <asm/unaligned.h>
Jarod Wilson2154be62011-05-04 14:02:42 -030045#include <linux/device.h>
Sean Youngbf139722013-07-30 19:00:04 -030046#include <linux/leds.h>
Jarod Wilson2154be62011-05-04 14:02:42 -030047#include <linux/module.h>
48#include <linux/slab.h>
49#include <linux/usb.h>
50#include <linux/usb/input.h>
51#include <media/rc-core.h>
52
53/* Driver Information */
Jarod Wilson2154be62011-05-04 14:02:42 -030054#define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
55#define DRIVER_AUTHOR2 "The Dweller, Stephen Cox"
56#define DRIVER_DESC "RedRat3 USB IR Transceiver Driver"
57#define DRIVER_NAME "redrat3"
58
Jarod Wilson2154be62011-05-04 14:02:42 -030059/* bulk data transfer types */
60#define RR3_ERROR 0x01
61#define RR3_MOD_SIGNAL_IN 0x20
62#define RR3_MOD_SIGNAL_OUT 0x21
63
64/* Get the RR firmware version */
65#define RR3_FW_VERSION 0xb1
66#define RR3_FW_VERSION_LEN 64
67/* Send encoded signal bulk-sent earlier*/
68#define RR3_TX_SEND_SIGNAL 0xb3
69#define RR3_SET_IR_PARAM 0xb7
70#define RR3_GET_IR_PARAM 0xb8
71/* Blink the red LED on the device */
72#define RR3_BLINK_LED 0xb9
73/* Read serial number of device */
74#define RR3_READ_SER_NO 0xba
75#define RR3_SER_NO_LEN 4
76/* Start capture with the RC receiver */
77#define RR3_RC_DET_ENABLE 0xbb
78/* Stop capture with the RC receiver */
79#define RR3_RC_DET_DISABLE 0xbc
Sean Youngc49fcdd2016-10-31 19:13:11 -020080/* Start capture with the wideband receiver */
81#define RR3_MODSIG_CAPTURE 0xb2
Jarod Wilson2154be62011-05-04 14:02:42 -030082/* Return the status of RC detector capture */
83#define RR3_RC_DET_STATUS 0xbd
84/* Reset redrat */
85#define RR3_RESET 0xa0
86
87/* Max number of lengths in the signal. */
88#define RR3_IR_IO_MAX_LENGTHS 0x01
89/* Periods to measure mod. freq. */
90#define RR3_IR_IO_PERIODS_MF 0x02
91/* Size of memory for main signal data */
92#define RR3_IR_IO_SIG_MEM_SIZE 0x03
93/* Delta value when measuring lengths */
94#define RR3_IR_IO_LENGTH_FUZZ 0x04
95/* Timeout for end of signal detection */
96#define RR3_IR_IO_SIG_TIMEOUT 0x05
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -030097/* Minimum value for pause recognition. */
Jarod Wilson2154be62011-05-04 14:02:42 -030098#define RR3_IR_IO_MIN_PAUSE 0x06
99
100/* Clock freq. of EZ-USB chip */
101#define RR3_CLK 24000000
102/* Clock periods per timer count */
103#define RR3_CLK_PER_COUNT 12
104/* (RR3_CLK / RR3_CLK_PER_COUNT) */
105#define RR3_CLK_CONV_FACTOR 2000000
Sean Youngc49fcdd2016-10-31 19:13:11 -0200106/* USB bulk-in wideband IR data endpoint address */
107#define RR3_WIDE_IN_EP_ADDR 0x81
108/* USB bulk-in narrowband IR data endpoint address */
109#define RR3_NARROW_IN_EP_ADDR 0x82
Jarod Wilson2154be62011-05-04 14:02:42 -0300110
Jarod Wilson2154be62011-05-04 14:02:42 -0300111/* Size of the fixed-length portion of the signal */
Sean Younga48c4bb2016-10-31 15:52:24 -0200112#define RR3_DRIVER_MAXLENS 255
Jarod Wilson2154be62011-05-04 14:02:42 -0300113#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 Youngd6ae1622016-07-20 14:03:50 -0300127
128/*
129 * The redrat3 encodes an IR signal as set of different lengths and a set
130 * of indices into those lengths. This sets how much two lengths must
131 * differ before they are considered distinct, the value is specified
132 * in microseconds.
133 * Default 5, value 0 to 127.
134 */
135static int length_fuzz = 5;
136module_param(length_fuzz, uint, 0644);
137MODULE_PARM_DESC(length_fuzz, "Length Fuzz (0-127)");
138
139/*
140 * When receiving a continuous ir stream (for example when a user is
141 * holding a button down on a remote), this specifies the minimum size
142 * of a space when the redrat3 sends a irdata packet to the host. Specified
143 * in miliseconds. Default value 18ms.
144 * The value can be between 2 and 30 inclusive.
145 */
146static int minimum_pause = 18;
147module_param(minimum_pause, uint, 0644);
148MODULE_PARM_DESC(minimum_pause, "Minimum Pause in ms (2-30)");
149
150/*
151 * The carrier frequency is measured during the first pulse of the IR
152 * signal. The larger the number of periods used To measure, the more
153 * accurate the result is likely to be, however some signals have short
154 * initial pulses, so in some case it may be necessary to reduce this value.
155 * Default 8, value 1 to 255.
156 */
157static int periods_measure_carrier = 8;
158module_param(periods_measure_carrier, uint, 0644);
159MODULE_PARM_DESC(periods_measure_carrier, "Number of Periods to Measure Carrier (1-255)");
160
161
Sean Young4c055a52013-02-16 17:25:44 -0300162struct redrat3_header {
163 __be16 length;
164 __be16 transfer_type;
165} __packed;
166
167/* sending and receiving irdata */
168struct redrat3_irdata {
169 struct redrat3_header header;
170 __be32 pause;
171 __be16 mod_freq_count;
172 __be16 num_periods;
173 __u8 max_lengths;
174 __u8 no_lengths;
175 __be16 max_sig_size;
176 __be16 sig_size;
177 __u8 no_repeats;
178 __be16 lens[RR3_DRIVER_MAXLENS]; /* not aligned */
179 __u8 sigdata[RR3_MAX_SIG_SIZE];
180} __packed;
181
182/* firmware errors */
183struct redrat3_error {
184 struct redrat3_header header;
185 __be16 fw_error;
186} __packed;
187
Jarod Wilson2154be62011-05-04 14:02:42 -0300188/* table of devices that work with this driver */
189static struct usb_device_id redrat3_dev_table[] = {
190 /* Original version of the RedRat3 */
191 {USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3USB_PRODUCT_ID)},
192 /* Second Version/release of the RedRat3 - RetRat3-II */
193 {USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3IIUSB_PRODUCT_ID)},
194 {} /* Terminating entry */
195};
196
197/* Structure to hold all of our device specific stuff */
198struct redrat3_dev {
199 /* core device bits */
200 struct rc_dev *rc;
201 struct device *dev;
202
Sean Youngbf139722013-07-30 19:00:04 -0300203 /* led control */
204 struct led_classdev led;
205 atomic_t flash;
206 struct usb_ctrlrequest flash_control;
207 struct urb *flash_urb;
208 u8 flash_in_buf;
209
Sean Youngc49fcdd2016-10-31 19:13:11 -0200210 /* learning */
211 bool wideband;
212 struct usb_ctrlrequest learn_control;
213 struct urb *learn_urb;
214 u8 learn_buf;
215
Jarod Wilson2154be62011-05-04 14:02:42 -0300216 /* save off the usb device pointer */
217 struct usb_device *udev;
218
219 /* the receive endpoint */
Sean Youngc49fcdd2016-10-31 19:13:11 -0200220 struct usb_endpoint_descriptor *ep_narrow;
Jarod Wilson2154be62011-05-04 14:02:42 -0300221 /* the buffer to receive data */
Sean Young4c055a52013-02-16 17:25:44 -0300222 void *bulk_in_buf;
Jarod Wilson2154be62011-05-04 14:02:42 -0300223 /* urb used to read ir data */
Sean Youngc49fcdd2016-10-31 19:13:11 -0200224 struct urb *narrow_urb;
225 struct urb *wide_urb;
Jarod Wilson2154be62011-05-04 14:02:42 -0300226
227 /* the send endpoint */
228 struct usb_endpoint_descriptor *ep_out;
Jarod Wilson2154be62011-05-04 14:02:42 -0300229
230 /* usb dma */
231 dma_addr_t dma_in;
Jarod Wilson2154be62011-05-04 14:02:42 -0300232
Jarod Wilson2154be62011-05-04 14:02:42 -0300233 /* Is the device currently transmitting?*/
234 bool transmitting;
235
236 /* store for current packet */
Sean Young4c055a52013-02-16 17:25:44 -0300237 struct redrat3_irdata irdata;
Jarod Wilson2154be62011-05-04 14:02:42 -0300238 u16 bytes_read;
Jarod Wilson2154be62011-05-04 14:02:42 -0300239
240 u32 carrier;
241
Sean Young4c055a52013-02-16 17:25:44 -0300242 char name[64];
Jarod Wilson2154be62011-05-04 14:02:42 -0300243 char phys[64];
244};
245
Jarod Wilson2154be62011-05-04 14:02:42 -0300246static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code)
247{
248 if (!rr3->transmitting && (code != 0x40))
249 dev_info(rr3->dev, "fw error code 0x%02x: ", code);
250
251 switch (code) {
252 case 0x00:
253 pr_cont("No Error\n");
254 break;
255
256 /* Codes 0x20 through 0x2f are IR Firmware Errors */
257 case 0x20:
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200258 pr_cont("Initial signal pulse not long enough to measure carrier frequency\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300259 break;
260 case 0x21:
261 pr_cont("Not enough length values allocated for signal\n");
262 break;
263 case 0x22:
264 pr_cont("Not enough memory allocated for signal data\n");
265 break;
266 case 0x23:
267 pr_cont("Too many signal repeats\n");
268 break;
269 case 0x28:
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200270 pr_cont("Insufficient memory available for IR signal data memory allocation\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300271 break;
272 case 0x29:
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200273 pr_cont("Insufficient memory available for IrDa signal data memory allocation\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300274 break;
275
276 /* Codes 0x30 through 0x3f are USB Firmware Errors */
277 case 0x30:
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200278 pr_cont("Insufficient memory available for bulk transfer structure\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300279 break;
280
281 /*
282 * Other error codes... These are primarily errors that can occur in
283 * the control messages sent to the redrat
284 */
285 case 0x40:
286 if (!rr3->transmitting)
287 pr_cont("Signal capture has been terminated\n");
288 break;
289 case 0x41:
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200290 pr_cont("Attempt to set/get and unknown signal I/O algorithm parameter\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300291 break;
292 case 0x42:
293 pr_cont("Signal capture already started\n");
294 break;
295
296 default:
297 pr_cont("Unknown Error\n");
298 break;
299 }
300}
301
Sean Young4c055a52013-02-16 17:25:44 -0300302static u32 redrat3_val_to_mod_freq(struct redrat3_irdata *irdata)
Jarod Wilson2154be62011-05-04 14:02:42 -0300303{
304 u32 mod_freq = 0;
Sean Young4c055a52013-02-16 17:25:44 -0300305 u16 mod_freq_count = be16_to_cpu(irdata->mod_freq_count);
Jarod Wilson2154be62011-05-04 14:02:42 -0300306
Sean Young4c055a52013-02-16 17:25:44 -0300307 if (mod_freq_count != 0)
308 mod_freq = (RR3_CLK * be16_to_cpu(irdata->num_periods)) /
309 (mod_freq_count * RR3_CLK_PER_COUNT);
Jarod Wilson2154be62011-05-04 14:02:42 -0300310
311 return mod_freq;
312}
313
314/* this function scales down the figures for the same result... */
315static u32 redrat3_len_to_us(u32 length)
316{
317 u32 biglen = length * 1000;
318 u32 divisor = (RR3_CLK_CONV_FACTOR) / 1000;
319 u32 result = (u32) (biglen / divisor);
320
321 /* don't allow zero lengths to go back, breaks lirc */
322 return result ? result : 1;
323}
324
325/*
326 * convert us back into redrat3 lengths
327 *
328 * length * 1000 length * 1000000
329 * ------------- = ---------------- = micro
330 * rr3clk / 1000 rr3clk
331
332 * 6 * 2 4 * 3 micro * rr3clk micro * rr3clk / 1000
333 * ----- = 4 ----- = 6 -------------- = len ---------------------
334 * 3 2 1000000 1000
335 */
336static u32 redrat3_us_to_len(u32 microsec)
337{
338 u32 result;
339 u32 divisor;
340
Mauro Carvalho Chehab95cf60a2015-06-05 10:25:24 -0300341 microsec = (microsec > IR_MAX_DURATION) ? IR_MAX_DURATION : microsec;
Jarod Wilson2154be62011-05-04 14:02:42 -0300342 divisor = (RR3_CLK_CONV_FACTOR / 1000);
343 result = (u32)(microsec * divisor) / 1000;
344
345 /* don't allow zero lengths to go back, breaks lirc */
346 return result ? result : 1;
Jarod Wilson2154be62011-05-04 14:02:42 -0300347}
348
Jarod Wilson2154be62011-05-04 14:02:42 -0300349static void redrat3_process_ir_data(struct redrat3_dev *rr3)
350{
351 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson2154be62011-05-04 14:02:42 -0300352 struct device *dev;
Sean Young25da6612016-07-10 13:34:37 -0300353 unsigned int i, sig_size, single_len, offset, val;
Sean Young4c055a52013-02-16 17:25:44 -0300354 u32 mod_freq;
Jarod Wilson2154be62011-05-04 14:02:42 -0300355
Jarod Wilson2154be62011-05-04 14:02:42 -0300356 dev = rr3->dev;
Jarod Wilson2154be62011-05-04 14:02:42 -0300357
Sean Young4c055a52013-02-16 17:25:44 -0300358 mod_freq = redrat3_val_to_mod_freq(&rr3->irdata);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700359 dev_dbg(dev, "Got mod_freq of %u\n", mod_freq);
Sean Youngc49fcdd2016-10-31 19:13:11 -0200360 if (mod_freq && rr3->wideband) {
361 DEFINE_IR_RAW_EVENT(ev);
362
363 ev.carrier_report = 1;
364 ev.carrier = mod_freq;
365
366 ir_raw_event_store(rr3->rc, &ev);
367 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300368
Jarod Wilson2154be62011-05-04 14:02:42 -0300369 /* process each rr3 encoded byte into an int */
Sean Young4c055a52013-02-16 17:25:44 -0300370 sig_size = be16_to_cpu(rr3->irdata.sig_size);
371 for (i = 0; i < sig_size; i++) {
372 offset = rr3->irdata.sigdata[i];
373 val = get_unaligned_be16(&rr3->irdata.lens[offset]);
374 single_len = redrat3_len_to_us(val);
Jarod Wilson2154be62011-05-04 14:02:42 -0300375
Jarod Wilson2154be62011-05-04 14:02:42 -0300376 /* we should always get pulse/space/pulse/space samples */
377 if (i % 2)
378 rawir.pulse = false;
379 else
380 rawir.pulse = true;
381
382 rawir.duration = US_TO_NS(single_len);
Jarod Wilson2c594ff2011-07-13 18:26:06 -0300383 /* cap the value to IR_MAX_DURATION */
Mauro Carvalho Chehab95cf60a2015-06-05 10:25:24 -0300384 rawir.duration = (rawir.duration > IR_MAX_DURATION) ?
385 IR_MAX_DURATION : rawir.duration;
Jarod Wilson2c594ff2011-07-13 18:26:06 -0300386
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700387 dev_dbg(dev, "storing %s with duration %d (i: %d)\n",
Jarod Wilson2154be62011-05-04 14:02:42 -0300388 rawir.pulse ? "pulse" : "space", rawir.duration, i);
389 ir_raw_event_store_with_filter(rr3->rc, &rawir);
390 }
391
Sean Young25da6612016-07-10 13:34:37 -0300392 /* add a trailing space */
393 rawir.pulse = false;
394 rawir.timeout = true;
Sean Youngc7470ff2016-07-20 14:03:49 -0300395 rawir.duration = rr3->rc->timeout;
Sean Young25da6612016-07-10 13:34:37 -0300396 dev_dbg(dev, "storing trailing timeout with duration %d\n",
397 rawir.duration);
398 ir_raw_event_store_with_filter(rr3->rc, &rawir);
Jarod Wilson2154be62011-05-04 14:02:42 -0300399
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700400 dev_dbg(dev, "calling ir_raw_event_handle\n");
Jarod Wilson2154be62011-05-04 14:02:42 -0300401 ir_raw_event_handle(rr3->rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300402}
403
404/* Util fn to send rr3 cmds */
Mauro Carvalho Chehab69485242015-04-29 15:00:30 -0300405static int redrat3_send_cmd(int cmd, struct redrat3_dev *rr3)
Jarod Wilson2154be62011-05-04 14:02:42 -0300406{
407 struct usb_device *udev;
408 u8 *data;
409 int res;
410
411 data = kzalloc(sizeof(u8), GFP_KERNEL);
412 if (!data)
413 return -ENOMEM;
414
415 udev = rr3->udev;
416 res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), cmd,
417 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
418 0x0000, 0x0000, data, sizeof(u8), HZ * 10);
419
420 if (res < 0) {
421 dev_err(rr3->dev, "%s: Error sending rr3 cmd res %d, data %d",
422 __func__, res, *data);
423 res = -EIO;
424 } else
Sean Young4c055a52013-02-16 17:25:44 -0300425 res = data[0];
Jarod Wilson2154be62011-05-04 14:02:42 -0300426
427 kfree(data);
428
429 return res;
430}
431
432/* Enables the long range detector and starts async receive */
433static int redrat3_enable_detector(struct redrat3_dev *rr3)
434{
435 struct device *dev = rr3->dev;
436 u8 ret;
437
Jarod Wilson2154be62011-05-04 14:02:42 -0300438 ret = redrat3_send_cmd(RR3_RC_DET_ENABLE, rr3);
439 if (ret != 0)
440 dev_dbg(dev, "%s: unexpected ret of %d\n",
441 __func__, ret);
442
443 ret = redrat3_send_cmd(RR3_RC_DET_STATUS, rr3);
444 if (ret != 1) {
445 dev_err(dev, "%s: detector status: %d, should be 1\n",
446 __func__, ret);
447 return -EIO;
448 }
449
Sean Youngc49fcdd2016-10-31 19:13:11 -0200450 ret = usb_submit_urb(rr3->narrow_urb, GFP_KERNEL);
451 if (ret) {
452 dev_err(rr3->dev, "narrow band urb failed: %d", ret);
453 return ret;
454 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300455
Sean Youngc49fcdd2016-10-31 19:13:11 -0200456 ret = usb_submit_urb(rr3->wide_urb, GFP_KERNEL);
457 if (ret)
458 dev_err(rr3->dev, "wide band urb failed: %d", ret);
459
460 return ret;
Jarod Wilson2154be62011-05-04 14:02:42 -0300461}
462
Jarod Wilson2154be62011-05-04 14:02:42 -0300463static inline void redrat3_delete(struct redrat3_dev *rr3,
464 struct usb_device *udev)
465{
Sean Youngc49fcdd2016-10-31 19:13:11 -0200466 usb_kill_urb(rr3->narrow_urb);
467 usb_kill_urb(rr3->wide_urb);
Sean Youngbf139722013-07-30 19:00:04 -0300468 usb_kill_urb(rr3->flash_urb);
Sean Youngc49fcdd2016-10-31 19:13:11 -0200469 usb_kill_urb(rr3->learn_urb);
470 usb_free_urb(rr3->narrow_urb);
471 usb_free_urb(rr3->wide_urb);
Sean Youngbf139722013-07-30 19:00:04 -0300472 usb_free_urb(rr3->flash_urb);
Sean Youngc49fcdd2016-10-31 19:13:11 -0200473 usb_free_urb(rr3->learn_urb);
474 usb_free_coherent(udev, le16_to_cpu(rr3->ep_narrow->wMaxPacketSize),
Jarod Wilson2154be62011-05-04 14:02:42 -0300475 rr3->bulk_in_buf, rr3->dma_in);
Jarod Wilson2154be62011-05-04 14:02:42 -0300476
477 kfree(rr3);
478}
479
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300480static u32 redrat3_get_timeout(struct redrat3_dev *rr3)
Jarod Wilson2154be62011-05-04 14:02:42 -0300481{
Sean Young801b69f2013-02-16 17:25:43 -0300482 __be32 *tmp;
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300483 u32 timeout = MS_TO_US(150); /* a sane default, if things go haywire */
Jarod Wilson2154be62011-05-04 14:02:42 -0300484 int len, ret, pipe;
485
486 len = sizeof(*tmp);
487 tmp = kzalloc(len, GFP_KERNEL);
Markus Elfring559f64d2016-10-13 08:20:19 -0300488 if (!tmp)
Jarod Wilson2154be62011-05-04 14:02:42 -0300489 return timeout;
Jarod Wilson2154be62011-05-04 14:02:42 -0300490
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300491 pipe = usb_rcvctrlpipe(rr3->udev, 0);
492 ret = usb_control_msg(rr3->udev, pipe, RR3_GET_IR_PARAM,
Jarod Wilson2154be62011-05-04 14:02:42 -0300493 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
494 RR3_IR_IO_SIG_TIMEOUT, 0, tmp, len, HZ * 5);
Sean Young801b69f2013-02-16 17:25:43 -0300495 if (ret != len)
Jarod Wilsonc53f9f02011-07-13 18:26:07 -0300496 dev_warn(rr3->dev, "Failed to read timeout from hardware\n");
Sean Young801b69f2013-02-16 17:25:43 -0300497 else {
498 timeout = redrat3_len_to_us(be32_to_cpup(tmp));
499
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700500 dev_dbg(rr3->dev, "Got timeout of %d ms\n", timeout / 1000);
Jarod Wilson2154be62011-05-04 14:02:42 -0300501 }
502
Sean Young801b69f2013-02-16 17:25:43 -0300503 kfree(tmp);
Jarod Wilson2154be62011-05-04 14:02:42 -0300504
Jarod Wilson2154be62011-05-04 14:02:42 -0300505 return timeout;
506}
507
Sean Young4f253ce2016-07-10 13:34:38 -0300508static int redrat3_set_timeout(struct rc_dev *rc_dev, unsigned int timeoutns)
509{
510 struct redrat3_dev *rr3 = rc_dev->priv;
511 struct usb_device *udev = rr3->udev;
512 struct device *dev = rr3->dev;
Hans Verkuilb1cb50b2016-08-23 03:48:37 -0300513 __be32 *timeout;
Sean Young4f253ce2016-07-10 13:34:38 -0300514 int ret;
515
516 timeout = kmalloc(sizeof(*timeout), GFP_KERNEL);
517 if (!timeout)
518 return -ENOMEM;
519
520 *timeout = cpu_to_be32(redrat3_us_to_len(timeoutns / 1000));
521 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), RR3_SET_IR_PARAM,
522 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
523 RR3_IR_IO_SIG_TIMEOUT, 0, timeout, sizeof(*timeout),
524 HZ * 25);
525 dev_dbg(dev, "set ir parm timeout %d ret 0x%02x\n",
526 be32_to_cpu(*timeout), ret);
527
Sean Youngc7470ff2016-07-20 14:03:49 -0300528 if (ret == sizeof(*timeout))
Sean Young4f253ce2016-07-10 13:34:38 -0300529 ret = 0;
Sean Youngc7470ff2016-07-20 14:03:49 -0300530 else if (ret >= 0)
Sean Young4f253ce2016-07-10 13:34:38 -0300531 ret = -EIO;
532
533 kfree(timeout);
534
535 return ret;
536}
537
Jarod Wilson2154be62011-05-04 14:02:42 -0300538static void redrat3_reset(struct redrat3_dev *rr3)
539{
540 struct usb_device *udev = rr3->udev;
541 struct device *dev = rr3->dev;
542 int rc, rxpipe, txpipe;
543 u8 *val;
Markus Elfring576df632016-10-13 08:23:22 -0300544 size_t const len = sizeof(*val);
Jarod Wilson2154be62011-05-04 14:02:42 -0300545
Jarod Wilson2154be62011-05-04 14:02:42 -0300546 rxpipe = usb_rcvctrlpipe(udev, 0);
547 txpipe = usb_sndctrlpipe(udev, 0);
548
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300549 val = kmalloc(len, GFP_KERNEL);
Markus Elfring559f64d2016-10-13 08:20:19 -0300550 if (!val)
Jarod Wilson2154be62011-05-04 14:02:42 -0300551 return;
Jarod Wilson2154be62011-05-04 14:02:42 -0300552
553 *val = 0x01;
554 rc = usb_control_msg(udev, rxpipe, RR3_RESET,
555 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
556 RR3_CPUCS_REG_ADDR, 0, val, len, HZ * 25);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700557 dev_dbg(dev, "reset returned 0x%02x\n", rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300558
Sean Youngd6ae1622016-07-20 14:03:50 -0300559 *val = length_fuzz;
Jarod Wilson2154be62011-05-04 14:02:42 -0300560 rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
561 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
562 RR3_IR_IO_LENGTH_FUZZ, 0, val, len, HZ * 25);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700563 dev_dbg(dev, "set ir parm len fuzz %d rc 0x%02x\n", *val, rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300564
Sean Youngd6ae1622016-07-20 14:03:50 -0300565 *val = (65536 - (minimum_pause * 2000)) / 256;
566 rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
567 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
568 RR3_IR_IO_MIN_PAUSE, 0, val, len, HZ * 25);
569 dev_dbg(dev, "set ir parm min pause %d rc 0x%02x\n", *val, rc);
570
571 *val = periods_measure_carrier;
572 rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
573 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
574 RR3_IR_IO_PERIODS_MF, 0, val, len, HZ * 25);
575 dev_dbg(dev, "set ir parm periods measure carrier %d rc 0x%02x", *val,
576 rc);
577
Jarod Wilson2154be62011-05-04 14:02:42 -0300578 *val = RR3_DRIVER_MAXLENS;
579 rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
580 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
581 RR3_IR_IO_MAX_LENGTHS, 0, val, len, HZ * 25);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700582 dev_dbg(dev, "set ir parm max lens %d rc 0x%02x\n", *val, rc);
Jarod Wilson2154be62011-05-04 14:02:42 -0300583
584 kfree(val);
585}
586
587static void redrat3_get_firmware_rev(struct redrat3_dev *rr3)
588{
Markus Elfring7aa20af2016-10-13 08:21:55 -0300589 int rc;
Jarod Wilson2154be62011-05-04 14:02:42 -0300590 char *buffer;
591
Markus Elfring0bebaa52016-10-13 03:35:57 -0300592 buffer = kcalloc(RR3_FW_VERSION_LEN + 1, sizeof(*buffer), GFP_KERNEL);
Markus Elfring559f64d2016-10-13 08:20:19 -0300593 if (!buffer)
Jarod Wilson2154be62011-05-04 14:02:42 -0300594 return;
Jarod Wilson2154be62011-05-04 14:02:42 -0300595
596 rc = usb_control_msg(rr3->udev, usb_rcvctrlpipe(rr3->udev, 0),
597 RR3_FW_VERSION,
598 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
599 0, 0, buffer, RR3_FW_VERSION_LEN, HZ * 5);
600
601 if (rc >= 0)
602 dev_info(rr3->dev, "Firmware rev: %s", buffer);
603 else
604 dev_err(rr3->dev, "Problem fetching firmware ID\n");
605
606 kfree(buffer);
Jarod Wilson2154be62011-05-04 14:02:42 -0300607}
608
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300609static void redrat3_read_packet_start(struct redrat3_dev *rr3, unsigned len)
Jarod Wilson2154be62011-05-04 14:02:42 -0300610{
Sean Young4c055a52013-02-16 17:25:44 -0300611 struct redrat3_header *header = rr3->bulk_in_buf;
612 unsigned pktlen, pkttype;
Jarod Wilson2154be62011-05-04 14:02:42 -0300613
Jarod Wilson2154be62011-05-04 14:02:42 -0300614 /* grab the Length and type of transfer */
Sean Young4c055a52013-02-16 17:25:44 -0300615 pktlen = be16_to_cpu(header->length);
616 pkttype = be16_to_cpu(header->transfer_type);
Jarod Wilson2154be62011-05-04 14:02:42 -0300617
Sean Young4c055a52013-02-16 17:25:44 -0300618 if (pktlen > sizeof(rr3->irdata)) {
619 dev_warn(rr3->dev, "packet length %u too large\n", pktlen);
620 return;
621 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300622
Sean Young4c055a52013-02-16 17:25:44 -0300623 switch (pkttype) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300624 case RR3_ERROR:
Sean Young4c055a52013-02-16 17:25:44 -0300625 if (len >= sizeof(struct redrat3_error)) {
626 struct redrat3_error *error = rr3->bulk_in_buf;
627 unsigned fw_error = be16_to_cpu(error->fw_error);
628 redrat3_dump_fw_error(rr3, fw_error);
629 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300630 break;
631
632 case RR3_MOD_SIGNAL_IN:
Sean Young4c055a52013-02-16 17:25:44 -0300633 memcpy(&rr3->irdata, rr3->bulk_in_buf, len);
Jarod Wilson2154be62011-05-04 14:02:42 -0300634 rr3->bytes_read = len;
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700635 dev_dbg(rr3->dev, "bytes_read %d, pktlen %d\n",
Sean Young4c055a52013-02-16 17:25:44 -0300636 rr3->bytes_read, pktlen);
Jarod Wilson2154be62011-05-04 14:02:42 -0300637 break;
638
639 default:
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700640 dev_dbg(rr3->dev, "ignoring packet with type 0x%02x, len of %d, 0x%02x\n",
Sean Young4c055a52013-02-16 17:25:44 -0300641 pkttype, len, pktlen);
Jarod Wilson2154be62011-05-04 14:02:42 -0300642 break;
643 }
644}
645
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300646static void redrat3_read_packet_continue(struct redrat3_dev *rr3, unsigned len)
Jarod Wilson2154be62011-05-04 14:02:42 -0300647{
Sean Young4c055a52013-02-16 17:25:44 -0300648 void *irdata = &rr3->irdata;
649
Sean Young4c055a52013-02-16 17:25:44 -0300650 if (len + rr3->bytes_read > sizeof(rr3->irdata)) {
651 dev_warn(rr3->dev, "too much data for packet\n");
652 rr3->bytes_read = 0;
653 return;
654 }
655
656 memcpy(irdata + rr3->bytes_read, rr3->bulk_in_buf, len);
Jarod Wilson2154be62011-05-04 14:02:42 -0300657
658 rr3->bytes_read += len;
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700659 dev_dbg(rr3->dev, "bytes_read %d, pktlen %d\n", rr3->bytes_read,
Sean Young4c055a52013-02-16 17:25:44 -0300660 be16_to_cpu(rr3->irdata.header.length));
Jarod Wilson2154be62011-05-04 14:02:42 -0300661}
662
663/* gather IR data from incoming urb, process it when we have enough */
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300664static int redrat3_get_ir_data(struct redrat3_dev *rr3, unsigned len)
Jarod Wilson2154be62011-05-04 14:02:42 -0300665{
666 struct device *dev = rr3->dev;
Sean Young4c055a52013-02-16 17:25:44 -0300667 unsigned pkttype;
Jarod Wilson2154be62011-05-04 14:02:42 -0300668 int ret = 0;
669
Sean Young4c055a52013-02-16 17:25:44 -0300670 if (rr3->bytes_read == 0 && len >= sizeof(struct redrat3_header)) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300671 redrat3_read_packet_start(rr3, len);
672 } else if (rr3->bytes_read != 0) {
673 redrat3_read_packet_continue(rr3, len);
674 } else if (rr3->bytes_read == 0) {
675 dev_err(dev, "error: no packet data read\n");
676 ret = -ENODATA;
677 goto out;
678 }
679
Sean Young38e35a82013-07-30 19:00:00 -0300680 if (rr3->bytes_read < be16_to_cpu(rr3->irdata.header.length) +
681 sizeof(struct redrat3_header))
Jarod Wilson2154be62011-05-04 14:02:42 -0300682 /* we're still accumulating data */
683 return 0;
684
685 /* if we get here, we've got IR data to decode */
Sean Young4c055a52013-02-16 17:25:44 -0300686 pkttype = be16_to_cpu(rr3->irdata.header.transfer_type);
687 if (pkttype == RR3_MOD_SIGNAL_IN)
Jarod Wilson2154be62011-05-04 14:02:42 -0300688 redrat3_process_ir_data(rr3);
689 else
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700690 dev_dbg(dev, "discarding non-signal data packet (type 0x%02x)\n",
Sean Young4c055a52013-02-16 17:25:44 -0300691 pkttype);
Jarod Wilson2154be62011-05-04 14:02:42 -0300692
693out:
694 rr3->bytes_read = 0;
Jarod Wilson2154be62011-05-04 14:02:42 -0300695 return ret;
696}
697
698/* callback function from USB when async USB request has completed */
Sean Young801b69f2013-02-16 17:25:43 -0300699static void redrat3_handle_async(struct urb *urb)
Jarod Wilson2154be62011-05-04 14:02:42 -0300700{
Sean Youngd6aca6e2016-10-31 15:52:21 -0200701 struct redrat3_dev *rr3 = urb->context;
Andrew Vincerdbea1882011-11-08 12:43:45 -0300702 int ret;
Jarod Wilson2154be62011-05-04 14:02:42 -0300703
Jarod Wilson2154be62011-05-04 14:02:42 -0300704 switch (urb->status) {
705 case 0:
Andrew Vincerdbea1882011-11-08 12:43:45 -0300706 ret = redrat3_get_ir_data(rr3, urb->actual_length);
Sean Youngc49fcdd2016-10-31 19:13:11 -0200707 if (!ret && rr3->wideband && !rr3->learn_urb->hcpriv) {
708 ret = usb_submit_urb(rr3->learn_urb, GFP_ATOMIC);
709 if (ret)
710 dev_err(rr3->dev, "Failed to submit learning urb: %d",
711 ret);
712 }
713
Andrew Vincerdbea1882011-11-08 12:43:45 -0300714 if (!ret) {
715 /* no error, prepare to read more */
Sean Youngc49fcdd2016-10-31 19:13:11 -0200716 ret = usb_submit_urb(urb, GFP_ATOMIC);
717 if (ret)
718 dev_err(rr3->dev, "Failed to resubmit urb: %d",
719 ret);
Andrew Vincerdbea1882011-11-08 12:43:45 -0300720 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300721 break;
722
723 case -ECONNRESET:
724 case -ENOENT:
725 case -ESHUTDOWN:
726 usb_unlink_urb(urb);
727 return;
728
729 case -EPIPE:
730 default:
731 dev_warn(rr3->dev, "Error: urb status = %d\n", urb->status);
732 rr3->bytes_read = 0;
Jarod Wilson2154be62011-05-04 14:02:42 -0300733 break;
734 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300735}
736
Jarod Wilson2154be62011-05-04 14:02:42 -0300737static u16 mod_freq_to_val(unsigned int mod_freq)
738{
739 int mult = 6000000;
740
741 /* Clk used in mod. freq. generation is CLK24/4. */
Sean Young4c055a52013-02-16 17:25:44 -0300742 return 65536 - (mult / mod_freq);
Jarod Wilson2154be62011-05-04 14:02:42 -0300743}
744
Andrew Vincerdbea1882011-11-08 12:43:45 -0300745static int redrat3_set_tx_carrier(struct rc_dev *rcdev, u32 carrier)
Jarod Wilson2154be62011-05-04 14:02:42 -0300746{
Andrew Vincerdbea1882011-11-08 12:43:45 -0300747 struct redrat3_dev *rr3 = rcdev->priv;
748 struct device *dev = rr3->dev;
Jarod Wilson2154be62011-05-04 14:02:42 -0300749
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700750 dev_dbg(dev, "Setting modulation frequency to %u", carrier);
Dan Carpenter48cafec2012-09-11 07:11:24 -0300751 if (carrier == 0)
752 return -EINVAL;
753
Jarod Wilson2154be62011-05-04 14:02:42 -0300754 rr3->carrier = carrier;
755
Sean Young14d81882016-07-10 13:34:33 -0300756 return 0;
Jarod Wilson2154be62011-05-04 14:02:42 -0300757}
758
Andrew Vincerdbea1882011-11-08 12:43:45 -0300759static int redrat3_transmit_ir(struct rc_dev *rcdev, unsigned *txbuf,
760 unsigned count)
Jarod Wilson2154be62011-05-04 14:02:42 -0300761{
762 struct redrat3_dev *rr3 = rcdev->priv;
763 struct device *dev = rr3->dev;
Sean Young4c055a52013-02-16 17:25:44 -0300764 struct redrat3_irdata *irdata = NULL;
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300765 int ret, ret_len;
Jarod Wilson2154be62011-05-04 14:02:42 -0300766 int lencheck, cur_sample_len, pipe;
Jarod Wilson2154be62011-05-04 14:02:42 -0300767 int *sample_lens = NULL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300768 u8 curlencheck = 0;
Sean Youngfa7b9ac2013-02-16 17:25:45 -0300769 unsigned i, sendbuf_len;
Jarod Wilson2154be62011-05-04 14:02:42 -0300770
Jarod Wilson2154be62011-05-04 14:02:42 -0300771 if (rr3->transmitting) {
772 dev_warn(dev, "%s: transmitter already in use\n", __func__);
773 return -EAGAIN;
774 }
775
Sean Young671ea672013-07-08 17:33:09 -0300776 if (count > RR3_MAX_SIG_SIZE - RR3_TX_TRAILER_LEN)
777 return -EINVAL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300778
Andrew Vincerdbea1882011-11-08 12:43:45 -0300779 /* rr3 will disable rc detector on transmit */
Jarod Wilson2154be62011-05-04 14:02:42 -0300780 rr3->transmitting = true;
781
Markus Elfring0bebaa52016-10-13 03:35:57 -0300782 sample_lens = kcalloc(RR3_DRIVER_MAXLENS,
783 sizeof(*sample_lens),
784 GFP_KERNEL);
Markus Elfringfac59132016-10-13 05:34:29 -0300785 if (!sample_lens)
786 return -ENOMEM;
Jarod Wilson2154be62011-05-04 14:02:42 -0300787
Sean Young4c055a52013-02-16 17:25:44 -0300788 irdata = kzalloc(sizeof(*irdata), GFP_KERNEL);
789 if (!irdata) {
Sean Young801b69f2013-02-16 17:25:43 -0300790 ret = -ENOMEM;
791 goto out;
792 }
793
Jarod Wilson2154be62011-05-04 14:02:42 -0300794 for (i = 0; i < count; i++) {
Sean Young06eae252013-01-29 08:19:31 -0300795 cur_sample_len = redrat3_us_to_len(txbuf[i]);
Sean Young801b69f2013-02-16 17:25:43 -0300796 if (cur_sample_len > 0xffff) {
797 dev_warn(dev, "transmit period of %uus truncated to %uus\n",
798 txbuf[i], redrat3_len_to_us(0xffff));
799 cur_sample_len = 0xffff;
800 }
Jarod Wilson2154be62011-05-04 14:02:42 -0300801 for (lencheck = 0; lencheck < curlencheck; lencheck++) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300802 if (sample_lens[lencheck] == cur_sample_len)
803 break;
804 }
805 if (lencheck == curlencheck) {
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700806 dev_dbg(dev, "txbuf[%d]=%u, pos %d, enc %u\n",
Jarod Wilson2154be62011-05-04 14:02:42 -0300807 i, txbuf[i], curlencheck, cur_sample_len);
Sean Young06eae252013-01-29 08:19:31 -0300808 if (curlencheck < RR3_DRIVER_MAXLENS) {
Jarod Wilson2154be62011-05-04 14:02:42 -0300809 /* now convert the value to a proper
810 * rr3 value.. */
811 sample_lens[curlencheck] = cur_sample_len;
Sean Young4c055a52013-02-16 17:25:44 -0300812 put_unaligned_be16(cur_sample_len,
813 &irdata->lens[curlencheck]);
Jarod Wilson2154be62011-05-04 14:02:42 -0300814 curlencheck++;
815 } else {
Sean Young671ea672013-07-08 17:33:09 -0300816 ret = -EINVAL;
817 goto out;
Jarod Wilson2154be62011-05-04 14:02:42 -0300818 }
819 }
Sean Young4c055a52013-02-16 17:25:44 -0300820 irdata->sigdata[i] = lencheck;
Jarod Wilson2154be62011-05-04 14:02:42 -0300821 }
822
Sean Young4c055a52013-02-16 17:25:44 -0300823 irdata->sigdata[count] = RR3_END_OF_SIGNAL;
824 irdata->sigdata[count + 1] = RR3_END_OF_SIGNAL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300825
Sean Young4c055a52013-02-16 17:25:44 -0300826 sendbuf_len = offsetof(struct redrat3_irdata,
827 sigdata[count + RR3_TX_TRAILER_LEN]);
Jarod Wilson2154be62011-05-04 14:02:42 -0300828 /* fill in our packet header */
Sean Young4c055a52013-02-16 17:25:44 -0300829 irdata->header.length = cpu_to_be16(sendbuf_len -
830 sizeof(struct redrat3_header));
831 irdata->header.transfer_type = cpu_to_be16(RR3_MOD_SIGNAL_OUT);
832 irdata->pause = cpu_to_be32(redrat3_len_to_us(100));
833 irdata->mod_freq_count = cpu_to_be16(mod_freq_to_val(rr3->carrier));
834 irdata->no_lengths = curlencheck;
835 irdata->sig_size = cpu_to_be16(count + RR3_TX_TRAILER_LEN);
Jarod Wilson2154be62011-05-04 14:02:42 -0300836
837 pipe = usb_sndbulkpipe(rr3->udev, rr3->ep_out->bEndpointAddress);
Sean Young4c055a52013-02-16 17:25:44 -0300838 ret = usb_bulk_msg(rr3->udev, pipe, irdata,
Jarod Wilson2154be62011-05-04 14:02:42 -0300839 sendbuf_len, &ret_len, 10 * HZ);
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -0700840 dev_dbg(dev, "sent %d bytes, (ret %d)\n", ret_len, ret);
Jarod Wilson2154be62011-05-04 14:02:42 -0300841
842 /* now tell the hardware to transmit what we sent it */
843 pipe = usb_rcvctrlpipe(rr3->udev, 0);
844 ret = usb_control_msg(rr3->udev, pipe, RR3_TX_SEND_SIGNAL,
845 USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
Sean Young4c055a52013-02-16 17:25:44 -0300846 0, 0, irdata, 2, HZ * 10);
Jarod Wilson2154be62011-05-04 14:02:42 -0300847
848 if (ret < 0)
849 dev_err(dev, "Error: control msg send failed, rc %d\n", ret);
850 else
Andrew Vincerdbea1882011-11-08 12:43:45 -0300851 ret = count;
Jarod Wilson2154be62011-05-04 14:02:42 -0300852
853out:
Sean Young4c055a52013-02-16 17:25:44 -0300854 kfree(irdata);
Markus Elfringfac59132016-10-13 05:34:29 -0300855 kfree(sample_lens);
Jarod Wilson2154be62011-05-04 14:02:42 -0300856
857 rr3->transmitting = false;
Andrew Vincerdbea1882011-11-08 12:43:45 -0300858 /* rr3 re-enables rc detector because it was enabled before */
Jarod Wilson2154be62011-05-04 14:02:42 -0300859
860 return ret;
861}
862
Sean Youngbf139722013-07-30 19:00:04 -0300863static void redrat3_brightness_set(struct led_classdev *led_dev, enum
864 led_brightness brightness)
865{
866 struct redrat3_dev *rr3 = container_of(led_dev, struct redrat3_dev,
867 led);
868
869 if (brightness != LED_OFF && atomic_cmpxchg(&rr3->flash, 0, 1) == 0) {
870 int ret = usb_submit_urb(rr3->flash_urb, GFP_ATOMIC);
871 if (ret != 0) {
872 dev_dbg(rr3->dev, "%s: unexpected ret of %d\n",
873 __func__, ret);
874 atomic_set(&rr3->flash, 0);
875 }
876 }
877}
878
Sean Youngc49fcdd2016-10-31 19:13:11 -0200879static int redrat3_wideband_receiver(struct rc_dev *rcdev, int enable)
880{
881 struct redrat3_dev *rr3 = rcdev->priv;
882 int ret = 0;
883
884 rr3->wideband = enable != 0;
885
886 if (enable) {
887 ret = usb_submit_urb(rr3->learn_urb, GFP_KERNEL);
888 if (ret)
889 dev_err(rr3->dev, "Failed to submit learning urb: %d",
890 ret);
891 }
892
893 return ret;
894}
895
896static void redrat3_learn_complete(struct urb *urb)
897{
898 struct redrat3_dev *rr3 = urb->context;
899
900 switch (urb->status) {
901 case 0:
902 break;
903 case -ECONNRESET:
904 case -ENOENT:
905 case -ESHUTDOWN:
906 usb_unlink_urb(urb);
907 return;
908 case -EPIPE:
909 default:
910 dev_err(rr3->dev, "Error: learn urb status = %d", urb->status);
911 break;
912 }
913}
914
Sean Youngbf139722013-07-30 19:00:04 -0300915static void redrat3_led_complete(struct urb *urb)
916{
917 struct redrat3_dev *rr3 = urb->context;
918
919 switch (urb->status) {
920 case 0:
921 break;
922 case -ECONNRESET:
923 case -ENOENT:
924 case -ESHUTDOWN:
925 usb_unlink_urb(urb);
926 return;
927 case -EPIPE:
928 default:
929 dev_dbg(rr3->dev, "Error: urb status = %d\n", urb->status);
930 break;
931 }
932
933 rr3->led.brightness = LED_OFF;
934 atomic_dec(&rr3->flash);
935}
936
Jarod Wilson2154be62011-05-04 14:02:42 -0300937static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3)
938{
939 struct device *dev = rr3->dev;
940 struct rc_dev *rc;
Markus Elfring9d45d5f2016-10-13 09:17:43 -0300941 int ret;
Jarod Wilson2154be62011-05-04 14:02:42 -0300942 u16 prod = le16_to_cpu(rr3->udev->descriptor.idProduct);
943
944 rc = rc_allocate_device();
Markus Elfring559f64d2016-10-13 08:20:19 -0300945 if (!rc)
Markus Elfring3f816782016-10-13 09:54:46 -0300946 return NULL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300947
Sean Youngda500032016-10-31 15:52:20 -0200948 snprintf(rr3->name, sizeof(rr3->name),
949 "RedRat3%s Infrared Remote Transceiver",
950 prod == USB_RR3IIUSB_PRODUCT_ID ? "-II" : "");
Jarod Wilson2154be62011-05-04 14:02:42 -0300951
952 usb_make_path(rr3->udev, rr3->phys, sizeof(rr3->phys));
953
954 rc->input_name = rr3->name;
955 rc->input_phys = rr3->phys;
956 usb_to_input_id(rr3->udev, &rc->input_id);
957 rc->dev.parent = dev;
958 rc->priv = rr3;
959 rc->driver_type = RC_DRIVER_IR_RAW;
David Härdemanc5540fb2014-04-03 20:32:21 -0300960 rc->allowed_protocols = RC_BIT_ALL;
Sean Young4f253ce2016-07-10 13:34:38 -0300961 rc->min_timeout = MS_TO_NS(RR3_RX_MIN_TIMEOUT);
962 rc->max_timeout = MS_TO_NS(RR3_RX_MAX_TIMEOUT);
Sean Youngc7470ff2016-07-20 14:03:49 -0300963 rc->timeout = US_TO_NS(redrat3_get_timeout(rr3));
Sean Young4f253ce2016-07-10 13:34:38 -0300964 rc->s_timeout = redrat3_set_timeout;
Jarod Wilson2154be62011-05-04 14:02:42 -0300965 rc->tx_ir = redrat3_transmit_ir;
966 rc->s_tx_carrier = redrat3_set_tx_carrier;
Sean Youngc49fcdd2016-10-31 19:13:11 -0200967 rc->s_carrier_report = redrat3_wideband_receiver;
Jarod Wilson2154be62011-05-04 14:02:42 -0300968 rc->driver_name = DRIVER_NAME;
Sean Young06eae252013-01-29 08:19:31 -0300969 rc->rx_resolution = US_TO_NS(2);
Jarod Wilson2154be62011-05-04 14:02:42 -0300970 rc->map_name = RC_MAP_HAUPPAUGE;
971
972 ret = rc_register_device(rc);
973 if (ret < 0) {
974 dev_err(dev, "remote dev registration failed\n");
975 goto out;
976 }
977
978 return rc;
979
980out:
981 rc_free_device(rc);
982 return NULL;
983}
984
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800985static int redrat3_dev_probe(struct usb_interface *intf,
986 const struct usb_device_id *id)
Jarod Wilson2154be62011-05-04 14:02:42 -0300987{
988 struct usb_device *udev = interface_to_usbdev(intf);
989 struct device *dev = &intf->dev;
990 struct usb_host_interface *uhi;
991 struct redrat3_dev *rr3;
992 struct usb_endpoint_descriptor *ep;
Sean Youngc49fcdd2016-10-31 19:13:11 -0200993 struct usb_endpoint_descriptor *ep_narrow = NULL;
994 struct usb_endpoint_descriptor *ep_wide = NULL;
Jarod Wilson2154be62011-05-04 14:02:42 -0300995 struct usb_endpoint_descriptor *ep_out = NULL;
996 u8 addr, attrs;
997 int pipe, i;
998 int retval = -ENOMEM;
999
Jarod Wilson2154be62011-05-04 14:02:42 -03001000 uhi = intf->cur_altsetting;
1001
1002 /* find our bulk-in and bulk-out endpoints */
1003 for (i = 0; i < uhi->desc.bNumEndpoints; ++i) {
1004 ep = &uhi->endpoint[i].desc;
1005 addr = ep->bEndpointAddress;
1006 attrs = ep->bmAttributes;
1007
Sean Youngc49fcdd2016-10-31 19:13:11 -02001008 if (((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN) &&
Jarod Wilson2154be62011-05-04 14:02:42 -03001009 ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
1010 USB_ENDPOINT_XFER_BULK)) {
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -07001011 dev_dbg(dev, "found bulk-in endpoint at 0x%02x\n",
Jarod Wilson2154be62011-05-04 14:02:42 -03001012 ep->bEndpointAddress);
Sean Youngc49fcdd2016-10-31 19:13:11 -02001013 /* data comes in on 0x82, 0x81 is for learning */
1014 if (ep->bEndpointAddress == RR3_NARROW_IN_EP_ADDR)
1015 ep_narrow = ep;
1016 if (ep->bEndpointAddress == RR3_WIDE_IN_EP_ADDR)
1017 ep_wide = ep;
Jarod Wilson2154be62011-05-04 14:02:42 -03001018 }
1019
1020 if ((ep_out == NULL) &&
1021 ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) &&
1022 ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
1023 USB_ENDPOINT_XFER_BULK)) {
Greg Kroah-Hartman3228bf82014-05-28 11:34:01 -07001024 dev_dbg(dev, "found bulk-out endpoint at 0x%02x\n",
Jarod Wilson2154be62011-05-04 14:02:42 -03001025 ep->bEndpointAddress);
1026 ep_out = ep;
1027 }
1028 }
1029
Sean Youngc49fcdd2016-10-31 19:13:11 -02001030 if (!ep_narrow || !ep_out || !ep_wide) {
1031 dev_err(dev, "Couldn't find all endpoints\n");
Jarod Wilson2154be62011-05-04 14:02:42 -03001032 retval = -ENODEV;
1033 goto no_endpoints;
1034 }
1035
1036 /* allocate memory for our device state and initialize it */
1037 rr3 = kzalloc(sizeof(*rr3), GFP_KERNEL);
Markus Elfring559f64d2016-10-13 08:20:19 -03001038 if (!rr3)
Dan Carpenter7eb75712011-05-26 05:55:08 -03001039 goto no_endpoints;
Jarod Wilson2154be62011-05-04 14:02:42 -03001040
1041 rr3->dev = &intf->dev;
Sean Youngc49fcdd2016-10-31 19:13:11 -02001042 rr3->ep_narrow = ep_narrow;
Sean Young8a21ec92016-10-31 15:52:22 -02001043 rr3->ep_out = ep_out;
1044 rr3->udev = udev;
Jarod Wilson2154be62011-05-04 14:02:42 -03001045
1046 /* set up bulk-in endpoint */
Sean Youngc49fcdd2016-10-31 19:13:11 -02001047 rr3->narrow_urb = usb_alloc_urb(0, GFP_KERNEL);
1048 if (!rr3->narrow_urb)
1049 goto redrat_free;
1050
1051 rr3->wide_urb = usb_alloc_urb(0, GFP_KERNEL);
1052 if (!rr3->wide_urb)
Sean Young8a21ec92016-10-31 15:52:22 -02001053 goto redrat_free;
Jarod Wilson2154be62011-05-04 14:02:42 -03001054
Sean Youngfa7b9ac2013-02-16 17:25:45 -03001055 rr3->bulk_in_buf = usb_alloc_coherent(udev,
Sean Youngc49fcdd2016-10-31 19:13:11 -02001056 le16_to_cpu(ep_narrow->wMaxPacketSize),
1057 GFP_KERNEL, &rr3->dma_in);
Markus Elfring559f64d2016-10-13 08:20:19 -03001058 if (!rr3->bulk_in_buf)
Sean Young8a21ec92016-10-31 15:52:22 -02001059 goto redrat_free;
Jarod Wilson2154be62011-05-04 14:02:42 -03001060
Sean Youngc49fcdd2016-10-31 19:13:11 -02001061 pipe = usb_rcvbulkpipe(udev, ep_narrow->bEndpointAddress);
1062 usb_fill_bulk_urb(rr3->narrow_urb, udev, pipe, rr3->bulk_in_buf,
1063 le16_to_cpu(ep_narrow->wMaxPacketSize),
1064 redrat3_handle_async, rr3);
1065 rr3->narrow_urb->transfer_dma = rr3->dma_in;
1066 rr3->narrow_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1067
1068 pipe = usb_rcvbulkpipe(udev, ep_wide->bEndpointAddress);
1069 usb_fill_bulk_urb(rr3->wide_urb, udev, pipe, rr3->bulk_in_buf,
1070 le16_to_cpu(ep_narrow->wMaxPacketSize),
1071 redrat3_handle_async, rr3);
1072 rr3->wide_urb->transfer_dma = rr3->dma_in;
1073 rr3->wide_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jarod Wilson2154be62011-05-04 14:02:42 -03001074
Jarod Wilson2154be62011-05-04 14:02:42 -03001075 redrat3_reset(rr3);
1076 redrat3_get_firmware_rev(rr3);
1077
Jarod Wilson2154be62011-05-04 14:02:42 -03001078 /* default.. will get overridden by any sends with a freq defined */
1079 rr3->carrier = 38000;
1080
Sean Youngbf139722013-07-30 19:00:04 -03001081 atomic_set(&rr3->flash, 0);
1082 rr3->flash_urb = usb_alloc_urb(0, GFP_KERNEL);
Sean Young8a21ec92016-10-31 15:52:22 -02001083 if (!rr3->flash_urb)
1084 goto redrat_free;
Sean Youngbf139722013-07-30 19:00:04 -03001085
Sean Youngc49fcdd2016-10-31 19:13:11 -02001086 /* learn urb */
1087 rr3->learn_urb = usb_alloc_urb(0, GFP_KERNEL);
1088 if (!rr3->learn_urb)
1089 goto redrat_free;
1090
1091 /* setup packet is 'c0 b2 0000 0000 0001' */
1092 rr3->learn_control.bRequestType = 0xc0;
1093 rr3->learn_control.bRequest = RR3_MODSIG_CAPTURE;
1094 rr3->learn_control.wLength = cpu_to_le16(1);
1095
1096 usb_fill_control_urb(rr3->learn_urb, udev, usb_rcvctrlpipe(udev, 0),
1097 (unsigned char *)&rr3->learn_control,
1098 &rr3->learn_buf, sizeof(rr3->learn_buf),
1099 redrat3_learn_complete, rr3);
1100
Sean Youngbf139722013-07-30 19:00:04 -03001101 /* setup packet is 'c0 b9 0000 0000 0001' */
1102 rr3->flash_control.bRequestType = 0xc0;
1103 rr3->flash_control.bRequest = RR3_BLINK_LED;
1104 rr3->flash_control.wLength = cpu_to_le16(1);
1105
1106 usb_fill_control_urb(rr3->flash_urb, udev, usb_rcvctrlpipe(udev, 0),
1107 (unsigned char *)&rr3->flash_control,
1108 &rr3->flash_in_buf, sizeof(rr3->flash_in_buf),
1109 redrat3_led_complete, rr3);
1110
Sean Young8a21ec92016-10-31 15:52:22 -02001111 /* led control */
1112 rr3->led.name = "redrat3:red:feedback";
1113 rr3->led.default_trigger = "rc-feedback";
1114 rr3->led.brightness_set = redrat3_brightness_set;
1115 retval = led_classdev_register(&intf->dev, &rr3->led);
1116 if (retval)
1117 goto redrat_free;
1118
Jarod Wilson2154be62011-05-04 14:02:42 -03001119 rr3->rc = redrat3_init_rc_dev(rr3);
Peter Senna Tschudin6ea7cf72012-09-04 08:05:05 -03001120 if (!rr3->rc) {
1121 retval = -ENOMEM;
Sean Young8a21ec92016-10-31 15:52:22 -02001122 goto led_free;
Peter Senna Tschudin6ea7cf72012-09-04 08:05:05 -03001123 }
Jarod Wilson2154be62011-05-04 14:02:42 -03001124
Sean Young8a21ec92016-10-31 15:52:22 -02001125 /* might be all we need to do? */
1126 retval = redrat3_enable_detector(rr3);
1127 if (retval < 0)
1128 goto led_free;
1129
Jarod Wilson2154be62011-05-04 14:02:42 -03001130 /* we can register the device now, as it is ready */
1131 usb_set_intfdata(intf, rr3);
1132
Jarod Wilson2154be62011-05-04 14:02:42 -03001133 return 0;
1134
Sean Young8a21ec92016-10-31 15:52:22 -02001135led_free:
Sean Youngbf139722013-07-30 19:00:04 -03001136 led_classdev_unregister(&rr3->led);
Sean Young8a21ec92016-10-31 15:52:22 -02001137redrat_free:
Jarod Wilson2154be62011-05-04 14:02:42 -03001138 redrat3_delete(rr3, rr3->udev);
1139
1140no_endpoints:
Jarod Wilson2154be62011-05-04 14:02:42 -03001141 return retval;
1142}
1143
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001144static void redrat3_dev_disconnect(struct usb_interface *intf)
Jarod Wilson2154be62011-05-04 14:02:42 -03001145{
1146 struct usb_device *udev = interface_to_usbdev(intf);
1147 struct redrat3_dev *rr3 = usb_get_intfdata(intf);
1148
Jarod Wilson2154be62011-05-04 14:02:42 -03001149 usb_set_intfdata(intf, NULL);
1150 rc_unregister_device(rr3->rc);
Sean Youngbf139722013-07-30 19:00:04 -03001151 led_classdev_unregister(&rr3->led);
Jarod Wilson2154be62011-05-04 14:02:42 -03001152 redrat3_delete(rr3, udev);
Jarod Wilson2154be62011-05-04 14:02:42 -03001153}
1154
1155static int redrat3_dev_suspend(struct usb_interface *intf, pm_message_t message)
1156{
1157 struct redrat3_dev *rr3 = usb_get_intfdata(intf);
Greg Kroah-Hartmana36d5b62014-05-28 11:34:00 -07001158
Sean Youngbf139722013-07-30 19:00:04 -03001159 led_classdev_suspend(&rr3->led);
Sean Youngc49fcdd2016-10-31 19:13:11 -02001160 usb_kill_urb(rr3->narrow_urb);
1161 usb_kill_urb(rr3->wide_urb);
Sean Youngbf139722013-07-30 19:00:04 -03001162 usb_kill_urb(rr3->flash_urb);
Jarod Wilson2154be62011-05-04 14:02:42 -03001163 return 0;
1164}
1165
1166static int redrat3_dev_resume(struct usb_interface *intf)
1167{
1168 struct redrat3_dev *rr3 = usb_get_intfdata(intf);
Greg Kroah-Hartmana36d5b62014-05-28 11:34:00 -07001169
Sean Youngc49fcdd2016-10-31 19:13:11 -02001170 if (usb_submit_urb(rr3->narrow_urb, GFP_ATOMIC))
1171 return -EIO;
1172 if (usb_submit_urb(rr3->wide_urb, GFP_ATOMIC))
Jarod Wilson2154be62011-05-04 14:02:42 -03001173 return -EIO;
Sean Youngbf139722013-07-30 19:00:04 -03001174 led_classdev_resume(&rr3->led);
Jarod Wilson2154be62011-05-04 14:02:42 -03001175 return 0;
1176}
1177
1178static struct usb_driver redrat3_dev_driver = {
1179 .name = DRIVER_NAME,
1180 .probe = redrat3_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001181 .disconnect = redrat3_dev_disconnect,
Jarod Wilson2154be62011-05-04 14:02:42 -03001182 .suspend = redrat3_dev_suspend,
1183 .resume = redrat3_dev_resume,
1184 .reset_resume = redrat3_dev_resume,
1185 .id_table = redrat3_dev_table
1186};
1187
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001188module_usb_driver(redrat3_dev_driver);
Jarod Wilson2154be62011-05-04 14:02:42 -03001189
1190MODULE_DESCRIPTION(DRIVER_DESC);
1191MODULE_AUTHOR(DRIVER_AUTHOR);
1192MODULE_AUTHOR(DRIVER_AUTHOR2);
1193MODULE_LICENSE("GPL");
1194MODULE_DEVICE_TABLE(usb, redrat3_dev_table);