blob: a25bb1581e4662fa1807ab6bc8b86499ca17a595 [file] [log] [blame]
Jarod Wilson66e89522010-06-01 17:32:08 -03001/*
2 * Driver for USB Windows Media Center Ed. eHome Infrared Transceivers
3 *
Jarod Wilsonfda516b2011-07-18 16:54:29 -03004 * Copyright (c) 2010-2011, Jarod Wilson <jarod@redhat.com>
Jarod Wilson66e89522010-06-01 17:32:08 -03005 *
6 * Based on the original lirc_mceusb and lirc_mceusb2 drivers, by Dan
7 * Conti, Martin Blatter and Daniel Melander, the latter of which was
8 * in turn also based on the lirc_atiusb driver by Paul Miller. The
9 * two mce drivers were merged into one by Jarod Wilson, with transmit
10 * support for the 1st-gen device added primarily by Patrick Calhoun,
11 * with a bit of tweaks by Jarod. Debugging improvements and proper
12 * support for what appears to be 3rd-gen hardware added by Jarod.
13 * Initial port from lirc driver to ir-core drivery by Jarod, based
14 * partially on a port to an earlier proposed IR infrastructure by
15 * Jon Smirl, which included enhancements and simplifications to the
16 * incoming IR buffer parsing routines.
17 *
Jarod Wilsonfda516b2011-07-18 16:54:29 -030018 * Updated in July of 2011 with the aid of Microsoft's official
19 * remote/transceiver requirements and specification document, found at
20 * download.microsoft.com, title
21 * Windows-Media-Center-RC-IR-Collection-Green-Button-Specification-03-08-2011-V2.pdf
22 *
Jarod Wilson66e89522010-06-01 17:32:08 -030023 *
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
37 *
38 */
39
40#include <linux/device.h>
41#include <linux/module.h>
42#include <linux/slab.h>
Paul Bender635f76b2010-12-16 13:23:07 -030043#include <linux/usb.h>
44#include <linux/usb/input.h>
Jarod Wilsonfa334892011-07-18 16:54:23 -030045#include <linux/pm_wakeup.h>
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030046#include <media/rc-core.h>
Jarod Wilson66e89522010-06-01 17:32:08 -030047
Jarod Wilsonfda516b2011-07-18 16:54:29 -030048#define DRIVER_VERSION "1.92"
49#define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
Jarod Wilson66e89522010-06-01 17:32:08 -030050#define DRIVER_DESC "Windows Media Center Ed. eHome Infrared Transceiver " \
51 "device driver"
52#define DRIVER_NAME "mceusb"
53
Jarod Wilson4a883912010-10-22 14:42:54 -030054#define USB_BUFLEN 32 /* USB reception buffer length */
55#define USB_CTRL_MSG_SZ 2 /* Size of usb ctrl msg on gen1 hw */
56#define MCE_G1_INIT_MSGS 40 /* Init messages on gen1 hw to throw out */
Jarod Wilson66e89522010-06-01 17:32:08 -030057
58/* MCE constants */
Jarod Wilson4a883912010-10-22 14:42:54 -030059#define MCE_CMDBUF_SIZE 384 /* MCE Command buffer length */
60#define MCE_TIME_UNIT 50 /* Approx 50us resolution */
61#define MCE_CODE_LENGTH 5 /* Normal length of packet (with header) */
62#define MCE_PACKET_SIZE 4 /* Normal length of packet (without header) */
63#define MCE_IRDATA_HEADER 0x84 /* Actual header format is 0x80 + num_bytes */
64#define MCE_IRDATA_TRAILER 0x80 /* End of IR data */
Jarod Wilson4a883912010-10-22 14:42:54 -030065#define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */
66#define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
67#define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */
68#define MCE_PULSE_MASK 0x7f /* Pulse mask */
69#define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */
70
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030071/*
72 * The interface between the host and the IR hardware is command-response
73 * based. All commands and responses have a consistent format, where a lead
74 * byte always identifies the type of data following it. The lead byte has
75 * a port value in the 3 highest bits and a length value in the 5 lowest
76 * bits.
77 *
78 * The length field is overloaded, with a value of 11111 indicating that the
79 * following byte is a command or response code, and the length of the entire
80 * message is determined by the code. If the length field is not 11111, then
81 * it specifies the number of bytes of port data that follow.
82 */
83#define MCE_CMD 0x1f
84#define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */
85#define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */
86#define MCE_PORT_SER 0x6 /* 0xc0 thru 0xdf flush & 0x1f bytes */
87#define MCE_PORT_MASK 0xe0 /* Mask out command bits */
Jarod Wilson4a883912010-10-22 14:42:54 -030088
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030089/* Command port headers */
90#define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */
91#define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */
92
93/* Commands that set device state (2-4 bytes in length) */
94#define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */
95#define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */
96#define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */
97#define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */
98#define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */
99#define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */
100#define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */
101
102/* Commands that query device state (all 2 bytes, unless noted) */
103#define MCE_CMD_GETIRCFS 0x07 /* Get carrier */
104#define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */
105#define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */
106#define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */
107#define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */
108#define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */
109#define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */
110#define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */
111#define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */
112#define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */
113#define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */
114
115/* Misc commands */
116#define MCE_CMD_NOP 0xff /* No operation */
117
118/* Responses to commands (non-error cases) */
119#define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */
120#define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */
121#define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */
122#define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */
123#define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */
124#define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */
125#define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */
126#define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */
127#define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */
128#define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */
129#define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */
130#define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */
131#define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */
132
133/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
134#define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */
135#define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */
136
137/* Misc commands/responses not defined in the MCE remote/transceiver spec */
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300138#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -0300139#define MCE_CMD_PING 0x03 /* Ping device */
140#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
141#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300142#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
143#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
144#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
Jarod Wilson4a883912010-10-22 14:42:54 -0300145#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
146#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300147#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
148#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300149#define MCE_CMD_NULL 0x00 /* These show up various places... */
Jarod Wilson66e89522010-06-01 17:32:08 -0300150
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300151/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
152 * then we're looking at a raw IR data sample */
153#define MCE_COMMAND_IRDATA 0x80
154#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
Jarod Wilson66e89522010-06-01 17:32:08 -0300155
156/* module parameters */
157#ifdef CONFIG_USB_DEBUG
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030158static bool debug = 1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300159#else
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030160static bool debug;
Jarod Wilson66e89522010-06-01 17:32:08 -0300161#endif
162
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300163#define mce_dbg(dev, fmt, ...) \
164 do { \
165 if (debug) \
166 dev_info(dev, fmt, ## __VA_ARGS__); \
167 } while (0)
168
Jarod Wilson66e89522010-06-01 17:32:08 -0300169/* general constants */
170#define SEND_FLAG_IN_PROGRESS 1
171#define SEND_FLAG_COMPLETE 2
172#define RECV_FLAG_IN_PROGRESS 3
173#define RECV_FLAG_COMPLETE 4
174
175#define MCEUSB_RX 1
176#define MCEUSB_TX 2
177
178#define VENDOR_PHILIPS 0x0471
179#define VENDOR_SMK 0x0609
180#define VENDOR_TATUNG 0x1460
181#define VENDOR_GATEWAY 0x107b
182#define VENDOR_SHUTTLE 0x1308
183#define VENDOR_SHUTTLE2 0x051c
184#define VENDOR_MITSUMI 0x03ee
185#define VENDOR_TOPSEED 0x1784
186#define VENDOR_RICAVISION 0x179d
187#define VENDOR_ITRON 0x195d
188#define VENDOR_FIC 0x1509
189#define VENDOR_LG 0x043e
190#define VENDOR_MICROSOFT 0x045e
191#define VENDOR_FORMOSA 0x147a
192#define VENDOR_FINTEK 0x1934
193#define VENDOR_PINNACLE 0x2304
194#define VENDOR_ECS 0x1019
195#define VENDOR_WISTRON 0x0fb8
196#define VENDOR_COMPRO 0x185b
197#define VENDOR_NORTHSTAR 0x04eb
198#define VENDOR_REALTEK 0x0bda
199#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300200#define VENDOR_CONEXANT 0x0572
Mark Lorda4de5f02012-07-11 18:53:28 -0300201#define VENDOR_TWISTEDMELON 0x2596
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300202#define VENDOR_HAUPPAUGE 0x2040
Jarod Wilson66e89522010-06-01 17:32:08 -0300203
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300204enum mceusb_model_type {
205 MCE_GEN2 = 0, /* Most boards */
206 MCE_GEN1,
207 MCE_GEN3,
208 MCE_GEN2_TX_INV,
209 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300210 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300211 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300212 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300213 MCE_GEN2_NO_TX,
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300214 HAUPPAUGE_CX_HYBRID_TV,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300215};
216
217struct mceusb_model {
218 u32 mce_gen1:1;
219 u32 mce_gen2:1;
220 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300221 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300222 u32 no_tx:1;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300223
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300224 int ir_intfnum;
225
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300226 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300227 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300228};
229
230static const struct mceusb_model mceusb_model[] = {
231 [MCE_GEN1] = {
232 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300233 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300234 },
235 [MCE_GEN2] = {
236 .mce_gen2 = 1,
237 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300238 [MCE_GEN2_NO_TX] = {
239 .mce_gen2 = 1,
240 .no_tx = 1,
241 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300242 [MCE_GEN2_TX_INV] = {
243 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300244 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300245 },
246 [MCE_GEN3] = {
247 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300248 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300249 },
250 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300251 /*
252 * In fact, the EVK is shipped without
253 * remotes, but we should have something handy,
254 * to allow testing it
255 */
Mauro Carvalho Chehab15195d32011-01-24 12:18:47 -0300256 .rc_map = RC_MAP_HAUPPAUGE,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300257 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
258 },
259 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300260 .no_tx = 1, /* tx isn't wired up at all */
261 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300262 },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300263 [HAUPPAUGE_CX_HYBRID_TV] = {
264 .rc_map = RC_MAP_HAUPPAUGE,
265 .no_tx = 1, /* eeprom says it has no tx */
266 .name = "Conexant Hybrid TV (cx231xx) MCE IR no TX",
267 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300268 [MULTIFUNCTION] = {
269 .mce_gen2 = 1,
270 .ir_intfnum = 2,
271 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300272 [TIVO_KIT] = {
273 .mce_gen2 = 1,
274 .rc_map = RC_MAP_TIVO,
275 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300276};
277
Jarod Wilson66e89522010-06-01 17:32:08 -0300278static struct usb_device_id mceusb_dev_table[] = {
279 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300280 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
281 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300282 /* Philips Infrared Transceiver - Sahara branded */
283 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
284 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300285 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
286 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300287 /* Philips SRM5100 */
288 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
289 /* Philips Infrared Transceiver - Omaura */
290 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
291 /* Philips Infrared Transceiver - Spinel plus */
292 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
293 /* Philips eHome Infrared Transceiver */
294 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300295 /* Philips/Spinel plus IR transceiver for ASUS */
296 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
297 /* Philips/Spinel plus IR transceiver for ASUS */
298 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300299 /* Philips IR transceiver (Dell branded) */
Sean Young8dfef672013-01-29 08:19:29 -0300300 { USB_DEVICE(VENDOR_PHILIPS, 0x2093),
301 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300302 /* Realtek MCE IR Receiver and card reader */
303 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
304 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300305 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300306 { USB_DEVICE(VENDOR_SMK, 0x031d),
307 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300308 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300309 { USB_DEVICE(VENDOR_SMK, 0x0322),
310 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300311 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300312 { USB_DEVICE(VENDOR_SMK, 0x0334),
313 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300314 /* SMK eHome Infrared Transceiver */
315 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300316 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
317 { USB_DEVICE(VENDOR_SMK, 0x0353),
318 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300319 /* Tatung eHome Infrared Transceiver */
320 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
321 /* Shuttle eHome Infrared Transceiver */
322 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
323 /* Shuttle eHome Infrared Transceiver */
324 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
325 /* Gateway eHome Infrared Transceiver */
326 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
327 /* Mitsumi */
328 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
329 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300330 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
331 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300332 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300333 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
334 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300335 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300336 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
337 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300338 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300339 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
340 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300341 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300342 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
343 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300344 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300345 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300346 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300347 /* Ricavision internal Infrared Transceiver */
348 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
349 /* Itron ione Libra Q-11 */
350 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
351 /* FIC eHome Infrared Transceiver */
352 { USB_DEVICE(VENDOR_FIC, 0x9242) },
353 /* LG eHome Infrared Transceiver */
354 { USB_DEVICE(VENDOR_LG, 0x9803) },
355 /* Microsoft MCE Infrared Transceiver */
356 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
357 /* Formosa eHome Infrared Transceiver */
358 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
359 /* Formosa21 / eHome Infrared Receiver */
360 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
361 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300362 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
363 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300364 /* Formosa Industrial Computing / Beanbag Emulation Device */
365 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
366 /* Formosa21 / eHome Infrared Receiver */
367 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
368 /* Formosa Industrial Computing AIM IR605/A */
369 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
370 /* Formosa Industrial Computing */
371 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilson22f17322012-03-12 13:27:03 -0300372 /* Formosa Industrial Computing */
373 { USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300374 /* Fintek eHome Infrared Transceiver (HP branded) */
Sean Youngdb8ee102013-01-29 08:19:30 -0300375 { USB_DEVICE(VENDOR_FINTEK, 0x5168),
376 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300377 /* Fintek eHome Infrared Transceiver */
378 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
379 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
380 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
381 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300382 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
383 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300384 /* Elitegroup Computer Systems IR */
385 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
386 /* Wistron Corp. eHome Infrared Receiver */
387 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
388 /* Compro K100 */
389 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
390 /* Compro K100 v2 */
391 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
392 /* Northstar Systems, Inc. eHome Infrared Transceiver */
393 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
394 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300395 { USB_DEVICE(VENDOR_TIVO, 0x2000),
396 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300397 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300398 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
399 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300400 /* Conexant Hybrid TV RDU253S Polaris */
401 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
402 .driver_info = CX_HYBRID_TV },
Mark Lorda4de5f02012-07-11 18:53:28 -0300403 /* Twisted Melon Inc. - Manta Mini Receiver */
404 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
405 /* Twisted Melon Inc. - Manta Pico Receiver */
406 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
407 /* Twisted Melon Inc. - Manta Transceiver */
408 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300409 /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
410 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
411 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300412 /* Terminating entry */
413 { }
414};
415
Jarod Wilson66e89522010-06-01 17:32:08 -0300416/* data structure for each usb transceiver */
417struct mceusb_dev {
418 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300419 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300420
421 /* optional features we can enable */
422 bool carrier_report_enabled;
423 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300424
425 /* core device bits */
426 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300427
428 /* usb */
429 struct usb_device *usbdev;
430 struct urb *urb_in;
Jarod Wilson66e89522010-06-01 17:32:08 -0300431 struct usb_endpoint_descriptor *usb_ep_out;
432
433 /* buffers and dma */
434 unsigned char *buf_in;
435 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300436 dma_addr_t dma_in;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300437
438 enum {
439 CMD_HEADER = 0,
440 SUBCMD,
441 CMD_DATA,
442 PARSE_IRDATA,
443 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300444
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300445 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300446
447 struct {
448 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300449 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300450 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300451 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300452 } flags;
453
Jarod Wilsone23fb962010-06-16 17:55:52 -0300454 /* transmit support */
Jarod Wilson66e89522010-06-01 17:32:08 -0300455 int send_flags;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300456 u32 carrier;
457 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300458
459 char name[128];
460 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300461 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300462
463 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300464 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300465 u8 num_txports; /* number of transmit ports */
466 u8 num_rxports; /* number of receive sensors */
467 u8 txports_cabled; /* bitmask of transmitters with cable */
468 u8 rxports_active; /* bitmask of active receive sensors */
Jarod Wilson66e89522010-06-01 17:32:08 -0300469};
470
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300471/* MCE Device Command Strings, generally a port and command pair */
472static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
473 MCE_CMD_RESUME};
474static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300475static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300476static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300477static char FLASH_LED[] = {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300478static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
479static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
480static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
Jarod Wilsona411e832011-07-18 16:54:26 -0300481static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300482static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
483static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300484/* sub in desired values in lower byte or bytes for full command */
485/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300486static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
487 MCE_CMD_SETIRCFS, 0x00, 0x00};
488static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
489static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
490 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
491static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
492 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300493*/
494
William Steidtmann76dea4c2013-04-15 17:17:11 -0300495static int mceusb_cmd_datasize(u8 cmd, u8 subcmd)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300496{
497 int datasize = 0;
498
499 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300500 case MCE_CMD_NULL:
501 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300502 datasize = 1;
503 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300504 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300505 switch (subcmd) {
William Steidtmann76dea4c2013-04-15 17:17:11 -0300506 case MCE_RSP_GETPORTSTATUS:
507 datasize = 5;
508 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300509 case MCE_RSP_EQWAKEVERSION:
510 datasize = 4;
511 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300512 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300513 datasize = 2;
514 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300515 case MCE_RSP_EQWAKESUPPORT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300516 case MCE_RSP_GETWAKESOURCE:
517 case MCE_RSP_EQDEVDETAILS:
518 case MCE_RSP_EQEMVER:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300519 datasize = 1;
520 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300521 }
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300522 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300523 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300524 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300525 case MCE_RSP_EQIRCFS:
526 case MCE_RSP_EQIRTIMEOUT:
527 case MCE_RSP_EQIRRXCFCNT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300528 case MCE_RSP_EQIRNUMPORTS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300529 datasize = 2;
530 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300531 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300532 case MCE_RSP_EQIRTXPORTS:
533 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300534 datasize = 1;
535 break;
536 }
537 }
538 return datasize;
539}
540
Jarod Wilson66e89522010-06-01 17:32:08 -0300541static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300542 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300543{
544 char codes[USB_BUFLEN * 3 + 1];
545 char inout[9];
Hans Verkuil5becbc52012-05-14 10:22:58 -0300546 u8 cmd, subcmd, data1, data2, data3, data4;
Jarod Wilson66e89522010-06-01 17:32:08 -0300547 struct device *dev = ir->dev;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300548 int i, start, skip = 0;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300549 u32 carrier, period;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300550
551 if (!debug)
552 return;
Jarod Wilson66e89522010-06-01 17:32:08 -0300553
Jarod Wilson657290b2010-06-16 17:10:05 -0300554 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300555 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300556 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300557
Jarod Wilson36e9d262010-10-22 16:49:35 -0300558 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300559 return;
560
561 for (i = 0; i < len && i < USB_BUFLEN; i++)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300562 snprintf(codes + i * 3, 4, "%02x ", buf[i + offset] & 0xff);
Jarod Wilson66e89522010-06-01 17:32:08 -0300563
Jarod Wilson36e9d262010-10-22 16:49:35 -0300564 dev_info(dev, "%sx data: %s(length=%d)\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300565 (out ? "t" : "r"), codes, len);
566
567 if (out)
568 strcpy(inout, "Request\0");
569 else
570 strcpy(inout, "Got\0");
571
Jarod Wilson36e9d262010-10-22 16:49:35 -0300572 start = offset + skip;
573 cmd = buf[start] & 0xff;
574 subcmd = buf[start + 1] & 0xff;
575 data1 = buf[start + 2] & 0xff;
576 data2 = buf[start + 3] & 0xff;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300577 data3 = buf[start + 4] & 0xff;
578 data4 = buf[start + 5] & 0xff;
Jarod Wilson66e89522010-06-01 17:32:08 -0300579
580 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300581 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300582 if (subcmd == MCE_CMD_NULL)
583 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300584 if ((subcmd == MCE_CMD_PORT_SYS) &&
585 (data1 == MCE_CMD_RESUME))
586 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300587 else
588 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
589 cmd, subcmd);
590 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300591 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300592 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300593 case MCE_RSP_EQEMVER:
594 if (!out)
595 dev_info(dev, "Emulator interface version %x\n",
596 data1);
597 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300598 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300599 if (len == 2)
600 dev_info(dev, "Get hw/sw rev?\n");
601 else
602 dev_info(dev, "hw/sw rev 0x%02x 0x%02x "
603 "0x%02x 0x%02x\n", data1, data2,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300604 buf[start + 4], buf[start + 5]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300605 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300606 case MCE_CMD_RESUME:
607 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300608 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300609 case MCE_RSP_CMD_ILLEGAL:
610 dev_info(dev, "Illegal PORT_SYS command\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300611 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300612 case MCE_RSP_EQWAKEVERSION:
613 if (!out)
614 dev_info(dev, "Wake version, proto: 0x%02x, "
615 "payload: 0x%02x, address: 0x%02x, "
616 "version: 0x%02x\n",
617 data1, data2, data3, data4);
618 break;
619 case MCE_RSP_GETPORTSTATUS:
620 if (!out)
621 /* We use data1 + 1 here, to match hw labels */
622 dev_info(dev, "TX port %d: blaster is%s connected\n",
623 data1 + 1, data4 ? " not" : "");
624 break;
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300625 case MCE_CMD_FLASHLED:
626 dev_info(dev, "Attempting to flash LED\n");
627 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300628 default:
629 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
630 cmd, subcmd);
631 break;
632 }
633 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300634 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300635 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300636 case MCE_CMD_SIG_END:
637 dev_info(dev, "End of signal\n");
638 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300639 case MCE_CMD_PING:
Jarod Wilson66e89522010-06-01 17:32:08 -0300640 dev_info(dev, "Ping\n");
641 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300642 case MCE_CMD_UNKNOWN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300643 dev_info(dev, "Resp to 9f 05 of 0x%02x 0x%02x\n",
644 data1, data2);
645 break;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300646 case MCE_RSP_EQIRCFS:
647 period = DIV_ROUND_CLOSEST(
Jean Delvareed7dd242012-09-01 14:53:57 -0300648 (1U << data1 * 2) * (data2 + 1), 10);
Jarod Wilsone217fb42011-07-18 16:54:28 -0300649 if (!period)
650 break;
651 carrier = (1000 * 1000) / period;
652 dev_info(dev, "%s carrier of %u Hz (period %uus)\n",
653 inout, carrier, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300654 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300655 case MCE_CMD_GETIRCFS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300656 dev_info(dev, "Get carrier mode and freq\n");
657 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300658 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300659 dev_info(dev, "%s transmit blaster mask of 0x%02x\n",
660 inout, data1);
661 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300662 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300663 /* value is in units of 50us, so x*50/1000 ms */
Jarod Wilsone217fb42011-07-18 16:54:28 -0300664 period = ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000;
Jarod Wilson66e89522010-06-01 17:32:08 -0300665 dev_info(dev, "%s receive timeout of %d ms\n",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300666 inout, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300667 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300668 case MCE_CMD_GETIRTIMEOUT:
Jarod Wilson66e89522010-06-01 17:32:08 -0300669 dev_info(dev, "Get receive timeout\n");
670 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300671 case MCE_CMD_GETIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300672 dev_info(dev, "Get transmit blaster mask\n");
673 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300674 case MCE_RSP_EQIRRXPORTEN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300675 dev_info(dev, "%s %s-range receive sensor in use\n",
676 inout, data1 == 0x02 ? "short" : "long");
677 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300678 case MCE_CMD_GETIRRXPORTEN:
679 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300680 if (out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300681 dev_info(dev, "Get receive sensor\n");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300682 else if (ir->learning_enabled)
683 dev_info(dev, "RX pulse count: %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300684 ((data1 << 8) | data2));
685 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300686 case MCE_RSP_EQIRNUMPORTS:
687 if (out)
688 break;
689 dev_info(dev, "Num TX ports: %x, num RX ports: %x\n",
690 data1, data2);
Jarod Wilson66e89522010-06-01 17:32:08 -0300691 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300692 case MCE_RSP_CMD_ILLEGAL:
693 dev_info(dev, "Illegal PORT_IR command\n");
694 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300695 default:
696 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
697 cmd, subcmd);
698 break;
699 }
700 break;
701 default:
702 break;
703 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300704
705 if (cmd == MCE_IRDATA_TRAILER)
706 dev_info(dev, "End of raw IR data\n");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300707 else if ((cmd != MCE_CMD_PORT_IR) &&
708 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Jarod Wilson36e9d262010-10-22 16:49:35 -0300709 dev_info(dev, "Raw IR data, %d pulse/space samples\n", ir->rem);
Jarod Wilson66e89522010-06-01 17:32:08 -0300710}
711
Sean Young6ac454a2012-07-15 13:31:31 -0300712static void mce_async_callback(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -0300713{
714 struct mceusb_dev *ir;
715 int len;
716
717 if (!urb)
718 return;
719
720 ir = urb->context;
721 if (ir) {
722 len = urb->actual_length;
723
Jarod Wilson36e9d262010-10-22 16:49:35 -0300724 mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true);
Jarod Wilson66e89522010-06-01 17:32:08 -0300725 }
726
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300727 /* the transfer buffer and urb were allocated in mce_request_packet */
728 kfree(urb->transfer_buffer);
729 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300730}
731
732/* request incoming or send outgoing usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300733static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
734 int size, int urb_type)
Jarod Wilson66e89522010-06-01 17:32:08 -0300735{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300736 int res, pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -0300737 struct urb *async_urb;
738 struct device *dev = ir->dev;
739 unsigned char *async_buf;
740
741 if (urb_type == MCEUSB_TX) {
742 async_urb = usb_alloc_urb(0, GFP_KERNEL);
743 if (unlikely(!async_urb)) {
744 dev_err(dev, "Error, couldn't allocate urb!\n");
745 return;
746 }
747
748 async_buf = kzalloc(size, GFP_KERNEL);
749 if (!async_buf) {
750 dev_err(dev, "Error, couldn't allocate buf!\n");
751 usb_free_urb(async_urb);
752 return;
753 }
754
755 /* outbound data */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300756 pipe = usb_sndintpipe(ir->usbdev,
757 ir->usb_ep_out->bEndpointAddress);
758 usb_fill_int_urb(async_urb, ir->usbdev, pipe,
Sean Young6ac454a2012-07-15 13:31:31 -0300759 async_buf, size, mce_async_callback,
Jarod Wilson51ea6292011-05-10 14:09:59 -0300760 ir, ir->usb_ep_out->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -0300761 memcpy(async_buf, data, size);
762
763 } else if (urb_type == MCEUSB_RX) {
764 /* standard request */
765 async_urb = ir->urb_in;
766 ir->send_flags = RECV_FLAG_IN_PROGRESS;
767
768 } else {
769 dev_err(dev, "Error! Unknown urb type %d\n", urb_type);
770 return;
771 }
772
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300773 mce_dbg(dev, "receive request called (size=%#x)\n", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300774
775 async_urb->transfer_buffer_length = size;
776 async_urb->dev = ir->usbdev;
777
778 res = usb_submit_urb(async_urb, GFP_ATOMIC);
779 if (res) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300780 mce_dbg(dev, "receive request FAILED! (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300781 return;
782 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300783 mce_dbg(dev, "receive request complete (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300784}
785
786static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
787{
Jarod Wilson4840b782011-07-18 16:54:24 -0300788 int rsize = sizeof(DEVICE_RESUME);
789
790 if (ir->need_reset) {
791 ir->need_reset = false;
792 mce_request_packet(ir, DEVICE_RESUME, rsize, MCEUSB_TX);
793 msleep(10);
794 }
795
Jarod Wilson51ea6292011-05-10 14:09:59 -0300796 mce_request_packet(ir, data, size, MCEUSB_TX);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300797 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300798}
799
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300800static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300801{
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300802 mce_request_packet(ir, NULL, size, MCEUSB_RX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300803}
804
Jarod Wilsone23fb962010-06-16 17:55:52 -0300805/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300806static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300807{
David Härdemand8b4b582010-10-29 16:08:23 -0300808 struct mceusb_dev *ir = dev->priv;
Sean Youngdb8ee102013-01-29 08:19:30 -0300809 int i, length, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300810 int cmdcount = 0;
Sean Youngdb8ee102013-01-29 08:19:30 -0300811 unsigned char cmdbuf[MCE_CMDBUF_SIZE];
Jarod Wilsone23fb962010-06-16 17:55:52 -0300812
813 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300814 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
815 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300816 cmdbuf[cmdcount++] = ir->tx_mask;
817
Sean Youngdb8ee102013-01-29 08:19:30 -0300818 /* Send the set TX ports command */
819 mce_async_out(ir, cmdbuf, cmdcount);
820 cmdcount = 0;
821
Jarod Wilsone23fb962010-06-16 17:55:52 -0300822 /* Generate mce packet data */
823 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300824 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
825
826 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
827
828 /* Insert mce packet header every 4th entry */
829 if ((cmdcount < MCE_CMDBUF_SIZE) &&
Sean Youngdb8ee102013-01-29 08:19:30 -0300830 (cmdcount % MCE_CODE_LENGTH) == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300831 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300832
833 /* Insert mce packet data */
834 if (cmdcount < MCE_CMDBUF_SIZE)
835 cmdbuf[cmdcount++] =
836 (txbuf[i] < MCE_PULSE_BIT ?
837 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
838 (i & 1 ? 0x00 : MCE_PULSE_BIT);
839 else {
840 ret = -EINVAL;
841 goto out;
842 }
843
844 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
845 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
846 }
847
Jarod Wilsone23fb962010-06-16 17:55:52 -0300848 /* Check if we have room for the empty packet at the end */
849 if (cmdcount >= MCE_CMDBUF_SIZE) {
850 ret = -EINVAL;
851 goto out;
852 }
853
Dan Carpenterb940a222013-02-12 08:22:08 -0300854 /* Fix packet length in last header */
855 length = cmdcount % MCE_CODE_LENGTH;
856 cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length;
857
Jarod Wilsone23fb962010-06-16 17:55:52 -0300858 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300859 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300860
861 /* Transmit the command to the mce device */
862 mce_async_out(ir, cmdbuf, cmdcount);
863
Jarod Wilsone23fb962010-06-16 17:55:52 -0300864out:
David Härdeman5588dc22011-04-28 12:13:58 -0300865 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300866}
867
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300868/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300869static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300870{
David Härdemand8b4b582010-10-29 16:08:23 -0300871 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300872
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300873 if (ir->flags.tx_mask_normal)
874 ir->tx_mask = mask;
875 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300876 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
877 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300878
879 return 0;
880}
881
Jarod Wilsone23fb962010-06-16 17:55:52 -0300882/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300883static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300884{
David Härdemand8b4b582010-10-29 16:08:23 -0300885 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300886 int clk = 10000000;
887 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300888 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
889 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300890
891 /* Carrier has changed */
892 if (ir->carrier != carrier) {
893
894 if (carrier == 0) {
895 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300896 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300897 cmdbuf[3] = MCE_IRDATA_TRAILER;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300898 mce_dbg(ir->dev, "%s: disabling carrier "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300899 "modulation\n", __func__);
900 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
901 return carrier;
902 }
903
904 for (prescaler = 0; prescaler < 4; ++prescaler) {
905 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300906 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300907 ir->carrier = carrier;
908 cmdbuf[2] = prescaler;
909 cmdbuf[3] = divisor;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300910 mce_dbg(ir->dev, "%s: requesting %u HZ "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300911 "carrier\n", __func__, carrier);
912
913 /* Transmit new carrier to mce device */
914 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
915 return carrier;
916 }
917 }
918
919 return -EINVAL;
920
921 }
922
923 return carrier;
924}
925
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300926/*
927 * We don't do anything but print debug spew for many of the command bits
928 * we receive from the hardware, but some of them are useful information
929 * we want to store so that we can use them.
930 */
931static void mceusb_handle_command(struct mceusb_dev *ir, int index)
932{
933 u8 hi = ir->buf_in[index + 1] & 0xff;
934 u8 lo = ir->buf_in[index + 2] & 0xff;
935
936 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -0300937 /* the one and only 5-byte return value command */
938 case MCE_RSP_GETPORTSTATUS:
939 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
940 ir->txports_cabled |= 1 << hi;
941 break;
942
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300943 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300944 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300945 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300946 break;
Jarod Wilsona411e832011-07-18 16:54:26 -0300947 case MCE_RSP_EQIRNUMPORTS:
948 ir->num_txports = hi;
949 ir->num_rxports = lo;
950 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300951
952 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300953 case MCE_RSP_EQEMVER:
954 ir->emver = hi;
955 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300956 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300957 ir->tx_mask = hi;
958 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300959 case MCE_RSP_EQIRRXPORTEN:
960 ir->learning_enabled = ((hi & 0x02) == 0x02);
Jarod Wilsona411e832011-07-18 16:54:26 -0300961 ir->rxports_active = hi;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300962 break;
Jarod Wilson4840b782011-07-18 16:54:24 -0300963 case MCE_RSP_CMD_ILLEGAL:
964 ir->need_reset = true;
965 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300966 default:
967 break;
968 }
969}
970
Jarod Wilson66e89522010-06-01 17:32:08 -0300971static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
972{
Maxim Levitsky46519182010-10-16 19:56:28 -0300973 DEFINE_IR_RAW_EVENT(rawir);
Sean Youngb83bfd12012-08-13 08:59:47 -0300974 bool event = false;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300975 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -0300976
977 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
978 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300979 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300980
Jarod Wilson29b44942010-11-09 18:41:46 -0300981 /* if there's no data, just return now */
982 if (buf_len <= i)
983 return;
984
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300985 for (; i < buf_len; i++) {
986 switch (ir->parser_state) {
987 case SUBCMD:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300988 ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]);
Jarod Wilson36e9d262010-10-22 16:49:35 -0300989 mceusb_dev_printdata(ir, ir->buf_in, i - 1,
990 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300991 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300992 ir->parser_state = CMD_DATA;
993 break;
994 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -0300995 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -0300996 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -0300997 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
998 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300999 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -03001000
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001001 mce_dbg(ir->dev, "Storing %s with duration %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001002 rawir.pulse ? "pulse" : "space",
1003 rawir.duration);
1004
Sean Youngb83bfd12012-08-13 08:59:47 -03001005 if (ir_raw_event_store_with_filter(ir->rc, &rawir))
1006 event = true;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001007 break;
1008 case CMD_DATA:
1009 ir->rem--;
1010 break;
1011 case CMD_HEADER:
1012 /* decode mce packets of the form (84),AA,BB,CC,DD */
1013 /* IR data packets can span USB messages - rem */
1014 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001015 if ((ir->cmd == MCE_CMD_PORT_IR) ||
1016 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -03001017 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001018 ir->parser_state = SUBCMD;
1019 continue;
1020 }
1021 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001022 mceusb_dev_printdata(ir, ir->buf_in,
1023 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -03001024 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001025 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001026 else
1027 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001028 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001029 }
1030
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001031 if (ir->parser_state != CMD_HEADER && !ir->rem)
1032 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001033 }
Sean Youngb83bfd12012-08-13 08:59:47 -03001034 if (event) {
1035 mce_dbg(ir->dev, "processed IR data, calling ir_raw_event_handle\n");
1036 ir_raw_event_handle(ir->rc);
1037 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001038}
1039
Sean Young6ac454a2012-07-15 13:31:31 -03001040static void mceusb_dev_recv(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -03001041{
1042 struct mceusb_dev *ir;
1043 int buf_len;
1044
1045 if (!urb)
1046 return;
1047
1048 ir = urb->context;
1049 if (!ir) {
1050 usb_unlink_urb(urb);
1051 return;
1052 }
1053
1054 buf_len = urb->actual_length;
1055
Jarod Wilson66e89522010-06-01 17:32:08 -03001056 if (ir->send_flags == RECV_FLAG_IN_PROGRESS) {
1057 ir->send_flags = SEND_FLAG_COMPLETE;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001058 mce_dbg(ir->dev, "setup answer received %d bytes\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001059 buf_len);
1060 }
1061
1062 switch (urb->status) {
1063 /* success */
1064 case 0:
1065 mceusb_process_ir_data(ir, buf_len);
1066 break;
1067
1068 case -ECONNRESET:
1069 case -ENOENT:
1070 case -ESHUTDOWN:
1071 usb_unlink_urb(urb);
1072 return;
1073
1074 case -EPIPE:
1075 default:
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001076 mce_dbg(ir->dev, "Error: urb status = %d\n", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001077 break;
1078 }
1079
1080 usb_submit_urb(urb, GFP_ATOMIC);
1081}
1082
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001083static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1084{
1085 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1086 ir->emver = 1;
1087 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1088}
1089
Jarod Wilson66e89522010-06-01 17:32:08 -03001090static void mceusb_gen1_init(struct mceusb_dev *ir)
1091{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001092 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001093 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001094 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001095
1096 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1097 if (!data) {
1098 dev_err(dev, "%s: memory allocation failed!\n", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001099 return;
1100 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001101
1102 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001103 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001104 * on the receive control pipe and expect a certain value pair back
1105 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001106 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1107 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001108 data, USB_CTRL_MSG_SZ, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001109 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
1110 mce_dbg(dev, "%s - data[0] = %d, data[1] = %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001111 __func__, data[0], data[1]);
1112
1113 /* set feature: bit rate 38400 bps */
1114 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1115 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1116 0xc04e, 0x0000, NULL, 0, HZ * 3);
1117
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001118 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001119
1120 /* bRequest 4: set char length to 8 bits */
1121 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1122 4, USB_TYPE_VENDOR,
1123 0x0808, 0x0000, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001124 mce_dbg(dev, "%s - retB = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001125
1126 /* bRequest 2: set handshaking to use DTR/DSR */
1127 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1128 2, USB_TYPE_VENDOR,
1129 0x0000, 0x0100, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001130 mce_dbg(dev, "%s - retC = %d\n", __func__, ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001131
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001132 /* device resume */
1133 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001134
1135 /* get hw/sw revision? */
1136 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001137
Jarod Wilson657290b2010-06-16 17:10:05 -03001138 kfree(data);
Sean Young8dfef672013-01-29 08:19:29 -03001139}
Jarod Wilson66e89522010-06-01 17:32:08 -03001140
1141static void mceusb_gen2_init(struct mceusb_dev *ir)
1142{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001143 /* device resume */
1144 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001145
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001146 /* get wake version (protocol, key, address) */
1147 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1148
1149 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001150 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001151}
1152
Jarod Wilson22b07662010-07-08 12:38:57 -03001153static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001154{
Jarod Wilsona411e832011-07-18 16:54:26 -03001155 int i;
1156 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1157 MCE_CMD_GETPORTSTATUS, 0x00 };
1158
1159 /* defaults, if the hardware doesn't support querying */
1160 ir->num_txports = 2;
1161 ir->num_rxports = 2;
1162
1163 /* get number of tx and rx ports */
1164 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1165
Jarod Wilson66e89522010-06-01 17:32:08 -03001166 /* get the carrier and frequency */
1167 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001168
Jarod Wilsona411e832011-07-18 16:54:26 -03001169 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001170 /* get the transmitter bitmask */
1171 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001172
1173 /* get receiver timeout value */
1174 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001175
1176 /* get receiver sensor setting */
1177 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001178
1179 for (i = 0; i < ir->num_txports; i++) {
1180 cmdbuf[2] = i;
1181 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1182 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001183}
1184
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001185static void mceusb_flash_led(struct mceusb_dev *ir)
1186{
1187 if (ir->emver < 2)
1188 return;
1189
1190 mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
1191}
1192
David Härdemand8b4b582010-10-29 16:08:23 -03001193static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001194{
Jarod Wilson66e89522010-06-01 17:32:08 -03001195 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001196 struct rc_dev *rc;
1197 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001198
David Härdemand8b4b582010-10-29 16:08:23 -03001199 rc = rc_allocate_device();
1200 if (!rc) {
1201 dev_err(dev, "remote dev allocation failed\n");
1202 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001203 }
1204
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001205 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001206 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001207 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001208 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001209 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1210 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1211
Jarod Wilson66e89522010-06-01 17:32:08 -03001212 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001213
David Härdemand8b4b582010-10-29 16:08:23 -03001214 rc->input_name = ir->name;
1215 rc->input_phys = ir->phys;
1216 usb_to_input_id(ir->usbdev, &rc->input_id);
1217 rc->dev.parent = dev;
1218 rc->priv = ir;
1219 rc->driver_type = RC_DRIVER_IR_RAW;
David Härdemanc003ab12012-10-11 19:11:54 -03001220 rc->allowed_protos = RC_BIT_ALL;
Rafi Rubin9824ae42011-07-03 17:13:53 -03001221 rc->timeout = MS_TO_NS(100);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001222 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001223 rc->s_tx_mask = mceusb_set_tx_mask;
1224 rc->s_tx_carrier = mceusb_set_tx_carrier;
1225 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001226 }
David Härdemand8b4b582010-10-29 16:08:23 -03001227 rc->driver_name = DRIVER_NAME;
1228 rc->map_name = mceusb_model[ir->model].rc_map ?
1229 mceusb_model[ir->model].rc_map : RC_MAP_RC6_MCE;
Jarod Wilson66e89522010-06-01 17:32:08 -03001230
David Härdemand8b4b582010-10-29 16:08:23 -03001231 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001232 if (ret < 0) {
David Härdemand8b4b582010-10-29 16:08:23 -03001233 dev_err(dev, "remote dev registration failed\n");
1234 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001235 }
1236
David Härdemand8b4b582010-10-29 16:08:23 -03001237 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001238
David Härdemand8b4b582010-10-29 16:08:23 -03001239out:
1240 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001241 return NULL;
1242}
1243
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001244static int mceusb_dev_probe(struct usb_interface *intf,
1245 const struct usb_device_id *id)
Jarod Wilson66e89522010-06-01 17:32:08 -03001246{
1247 struct usb_device *dev = interface_to_usbdev(intf);
1248 struct usb_host_interface *idesc;
1249 struct usb_endpoint_descriptor *ep = NULL;
1250 struct usb_endpoint_descriptor *ep_in = NULL;
1251 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001252 struct mceusb_dev *ir = NULL;
Jarod Wilsond732a722010-06-16 17:10:46 -03001253 int pipe, maxp, i;
Jarod Wilson66e89522010-06-01 17:32:08 -03001254 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001255 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001256 bool is_gen3;
1257 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001258 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001259 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001260
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001261 mce_dbg(&intf->dev, "%s called\n", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001262
Jarod Wilson66e89522010-06-01 17:32:08 -03001263 idesc = intf->cur_altsetting;
1264
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001265 is_gen3 = mceusb_model[model].mce_gen3;
1266 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001267 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001268 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001269
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001270 /* There are multi-function devices with non-IR interfaces */
1271 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1272 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001273
1274 /* step through the endpoints to find first bulk in and out endpoint */
1275 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1276 ep = &idesc->endpoint[i].desc;
1277
1278 if ((ep_in == NULL)
1279 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1280 == USB_DIR_IN)
1281 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1282 == USB_ENDPOINT_XFER_BULK)
1283 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1284 == USB_ENDPOINT_XFER_INT))) {
1285
Jarod Wilson66e89522010-06-01 17:32:08 -03001286 ep_in = ep;
1287 ep_in->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001288 ep_in->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001289 mce_dbg(&intf->dev, "acceptable inbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001290 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001291 }
1292
1293 if ((ep_out == NULL)
1294 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1295 == USB_DIR_OUT)
1296 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1297 == USB_ENDPOINT_XFER_BULK)
1298 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1299 == USB_ENDPOINT_XFER_INT))) {
1300
Jarod Wilson66e89522010-06-01 17:32:08 -03001301 ep_out = ep;
1302 ep_out->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001303 ep_out->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001304 mce_dbg(&intf->dev, "acceptable outbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001305 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001306 }
1307 }
1308 if (ep_in == NULL) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001309 mce_dbg(&intf->dev, "inbound and/or endpoint not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001310 return -ENODEV;
1311 }
1312
1313 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1314 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1315
1316 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1317 if (!ir)
1318 goto mem_alloc_fail;
1319
1320 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1321 if (!ir->buf_in)
1322 goto buf_in_alloc_fail;
1323
1324 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1325 if (!ir->urb_in)
1326 goto urb_in_alloc_fail;
1327
1328 ir->usbdev = dev;
1329 ir->dev = &intf->dev;
1330 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001331 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001332 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001333 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001334 ir->model = model;
1335
Jarod Wilson66e89522010-06-01 17:32:08 -03001336 /* Saving usb interface data for use by the transmitter routine */
Jarod Wilson66e89522010-06-01 17:32:08 -03001337 ir->usb_ep_out = ep_out;
1338
1339 if (dev->descriptor.iManufacturer
1340 && usb_string(dev, dev->descriptor.iManufacturer,
1341 buf, sizeof(buf)) > 0)
1342 strlcpy(name, buf, sizeof(name));
1343 if (dev->descriptor.iProduct
1344 && usb_string(dev, dev->descriptor.iProduct,
1345 buf, sizeof(buf)) > 0)
1346 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1347 " %s", buf);
1348
David Härdemand8b4b582010-10-29 16:08:23 -03001349 ir->rc = mceusb_init_rc_dev(ir);
1350 if (!ir->rc)
1351 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001352
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001353 /* wire up inbound data handler */
Sean Young6ac454a2012-07-15 13:31:31 -03001354 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1355 mceusb_dev_recv, ir, ep_in->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -03001356 ir->urb_in->transfer_dma = ir->dma_in;
1357 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1358
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001359 /* flush buffers on the device */
1360 mce_dbg(&intf->dev, "Flushing receive buffers\n");
1361 mce_flush_rx_buffer(ir, maxp);
1362
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001363 /* figure out which firmware/emulator version this hardware has */
1364 mceusb_get_emulator_version(ir);
1365
Jarod Wilson66e89522010-06-01 17:32:08 -03001366 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001367 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001368 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001369 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001370 mceusb_gen2_init(ir);
1371
Jarod Wilson22b07662010-07-08 12:38:57 -03001372 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001373
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001374 mceusb_flash_led(ir);
1375
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001376 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001377 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001378
1379 usb_set_intfdata(intf, ir);
1380
Jarod Wilsonfa334892011-07-18 16:54:23 -03001381 /* enable wake via this device */
1382 device_set_wakeup_capable(ir->dev, true);
1383 device_set_wakeup_enable(ir->dev, true);
1384
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001385 dev_info(&intf->dev, "Registered %s with mce emulator interface "
1386 "version %x\n", name, ir->emver);
Jarod Wilsona411e832011-07-18 16:54:26 -03001387 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and "
1388 "%x rx sensors (0x%x active)\n",
1389 ir->num_txports, ir->txports_cabled,
1390 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001391
1392 return 0;
1393
1394 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001395rc_dev_fail:
Jarod Wilson66e89522010-06-01 17:32:08 -03001396 usb_free_urb(ir->urb_in);
1397urb_in_alloc_fail:
1398 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1399buf_in_alloc_fail:
1400 kfree(ir);
1401mem_alloc_fail:
1402 dev_err(&intf->dev, "%s: device setup failed!\n", __func__);
1403
1404 return -ENOMEM;
1405}
1406
1407
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001408static void mceusb_dev_disconnect(struct usb_interface *intf)
Jarod Wilson66e89522010-06-01 17:32:08 -03001409{
1410 struct usb_device *dev = interface_to_usbdev(intf);
1411 struct mceusb_dev *ir = usb_get_intfdata(intf);
1412
1413 usb_set_intfdata(intf, NULL);
1414
1415 if (!ir)
1416 return;
1417
1418 ir->usbdev = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -03001419 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001420 usb_kill_urb(ir->urb_in);
1421 usb_free_urb(ir->urb_in);
1422 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
1423
1424 kfree(ir);
1425}
1426
1427static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1428{
1429 struct mceusb_dev *ir = usb_get_intfdata(intf);
1430 dev_info(ir->dev, "suspend\n");
1431 usb_kill_urb(ir->urb_in);
1432 return 0;
1433}
1434
1435static int mceusb_dev_resume(struct usb_interface *intf)
1436{
1437 struct mceusb_dev *ir = usb_get_intfdata(intf);
1438 dev_info(ir->dev, "resume\n");
1439 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1440 return -EIO;
1441 return 0;
1442}
1443
1444static struct usb_driver mceusb_dev_driver = {
1445 .name = DRIVER_NAME,
1446 .probe = mceusb_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001447 .disconnect = mceusb_dev_disconnect,
Jarod Wilson66e89522010-06-01 17:32:08 -03001448 .suspend = mceusb_dev_suspend,
1449 .resume = mceusb_dev_resume,
1450 .reset_resume = mceusb_dev_resume,
1451 .id_table = mceusb_dev_table
1452};
1453
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001454module_usb_driver(mceusb_dev_driver);
Jarod Wilson66e89522010-06-01 17:32:08 -03001455
1456MODULE_DESCRIPTION(DRIVER_DESC);
1457MODULE_AUTHOR(DRIVER_AUTHOR);
1458MODULE_LICENSE("GPL");
1459MODULE_DEVICE_TABLE(usb, mceusb_dev_table);
1460
1461module_param(debug, bool, S_IRUGO | S_IWUSR);
1462MODULE_PARM_DESC(debug, "Debug enabled or not");