xref: /openbmc/linux/drivers/media/rc/redrat3.c (revision 25da661a14f38f34f01e0ddd6247614a295d29e3)
12154be65SJarod Wilson /*
22154be65SJarod Wilson  * USB RedRat3 IR Transceiver rc-core driver
32154be65SJarod Wilson  *
42154be65SJarod Wilson  * Copyright (c) 2011 by Jarod Wilson <jarod@redhat.com>
52154be65SJarod Wilson  *  based heavily on the work of Stephen Cox, with additional
62154be65SJarod Wilson  *  help from RedRat Ltd.
72154be65SJarod Wilson  *
82154be65SJarod Wilson  * This driver began life based an an old version of the first-generation
92154be65SJarod Wilson  * lirc_mceusb driver from the lirc 0.7.2 distribution. It was then
102154be65SJarod Wilson  * significantly rewritten by Stephen Cox with the aid of RedRat Ltd's
112154be65SJarod Wilson  * Chris Dodge.
122154be65SJarod Wilson  *
132154be65SJarod Wilson  * The driver was then ported to rc-core and significantly rewritten again,
142154be65SJarod Wilson  * by Jarod, using the in-kernel mceusb driver as a guide, after an initial
152154be65SJarod Wilson  * port effort was started by Stephen.
162154be65SJarod Wilson  *
172154be65SJarod Wilson  * TODO LIST:
182154be65SJarod Wilson  * - fix lirc not showing repeats properly
192154be65SJarod Wilson  * --
202154be65SJarod Wilson  *
212154be65SJarod Wilson  * The RedRat3 is a USB transceiver with both send & receive,
222154be65SJarod Wilson  * with 2 separate sensors available for receive to enable
232154be65SJarod Wilson  * both good long range reception for general use, and good
242154be65SJarod Wilson  * short range reception when required for learning a signal.
252154be65SJarod Wilson  *
262154be65SJarod Wilson  * http://www.redrat.co.uk/
272154be65SJarod Wilson  *
282154be65SJarod Wilson  * It uses its own little protocol to communicate, the required
292154be65SJarod Wilson  * parts of which are embedded within this driver.
302154be65SJarod Wilson  * --
312154be65SJarod Wilson  *
322154be65SJarod Wilson  * This program is free software; you can redistribute it and/or modify
332154be65SJarod Wilson  * it under the terms of the GNU General Public License as published by
342154be65SJarod Wilson  * the Free Software Foundation; either version 2 of the License, or
352154be65SJarod Wilson  * (at your option) any later version.
362154be65SJarod Wilson  *
372154be65SJarod Wilson  * This program is distributed in the hope that it will be useful,
382154be65SJarod Wilson  * but WITHOUT ANY WARRANTY; without even the implied warranty of
392154be65SJarod Wilson  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
402154be65SJarod Wilson  * GNU General Public License for more details.
412154be65SJarod Wilson  *
422154be65SJarod Wilson  * You should have received a copy of the GNU General Public License
432154be65SJarod Wilson  * along with this program; if not, write to the Free Software
442154be65SJarod Wilson  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
452154be65SJarod Wilson  *
462154be65SJarod Wilson  */
472154be65SJarod Wilson 
484c055a5aSSean Young #include <asm/unaligned.h>
492154be65SJarod Wilson #include <linux/device.h>
50bf139726SSean Young #include <linux/leds.h>
512154be65SJarod Wilson #include <linux/module.h>
522154be65SJarod Wilson #include <linux/slab.h>
532154be65SJarod Wilson #include <linux/usb.h>
542154be65SJarod Wilson #include <linux/usb/input.h>
552154be65SJarod Wilson #include <media/rc-core.h>
562154be65SJarod Wilson 
572154be65SJarod Wilson /* Driver Information */
582154be65SJarod Wilson #define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
592154be65SJarod Wilson #define DRIVER_AUTHOR2 "The Dweller, Stephen Cox"
602154be65SJarod Wilson #define DRIVER_DESC "RedRat3 USB IR Transceiver Driver"
612154be65SJarod Wilson #define DRIVER_NAME "redrat3"
622154be65SJarod Wilson 
632154be65SJarod Wilson /* bulk data transfer types */
642154be65SJarod Wilson #define RR3_ERROR		0x01
652154be65SJarod Wilson #define RR3_MOD_SIGNAL_IN	0x20
662154be65SJarod Wilson #define RR3_MOD_SIGNAL_OUT	0x21
672154be65SJarod Wilson 
682154be65SJarod Wilson /* Get the RR firmware version */
692154be65SJarod Wilson #define RR3_FW_VERSION		0xb1
702154be65SJarod Wilson #define RR3_FW_VERSION_LEN	64
712154be65SJarod Wilson /* Send encoded signal bulk-sent earlier*/
722154be65SJarod Wilson #define RR3_TX_SEND_SIGNAL	0xb3
732154be65SJarod Wilson #define RR3_SET_IR_PARAM	0xb7
742154be65SJarod Wilson #define RR3_GET_IR_PARAM	0xb8
752154be65SJarod Wilson /* Blink the red LED on the device */
762154be65SJarod Wilson #define RR3_BLINK_LED		0xb9
772154be65SJarod Wilson /* Read serial number of device */
782154be65SJarod Wilson #define RR3_READ_SER_NO		0xba
792154be65SJarod Wilson #define RR3_SER_NO_LEN		4
802154be65SJarod Wilson /* Start capture with the RC receiver */
812154be65SJarod Wilson #define RR3_RC_DET_ENABLE	0xbb
822154be65SJarod Wilson /* Stop capture with the RC receiver */
832154be65SJarod Wilson #define RR3_RC_DET_DISABLE	0xbc
842154be65SJarod Wilson /* Return the status of RC detector capture */
852154be65SJarod Wilson #define RR3_RC_DET_STATUS	0xbd
862154be65SJarod Wilson /* Reset redrat */
872154be65SJarod Wilson #define RR3_RESET		0xa0
882154be65SJarod Wilson 
892154be65SJarod Wilson /* Max number of lengths in the signal. */
902154be65SJarod Wilson #define RR3_IR_IO_MAX_LENGTHS	0x01
912154be65SJarod Wilson /* Periods to measure mod. freq. */
922154be65SJarod Wilson #define RR3_IR_IO_PERIODS_MF	0x02
932154be65SJarod Wilson /* Size of memory for main signal data */
942154be65SJarod Wilson #define RR3_IR_IO_SIG_MEM_SIZE	0x03
952154be65SJarod Wilson /* Delta value when measuring lengths */
962154be65SJarod Wilson #define RR3_IR_IO_LENGTH_FUZZ	0x04
972154be65SJarod Wilson /* Timeout for end of signal detection */
982154be65SJarod Wilson #define RR3_IR_IO_SIG_TIMEOUT	0x05
9939c1cb2bSJonathan McCrohan /* Minimum value for pause recognition. */
1002154be65SJarod Wilson #define RR3_IR_IO_MIN_PAUSE	0x06
1012154be65SJarod Wilson 
1022154be65SJarod Wilson /* Clock freq. of EZ-USB chip */
1032154be65SJarod Wilson #define RR3_CLK			24000000
1042154be65SJarod Wilson /* Clock periods per timer count */
1052154be65SJarod Wilson #define RR3_CLK_PER_COUNT	12
1062154be65SJarod Wilson /* (RR3_CLK / RR3_CLK_PER_COUNT) */
1072154be65SJarod Wilson #define RR3_CLK_CONV_FACTOR	2000000
1082154be65SJarod Wilson /* USB bulk-in IR data endpoint address */
1092154be65SJarod Wilson #define RR3_BULK_IN_EP_ADDR	0x82
1102154be65SJarod Wilson 
1112154be65SJarod Wilson /* Size of the fixed-length portion of the signal */
1122154be65SJarod Wilson #define RR3_DRIVER_MAXLENS	128
1132154be65SJarod Wilson #define RR3_MAX_SIG_SIZE	512
1142154be65SJarod Wilson #define RR3_TIME_UNIT		50
1152154be65SJarod Wilson #define RR3_END_OF_SIGNAL	0x7f
1162154be65SJarod Wilson #define RR3_TX_TRAILER_LEN	2
1172154be65SJarod Wilson #define RR3_RX_MIN_TIMEOUT	5
1182154be65SJarod Wilson #define RR3_RX_MAX_TIMEOUT	2000
1192154be65SJarod Wilson 
1202154be65SJarod Wilson /* The 8051's CPUCS Register address */
1212154be65SJarod Wilson #define RR3_CPUCS_REG_ADDR	0x7f92
1222154be65SJarod Wilson 
1232154be65SJarod Wilson #define USB_RR3USB_VENDOR_ID	0x112a
1242154be65SJarod Wilson #define USB_RR3USB_PRODUCT_ID	0x0001
1252154be65SJarod Wilson #define USB_RR3IIUSB_PRODUCT_ID	0x0005
1262154be65SJarod Wilson 
1274c055a5aSSean Young struct redrat3_header {
1284c055a5aSSean Young 	__be16 length;
1294c055a5aSSean Young 	__be16 transfer_type;
1304c055a5aSSean Young } __packed;
1314c055a5aSSean Young 
1324c055a5aSSean Young /* sending and receiving irdata */
1334c055a5aSSean Young struct redrat3_irdata {
1344c055a5aSSean Young 	struct redrat3_header header;
1354c055a5aSSean Young 	__be32 pause;
1364c055a5aSSean Young 	__be16 mod_freq_count;
1374c055a5aSSean Young 	__be16 num_periods;
1384c055a5aSSean Young 	__u8 max_lengths;
1394c055a5aSSean Young 	__u8 no_lengths;
1404c055a5aSSean Young 	__be16 max_sig_size;
1414c055a5aSSean Young 	__be16 sig_size;
1424c055a5aSSean Young 	__u8 no_repeats;
1434c055a5aSSean Young 	__be16 lens[RR3_DRIVER_MAXLENS]; /* not aligned */
1444c055a5aSSean Young 	__u8 sigdata[RR3_MAX_SIG_SIZE];
1454c055a5aSSean Young } __packed;
1464c055a5aSSean Young 
1474c055a5aSSean Young /* firmware errors */
1484c055a5aSSean Young struct redrat3_error {
1494c055a5aSSean Young 	struct redrat3_header header;
1504c055a5aSSean Young 	__be16 fw_error;
1514c055a5aSSean Young } __packed;
1524c055a5aSSean Young 
1532154be65SJarod Wilson /* table of devices that work with this driver */
1542154be65SJarod Wilson static struct usb_device_id redrat3_dev_table[] = {
1552154be65SJarod Wilson 	/* Original version of the RedRat3 */
1562154be65SJarod Wilson 	{USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3USB_PRODUCT_ID)},
1572154be65SJarod Wilson 	/* Second Version/release of the RedRat3 - RetRat3-II */
1582154be65SJarod Wilson 	{USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3IIUSB_PRODUCT_ID)},
1592154be65SJarod Wilson 	{}			/* Terminating entry */
1602154be65SJarod Wilson };
1612154be65SJarod Wilson 
1622154be65SJarod Wilson /* Structure to hold all of our device specific stuff */
1632154be65SJarod Wilson struct redrat3_dev {
1642154be65SJarod Wilson 	/* core device bits */
1652154be65SJarod Wilson 	struct rc_dev *rc;
1662154be65SJarod Wilson 	struct device *dev;
1672154be65SJarod Wilson 
168bf139726SSean Young 	/* led control */
169bf139726SSean Young 	struct led_classdev led;
170bf139726SSean Young 	atomic_t flash;
171bf139726SSean Young 	struct usb_ctrlrequest flash_control;
172bf139726SSean Young 	struct urb *flash_urb;
173bf139726SSean Young 	u8 flash_in_buf;
174bf139726SSean Young 
1752154be65SJarod Wilson 	/* save off the usb device pointer */
1762154be65SJarod Wilson 	struct usb_device *udev;
1772154be65SJarod Wilson 
1782154be65SJarod Wilson 	/* the receive endpoint */
1792154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_in;
1802154be65SJarod Wilson 	/* the buffer to receive data */
1814c055a5aSSean Young 	void *bulk_in_buf;
1822154be65SJarod Wilson 	/* urb used to read ir data */
1832154be65SJarod Wilson 	struct urb *read_urb;
1842154be65SJarod Wilson 
1852154be65SJarod Wilson 	/* the send endpoint */
1862154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_out;
1872154be65SJarod Wilson 
1882154be65SJarod Wilson 	/* usb dma */
1892154be65SJarod Wilson 	dma_addr_t dma_in;
1902154be65SJarod Wilson 
191*25da661aSSean Young 	/* rx signal timeout */
192c53f9f00SJarod Wilson 	u32 hw_timeout;
1932154be65SJarod Wilson 
1942154be65SJarod Wilson 	/* Is the device currently transmitting?*/
1952154be65SJarod Wilson 	bool transmitting;
1962154be65SJarod Wilson 
1972154be65SJarod Wilson 	/* store for current packet */
1984c055a5aSSean Young 	struct redrat3_irdata irdata;
1992154be65SJarod Wilson 	u16 bytes_read;
2002154be65SJarod Wilson 
2012154be65SJarod Wilson 	u32 carrier;
2022154be65SJarod Wilson 
2034c055a5aSSean Young 	char name[64];
2042154be65SJarod Wilson 	char phys[64];
2052154be65SJarod Wilson };
2062154be65SJarod Wilson 
2072154be65SJarod Wilson /*
2082154be65SJarod Wilson  * redrat3_issue_async
2092154be65SJarod Wilson  *
2102154be65SJarod Wilson  *  Issues an async read to the ir data in port..
2112154be65SJarod Wilson  *  sets the callback to be redrat3_handle_async
2122154be65SJarod Wilson  */
2132154be65SJarod Wilson static void redrat3_issue_async(struct redrat3_dev *rr3)
2142154be65SJarod Wilson {
2152154be65SJarod Wilson 	int res;
2162154be65SJarod Wilson 
2172154be65SJarod Wilson 	res = usb_submit_urb(rr3->read_urb, GFP_ATOMIC);
2182154be65SJarod Wilson 	if (res)
2193228bf81SGreg Kroah-Hartman 		dev_dbg(rr3->dev,
2203228bf81SGreg Kroah-Hartman 			"%s: receive request FAILED! (res %d, len %d)\n",
2213228bf81SGreg Kroah-Hartman 			__func__, res, rr3->read_urb->transfer_buffer_length);
2222154be65SJarod Wilson }
2232154be65SJarod Wilson 
2242154be65SJarod Wilson static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code)
2252154be65SJarod Wilson {
2262154be65SJarod Wilson 	if (!rr3->transmitting && (code != 0x40))
2272154be65SJarod Wilson 		dev_info(rr3->dev, "fw error code 0x%02x: ", code);
2282154be65SJarod Wilson 
2292154be65SJarod Wilson 	switch (code) {
2302154be65SJarod Wilson 	case 0x00:
2312154be65SJarod Wilson 		pr_cont("No Error\n");
2322154be65SJarod Wilson 		break;
2332154be65SJarod Wilson 
2342154be65SJarod Wilson 	/* Codes 0x20 through 0x2f are IR Firmware Errors */
2352154be65SJarod Wilson 	case 0x20:
2362154be65SJarod Wilson 		pr_cont("Initial signal pulse not long enough "
2372154be65SJarod Wilson 			"to measure carrier frequency\n");
2382154be65SJarod Wilson 		break;
2392154be65SJarod Wilson 	case 0x21:
2402154be65SJarod Wilson 		pr_cont("Not enough length values allocated for signal\n");
2412154be65SJarod Wilson 		break;
2422154be65SJarod Wilson 	case 0x22:
2432154be65SJarod Wilson 		pr_cont("Not enough memory allocated for signal data\n");
2442154be65SJarod Wilson 		break;
2452154be65SJarod Wilson 	case 0x23:
2462154be65SJarod Wilson 		pr_cont("Too many signal repeats\n");
2472154be65SJarod Wilson 		break;
2482154be65SJarod Wilson 	case 0x28:
2492154be65SJarod Wilson 		pr_cont("Insufficient memory available for IR signal "
2502154be65SJarod Wilson 			"data memory allocation\n");
2512154be65SJarod Wilson 		break;
2522154be65SJarod Wilson 	case 0x29:
2532154be65SJarod Wilson 		pr_cont("Insufficient memory available "
2542154be65SJarod Wilson 			"for IrDa signal data memory allocation\n");
2552154be65SJarod Wilson 		break;
2562154be65SJarod Wilson 
2572154be65SJarod Wilson 	/* Codes 0x30 through 0x3f are USB Firmware Errors */
2582154be65SJarod Wilson 	case 0x30:
2592154be65SJarod Wilson 		pr_cont("Insufficient memory available for bulk "
2602154be65SJarod Wilson 			"transfer structure\n");
2612154be65SJarod Wilson 		break;
2622154be65SJarod Wilson 
2632154be65SJarod Wilson 	/*
2642154be65SJarod Wilson 	 * Other error codes... These are primarily errors that can occur in
2652154be65SJarod Wilson 	 * the control messages sent to the redrat
2662154be65SJarod Wilson 	 */
2672154be65SJarod Wilson 	case 0x40:
2682154be65SJarod Wilson 		if (!rr3->transmitting)
2692154be65SJarod Wilson 			pr_cont("Signal capture has been terminated\n");
2702154be65SJarod Wilson 		break;
2712154be65SJarod Wilson 	case 0x41:
2722154be65SJarod Wilson 		pr_cont("Attempt to set/get and unknown signal I/O "
2732154be65SJarod Wilson 			"algorithm parameter\n");
2742154be65SJarod Wilson 		break;
2752154be65SJarod Wilson 	case 0x42:
2762154be65SJarod Wilson 		pr_cont("Signal capture already started\n");
2772154be65SJarod Wilson 		break;
2782154be65SJarod Wilson 
2792154be65SJarod Wilson 	default:
2802154be65SJarod Wilson 		pr_cont("Unknown Error\n");
2812154be65SJarod Wilson 		break;
2822154be65SJarod Wilson 	}
2832154be65SJarod Wilson }
2842154be65SJarod Wilson 
2854c055a5aSSean Young static u32 redrat3_val_to_mod_freq(struct redrat3_irdata *irdata)
2862154be65SJarod Wilson {
2872154be65SJarod Wilson 	u32 mod_freq = 0;
2884c055a5aSSean Young 	u16 mod_freq_count = be16_to_cpu(irdata->mod_freq_count);
2892154be65SJarod Wilson 
2904c055a5aSSean Young 	if (mod_freq_count != 0)
2914c055a5aSSean Young 		mod_freq = (RR3_CLK * be16_to_cpu(irdata->num_periods)) /
2924c055a5aSSean Young 			(mod_freq_count * RR3_CLK_PER_COUNT);
2932154be65SJarod Wilson 
2942154be65SJarod Wilson 	return mod_freq;
2952154be65SJarod Wilson }
2962154be65SJarod Wilson 
2972154be65SJarod Wilson /* this function scales down the figures for the same result... */
2982154be65SJarod Wilson static u32 redrat3_len_to_us(u32 length)
2992154be65SJarod Wilson {
3002154be65SJarod Wilson 	u32 biglen = length * 1000;
3012154be65SJarod Wilson 	u32 divisor = (RR3_CLK_CONV_FACTOR) / 1000;
3022154be65SJarod Wilson 	u32 result = (u32) (biglen / divisor);
3032154be65SJarod Wilson 
3042154be65SJarod Wilson 	/* don't allow zero lengths to go back, breaks lirc */
3052154be65SJarod Wilson 	return result ? result : 1;
3062154be65SJarod Wilson }
3072154be65SJarod Wilson 
3082154be65SJarod Wilson /*
3092154be65SJarod Wilson  * convert us back into redrat3 lengths
3102154be65SJarod Wilson  *
3112154be65SJarod Wilson  * length * 1000   length * 1000000
3122154be65SJarod Wilson  * ------------- = ---------------- = micro
3132154be65SJarod Wilson  * rr3clk / 1000       rr3clk
3142154be65SJarod Wilson 
3152154be65SJarod Wilson  * 6 * 2       4 * 3        micro * rr3clk          micro * rr3clk / 1000
3162154be65SJarod Wilson  * ----- = 4   ----- = 6    -------------- = len    ---------------------
3172154be65SJarod Wilson  *   3           2             1000000                    1000
3182154be65SJarod Wilson  */
3192154be65SJarod Wilson static u32 redrat3_us_to_len(u32 microsec)
3202154be65SJarod Wilson {
3212154be65SJarod Wilson 	u32 result;
3222154be65SJarod Wilson 	u32 divisor;
3232154be65SJarod Wilson 
32495cf60aaSMauro Carvalho Chehab 	microsec = (microsec > IR_MAX_DURATION) ? IR_MAX_DURATION : microsec;
3252154be65SJarod Wilson 	divisor = (RR3_CLK_CONV_FACTOR / 1000);
3262154be65SJarod Wilson 	result = (u32)(microsec * divisor) / 1000;
3272154be65SJarod Wilson 
3282154be65SJarod Wilson 	/* don't allow zero lengths to go back, breaks lirc */
3292154be65SJarod Wilson 	return result ? result : 1;
3302154be65SJarod Wilson }
3312154be65SJarod Wilson 
3322154be65SJarod Wilson static void redrat3_process_ir_data(struct redrat3_dev *rr3)
3332154be65SJarod Wilson {
3342154be65SJarod Wilson 	DEFINE_IR_RAW_EVENT(rawir);
3352154be65SJarod Wilson 	struct device *dev;
336*25da661aSSean Young 	unsigned int i, sig_size, single_len, offset, val;
3374c055a5aSSean Young 	u32 mod_freq;
3382154be65SJarod Wilson 
3392154be65SJarod Wilson 	if (!rr3) {
3402154be65SJarod Wilson 		pr_err("%s called with no context!\n", __func__);
3412154be65SJarod Wilson 		return;
3422154be65SJarod Wilson 	}
3432154be65SJarod Wilson 
3442154be65SJarod Wilson 	dev = rr3->dev;
3452154be65SJarod Wilson 
3464c055a5aSSean Young 	mod_freq = redrat3_val_to_mod_freq(&rr3->irdata);
3473228bf81SGreg Kroah-Hartman 	dev_dbg(dev, "Got mod_freq of %u\n", mod_freq);
3482154be65SJarod Wilson 
3492154be65SJarod Wilson 	/* process each rr3 encoded byte into an int */
3504c055a5aSSean Young 	sig_size = be16_to_cpu(rr3->irdata.sig_size);
3514c055a5aSSean Young 	for (i = 0; i < sig_size; i++) {
3524c055a5aSSean Young 		offset = rr3->irdata.sigdata[i];
3534c055a5aSSean Young 		val = get_unaligned_be16(&rr3->irdata.lens[offset]);
3544c055a5aSSean Young 		single_len = redrat3_len_to_us(val);
3552154be65SJarod Wilson 
3562154be65SJarod Wilson 		/* we should always get pulse/space/pulse/space samples */
3572154be65SJarod Wilson 		if (i % 2)
3582154be65SJarod Wilson 			rawir.pulse = false;
3592154be65SJarod Wilson 		else
3602154be65SJarod Wilson 			rawir.pulse = true;
3612154be65SJarod Wilson 
3622154be65SJarod Wilson 		rawir.duration = US_TO_NS(single_len);
3632c594ffaSJarod Wilson 		/* cap the value to IR_MAX_DURATION */
36495cf60aaSMauro Carvalho Chehab 		rawir.duration = (rawir.duration > IR_MAX_DURATION) ?
36595cf60aaSMauro Carvalho Chehab 				 IR_MAX_DURATION : rawir.duration;
3662c594ffaSJarod Wilson 
3673228bf81SGreg Kroah-Hartman 		dev_dbg(dev, "storing %s with duration %d (i: %d)\n",
3682154be65SJarod Wilson 			rawir.pulse ? "pulse" : "space", rawir.duration, i);
3692154be65SJarod Wilson 		ir_raw_event_store_with_filter(rr3->rc, &rawir);
3702154be65SJarod Wilson 	}
3712154be65SJarod Wilson 
372*25da661aSSean Young 	/* add a trailing space */
3732154be65SJarod Wilson 	rawir.pulse = false;
374*25da661aSSean Young 	rawir.timeout = true;
375*25da661aSSean Young 	rawir.duration = US_TO_NS(rr3->hw_timeout);
376*25da661aSSean Young 	dev_dbg(dev, "storing trailing timeout with duration %d\n",
3772154be65SJarod Wilson 							rawir.duration);
3782154be65SJarod Wilson 	ir_raw_event_store_with_filter(rr3->rc, &rawir);
3792154be65SJarod Wilson 
3803228bf81SGreg Kroah-Hartman 	dev_dbg(dev, "calling ir_raw_event_handle\n");
3812154be65SJarod Wilson 	ir_raw_event_handle(rr3->rc);
3822154be65SJarod Wilson }
3832154be65SJarod Wilson 
3842154be65SJarod Wilson /* Util fn to send rr3 cmds */
3856948524dSMauro Carvalho Chehab static int redrat3_send_cmd(int cmd, struct redrat3_dev *rr3)
3862154be65SJarod Wilson {
3872154be65SJarod Wilson 	struct usb_device *udev;
3882154be65SJarod Wilson 	u8 *data;
3892154be65SJarod Wilson 	int res;
3902154be65SJarod Wilson 
3912154be65SJarod Wilson 	data = kzalloc(sizeof(u8), GFP_KERNEL);
3922154be65SJarod Wilson 	if (!data)
3932154be65SJarod Wilson 		return -ENOMEM;
3942154be65SJarod Wilson 
3952154be65SJarod Wilson 	udev = rr3->udev;
3962154be65SJarod Wilson 	res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), cmd,
3972154be65SJarod Wilson 			      USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
3982154be65SJarod Wilson 			      0x0000, 0x0000, data, sizeof(u8), HZ * 10);
3992154be65SJarod Wilson 
4002154be65SJarod Wilson 	if (res < 0) {
4012154be65SJarod Wilson 		dev_err(rr3->dev, "%s: Error sending rr3 cmd res %d, data %d",
4022154be65SJarod Wilson 			__func__, res, *data);
4032154be65SJarod Wilson 		res = -EIO;
4042154be65SJarod Wilson 	} else
4054c055a5aSSean Young 		res = data[0];
4062154be65SJarod Wilson 
4072154be65SJarod Wilson 	kfree(data);
4082154be65SJarod Wilson 
4092154be65SJarod Wilson 	return res;
4102154be65SJarod Wilson }
4112154be65SJarod Wilson 
4122154be65SJarod Wilson /* Enables the long range detector and starts async receive */
4132154be65SJarod Wilson static int redrat3_enable_detector(struct redrat3_dev *rr3)
4142154be65SJarod Wilson {
4152154be65SJarod Wilson 	struct device *dev = rr3->dev;
4162154be65SJarod Wilson 	u8 ret;
4172154be65SJarod Wilson 
4182154be65SJarod Wilson 	ret = redrat3_send_cmd(RR3_RC_DET_ENABLE, rr3);
4192154be65SJarod Wilson 	if (ret != 0)
4202154be65SJarod Wilson 		dev_dbg(dev, "%s: unexpected ret of %d\n",
4212154be65SJarod Wilson 			__func__, ret);
4222154be65SJarod Wilson 
4232154be65SJarod Wilson 	ret = redrat3_send_cmd(RR3_RC_DET_STATUS, rr3);
4242154be65SJarod Wilson 	if (ret != 1) {
4252154be65SJarod Wilson 		dev_err(dev, "%s: detector status: %d, should be 1\n",
4262154be65SJarod Wilson 			__func__, ret);
4272154be65SJarod Wilson 		return -EIO;
4282154be65SJarod Wilson 	}
4292154be65SJarod Wilson 
4302154be65SJarod Wilson 	redrat3_issue_async(rr3);
4312154be65SJarod Wilson 
4322154be65SJarod Wilson 	return 0;
4332154be65SJarod Wilson }
4342154be65SJarod Wilson 
4352154be65SJarod Wilson static inline void redrat3_delete(struct redrat3_dev *rr3,
4362154be65SJarod Wilson 				  struct usb_device *udev)
4372154be65SJarod Wilson {
4382154be65SJarod Wilson 	usb_kill_urb(rr3->read_urb);
439bf139726SSean Young 	usb_kill_urb(rr3->flash_urb);
4402154be65SJarod Wilson 	usb_free_urb(rr3->read_urb);
441bf139726SSean Young 	usb_free_urb(rr3->flash_urb);
442fa7b9ac2SSean Young 	usb_free_coherent(udev, le16_to_cpu(rr3->ep_in->wMaxPacketSize),
4432154be65SJarod Wilson 			  rr3->bulk_in_buf, rr3->dma_in);
4442154be65SJarod Wilson 
4452154be65SJarod Wilson 	kfree(rr3);
4462154be65SJarod Wilson }
4472154be65SJarod Wilson 
448c53f9f00SJarod Wilson static u32 redrat3_get_timeout(struct redrat3_dev *rr3)
4492154be65SJarod Wilson {
450801b69f2SSean Young 	__be32 *tmp;
451c53f9f00SJarod Wilson 	u32 timeout = MS_TO_US(150); /* a sane default, if things go haywire */
4522154be65SJarod Wilson 	int len, ret, pipe;
4532154be65SJarod Wilson 
4542154be65SJarod Wilson 	len = sizeof(*tmp);
4552154be65SJarod Wilson 	tmp = kzalloc(len, GFP_KERNEL);
4562154be65SJarod Wilson 	if (!tmp) {
457c53f9f00SJarod Wilson 		dev_warn(rr3->dev, "Memory allocation faillure\n");
4582154be65SJarod Wilson 		return timeout;
4592154be65SJarod Wilson 	}
4602154be65SJarod Wilson 
461c53f9f00SJarod Wilson 	pipe = usb_rcvctrlpipe(rr3->udev, 0);
462c53f9f00SJarod Wilson 	ret = usb_control_msg(rr3->udev, pipe, RR3_GET_IR_PARAM,
4632154be65SJarod Wilson 			      USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
4642154be65SJarod Wilson 			      RR3_IR_IO_SIG_TIMEOUT, 0, tmp, len, HZ * 5);
465801b69f2SSean Young 	if (ret != len)
466c53f9f00SJarod Wilson 		dev_warn(rr3->dev, "Failed to read timeout from hardware\n");
467801b69f2SSean Young 	else {
468801b69f2SSean Young 		timeout = redrat3_len_to_us(be32_to_cpup(tmp));
4692154be65SJarod Wilson 
4703228bf81SGreg Kroah-Hartman 		dev_dbg(rr3->dev, "Got timeout of %d ms\n", timeout / 1000);
471801b69f2SSean Young 	}
472801b69f2SSean Young 
473801b69f2SSean Young 	kfree(tmp);
474801b69f2SSean Young 
4752154be65SJarod Wilson 	return timeout;
4762154be65SJarod Wilson }
4772154be65SJarod Wilson 
4782154be65SJarod Wilson static void redrat3_reset(struct redrat3_dev *rr3)
4792154be65SJarod Wilson {
4802154be65SJarod Wilson 	struct usb_device *udev = rr3->udev;
4812154be65SJarod Wilson 	struct device *dev = rr3->dev;
4822154be65SJarod Wilson 	int rc, rxpipe, txpipe;
4832154be65SJarod Wilson 	u8 *val;
4842154be65SJarod Wilson 	int len = sizeof(u8);
4852154be65SJarod Wilson 
4862154be65SJarod Wilson 	rxpipe = usb_rcvctrlpipe(udev, 0);
4872154be65SJarod Wilson 	txpipe = usb_sndctrlpipe(udev, 0);
4882154be65SJarod Wilson 
489fa7b9ac2SSean Young 	val = kmalloc(len, GFP_KERNEL);
4902154be65SJarod Wilson 	if (!val) {
4912154be65SJarod Wilson 		dev_err(dev, "Memory allocation failure\n");
4922154be65SJarod Wilson 		return;
4932154be65SJarod Wilson 	}
4942154be65SJarod Wilson 
4952154be65SJarod Wilson 	*val = 0x01;
4962154be65SJarod Wilson 	rc = usb_control_msg(udev, rxpipe, RR3_RESET,
4972154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
4982154be65SJarod Wilson 			     RR3_CPUCS_REG_ADDR, 0, val, len, HZ * 25);
4993228bf81SGreg Kroah-Hartman 	dev_dbg(dev, "reset returned 0x%02x\n", rc);
5002154be65SJarod Wilson 
5012154be65SJarod Wilson 	*val = 5;
5022154be65SJarod Wilson 	rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
5032154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
5042154be65SJarod Wilson 			     RR3_IR_IO_LENGTH_FUZZ, 0, val, len, HZ * 25);
5053228bf81SGreg Kroah-Hartman 	dev_dbg(dev, "set ir parm len fuzz %d rc 0x%02x\n", *val, rc);
5062154be65SJarod Wilson 
5072154be65SJarod Wilson 	*val = RR3_DRIVER_MAXLENS;
5082154be65SJarod Wilson 	rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
5092154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
5102154be65SJarod Wilson 			     RR3_IR_IO_MAX_LENGTHS, 0, val, len, HZ * 25);
5113228bf81SGreg Kroah-Hartman 	dev_dbg(dev, "set ir parm max lens %d rc 0x%02x\n", *val, rc);
5122154be65SJarod Wilson 
5132154be65SJarod Wilson 	kfree(val);
5142154be65SJarod Wilson }
5152154be65SJarod Wilson 
5162154be65SJarod Wilson static void redrat3_get_firmware_rev(struct redrat3_dev *rr3)
5172154be65SJarod Wilson {
5182154be65SJarod Wilson 	int rc = 0;
5192154be65SJarod Wilson 	char *buffer;
5202154be65SJarod Wilson 
5212154be65SJarod Wilson 	buffer = kzalloc(sizeof(char) * (RR3_FW_VERSION_LEN + 1), GFP_KERNEL);
5222154be65SJarod Wilson 	if (!buffer) {
5232154be65SJarod Wilson 		dev_err(rr3->dev, "Memory allocation failure\n");
5242154be65SJarod Wilson 		return;
5252154be65SJarod Wilson 	}
5262154be65SJarod Wilson 
5272154be65SJarod Wilson 	rc = usb_control_msg(rr3->udev, usb_rcvctrlpipe(rr3->udev, 0),
5282154be65SJarod Wilson 			     RR3_FW_VERSION,
5292154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
5302154be65SJarod Wilson 			     0, 0, buffer, RR3_FW_VERSION_LEN, HZ * 5);
5312154be65SJarod Wilson 
5322154be65SJarod Wilson 	if (rc >= 0)
5332154be65SJarod Wilson 		dev_info(rr3->dev, "Firmware rev: %s", buffer);
5342154be65SJarod Wilson 	else
5352154be65SJarod Wilson 		dev_err(rr3->dev, "Problem fetching firmware ID\n");
5362154be65SJarod Wilson 
5372154be65SJarod Wilson 	kfree(buffer);
5382154be65SJarod Wilson }
5392154be65SJarod Wilson 
540fa7b9ac2SSean Young static void redrat3_read_packet_start(struct redrat3_dev *rr3, unsigned len)
5412154be65SJarod Wilson {
5424c055a5aSSean Young 	struct redrat3_header *header = rr3->bulk_in_buf;
5434c055a5aSSean Young 	unsigned pktlen, pkttype;
5442154be65SJarod Wilson 
5452154be65SJarod Wilson 	/* grab the Length and type of transfer */
5464c055a5aSSean Young 	pktlen = be16_to_cpu(header->length);
5474c055a5aSSean Young 	pkttype = be16_to_cpu(header->transfer_type);
5482154be65SJarod Wilson 
5494c055a5aSSean Young 	if (pktlen > sizeof(rr3->irdata)) {
5504c055a5aSSean Young 		dev_warn(rr3->dev, "packet length %u too large\n", pktlen);
5514c055a5aSSean Young 		return;
5524c055a5aSSean Young 	}
5532154be65SJarod Wilson 
5544c055a5aSSean Young 	switch (pkttype) {
5552154be65SJarod Wilson 	case RR3_ERROR:
5564c055a5aSSean Young 		if (len >= sizeof(struct redrat3_error)) {
5574c055a5aSSean Young 			struct redrat3_error *error = rr3->bulk_in_buf;
5584c055a5aSSean Young 			unsigned fw_error = be16_to_cpu(error->fw_error);
5594c055a5aSSean Young 			redrat3_dump_fw_error(rr3, fw_error);
5604c055a5aSSean Young 		}
5612154be65SJarod Wilson 		break;
5622154be65SJarod Wilson 
5632154be65SJarod Wilson 	case RR3_MOD_SIGNAL_IN:
5644c055a5aSSean Young 		memcpy(&rr3->irdata, rr3->bulk_in_buf, len);
5652154be65SJarod Wilson 		rr3->bytes_read = len;
5663228bf81SGreg Kroah-Hartman 		dev_dbg(rr3->dev, "bytes_read %d, pktlen %d\n",
5674c055a5aSSean Young 			rr3->bytes_read, pktlen);
5682154be65SJarod Wilson 		break;
5692154be65SJarod Wilson 
5702154be65SJarod Wilson 	default:
5713228bf81SGreg Kroah-Hartman 		dev_dbg(rr3->dev, "ignoring packet with type 0x%02x, len of %d, 0x%02x\n",
5724c055a5aSSean Young 						pkttype, len, pktlen);
5732154be65SJarod Wilson 		break;
5742154be65SJarod Wilson 	}
5752154be65SJarod Wilson }
5762154be65SJarod Wilson 
577fa7b9ac2SSean Young static void redrat3_read_packet_continue(struct redrat3_dev *rr3, unsigned len)
5782154be65SJarod Wilson {
5794c055a5aSSean Young 	void *irdata = &rr3->irdata;
5804c055a5aSSean Young 
5814c055a5aSSean Young 	if (len + rr3->bytes_read > sizeof(rr3->irdata)) {
5824c055a5aSSean Young 		dev_warn(rr3->dev, "too much data for packet\n");
5834c055a5aSSean Young 		rr3->bytes_read = 0;
5844c055a5aSSean Young 		return;
5854c055a5aSSean Young 	}
5864c055a5aSSean Young 
5874c055a5aSSean Young 	memcpy(irdata + rr3->bytes_read, rr3->bulk_in_buf, len);
5882154be65SJarod Wilson 
5892154be65SJarod Wilson 	rr3->bytes_read += len;
5903228bf81SGreg Kroah-Hartman 	dev_dbg(rr3->dev, "bytes_read %d, pktlen %d\n", rr3->bytes_read,
5914c055a5aSSean Young 				 be16_to_cpu(rr3->irdata.header.length));
5922154be65SJarod Wilson }
5932154be65SJarod Wilson 
5942154be65SJarod Wilson /* gather IR data from incoming urb, process it when we have enough */
595fa7b9ac2SSean Young static int redrat3_get_ir_data(struct redrat3_dev *rr3, unsigned len)
5962154be65SJarod Wilson {
5972154be65SJarod Wilson 	struct device *dev = rr3->dev;
5984c055a5aSSean Young 	unsigned pkttype;
5992154be65SJarod Wilson 	int ret = 0;
6002154be65SJarod Wilson 
6014c055a5aSSean Young 	if (rr3->bytes_read == 0 && len >= sizeof(struct redrat3_header)) {
6022154be65SJarod Wilson 		redrat3_read_packet_start(rr3, len);
6032154be65SJarod Wilson 	} else if (rr3->bytes_read != 0) {
6042154be65SJarod Wilson 		redrat3_read_packet_continue(rr3, len);
6052154be65SJarod Wilson 	} else if (rr3->bytes_read == 0) {
6062154be65SJarod Wilson 		dev_err(dev, "error: no packet data read\n");
6072154be65SJarod Wilson 		ret = -ENODATA;
6082154be65SJarod Wilson 		goto out;
6092154be65SJarod Wilson 	}
6102154be65SJarod Wilson 
61138e35a85SSean Young 	if (rr3->bytes_read < be16_to_cpu(rr3->irdata.header.length) +
61238e35a85SSean Young 						sizeof(struct redrat3_header))
6132154be65SJarod Wilson 		/* we're still accumulating data */
6142154be65SJarod Wilson 		return 0;
6152154be65SJarod Wilson 
6162154be65SJarod Wilson 	/* if we get here, we've got IR data to decode */
6174c055a5aSSean Young 	pkttype = be16_to_cpu(rr3->irdata.header.transfer_type);
6184c055a5aSSean Young 	if (pkttype == RR3_MOD_SIGNAL_IN)
6192154be65SJarod Wilson 		redrat3_process_ir_data(rr3);
6202154be65SJarod Wilson 	else
6213228bf81SGreg Kroah-Hartman 		dev_dbg(dev, "discarding non-signal data packet (type 0x%02x)\n",
6224c055a5aSSean Young 								pkttype);
6232154be65SJarod Wilson 
6242154be65SJarod Wilson out:
6252154be65SJarod Wilson 	rr3->bytes_read = 0;
6262154be65SJarod Wilson 	return ret;
6272154be65SJarod Wilson }
6282154be65SJarod Wilson 
6292154be65SJarod Wilson /* callback function from USB when async USB request has completed */
630801b69f2SSean Young static void redrat3_handle_async(struct urb *urb)
6312154be65SJarod Wilson {
6322154be65SJarod Wilson 	struct redrat3_dev *rr3;
633dbea1880SAndrew Vincer 	int ret;
6342154be65SJarod Wilson 
6352154be65SJarod Wilson 	if (!urb)
6362154be65SJarod Wilson 		return;
6372154be65SJarod Wilson 
6382154be65SJarod Wilson 	rr3 = urb->context;
6392154be65SJarod Wilson 	if (!rr3) {
6402154be65SJarod Wilson 		pr_err("%s called with invalid context!\n", __func__);
6412154be65SJarod Wilson 		usb_unlink_urb(urb);
6422154be65SJarod Wilson 		return;
6432154be65SJarod Wilson 	}
6442154be65SJarod Wilson 
6452154be65SJarod Wilson 	switch (urb->status) {
6462154be65SJarod Wilson 	case 0:
647dbea1880SAndrew Vincer 		ret = redrat3_get_ir_data(rr3, urb->actual_length);
648dbea1880SAndrew Vincer 		if (!ret) {
649dbea1880SAndrew Vincer 			/* no error, prepare to read more */
650dbea1880SAndrew Vincer 			redrat3_issue_async(rr3);
651dbea1880SAndrew Vincer 		}
6522154be65SJarod Wilson 		break;
6532154be65SJarod Wilson 
6542154be65SJarod Wilson 	case -ECONNRESET:
6552154be65SJarod Wilson 	case -ENOENT:
6562154be65SJarod Wilson 	case -ESHUTDOWN:
6572154be65SJarod Wilson 		usb_unlink_urb(urb);
6582154be65SJarod Wilson 		return;
6592154be65SJarod Wilson 
6602154be65SJarod Wilson 	case -EPIPE:
6612154be65SJarod Wilson 	default:
6622154be65SJarod Wilson 		dev_warn(rr3->dev, "Error: urb status = %d\n", urb->status);
6632154be65SJarod Wilson 		rr3->bytes_read = 0;
6642154be65SJarod Wilson 		break;
6652154be65SJarod Wilson 	}
6662154be65SJarod Wilson }
6672154be65SJarod Wilson 
6682154be65SJarod Wilson static u16 mod_freq_to_val(unsigned int mod_freq)
6692154be65SJarod Wilson {
6702154be65SJarod Wilson 	int mult = 6000000;
6712154be65SJarod Wilson 
6722154be65SJarod Wilson 	/* Clk used in mod. freq. generation is CLK24/4. */
6734c055a5aSSean Young 	return 65536 - (mult / mod_freq);
6742154be65SJarod Wilson }
6752154be65SJarod Wilson 
676dbea1880SAndrew Vincer static int redrat3_set_tx_carrier(struct rc_dev *rcdev, u32 carrier)
6772154be65SJarod Wilson {
678dbea1880SAndrew Vincer 	struct redrat3_dev *rr3 = rcdev->priv;
679dbea1880SAndrew Vincer 	struct device *dev = rr3->dev;
6802154be65SJarod Wilson 
6813228bf81SGreg Kroah-Hartman 	dev_dbg(dev, "Setting modulation frequency to %u", carrier);
68248cafec9SDan Carpenter 	if (carrier == 0)
68348cafec9SDan Carpenter 		return -EINVAL;
68448cafec9SDan Carpenter 
6852154be65SJarod Wilson 	rr3->carrier = carrier;
6862154be65SJarod Wilson 
68714d8188aSSean Young 	return 0;
6882154be65SJarod Wilson }
6892154be65SJarod Wilson 
690dbea1880SAndrew Vincer static int redrat3_transmit_ir(struct rc_dev *rcdev, unsigned *txbuf,
691dbea1880SAndrew Vincer 				unsigned count)
6922154be65SJarod Wilson {
6932154be65SJarod Wilson 	struct redrat3_dev *rr3 = rcdev->priv;
6942154be65SJarod Wilson 	struct device *dev = rr3->dev;
6954c055a5aSSean Young 	struct redrat3_irdata *irdata = NULL;
696fa7b9ac2SSean Young 	int ret, ret_len;
6972154be65SJarod Wilson 	int lencheck, cur_sample_len, pipe;
6982154be65SJarod Wilson 	int *sample_lens = NULL;
6992154be65SJarod Wilson 	u8 curlencheck = 0;
700fa7b9ac2SSean Young 	unsigned i, sendbuf_len;
7012154be65SJarod Wilson 
7022154be65SJarod Wilson 	if (rr3->transmitting) {
7032154be65SJarod Wilson 		dev_warn(dev, "%s: transmitter already in use\n", __func__);
7042154be65SJarod Wilson 		return -EAGAIN;
7052154be65SJarod Wilson 	}
7062154be65SJarod Wilson 
707671ea670SSean Young 	if (count > RR3_MAX_SIG_SIZE - RR3_TX_TRAILER_LEN)
708671ea670SSean Young 		return -EINVAL;
7092154be65SJarod Wilson 
710dbea1880SAndrew Vincer 	/* rr3 will disable rc detector on transmit */
7112154be65SJarod Wilson 	rr3->transmitting = true;
7122154be65SJarod Wilson 
7132154be65SJarod Wilson 	sample_lens = kzalloc(sizeof(int) * RR3_DRIVER_MAXLENS, GFP_KERNEL);
7142154be65SJarod Wilson 	if (!sample_lens) {
7152154be65SJarod Wilson 		ret = -ENOMEM;
7162154be65SJarod Wilson 		goto out;
7172154be65SJarod Wilson 	}
7182154be65SJarod Wilson 
7194c055a5aSSean Young 	irdata = kzalloc(sizeof(*irdata), GFP_KERNEL);
7204c055a5aSSean Young 	if (!irdata) {
721801b69f2SSean Young 		ret = -ENOMEM;
722801b69f2SSean Young 		goto out;
723801b69f2SSean Young 	}
724801b69f2SSean Young 
7252154be65SJarod Wilson 	for (i = 0; i < count; i++) {
7262154be65SJarod Wilson 		cur_sample_len = redrat3_us_to_len(txbuf[i]);
727801b69f2SSean Young 		if (cur_sample_len > 0xffff) {
728801b69f2SSean Young 			dev_warn(dev, "transmit period of %uus truncated to %uus\n",
729801b69f2SSean Young 					txbuf[i], redrat3_len_to_us(0xffff));
730801b69f2SSean Young 			cur_sample_len = 0xffff;
731801b69f2SSean Young 		}
73206eae25fSSean Young 		for (lencheck = 0; lencheck < curlencheck; lencheck++) {
7332154be65SJarod Wilson 			if (sample_lens[lencheck] == cur_sample_len)
7342154be65SJarod Wilson 				break;
7352154be65SJarod Wilson 		}
7362154be65SJarod Wilson 		if (lencheck == curlencheck) {
7373228bf81SGreg Kroah-Hartman 			dev_dbg(dev, "txbuf[%d]=%u, pos %d, enc %u\n",
7382154be65SJarod Wilson 				i, txbuf[i], curlencheck, cur_sample_len);
73906eae25fSSean Young 			if (curlencheck < RR3_DRIVER_MAXLENS) {
7402154be65SJarod Wilson 				/* now convert the value to a proper
7412154be65SJarod Wilson 				 * rr3 value.. */
7422154be65SJarod Wilson 				sample_lens[curlencheck] = cur_sample_len;
7434c055a5aSSean Young 				put_unaligned_be16(cur_sample_len,
7444c055a5aSSean Young 						&irdata->lens[curlencheck]);
7452154be65SJarod Wilson 				curlencheck++;
7462154be65SJarod Wilson 			} else {
747671ea670SSean Young 				ret = -EINVAL;
748671ea670SSean Young 				goto out;
7492154be65SJarod Wilson 			}
7502154be65SJarod Wilson 		}
7514c055a5aSSean Young 		irdata->sigdata[i] = lencheck;
7522154be65SJarod Wilson 	}
7532154be65SJarod Wilson 
7544c055a5aSSean Young 	irdata->sigdata[count] = RR3_END_OF_SIGNAL;
7554c055a5aSSean Young 	irdata->sigdata[count + 1] = RR3_END_OF_SIGNAL;
7562154be65SJarod Wilson 
7574c055a5aSSean Young 	sendbuf_len = offsetof(struct redrat3_irdata,
7584c055a5aSSean Young 					sigdata[count + RR3_TX_TRAILER_LEN]);
7592154be65SJarod Wilson 	/* fill in our packet header */
7604c055a5aSSean Young 	irdata->header.length = cpu_to_be16(sendbuf_len -
7614c055a5aSSean Young 						sizeof(struct redrat3_header));
7624c055a5aSSean Young 	irdata->header.transfer_type = cpu_to_be16(RR3_MOD_SIGNAL_OUT);
7634c055a5aSSean Young 	irdata->pause = cpu_to_be32(redrat3_len_to_us(100));
7644c055a5aSSean Young 	irdata->mod_freq_count = cpu_to_be16(mod_freq_to_val(rr3->carrier));
7654c055a5aSSean Young 	irdata->no_lengths = curlencheck;
7664c055a5aSSean Young 	irdata->sig_size = cpu_to_be16(count + RR3_TX_TRAILER_LEN);
7672154be65SJarod Wilson 
7682154be65SJarod Wilson 	pipe = usb_sndbulkpipe(rr3->udev, rr3->ep_out->bEndpointAddress);
7694c055a5aSSean Young 	ret = usb_bulk_msg(rr3->udev, pipe, irdata,
7702154be65SJarod Wilson 			    sendbuf_len, &ret_len, 10 * HZ);
7713228bf81SGreg Kroah-Hartman 	dev_dbg(dev, "sent %d bytes, (ret %d)\n", ret_len, ret);
7722154be65SJarod Wilson 
7732154be65SJarod Wilson 	/* now tell the hardware to transmit what we sent it */
7742154be65SJarod Wilson 	pipe = usb_rcvctrlpipe(rr3->udev, 0);
7752154be65SJarod Wilson 	ret = usb_control_msg(rr3->udev, pipe, RR3_TX_SEND_SIGNAL,
7762154be65SJarod Wilson 			      USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
7774c055a5aSSean Young 			      0, 0, irdata, 2, HZ * 10);
7782154be65SJarod Wilson 
7792154be65SJarod Wilson 	if (ret < 0)
7802154be65SJarod Wilson 		dev_err(dev, "Error: control msg send failed, rc %d\n", ret);
7812154be65SJarod Wilson 	else
782dbea1880SAndrew Vincer 		ret = count;
7832154be65SJarod Wilson 
7842154be65SJarod Wilson out:
7852154be65SJarod Wilson 	kfree(sample_lens);
7864c055a5aSSean Young 	kfree(irdata);
7872154be65SJarod Wilson 
7882154be65SJarod Wilson 	rr3->transmitting = false;
789dbea1880SAndrew Vincer 	/* rr3 re-enables rc detector because it was enabled before */
7902154be65SJarod Wilson 
7912154be65SJarod Wilson 	return ret;
7922154be65SJarod Wilson }
7932154be65SJarod Wilson 
794bf139726SSean Young static void redrat3_brightness_set(struct led_classdev *led_dev, enum
795bf139726SSean Young 						led_brightness brightness)
796bf139726SSean Young {
797bf139726SSean Young 	struct redrat3_dev *rr3 = container_of(led_dev, struct redrat3_dev,
798bf139726SSean Young 									led);
799bf139726SSean Young 
800bf139726SSean Young 	if (brightness != LED_OFF && atomic_cmpxchg(&rr3->flash, 0, 1) == 0) {
801bf139726SSean Young 		int ret = usb_submit_urb(rr3->flash_urb, GFP_ATOMIC);
802bf139726SSean Young 		if (ret != 0) {
803bf139726SSean Young 			dev_dbg(rr3->dev, "%s: unexpected ret of %d\n",
804bf139726SSean Young 				__func__, ret);
805bf139726SSean Young 			atomic_set(&rr3->flash, 0);
806bf139726SSean Young 		}
807bf139726SSean Young 	}
808bf139726SSean Young }
809bf139726SSean Young 
810bf139726SSean Young static void redrat3_led_complete(struct urb *urb)
811bf139726SSean Young {
812bf139726SSean Young 	struct redrat3_dev *rr3 = urb->context;
813bf139726SSean Young 
814bf139726SSean Young 	switch (urb->status) {
815bf139726SSean Young 	case 0:
816bf139726SSean Young 		break;
817bf139726SSean Young 	case -ECONNRESET:
818bf139726SSean Young 	case -ENOENT:
819bf139726SSean Young 	case -ESHUTDOWN:
820bf139726SSean Young 		usb_unlink_urb(urb);
821bf139726SSean Young 		return;
822bf139726SSean Young 	case -EPIPE:
823bf139726SSean Young 	default:
824bf139726SSean Young 		dev_dbg(rr3->dev, "Error: urb status = %d\n", urb->status);
825bf139726SSean Young 		break;
826bf139726SSean Young 	}
827bf139726SSean Young 
828bf139726SSean Young 	rr3->led.brightness = LED_OFF;
829bf139726SSean Young 	atomic_dec(&rr3->flash);
830bf139726SSean Young }
831bf139726SSean Young 
8322154be65SJarod Wilson static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3)
8332154be65SJarod Wilson {
8342154be65SJarod Wilson 	struct device *dev = rr3->dev;
8352154be65SJarod Wilson 	struct rc_dev *rc;
8362154be65SJarod Wilson 	int ret = -ENODEV;
8372154be65SJarod Wilson 	u16 prod = le16_to_cpu(rr3->udev->descriptor.idProduct);
8382154be65SJarod Wilson 
8392154be65SJarod Wilson 	rc = rc_allocate_device();
8402154be65SJarod Wilson 	if (!rc) {
8412154be65SJarod Wilson 		dev_err(dev, "remote input dev allocation failed\n");
8422154be65SJarod Wilson 		goto out;
8432154be65SJarod Wilson 	}
8442154be65SJarod Wilson 
8452154be65SJarod Wilson 	snprintf(rr3->name, sizeof(rr3->name), "RedRat3%s "
8462154be65SJarod Wilson 		 "Infrared Remote Transceiver (%04x:%04x)",
8472154be65SJarod Wilson 		 prod == USB_RR3IIUSB_PRODUCT_ID ? "-II" : "",
8482154be65SJarod Wilson 		 le16_to_cpu(rr3->udev->descriptor.idVendor), prod);
8492154be65SJarod Wilson 
8502154be65SJarod Wilson 	usb_make_path(rr3->udev, rr3->phys, sizeof(rr3->phys));
8512154be65SJarod Wilson 
8522154be65SJarod Wilson 	rc->input_name = rr3->name;
8532154be65SJarod Wilson 	rc->input_phys = rr3->phys;
8542154be65SJarod Wilson 	usb_to_input_id(rr3->udev, &rc->input_id);
8552154be65SJarod Wilson 	rc->dev.parent = dev;
8562154be65SJarod Wilson 	rc->priv = rr3;
8572154be65SJarod Wilson 	rc->driver_type = RC_DRIVER_IR_RAW;
858c5540fbbSDavid Härdeman 	rc->allowed_protocols = RC_BIT_ALL;
859*25da661aSSean Young 	rc->timeout = US_TO_NS(rr3->hw_timeout);
8602154be65SJarod Wilson 	rc->tx_ir = redrat3_transmit_ir;
8612154be65SJarod Wilson 	rc->s_tx_carrier = redrat3_set_tx_carrier;
8622154be65SJarod Wilson 	rc->driver_name = DRIVER_NAME;
86306eae25fSSean Young 	rc->rx_resolution = US_TO_NS(2);
8642154be65SJarod Wilson 	rc->map_name = RC_MAP_HAUPPAUGE;
8652154be65SJarod Wilson 
8662154be65SJarod Wilson 	ret = rc_register_device(rc);
8672154be65SJarod Wilson 	if (ret < 0) {
8682154be65SJarod Wilson 		dev_err(dev, "remote dev registration failed\n");
8692154be65SJarod Wilson 		goto out;
8702154be65SJarod Wilson 	}
8712154be65SJarod Wilson 
8722154be65SJarod Wilson 	return rc;
8732154be65SJarod Wilson 
8742154be65SJarod Wilson out:
8752154be65SJarod Wilson 	rc_free_device(rc);
8762154be65SJarod Wilson 	return NULL;
8772154be65SJarod Wilson }
8782154be65SJarod Wilson 
8794c62e976SGreg Kroah-Hartman static int redrat3_dev_probe(struct usb_interface *intf,
8802154be65SJarod Wilson 			     const struct usb_device_id *id)
8812154be65SJarod Wilson {
8822154be65SJarod Wilson 	struct usb_device *udev = interface_to_usbdev(intf);
8832154be65SJarod Wilson 	struct device *dev = &intf->dev;
8842154be65SJarod Wilson 	struct usb_host_interface *uhi;
8852154be65SJarod Wilson 	struct redrat3_dev *rr3;
8862154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep;
8872154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_in = NULL;
8882154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_out = NULL;
8892154be65SJarod Wilson 	u8 addr, attrs;
8902154be65SJarod Wilson 	int pipe, i;
8912154be65SJarod Wilson 	int retval = -ENOMEM;
8922154be65SJarod Wilson 
8932154be65SJarod Wilson 	uhi = intf->cur_altsetting;
8942154be65SJarod Wilson 
8952154be65SJarod Wilson 	/* find our bulk-in and bulk-out endpoints */
8962154be65SJarod Wilson 	for (i = 0; i < uhi->desc.bNumEndpoints; ++i) {
8972154be65SJarod Wilson 		ep = &uhi->endpoint[i].desc;
8982154be65SJarod Wilson 		addr = ep->bEndpointAddress;
8992154be65SJarod Wilson 		attrs = ep->bmAttributes;
9002154be65SJarod Wilson 
9012154be65SJarod Wilson 		if ((ep_in == NULL) &&
9022154be65SJarod Wilson 		    ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN) &&
9032154be65SJarod Wilson 		    ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
9042154be65SJarod Wilson 		     USB_ENDPOINT_XFER_BULK)) {
9053228bf81SGreg Kroah-Hartman 			dev_dbg(dev, "found bulk-in endpoint at 0x%02x\n",
9062154be65SJarod Wilson 				ep->bEndpointAddress);
9072154be65SJarod Wilson 			/* data comes in on 0x82, 0x81 is for other data... */
9082154be65SJarod Wilson 			if (ep->bEndpointAddress == RR3_BULK_IN_EP_ADDR)
9092154be65SJarod Wilson 				ep_in = ep;
9102154be65SJarod Wilson 		}
9112154be65SJarod Wilson 
9122154be65SJarod Wilson 		if ((ep_out == NULL) &&
9132154be65SJarod Wilson 		    ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) &&
9142154be65SJarod Wilson 		    ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
9152154be65SJarod Wilson 		     USB_ENDPOINT_XFER_BULK)) {
9163228bf81SGreg Kroah-Hartman 			dev_dbg(dev, "found bulk-out endpoint at 0x%02x\n",
9172154be65SJarod Wilson 				ep->bEndpointAddress);
9182154be65SJarod Wilson 			ep_out = ep;
9192154be65SJarod Wilson 		}
9202154be65SJarod Wilson 	}
9212154be65SJarod Wilson 
9222154be65SJarod Wilson 	if (!ep_in || !ep_out) {
9232154be65SJarod Wilson 		dev_err(dev, "Couldn't find both in and out endpoints\n");
9242154be65SJarod Wilson 		retval = -ENODEV;
9252154be65SJarod Wilson 		goto no_endpoints;
9262154be65SJarod Wilson 	}
9272154be65SJarod Wilson 
9282154be65SJarod Wilson 	/* allocate memory for our device state and initialize it */
9292154be65SJarod Wilson 	rr3 = kzalloc(sizeof(*rr3), GFP_KERNEL);
9302154be65SJarod Wilson 	if (rr3 == NULL) {
9312154be65SJarod Wilson 		dev_err(dev, "Memory allocation failure\n");
9327eb75715SDan Carpenter 		goto no_endpoints;
9332154be65SJarod Wilson 	}
9342154be65SJarod Wilson 
9352154be65SJarod Wilson 	rr3->dev = &intf->dev;
9362154be65SJarod Wilson 
9372154be65SJarod Wilson 	/* set up bulk-in endpoint */
9382154be65SJarod Wilson 	rr3->read_urb = usb_alloc_urb(0, GFP_KERNEL);
9392154be65SJarod Wilson 	if (!rr3->read_urb) {
9402154be65SJarod Wilson 		dev_err(dev, "Read urb allocation failure\n");
9412154be65SJarod Wilson 		goto error;
9422154be65SJarod Wilson 	}
9432154be65SJarod Wilson 
9442154be65SJarod Wilson 	rr3->ep_in = ep_in;
945fa7b9ac2SSean Young 	rr3->bulk_in_buf = usb_alloc_coherent(udev,
946d0a0a65eSSean Young 		le16_to_cpu(ep_in->wMaxPacketSize), GFP_KERNEL, &rr3->dma_in);
9472154be65SJarod Wilson 	if (!rr3->bulk_in_buf) {
9482154be65SJarod Wilson 		dev_err(dev, "Read buffer allocation failure\n");
9492154be65SJarod Wilson 		goto error;
9502154be65SJarod Wilson 	}
9512154be65SJarod Wilson 
9522154be65SJarod Wilson 	pipe = usb_rcvbulkpipe(udev, ep_in->bEndpointAddress);
953fa7b9ac2SSean Young 	usb_fill_bulk_urb(rr3->read_urb, udev, pipe, rr3->bulk_in_buf,
954fa7b9ac2SSean Young 		le16_to_cpu(ep_in->wMaxPacketSize), redrat3_handle_async, rr3);
955d0a0a65eSSean Young 	rr3->read_urb->transfer_dma = rr3->dma_in;
956d0a0a65eSSean Young 	rr3->read_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
9572154be65SJarod Wilson 
9582154be65SJarod Wilson 	rr3->ep_out = ep_out;
9592154be65SJarod Wilson 	rr3->udev = udev;
9602154be65SJarod Wilson 
9612154be65SJarod Wilson 	redrat3_reset(rr3);
9622154be65SJarod Wilson 	redrat3_get_firmware_rev(rr3);
9632154be65SJarod Wilson 
9642154be65SJarod Wilson 	/* might be all we need to do? */
9652154be65SJarod Wilson 	retval = redrat3_enable_detector(rr3);
9662154be65SJarod Wilson 	if (retval < 0)
9672154be65SJarod Wilson 		goto error;
9682154be65SJarod Wilson 
969*25da661aSSean Young 	/* store current hardware timeout, in µs */
970c53f9f00SJarod Wilson 	rr3->hw_timeout = redrat3_get_timeout(rr3);
971c53f9f00SJarod Wilson 
9722154be65SJarod Wilson 	/* default.. will get overridden by any sends with a freq defined */
9732154be65SJarod Wilson 	rr3->carrier = 38000;
9742154be65SJarod Wilson 
975bf139726SSean Young 	/* led control */
976bf139726SSean Young 	rr3->led.name = "redrat3:red:feedback";
977bf139726SSean Young 	rr3->led.default_trigger = "rc-feedback";
978bf139726SSean Young 	rr3->led.brightness_set = redrat3_brightness_set;
979bf139726SSean Young 	retval = led_classdev_register(&intf->dev, &rr3->led);
980bf139726SSean Young 	if (retval)
981bf139726SSean Young 		goto error;
982bf139726SSean Young 
983bf139726SSean Young 	atomic_set(&rr3->flash, 0);
984bf139726SSean Young 	rr3->flash_urb = usb_alloc_urb(0, GFP_KERNEL);
985bf139726SSean Young 	if (!rr3->flash_urb) {
986bf139726SSean Young 		retval = -ENOMEM;
987bf139726SSean Young 		goto led_free_error;
988bf139726SSean Young 	}
989bf139726SSean Young 
990bf139726SSean Young 	/* setup packet is 'c0 b9 0000 0000 0001' */
991bf139726SSean Young 	rr3->flash_control.bRequestType = 0xc0;
992bf139726SSean Young 	rr3->flash_control.bRequest = RR3_BLINK_LED;
993bf139726SSean Young 	rr3->flash_control.wLength = cpu_to_le16(1);
994bf139726SSean Young 
995bf139726SSean Young 	usb_fill_control_urb(rr3->flash_urb, udev, usb_rcvctrlpipe(udev, 0),
996bf139726SSean Young 			(unsigned char *)&rr3->flash_control,
997bf139726SSean Young 			&rr3->flash_in_buf, sizeof(rr3->flash_in_buf),
998bf139726SSean Young 			redrat3_led_complete, rr3);
999bf139726SSean Young 
10002154be65SJarod Wilson 	rr3->rc = redrat3_init_rc_dev(rr3);
10016ea7cf76SPeter Senna Tschudin 	if (!rr3->rc) {
10026ea7cf76SPeter Senna Tschudin 		retval = -ENOMEM;
1003bf139726SSean Young 		goto led_free_error;
10046ea7cf76SPeter Senna Tschudin 	}
10052154be65SJarod Wilson 
10062154be65SJarod Wilson 	/* we can register the device now, as it is ready */
10072154be65SJarod Wilson 	usb_set_intfdata(intf, rr3);
10082154be65SJarod Wilson 
10092154be65SJarod Wilson 	return 0;
10102154be65SJarod Wilson 
1011bf139726SSean Young led_free_error:
1012bf139726SSean Young 	led_classdev_unregister(&rr3->led);
10132154be65SJarod Wilson error:
10142154be65SJarod Wilson 	redrat3_delete(rr3, rr3->udev);
10152154be65SJarod Wilson 
10162154be65SJarod Wilson no_endpoints:
10172154be65SJarod Wilson 	dev_err(dev, "%s: retval = %x", __func__, retval);
10182154be65SJarod Wilson 
10192154be65SJarod Wilson 	return retval;
10202154be65SJarod Wilson }
10212154be65SJarod Wilson 
10224c62e976SGreg Kroah-Hartman static void redrat3_dev_disconnect(struct usb_interface *intf)
10232154be65SJarod Wilson {
10242154be65SJarod Wilson 	struct usb_device *udev = interface_to_usbdev(intf);
10252154be65SJarod Wilson 	struct redrat3_dev *rr3 = usb_get_intfdata(intf);
10262154be65SJarod Wilson 
10272154be65SJarod Wilson 	if (!rr3)
10282154be65SJarod Wilson 		return;
10292154be65SJarod Wilson 
10302154be65SJarod Wilson 	usb_set_intfdata(intf, NULL);
10312154be65SJarod Wilson 	rc_unregister_device(rr3->rc);
1032bf139726SSean Young 	led_classdev_unregister(&rr3->led);
10332154be65SJarod Wilson 	redrat3_delete(rr3, udev);
10342154be65SJarod Wilson }
10352154be65SJarod Wilson 
10362154be65SJarod Wilson static int redrat3_dev_suspend(struct usb_interface *intf, pm_message_t message)
10372154be65SJarod Wilson {
10382154be65SJarod Wilson 	struct redrat3_dev *rr3 = usb_get_intfdata(intf);
1039a36d5b61SGreg Kroah-Hartman 
1040bf139726SSean Young 	led_classdev_suspend(&rr3->led);
10412154be65SJarod Wilson 	usb_kill_urb(rr3->read_urb);
1042bf139726SSean Young 	usb_kill_urb(rr3->flash_urb);
10432154be65SJarod Wilson 	return 0;
10442154be65SJarod Wilson }
10452154be65SJarod Wilson 
10462154be65SJarod Wilson static int redrat3_dev_resume(struct usb_interface *intf)
10472154be65SJarod Wilson {
10482154be65SJarod Wilson 	struct redrat3_dev *rr3 = usb_get_intfdata(intf);
1049a36d5b61SGreg Kroah-Hartman 
10502154be65SJarod Wilson 	if (usb_submit_urb(rr3->read_urb, GFP_ATOMIC))
10512154be65SJarod Wilson 		return -EIO;
1052bf139726SSean Young 	led_classdev_resume(&rr3->led);
10532154be65SJarod Wilson 	return 0;
10542154be65SJarod Wilson }
10552154be65SJarod Wilson 
10562154be65SJarod Wilson static struct usb_driver redrat3_dev_driver = {
10572154be65SJarod Wilson 	.name		= DRIVER_NAME,
10582154be65SJarod Wilson 	.probe		= redrat3_dev_probe,
10594c62e976SGreg Kroah-Hartman 	.disconnect	= redrat3_dev_disconnect,
10602154be65SJarod Wilson 	.suspend	= redrat3_dev_suspend,
10612154be65SJarod Wilson 	.resume		= redrat3_dev_resume,
10622154be65SJarod Wilson 	.reset_resume	= redrat3_dev_resume,
10632154be65SJarod Wilson 	.id_table	= redrat3_dev_table
10642154be65SJarod Wilson };
10652154be65SJarod Wilson 
1066ecb3b2b3SGreg Kroah-Hartman module_usb_driver(redrat3_dev_driver);
10672154be65SJarod Wilson 
10682154be65SJarod Wilson MODULE_DESCRIPTION(DRIVER_DESC);
10692154be65SJarod Wilson MODULE_AUTHOR(DRIVER_AUTHOR);
10702154be65SJarod Wilson MODULE_AUTHOR(DRIVER_AUTHOR2);
10712154be65SJarod Wilson MODULE_LICENSE("GPL");
10722154be65SJarod Wilson MODULE_DEVICE_TABLE(usb, redrat3_dev_table);
1073