1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * USB RedRat3 IR Transceiver rc-core driver
5 * Copyright (c) 2011 by Jarod Wilson <jarod@redhat.com>
6 * based heavily on the work of Stephen Cox, with additional
7 * help from RedRat Ltd.
9 * This driver began life based an an old version of the first-generation
10 * lirc_mceusb driver from the lirc 0.7.2 distribution. It was then
11 * significantly rewritten by Stephen Cox with the aid of RedRat Ltd's
14 * The driver was then ported to rc-core and significantly rewritten again,
15 * by Jarod, using the in-kernel mceusb driver as a guide, after an initial
16 * port effort was started by Stephen.
19 * - fix lirc not showing repeats properly
22 * The RedRat3 is a USB transceiver with both send & receive,
23 * with 2 separate sensors available for receive to enable
24 * both good long range reception for general use, and good
25 * short range reception when required for learning a signal.
27 * http://www.redrat.co.uk/
29 * It uses its own little protocol to communicate, the required
30 * parts of which are embedded within this driver.
34 #include <asm/unaligned.h>
35 #include <linux/device.h>
36 #include <linux/leds.h>
37 #include <linux/module.h>
38 #include <linux/slab.h>
39 #include <linux/usb.h>
40 #include <linux/usb/input.h>
41 #include <media/rc-core.h>
43 /* Driver Information */
44 #define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
45 #define DRIVER_AUTHOR2 "The Dweller, Stephen Cox"
46 #define DRIVER_DESC "RedRat3 USB IR Transceiver Driver"
47 #define DRIVER_NAME "redrat3"
49 /* bulk data transfer types */
50 #define RR3_ERROR 0x01
51 #define RR3_MOD_SIGNAL_IN 0x20
52 #define RR3_MOD_SIGNAL_OUT 0x21
54 /* Get the RR firmware version */
55 #define RR3_FW_VERSION 0xb1
56 #define RR3_FW_VERSION_LEN 64
57 /* Send encoded signal bulk-sent earlier*/
58 #define RR3_TX_SEND_SIGNAL 0xb3
59 #define RR3_SET_IR_PARAM 0xb7
60 #define RR3_GET_IR_PARAM 0xb8
61 /* Blink the red LED on the device */
62 #define RR3_BLINK_LED 0xb9
63 /* Read serial number of device */
64 #define RR3_READ_SER_NO 0xba
65 #define RR3_SER_NO_LEN 4
66 /* Start capture with the RC receiver */
67 #define RR3_RC_DET_ENABLE 0xbb
68 /* Stop capture with the RC receiver */
69 #define RR3_RC_DET_DISABLE 0xbc
70 /* Start capture with the wideband receiver */
71 #define RR3_MODSIG_CAPTURE 0xb2
72 /* Return the status of RC detector capture */
73 #define RR3_RC_DET_STATUS 0xbd
75 #define RR3_RESET 0xa0
77 /* Max number of lengths in the signal. */
78 #define RR3_IR_IO_MAX_LENGTHS 0x01
79 /* Periods to measure mod. freq. */
80 #define RR3_IR_IO_PERIODS_MF 0x02
81 /* Size of memory for main signal data */
82 #define RR3_IR_IO_SIG_MEM_SIZE 0x03
83 /* Delta value when measuring lengths */
84 #define RR3_IR_IO_LENGTH_FUZZ 0x04
85 /* Timeout for end of signal detection */
86 #define RR3_IR_IO_SIG_TIMEOUT 0x05
87 /* Minimum value for pause recognition. */
88 #define RR3_IR_IO_MIN_PAUSE 0x06
90 /* Clock freq. of EZ-USB chip */
91 #define RR3_CLK 24000000
92 /* Clock periods per timer count */
93 #define RR3_CLK_PER_COUNT 12
94 /* (RR3_CLK / RR3_CLK_PER_COUNT) */
95 #define RR3_CLK_CONV_FACTOR 2000000
96 /* USB bulk-in wideband IR data endpoint address */
97 #define RR3_WIDE_IN_EP_ADDR 0x81
98 /* USB bulk-in narrowband IR data endpoint address */
99 #define RR3_NARROW_IN_EP_ADDR 0x82
101 /* Size of the fixed-length portion of the signal */
102 #define RR3_DRIVER_MAXLENS 255
103 #define RR3_MAX_SIG_SIZE 512
104 #define RR3_TIME_UNIT 50
105 #define RR3_END_OF_SIGNAL 0x7f
106 #define RR3_TX_TRAILER_LEN 2
107 #define RR3_RX_MIN_TIMEOUT 5
108 #define RR3_RX_MAX_TIMEOUT 2000
110 /* The 8051's CPUCS Register address */
111 #define RR3_CPUCS_REG_ADDR 0x7f92
113 #define USB_RR3USB_VENDOR_ID 0x112a
114 #define USB_RR3USB_PRODUCT_ID 0x0001
115 #define USB_RR3IIUSB_PRODUCT_ID 0x0005
119 * The redrat3 encodes an IR signal as set of different lengths and a set
120 * of indices into those lengths. This sets how much two lengths must
121 * differ before they are considered distinct, the value is specified
123 * Default 5, value 0 to 127.
125 static int length_fuzz
= 5;
126 module_param(length_fuzz
, uint
, 0644);
127 MODULE_PARM_DESC(length_fuzz
, "Length Fuzz (0-127)");
130 * When receiving a continuous ir stream (for example when a user is
131 * holding a button down on a remote), this specifies the minimum size
132 * of a space when the redrat3 sends a irdata packet to the host. Specified
133 * in milliseconds. Default value 18ms.
134 * The value can be between 2 and 30 inclusive.
136 static int minimum_pause
= 18;
137 module_param(minimum_pause
, uint
, 0644);
138 MODULE_PARM_DESC(minimum_pause
, "Minimum Pause in ms (2-30)");
141 * The carrier frequency is measured during the first pulse of the IR
142 * signal. The larger the number of periods used To measure, the more
143 * accurate the result is likely to be, however some signals have short
144 * initial pulses, so in some case it may be necessary to reduce this value.
145 * Default 8, value 1 to 255.
147 static int periods_measure_carrier
= 8;
148 module_param(periods_measure_carrier
, uint
, 0644);
149 MODULE_PARM_DESC(periods_measure_carrier
, "Number of Periods to Measure Carrier (1-255)");
152 struct redrat3_header
{
154 __be16 transfer_type
;
157 /* sending and receiving irdata */
158 struct redrat3_irdata
{
159 struct redrat3_header header
;
161 __be16 mod_freq_count
;
168 __be16 lens
[RR3_DRIVER_MAXLENS
]; /* not aligned */
169 __u8 sigdata
[RR3_MAX_SIG_SIZE
];
172 /* firmware errors */
173 struct redrat3_error
{
174 struct redrat3_header header
;
178 /* table of devices that work with this driver */
179 static const struct usb_device_id redrat3_dev_table
[] = {
180 /* Original version of the RedRat3 */
181 {USB_DEVICE(USB_RR3USB_VENDOR_ID
, USB_RR3USB_PRODUCT_ID
)},
182 /* Second Version/release of the RedRat3 - RetRat3-II */
183 {USB_DEVICE(USB_RR3USB_VENDOR_ID
, USB_RR3IIUSB_PRODUCT_ID
)},
184 {} /* Terminating entry */
187 /* Structure to hold all of our device specific stuff */
189 /* core device bits */
194 struct led_classdev led
;
196 struct usb_ctrlrequest flash_control
;
197 struct urb
*flash_urb
;
202 struct usb_ctrlrequest learn_control
;
203 struct urb
*learn_urb
;
206 /* save off the usb device pointer */
207 struct usb_device
*udev
;
209 /* the receive endpoint */
210 struct usb_endpoint_descriptor
*ep_narrow
;
211 /* the buffer to receive data */
213 /* urb used to read ir data */
214 struct urb
*narrow_urb
;
215 struct urb
*wide_urb
;
217 /* the send endpoint */
218 struct usb_endpoint_descriptor
*ep_out
;
223 /* Is the device currently transmitting?*/
226 /* store for current packet */
227 struct redrat3_irdata irdata
;
236 static void redrat3_dump_fw_error(struct redrat3_dev
*rr3
, int code
)
238 if (!rr3
->transmitting
&& (code
!= 0x40))
239 dev_info(rr3
->dev
, "fw error code 0x%02x: ", code
);
243 pr_cont("No Error\n");
246 /* Codes 0x20 through 0x2f are IR Firmware Errors */
248 pr_cont("Initial signal pulse not long enough to measure carrier frequency\n");
251 pr_cont("Not enough length values allocated for signal\n");
254 pr_cont("Not enough memory allocated for signal data\n");
257 pr_cont("Too many signal repeats\n");
260 pr_cont("Insufficient memory available for IR signal data memory allocation\n");
263 pr_cont("Insufficient memory available for IrDa signal data memory allocation\n");
266 /* Codes 0x30 through 0x3f are USB Firmware Errors */
268 pr_cont("Insufficient memory available for bulk transfer structure\n");
272 * Other error codes... These are primarily errors that can occur in
273 * the control messages sent to the redrat
276 if (!rr3
->transmitting
)
277 pr_cont("Signal capture has been terminated\n");
280 pr_cont("Attempt to set/get and unknown signal I/O algorithm parameter\n");
283 pr_cont("Signal capture already started\n");
287 pr_cont("Unknown Error\n");
292 static u32
redrat3_val_to_mod_freq(struct redrat3_irdata
*irdata
)
295 u16 mod_freq_count
= be16_to_cpu(irdata
->mod_freq_count
);
297 if (mod_freq_count
!= 0)
298 mod_freq
= (RR3_CLK
* be16_to_cpu(irdata
->num_periods
)) /
299 (mod_freq_count
* RR3_CLK_PER_COUNT
);
304 /* this function scales down the figures for the same result... */
305 static u32
redrat3_len_to_us(u32 length
)
307 u32 biglen
= length
* 1000;
308 u32 divisor
= (RR3_CLK_CONV_FACTOR
) / 1000;
309 u32 result
= (u32
) (biglen
/ divisor
);
311 /* don't allow zero lengths to go back, breaks lirc */
312 return result
? result
: 1;
316 * convert us back into redrat3 lengths
318 * length * 1000 length * 1000000
319 * ------------- = ---------------- = micro
320 * rr3clk / 1000 rr3clk
322 * 6 * 2 4 * 3 micro * rr3clk micro * rr3clk / 1000
323 * ----- = 4 ----- = 6 -------------- = len ---------------------
326 static u32
redrat3_us_to_len(u32 microsec
)
331 microsec
= (microsec
> IR_MAX_DURATION
) ? IR_MAX_DURATION
: microsec
;
332 divisor
= (RR3_CLK_CONV_FACTOR
/ 1000);
333 result
= (u32
)(microsec
* divisor
) / 1000;
335 /* don't allow zero lengths to go back, breaks lirc */
336 return result
? result
: 1;
339 static void redrat3_process_ir_data(struct redrat3_dev
*rr3
)
341 struct ir_raw_event rawir
= {};
343 unsigned int i
, sig_size
, offset
, val
;
348 mod_freq
= redrat3_val_to_mod_freq(&rr3
->irdata
);
349 dev_dbg(dev
, "Got mod_freq of %u\n", mod_freq
);
350 if (mod_freq
&& rr3
->wideband
) {
351 struct ir_raw_event ev
= {
356 ir_raw_event_store(rr3
->rc
, &ev
);
359 /* process each rr3 encoded byte into an int */
360 sig_size
= be16_to_cpu(rr3
->irdata
.sig_size
);
361 for (i
= 0; i
< sig_size
; i
++) {
362 offset
= rr3
->irdata
.sigdata
[i
];
363 val
= get_unaligned_be16(&rr3
->irdata
.lens
[offset
]);
365 /* we should always get pulse/space/pulse/space samples */
371 rawir
.duration
= redrat3_len_to_us(val
);
372 /* cap the value to IR_MAX_DURATION */
373 rawir
.duration
= (rawir
.duration
> IR_MAX_DURATION
) ?
374 IR_MAX_DURATION
: rawir
.duration
;
376 dev_dbg(dev
, "storing %s with duration %d (i: %d)\n",
377 rawir
.pulse
? "pulse" : "space", rawir
.duration
, i
);
378 ir_raw_event_store_with_filter(rr3
->rc
, &rawir
);
381 /* add a trailing space */
383 rawir
.timeout
= true;
384 rawir
.duration
= rr3
->rc
->timeout
;
385 dev_dbg(dev
, "storing trailing timeout with duration %d\n",
387 ir_raw_event_store_with_filter(rr3
->rc
, &rawir
);
389 dev_dbg(dev
, "calling ir_raw_event_handle\n");
390 ir_raw_event_handle(rr3
->rc
);
393 /* Util fn to send rr3 cmds */
394 static int redrat3_send_cmd(int cmd
, struct redrat3_dev
*rr3
)
396 struct usb_device
*udev
;
400 data
= kzalloc(sizeof(u8
), GFP_KERNEL
);
405 res
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0), cmd
,
406 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
,
407 0x0000, 0x0000, data
, sizeof(u8
), HZ
* 10);
410 dev_err(rr3
->dev
, "%s: Error sending rr3 cmd res %d, data %d",
411 __func__
, res
, *data
);
421 /* Enables the long range detector and starts async receive */
422 static int redrat3_enable_detector(struct redrat3_dev
*rr3
)
424 struct device
*dev
= rr3
->dev
;
427 ret
= redrat3_send_cmd(RR3_RC_DET_ENABLE
, rr3
);
429 dev_dbg(dev
, "%s: unexpected ret of %d\n",
432 ret
= redrat3_send_cmd(RR3_RC_DET_STATUS
, rr3
);
434 dev_err(dev
, "%s: detector status: %d, should be 1\n",
439 ret
= usb_submit_urb(rr3
->narrow_urb
, GFP_KERNEL
);
441 dev_err(rr3
->dev
, "narrow band urb failed: %d", ret
);
445 ret
= usb_submit_urb(rr3
->wide_urb
, GFP_KERNEL
);
447 dev_err(rr3
->dev
, "wide band urb failed: %d", ret
);
452 static inline void redrat3_delete(struct redrat3_dev
*rr3
,
453 struct usb_device
*udev
)
455 usb_kill_urb(rr3
->narrow_urb
);
456 usb_kill_urb(rr3
->wide_urb
);
457 usb_kill_urb(rr3
->flash_urb
);
458 usb_kill_urb(rr3
->learn_urb
);
459 usb_free_urb(rr3
->narrow_urb
);
460 usb_free_urb(rr3
->wide_urb
);
461 usb_free_urb(rr3
->flash_urb
);
462 usb_free_urb(rr3
->learn_urb
);
463 usb_free_coherent(udev
, le16_to_cpu(rr3
->ep_narrow
->wMaxPacketSize
),
464 rr3
->bulk_in_buf
, rr3
->dma_in
);
469 static u32
redrat3_get_timeout(struct redrat3_dev
*rr3
)
472 u32 timeout
= MS_TO_US(150); /* a sane default, if things go haywire */
476 tmp
= kzalloc(len
, GFP_KERNEL
);
480 pipe
= usb_rcvctrlpipe(rr3
->udev
, 0);
481 ret
= usb_control_msg(rr3
->udev
, pipe
, RR3_GET_IR_PARAM
,
482 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
,
483 RR3_IR_IO_SIG_TIMEOUT
, 0, tmp
, len
, HZ
* 5);
485 dev_warn(rr3
->dev
, "Failed to read timeout from hardware\n");
487 timeout
= redrat3_len_to_us(be32_to_cpup(tmp
));
489 dev_dbg(rr3
->dev
, "Got timeout of %d ms\n", timeout
/ 1000);
497 static int redrat3_set_timeout(struct rc_dev
*rc_dev
, unsigned int timeoutus
)
499 struct redrat3_dev
*rr3
= rc_dev
->priv
;
500 struct usb_device
*udev
= rr3
->udev
;
501 struct device
*dev
= rr3
->dev
;
505 timeout
= kmalloc(sizeof(*timeout
), GFP_KERNEL
);
509 *timeout
= cpu_to_be32(redrat3_us_to_len(timeoutus
));
510 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), RR3_SET_IR_PARAM
,
511 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
,
512 RR3_IR_IO_SIG_TIMEOUT
, 0, timeout
, sizeof(*timeout
),
514 dev_dbg(dev
, "set ir parm timeout %d ret 0x%02x\n",
515 be32_to_cpu(*timeout
), ret
);
517 if (ret
== sizeof(*timeout
))
527 static void redrat3_reset(struct redrat3_dev
*rr3
)
529 struct usb_device
*udev
= rr3
->udev
;
530 struct device
*dev
= rr3
->dev
;
531 int rc
, rxpipe
, txpipe
;
533 size_t const len
= sizeof(*val
);
535 rxpipe
= usb_rcvctrlpipe(udev
, 0);
536 txpipe
= usb_sndctrlpipe(udev
, 0);
538 val
= kmalloc(len
, GFP_KERNEL
);
543 rc
= usb_control_msg(udev
, rxpipe
, RR3_RESET
,
544 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
,
545 RR3_CPUCS_REG_ADDR
, 0, val
, len
, HZ
* 25);
546 dev_dbg(dev
, "reset returned 0x%02x\n", rc
);
549 rc
= usb_control_msg(udev
, txpipe
, RR3_SET_IR_PARAM
,
550 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
,
551 RR3_IR_IO_LENGTH_FUZZ
, 0, val
, len
, HZ
* 25);
552 dev_dbg(dev
, "set ir parm len fuzz %d rc 0x%02x\n", *val
, rc
);
554 *val
= (65536 - (minimum_pause
* 2000)) / 256;
555 rc
= usb_control_msg(udev
, txpipe
, RR3_SET_IR_PARAM
,
556 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
,
557 RR3_IR_IO_MIN_PAUSE
, 0, val
, len
, HZ
* 25);
558 dev_dbg(dev
, "set ir parm min pause %d rc 0x%02x\n", *val
, rc
);
560 *val
= periods_measure_carrier
;
561 rc
= usb_control_msg(udev
, txpipe
, RR3_SET_IR_PARAM
,
562 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
,
563 RR3_IR_IO_PERIODS_MF
, 0, val
, len
, HZ
* 25);
564 dev_dbg(dev
, "set ir parm periods measure carrier %d rc 0x%02x", *val
,
567 *val
= RR3_DRIVER_MAXLENS
;
568 rc
= usb_control_msg(udev
, txpipe
, RR3_SET_IR_PARAM
,
569 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
,
570 RR3_IR_IO_MAX_LENGTHS
, 0, val
, len
, HZ
* 25);
571 dev_dbg(dev
, "set ir parm max lens %d rc 0x%02x\n", *val
, rc
);
576 static void redrat3_get_firmware_rev(struct redrat3_dev
*rr3
)
581 buffer
= kcalloc(RR3_FW_VERSION_LEN
+ 1, sizeof(*buffer
), GFP_KERNEL
);
585 rc
= usb_control_msg(rr3
->udev
, usb_rcvctrlpipe(rr3
->udev
, 0),
587 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
,
588 0, 0, buffer
, RR3_FW_VERSION_LEN
, HZ
* 5);
591 dev_info(rr3
->dev
, "Firmware rev: %s", buffer
);
593 dev_err(rr3
->dev
, "Problem fetching firmware ID\n");
598 static void redrat3_read_packet_start(struct redrat3_dev
*rr3
, unsigned len
)
600 struct redrat3_header
*header
= rr3
->bulk_in_buf
;
601 unsigned pktlen
, pkttype
;
603 /* grab the Length and type of transfer */
604 pktlen
= be16_to_cpu(header
->length
);
605 pkttype
= be16_to_cpu(header
->transfer_type
);
607 if (pktlen
> sizeof(rr3
->irdata
)) {
608 dev_warn(rr3
->dev
, "packet length %u too large\n", pktlen
);
614 if (len
>= sizeof(struct redrat3_error
)) {
615 struct redrat3_error
*error
= rr3
->bulk_in_buf
;
616 unsigned fw_error
= be16_to_cpu(error
->fw_error
);
617 redrat3_dump_fw_error(rr3
, fw_error
);
621 case RR3_MOD_SIGNAL_IN
:
622 memcpy(&rr3
->irdata
, rr3
->bulk_in_buf
, len
);
623 rr3
->bytes_read
= len
;
624 dev_dbg(rr3
->dev
, "bytes_read %d, pktlen %d\n",
625 rr3
->bytes_read
, pktlen
);
629 dev_dbg(rr3
->dev
, "ignoring packet with type 0x%02x, len of %d, 0x%02x\n",
630 pkttype
, len
, pktlen
);
635 static void redrat3_read_packet_continue(struct redrat3_dev
*rr3
, unsigned len
)
637 void *irdata
= &rr3
->irdata
;
639 if (len
+ rr3
->bytes_read
> sizeof(rr3
->irdata
)) {
640 dev_warn(rr3
->dev
, "too much data for packet\n");
645 memcpy(irdata
+ rr3
->bytes_read
, rr3
->bulk_in_buf
, len
);
647 rr3
->bytes_read
+= len
;
648 dev_dbg(rr3
->dev
, "bytes_read %d, pktlen %d\n", rr3
->bytes_read
,
649 be16_to_cpu(rr3
->irdata
.header
.length
));
652 /* gather IR data from incoming urb, process it when we have enough */
653 static int redrat3_get_ir_data(struct redrat3_dev
*rr3
, unsigned len
)
655 struct device
*dev
= rr3
->dev
;
659 if (rr3
->bytes_read
== 0 && len
>= sizeof(struct redrat3_header
)) {
660 redrat3_read_packet_start(rr3
, len
);
661 } else if (rr3
->bytes_read
!= 0) {
662 redrat3_read_packet_continue(rr3
, len
);
663 } else if (rr3
->bytes_read
== 0) {
664 dev_err(dev
, "error: no packet data read\n");
669 if (rr3
->bytes_read
< be16_to_cpu(rr3
->irdata
.header
.length
) +
670 sizeof(struct redrat3_header
))
671 /* we're still accumulating data */
674 /* if we get here, we've got IR data to decode */
675 pkttype
= be16_to_cpu(rr3
->irdata
.header
.transfer_type
);
676 if (pkttype
== RR3_MOD_SIGNAL_IN
)
677 redrat3_process_ir_data(rr3
);
679 dev_dbg(dev
, "discarding non-signal data packet (type 0x%02x)\n",
687 /* callback function from USB when async USB request has completed */
688 static void redrat3_handle_async(struct urb
*urb
)
690 struct redrat3_dev
*rr3
= urb
->context
;
693 switch (urb
->status
) {
695 ret
= redrat3_get_ir_data(rr3
, urb
->actual_length
);
696 if (!ret
&& rr3
->wideband
&& !rr3
->learn_urb
->hcpriv
) {
697 ret
= usb_submit_urb(rr3
->learn_urb
, GFP_ATOMIC
);
699 dev_err(rr3
->dev
, "Failed to submit learning urb: %d",
704 /* no error, prepare to read more */
705 ret
= usb_submit_urb(urb
, GFP_ATOMIC
);
707 dev_err(rr3
->dev
, "Failed to resubmit urb: %d",
720 dev_warn(rr3
->dev
, "Error: urb status = %d\n", urb
->status
);
726 static u16
mod_freq_to_val(unsigned int mod_freq
)
730 /* Clk used in mod. freq. generation is CLK24/4. */
731 return 65536 - (mult
/ mod_freq
);
734 static int redrat3_set_tx_carrier(struct rc_dev
*rcdev
, u32 carrier
)
736 struct redrat3_dev
*rr3
= rcdev
->priv
;
737 struct device
*dev
= rr3
->dev
;
739 dev_dbg(dev
, "Setting modulation frequency to %u", carrier
);
743 rr3
->carrier
= carrier
;
748 static int redrat3_transmit_ir(struct rc_dev
*rcdev
, unsigned *txbuf
,
751 struct redrat3_dev
*rr3
= rcdev
->priv
;
752 struct device
*dev
= rr3
->dev
;
753 struct redrat3_irdata
*irdata
= NULL
;
755 int lencheck
, cur_sample_len
, pipe
;
756 int *sample_lens
= NULL
;
758 unsigned i
, sendbuf_len
;
760 if (rr3
->transmitting
) {
761 dev_warn(dev
, "%s: transmitter already in use\n", __func__
);
765 if (count
> RR3_MAX_SIG_SIZE
- RR3_TX_TRAILER_LEN
)
768 /* rr3 will disable rc detector on transmit */
769 rr3
->transmitting
= true;
771 sample_lens
= kcalloc(RR3_DRIVER_MAXLENS
,
772 sizeof(*sample_lens
),
777 irdata
= kzalloc(sizeof(*irdata
), GFP_KERNEL
);
783 for (i
= 0; i
< count
; i
++) {
784 cur_sample_len
= redrat3_us_to_len(txbuf
[i
]);
785 if (cur_sample_len
> 0xffff) {
786 dev_warn(dev
, "transmit period of %uus truncated to %uus\n",
787 txbuf
[i
], redrat3_len_to_us(0xffff));
788 cur_sample_len
= 0xffff;
790 for (lencheck
= 0; lencheck
< curlencheck
; lencheck
++) {
791 if (sample_lens
[lencheck
] == cur_sample_len
)
794 if (lencheck
== curlencheck
) {
795 dev_dbg(dev
, "txbuf[%d]=%u, pos %d, enc %u\n",
796 i
, txbuf
[i
], curlencheck
, cur_sample_len
);
797 if (curlencheck
< RR3_DRIVER_MAXLENS
) {
798 /* now convert the value to a proper
800 sample_lens
[curlencheck
] = cur_sample_len
;
801 put_unaligned_be16(cur_sample_len
,
802 &irdata
->lens
[curlencheck
]);
809 irdata
->sigdata
[i
] = lencheck
;
812 irdata
->sigdata
[count
] = RR3_END_OF_SIGNAL
;
813 irdata
->sigdata
[count
+ 1] = RR3_END_OF_SIGNAL
;
815 sendbuf_len
= offsetof(struct redrat3_irdata
,
816 sigdata
[count
+ RR3_TX_TRAILER_LEN
]);
817 /* fill in our packet header */
818 irdata
->header
.length
= cpu_to_be16(sendbuf_len
-
819 sizeof(struct redrat3_header
));
820 irdata
->header
.transfer_type
= cpu_to_be16(RR3_MOD_SIGNAL_OUT
);
821 irdata
->pause
= cpu_to_be32(redrat3_len_to_us(100));
822 irdata
->mod_freq_count
= cpu_to_be16(mod_freq_to_val(rr3
->carrier
));
823 irdata
->no_lengths
= curlencheck
;
824 irdata
->sig_size
= cpu_to_be16(count
+ RR3_TX_TRAILER_LEN
);
826 pipe
= usb_sndbulkpipe(rr3
->udev
, rr3
->ep_out
->bEndpointAddress
);
827 ret
= usb_bulk_msg(rr3
->udev
, pipe
, irdata
,
828 sendbuf_len
, &ret_len
, 10 * HZ
);
829 dev_dbg(dev
, "sent %d bytes, (ret %d)\n", ret_len
, ret
);
831 /* now tell the hardware to transmit what we sent it */
832 pipe
= usb_rcvctrlpipe(rr3
->udev
, 0);
833 ret
= usb_control_msg(rr3
->udev
, pipe
, RR3_TX_SEND_SIGNAL
,
834 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
,
835 0, 0, irdata
, 2, HZ
* 10);
838 dev_err(dev
, "Error: control msg send failed, rc %d\n", ret
);
846 rr3
->transmitting
= false;
847 /* rr3 re-enables rc detector because it was enabled before */
852 static void redrat3_brightness_set(struct led_classdev
*led_dev
, enum
853 led_brightness brightness
)
855 struct redrat3_dev
*rr3
= container_of(led_dev
, struct redrat3_dev
,
858 if (brightness
!= LED_OFF
&& atomic_cmpxchg(&rr3
->flash
, 0, 1) == 0) {
859 int ret
= usb_submit_urb(rr3
->flash_urb
, GFP_ATOMIC
);
861 dev_dbg(rr3
->dev
, "%s: unexpected ret of %d\n",
863 atomic_set(&rr3
->flash
, 0);
868 static int redrat3_wideband_receiver(struct rc_dev
*rcdev
, int enable
)
870 struct redrat3_dev
*rr3
= rcdev
->priv
;
873 rr3
->wideband
= enable
!= 0;
876 ret
= usb_submit_urb(rr3
->learn_urb
, GFP_KERNEL
);
878 dev_err(rr3
->dev
, "Failed to submit learning urb: %d",
885 static void redrat3_learn_complete(struct urb
*urb
)
887 struct redrat3_dev
*rr3
= urb
->context
;
889 switch (urb
->status
) {
899 dev_err(rr3
->dev
, "Error: learn urb status = %d", urb
->status
);
904 static void redrat3_led_complete(struct urb
*urb
)
906 struct redrat3_dev
*rr3
= urb
->context
;
908 switch (urb
->status
) {
918 dev_dbg(rr3
->dev
, "Error: urb status = %d\n", urb
->status
);
922 rr3
->led
.brightness
= LED_OFF
;
923 atomic_dec(&rr3
->flash
);
926 static struct rc_dev
*redrat3_init_rc_dev(struct redrat3_dev
*rr3
)
928 struct device
*dev
= rr3
->dev
;
931 u16 prod
= le16_to_cpu(rr3
->udev
->descriptor
.idProduct
);
933 rc
= rc_allocate_device(RC_DRIVER_IR_RAW
);
937 snprintf(rr3
->name
, sizeof(rr3
->name
),
938 "RedRat3%s Infrared Remote Transceiver",
939 prod
== USB_RR3IIUSB_PRODUCT_ID
? "-II" : "");
941 usb_make_path(rr3
->udev
, rr3
->phys
, sizeof(rr3
->phys
));
943 rc
->device_name
= rr3
->name
;
944 rc
->input_phys
= rr3
->phys
;
945 usb_to_input_id(rr3
->udev
, &rc
->input_id
);
946 rc
->dev
.parent
= dev
;
948 rc
->allowed_protocols
= RC_PROTO_BIT_ALL_IR_DECODER
;
949 rc
->min_timeout
= MS_TO_US(RR3_RX_MIN_TIMEOUT
);
950 rc
->max_timeout
= MS_TO_US(RR3_RX_MAX_TIMEOUT
);
951 rc
->timeout
= redrat3_get_timeout(rr3
);
952 rc
->s_timeout
= redrat3_set_timeout
;
953 rc
->tx_ir
= redrat3_transmit_ir
;
954 rc
->s_tx_carrier
= redrat3_set_tx_carrier
;
955 rc
->s_carrier_report
= redrat3_wideband_receiver
;
956 rc
->driver_name
= DRIVER_NAME
;
957 rc
->rx_resolution
= 2;
958 rc
->map_name
= RC_MAP_HAUPPAUGE
;
960 ret
= rc_register_device(rc
);
962 dev_err(dev
, "remote dev registration failed\n");
973 static int redrat3_dev_probe(struct usb_interface
*intf
,
974 const struct usb_device_id
*id
)
976 struct usb_device
*udev
= interface_to_usbdev(intf
);
977 struct device
*dev
= &intf
->dev
;
978 struct usb_host_interface
*uhi
;
979 struct redrat3_dev
*rr3
;
980 struct usb_endpoint_descriptor
*ep
;
981 struct usb_endpoint_descriptor
*ep_narrow
= NULL
;
982 struct usb_endpoint_descriptor
*ep_wide
= NULL
;
983 struct usb_endpoint_descriptor
*ep_out
= NULL
;
986 int retval
= -ENOMEM
;
988 uhi
= intf
->cur_altsetting
;
990 /* find our bulk-in and bulk-out endpoints */
991 for (i
= 0; i
< uhi
->desc
.bNumEndpoints
; ++i
) {
992 ep
= &uhi
->endpoint
[i
].desc
;
993 addr
= ep
->bEndpointAddress
;
994 attrs
= ep
->bmAttributes
;
996 if (((addr
& USB_ENDPOINT_DIR_MASK
) == USB_DIR_IN
) &&
997 ((attrs
& USB_ENDPOINT_XFERTYPE_MASK
) ==
998 USB_ENDPOINT_XFER_BULK
)) {
999 dev_dbg(dev
, "found bulk-in endpoint at 0x%02x\n",
1000 ep
->bEndpointAddress
);
1001 /* data comes in on 0x82, 0x81 is for learning */
1002 if (ep
->bEndpointAddress
== RR3_NARROW_IN_EP_ADDR
)
1004 if (ep
->bEndpointAddress
== RR3_WIDE_IN_EP_ADDR
)
1008 if ((ep_out
== NULL
) &&
1009 ((addr
& USB_ENDPOINT_DIR_MASK
) == USB_DIR_OUT
) &&
1010 ((attrs
& USB_ENDPOINT_XFERTYPE_MASK
) ==
1011 USB_ENDPOINT_XFER_BULK
)) {
1012 dev_dbg(dev
, "found bulk-out endpoint at 0x%02x\n",
1013 ep
->bEndpointAddress
);
1018 if (!ep_narrow
|| !ep_out
|| !ep_wide
) {
1019 dev_err(dev
, "Couldn't find all endpoints\n");
1024 /* allocate memory for our device state and initialize it */
1025 rr3
= kzalloc(sizeof(*rr3
), GFP_KERNEL
);
1029 rr3
->dev
= &intf
->dev
;
1030 rr3
->ep_narrow
= ep_narrow
;
1031 rr3
->ep_out
= ep_out
;
1034 /* set up bulk-in endpoint */
1035 rr3
->narrow_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1036 if (!rr3
->narrow_urb
)
1039 rr3
->wide_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1043 rr3
->bulk_in_buf
= usb_alloc_coherent(udev
,
1044 le16_to_cpu(ep_narrow
->wMaxPacketSize
),
1045 GFP_KERNEL
, &rr3
->dma_in
);
1046 if (!rr3
->bulk_in_buf
)
1049 pipe
= usb_rcvbulkpipe(udev
, ep_narrow
->bEndpointAddress
);
1050 usb_fill_bulk_urb(rr3
->narrow_urb
, udev
, pipe
, rr3
->bulk_in_buf
,
1051 le16_to_cpu(ep_narrow
->wMaxPacketSize
),
1052 redrat3_handle_async
, rr3
);
1053 rr3
->narrow_urb
->transfer_dma
= rr3
->dma_in
;
1054 rr3
->narrow_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1056 pipe
= usb_rcvbulkpipe(udev
, ep_wide
->bEndpointAddress
);
1057 usb_fill_bulk_urb(rr3
->wide_urb
, udev
, pipe
, rr3
->bulk_in_buf
,
1058 le16_to_cpu(ep_narrow
->wMaxPacketSize
),
1059 redrat3_handle_async
, rr3
);
1060 rr3
->wide_urb
->transfer_dma
= rr3
->dma_in
;
1061 rr3
->wide_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1064 redrat3_get_firmware_rev(rr3
);
1066 /* default.. will get overridden by any sends with a freq defined */
1067 rr3
->carrier
= 38000;
1069 atomic_set(&rr3
->flash
, 0);
1070 rr3
->flash_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1071 if (!rr3
->flash_urb
)
1075 rr3
->learn_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1076 if (!rr3
->learn_urb
)
1079 /* setup packet is 'c0 b2 0000 0000 0001' */
1080 rr3
->learn_control
.bRequestType
= 0xc0;
1081 rr3
->learn_control
.bRequest
= RR3_MODSIG_CAPTURE
;
1082 rr3
->learn_control
.wLength
= cpu_to_le16(1);
1084 usb_fill_control_urb(rr3
->learn_urb
, udev
, usb_rcvctrlpipe(udev
, 0),
1085 (unsigned char *)&rr3
->learn_control
,
1086 &rr3
->learn_buf
, sizeof(rr3
->learn_buf
),
1087 redrat3_learn_complete
, rr3
);
1089 /* setup packet is 'c0 b9 0000 0000 0001' */
1090 rr3
->flash_control
.bRequestType
= 0xc0;
1091 rr3
->flash_control
.bRequest
= RR3_BLINK_LED
;
1092 rr3
->flash_control
.wLength
= cpu_to_le16(1);
1094 usb_fill_control_urb(rr3
->flash_urb
, udev
, usb_rcvctrlpipe(udev
, 0),
1095 (unsigned char *)&rr3
->flash_control
,
1096 &rr3
->flash_in_buf
, sizeof(rr3
->flash_in_buf
),
1097 redrat3_led_complete
, rr3
);
1100 rr3
->led
.name
= "redrat3:red:feedback";
1101 rr3
->led
.default_trigger
= "rc-feedback";
1102 rr3
->led
.brightness_set
= redrat3_brightness_set
;
1103 retval
= led_classdev_register(&intf
->dev
, &rr3
->led
);
1107 rr3
->rc
= redrat3_init_rc_dev(rr3
);
1113 /* might be all we need to do? */
1114 retval
= redrat3_enable_detector(rr3
);
1118 /* we can register the device now, as it is ready */
1119 usb_set_intfdata(intf
, rr3
);
1124 led_classdev_unregister(&rr3
->led
);
1126 redrat3_delete(rr3
, rr3
->udev
);
1132 static void redrat3_dev_disconnect(struct usb_interface
*intf
)
1134 struct usb_device
*udev
= interface_to_usbdev(intf
);
1135 struct redrat3_dev
*rr3
= usb_get_intfdata(intf
);
1137 usb_set_intfdata(intf
, NULL
);
1138 rc_unregister_device(rr3
->rc
);
1139 led_classdev_unregister(&rr3
->led
);
1140 redrat3_delete(rr3
, udev
);
1143 static int redrat3_dev_suspend(struct usb_interface
*intf
, pm_message_t message
)
1145 struct redrat3_dev
*rr3
= usb_get_intfdata(intf
);
1147 led_classdev_suspend(&rr3
->led
);
1148 usb_kill_urb(rr3
->narrow_urb
);
1149 usb_kill_urb(rr3
->wide_urb
);
1150 usb_kill_urb(rr3
->flash_urb
);
1154 static int redrat3_dev_resume(struct usb_interface
*intf
)
1156 struct redrat3_dev
*rr3
= usb_get_intfdata(intf
);
1158 if (usb_submit_urb(rr3
->narrow_urb
, GFP_ATOMIC
))
1160 if (usb_submit_urb(rr3
->wide_urb
, GFP_ATOMIC
))
1162 led_classdev_resume(&rr3
->led
);
1166 static struct usb_driver redrat3_dev_driver
= {
1167 .name
= DRIVER_NAME
,
1168 .probe
= redrat3_dev_probe
,
1169 .disconnect
= redrat3_dev_disconnect
,
1170 .suspend
= redrat3_dev_suspend
,
1171 .resume
= redrat3_dev_resume
,
1172 .reset_resume
= redrat3_dev_resume
,
1173 .id_table
= redrat3_dev_table
1176 module_usb_driver(redrat3_dev_driver
);
1178 MODULE_DESCRIPTION(DRIVER_DESC
);
1179 MODULE_AUTHOR(DRIVER_AUTHOR
);
1180 MODULE_AUTHOR(DRIVER_AUTHOR2
);
1181 MODULE_LICENSE("GPL");
1182 MODULE_DEVICE_TABLE(usb
, redrat3_dev_table
);