mceusb.c 41.6 KB
Newer Older
1 2 3
/*
 * Driver for USB Windows Media Center Ed. eHome Infrared Transceivers
 *
4
 * Copyright (c) 2010-2011, Jarod Wilson <jarod@redhat.com>
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * Based on the original lirc_mceusb and lirc_mceusb2 drivers, by Dan
 * Conti, Martin Blatter and Daniel Melander, the latter of which was
 * in turn also based on the lirc_atiusb driver by Paul Miller. The
 * two mce drivers were merged into one by Jarod Wilson, with transmit
 * support for the 1st-gen device added primarily by Patrick Calhoun,
 * with a bit of tweaks by Jarod. Debugging improvements and proper
 * support for what appears to be 3rd-gen hardware added by Jarod.
 * Initial port from lirc driver to ir-core drivery by Jarod, based
 * partially on a port to an earlier proposed IR infrastructure by
 * Jon Smirl, which included enhancements and simplifications to the
 * incoming IR buffer parsing routines.
 *
18 19 20 21 22
 * Updated in July of 2011 with the aid of Microsoft's official
 * remote/transceiver requirements and specification document, found at
 * download.microsoft.com, title
 * Windows-Media-Center-RC-IR-Collection-Green-Button-Specification-03-08-2011-V2.pdf
 *
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 */

#include <linux/device.h>
#include <linux/module.h>
#include <linux/slab.h>
43 44
#include <linux/usb.h>
#include <linux/usb/input.h>
45
#include <linux/pm_wakeup.h>
46
#include <media/rc-core.h>
47

48 49
#define DRIVER_VERSION	"1.92"
#define DRIVER_AUTHOR	"Jarod Wilson <jarod@redhat.com>"
50 51 52 53
#define DRIVER_DESC	"Windows Media Center Ed. eHome Infrared Transceiver " \
			"device driver"
#define DRIVER_NAME	"mceusb"

54 55 56
#define USB_BUFLEN		32 /* USB reception buffer length */
#define USB_CTRL_MSG_SZ		2  /* Size of usb ctrl msg on gen1 hw */
#define MCE_G1_INIT_MSGS	40 /* Init messages on gen1 hw to throw out */
57 58

/* MCE constants */
59 60 61 62 63 64 65 66 67 68 69 70
#define MCE_CMDBUF_SIZE		384  /* MCE Command buffer length */
#define MCE_TIME_UNIT		50   /* Approx 50us resolution */
#define MCE_CODE_LENGTH		5    /* Normal length of packet (with header) */
#define MCE_PACKET_SIZE		4    /* Normal length of packet (without header) */
#define MCE_IRDATA_HEADER	0x84 /* Actual header format is 0x80 + num_bytes */
#define MCE_IRDATA_TRAILER	0x80 /* End of IR data */
#define MCE_MAX_CHANNELS	2    /* Two transmitters, hardware dependent? */
#define MCE_DEFAULT_TX_MASK	0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
#define MCE_PULSE_BIT		0x80 /* Pulse bit, MSB set == PULSE else SPACE */
#define MCE_PULSE_MASK		0x7f /* Pulse mask */
#define MCE_MAX_PULSE_LENGTH	0x7f /* Longest transmittable pulse symbol */

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
/*
 * The interface between the host and the IR hardware is command-response
 * based. All commands and responses have a consistent format, where a lead
 * byte always identifies the type of data following it. The lead byte has
 * a port value in the 3 highest bits and a length value in the 5 lowest
 * bits.
 *
 * The length field is overloaded, with a value of 11111 indicating that the
 * following byte is a command or response code, and the length of the entire
 * message is determined by the code. If the length field is not 11111, then
 * it specifies the number of bytes of port data that follow.
 */
#define MCE_CMD			0x1f
#define MCE_PORT_IR		0x4	/* (0x4 << 5) | MCE_CMD = 0x9f */
#define MCE_PORT_SYS		0x7	/* (0x7 << 5) | MCE_CMD = 0xff */
#define MCE_PORT_SER		0x6	/* 0xc0 thru 0xdf flush & 0x1f bytes */
#define MCE_PORT_MASK	0xe0	/* Mask out command bits */

/* Command port headers */
#define MCE_CMD_PORT_IR		0x9f	/* IR-related cmd/rsp */
#define MCE_CMD_PORT_SYS	0xff	/* System (non-IR) device cmd/rsp */

/* Commands that set device state  (2-4 bytes in length) */
#define MCE_CMD_RESET		0xfe	/* Reset device, 2 bytes */
#define MCE_CMD_RESUME		0xaa	/* Resume device after error, 2 bytes */
#define MCE_CMD_SETIRCFS	0x06	/* Set tx carrier, 4 bytes */
#define MCE_CMD_SETIRTIMEOUT	0x0c	/* Set timeout, 4 bytes */
#define MCE_CMD_SETIRTXPORTS	0x08	/* Set tx ports, 3 bytes */
#define MCE_CMD_SETIRRXPORTEN	0x14	/* Set rx ports, 3 bytes */
#define MCE_CMD_FLASHLED	0x23	/* Flash receiver LED, 2 bytes */

/* Commands that query device state (all 2 bytes, unless noted) */
#define MCE_CMD_GETIRCFS	0x07	/* Get carrier */
#define MCE_CMD_GETIRTIMEOUT	0x0d	/* Get timeout */
#define MCE_CMD_GETIRTXPORTS	0x13	/* Get tx ports */
#define MCE_CMD_GETIRRXPORTEN	0x15	/* Get rx ports */
#define MCE_CMD_GETPORTSTATUS	0x11	/* Get tx port status, 3 bytes */
#define MCE_CMD_GETIRNUMPORTS	0x16	/* Get number of ports */
#define MCE_CMD_GETWAKESOURCE	0x17	/* Get wake source */
#define MCE_CMD_GETEMVER	0x22	/* Get emulator interface version */
#define MCE_CMD_GETDEVDETAILS	0x21	/* Get device details (em ver2 only) */
#define MCE_CMD_GETWAKESUPPORT	0x20	/* Get wake details (em ver2 only) */
#define MCE_CMD_GETWAKEVERSION	0x18	/* Get wake pattern (em ver2 only) */

/* Misc commands */
#define MCE_CMD_NOP		0xff	/* No operation */

/* Responses to commands (non-error cases) */
#define MCE_RSP_EQIRCFS		0x06	/* tx carrier, 4 bytes */
#define MCE_RSP_EQIRTIMEOUT	0x0c	/* rx timeout, 4 bytes */
#define MCE_RSP_GETWAKESOURCE	0x17	/* wake source, 3 bytes */
#define MCE_RSP_EQIRTXPORTS	0x08	/* tx port mask, 3 bytes */
#define MCE_RSP_EQIRRXPORTEN	0x14	/* rx port mask, 3 bytes */
#define MCE_RSP_GETPORTSTATUS	0x11	/* tx port status, 7 bytes */
#define MCE_RSP_EQIRRXCFCNT	0x15	/* rx carrier count, 4 bytes */
#define MCE_RSP_EQIRNUMPORTS	0x16	/* number of ports, 4 bytes */
#define MCE_RSP_EQWAKESUPPORT	0x20	/* wake capabilities, 3 bytes */
#define MCE_RSP_EQWAKEVERSION	0x18	/* wake pattern details, 6 bytes */
#define MCE_RSP_EQDEVDETAILS	0x21	/* device capabilities, 3 bytes */
#define MCE_RSP_EQEMVER		0x22	/* emulator interface ver, 3 bytes */
#define MCE_RSP_FLASHLED	0x23	/* success flashing LED, 2 bytes */

/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
#define MCE_RSP_CMD_ILLEGAL	0xfe	/* illegal command for port, 2 bytes */
#define MCE_RSP_TX_TIMEOUT	0x81	/* tx timed out, 2 bytes */

/* Misc commands/responses not defined in the MCE remote/transceiver spec */
138
#define MCE_CMD_SIG_END		0x01	/* End of signal */
139 140 141 142 143 144 145 146 147 148
#define MCE_CMD_PING		0x03	/* Ping device */
#define MCE_CMD_UNKNOWN		0x04	/* Unknown */
#define MCE_CMD_UNKNOWN2	0x05	/* Unknown */
#define MCE_CMD_UNKNOWN3	0x09	/* Unknown */
#define MCE_CMD_UNKNOWN4	0x0a	/* Unknown */
#define MCE_CMD_G_REVISION	0x0b	/* Get hw/sw revision */
#define MCE_CMD_UNKNOWN5	0x0e	/* Unknown */
#define MCE_CMD_UNKNOWN6	0x0f	/* Unknown */
#define MCE_CMD_UNKNOWN8	0x19	/* Unknown */
#define MCE_CMD_UNKNOWN9	0x1b	/* Unknown */
149
#define MCE_CMD_NULL		0x00	/* These show up various places... */
150

151 152 153 154
/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
 * then we're looking at a raw IR data sample */
#define MCE_COMMAND_IRDATA	0x80
#define MCE_PACKET_LENGTH_MASK	0x1f /* Packet length mask */
155 156 157

/* module parameters */
#ifdef CONFIG_USB_DEBUG
158
static bool debug = 1;
159
#else
160
static bool debug;
161 162
#endif

163 164 165 166 167 168
#define mce_dbg(dev, fmt, ...)					\
	do {							\
		if (debug)					\
			dev_info(dev, fmt, ## __VA_ARGS__);	\
	} while (0)

169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
/* general constants */
#define SEND_FLAG_IN_PROGRESS	1
#define SEND_FLAG_COMPLETE	2
#define RECV_FLAG_IN_PROGRESS	3
#define RECV_FLAG_COMPLETE	4

#define MCEUSB_RX		1
#define MCEUSB_TX		2

#define VENDOR_PHILIPS		0x0471
#define VENDOR_SMK		0x0609
#define VENDOR_TATUNG		0x1460
#define VENDOR_GATEWAY		0x107b
#define VENDOR_SHUTTLE		0x1308
#define VENDOR_SHUTTLE2		0x051c
#define VENDOR_MITSUMI		0x03ee
#define VENDOR_TOPSEED		0x1784
#define VENDOR_RICAVISION	0x179d
#define VENDOR_ITRON		0x195d
#define VENDOR_FIC		0x1509
#define VENDOR_LG		0x043e
#define VENDOR_MICROSOFT	0x045e
#define VENDOR_FORMOSA		0x147a
#define VENDOR_FINTEK		0x1934
#define VENDOR_PINNACLE		0x2304
#define VENDOR_ECS		0x1019
#define VENDOR_WISTRON		0x0fb8
#define VENDOR_COMPRO		0x185b
#define VENDOR_NORTHSTAR	0x04eb
#define VENDOR_REALTEK		0x0bda
#define VENDOR_TIVO		0x105a
200
#define VENDOR_CONEXANT		0x0572
201
#define VENDOR_TWISTEDMELON	0x2596
202
#define VENDOR_HAUPPAUGE	0x2040
203

204 205 206 207 208 209
enum mceusb_model_type {
	MCE_GEN2 = 0,		/* Most boards */
	MCE_GEN1,
	MCE_GEN3,
	MCE_GEN2_TX_INV,
	POLARIS_EVK,
210
	CX_HYBRID_TV,
211
	MULTIFUNCTION,
212
	TIVO_KIT,
213
	MCE_GEN2_NO_TX,
214
	HAUPPAUGE_CX_HYBRID_TV,
215 216 217 218 219 220
};

struct mceusb_model {
	u32 mce_gen1:1;
	u32 mce_gen2:1;
	u32 mce_gen3:1;
221
	u32 tx_mask_normal:1;
222
	u32 no_tx:1;
223

224 225
	int ir_intfnum;

226
	const char *rc_map;	/* Allow specify a per-board map */
227
	const char *name;	/* per-board name */
228 229 230 231 232
};

static const struct mceusb_model mceusb_model[] = {
	[MCE_GEN1] = {
		.mce_gen1 = 1,
233
		.tx_mask_normal = 1,
234 235 236 237
	},
	[MCE_GEN2] = {
		.mce_gen2 = 1,
	},
238 239 240 241
	[MCE_GEN2_NO_TX] = {
		.mce_gen2 = 1,
		.no_tx = 1,
	},
242 243
	[MCE_GEN2_TX_INV] = {
		.mce_gen2 = 1,
244
		.tx_mask_normal = 1,
245 246 247
	},
	[MCE_GEN3] = {
		.mce_gen3 = 1,
248
		.tx_mask_normal = 1,
249 250
	},
	[POLARIS_EVK] = {
251 252 253 254 255
		/*
		 * In fact, the EVK is shipped without
		 * remotes, but we should have something handy,
		 * to allow testing it
		 */
256
		.rc_map = RC_MAP_HAUPPAUGE,
257 258 259 260 261
		.name = "Conexant Hybrid TV (cx231xx) MCE IR",
	},
	[CX_HYBRID_TV] = {
		.no_tx = 1, /* tx isn't wired up at all */
		.name = "Conexant Hybrid TV (cx231xx) MCE IR",
262
	},
263 264 265 266 267
	[HAUPPAUGE_CX_HYBRID_TV] = {
		.rc_map = RC_MAP_HAUPPAUGE,
		.no_tx = 1, /* eeprom says it has no tx */
		.name = "Conexant Hybrid TV (cx231xx) MCE IR no TX",
	},
268 269 270 271
	[MULTIFUNCTION] = {
		.mce_gen2 = 1,
		.ir_intfnum = 2,
	},
272 273 274 275
	[TIVO_KIT] = {
		.mce_gen2 = 1,
		.rc_map = RC_MAP_TIVO,
	},
276 277
};

278 279
static struct usb_device_id mceusb_dev_table[] = {
	/* Original Microsoft MCE IR Transceiver (often HP-branded) */
280 281
	{ USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
	  .driver_info = MCE_GEN1 },
282 283 284
	/* Philips Infrared Transceiver - Sahara branded */
	{ USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
	/* Philips Infrared Transceiver - HP branded */
285 286
	{ USB_DEVICE(VENDOR_PHILIPS, 0x060c),
	  .driver_info = MCE_GEN2_TX_INV },
287 288 289 290 291 292 293 294
	/* Philips SRM5100 */
	{ USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
	/* Philips Infrared Transceiver - Omaura */
	{ USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
	/* Philips Infrared Transceiver - Spinel plus */
	{ USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
	/* Philips eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
295 296 297 298
	/* Philips/Spinel plus IR transceiver for ASUS */
	{ USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
	/* Philips/Spinel plus IR transceiver for ASUS */
	{ USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
299
	/* Philips IR transceiver (Dell branded) */
300 301
	{ USB_DEVICE(VENDOR_PHILIPS, 0x2093),
	  .driver_info = MCE_GEN2_TX_INV },
302 303 304
	/* Realtek MCE IR Receiver and card reader */
	{ USB_DEVICE(VENDOR_REALTEK, 0x0161),
	  .driver_info = MULTIFUNCTION },
305
	/* SMK/Toshiba G83C0004D410 */
306 307
	{ USB_DEVICE(VENDOR_SMK, 0x031d),
	  .driver_info = MCE_GEN2_TX_INV },
308
	/* SMK eHome Infrared Transceiver (Sony VAIO) */
309 310
	{ USB_DEVICE(VENDOR_SMK, 0x0322),
	  .driver_info = MCE_GEN2_TX_INV },
311
	/* bundled with Hauppauge PVR-150 */
312 313
	{ USB_DEVICE(VENDOR_SMK, 0x0334),
	  .driver_info = MCE_GEN2_TX_INV },
314 315
	/* SMK eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_SMK, 0x0338) },
316 317 318
	/* SMK/I-O Data GV-MC7/RCKIT Receiver */
	{ USB_DEVICE(VENDOR_SMK, 0x0353),
	  .driver_info = MCE_GEN2_NO_TX },
319 320 321 322 323 324 325 326 327 328 329
	/* Tatung eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_TATUNG, 0x9150) },
	/* Shuttle eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
	/* Shuttle eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
	/* Gateway eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
	/* Mitsumi */
	{ USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
	/* Topseed eHome Infrared Transceiver */
330 331
	{ USB_DEVICE(VENDOR_TOPSEED, 0x0001),
	  .driver_info = MCE_GEN2_TX_INV },
332
	/* Topseed HP eHome Infrared Transceiver */
333 334
	{ USB_DEVICE(VENDOR_TOPSEED, 0x0006),
	  .driver_info = MCE_GEN2_TX_INV },
335
	/* Topseed eHome Infrared Transceiver */
336 337
	{ USB_DEVICE(VENDOR_TOPSEED, 0x0007),
	  .driver_info = MCE_GEN2_TX_INV },
338
	/* Topseed eHome Infrared Transceiver */
339 340
	{ USB_DEVICE(VENDOR_TOPSEED, 0x0008),
	  .driver_info = MCE_GEN3 },
341
	/* Topseed eHome Infrared Transceiver */
342 343
	{ USB_DEVICE(VENDOR_TOPSEED, 0x000a),
	  .driver_info = MCE_GEN2_TX_INV },
344
	/* Topseed eHome Infrared Transceiver */
345
	{ USB_DEVICE(VENDOR_TOPSEED, 0x0011),
346
	  .driver_info = MCE_GEN3 },
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
	/* Ricavision internal Infrared Transceiver */
	{ USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
	/* Itron ione Libra Q-11 */
	{ USB_DEVICE(VENDOR_ITRON, 0x7002) },
	/* FIC eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_FIC, 0x9242) },
	/* LG eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_LG, 0x9803) },
	/* Microsoft MCE Infrared Transceiver */
	{ USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
	/* Formosa eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
	/* Formosa21 / eHome Infrared Receiver */
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
	/* Formosa aim / Trust MCE Infrared Receiver */
362 363
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe017),
	  .driver_info = MCE_GEN2_NO_TX },
364 365 366 367 368 369 370 371
	/* Formosa Industrial Computing / Beanbag Emulation Device */
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
	/* Formosa21 / eHome Infrared Receiver */
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
	/* Formosa Industrial Computing AIM IR605/A */
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
	/* Formosa Industrial Computing */
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
372 373
	/* Formosa Industrial Computing */
	{ USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
374
	/* Fintek eHome Infrared Transceiver (HP branded) */
375 376
	{ USB_DEVICE(VENDOR_FINTEK, 0x5168),
	  .driver_info = MCE_GEN2_TX_INV },
377 378 379 380 381
	/* Fintek eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_FINTEK, 0x0602) },
	/* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
	{ USB_DEVICE(VENDOR_FINTEK, 0x0702) },
	/* Pinnacle Remote Kit */
382 383
	{ USB_DEVICE(VENDOR_PINNACLE, 0x0225),
	  .driver_info = MCE_GEN3 },
384 385 386 387 388 389 390 391 392 393 394
	/* Elitegroup Computer Systems IR */
	{ USB_DEVICE(VENDOR_ECS, 0x0f38) },
	/* Wistron Corp. eHome Infrared Receiver */
	{ USB_DEVICE(VENDOR_WISTRON, 0x0002) },
	/* Compro K100 */
	{ USB_DEVICE(VENDOR_COMPRO, 0x3020) },
	/* Compro K100 v2 */
	{ USB_DEVICE(VENDOR_COMPRO, 0x3082) },
	/* Northstar Systems, Inc. eHome Infrared Transceiver */
	{ USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
	/* TiVo PC IR Receiver */
395 396
	{ USB_DEVICE(VENDOR_TIVO, 0x2000),
	  .driver_info = TIVO_KIT },
397
	/* Conexant Hybrid TV "Shelby" Polaris SDK */
398 399
	{ USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
	  .driver_info = POLARIS_EVK },
400 401 402
	/* Conexant Hybrid TV RDU253S Polaris */
	{ USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
	  .driver_info = CX_HYBRID_TV },
403 404 405 406 407 408
	/* Twisted Melon Inc. - Manta Mini Receiver */
	{ USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
	/* Twisted Melon Inc. - Manta Pico Receiver */
	{ USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
	/* Twisted Melon Inc. - Manta Transceiver */
	{ USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
409 410 411
	/* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
	{ USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
	  .driver_info = HAUPPAUGE_CX_HYBRID_TV },
412 413 414 415 416 417 418
	/* Terminating entry */
	{ }
};

/* data structure for each usb transceiver */
struct mceusb_dev {
	/* ir-core bits */
419
	struct rc_dev *rc;
420 421 422 423

	/* optional features we can enable */
	bool carrier_report_enabled;
	bool learning_enabled;
424 425 426 427 428 429 430 431 432 433 434 435

	/* core device bits */
	struct device *dev;

	/* usb */
	struct usb_device *usbdev;
	struct urb *urb_in;
	struct usb_endpoint_descriptor *usb_ep_out;

	/* buffers and dma */
	unsigned char *buf_in;
	unsigned int len_in;
436
	dma_addr_t dma_in;
437 438 439 440 441 442 443 444

	enum {
		CMD_HEADER = 0,
		SUBCMD,
		CMD_DATA,
		PARSE_IRDATA,
	} parser_state;

445
	u8 cmd, rem;		/* Remaining IR data bytes in packet */
446 447 448

	struct {
		u32 connected:1;
449
		u32 tx_mask_normal:1;
450
		u32 microsoft_gen1:1;
451
		u32 no_tx:1;
452 453
	} flags;

454
	/* transmit support */
455
	int send_flags;
456 457
	u32 carrier;
	unsigned char tx_mask;
458 459 460

	char name[128];
	char phys[64];
461
	enum mceusb_model_type model;
462 463

	bool need_reset;	/* flag to issue a device resume cmd */
464
	u8 emver;		/* emulator interface version */
465 466 467 468
	u8 num_txports;		/* number of transmit ports */
	u8 num_rxports;		/* number of receive sensors */
	u8 txports_cabled;	/* bitmask of transmitters with cable */
	u8 rxports_active;	/* bitmask of active receive sensors */
469 470
};

471 472 473 474
/* MCE Device Command Strings, generally a port and command pair */
static char DEVICE_RESUME[]	= {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
				   MCE_CMD_RESUME};
static char GET_REVISION[]	= {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
475
static char GET_EMVER[]		= {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
476
static char GET_WAKEVERSION[]	= {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
477
static char FLASH_LED[]		= {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED};
478 479 480
static char GET_UNKNOWN2[]	= {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
static char GET_CARRIER_FREQ[]	= {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
static char GET_RX_TIMEOUT[]	= {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
481
static char GET_NUM_PORTS[]	= {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
482 483
static char GET_TX_BITMASK[]	= {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
static char GET_RX_SENSOR[]	= {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
484 485
/* sub in desired values in lower byte or bytes for full command */
/* FIXME: make use of these for transmit.
486 487 488 489 490 491 492
static char SET_CARRIER_FREQ[]	= {MCE_CMD_PORT_IR,
				   MCE_CMD_SETIRCFS, 0x00, 0x00};
static char SET_TX_BITMASK[]	= {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
static char SET_RX_TIMEOUT[]	= {MCE_CMD_PORT_IR,
				   MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
static char SET_RX_SENSOR[]	= {MCE_CMD_PORT_IR,
				   MCE_RSP_EQIRRXPORTEN, 0x00};
493 494
*/

495
static int mceusb_cmd_datasize(u8 cmd, u8 subcmd)
496 497 498 499
{
	int datasize = 0;

	switch (cmd) {
500 501
	case MCE_CMD_NULL:
		if (subcmd == MCE_CMD_PORT_SYS)
502 503
			datasize = 1;
		break;
504
	case MCE_CMD_PORT_SYS:
505
		switch (subcmd) {
506 507 508
		case MCE_RSP_GETPORTSTATUS:
			datasize = 5;
			break;
509 510 511
		case MCE_RSP_EQWAKEVERSION:
			datasize = 4;
			break;
512
		case MCE_CMD_G_REVISION:
513 514
			datasize = 2;
			break;
515
		case MCE_RSP_EQWAKESUPPORT:
516 517 518
		case MCE_RSP_GETWAKESOURCE:
		case MCE_RSP_EQDEVDETAILS:
		case MCE_RSP_EQEMVER:
519 520
			datasize = 1;
			break;
521
		}
522
	case MCE_CMD_PORT_IR:
523
		switch (subcmd) {
524
		case MCE_CMD_UNKNOWN:
525 526 527
		case MCE_RSP_EQIRCFS:
		case MCE_RSP_EQIRTIMEOUT:
		case MCE_RSP_EQIRRXCFCNT:
528
		case MCE_RSP_EQIRNUMPORTS:
529 530
			datasize = 2;
			break;
531
		case MCE_CMD_SIG_END:
532 533
		case MCE_RSP_EQIRTXPORTS:
		case MCE_RSP_EQIRRXPORTEN:
534 535 536 537 538 539 540
			datasize = 1;
			break;
		}
	}
	return datasize;
}

541
static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
542
				 int offset, int len, bool out)
543 544 545
{
	char codes[USB_BUFLEN * 3 + 1];
	char inout[9];
546
	u8 cmd, subcmd, data1, data2, data3, data4;
547
	struct device *dev = ir->dev;
548
	int i, start, skip = 0;
549
	u32 carrier, period;
550 551 552

	if (!debug)
		return;
553

554
	/* skip meaningless 0xb1 0x60 header bytes on orig receiver */
555
	if (ir->flags.microsoft_gen1 && !out && !offset)
556
		skip = 2;
557

558
	if (len <= skip)
559 560 561
		return;

	for (i = 0; i < len && i < USB_BUFLEN; i++)
562
		snprintf(codes + i * 3, 4, "%02x ", buf[i + offset] & 0xff);
563

564
	dev_info(dev, "%sx data: %s(length=%d)\n",
565 566 567 568 569 570 571
		 (out ? "t" : "r"), codes, len);

	if (out)
		strcpy(inout, "Request\0");
	else
		strcpy(inout, "Got\0");

572 573 574 575 576
	start  = offset + skip;
	cmd    = buf[start] & 0xff;
	subcmd = buf[start + 1] & 0xff;
	data1  = buf[start + 2] & 0xff;
	data2  = buf[start + 3] & 0xff;
577 578
	data3  = buf[start + 4] & 0xff;
	data4  = buf[start + 5] & 0xff;
579 580

	switch (cmd) {
581
	case MCE_CMD_NULL:
582 583
		if (subcmd == MCE_CMD_NULL)
			break;
584 585 586
		if ((subcmd == MCE_CMD_PORT_SYS) &&
		    (data1 == MCE_CMD_RESUME))
			dev_info(dev, "Device resume requested\n");
587 588 589 590
		else
			dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
				 cmd, subcmd);
		break;
591
	case MCE_CMD_PORT_SYS:
592
		switch (subcmd) {
593 594 595 596 597
		case MCE_RSP_EQEMVER:
			if (!out)
				dev_info(dev, "Emulator interface version %x\n",
					 data1);
			break;
598
		case MCE_CMD_G_REVISION:
599 600 601 602 603
			if (len == 2)
				dev_info(dev, "Get hw/sw rev?\n");
			else
				dev_info(dev, "hw/sw rev 0x%02x 0x%02x "
					 "0x%02x 0x%02x\n", data1, data2,
604
					 buf[start + 4], buf[start + 5]);
605
			break;
606 607 608 609 610 611 612 613 614 615 616 617
		case MCE_CMD_RESUME:
			dev_info(dev, "Device resume requested\n");
			break;
		case MCE_RSP_CMD_ILLEGAL:
			dev_info(dev, "Illegal PORT_SYS command\n");
			break;
		case MCE_RSP_EQWAKEVERSION:
			if (!out)
				dev_info(dev, "Wake version, proto: 0x%02x, "
					 "payload: 0x%02x, address: 0x%02x, "
					 "version: 0x%02x\n",
					 data1, data2, data3, data4);
618
			break;
619 620 621 622 623
		case MCE_RSP_GETPORTSTATUS:
			if (!out)
				/* We use data1 + 1 here, to match hw labels */
				dev_info(dev, "TX port %d: blaster is%s connected\n",
					 data1 + 1, data4 ? " not" : "");
624
			break;
625 626 627
		case MCE_CMD_FLASHLED:
			dev_info(dev, "Attempting to flash LED\n");
			break;
628 629 630 631 632 633
		default:
			dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
				 cmd, subcmd);
			break;
		}
		break;
634
	case MCE_CMD_PORT_IR:
635
		switch (subcmd) {
636 637 638
		case MCE_CMD_SIG_END:
			dev_info(dev, "End of signal\n");
			break;
639
		case MCE_CMD_PING:
640 641
			dev_info(dev, "Ping\n");
			break;
642
		case MCE_CMD_UNKNOWN:
643 644 645
			dev_info(dev, "Resp to 9f 05 of 0x%02x 0x%02x\n",
				 data1, data2);
			break;
646 647
		case MCE_RSP_EQIRCFS:
			period = DIV_ROUND_CLOSEST(
648
					(1U << data1 * 2) * (data2 + 1), 10);
649 650 651 652 653
			if (!period)
				break;
			carrier = (1000 * 1000) / period;
			dev_info(dev, "%s carrier of %u Hz (period %uus)\n",
				 inout, carrier, period);
654
			break;
655
		case MCE_CMD_GETIRCFS:
656 657
			dev_info(dev, "Get carrier mode and freq\n");
			break;
658
		case MCE_RSP_EQIRTXPORTS:
659 660 661
			dev_info(dev, "%s transmit blaster mask of 0x%02x\n",
				 inout, data1);
			break;
662
		case MCE_RSP_EQIRTIMEOUT:
663
			/* value is in units of 50us, so x*50/1000 ms */
664
			period = ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000;
665
			dev_info(dev, "%s receive timeout of %d ms\n",
666
				 inout, period);
667
			break;
668
		case MCE_CMD_GETIRTIMEOUT:
669 670
			dev_info(dev, "Get receive timeout\n");
			break;
671
		case MCE_CMD_GETIRTXPORTS:
672 673
			dev_info(dev, "Get transmit blaster mask\n");
			break;
674
		case MCE_RSP_EQIRRXPORTEN:
675 676 677
			dev_info(dev, "%s %s-range receive sensor in use\n",
				 inout, data1 == 0x02 ? "short" : "long");
			break;
678 679
		case MCE_CMD_GETIRRXPORTEN:
		/* aka MCE_RSP_EQIRRXCFCNT */
680
			if (out)
681
				dev_info(dev, "Get receive sensor\n");
682 683
			else if (ir->learning_enabled)
				dev_info(dev, "RX pulse count: %d\n",
684 685
					 ((data1 << 8) | data2));
			break;
686 687 688 689 690 691 692 693
		case MCE_RSP_EQIRNUMPORTS:
			if (out)
				break;
			dev_info(dev, "Num TX ports: %x, num RX ports: %x\n",
				 data1, data2);
			break;
		case MCE_RSP_CMD_ILLEGAL:
			dev_info(dev, "Illegal PORT_IR command\n");
694 695 696 697 698 699 700 701 702 703
			break;
		default:
			dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
				 cmd, subcmd);
			break;
		}
		break;
	default:
		break;
	}
704 705 706

	if (cmd == MCE_IRDATA_TRAILER)
		dev_info(dev, "End of raw IR data\n");
707 708
	else if ((cmd != MCE_CMD_PORT_IR) &&
		 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
709
		dev_info(dev, "Raw IR data, %d pulse/space samples\n", ir->rem);
710 711
}

S
Sean Young 已提交
712
static void mce_async_callback(struct urb *urb)
713 714 715 716 717 718 719 720 721 722 723
{
	struct mceusb_dev *ir;
	int len;

	if (!urb)
		return;

	ir = urb->context;
	if (ir) {
		len = urb->actual_length;

724
		mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true);
725 726
	}

727 728 729
	/* the transfer buffer and urb were allocated in mce_request_packet */
	kfree(urb->transfer_buffer);
	usb_free_urb(urb);
730 731 732
}

/* request incoming or send outgoing usb packet - used to initialize remote */
733 734
static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
			       int size, int urb_type)
735
{
736
	int res, pipe;
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
	struct urb *async_urb;
	struct device *dev = ir->dev;
	unsigned char *async_buf;

	if (urb_type == MCEUSB_TX) {
		async_urb = usb_alloc_urb(0, GFP_KERNEL);
		if (unlikely(!async_urb)) {
			dev_err(dev, "Error, couldn't allocate urb!\n");
			return;
		}

		async_buf = kzalloc(size, GFP_KERNEL);
		if (!async_buf) {
			dev_err(dev, "Error, couldn't allocate buf!\n");
			usb_free_urb(async_urb);
			return;
		}

		/* outbound data */
756 757 758
		pipe = usb_sndintpipe(ir->usbdev,
				      ir->usb_ep_out->bEndpointAddress);
		usb_fill_int_urb(async_urb, ir->usbdev, pipe,
S
Sean Young 已提交
759
			async_buf, size, mce_async_callback,
760
			ir, ir->usb_ep_out->bInterval);
761 762 763 764 765 766 767 768 769 770 771 772
		memcpy(async_buf, data, size);

	} else if (urb_type == MCEUSB_RX) {
		/* standard request */
		async_urb = ir->urb_in;
		ir->send_flags = RECV_FLAG_IN_PROGRESS;

	} else {
		dev_err(dev, "Error! Unknown urb type %d\n", urb_type);
		return;
	}

773
	mce_dbg(dev, "receive request called (size=%#x)\n", size);
774 775 776 777 778 779

	async_urb->transfer_buffer_length = size;
	async_urb->dev = ir->usbdev;

	res = usb_submit_urb(async_urb, GFP_ATOMIC);
	if (res) {
780
		mce_dbg(dev, "receive request FAILED! (res=%d)\n", res);
781 782
		return;
	}
783
	mce_dbg(dev, "receive request complete (res=%d)\n", res);
784 785 786 787
}

static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
{
788 789 790 791 792 793 794 795
	int rsize = sizeof(DEVICE_RESUME);

	if (ir->need_reset) {
		ir->need_reset = false;
		mce_request_packet(ir, DEVICE_RESUME, rsize, MCEUSB_TX);
		msleep(10);
	}

796
	mce_request_packet(ir, data, size, MCEUSB_TX);
797
	msleep(10);
798 799
}

800
static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)
801
{
802
	mce_request_packet(ir, NULL, size, MCEUSB_RX);
803 804
}

805
/* Send data out the IR blaster port(s) */
806
static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
807
{
808
	struct mceusb_dev *ir = dev->priv;
809
	int i, length, ret = 0;
810
	int cmdcount = 0;
811
	unsigned char cmdbuf[MCE_CMDBUF_SIZE];
812 813

	/* MCE tx init header */
814 815
	cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
	cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
816 817
	cmdbuf[cmdcount++] = ir->tx_mask;

818 819 820 821
	/* Send the set TX ports command */
	mce_async_out(ir, cmdbuf, cmdcount);
	cmdcount = 0;

822 823 824 825 826 827 828 829
	/* Generate mce packet data */
	for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
		txbuf[i] = txbuf[i] / MCE_TIME_UNIT;

		do { /* loop to support long pulses/spaces > 127*50us=6.35ms */

			/* Insert mce packet header every 4th entry */
			if ((cmdcount < MCE_CMDBUF_SIZE) &&
830
			    (cmdcount % MCE_CODE_LENGTH) == 0)
831
				cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853

			/* Insert mce packet data */
			if (cmdcount < MCE_CMDBUF_SIZE)
				cmdbuf[cmdcount++] =
					(txbuf[i] < MCE_PULSE_BIT ?
					 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
					 (i & 1 ? 0x00 : MCE_PULSE_BIT);
			else {
				ret = -EINVAL;
				goto out;
			}

		} while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
			 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
	}

	/* Check if we have room for the empty packet at the end */
	if (cmdcount >= MCE_CMDBUF_SIZE) {
		ret = -EINVAL;
		goto out;
	}

854 855 856 857
	/* Fix packet length in last header */
	length = cmdcount % MCE_CODE_LENGTH;
	cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length;

858
	/* All mce commands end with an empty packet (0x80) */
859
	cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
860 861 862 863 864

	/* Transmit the command to the mce device */
	mce_async_out(ir, cmdbuf, cmdcount);

out:
865
	return ret ? ret : count;
866 867
}

868
/* Sets active IR outputs -- mce devices typically have two */
869
static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
870
{
871
	struct mceusb_dev *ir = dev->priv;
872

873 874 875
	if (ir->flags.tx_mask_normal)
		ir->tx_mask = mask;
	else
876 877
		ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
				mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
878 879 880 881

	return 0;
}

882
/* Sets the send carrier frequency and mode */
883
static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
884
{
885
	struct mceusb_dev *ir = dev->priv;
886 887
	int clk = 10000000;
	int prescaler = 0, divisor = 0;
888 889
	unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
				    MCE_CMD_SETIRCFS, 0x00, 0x00 };
890 891 892 893 894 895

	/* Carrier has changed */
	if (ir->carrier != carrier) {

		if (carrier == 0) {
			ir->carrier = carrier;
896
			cmdbuf[2] = MCE_CMD_SIG_END;
897
			cmdbuf[3] = MCE_IRDATA_TRAILER;
898
			mce_dbg(ir->dev, "%s: disabling carrier "
899 900 901 902 903 904 905
				"modulation\n", __func__);
			mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
			return carrier;
		}

		for (prescaler = 0; prescaler < 4; ++prescaler) {
			divisor = (clk >> (2 * prescaler)) / carrier;
906
			if (divisor <= 0xff) {
907 908 909
				ir->carrier = carrier;
				cmdbuf[2] = prescaler;
				cmdbuf[3] = divisor;
910
				mce_dbg(ir->dev, "%s: requesting %u HZ "
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
					"carrier\n", __func__, carrier);

				/* Transmit new carrier to mce device */
				mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
				return carrier;
			}
		}

		return -EINVAL;

	}

	return carrier;
}

926 927 928 929 930 931 932 933 934 935 936
/*
 * We don't do anything but print debug spew for many of the command bits
 * we receive from the hardware, but some of them are useful information
 * we want to store so that we can use them.
 */
static void mceusb_handle_command(struct mceusb_dev *ir, int index)
{
	u8 hi = ir->buf_in[index + 1] & 0xff;
	u8 lo = ir->buf_in[index + 2] & 0xff;

	switch (ir->buf_in[index]) {
937 938 939 940 941 942
	/* the one and only 5-byte return value command */
	case MCE_RSP_GETPORTSTATUS:
		if ((ir->buf_in[index + 4] & 0xff) == 0x00)
			ir->txports_cabled |= 1 << hi;
		break;

943
	/* 2-byte return value commands */
944
	case MCE_RSP_EQIRTIMEOUT:
945
		ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
946
		break;
947 948 949 950
	case MCE_RSP_EQIRNUMPORTS:
		ir->num_txports = hi;
		ir->num_rxports = lo;
		break;
951 952

	/* 1-byte return value commands */
953 954 955
	case MCE_RSP_EQEMVER:
		ir->emver = hi;
		break;
956
	case MCE_RSP_EQIRTXPORTS:
957 958
		ir->tx_mask = hi;
		break;
959 960
	case MCE_RSP_EQIRRXPORTEN:
		ir->learning_enabled = ((hi & 0x02) == 0x02);
961
		ir->rxports_active = hi;
962
		break;
963 964 965
	case MCE_RSP_CMD_ILLEGAL:
		ir->need_reset = true;
		break;
966 967 968 969 970
	default:
		break;
	}
}

971 972
static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
{
973
	DEFINE_IR_RAW_EVENT(rawir);
974
	bool event = false;
975
	int i = 0;
976 977 978

	/* skip meaningless 0xb1 0x60 header bytes on orig receiver */
	if (ir->flags.microsoft_gen1)
979
		i = 2;
980

981 982 983 984
	/* if there's no data, just return now */
	if (buf_len <= i)
		return;

985 986 987
	for (; i < buf_len; i++) {
		switch (ir->parser_state) {
		case SUBCMD:
988
			ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]);
989 990
			mceusb_dev_printdata(ir, ir->buf_in, i - 1,
					     ir->rem + 2, false);
991
			mceusb_handle_command(ir, i);
992 993 994
			ir->parser_state = CMD_DATA;
			break;
		case PARSE_IRDATA:
995
			ir->rem--;
996
			init_ir_raw_event(&rawir);
997 998
			rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
			rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
999
					 * US_TO_NS(MCE_TIME_UNIT);
1000

1001
			mce_dbg(ir->dev, "Storing %s with duration %d\n",
1002 1003 1004
				rawir.pulse ? "pulse" : "space",
				rawir.duration);

1005 1006
			if (ir_raw_event_store_with_filter(ir->rc, &rawir))
				event = true;
1007 1008 1009 1010 1011 1012 1013 1014
			break;
		case CMD_DATA:
			ir->rem--;
			break;
		case CMD_HEADER:
			/* decode mce packets of the form (84),AA,BB,CC,DD */
			/* IR data packets can span USB messages - rem */
			ir->cmd = ir->buf_in[i];
1015 1016
			if ((ir->cmd == MCE_CMD_PORT_IR) ||
			    ((ir->cmd & MCE_PORT_MASK) !=
1017
			     MCE_COMMAND_IRDATA)) {
1018 1019 1020 1021
				ir->parser_state = SUBCMD;
				continue;
			}
			ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
1022 1023
			mceusb_dev_printdata(ir, ir->buf_in,
					     i, ir->rem + 1, false);
1024
			if (ir->rem)
1025
				ir->parser_state = PARSE_IRDATA;
1026 1027
			else
				ir_raw_event_reset(ir->rc);
1028
			break;
1029 1030
		}

1031 1032
		if (ir->parser_state != CMD_HEADER && !ir->rem)
			ir->parser_state = CMD_HEADER;
1033
	}
1034 1035 1036 1037
	if (event) {
		mce_dbg(ir->dev, "processed IR data, calling ir_raw_event_handle\n");
		ir_raw_event_handle(ir->rc);
	}
1038 1039
}

S
Sean Young 已提交
1040
static void mceusb_dev_recv(struct urb *urb)
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
{
	struct mceusb_dev *ir;
	int buf_len;

	if (!urb)
		return;

	ir = urb->context;
	if (!ir) {
		usb_unlink_urb(urb);
		return;
	}

	buf_len = urb->actual_length;

	if (ir->send_flags == RECV_FLAG_IN_PROGRESS) {
		ir->send_flags = SEND_FLAG_COMPLETE;
1058
		mce_dbg(ir->dev, "setup answer received %d bytes\n",
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
			buf_len);
	}

	switch (urb->status) {
	/* success */
	case 0:
		mceusb_process_ir_data(ir, buf_len);
		break;

	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		usb_unlink_urb(urb);
		return;

	case -EPIPE:
	default:
1076
		mce_dbg(ir->dev, "Error: urb status = %d\n", urb->status);
1077 1078 1079 1080 1081 1082
		break;
	}

	usb_submit_urb(urb, GFP_ATOMIC);
}

1083 1084 1085 1086 1087 1088 1089
static void mceusb_get_emulator_version(struct mceusb_dev *ir)
{
	/* If we get no reply or an illegal command reply, its ver 1, says MS */
	ir->emver = 1;
	mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
}

1090 1091
static void mceusb_gen1_init(struct mceusb_dev *ir)
{
1092
	int ret;
1093
	struct device *dev = ir->dev;
1094
	char *data;
1095 1096 1097 1098 1099 1100

	data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
	if (!data) {
		dev_err(dev, "%s: memory allocation failed!\n", __func__);
		return;
	}
1101 1102

	/*
1103
	 * This is a strange one. Windows issues a set address to the device
1104 1105 1106 1107
	 * on the receive control pipe and expect a certain value pair back
	 */
	ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
			      USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
1108
			      data, USB_CTRL_MSG_SZ, HZ * 3);
1109 1110
	mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
	mce_dbg(dev, "%s - data[0] = %d, data[1] = %d\n",
1111 1112 1113 1114 1115 1116 1117
		__func__, data[0], data[1]);

	/* set feature: bit rate 38400 bps */
	ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
			      USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
			      0xc04e, 0x0000, NULL, 0, HZ * 3);

1118
	mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
1119 1120 1121 1122 1123

	/* bRequest 4: set char length to 8 bits */
	ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
			      4, USB_TYPE_VENDOR,
			      0x0808, 0x0000, NULL, 0, HZ * 3);
1124
	mce_dbg(dev, "%s - retB = %d\n", __func__, ret);
1125 1126 1127 1128 1129

	/* bRequest 2: set handshaking to use DTR/DSR */
	ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
			      2, USB_TYPE_VENDOR,
			      0x0000, 0x0100, NULL, 0, HZ * 3);
1130
	mce_dbg(dev, "%s - retC = %d\n", __func__, ret);
1131

1132 1133
	/* device resume */
	mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
1134 1135 1136 1137

	/* get hw/sw revision? */
	mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));

1138
	kfree(data);
1139
}
1140 1141 1142

static void mceusb_gen2_init(struct mceusb_dev *ir)
{
1143 1144
	/* device resume */
	mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
1145

1146 1147 1148 1149
	/* get wake version (protocol, key, address) */
	mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));

	/* unknown what this one actually returns... */
1150
	mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
1151 1152
}

1153
static void mceusb_get_parameters(struct mceusb_dev *ir)
1154
{
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
	int i;
	unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
				    MCE_CMD_GETPORTSTATUS, 0x00 };

	/* defaults, if the hardware doesn't support querying */
	ir->num_txports = 2;
	ir->num_rxports = 2;

	/* get number of tx and rx ports */
	mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));

1166 1167 1168
	/* get the carrier and frequency */
	mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));

1169
	if (ir->num_txports && !ir->flags.no_tx)
1170 1171
		/* get the transmitter bitmask */
		mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
1172 1173 1174 1175 1176 1177

	/* get receiver timeout value */
	mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));

	/* get receiver sensor setting */
	mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
1178 1179 1180 1181 1182

	for (i = 0; i < ir->num_txports; i++) {
		cmdbuf[2] = i;
		mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
	}
1183 1184
}

1185 1186 1187 1188 1189 1190 1191 1192
static void mceusb_flash_led(struct mceusb_dev *ir)
{
	if (ir->emver < 2)
		return;

	mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
}

1193
static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
1194 1195
{
	struct device *dev = ir->dev;
1196 1197
	struct rc_dev *rc;
	int ret;
1198

1199 1200 1201 1202
	rc = rc_allocate_device();
	if (!rc) {
		dev_err(dev, "remote dev allocation failed\n");
		goto out;
1203 1204
	}

1205
	snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
1206
		 mceusb_model[ir->model].name ?
1207
			mceusb_model[ir->model].name :
1208
			"Media Center Ed. eHome Infrared Remote Transceiver",
1209 1210 1211 1212 1213
		 le16_to_cpu(ir->usbdev->descriptor.idVendor),
		 le16_to_cpu(ir->usbdev->descriptor.idProduct));

	usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));

1214 1215 1216 1217 1218 1219
	rc->input_name = ir->name;
	rc->input_phys = ir->phys;
	usb_to_input_id(ir->usbdev, &rc->input_id);
	rc->dev.parent = dev;
	rc->priv = ir;
	rc->driver_type = RC_DRIVER_IR_RAW;
1220
	rc->allowed_protos = RC_BIT_ALL;
1221
	rc->timeout = MS_TO_NS(100);
1222
	if (!ir->flags.no_tx) {
1223 1224 1225
		rc->s_tx_mask = mceusb_set_tx_mask;
		rc->s_tx_carrier = mceusb_set_tx_carrier;
		rc->tx_ir = mceusb_tx_ir;
1226
	}
1227 1228 1229
	rc->driver_name = DRIVER_NAME;
	rc->map_name = mceusb_model[ir->model].rc_map ?
			mceusb_model[ir->model].rc_map : RC_MAP_RC6_MCE;
1230

1231
	ret = rc_register_device(rc);
1232
	if (ret < 0) {
1233 1234
		dev_err(dev, "remote dev registration failed\n");
		goto out;
1235 1236
	}

1237
	return rc;
1238

1239 1240
out:
	rc_free_device(rc);
1241 1242 1243
	return NULL;
}

1244 1245
static int mceusb_dev_probe(struct usb_interface *intf,
			    const struct usb_device_id *id)
1246 1247 1248 1249 1250 1251 1252
{
	struct usb_device *dev = interface_to_usbdev(intf);
	struct usb_host_interface *idesc;
	struct usb_endpoint_descriptor *ep = NULL;
	struct usb_endpoint_descriptor *ep_in = NULL;
	struct usb_endpoint_descriptor *ep_out = NULL;
	struct mceusb_dev *ir = NULL;
1253
	int pipe, maxp, i;
1254
	char buf[63], name[128] = "";
1255
	enum mceusb_model_type model = id->driver_info;
1256 1257
	bool is_gen3;
	bool is_microsoft_gen1;
1258
	bool tx_mask_normal;
1259
	int ir_intfnum;
1260

1261
	mce_dbg(&intf->dev, "%s called\n", __func__);
1262 1263 1264

	idesc  = intf->cur_altsetting;

1265 1266
	is_gen3 = mceusb_model[model].mce_gen3;
	is_microsoft_gen1 = mceusb_model[model].mce_gen1;
1267
	tx_mask_normal = mceusb_model[model].tx_mask_normal;
1268
	ir_intfnum = mceusb_model[model].ir_intfnum;
1269

1270 1271 1272
	/* There are multi-function devices with non-IR interfaces */
	if (idesc->desc.bInterfaceNumber != ir_intfnum)
		return -ENODEV;
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287

	/* step through the endpoints to find first bulk in and out endpoint */
	for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
		ep = &idesc->endpoint[i].desc;

		if ((ep_in == NULL)
			&& ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
			    == USB_DIR_IN)
			&& (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
			    == USB_ENDPOINT_XFER_BULK)
			|| ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
			    == USB_ENDPOINT_XFER_INT))) {

			ep_in = ep;
			ep_in->bmAttributes = USB_ENDPOINT_XFER_INT;
1288
			ep_in->bInterval = 1;
1289
			mce_dbg(&intf->dev, "acceptable inbound endpoint "
1290
				"found\n");
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
		}

		if ((ep_out == NULL)
			&& ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
			    == USB_DIR_OUT)
			&& (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
			    == USB_ENDPOINT_XFER_BULK)
			|| ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
			    == USB_ENDPOINT_XFER_INT))) {

			ep_out = ep;
			ep_out->bmAttributes = USB_ENDPOINT_XFER_INT;
1303
			ep_out->bInterval = 1;
1304
			mce_dbg(&intf->dev, "acceptable outbound endpoint "
1305
				"found\n");
1306 1307 1308
		}
	}
	if (ep_in == NULL) {
1309
		mce_dbg(&intf->dev, "inbound and/or endpoint not found\n");
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
		return -ENODEV;
	}

	pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
	maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));

	ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
	if (!ir)
		goto mem_alloc_fail;

	ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
	if (!ir->buf_in)
		goto buf_in_alloc_fail;

	ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
	if (!ir->urb_in)
		goto urb_in_alloc_fail;

	ir->usbdev = dev;
	ir->dev = &intf->dev;
	ir->len_in = maxp;
	ir->flags.microsoft_gen1 = is_microsoft_gen1;
1332
	ir->flags.tx_mask_normal = tx_mask_normal;
1333
	ir->flags.no_tx = mceusb_model[model].no_tx;
1334 1335
	ir->model = model;

1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
	/* Saving usb interface data for use by the transmitter routine */
	ir->usb_ep_out = ep_out;

	if (dev->descriptor.iManufacturer
	    && usb_string(dev, dev->descriptor.iManufacturer,
			  buf, sizeof(buf)) > 0)
		strlcpy(name, buf, sizeof(name));
	if (dev->descriptor.iProduct
	    && usb_string(dev, dev->descriptor.iProduct,
			  buf, sizeof(buf)) > 0)
		snprintf(name + strlen(name), sizeof(name) - strlen(name),
			 " %s", buf);

1349 1350 1351
	ir->rc = mceusb_init_rc_dev(ir);
	if (!ir->rc)
		goto rc_dev_fail;
1352

1353
	/* wire up inbound data handler */
S
Sean Young 已提交
1354 1355
	usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
				mceusb_dev_recv, ir, ep_in->bInterval);
1356 1357 1358
	ir->urb_in->transfer_dma = ir->dma_in;
	ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;

1359 1360 1361 1362
	/* flush buffers on the device */
	mce_dbg(&intf->dev, "Flushing receive buffers\n");
	mce_flush_rx_buffer(ir, maxp);

1363 1364 1365
	/* figure out which firmware/emulator version this hardware has */
	mceusb_get_emulator_version(ir);

1366
	/* initialize device */
1367
	if (ir->flags.microsoft_gen1)
1368
		mceusb_gen1_init(ir);
1369
	else if (!is_gen3)
1370 1371
		mceusb_gen2_init(ir);

1372
	mceusb_get_parameters(ir);
1373

1374 1375
	mceusb_flash_led(ir);

1376
	if (!ir->flags.no_tx)
1377
		mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
1378 1379 1380

	usb_set_intfdata(intf, ir);

1381 1382 1383 1384
	/* enable wake via this device */
	device_set_wakeup_capable(ir->dev, true);
	device_set_wakeup_enable(ir->dev, true);

1385 1386
	dev_info(&intf->dev, "Registered %s with mce emulator interface "
		 "version %x\n", name, ir->emver);
1387 1388 1389 1390
	dev_info(&intf->dev, "%x tx ports (0x%x cabled) and "
		 "%x rx sensors (0x%x active)\n",
		 ir->num_txports, ir->txports_cabled,
		 ir->num_rxports, ir->rxports_active);
1391 1392 1393 1394

	return 0;

	/* Error-handling path */
1395
rc_dev_fail:
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
	usb_free_urb(ir->urb_in);
urb_in_alloc_fail:
	usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
buf_in_alloc_fail:
	kfree(ir);
mem_alloc_fail:
	dev_err(&intf->dev, "%s: device setup failed!\n", __func__);

	return -ENOMEM;
}


1408
static void mceusb_dev_disconnect(struct usb_interface *intf)
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
{
	struct usb_device *dev = interface_to_usbdev(intf);
	struct mceusb_dev *ir = usb_get_intfdata(intf);

	usb_set_intfdata(intf, NULL);

	if (!ir)
		return;

	ir->usbdev = NULL;
1419
	rc_unregister_device(ir->rc);
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
	usb_kill_urb(ir->urb_in);
	usb_free_urb(ir->urb_in);
	usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);

	kfree(ir);
}

static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
{
	struct mceusb_dev *ir = usb_get_intfdata(intf);
	dev_info(ir->dev, "suspend\n");
	usb_kill_urb(ir->urb_in);
	return 0;
}

static int mceusb_dev_resume(struct usb_interface *intf)
{
	struct mceusb_dev *ir = usb_get_intfdata(intf);
	dev_info(ir->dev, "resume\n");
	if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
		return -EIO;
	return 0;
}

static struct usb_driver mceusb_dev_driver = {
	.name =		DRIVER_NAME,
	.probe =	mceusb_dev_probe,
1447
	.disconnect =	mceusb_dev_disconnect,
1448 1449 1450 1451 1452 1453
	.suspend =	mceusb_dev_suspend,
	.resume =	mceusb_dev_resume,
	.reset_resume =	mceusb_dev_resume,
	.id_table =	mceusb_dev_table
};

1454
module_usb_driver(mceusb_dev_driver);
1455 1456 1457 1458 1459 1460 1461 1462

MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_LICENSE("GPL");
MODULE_DEVICE_TABLE(usb, mceusb_dev_table);

module_param(debug, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "Debug enabled or not");