xref: /openbmc/linux/drivers/media/rc/redrat3.c (revision 48cafec9a941c2dfe94d76642662bc20bf87fe08)
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 
482154be65SJarod Wilson #include <linux/device.h>
492154be65SJarod Wilson #include <linux/module.h>
502154be65SJarod Wilson #include <linux/slab.h>
512154be65SJarod Wilson #include <linux/usb.h>
522154be65SJarod Wilson #include <linux/usb/input.h>
532154be65SJarod Wilson #include <media/rc-core.h>
542154be65SJarod Wilson 
552154be65SJarod Wilson /* Driver Information */
562154be65SJarod Wilson #define DRIVER_VERSION "0.70"
572154be65SJarod Wilson #define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
582154be65SJarod Wilson #define DRIVER_AUTHOR2 "The Dweller, Stephen Cox"
592154be65SJarod Wilson #define DRIVER_DESC "RedRat3 USB IR Transceiver Driver"
602154be65SJarod Wilson #define DRIVER_NAME "redrat3"
612154be65SJarod Wilson 
622154be65SJarod Wilson /* module parameters */
632154be65SJarod Wilson #ifdef CONFIG_USB_DEBUG
642154be65SJarod Wilson static int debug = 1;
652154be65SJarod Wilson #else
662154be65SJarod Wilson static int debug;
672154be65SJarod Wilson #endif
682154be65SJarod Wilson 
692154be65SJarod Wilson #define RR3_DEBUG_STANDARD		0x1
702154be65SJarod Wilson #define RR3_DEBUG_FUNCTION_TRACE	0x2
712154be65SJarod Wilson 
722154be65SJarod Wilson #define rr3_dbg(dev, fmt, ...)					\
732154be65SJarod Wilson 	do {							\
742154be65SJarod Wilson 		if (debug & RR3_DEBUG_STANDARD)			\
752154be65SJarod Wilson 			dev_info(dev, fmt, ## __VA_ARGS__);	\
762154be65SJarod Wilson 	} while (0)
772154be65SJarod Wilson 
782154be65SJarod Wilson #define rr3_ftr(dev, fmt, ...)					\
792154be65SJarod Wilson 	do {							\
802154be65SJarod Wilson 		if (debug & RR3_DEBUG_FUNCTION_TRACE)		\
812154be65SJarod Wilson 			dev_info(dev, fmt, ## __VA_ARGS__);	\
822154be65SJarod Wilson 	} while (0)
832154be65SJarod Wilson 
842154be65SJarod Wilson /* bulk data transfer types */
852154be65SJarod Wilson #define RR3_ERROR		0x01
862154be65SJarod Wilson #define RR3_MOD_SIGNAL_IN	0x20
872154be65SJarod Wilson #define RR3_MOD_SIGNAL_OUT	0x21
882154be65SJarod Wilson 
892154be65SJarod Wilson /* Get the RR firmware version */
902154be65SJarod Wilson #define RR3_FW_VERSION		0xb1
912154be65SJarod Wilson #define RR3_FW_VERSION_LEN	64
922154be65SJarod Wilson /* Send encoded signal bulk-sent earlier*/
932154be65SJarod Wilson #define RR3_TX_SEND_SIGNAL	0xb3
942154be65SJarod Wilson #define RR3_SET_IR_PARAM	0xb7
952154be65SJarod Wilson #define RR3_GET_IR_PARAM	0xb8
962154be65SJarod Wilson /* Blink the red LED on the device */
972154be65SJarod Wilson #define RR3_BLINK_LED		0xb9
982154be65SJarod Wilson /* Read serial number of device */
992154be65SJarod Wilson #define RR3_READ_SER_NO		0xba
1002154be65SJarod Wilson #define RR3_SER_NO_LEN		4
1012154be65SJarod Wilson /* Start capture with the RC receiver */
1022154be65SJarod Wilson #define RR3_RC_DET_ENABLE	0xbb
1032154be65SJarod Wilson /* Stop capture with the RC receiver */
1042154be65SJarod Wilson #define RR3_RC_DET_DISABLE	0xbc
1052154be65SJarod Wilson /* Return the status of RC detector capture */
1062154be65SJarod Wilson #define RR3_RC_DET_STATUS	0xbd
1072154be65SJarod Wilson /* Reset redrat */
1082154be65SJarod Wilson #define RR3_RESET		0xa0
1092154be65SJarod Wilson 
1102154be65SJarod Wilson /* Max number of lengths in the signal. */
1112154be65SJarod Wilson #define RR3_IR_IO_MAX_LENGTHS	0x01
1122154be65SJarod Wilson /* Periods to measure mod. freq. */
1132154be65SJarod Wilson #define RR3_IR_IO_PERIODS_MF	0x02
1142154be65SJarod Wilson /* Size of memory for main signal data */
1152154be65SJarod Wilson #define RR3_IR_IO_SIG_MEM_SIZE	0x03
1162154be65SJarod Wilson /* Delta value when measuring lengths */
1172154be65SJarod Wilson #define RR3_IR_IO_LENGTH_FUZZ	0x04
1182154be65SJarod Wilson /* Timeout for end of signal detection */
1192154be65SJarod Wilson #define RR3_IR_IO_SIG_TIMEOUT	0x05
1202154be65SJarod Wilson /* Minumum value for pause recognition. */
1212154be65SJarod Wilson #define RR3_IR_IO_MIN_PAUSE	0x06
1222154be65SJarod Wilson 
1232154be65SJarod Wilson /* Clock freq. of EZ-USB chip */
1242154be65SJarod Wilson #define RR3_CLK			24000000
1252154be65SJarod Wilson /* Clock periods per timer count */
1262154be65SJarod Wilson #define RR3_CLK_PER_COUNT	12
1272154be65SJarod Wilson /* (RR3_CLK / RR3_CLK_PER_COUNT) */
1282154be65SJarod Wilson #define RR3_CLK_CONV_FACTOR	2000000
1292154be65SJarod Wilson /* USB bulk-in IR data endpoint address */
1302154be65SJarod Wilson #define RR3_BULK_IN_EP_ADDR	0x82
1312154be65SJarod Wilson 
1322154be65SJarod Wilson /* Raw Modulated signal data value offsets */
1332154be65SJarod Wilson #define RR3_PAUSE_OFFSET	0
1342154be65SJarod Wilson #define RR3_FREQ_COUNT_OFFSET	4
1352154be65SJarod Wilson #define RR3_NUM_PERIOD_OFFSET	6
1362154be65SJarod Wilson #define RR3_MAX_LENGTHS_OFFSET	8
1372154be65SJarod Wilson #define RR3_NUM_LENGTHS_OFFSET	9
1382154be65SJarod Wilson #define RR3_MAX_SIGS_OFFSET	10
1392154be65SJarod Wilson #define RR3_NUM_SIGS_OFFSET	12
1402154be65SJarod Wilson #define RR3_REPEATS_OFFSET	14
1412154be65SJarod Wilson 
1422154be65SJarod Wilson /* Size of the fixed-length portion of the signal */
1432154be65SJarod Wilson #define RR3_HEADER_LENGTH	15
1442154be65SJarod Wilson #define RR3_DRIVER_MAXLENS	128
1452154be65SJarod Wilson #define RR3_MAX_SIG_SIZE	512
1462154be65SJarod Wilson #define RR3_MAX_BUF_SIZE	\
1472154be65SJarod Wilson 	((2 * RR3_HEADER_LENGTH) + RR3_DRIVER_MAXLENS + RR3_MAX_SIG_SIZE)
1482154be65SJarod Wilson #define RR3_TIME_UNIT		50
1492154be65SJarod Wilson #define RR3_END_OF_SIGNAL	0x7f
1502154be65SJarod Wilson #define RR3_TX_HEADER_OFFSET	4
1512154be65SJarod Wilson #define RR3_TX_TRAILER_LEN	2
1522154be65SJarod Wilson #define RR3_RX_MIN_TIMEOUT	5
1532154be65SJarod Wilson #define RR3_RX_MAX_TIMEOUT	2000
1542154be65SJarod Wilson 
1552154be65SJarod Wilson /* The 8051's CPUCS Register address */
1562154be65SJarod Wilson #define RR3_CPUCS_REG_ADDR	0x7f92
1572154be65SJarod Wilson 
1582154be65SJarod Wilson #define USB_RR3USB_VENDOR_ID	0x112a
1592154be65SJarod Wilson #define USB_RR3USB_PRODUCT_ID	0x0001
1602154be65SJarod Wilson #define USB_RR3IIUSB_PRODUCT_ID	0x0005
1612154be65SJarod Wilson 
1622154be65SJarod Wilson /* table of devices that work with this driver */
1632154be65SJarod Wilson static struct usb_device_id redrat3_dev_table[] = {
1642154be65SJarod Wilson 	/* Original version of the RedRat3 */
1652154be65SJarod Wilson 	{USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3USB_PRODUCT_ID)},
1662154be65SJarod Wilson 	/* Second Version/release of the RedRat3 - RetRat3-II */
1672154be65SJarod Wilson 	{USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3IIUSB_PRODUCT_ID)},
1682154be65SJarod Wilson 	{}			/* Terminating entry */
1692154be65SJarod Wilson };
1702154be65SJarod Wilson 
1712154be65SJarod Wilson /* Structure to hold all of our device specific stuff */
1722154be65SJarod Wilson struct redrat3_dev {
1732154be65SJarod Wilson 	/* core device bits */
1742154be65SJarod Wilson 	struct rc_dev *rc;
1752154be65SJarod Wilson 	struct device *dev;
1762154be65SJarod Wilson 
1772154be65SJarod Wilson 	/* save off the usb device pointer */
1782154be65SJarod Wilson 	struct usb_device *udev;
1792154be65SJarod Wilson 
1802154be65SJarod Wilson 	/* the receive endpoint */
1812154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_in;
1822154be65SJarod Wilson 	/* the buffer to receive data */
1832154be65SJarod Wilson 	unsigned char *bulk_in_buf;
1842154be65SJarod Wilson 	/* urb used to read ir data */
1852154be65SJarod Wilson 	struct urb *read_urb;
1862154be65SJarod Wilson 
1872154be65SJarod Wilson 	/* the send endpoint */
1882154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_out;
1892154be65SJarod Wilson 	/* the buffer to send data */
1902154be65SJarod Wilson 	unsigned char *bulk_out_buf;
1912154be65SJarod Wilson 	/* the urb used to send data */
1922154be65SJarod Wilson 	struct urb *write_urb;
1932154be65SJarod Wilson 
1942154be65SJarod Wilson 	/* usb dma */
1952154be65SJarod Wilson 	dma_addr_t dma_in;
1962154be65SJarod Wilson 	dma_addr_t dma_out;
1972154be65SJarod Wilson 
1982154be65SJarod Wilson 	/* locks this structure */
1992154be65SJarod Wilson 	struct mutex lock;
2002154be65SJarod Wilson 
2012154be65SJarod Wilson 	/* rx signal timeout timer */
2022154be65SJarod Wilson 	struct timer_list rx_timeout;
203c53f9f00SJarod Wilson 	u32 hw_timeout;
2042154be65SJarod Wilson 
2052154be65SJarod Wilson 	/* is the detector enabled*/
2062154be65SJarod Wilson 	bool det_enabled;
2072154be65SJarod Wilson 	/* Is the device currently transmitting?*/
2082154be65SJarod Wilson 	bool transmitting;
2092154be65SJarod Wilson 
2102154be65SJarod Wilson 	/* store for current packet */
2112154be65SJarod Wilson 	char pbuf[RR3_MAX_BUF_SIZE];
2122154be65SJarod Wilson 	u16 pktlen;
2132154be65SJarod Wilson 	u16 pkttype;
2142154be65SJarod Wilson 	u16 bytes_read;
2152154be65SJarod Wilson 	/* indicate whether we are going to reprocess
2162154be65SJarod Wilson 	 * the USB callback with a bigger buffer */
2172154be65SJarod Wilson 	int buftoosmall;
2182154be65SJarod Wilson 	char *datap;
2192154be65SJarod Wilson 
2202154be65SJarod Wilson 	u32 carrier;
2212154be65SJarod Wilson 
2222154be65SJarod Wilson 	char name[128];
2232154be65SJarod Wilson 	char phys[64];
2242154be65SJarod Wilson };
2252154be65SJarod Wilson 
2262154be65SJarod Wilson /* All incoming data buffers adhere to a very specific data format */
2272154be65SJarod Wilson struct redrat3_signal_header {
2282154be65SJarod Wilson 	u16 length;	/* Length of data being transferred */
2292154be65SJarod Wilson 	u16 transfer_type; /* Type of data transferred */
2302154be65SJarod Wilson 	u32 pause;	/* Pause between main and repeat signals */
2312154be65SJarod Wilson 	u16 mod_freq_count; /* Value of timer on mod. freq. measurement */
2322154be65SJarod Wilson 	u16 no_periods;	/* No. of periods over which mod. freq. is measured */
2332154be65SJarod Wilson 	u8 max_lengths;	/* Max no. of lengths (i.e. size of array) */
2342154be65SJarod Wilson 	u8 no_lengths;	/* Actual no. of elements in lengths array */
2352154be65SJarod Wilson 	u16 max_sig_size; /* Max no. of values in signal data array */
2362154be65SJarod Wilson 	u16 sig_size;	/* Acuto no. of values in signal data array */
2372154be65SJarod Wilson 	u8 no_repeats;	/* No. of repeats of repeat signal section */
2382154be65SJarod Wilson 	/* Here forward is the lengths and signal data */
2392154be65SJarod Wilson };
2402154be65SJarod Wilson 
2412154be65SJarod Wilson static void redrat3_dump_signal_header(struct redrat3_signal_header *header)
2422154be65SJarod Wilson {
2432154be65SJarod Wilson 	pr_info("%s:\n", __func__);
2442154be65SJarod Wilson 	pr_info(" * length: %u, transfer_type: 0x%02x\n",
2452154be65SJarod Wilson 		header->length, header->transfer_type);
2462154be65SJarod Wilson 	pr_info(" * pause: %u, freq_count: %u, no_periods: %u\n",
2472154be65SJarod Wilson 		header->pause, header->mod_freq_count, header->no_periods);
2482154be65SJarod Wilson 	pr_info(" * lengths: %u (max: %u)\n",
2492154be65SJarod Wilson 		header->no_lengths, header->max_lengths);
2502154be65SJarod Wilson 	pr_info(" * sig_size: %u (max: %u)\n",
2512154be65SJarod Wilson 		header->sig_size, header->max_sig_size);
2522154be65SJarod Wilson 	pr_info(" * repeats: %u\n", header->no_repeats);
2532154be65SJarod Wilson }
2542154be65SJarod Wilson 
2552154be65SJarod Wilson static void redrat3_dump_signal_data(char *buffer, u16 len)
2562154be65SJarod Wilson {
2572154be65SJarod Wilson 	int offset, i;
2582154be65SJarod Wilson 	char *data_vals;
2592154be65SJarod Wilson 
2602154be65SJarod Wilson 	pr_info("%s:", __func__);
2612154be65SJarod Wilson 
2622154be65SJarod Wilson 	offset = RR3_TX_HEADER_OFFSET + RR3_HEADER_LENGTH
2632154be65SJarod Wilson 		 + (RR3_DRIVER_MAXLENS * sizeof(u16));
2642154be65SJarod Wilson 
2652154be65SJarod Wilson 	/* read RR3_DRIVER_MAXLENS from ctrl msg */
2662154be65SJarod Wilson 	data_vals = buffer + offset;
2672154be65SJarod Wilson 
2682154be65SJarod Wilson 	for (i = 0; i < len; i++) {
2692154be65SJarod Wilson 		if (i % 10 == 0)
2702154be65SJarod Wilson 			pr_cont("\n * ");
2712154be65SJarod Wilson 		pr_cont("%02x ", *data_vals++);
2722154be65SJarod Wilson 	}
2732154be65SJarod Wilson 
2742154be65SJarod Wilson 	pr_cont("\n");
2752154be65SJarod Wilson }
2762154be65SJarod Wilson 
2772154be65SJarod Wilson /*
2782154be65SJarod Wilson  * redrat3_issue_async
2792154be65SJarod Wilson  *
2802154be65SJarod Wilson  *  Issues an async read to the ir data in port..
2812154be65SJarod Wilson  *  sets the callback to be redrat3_handle_async
2822154be65SJarod Wilson  */
2832154be65SJarod Wilson static void redrat3_issue_async(struct redrat3_dev *rr3)
2842154be65SJarod Wilson {
2852154be65SJarod Wilson 	int res;
2862154be65SJarod Wilson 
2872154be65SJarod Wilson 	rr3_ftr(rr3->dev, "Entering %s\n", __func__);
2882154be65SJarod Wilson 
2892154be65SJarod Wilson 	memset(rr3->bulk_in_buf, 0, rr3->ep_in->wMaxPacketSize);
2902154be65SJarod Wilson 	res = usb_submit_urb(rr3->read_urb, GFP_ATOMIC);
2912154be65SJarod Wilson 	if (res)
2922154be65SJarod Wilson 		rr3_dbg(rr3->dev, "%s: receive request FAILED! "
2932154be65SJarod Wilson 			"(res %d, len %d)\n", __func__, res,
2942154be65SJarod Wilson 			rr3->read_urb->transfer_buffer_length);
2952154be65SJarod Wilson }
2962154be65SJarod Wilson 
2972154be65SJarod Wilson static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code)
2982154be65SJarod Wilson {
2992154be65SJarod Wilson 	if (!rr3->transmitting && (code != 0x40))
3002154be65SJarod Wilson 		dev_info(rr3->dev, "fw error code 0x%02x: ", code);
3012154be65SJarod Wilson 
3022154be65SJarod Wilson 	switch (code) {
3032154be65SJarod Wilson 	case 0x00:
3042154be65SJarod Wilson 		pr_cont("No Error\n");
3052154be65SJarod Wilson 		break;
3062154be65SJarod Wilson 
3072154be65SJarod Wilson 	/* Codes 0x20 through 0x2f are IR Firmware Errors */
3082154be65SJarod Wilson 	case 0x20:
3092154be65SJarod Wilson 		pr_cont("Initial signal pulse not long enough "
3102154be65SJarod Wilson 			"to measure carrier frequency\n");
3112154be65SJarod Wilson 		break;
3122154be65SJarod Wilson 	case 0x21:
3132154be65SJarod Wilson 		pr_cont("Not enough length values allocated for signal\n");
3142154be65SJarod Wilson 		break;
3152154be65SJarod Wilson 	case 0x22:
3162154be65SJarod Wilson 		pr_cont("Not enough memory allocated for signal data\n");
3172154be65SJarod Wilson 		break;
3182154be65SJarod Wilson 	case 0x23:
3192154be65SJarod Wilson 		pr_cont("Too many signal repeats\n");
3202154be65SJarod Wilson 		break;
3212154be65SJarod Wilson 	case 0x28:
3222154be65SJarod Wilson 		pr_cont("Insufficient memory available for IR signal "
3232154be65SJarod Wilson 			"data memory allocation\n");
3242154be65SJarod Wilson 		break;
3252154be65SJarod Wilson 	case 0x29:
3262154be65SJarod Wilson 		pr_cont("Insufficient memory available "
3272154be65SJarod Wilson 			"for IrDa signal data memory allocation\n");
3282154be65SJarod Wilson 		break;
3292154be65SJarod Wilson 
3302154be65SJarod Wilson 	/* Codes 0x30 through 0x3f are USB Firmware Errors */
3312154be65SJarod Wilson 	case 0x30:
3322154be65SJarod Wilson 		pr_cont("Insufficient memory available for bulk "
3332154be65SJarod Wilson 			"transfer structure\n");
3342154be65SJarod Wilson 		break;
3352154be65SJarod Wilson 
3362154be65SJarod Wilson 	/*
3372154be65SJarod Wilson 	 * Other error codes... These are primarily errors that can occur in
3382154be65SJarod Wilson 	 * the control messages sent to the redrat
3392154be65SJarod Wilson 	 */
3402154be65SJarod Wilson 	case 0x40:
3412154be65SJarod Wilson 		if (!rr3->transmitting)
3422154be65SJarod Wilson 			pr_cont("Signal capture has been terminated\n");
3432154be65SJarod Wilson 		break;
3442154be65SJarod Wilson 	case 0x41:
3452154be65SJarod Wilson 		pr_cont("Attempt to set/get and unknown signal I/O "
3462154be65SJarod Wilson 			"algorithm parameter\n");
3472154be65SJarod Wilson 		break;
3482154be65SJarod Wilson 	case 0x42:
3492154be65SJarod Wilson 		pr_cont("Signal capture already started\n");
3502154be65SJarod Wilson 		break;
3512154be65SJarod Wilson 
3522154be65SJarod Wilson 	default:
3532154be65SJarod Wilson 		pr_cont("Unknown Error\n");
3542154be65SJarod Wilson 		break;
3552154be65SJarod Wilson 	}
3562154be65SJarod Wilson }
3572154be65SJarod Wilson 
3582154be65SJarod Wilson static u32 redrat3_val_to_mod_freq(struct redrat3_signal_header *ph)
3592154be65SJarod Wilson {
3602154be65SJarod Wilson 	u32 mod_freq = 0;
3612154be65SJarod Wilson 
3622154be65SJarod Wilson 	if (ph->mod_freq_count != 0)
3632154be65SJarod Wilson 		mod_freq = (RR3_CLK * ph->no_periods) /
3642154be65SJarod Wilson 				(ph->mod_freq_count * RR3_CLK_PER_COUNT);
3652154be65SJarod Wilson 
3662154be65SJarod Wilson 	return mod_freq;
3672154be65SJarod Wilson }
3682154be65SJarod Wilson 
3692154be65SJarod Wilson /* this function scales down the figures for the same result... */
3702154be65SJarod Wilson static u32 redrat3_len_to_us(u32 length)
3712154be65SJarod Wilson {
3722154be65SJarod Wilson 	u32 biglen = length * 1000;
3732154be65SJarod Wilson 	u32 divisor = (RR3_CLK_CONV_FACTOR) / 1000;
3742154be65SJarod Wilson 	u32 result = (u32) (biglen / divisor);
3752154be65SJarod Wilson 
3762154be65SJarod Wilson 	/* don't allow zero lengths to go back, breaks lirc */
3772154be65SJarod Wilson 	return result ? result : 1;
3782154be65SJarod Wilson }
3792154be65SJarod Wilson 
3802154be65SJarod Wilson /*
3812154be65SJarod Wilson  * convert us back into redrat3 lengths
3822154be65SJarod Wilson  *
3832154be65SJarod Wilson  * length * 1000   length * 1000000
3842154be65SJarod Wilson  * ------------- = ---------------- = micro
3852154be65SJarod Wilson  * rr3clk / 1000       rr3clk
3862154be65SJarod Wilson 
3872154be65SJarod Wilson  * 6 * 2       4 * 3        micro * rr3clk          micro * rr3clk / 1000
3882154be65SJarod Wilson  * ----- = 4   ----- = 6    -------------- = len    ---------------------
3892154be65SJarod Wilson  *   3           2             1000000                    1000
3902154be65SJarod Wilson  */
3912154be65SJarod Wilson static u32 redrat3_us_to_len(u32 microsec)
3922154be65SJarod Wilson {
3932154be65SJarod Wilson 	u32 result;
3942154be65SJarod Wilson 	u32 divisor;
3952154be65SJarod Wilson 
3962154be65SJarod Wilson 	microsec &= IR_MAX_DURATION;
3972154be65SJarod Wilson 	divisor = (RR3_CLK_CONV_FACTOR / 1000);
3982154be65SJarod Wilson 	result = (u32)(microsec * divisor) / 1000;
3992154be65SJarod Wilson 
4002154be65SJarod Wilson 	/* don't allow zero lengths to go back, breaks lirc */
4012154be65SJarod Wilson 	return result ? result : 1;
4022154be65SJarod Wilson 
4032154be65SJarod Wilson }
4042154be65SJarod Wilson 
40568b2a69dSJarod Wilson /* timer callback to send reset event */
4062154be65SJarod Wilson static void redrat3_rx_timeout(unsigned long data)
4072154be65SJarod Wilson {
4082154be65SJarod Wilson 	struct redrat3_dev *rr3 = (struct redrat3_dev *)data;
4092154be65SJarod Wilson 
4102154be65SJarod Wilson 	rr3_dbg(rr3->dev, "calling ir_raw_event_reset\n");
4112154be65SJarod Wilson 	ir_raw_event_reset(rr3->rc);
4122154be65SJarod Wilson }
4132154be65SJarod Wilson 
4142154be65SJarod Wilson static void redrat3_process_ir_data(struct redrat3_dev *rr3)
4152154be65SJarod Wilson {
4162154be65SJarod Wilson 	DEFINE_IR_RAW_EVENT(rawir);
4172154be65SJarod Wilson 	struct redrat3_signal_header header;
4182154be65SJarod Wilson 	struct device *dev;
419c53f9f00SJarod Wilson 	int i, trailer = 0;
4202154be65SJarod Wilson 	unsigned long delay;
4212154be65SJarod Wilson 	u32 mod_freq, single_len;
4222154be65SJarod Wilson 	u16 *len_vals;
4232154be65SJarod Wilson 	u8 *data_vals;
4242154be65SJarod Wilson 	u32 tmp32;
4252154be65SJarod Wilson 	u16 tmp16;
4262154be65SJarod Wilson 	char *sig_data;
4272154be65SJarod Wilson 
4282154be65SJarod Wilson 	if (!rr3) {
4292154be65SJarod Wilson 		pr_err("%s called with no context!\n", __func__);
4302154be65SJarod Wilson 		return;
4312154be65SJarod Wilson 	}
4322154be65SJarod Wilson 
4332154be65SJarod Wilson 	rr3_ftr(rr3->dev, "Entered %s\n", __func__);
4342154be65SJarod Wilson 
4352154be65SJarod Wilson 	dev = rr3->dev;
4362154be65SJarod Wilson 	sig_data = rr3->pbuf;
4372154be65SJarod Wilson 
4382154be65SJarod Wilson 	header.length = rr3->pktlen;
4392154be65SJarod Wilson 	header.transfer_type = rr3->pkttype;
4402154be65SJarod Wilson 
4412154be65SJarod Wilson 	/* Sanity check */
4422154be65SJarod Wilson 	if (!(header.length >= RR3_HEADER_LENGTH))
4432154be65SJarod Wilson 		dev_warn(dev, "read returned less than rr3 header len\n");
4442154be65SJarod Wilson 
445c53f9f00SJarod Wilson 	/* Make sure we reset the IR kfifo after a bit of inactivity */
446c53f9f00SJarod Wilson 	delay = usecs_to_jiffies(rr3->hw_timeout);
4472154be65SJarod Wilson 	mod_timer(&rr3->rx_timeout, jiffies + delay);
4482154be65SJarod Wilson 
4492154be65SJarod Wilson 	memcpy(&tmp32, sig_data + RR3_PAUSE_OFFSET, sizeof(tmp32));
4502154be65SJarod Wilson 	header.pause = be32_to_cpu(tmp32);
4512154be65SJarod Wilson 
4522154be65SJarod Wilson 	memcpy(&tmp16, sig_data + RR3_FREQ_COUNT_OFFSET, sizeof(tmp16));
4532154be65SJarod Wilson 	header.mod_freq_count = be16_to_cpu(tmp16);
4542154be65SJarod Wilson 
4552154be65SJarod Wilson 	memcpy(&tmp16, sig_data + RR3_NUM_PERIOD_OFFSET, sizeof(tmp16));
4562154be65SJarod Wilson 	header.no_periods = be16_to_cpu(tmp16);
4572154be65SJarod Wilson 
4582154be65SJarod Wilson 	header.max_lengths = sig_data[RR3_MAX_LENGTHS_OFFSET];
4592154be65SJarod Wilson 	header.no_lengths = sig_data[RR3_NUM_LENGTHS_OFFSET];
4602154be65SJarod Wilson 
4612154be65SJarod Wilson 	memcpy(&tmp16, sig_data + RR3_MAX_SIGS_OFFSET, sizeof(tmp16));
4622154be65SJarod Wilson 	header.max_sig_size = be16_to_cpu(tmp16);
4632154be65SJarod Wilson 
4642154be65SJarod Wilson 	memcpy(&tmp16, sig_data + RR3_NUM_SIGS_OFFSET, sizeof(tmp16));
4652154be65SJarod Wilson 	header.sig_size = be16_to_cpu(tmp16);
4662154be65SJarod Wilson 
4672154be65SJarod Wilson 	header.no_repeats= sig_data[RR3_REPEATS_OFFSET];
4682154be65SJarod Wilson 
4692154be65SJarod Wilson 	if (debug) {
4702154be65SJarod Wilson 		redrat3_dump_signal_header(&header);
4712154be65SJarod Wilson 		redrat3_dump_signal_data(sig_data, header.sig_size);
4722154be65SJarod Wilson 	}
4732154be65SJarod Wilson 
4742154be65SJarod Wilson 	mod_freq = redrat3_val_to_mod_freq(&header);
4752154be65SJarod Wilson 	rr3_dbg(dev, "Got mod_freq of %u\n", mod_freq);
4762154be65SJarod Wilson 
4772154be65SJarod Wilson 	/* Here we pull out the 'length' values from the signal */
4782154be65SJarod Wilson 	len_vals = (u16 *)(sig_data + RR3_HEADER_LENGTH);
4792154be65SJarod Wilson 
4802154be65SJarod Wilson 	data_vals = sig_data + RR3_HEADER_LENGTH +
4812154be65SJarod Wilson 		    (header.max_lengths * sizeof(u16));
4822154be65SJarod Wilson 
4832154be65SJarod Wilson 	/* process each rr3 encoded byte into an int */
4842154be65SJarod Wilson 	for (i = 0; i < header.sig_size; i++) {
4852154be65SJarod Wilson 		u16 val = len_vals[data_vals[i]];
4862154be65SJarod Wilson 		single_len = redrat3_len_to_us((u32)be16_to_cpu(val));
4872154be65SJarod Wilson 
4882154be65SJarod Wilson 		/* we should always get pulse/space/pulse/space samples */
4892154be65SJarod Wilson 		if (i % 2)
4902154be65SJarod Wilson 			rawir.pulse = false;
4912154be65SJarod Wilson 		else
4922154be65SJarod Wilson 			rawir.pulse = true;
4932154be65SJarod Wilson 
4942154be65SJarod Wilson 		rawir.duration = US_TO_NS(single_len);
495c53f9f00SJarod Wilson 		/* Save initial pulse length to fudge trailer */
496c53f9f00SJarod Wilson 		if (i == 0)
497c53f9f00SJarod Wilson 			trailer = rawir.duration;
4982c594ffaSJarod Wilson 		/* cap the value to IR_MAX_DURATION */
4992c594ffaSJarod Wilson 		rawir.duration &= IR_MAX_DURATION;
5002c594ffaSJarod Wilson 
5012154be65SJarod Wilson 		rr3_dbg(dev, "storing %s with duration %d (i: %d)\n",
5022154be65SJarod Wilson 			rawir.pulse ? "pulse" : "space", rawir.duration, i);
5032154be65SJarod Wilson 		ir_raw_event_store_with_filter(rr3->rc, &rawir);
5042154be65SJarod Wilson 	}
5052154be65SJarod Wilson 
5062154be65SJarod Wilson 	/* add a trailing space, if need be */
5072154be65SJarod Wilson 	if (i % 2) {
5082154be65SJarod Wilson 		rawir.pulse = false;
5092154be65SJarod Wilson 		/* this duration is made up, and may not be ideal... */
510c53f9f00SJarod Wilson 		if (trailer < US_TO_NS(1000))
511c53f9f00SJarod Wilson 			rawir.duration = US_TO_NS(2800);
512c53f9f00SJarod Wilson 		else
513c53f9f00SJarod Wilson 			rawir.duration = trailer;
5142154be65SJarod Wilson 		rr3_dbg(dev, "storing trailing space with duration %d\n",
5152154be65SJarod Wilson 			rawir.duration);
5162154be65SJarod Wilson 		ir_raw_event_store_with_filter(rr3->rc, &rawir);
5172154be65SJarod Wilson 	}
5182154be65SJarod Wilson 
5192154be65SJarod Wilson 	rr3_dbg(dev, "calling ir_raw_event_handle\n");
5202154be65SJarod Wilson 	ir_raw_event_handle(rr3->rc);
5212154be65SJarod Wilson 
5222154be65SJarod Wilson 	return;
5232154be65SJarod Wilson }
5242154be65SJarod Wilson 
5252154be65SJarod Wilson /* Util fn to send rr3 cmds */
5262154be65SJarod Wilson static u8 redrat3_send_cmd(int cmd, struct redrat3_dev *rr3)
5272154be65SJarod Wilson {
5282154be65SJarod Wilson 	struct usb_device *udev;
5292154be65SJarod Wilson 	u8 *data;
5302154be65SJarod Wilson 	int res;
5312154be65SJarod Wilson 
5322154be65SJarod Wilson 	data = kzalloc(sizeof(u8), GFP_KERNEL);
5332154be65SJarod Wilson 	if (!data)
5342154be65SJarod Wilson 		return -ENOMEM;
5352154be65SJarod Wilson 
5362154be65SJarod Wilson 	udev = rr3->udev;
5372154be65SJarod Wilson 	res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), cmd,
5382154be65SJarod Wilson 			      USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
5392154be65SJarod Wilson 			      0x0000, 0x0000, data, sizeof(u8), HZ * 10);
5402154be65SJarod Wilson 
5412154be65SJarod Wilson 	if (res < 0) {
5422154be65SJarod Wilson 		dev_err(rr3->dev, "%s: Error sending rr3 cmd res %d, data %d",
5432154be65SJarod Wilson 			__func__, res, *data);
5442154be65SJarod Wilson 		res = -EIO;
5452154be65SJarod Wilson 	} else
5462154be65SJarod Wilson 		res = (u8)data[0];
5472154be65SJarod Wilson 
5482154be65SJarod Wilson 	kfree(data);
5492154be65SJarod Wilson 
5502154be65SJarod Wilson 	return res;
5512154be65SJarod Wilson }
5522154be65SJarod Wilson 
5532154be65SJarod Wilson /* Enables the long range detector and starts async receive */
5542154be65SJarod Wilson static int redrat3_enable_detector(struct redrat3_dev *rr3)
5552154be65SJarod Wilson {
5562154be65SJarod Wilson 	struct device *dev = rr3->dev;
5572154be65SJarod Wilson 	u8 ret;
5582154be65SJarod Wilson 
5592154be65SJarod Wilson 	rr3_ftr(dev, "Entering %s\n", __func__);
5602154be65SJarod Wilson 
5612154be65SJarod Wilson 	ret = redrat3_send_cmd(RR3_RC_DET_ENABLE, rr3);
5622154be65SJarod Wilson 	if (ret != 0)
5632154be65SJarod Wilson 		dev_dbg(dev, "%s: unexpected ret of %d\n",
5642154be65SJarod Wilson 			__func__, ret);
5652154be65SJarod Wilson 
5662154be65SJarod Wilson 	ret = redrat3_send_cmd(RR3_RC_DET_STATUS, rr3);
5672154be65SJarod Wilson 	if (ret != 1) {
5682154be65SJarod Wilson 		dev_err(dev, "%s: detector status: %d, should be 1\n",
5692154be65SJarod Wilson 			__func__, ret);
5702154be65SJarod Wilson 		return -EIO;
5712154be65SJarod Wilson 	}
5722154be65SJarod Wilson 
5732154be65SJarod Wilson 	rr3->det_enabled = true;
5742154be65SJarod Wilson 	redrat3_issue_async(rr3);
5752154be65SJarod Wilson 
5762154be65SJarod Wilson 	return 0;
5772154be65SJarod Wilson }
5782154be65SJarod Wilson 
5792154be65SJarod Wilson /* Disables the rr3 long range detector */
5802154be65SJarod Wilson static void redrat3_disable_detector(struct redrat3_dev *rr3)
5812154be65SJarod Wilson {
5822154be65SJarod Wilson 	struct device *dev = rr3->dev;
5832154be65SJarod Wilson 	u8 ret;
5842154be65SJarod Wilson 
5852154be65SJarod Wilson 	rr3_ftr(dev, "Entering %s\n", __func__);
5862154be65SJarod Wilson 
5872154be65SJarod Wilson 	ret = redrat3_send_cmd(RR3_RC_DET_DISABLE, rr3);
5882154be65SJarod Wilson 	if (ret != 0)
5892154be65SJarod Wilson 		dev_err(dev, "%s: failure!\n", __func__);
5902154be65SJarod Wilson 
5912154be65SJarod Wilson 	ret = redrat3_send_cmd(RR3_RC_DET_STATUS, rr3);
5922154be65SJarod Wilson 	if (ret != 0)
5932154be65SJarod Wilson 		dev_warn(dev, "%s: detector status: %d, should be 0\n",
5942154be65SJarod Wilson 			 __func__, ret);
5952154be65SJarod Wilson 
5962154be65SJarod Wilson 	rr3->det_enabled = false;
5972154be65SJarod Wilson }
5982154be65SJarod Wilson 
5992154be65SJarod Wilson static inline void redrat3_delete(struct redrat3_dev *rr3,
6002154be65SJarod Wilson 				  struct usb_device *udev)
6012154be65SJarod Wilson {
6022154be65SJarod Wilson 	rr3_ftr(rr3->dev, "%s cleaning up\n", __func__);
6032154be65SJarod Wilson 	usb_kill_urb(rr3->read_urb);
6042154be65SJarod Wilson 	usb_kill_urb(rr3->write_urb);
6052154be65SJarod Wilson 
6062154be65SJarod Wilson 	usb_free_urb(rr3->read_urb);
6072154be65SJarod Wilson 	usb_free_urb(rr3->write_urb);
6082154be65SJarod Wilson 
6092154be65SJarod Wilson 	usb_free_coherent(udev, rr3->ep_in->wMaxPacketSize,
6102154be65SJarod Wilson 			  rr3->bulk_in_buf, rr3->dma_in);
6112154be65SJarod Wilson 	usb_free_coherent(udev, rr3->ep_out->wMaxPacketSize,
6122154be65SJarod Wilson 			  rr3->bulk_out_buf, rr3->dma_out);
6132154be65SJarod Wilson 
6142154be65SJarod Wilson 	kfree(rr3);
6152154be65SJarod Wilson }
6162154be65SJarod Wilson 
617c53f9f00SJarod Wilson static u32 redrat3_get_timeout(struct redrat3_dev *rr3)
6182154be65SJarod Wilson {
6192154be65SJarod Wilson 	u32 *tmp;
620c53f9f00SJarod Wilson 	u32 timeout = MS_TO_US(150); /* a sane default, if things go haywire */
6212154be65SJarod Wilson 	int len, ret, pipe;
6222154be65SJarod Wilson 
6232154be65SJarod Wilson 	len = sizeof(*tmp);
6242154be65SJarod Wilson 	tmp = kzalloc(len, GFP_KERNEL);
6252154be65SJarod Wilson 	if (!tmp) {
626c53f9f00SJarod Wilson 		dev_warn(rr3->dev, "Memory allocation faillure\n");
6272154be65SJarod Wilson 		return timeout;
6282154be65SJarod Wilson 	}
6292154be65SJarod Wilson 
630c53f9f00SJarod Wilson 	pipe = usb_rcvctrlpipe(rr3->udev, 0);
631c53f9f00SJarod Wilson 	ret = usb_control_msg(rr3->udev, pipe, RR3_GET_IR_PARAM,
6322154be65SJarod Wilson 			      USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
6332154be65SJarod Wilson 			      RR3_IR_IO_SIG_TIMEOUT, 0, tmp, len, HZ * 5);
6342154be65SJarod Wilson 	if (ret != len) {
635c53f9f00SJarod Wilson 		dev_warn(rr3->dev, "Failed to read timeout from hardware\n");
6362154be65SJarod Wilson 		return timeout;
6372154be65SJarod Wilson 	}
6382154be65SJarod Wilson 
639c53f9f00SJarod Wilson 	timeout = redrat3_len_to_us(be32_to_cpu(*tmp));
6402154be65SJarod Wilson 
641c53f9f00SJarod Wilson 	rr3_dbg(rr3->dev, "Got timeout of %d ms\n", timeout / 1000);
6422154be65SJarod Wilson 	return timeout;
6432154be65SJarod Wilson }
6442154be65SJarod Wilson 
6452154be65SJarod Wilson static void redrat3_reset(struct redrat3_dev *rr3)
6462154be65SJarod Wilson {
6472154be65SJarod Wilson 	struct usb_device *udev = rr3->udev;
6482154be65SJarod Wilson 	struct device *dev = rr3->dev;
6492154be65SJarod Wilson 	int rc, rxpipe, txpipe;
6502154be65SJarod Wilson 	u8 *val;
6512154be65SJarod Wilson 	int len = sizeof(u8);
6522154be65SJarod Wilson 
6532154be65SJarod Wilson 	rr3_ftr(dev, "Entering %s\n", __func__);
6542154be65SJarod Wilson 
6552154be65SJarod Wilson 	rxpipe = usb_rcvctrlpipe(udev, 0);
6562154be65SJarod Wilson 	txpipe = usb_sndctrlpipe(udev, 0);
6572154be65SJarod Wilson 
6582154be65SJarod Wilson 	val = kzalloc(len, GFP_KERNEL);
6592154be65SJarod Wilson 	if (!val) {
6602154be65SJarod Wilson 		dev_err(dev, "Memory allocation failure\n");
6612154be65SJarod Wilson 		return;
6622154be65SJarod Wilson 	}
6632154be65SJarod Wilson 
6642154be65SJarod Wilson 	*val = 0x01;
6652154be65SJarod Wilson 	rc = usb_control_msg(udev, rxpipe, RR3_RESET,
6662154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
6672154be65SJarod Wilson 			     RR3_CPUCS_REG_ADDR, 0, val, len, HZ * 25);
6682154be65SJarod Wilson 	rr3_dbg(dev, "reset returned 0x%02x\n", rc);
6692154be65SJarod Wilson 
6702154be65SJarod Wilson 	*val = 5;
6712154be65SJarod Wilson 	rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
6722154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
6732154be65SJarod Wilson 			     RR3_IR_IO_LENGTH_FUZZ, 0, val, len, HZ * 25);
6742154be65SJarod Wilson 	rr3_dbg(dev, "set ir parm len fuzz %d rc 0x%02x\n", *val, rc);
6752154be65SJarod Wilson 
6762154be65SJarod Wilson 	*val = RR3_DRIVER_MAXLENS;
6772154be65SJarod Wilson 	rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM,
6782154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
6792154be65SJarod Wilson 			     RR3_IR_IO_MAX_LENGTHS, 0, val, len, HZ * 25);
6802154be65SJarod Wilson 	rr3_dbg(dev, "set ir parm max lens %d rc 0x%02x\n", *val, rc);
6812154be65SJarod Wilson 
6822154be65SJarod Wilson 	kfree(val);
6832154be65SJarod Wilson }
6842154be65SJarod Wilson 
6852154be65SJarod Wilson static void redrat3_get_firmware_rev(struct redrat3_dev *rr3)
6862154be65SJarod Wilson {
6872154be65SJarod Wilson 	int rc = 0;
6882154be65SJarod Wilson 	char *buffer;
6892154be65SJarod Wilson 
6902154be65SJarod Wilson 	rr3_ftr(rr3->dev, "Entering %s\n", __func__);
6912154be65SJarod Wilson 
6922154be65SJarod Wilson 	buffer = kzalloc(sizeof(char) * (RR3_FW_VERSION_LEN + 1), GFP_KERNEL);
6932154be65SJarod Wilson 	if (!buffer) {
6942154be65SJarod Wilson 		dev_err(rr3->dev, "Memory allocation failure\n");
6952154be65SJarod Wilson 		return;
6962154be65SJarod Wilson 	}
6972154be65SJarod Wilson 
6982154be65SJarod Wilson 	rc = usb_control_msg(rr3->udev, usb_rcvctrlpipe(rr3->udev, 0),
6992154be65SJarod Wilson 			     RR3_FW_VERSION,
7002154be65SJarod Wilson 			     USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
7012154be65SJarod Wilson 			     0, 0, buffer, RR3_FW_VERSION_LEN, HZ * 5);
7022154be65SJarod Wilson 
7032154be65SJarod Wilson 	if (rc >= 0)
7042154be65SJarod Wilson 		dev_info(rr3->dev, "Firmware rev: %s", buffer);
7052154be65SJarod Wilson 	else
7062154be65SJarod Wilson 		dev_err(rr3->dev, "Problem fetching firmware ID\n");
7072154be65SJarod Wilson 
7082154be65SJarod Wilson 	kfree(buffer);
7092154be65SJarod Wilson 	rr3_ftr(rr3->dev, "Exiting %s\n", __func__);
7102154be65SJarod Wilson }
7112154be65SJarod Wilson 
7122154be65SJarod Wilson static void redrat3_read_packet_start(struct redrat3_dev *rr3, int len)
7132154be65SJarod Wilson {
7142154be65SJarod Wilson 	u16 tx_error;
7152154be65SJarod Wilson 	u16 hdrlen;
7162154be65SJarod Wilson 
7172154be65SJarod Wilson 	rr3_ftr(rr3->dev, "Entering %s\n", __func__);
7182154be65SJarod Wilson 
7192154be65SJarod Wilson 	/* grab the Length and type of transfer */
7202154be65SJarod Wilson 	memcpy(&(rr3->pktlen), (unsigned char *) rr3->bulk_in_buf,
7212154be65SJarod Wilson 	       sizeof(rr3->pktlen));
7222154be65SJarod Wilson 	memcpy(&(rr3->pkttype), ((unsigned char *) rr3->bulk_in_buf +
7232154be65SJarod Wilson 		sizeof(rr3->pktlen)),
7242154be65SJarod Wilson 	       sizeof(rr3->pkttype));
7252154be65SJarod Wilson 
7262154be65SJarod Wilson 	/*data needs conversion to know what its real values are*/
7272154be65SJarod Wilson 	rr3->pktlen = be16_to_cpu(rr3->pktlen);
7282154be65SJarod Wilson 	rr3->pkttype = be16_to_cpu(rr3->pkttype);
7292154be65SJarod Wilson 
7302154be65SJarod Wilson 	switch (rr3->pkttype) {
7312154be65SJarod Wilson 	case RR3_ERROR:
7322154be65SJarod Wilson 		memcpy(&tx_error, ((unsigned char *)rr3->bulk_in_buf
7332154be65SJarod Wilson 			+ (sizeof(rr3->pktlen) + sizeof(rr3->pkttype))),
7342154be65SJarod Wilson 		       sizeof(tx_error));
7352154be65SJarod Wilson 		tx_error = be16_to_cpu(tx_error);
7362154be65SJarod Wilson 		redrat3_dump_fw_error(rr3, tx_error);
7372154be65SJarod Wilson 		break;
7382154be65SJarod Wilson 
7392154be65SJarod Wilson 	case RR3_MOD_SIGNAL_IN:
7402154be65SJarod Wilson 		hdrlen = sizeof(rr3->pktlen) + sizeof(rr3->pkttype);
7412154be65SJarod Wilson 		rr3->bytes_read = len;
7422154be65SJarod Wilson 		rr3->bytes_read -= hdrlen;
7432154be65SJarod Wilson 		rr3->datap = &(rr3->pbuf[0]);
7442154be65SJarod Wilson 
7452154be65SJarod Wilson 		memcpy(rr3->datap, ((unsigned char *)rr3->bulk_in_buf + hdrlen),
7462154be65SJarod Wilson 		       rr3->bytes_read);
7472154be65SJarod Wilson 		rr3->datap += rr3->bytes_read;
7482154be65SJarod Wilson 		rr3_dbg(rr3->dev, "bytes_read %d, pktlen %d\n",
7492154be65SJarod Wilson 			rr3->bytes_read, rr3->pktlen);
7502154be65SJarod Wilson 		break;
7512154be65SJarod Wilson 
7522154be65SJarod Wilson 	default:
7532154be65SJarod Wilson 		rr3_dbg(rr3->dev, "ignoring packet with type 0x%02x, "
7542154be65SJarod Wilson 			"len of %d, 0x%02x\n", rr3->pkttype, len, rr3->pktlen);
7552154be65SJarod Wilson 		break;
7562154be65SJarod Wilson 	}
7572154be65SJarod Wilson }
7582154be65SJarod Wilson 
7592154be65SJarod Wilson static void redrat3_read_packet_continue(struct redrat3_dev *rr3, int len)
7602154be65SJarod Wilson {
7612154be65SJarod Wilson 
7622154be65SJarod Wilson 	rr3_ftr(rr3->dev, "Entering %s\n", __func__);
7632154be65SJarod Wilson 
7642154be65SJarod Wilson 	memcpy(rr3->datap, (unsigned char *)rr3->bulk_in_buf, len);
7652154be65SJarod Wilson 	rr3->datap += len;
7662154be65SJarod Wilson 
7672154be65SJarod Wilson 	rr3->bytes_read += len;
7682154be65SJarod Wilson 	rr3_dbg(rr3->dev, "bytes_read %d, pktlen %d\n",
7692154be65SJarod Wilson 		rr3->bytes_read, rr3->pktlen);
7702154be65SJarod Wilson }
7712154be65SJarod Wilson 
7722154be65SJarod Wilson /* gather IR data from incoming urb, process it when we have enough */
7732154be65SJarod Wilson static int redrat3_get_ir_data(struct redrat3_dev *rr3, int len)
7742154be65SJarod Wilson {
7752154be65SJarod Wilson 	struct device *dev = rr3->dev;
7762154be65SJarod Wilson 	int ret = 0;
7772154be65SJarod Wilson 
7782154be65SJarod Wilson 	rr3_ftr(dev, "Entering %s\n", __func__);
7792154be65SJarod Wilson 
7802154be65SJarod Wilson 	if (rr3->pktlen > RR3_MAX_BUF_SIZE) {
7812154be65SJarod Wilson 		dev_err(rr3->dev, "error: packet larger than buffer\n");
7822154be65SJarod Wilson 		ret = -EINVAL;
7832154be65SJarod Wilson 		goto out;
7842154be65SJarod Wilson 	}
7852154be65SJarod Wilson 
7862154be65SJarod Wilson 	if ((rr3->bytes_read == 0) &&
7872154be65SJarod Wilson 	    (len >= (sizeof(rr3->pkttype) + sizeof(rr3->pktlen)))) {
7882154be65SJarod Wilson 		redrat3_read_packet_start(rr3, len);
7892154be65SJarod Wilson 	} else if (rr3->bytes_read != 0) {
7902154be65SJarod Wilson 		redrat3_read_packet_continue(rr3, len);
7912154be65SJarod Wilson 	} else if (rr3->bytes_read == 0) {
7922154be65SJarod Wilson 		dev_err(dev, "error: no packet data read\n");
7932154be65SJarod Wilson 		ret = -ENODATA;
7942154be65SJarod Wilson 		goto out;
7952154be65SJarod Wilson 	}
7962154be65SJarod Wilson 
7972154be65SJarod Wilson 	if (rr3->bytes_read > rr3->pktlen) {
7982154be65SJarod Wilson 		dev_err(dev, "bytes_read (%d) greater than pktlen (%d)\n",
7992154be65SJarod Wilson 			rr3->bytes_read, rr3->pktlen);
8002154be65SJarod Wilson 		ret = -EINVAL;
8012154be65SJarod Wilson 		goto out;
8022154be65SJarod Wilson 	} else if (rr3->bytes_read < rr3->pktlen)
8032154be65SJarod Wilson 		/* we're still accumulating data */
8042154be65SJarod Wilson 		return 0;
8052154be65SJarod Wilson 
8062154be65SJarod Wilson 	/* if we get here, we've got IR data to decode */
8072154be65SJarod Wilson 	if (rr3->pkttype == RR3_MOD_SIGNAL_IN)
8082154be65SJarod Wilson 		redrat3_process_ir_data(rr3);
8092154be65SJarod Wilson 	else
8102154be65SJarod Wilson 		rr3_dbg(dev, "discarding non-signal data packet "
8112154be65SJarod Wilson 			"(type 0x%02x)\n", rr3->pkttype);
8122154be65SJarod Wilson 
8132154be65SJarod Wilson out:
8142154be65SJarod Wilson 	rr3->bytes_read = 0;
8152154be65SJarod Wilson 	rr3->pktlen = 0;
8162154be65SJarod Wilson 	rr3->pkttype = 0;
8172154be65SJarod Wilson 	return ret;
8182154be65SJarod Wilson }
8192154be65SJarod Wilson 
8202154be65SJarod Wilson /* callback function from USB when async USB request has completed */
8212154be65SJarod Wilson static void redrat3_handle_async(struct urb *urb, struct pt_regs *regs)
8222154be65SJarod Wilson {
8232154be65SJarod Wilson 	struct redrat3_dev *rr3;
824dbea1880SAndrew Vincer 	int ret;
8252154be65SJarod Wilson 
8262154be65SJarod Wilson 	if (!urb)
8272154be65SJarod Wilson 		return;
8282154be65SJarod Wilson 
8292154be65SJarod Wilson 	rr3 = urb->context;
8302154be65SJarod Wilson 	if (!rr3) {
8312154be65SJarod Wilson 		pr_err("%s called with invalid context!\n", __func__);
8322154be65SJarod Wilson 		usb_unlink_urb(urb);
8332154be65SJarod Wilson 		return;
8342154be65SJarod Wilson 	}
8352154be65SJarod Wilson 
8362154be65SJarod Wilson 	rr3_ftr(rr3->dev, "Entering %s\n", __func__);
8372154be65SJarod Wilson 
8382154be65SJarod Wilson 	switch (urb->status) {
8392154be65SJarod Wilson 	case 0:
840dbea1880SAndrew Vincer 		ret = redrat3_get_ir_data(rr3, urb->actual_length);
841dbea1880SAndrew Vincer 		if (!ret) {
842dbea1880SAndrew Vincer 			/* no error, prepare to read more */
843dbea1880SAndrew Vincer 			redrat3_issue_async(rr3);
844dbea1880SAndrew Vincer 		}
8452154be65SJarod Wilson 		break;
8462154be65SJarod Wilson 
8472154be65SJarod Wilson 	case -ECONNRESET:
8482154be65SJarod Wilson 	case -ENOENT:
8492154be65SJarod Wilson 	case -ESHUTDOWN:
8502154be65SJarod Wilson 		usb_unlink_urb(urb);
8512154be65SJarod Wilson 		return;
8522154be65SJarod Wilson 
8532154be65SJarod Wilson 	case -EPIPE:
8542154be65SJarod Wilson 	default:
8552154be65SJarod Wilson 		dev_warn(rr3->dev, "Error: urb status = %d\n", urb->status);
8562154be65SJarod Wilson 		rr3->bytes_read = 0;
8572154be65SJarod Wilson 		rr3->pktlen = 0;
8582154be65SJarod Wilson 		rr3->pkttype = 0;
8592154be65SJarod Wilson 		break;
8602154be65SJarod Wilson 	}
8612154be65SJarod Wilson }
8622154be65SJarod Wilson 
8632154be65SJarod Wilson static void redrat3_write_bulk_callback(struct urb *urb, struct pt_regs *regs)
8642154be65SJarod Wilson {
8652154be65SJarod Wilson 	struct redrat3_dev *rr3;
8662154be65SJarod Wilson 	int len;
8672154be65SJarod Wilson 
8682154be65SJarod Wilson 	if (!urb)
8692154be65SJarod Wilson 		return;
8702154be65SJarod Wilson 
8712154be65SJarod Wilson 	rr3 = urb->context;
8722154be65SJarod Wilson 	if (rr3) {
8732154be65SJarod Wilson 		len = urb->actual_length;
8742154be65SJarod Wilson 		rr3_ftr(rr3->dev, "%s: called (status=%d len=%d)\n",
8752154be65SJarod Wilson 			__func__, urb->status, len);
8762154be65SJarod Wilson 	}
8772154be65SJarod Wilson }
8782154be65SJarod Wilson 
8792154be65SJarod Wilson static u16 mod_freq_to_val(unsigned int mod_freq)
8802154be65SJarod Wilson {
8812154be65SJarod Wilson 	int mult = 6000000;
8822154be65SJarod Wilson 
8832154be65SJarod Wilson 	/* Clk used in mod. freq. generation is CLK24/4. */
8842154be65SJarod Wilson 	return (u16)(65536 - (mult / mod_freq));
8852154be65SJarod Wilson }
8862154be65SJarod Wilson 
887dbea1880SAndrew Vincer static int redrat3_set_tx_carrier(struct rc_dev *rcdev, u32 carrier)
8882154be65SJarod Wilson {
889dbea1880SAndrew Vincer 	struct redrat3_dev *rr3 = rcdev->priv;
890dbea1880SAndrew Vincer 	struct device *dev = rr3->dev;
8912154be65SJarod Wilson 
892dbea1880SAndrew Vincer 	rr3_dbg(dev, "Setting modulation frequency to %u", carrier);
893*48cafec9SDan Carpenter 	if (carrier == 0)
894*48cafec9SDan Carpenter 		return -EINVAL;
895*48cafec9SDan Carpenter 
8962154be65SJarod Wilson 	rr3->carrier = carrier;
8972154be65SJarod Wilson 
8982154be65SJarod Wilson 	return carrier;
8992154be65SJarod Wilson }
9002154be65SJarod Wilson 
901dbea1880SAndrew Vincer static int redrat3_transmit_ir(struct rc_dev *rcdev, unsigned *txbuf,
902dbea1880SAndrew Vincer 				unsigned count)
9032154be65SJarod Wilson {
9042154be65SJarod Wilson 	struct redrat3_dev *rr3 = rcdev->priv;
9052154be65SJarod Wilson 	struct device *dev = rr3->dev;
9062154be65SJarod Wilson 	struct redrat3_signal_header header;
907dbea1880SAndrew Vincer 	int i, j, ret, ret_len, offset;
9082154be65SJarod Wilson 	int lencheck, cur_sample_len, pipe;
9092154be65SJarod Wilson 	char *buffer = NULL, *sigdata = NULL;
9102154be65SJarod Wilson 	int *sample_lens = NULL;
9112154be65SJarod Wilson 	u32 tmpi;
9122154be65SJarod Wilson 	u16 tmps;
9132154be65SJarod Wilson 	u8 *datap;
9142154be65SJarod Wilson 	u8 curlencheck = 0;
9152154be65SJarod Wilson 	u16 *lengths_ptr;
9162154be65SJarod Wilson 	int sendbuf_len;
9172154be65SJarod Wilson 
9182154be65SJarod Wilson 	rr3_ftr(dev, "Entering %s\n", __func__);
9192154be65SJarod Wilson 
9202154be65SJarod Wilson 	if (rr3->transmitting) {
9212154be65SJarod Wilson 		dev_warn(dev, "%s: transmitter already in use\n", __func__);
9222154be65SJarod Wilson 		return -EAGAIN;
9232154be65SJarod Wilson 	}
9242154be65SJarod Wilson 
9252154be65SJarod Wilson 	if (count > (RR3_DRIVER_MAXLENS * 2))
9262154be65SJarod Wilson 		return -EINVAL;
9272154be65SJarod Wilson 
928dbea1880SAndrew Vincer 	/* rr3 will disable rc detector on transmit */
929dbea1880SAndrew Vincer 	rr3->det_enabled = false;
9302154be65SJarod Wilson 	rr3->transmitting = true;
9312154be65SJarod Wilson 
9322154be65SJarod Wilson 	sample_lens = kzalloc(sizeof(int) * RR3_DRIVER_MAXLENS, GFP_KERNEL);
9332154be65SJarod Wilson 	if (!sample_lens) {
9342154be65SJarod Wilson 		ret = -ENOMEM;
9352154be65SJarod Wilson 		goto out;
9362154be65SJarod Wilson 	}
9372154be65SJarod Wilson 
9382154be65SJarod Wilson 	for (i = 0; i < count; i++) {
9392154be65SJarod Wilson 		for (lencheck = 0; lencheck < curlencheck; lencheck++) {
9402154be65SJarod Wilson 			cur_sample_len = redrat3_us_to_len(txbuf[i]);
9412154be65SJarod Wilson 			if (sample_lens[lencheck] == cur_sample_len)
9422154be65SJarod Wilson 				break;
9432154be65SJarod Wilson 		}
9442154be65SJarod Wilson 		if (lencheck == curlencheck) {
9452154be65SJarod Wilson 			cur_sample_len = redrat3_us_to_len(txbuf[i]);
9462154be65SJarod Wilson 			rr3_dbg(dev, "txbuf[%d]=%u, pos %d, enc %u\n",
9472154be65SJarod Wilson 				i, txbuf[i], curlencheck, cur_sample_len);
9482154be65SJarod Wilson 			if (curlencheck < 255) {
9492154be65SJarod Wilson 				/* now convert the value to a proper
9502154be65SJarod Wilson 				 * rr3 value.. */
9512154be65SJarod Wilson 				sample_lens[curlencheck] = cur_sample_len;
9522154be65SJarod Wilson 				curlencheck++;
9532154be65SJarod Wilson 			} else {
9542154be65SJarod Wilson 				dev_err(dev, "signal too long\n");
9552154be65SJarod Wilson 				ret = -EINVAL;
9562154be65SJarod Wilson 				goto out;
9572154be65SJarod Wilson 			}
9582154be65SJarod Wilson 		}
9592154be65SJarod Wilson 	}
9602154be65SJarod Wilson 
9612154be65SJarod Wilson 	sigdata = kzalloc((count + RR3_TX_TRAILER_LEN), GFP_KERNEL);
9622154be65SJarod Wilson 	if (!sigdata) {
9632154be65SJarod Wilson 		ret = -ENOMEM;
9642154be65SJarod Wilson 		goto out;
9652154be65SJarod Wilson 	}
9662154be65SJarod Wilson 
9672154be65SJarod Wilson 	sigdata[count] = RR3_END_OF_SIGNAL;
9682154be65SJarod Wilson 	sigdata[count + 1] = RR3_END_OF_SIGNAL;
9692154be65SJarod Wilson 	for (i = 0; i < count; i++) {
9702154be65SJarod Wilson 		for (j = 0; j < curlencheck; j++) {
9712154be65SJarod Wilson 			if (sample_lens[j] == redrat3_us_to_len(txbuf[i]))
9722154be65SJarod Wilson 				sigdata[i] = j;
9732154be65SJarod Wilson 		}
9742154be65SJarod Wilson 	}
9752154be65SJarod Wilson 
9762154be65SJarod Wilson 	offset = RR3_TX_HEADER_OFFSET;
9772154be65SJarod Wilson 	sendbuf_len = RR3_HEADER_LENGTH + (sizeof(u16) * RR3_DRIVER_MAXLENS)
9782154be65SJarod Wilson 			+ count + RR3_TX_TRAILER_LEN + offset;
9792154be65SJarod Wilson 
9802154be65SJarod Wilson 	buffer = kzalloc(sendbuf_len, GFP_KERNEL);
9812154be65SJarod Wilson 	if (!buffer) {
9822154be65SJarod Wilson 		ret = -ENOMEM;
9832154be65SJarod Wilson 		goto out;
9842154be65SJarod Wilson 	}
9852154be65SJarod Wilson 
9862154be65SJarod Wilson 	/* fill in our packet header */
9872154be65SJarod Wilson 	header.length = sendbuf_len - offset;
9882154be65SJarod Wilson 	header.transfer_type = RR3_MOD_SIGNAL_OUT;
9892154be65SJarod Wilson 	header.pause = redrat3_len_to_us(100);
9902154be65SJarod Wilson 	header.mod_freq_count = mod_freq_to_val(rr3->carrier);
9912154be65SJarod Wilson 	header.no_periods = 0; /* n/a to transmit */
9922154be65SJarod Wilson 	header.max_lengths = RR3_DRIVER_MAXLENS;
9932154be65SJarod Wilson 	header.no_lengths = curlencheck;
9942154be65SJarod Wilson 	header.max_sig_size = RR3_MAX_SIG_SIZE;
9952154be65SJarod Wilson 	header.sig_size = count + RR3_TX_TRAILER_LEN;
9962154be65SJarod Wilson 	/* we currently rely on repeat handling in the IR encoding source */
9972154be65SJarod Wilson 	header.no_repeats = 0;
9982154be65SJarod Wilson 
9992154be65SJarod Wilson 	tmps = cpu_to_be16(header.length);
10002154be65SJarod Wilson 	memcpy(buffer, &tmps, 2);
10012154be65SJarod Wilson 
10022154be65SJarod Wilson 	tmps = cpu_to_be16(header.transfer_type);
10032154be65SJarod Wilson 	memcpy(buffer + 2, &tmps, 2);
10042154be65SJarod Wilson 
10052154be65SJarod Wilson 	tmpi = cpu_to_be32(header.pause);
10062154be65SJarod Wilson 	memcpy(buffer + offset, &tmpi, sizeof(tmpi));
10072154be65SJarod Wilson 
10082154be65SJarod Wilson 	tmps = cpu_to_be16(header.mod_freq_count);
10092154be65SJarod Wilson 	memcpy(buffer + offset + RR3_FREQ_COUNT_OFFSET, &tmps, 2);
10102154be65SJarod Wilson 
10112154be65SJarod Wilson 	buffer[offset + RR3_NUM_LENGTHS_OFFSET] = header.no_lengths;
10122154be65SJarod Wilson 
10132154be65SJarod Wilson 	tmps = cpu_to_be16(header.sig_size);
10142154be65SJarod Wilson 	memcpy(buffer + offset + RR3_NUM_SIGS_OFFSET, &tmps, 2);
10152154be65SJarod Wilson 
10162154be65SJarod Wilson 	buffer[offset + RR3_REPEATS_OFFSET] = header.no_repeats;
10172154be65SJarod Wilson 
10182154be65SJarod Wilson 	lengths_ptr = (u16 *)(buffer + offset + RR3_HEADER_LENGTH);
10192154be65SJarod Wilson 	for (i = 0; i < curlencheck; ++i)
10202154be65SJarod Wilson 		lengths_ptr[i] = cpu_to_be16(sample_lens[i]);
10212154be65SJarod Wilson 
10222154be65SJarod Wilson 	datap = (u8 *)(buffer + offset + RR3_HEADER_LENGTH +
10232154be65SJarod Wilson 			    (sizeof(u16) * RR3_DRIVER_MAXLENS));
10242154be65SJarod Wilson 	memcpy(datap, sigdata, (count + RR3_TX_TRAILER_LEN));
10252154be65SJarod Wilson 
10262154be65SJarod Wilson 	if (debug) {
10272154be65SJarod Wilson 		redrat3_dump_signal_header(&header);
10282154be65SJarod Wilson 		redrat3_dump_signal_data(buffer, header.sig_size);
10292154be65SJarod Wilson 	}
10302154be65SJarod Wilson 
10312154be65SJarod Wilson 	pipe = usb_sndbulkpipe(rr3->udev, rr3->ep_out->bEndpointAddress);
10322154be65SJarod Wilson 	tmps = usb_bulk_msg(rr3->udev, pipe, buffer,
10332154be65SJarod Wilson 			    sendbuf_len, &ret_len, 10 * HZ);
10342154be65SJarod Wilson 	rr3_dbg(dev, "sent %d bytes, (ret %d)\n", ret_len, tmps);
10352154be65SJarod Wilson 
10362154be65SJarod Wilson 	/* now tell the hardware to transmit what we sent it */
10372154be65SJarod Wilson 	pipe = usb_rcvctrlpipe(rr3->udev, 0);
10382154be65SJarod Wilson 	ret = usb_control_msg(rr3->udev, pipe, RR3_TX_SEND_SIGNAL,
10392154be65SJarod Wilson 			      USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
10402154be65SJarod Wilson 			      0, 0, buffer, 2, HZ * 10);
10412154be65SJarod Wilson 
10422154be65SJarod Wilson 	if (ret < 0)
10432154be65SJarod Wilson 		dev_err(dev, "Error: control msg send failed, rc %d\n", ret);
10442154be65SJarod Wilson 	else
1045dbea1880SAndrew Vincer 		ret = count;
10462154be65SJarod Wilson 
10472154be65SJarod Wilson out:
10482154be65SJarod Wilson 	kfree(sample_lens);
10492154be65SJarod Wilson 	kfree(buffer);
10502154be65SJarod Wilson 	kfree(sigdata);
10512154be65SJarod Wilson 
10522154be65SJarod Wilson 	rr3->transmitting = false;
1053dbea1880SAndrew Vincer 	/* rr3 re-enables rc detector because it was enabled before */
1054dbea1880SAndrew Vincer 	rr3->det_enabled = true;
10552154be65SJarod Wilson 
10562154be65SJarod Wilson 	return ret;
10572154be65SJarod Wilson }
10582154be65SJarod Wilson 
10592154be65SJarod Wilson static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3)
10602154be65SJarod Wilson {
10612154be65SJarod Wilson 	struct device *dev = rr3->dev;
10622154be65SJarod Wilson 	struct rc_dev *rc;
10632154be65SJarod Wilson 	int ret = -ENODEV;
10642154be65SJarod Wilson 	u16 prod = le16_to_cpu(rr3->udev->descriptor.idProduct);
10652154be65SJarod Wilson 
10662154be65SJarod Wilson 	rc = rc_allocate_device();
10672154be65SJarod Wilson 	if (!rc) {
10682154be65SJarod Wilson 		dev_err(dev, "remote input dev allocation failed\n");
10692154be65SJarod Wilson 		goto out;
10702154be65SJarod Wilson 	}
10712154be65SJarod Wilson 
10722154be65SJarod Wilson 	snprintf(rr3->name, sizeof(rr3->name), "RedRat3%s "
10732154be65SJarod Wilson 		 "Infrared Remote Transceiver (%04x:%04x)",
10742154be65SJarod Wilson 		 prod == USB_RR3IIUSB_PRODUCT_ID ? "-II" : "",
10752154be65SJarod Wilson 		 le16_to_cpu(rr3->udev->descriptor.idVendor), prod);
10762154be65SJarod Wilson 
10772154be65SJarod Wilson 	usb_make_path(rr3->udev, rr3->phys, sizeof(rr3->phys));
10782154be65SJarod Wilson 
10792154be65SJarod Wilson 	rc->input_name = rr3->name;
10802154be65SJarod Wilson 	rc->input_phys = rr3->phys;
10812154be65SJarod Wilson 	usb_to_input_id(rr3->udev, &rc->input_id);
10822154be65SJarod Wilson 	rc->dev.parent = dev;
10832154be65SJarod Wilson 	rc->priv = rr3;
10842154be65SJarod Wilson 	rc->driver_type = RC_DRIVER_IR_RAW;
10852154be65SJarod Wilson 	rc->allowed_protos = RC_TYPE_ALL;
1086c53f9f00SJarod Wilson 	rc->timeout = US_TO_NS(2750);
10872154be65SJarod Wilson 	rc->tx_ir = redrat3_transmit_ir;
10882154be65SJarod Wilson 	rc->s_tx_carrier = redrat3_set_tx_carrier;
10892154be65SJarod Wilson 	rc->driver_name = DRIVER_NAME;
10902154be65SJarod Wilson 	rc->map_name = RC_MAP_HAUPPAUGE;
10912154be65SJarod Wilson 
10922154be65SJarod Wilson 	ret = rc_register_device(rc);
10932154be65SJarod Wilson 	if (ret < 0) {
10942154be65SJarod Wilson 		dev_err(dev, "remote dev registration failed\n");
10952154be65SJarod Wilson 		goto out;
10962154be65SJarod Wilson 	}
10972154be65SJarod Wilson 
10982154be65SJarod Wilson 	return rc;
10992154be65SJarod Wilson 
11002154be65SJarod Wilson out:
11012154be65SJarod Wilson 	rc_free_device(rc);
11022154be65SJarod Wilson 	return NULL;
11032154be65SJarod Wilson }
11042154be65SJarod Wilson 
11052154be65SJarod Wilson static int __devinit redrat3_dev_probe(struct usb_interface *intf,
11062154be65SJarod Wilson 				       const struct usb_device_id *id)
11072154be65SJarod Wilson {
11082154be65SJarod Wilson 	struct usb_device *udev = interface_to_usbdev(intf);
11092154be65SJarod Wilson 	struct device *dev = &intf->dev;
11102154be65SJarod Wilson 	struct usb_host_interface *uhi;
11112154be65SJarod Wilson 	struct redrat3_dev *rr3;
11122154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep;
11132154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_in = NULL;
11142154be65SJarod Wilson 	struct usb_endpoint_descriptor *ep_out = NULL;
11152154be65SJarod Wilson 	u8 addr, attrs;
11162154be65SJarod Wilson 	int pipe, i;
11172154be65SJarod Wilson 	int retval = -ENOMEM;
11182154be65SJarod Wilson 
11192154be65SJarod Wilson 	rr3_ftr(dev, "%s called\n", __func__);
11202154be65SJarod Wilson 
11212154be65SJarod Wilson 	uhi = intf->cur_altsetting;
11222154be65SJarod Wilson 
11232154be65SJarod Wilson 	/* find our bulk-in and bulk-out endpoints */
11242154be65SJarod Wilson 	for (i = 0; i < uhi->desc.bNumEndpoints; ++i) {
11252154be65SJarod Wilson 		ep = &uhi->endpoint[i].desc;
11262154be65SJarod Wilson 		addr = ep->bEndpointAddress;
11272154be65SJarod Wilson 		attrs = ep->bmAttributes;
11282154be65SJarod Wilson 
11292154be65SJarod Wilson 		if ((ep_in == NULL) &&
11302154be65SJarod Wilson 		    ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN) &&
11312154be65SJarod Wilson 		    ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
11322154be65SJarod Wilson 		     USB_ENDPOINT_XFER_BULK)) {
11332154be65SJarod Wilson 			rr3_dbg(dev, "found bulk-in endpoint at 0x%02x\n",
11342154be65SJarod Wilson 				ep->bEndpointAddress);
11352154be65SJarod Wilson 			/* data comes in on 0x82, 0x81 is for other data... */
11362154be65SJarod Wilson 			if (ep->bEndpointAddress == RR3_BULK_IN_EP_ADDR)
11372154be65SJarod Wilson 				ep_in = ep;
11382154be65SJarod Wilson 		}
11392154be65SJarod Wilson 
11402154be65SJarod Wilson 		if ((ep_out == NULL) &&
11412154be65SJarod Wilson 		    ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) &&
11422154be65SJarod Wilson 		    ((attrs & USB_ENDPOINT_XFERTYPE_MASK) ==
11432154be65SJarod Wilson 		     USB_ENDPOINT_XFER_BULK)) {
11442154be65SJarod Wilson 			rr3_dbg(dev, "found bulk-out endpoint at 0x%02x\n",
11452154be65SJarod Wilson 				ep->bEndpointAddress);
11462154be65SJarod Wilson 			ep_out = ep;
11472154be65SJarod Wilson 		}
11482154be65SJarod Wilson 	}
11492154be65SJarod Wilson 
11502154be65SJarod Wilson 	if (!ep_in || !ep_out) {
11512154be65SJarod Wilson 		dev_err(dev, "Couldn't find both in and out endpoints\n");
11522154be65SJarod Wilson 		retval = -ENODEV;
11532154be65SJarod Wilson 		goto no_endpoints;
11542154be65SJarod Wilson 	}
11552154be65SJarod Wilson 
11562154be65SJarod Wilson 	/* allocate memory for our device state and initialize it */
11572154be65SJarod Wilson 	rr3 = kzalloc(sizeof(*rr3), GFP_KERNEL);
11582154be65SJarod Wilson 	if (rr3 == NULL) {
11592154be65SJarod Wilson 		dev_err(dev, "Memory allocation failure\n");
11607eb75715SDan Carpenter 		goto no_endpoints;
11612154be65SJarod Wilson 	}
11622154be65SJarod Wilson 
11632154be65SJarod Wilson 	rr3->dev = &intf->dev;
11642154be65SJarod Wilson 
11652154be65SJarod Wilson 	/* set up bulk-in endpoint */
11662154be65SJarod Wilson 	rr3->read_urb = usb_alloc_urb(0, GFP_KERNEL);
11672154be65SJarod Wilson 	if (!rr3->read_urb) {
11682154be65SJarod Wilson 		dev_err(dev, "Read urb allocation failure\n");
11692154be65SJarod Wilson 		goto error;
11702154be65SJarod Wilson 	}
11712154be65SJarod Wilson 
11722154be65SJarod Wilson 	rr3->ep_in = ep_in;
11732154be65SJarod Wilson 	rr3->bulk_in_buf = usb_alloc_coherent(udev, ep_in->wMaxPacketSize,
11742154be65SJarod Wilson 					      GFP_ATOMIC, &rr3->dma_in);
11752154be65SJarod Wilson 	if (!rr3->bulk_in_buf) {
11762154be65SJarod Wilson 		dev_err(dev, "Read buffer allocation failure\n");
11772154be65SJarod Wilson 		goto error;
11782154be65SJarod Wilson 	}
11792154be65SJarod Wilson 
11802154be65SJarod Wilson 	pipe = usb_rcvbulkpipe(udev, ep_in->bEndpointAddress);
11812154be65SJarod Wilson 	usb_fill_bulk_urb(rr3->read_urb, udev, pipe,
11822154be65SJarod Wilson 			  rr3->bulk_in_buf, ep_in->wMaxPacketSize,
11832154be65SJarod Wilson 			  (usb_complete_t)redrat3_handle_async, rr3);
11842154be65SJarod Wilson 
11852154be65SJarod Wilson 	/* set up bulk-out endpoint*/
11862154be65SJarod Wilson 	rr3->write_urb = usb_alloc_urb(0, GFP_KERNEL);
11872154be65SJarod Wilson 	if (!rr3->write_urb) {
11882154be65SJarod Wilson 		dev_err(dev, "Write urb allocation failure\n");
11892154be65SJarod Wilson 		goto error;
11902154be65SJarod Wilson 	}
11912154be65SJarod Wilson 
11922154be65SJarod Wilson 	rr3->ep_out = ep_out;
11932154be65SJarod Wilson 	rr3->bulk_out_buf = usb_alloc_coherent(udev, ep_out->wMaxPacketSize,
11942154be65SJarod Wilson 					       GFP_ATOMIC, &rr3->dma_out);
11952154be65SJarod Wilson 	if (!rr3->bulk_out_buf) {
11962154be65SJarod Wilson 		dev_err(dev, "Write buffer allocation failure\n");
11972154be65SJarod Wilson 		goto error;
11982154be65SJarod Wilson 	}
11992154be65SJarod Wilson 
12002154be65SJarod Wilson 	pipe = usb_sndbulkpipe(udev, ep_out->bEndpointAddress);
12012154be65SJarod Wilson 	usb_fill_bulk_urb(rr3->write_urb, udev, pipe,
12022154be65SJarod Wilson 			  rr3->bulk_out_buf, ep_out->wMaxPacketSize,
12032154be65SJarod Wilson 			  (usb_complete_t)redrat3_write_bulk_callback, rr3);
12042154be65SJarod Wilson 
12052154be65SJarod Wilson 	mutex_init(&rr3->lock);
12062154be65SJarod Wilson 	rr3->udev = udev;
12072154be65SJarod Wilson 
12082154be65SJarod Wilson 	redrat3_reset(rr3);
12092154be65SJarod Wilson 	redrat3_get_firmware_rev(rr3);
12102154be65SJarod Wilson 
12112154be65SJarod Wilson 	/* might be all we need to do? */
12122154be65SJarod Wilson 	retval = redrat3_enable_detector(rr3);
12132154be65SJarod Wilson 	if (retval < 0)
12142154be65SJarod Wilson 		goto error;
12152154be65SJarod Wilson 
1216c53f9f00SJarod Wilson 	/* store current hardware timeout, in us, will use for kfifo resets */
1217c53f9f00SJarod Wilson 	rr3->hw_timeout = redrat3_get_timeout(rr3);
1218c53f9f00SJarod Wilson 
12192154be65SJarod Wilson 	/* default.. will get overridden by any sends with a freq defined */
12202154be65SJarod Wilson 	rr3->carrier = 38000;
12212154be65SJarod Wilson 
12222154be65SJarod Wilson 	rr3->rc = redrat3_init_rc_dev(rr3);
12236ea7cf76SPeter Senna Tschudin 	if (!rr3->rc) {
12246ea7cf76SPeter Senna Tschudin 		retval = -ENOMEM;
12252154be65SJarod Wilson 		goto error;
12266ea7cf76SPeter Senna Tschudin 	}
12272154be65SJarod Wilson 	setup_timer(&rr3->rx_timeout, redrat3_rx_timeout, (unsigned long)rr3);
12282154be65SJarod Wilson 
12292154be65SJarod Wilson 	/* we can register the device now, as it is ready */
12302154be65SJarod Wilson 	usb_set_intfdata(intf, rr3);
12312154be65SJarod Wilson 
12322154be65SJarod Wilson 	rr3_ftr(dev, "Exiting %s\n", __func__);
12332154be65SJarod Wilson 	return 0;
12342154be65SJarod Wilson 
12352154be65SJarod Wilson error:
12362154be65SJarod Wilson 	redrat3_delete(rr3, rr3->udev);
12372154be65SJarod Wilson 
12382154be65SJarod Wilson no_endpoints:
12392154be65SJarod Wilson 	dev_err(dev, "%s: retval = %x", __func__, retval);
12402154be65SJarod Wilson 
12412154be65SJarod Wilson 	return retval;
12422154be65SJarod Wilson }
12432154be65SJarod Wilson 
12442154be65SJarod Wilson static void __devexit redrat3_dev_disconnect(struct usb_interface *intf)
12452154be65SJarod Wilson {
12462154be65SJarod Wilson 	struct usb_device *udev = interface_to_usbdev(intf);
12472154be65SJarod Wilson 	struct redrat3_dev *rr3 = usb_get_intfdata(intf);
12482154be65SJarod Wilson 
12492154be65SJarod Wilson 	rr3_ftr(&intf->dev, "Entering %s\n", __func__);
12502154be65SJarod Wilson 
12512154be65SJarod Wilson 	if (!rr3)
12522154be65SJarod Wilson 		return;
12532154be65SJarod Wilson 
12542154be65SJarod Wilson 	redrat3_disable_detector(rr3);
12552154be65SJarod Wilson 
12562154be65SJarod Wilson 	usb_set_intfdata(intf, NULL);
12572154be65SJarod Wilson 	rc_unregister_device(rr3->rc);
1258c53f9f00SJarod Wilson 	del_timer_sync(&rr3->rx_timeout);
12592154be65SJarod Wilson 	redrat3_delete(rr3, udev);
12602154be65SJarod Wilson 
12612154be65SJarod Wilson 	rr3_ftr(&intf->dev, "RedRat3 IR Transceiver now disconnected\n");
12622154be65SJarod Wilson }
12632154be65SJarod Wilson 
12642154be65SJarod Wilson static int redrat3_dev_suspend(struct usb_interface *intf, pm_message_t message)
12652154be65SJarod Wilson {
12662154be65SJarod Wilson 	struct redrat3_dev *rr3 = usb_get_intfdata(intf);
12672154be65SJarod Wilson 	rr3_ftr(rr3->dev, "suspend\n");
12682154be65SJarod Wilson 	usb_kill_urb(rr3->read_urb);
12692154be65SJarod Wilson 	return 0;
12702154be65SJarod Wilson }
12712154be65SJarod Wilson 
12722154be65SJarod Wilson static int redrat3_dev_resume(struct usb_interface *intf)
12732154be65SJarod Wilson {
12742154be65SJarod Wilson 	struct redrat3_dev *rr3 = usb_get_intfdata(intf);
12752154be65SJarod Wilson 	rr3_ftr(rr3->dev, "resume\n");
12762154be65SJarod Wilson 	if (usb_submit_urb(rr3->read_urb, GFP_ATOMIC))
12772154be65SJarod Wilson 		return -EIO;
12782154be65SJarod Wilson 	return 0;
12792154be65SJarod Wilson }
12802154be65SJarod Wilson 
12812154be65SJarod Wilson static struct usb_driver redrat3_dev_driver = {
12822154be65SJarod Wilson 	.name		= DRIVER_NAME,
12832154be65SJarod Wilson 	.probe		= redrat3_dev_probe,
1284cd624c7bSArnd Bergmann 	.disconnect	= __devexit_p(redrat3_dev_disconnect),
12852154be65SJarod Wilson 	.suspend	= redrat3_dev_suspend,
12862154be65SJarod Wilson 	.resume		= redrat3_dev_resume,
12872154be65SJarod Wilson 	.reset_resume	= redrat3_dev_resume,
12882154be65SJarod Wilson 	.id_table	= redrat3_dev_table
12892154be65SJarod Wilson };
12902154be65SJarod Wilson 
1291ecb3b2b3SGreg Kroah-Hartman module_usb_driver(redrat3_dev_driver);
12922154be65SJarod Wilson 
12932154be65SJarod Wilson MODULE_DESCRIPTION(DRIVER_DESC);
12942154be65SJarod Wilson MODULE_AUTHOR(DRIVER_AUTHOR);
12952154be65SJarod Wilson MODULE_AUTHOR(DRIVER_AUTHOR2);
12962154be65SJarod Wilson MODULE_LICENSE("GPL");
12972154be65SJarod Wilson MODULE_DEVICE_TABLE(usb, redrat3_dev_table);
12982154be65SJarod Wilson 
12992154be65SJarod Wilson module_param(debug, int, S_IRUGO | S_IWUSR);
13002154be65SJarod Wilson MODULE_PARM_DESC(debug, "Enable module debug spew. 0 = no debugging (default) "
13012154be65SJarod Wilson 		 "0x1 = standard debug messages, 0x2 = function tracing debug. "
13022154be65SJarod Wilson 		 "Flag bits are addative (i.e., 0x3 for both debug types).");
1303