blob: 4530237cbb672a2182fd2a6b21393ade107d2f92 [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 *
Jarod Wilson66e89522010-06-01 17:32:08 -030034 */
35
36#include <linux/device.h>
37#include <linux/module.h>
38#include <linux/slab.h>
A Suna06854a2017-03-26 15:28:08 -030039#include <linux/workqueue.h>
Paul Bender635f76b2010-12-16 13:23:07 -030040#include <linux/usb.h>
41#include <linux/usb/input.h>
Jarod Wilsonfa3348982011-07-18 16:54:23 -030042#include <linux/pm_wakeup.h>
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030043#include <media/rc-core.h>
Jarod Wilson66e89522010-06-01 17:32:08 -030044
A Suna06854a2017-03-26 15:28:08 -030045#define DRIVER_VERSION "1.93"
Jarod Wilsonfda516b2011-07-18 16:54:29 -030046#define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
Jarod Wilson66e89522010-06-01 17:32:08 -030047#define DRIVER_DESC "Windows Media Center Ed. eHome Infrared Transceiver " \
48 "device driver"
49#define DRIVER_NAME "mceusb"
50
Jarod Wilson4a883912010-10-22 14:42:54 -030051#define USB_CTRL_MSG_SZ 2 /* Size of usb ctrl msg on gen1 hw */
52#define MCE_G1_INIT_MSGS 40 /* Init messages on gen1 hw to throw out */
Jarod Wilson66e89522010-06-01 17:32:08 -030053
54/* MCE constants */
Jarod Wilson4a883912010-10-22 14:42:54 -030055#define MCE_CMDBUF_SIZE 384 /* MCE Command buffer length */
56#define MCE_TIME_UNIT 50 /* Approx 50us resolution */
57#define MCE_CODE_LENGTH 5 /* Normal length of packet (with header) */
58#define MCE_PACKET_SIZE 4 /* Normal length of packet (without header) */
59#define MCE_IRDATA_HEADER 0x84 /* Actual header format is 0x80 + num_bytes */
60#define MCE_IRDATA_TRAILER 0x80 /* End of IR data */
Jarod Wilson4a883912010-10-22 14:42:54 -030061#define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */
62#define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
63#define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */
64#define MCE_PULSE_MASK 0x7f /* Pulse mask */
65#define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */
66
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030067/*
68 * The interface between the host and the IR hardware is command-response
69 * based. All commands and responses have a consistent format, where a lead
70 * byte always identifies the type of data following it. The lead byte has
71 * a port value in the 3 highest bits and a length value in the 5 lowest
72 * bits.
73 *
74 * The length field is overloaded, with a value of 11111 indicating that the
75 * following byte is a command or response code, and the length of the entire
76 * message is determined by the code. If the length field is not 11111, then
77 * it specifies the number of bytes of port data that follow.
78 */
79#define MCE_CMD 0x1f
80#define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */
81#define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */
82#define MCE_PORT_SER 0x6 /* 0xc0 thru 0xdf flush & 0x1f bytes */
Sean Young6b4a16c2014-01-20 19:10:44 -030083#define MCE_PORT_MASK 0xe0 /* Mask out command bits */
Jarod Wilson4a883912010-10-22 14:42:54 -030084
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030085/* Command port headers */
86#define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */
87#define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */
88
89/* Commands that set device state (2-4 bytes in length) */
90#define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */
91#define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */
92#define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */
93#define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */
94#define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */
95#define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */
96#define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */
97
98/* Commands that query device state (all 2 bytes, unless noted) */
99#define MCE_CMD_GETIRCFS 0x07 /* Get carrier */
100#define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */
101#define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */
102#define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */
103#define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */
104#define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */
105#define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */
106#define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */
107#define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */
108#define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */
109#define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */
110
111/* Misc commands */
112#define MCE_CMD_NOP 0xff /* No operation */
113
114/* Responses to commands (non-error cases) */
115#define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */
116#define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */
117#define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */
118#define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */
119#define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */
120#define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */
121#define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */
122#define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */
123#define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */
124#define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */
125#define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */
126#define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */
127#define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */
128
129/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
130#define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */
131#define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */
132
133/* Misc commands/responses not defined in the MCE remote/transceiver spec */
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300134#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -0300135#define MCE_CMD_PING 0x03 /* Ping device */
136#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
137#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300138#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
139#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
140#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
Jarod Wilson4a883912010-10-22 14:42:54 -0300141#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
142#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300143#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
144#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300145#define MCE_CMD_NULL 0x00 /* These show up various places... */
Jarod Wilson66e89522010-06-01 17:32:08 -0300146
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300147/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
148 * then we're looking at a raw IR data sample */
149#define MCE_COMMAND_IRDATA 0x80
150#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
Jarod Wilson66e89522010-06-01 17:32:08 -0300151
Jarod Wilson66e89522010-06-01 17:32:08 -0300152#define VENDOR_PHILIPS 0x0471
153#define VENDOR_SMK 0x0609
154#define VENDOR_TATUNG 0x1460
155#define VENDOR_GATEWAY 0x107b
156#define VENDOR_SHUTTLE 0x1308
157#define VENDOR_SHUTTLE2 0x051c
158#define VENDOR_MITSUMI 0x03ee
159#define VENDOR_TOPSEED 0x1784
160#define VENDOR_RICAVISION 0x179d
161#define VENDOR_ITRON 0x195d
162#define VENDOR_FIC 0x1509
163#define VENDOR_LG 0x043e
164#define VENDOR_MICROSOFT 0x045e
165#define VENDOR_FORMOSA 0x147a
166#define VENDOR_FINTEK 0x1934
167#define VENDOR_PINNACLE 0x2304
168#define VENDOR_ECS 0x1019
169#define VENDOR_WISTRON 0x0fb8
170#define VENDOR_COMPRO 0x185b
171#define VENDOR_NORTHSTAR 0x04eb
172#define VENDOR_REALTEK 0x0bda
173#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300174#define VENDOR_CONEXANT 0x0572
Mark Lorda4de5f02012-07-11 18:53:28 -0300175#define VENDOR_TWISTEDMELON 0x2596
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300176#define VENDOR_HAUPPAUGE 0x2040
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300177#define VENDOR_PCTV 0x2013
Olli Salonene1866132016-03-17 10:11:09 -0300178#define VENDOR_ADAPTEC 0x03f3
Jarod Wilson66e89522010-06-01 17:32:08 -0300179
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300180enum mceusb_model_type {
181 MCE_GEN2 = 0, /* Most boards */
182 MCE_GEN1,
183 MCE_GEN3,
184 MCE_GEN2_TX_INV,
185 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300186 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300187 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300188 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300189 MCE_GEN2_NO_TX,
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300190 HAUPPAUGE_CX_HYBRID_TV,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300191};
192
193struct mceusb_model {
194 u32 mce_gen1:1;
195 u32 mce_gen2:1;
196 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300197 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300198 u32 no_tx:1;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300199
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300200 int ir_intfnum;
201
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300202 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300203 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300204};
205
206static const struct mceusb_model mceusb_model[] = {
207 [MCE_GEN1] = {
208 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300209 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300210 },
211 [MCE_GEN2] = {
212 .mce_gen2 = 1,
213 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300214 [MCE_GEN2_NO_TX] = {
215 .mce_gen2 = 1,
216 .no_tx = 1,
217 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300218 [MCE_GEN2_TX_INV] = {
219 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300220 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300221 },
222 [MCE_GEN3] = {
223 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300224 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300225 },
226 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300227 /*
228 * In fact, the EVK is shipped without
229 * remotes, but we should have something handy,
230 * to allow testing it
231 */
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300232 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
233 },
234 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300235 .no_tx = 1, /* tx isn't wired up at all */
236 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300237 },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300238 [HAUPPAUGE_CX_HYBRID_TV] = {
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300239 .no_tx = 1, /* eeprom says it has no tx */
240 .name = "Conexant Hybrid TV (cx231xx) MCE IR no TX",
241 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300242 [MULTIFUNCTION] = {
243 .mce_gen2 = 1,
244 .ir_intfnum = 2,
245 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300246 [TIVO_KIT] = {
247 .mce_gen2 = 1,
248 .rc_map = RC_MAP_TIVO,
249 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300250};
251
Jarod Wilson66e89522010-06-01 17:32:08 -0300252static struct usb_device_id mceusb_dev_table[] = {
253 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300254 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
255 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300256 /* Philips Infrared Transceiver - Sahara branded */
257 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
258 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300259 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
260 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300261 /* Philips SRM5100 */
262 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
263 /* Philips Infrared Transceiver - Omaura */
264 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
265 /* Philips Infrared Transceiver - Spinel plus */
266 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
267 /* Philips eHome Infrared Transceiver */
268 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300269 /* Philips/Spinel plus IR transceiver for ASUS */
270 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
271 /* Philips/Spinel plus IR transceiver for ASUS */
272 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300273 /* Philips IR transceiver (Dell branded) */
Sean Young8dfef672013-01-29 08:19:29 -0300274 { USB_DEVICE(VENDOR_PHILIPS, 0x2093),
275 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300276 /* Realtek MCE IR Receiver and card reader */
277 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
278 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300279 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300280 { USB_DEVICE(VENDOR_SMK, 0x031d),
281 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300282 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300283 { USB_DEVICE(VENDOR_SMK, 0x0322),
284 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300285 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300286 { USB_DEVICE(VENDOR_SMK, 0x0334),
287 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300288 /* SMK eHome Infrared Transceiver */
289 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300290 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
291 { USB_DEVICE(VENDOR_SMK, 0x0353),
292 .driver_info = MCE_GEN2_NO_TX },
Olli Salonen18693842016-03-17 10:11:10 -0300293 /* SMK RXX6000 Infrared Receiver */
294 { USB_DEVICE(VENDOR_SMK, 0x0357),
295 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300296 /* Tatung eHome Infrared Transceiver */
297 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
298 /* Shuttle eHome Infrared Transceiver */
299 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
300 /* Shuttle eHome Infrared Transceiver */
301 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
302 /* Gateway eHome Infrared Transceiver */
303 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
304 /* Mitsumi */
305 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
306 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300307 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
308 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300309 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300310 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
311 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300312 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300313 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
314 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300315 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300316 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
317 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300318 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300319 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
320 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300321 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300322 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300323 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300324 /* Ricavision internal Infrared Transceiver */
325 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
326 /* Itron ione Libra Q-11 */
327 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
328 /* FIC eHome Infrared Transceiver */
329 { USB_DEVICE(VENDOR_FIC, 0x9242) },
330 /* LG eHome Infrared Transceiver */
331 { USB_DEVICE(VENDOR_LG, 0x9803) },
332 /* Microsoft MCE Infrared Transceiver */
333 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
334 /* Formosa eHome Infrared Transceiver */
335 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
336 /* Formosa21 / eHome Infrared Receiver */
337 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
338 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300339 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
340 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300341 /* Formosa Industrial Computing / Beanbag Emulation Device */
342 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
343 /* Formosa21 / eHome Infrared Receiver */
344 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
345 /* Formosa Industrial Computing AIM IR605/A */
346 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
347 /* Formosa Industrial Computing */
348 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilson22f17322012-03-12 13:27:03 -0300349 /* Formosa Industrial Computing */
350 { USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300351 /* Fintek eHome Infrared Transceiver (HP branded) */
Sean Youngdb8ee102013-01-29 08:19:30 -0300352 { USB_DEVICE(VENDOR_FINTEK, 0x5168),
353 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300354 /* Fintek eHome Infrared Transceiver */
355 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
356 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
357 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
358 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300359 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
360 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300361 /* Elitegroup Computer Systems IR */
362 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
363 /* Wistron Corp. eHome Infrared Receiver */
364 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
365 /* Compro K100 */
366 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
367 /* Compro K100 v2 */
368 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
369 /* Northstar Systems, Inc. eHome Infrared Transceiver */
370 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
371 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300372 { USB_DEVICE(VENDOR_TIVO, 0x2000),
373 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300374 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300375 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
376 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300377 /* Conexant Hybrid TV RDU253S Polaris */
378 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
379 .driver_info = CX_HYBRID_TV },
Mark Lorda4de5f02012-07-11 18:53:28 -0300380 /* Twisted Melon Inc. - Manta Mini Receiver */
381 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
382 /* Twisted Melon Inc. - Manta Pico Receiver */
383 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
384 /* Twisted Melon Inc. - Manta Transceiver */
385 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300386 /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
387 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
388 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300389 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb131),
390 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Matthias Schwarzott66756612014-08-31 08:35:10 -0300391 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb138),
392 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
393 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb139),
394 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300395 { USB_DEVICE(VENDOR_PCTV, 0x0259),
396 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
397 { USB_DEVICE(VENDOR_PCTV, 0x025e),
398 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Olli Salonene1866132016-03-17 10:11:09 -0300399 /* Adaptec / HP eHome Receiver */
400 { USB_DEVICE(VENDOR_ADAPTEC, 0x0094) },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300401
Jarod Wilson66e89522010-06-01 17:32:08 -0300402 /* Terminating entry */
403 { }
404};
405
Jarod Wilson66e89522010-06-01 17:32:08 -0300406/* data structure for each usb transceiver */
407struct mceusb_dev {
408 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300409 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300410
411 /* optional features we can enable */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300412 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300413
414 /* core device bits */
415 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300416
417 /* usb */
418 struct usb_device *usbdev;
419 struct urb *urb_in;
A Suna06854a2017-03-26 15:28:08 -0300420 unsigned int pipe_in;
Jarod Wilson66e89522010-06-01 17:32:08 -0300421 struct usb_endpoint_descriptor *usb_ep_out;
A Sunc779a9c2017-04-13 05:06:47 -0300422 unsigned int pipe_out;
Jarod Wilson66e89522010-06-01 17:32:08 -0300423
424 /* buffers and dma */
425 unsigned char *buf_in;
426 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300427 dma_addr_t dma_in;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300428
429 enum {
430 CMD_HEADER = 0,
431 SUBCMD,
432 CMD_DATA,
433 PARSE_IRDATA,
434 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300435
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300436 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300437
438 struct {
439 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300440 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300441 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300442 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300443 } flags;
444
Jarod Wilsone23fb962010-06-16 17:55:52 -0300445 /* transmit support */
Jarod Wilsone23fb962010-06-16 17:55:52 -0300446 u32 carrier;
447 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300448
449 char name[128];
450 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300451 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300452
453 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300454 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300455 u8 num_txports; /* number of transmit ports */
456 u8 num_rxports; /* number of receive sensors */
457 u8 txports_cabled; /* bitmask of transmitters with cable */
458 u8 rxports_active; /* bitmask of active receive sensors */
A Suna06854a2017-03-26 15:28:08 -0300459
460 /*
461 * support for async error handler mceusb_deferred_kevent()
462 * where usb_clear_halt(), usb_reset_configuration(),
463 * usb_reset_device(), etc. must be done in process context
464 */
465 struct work_struct kevent;
466 unsigned long kevent_flags;
467# define EVENT_TX_HALT 0
468# define EVENT_RX_HALT 1
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,
A Sun5c809922017-03-26 16:04:51 -0300542 int buf_len, int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300543{
Sean Young6b4a16c2014-01-20 19:10:44 -0300544#if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
545 char *inout;
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;
Sean Young6b4a16c2014-01-20 19:10:44 -0300548 int start, skip = 0;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300549 u32 carrier, period;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300550
Jarod Wilson657290b2010-06-16 17:10:05 -0300551 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300552 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300553 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300554
Jarod Wilson36e9d262010-10-22 16:49:35 -0300555 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300556 return;
557
Sean Young6b4a16c2014-01-20 19:10:44 -0300558 dev_dbg(dev, "%cx data: %*ph (length=%d)",
A Sun5c809922017-03-26 16:04:51 -0300559 (out ? 't' : 'r'),
560 min(len, buf_len - offset), buf + offset, len);
Jarod Wilson66e89522010-06-01 17:32:08 -0300561
Sean Young6b4a16c2014-01-20 19:10:44 -0300562 inout = out ? "Request" : "Got";
Jarod Wilson66e89522010-06-01 17:32:08 -0300563
Jarod Wilson36e9d262010-10-22 16:49:35 -0300564 start = offset + skip;
565 cmd = buf[start] & 0xff;
566 subcmd = buf[start + 1] & 0xff;
567 data1 = buf[start + 2] & 0xff;
568 data2 = buf[start + 3] & 0xff;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300569 data3 = buf[start + 4] & 0xff;
570 data4 = buf[start + 5] & 0xff;
Jarod Wilson66e89522010-06-01 17:32:08 -0300571
572 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300573 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300574 if (subcmd == MCE_CMD_NULL)
575 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300576 if ((subcmd == MCE_CMD_PORT_SYS) &&
577 (data1 == MCE_CMD_RESUME))
Sean Young6b4a16c2014-01-20 19:10:44 -0300578 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300579 else
Sean Young6b4a16c2014-01-20 19:10:44 -0300580 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300581 cmd, subcmd);
582 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300583 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300584 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300585 case MCE_RSP_EQEMVER:
586 if (!out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300587 dev_dbg(dev, "Emulator interface version %x",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300588 data1);
589 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300590 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300591 if (len == 2)
Sean Young6b4a16c2014-01-20 19:10:44 -0300592 dev_dbg(dev, "Get hw/sw rev?");
Jarod Wilson66e89522010-06-01 17:32:08 -0300593 else
Mauro Carvalho Chehabeef8fc32016-03-06 10:00:09 -0300594 dev_dbg(dev, "hw/sw rev %*ph",
595 4, &buf[start + 2]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300596 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300597 case MCE_CMD_RESUME:
Sean Young6b4a16c2014-01-20 19:10:44 -0300598 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300599 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300600 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300601 dev_dbg(dev, "Illegal PORT_SYS command");
Jarod Wilson66e89522010-06-01 17:32:08 -0300602 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300603 case MCE_RSP_EQWAKEVERSION:
604 if (!out)
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200605 dev_dbg(dev, "Wake version, proto: 0x%02x, payload: 0x%02x, address: 0x%02x, version: 0x%02x",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300606 data1, data2, data3, data4);
607 break;
608 case MCE_RSP_GETPORTSTATUS:
609 if (!out)
610 /* We use data1 + 1 here, to match hw labels */
Sean Young6b4a16c2014-01-20 19:10:44 -0300611 dev_dbg(dev, "TX port %d: blaster is%s connected",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300612 data1 + 1, data4 ? " not" : "");
613 break;
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300614 case MCE_CMD_FLASHLED:
Sean Young6b4a16c2014-01-20 19:10:44 -0300615 dev_dbg(dev, "Attempting to flash LED");
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300616 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300617 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300618 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300619 cmd, subcmd);
620 break;
621 }
622 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300623 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300624 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300625 case MCE_CMD_SIG_END:
Sean Young6b4a16c2014-01-20 19:10:44 -0300626 dev_dbg(dev, "End of signal");
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300627 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300628 case MCE_CMD_PING:
Sean Young6b4a16c2014-01-20 19:10:44 -0300629 dev_dbg(dev, "Ping");
Jarod Wilson66e89522010-06-01 17:32:08 -0300630 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300631 case MCE_CMD_UNKNOWN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300632 dev_dbg(dev, "Resp to 9f 05 of 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300633 data1, data2);
634 break;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300635 case MCE_RSP_EQIRCFS:
636 period = DIV_ROUND_CLOSEST(
Jean Delvareed7dd242012-09-01 14:53:57 -0300637 (1U << data1 * 2) * (data2 + 1), 10);
Jarod Wilsone217fb42011-07-18 16:54:28 -0300638 if (!period)
639 break;
640 carrier = (1000 * 1000) / period;
Sean Young6b4a16c2014-01-20 19:10:44 -0300641 dev_dbg(dev, "%s carrier of %u Hz (period %uus)",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300642 inout, carrier, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300643 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300644 case MCE_CMD_GETIRCFS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300645 dev_dbg(dev, "Get carrier mode and freq");
Jarod Wilson66e89522010-06-01 17:32:08 -0300646 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300647 case MCE_RSP_EQIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300648 dev_dbg(dev, "%s transmit blaster mask of 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300649 inout, data1);
650 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300651 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300652 /* value is in units of 50us, so x*50/1000 ms */
Jarod Wilsone217fb42011-07-18 16:54:28 -0300653 period = ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000;
Sean Young6b4a16c2014-01-20 19:10:44 -0300654 dev_dbg(dev, "%s receive timeout of %d ms",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300655 inout, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300656 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300657 case MCE_CMD_GETIRTIMEOUT:
Sean Young6b4a16c2014-01-20 19:10:44 -0300658 dev_dbg(dev, "Get receive timeout");
Jarod Wilson66e89522010-06-01 17:32:08 -0300659 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300660 case MCE_CMD_GETIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300661 dev_dbg(dev, "Get transmit blaster mask");
Jarod Wilson66e89522010-06-01 17:32:08 -0300662 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300663 case MCE_RSP_EQIRRXPORTEN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300664 dev_dbg(dev, "%s %s-range receive sensor in use",
Jarod Wilson66e89522010-06-01 17:32:08 -0300665 inout, data1 == 0x02 ? "short" : "long");
666 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300667 case MCE_CMD_GETIRRXPORTEN:
668 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300669 if (out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300670 dev_dbg(dev, "Get receive sensor");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300671 else if (ir->learning_enabled)
Sean Young6b4a16c2014-01-20 19:10:44 -0300672 dev_dbg(dev, "RX pulse count: %d",
Jarod Wilson66e89522010-06-01 17:32:08 -0300673 ((data1 << 8) | data2));
674 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300675 case MCE_RSP_EQIRNUMPORTS:
676 if (out)
677 break;
Sean Young6b4a16c2014-01-20 19:10:44 -0300678 dev_dbg(dev, "Num TX ports: %x, num RX ports: %x",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300679 data1, data2);
Jarod Wilson66e89522010-06-01 17:32:08 -0300680 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300681 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300682 dev_dbg(dev, "Illegal PORT_IR command");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300683 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300684 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300685 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300686 cmd, subcmd);
687 break;
688 }
689 break;
690 default:
691 break;
692 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300693
694 if (cmd == MCE_IRDATA_TRAILER)
Sean Young6b4a16c2014-01-20 19:10:44 -0300695 dev_dbg(dev, "End of raw IR data");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300696 else if ((cmd != MCE_CMD_PORT_IR) &&
697 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Sean Young6b4a16c2014-01-20 19:10:44 -0300698 dev_dbg(dev, "Raw IR data, %d pulse/space samples", ir->rem);
699#endif
Jarod Wilson66e89522010-06-01 17:32:08 -0300700}
701
A Suna06854a2017-03-26 15:28:08 -0300702/*
703 * Schedule work that can't be done in interrupt handlers
704 * (mceusb_dev_recv() and mce_async_callback()) nor tasklets.
705 * Invokes mceusb_deferred_kevent() for recovering from
706 * error events specified by the kevent bit field.
707 */
708static void mceusb_defer_kevent(struct mceusb_dev *ir, int kevent)
709{
710 set_bit(kevent, &ir->kevent_flags);
711 if (!schedule_work(&ir->kevent))
712 dev_err(ir->dev, "kevent %d may have been dropped", kevent);
713 else
714 dev_dbg(ir->dev, "kevent %d scheduled", kevent);
715}
716
Sean Young6ac454a2012-07-15 13:31:31 -0300717static void mce_async_callback(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -0300718{
719 struct mceusb_dev *ir;
720 int len;
721
722 if (!urb)
723 return;
724
725 ir = urb->context;
Sean Young6b4a16c2014-01-20 19:10:44 -0300726
727 switch (urb->status) {
728 /* success */
729 case 0:
Jarod Wilson66e89522010-06-01 17:32:08 -0300730 len = urb->actual_length;
731
A Sun5c809922017-03-26 16:04:51 -0300732 mceusb_dev_printdata(ir, urb->transfer_buffer, len,
733 0, len, true);
Sean Young6b4a16c2014-01-20 19:10:44 -0300734 break;
735
736 case -ECONNRESET:
737 case -ENOENT:
738 case -EILSEQ:
739 case -ESHUTDOWN:
740 break;
741
742 case -EPIPE:
A Sunc779a9c2017-04-13 05:06:47 -0300743 dev_err(ir->dev, "Error: request urb status = %d (TX HALT)",
744 urb->status);
745 mceusb_defer_kevent(ir, EVENT_TX_HALT);
746 break;
747
Sean Young6b4a16c2014-01-20 19:10:44 -0300748 default:
749 dev_err(ir->dev, "Error: request urb status = %d", urb->status);
750 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300751 }
752
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300753 /* the transfer buffer and urb were allocated in mce_request_packet */
754 kfree(urb->transfer_buffer);
755 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300756}
757
A Sun5c809922017-03-26 16:04:51 -0300758/* request outgoing (send) usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300759static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
Sean Younge1159cb2016-04-14 17:42:50 -0300760 int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300761{
A Sunc779a9c2017-04-13 05:06:47 -0300762 int res;
Jarod Wilson66e89522010-06-01 17:32:08 -0300763 struct urb *async_urb;
764 struct device *dev = ir->dev;
765 unsigned char *async_buf;
766
Sean Younge1159cb2016-04-14 17:42:50 -0300767 async_urb = usb_alloc_urb(0, GFP_KERNEL);
768 if (unlikely(!async_urb)) {
A Sun5c809922017-03-26 16:04:51 -0300769 dev_err(dev, "Error, couldn't allocate urb!");
Jarod Wilson66e89522010-06-01 17:32:08 -0300770 return;
771 }
772
Sean Younge1159cb2016-04-14 17:42:50 -0300773 async_buf = kmalloc(size, GFP_KERNEL);
774 if (!async_buf) {
775 usb_free_urb(async_urb);
776 return;
777 }
778
779 /* outbound data */
A Sunc779a9c2017-04-13 05:06:47 -0300780 if (usb_endpoint_xfer_int(ir->usb_ep_out))
781 usb_fill_int_urb(async_urb, ir->usbdev, ir->pipe_out,
782 async_buf, size, mce_async_callback, ir,
Sean Younge1159cb2016-04-14 17:42:50 -0300783 ir->usb_ep_out->bInterval);
A Sunc779a9c2017-04-13 05:06:47 -0300784 else
785 usb_fill_bulk_urb(async_urb, ir->usbdev, ir->pipe_out,
786 async_buf, size, mce_async_callback, ir);
787
Sean Younge1159cb2016-04-14 17:42:50 -0300788 memcpy(async_buf, data, size);
789
A Sun5c809922017-03-26 16:04:51 -0300790 dev_dbg(dev, "send request called (size=%#x)", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300791
792 async_urb->transfer_buffer_length = size;
793 async_urb->dev = ir->usbdev;
794
795 res = usb_submit_urb(async_urb, GFP_ATOMIC);
796 if (res) {
A Sun5c809922017-03-26 16:04:51 -0300797 dev_err(dev, "send request FAILED! (res=%d)", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300798 return;
799 }
A Sun5c809922017-03-26 16:04:51 -0300800 dev_dbg(dev, "send request complete (res=%d)", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300801}
802
803static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
804{
Jarod Wilson4840b782011-07-18 16:54:24 -0300805 int rsize = sizeof(DEVICE_RESUME);
806
807 if (ir->need_reset) {
808 ir->need_reset = false;
Sean Younge1159cb2016-04-14 17:42:50 -0300809 mce_request_packet(ir, DEVICE_RESUME, rsize);
Jarod Wilson4840b782011-07-18 16:54:24 -0300810 msleep(10);
811 }
812
Sean Younge1159cb2016-04-14 17:42:50 -0300813 mce_request_packet(ir, data, size);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300814 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300815}
816
Jarod Wilsone23fb962010-06-16 17:55:52 -0300817/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300818static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300819{
David Härdemand8b4b582010-10-29 16:08:23 -0300820 struct mceusb_dev *ir = dev->priv;
Sean Youngdb8ee102013-01-29 08:19:30 -0300821 int i, length, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300822 int cmdcount = 0;
Sean Youngdb8ee102013-01-29 08:19:30 -0300823 unsigned char cmdbuf[MCE_CMDBUF_SIZE];
Jarod Wilsone23fb962010-06-16 17:55:52 -0300824
825 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300826 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
827 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300828 cmdbuf[cmdcount++] = ir->tx_mask;
829
Sean Youngdb8ee102013-01-29 08:19:30 -0300830 /* Send the set TX ports command */
831 mce_async_out(ir, cmdbuf, cmdcount);
832 cmdcount = 0;
833
Jarod Wilsone23fb962010-06-16 17:55:52 -0300834 /* Generate mce packet data */
835 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300836 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
837
838 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
839
840 /* Insert mce packet header every 4th entry */
841 if ((cmdcount < MCE_CMDBUF_SIZE) &&
Sean Youngdb8ee102013-01-29 08:19:30 -0300842 (cmdcount % MCE_CODE_LENGTH) == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300843 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300844
845 /* Insert mce packet data */
846 if (cmdcount < MCE_CMDBUF_SIZE)
847 cmdbuf[cmdcount++] =
848 (txbuf[i] < MCE_PULSE_BIT ?
849 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
850 (i & 1 ? 0x00 : MCE_PULSE_BIT);
851 else {
852 ret = -EINVAL;
853 goto out;
854 }
855
856 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
857 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
858 }
859
Jarod Wilsone23fb962010-06-16 17:55:52 -0300860 /* Check if we have room for the empty packet at the end */
861 if (cmdcount >= MCE_CMDBUF_SIZE) {
862 ret = -EINVAL;
863 goto out;
864 }
865
Dan Carpenterb940a222013-02-12 08:22:08 -0300866 /* Fix packet length in last header */
867 length = cmdcount % MCE_CODE_LENGTH;
868 cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length;
869
Jarod Wilsone23fb962010-06-16 17:55:52 -0300870 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300871 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300872
873 /* Transmit the command to the mce device */
874 mce_async_out(ir, cmdbuf, cmdcount);
875
Jarod Wilsone23fb962010-06-16 17:55:52 -0300876out:
David Härdeman5588dc22011-04-28 12:13:58 -0300877 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300878}
879
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300880/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300881static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300882{
David Härdemand8b4b582010-10-29 16:08:23 -0300883 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300884
Sean Young20f5a822016-07-10 13:34:32 -0300885 /* return number of transmitters */
886 int emitters = ir->num_txports ? ir->num_txports : 2;
887
888 if (mask >= (1 << emitters))
889 return emitters;
890
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300891 if (ir->flags.tx_mask_normal)
892 ir->tx_mask = mask;
893 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300894 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
895 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300896
897 return 0;
898}
899
Jarod Wilsone23fb962010-06-16 17:55:52 -0300900/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300901static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300902{
David Härdemand8b4b582010-10-29 16:08:23 -0300903 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300904 int clk = 10000000;
905 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300906 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
907 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300908
909 /* Carrier has changed */
910 if (ir->carrier != carrier) {
911
912 if (carrier == 0) {
913 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300914 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300915 cmdbuf[3] = MCE_IRDATA_TRAILER;
Sean Young6b4a16c2014-01-20 19:10:44 -0300916 dev_dbg(ir->dev, "disabling carrier modulation");
Jarod Wilsone23fb962010-06-16 17:55:52 -0300917 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200918 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300919 }
920
921 for (prescaler = 0; prescaler < 4; ++prescaler) {
922 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300923 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300924 ir->carrier = carrier;
925 cmdbuf[2] = prescaler;
926 cmdbuf[3] = divisor;
Sean Young6b4a16c2014-01-20 19:10:44 -0300927 dev_dbg(ir->dev, "requesting %u HZ carrier",
928 carrier);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300929
930 /* Transmit new carrier to mce device */
931 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200932 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300933 }
934 }
935
936 return -EINVAL;
937
938 }
939
Sean Young14d81882016-07-10 13:34:33 -0300940 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300941}
942
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300943/*
944 * We don't do anything but print debug spew for many of the command bits
945 * we receive from the hardware, but some of them are useful information
946 * we want to store so that we can use them.
947 */
948static void mceusb_handle_command(struct mceusb_dev *ir, int index)
949{
950 u8 hi = ir->buf_in[index + 1] & 0xff;
951 u8 lo = ir->buf_in[index + 2] & 0xff;
952
953 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -0300954 /* the one and only 5-byte return value command */
955 case MCE_RSP_GETPORTSTATUS:
956 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
957 ir->txports_cabled |= 1 << hi;
958 break;
959
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300960 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300961 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300962 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300963 break;
Jarod Wilsona411e832011-07-18 16:54:26 -0300964 case MCE_RSP_EQIRNUMPORTS:
965 ir->num_txports = hi;
966 ir->num_rxports = lo;
967 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300968
969 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300970 case MCE_RSP_EQEMVER:
971 ir->emver = hi;
972 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300973 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300974 ir->tx_mask = hi;
975 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300976 case MCE_RSP_EQIRRXPORTEN:
977 ir->learning_enabled = ((hi & 0x02) == 0x02);
Jarod Wilsona411e832011-07-18 16:54:26 -0300978 ir->rxports_active = hi;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300979 break;
Jarod Wilson4840b782011-07-18 16:54:24 -0300980 case MCE_RSP_CMD_ILLEGAL:
981 ir->need_reset = true;
982 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300983 default:
984 break;
985 }
986}
987
Jarod Wilson66e89522010-06-01 17:32:08 -0300988static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
989{
Maxim Levitsky46519182010-10-16 19:56:28 -0300990 DEFINE_IR_RAW_EVENT(rawir);
Sean Youngb83bfd12012-08-13 08:59:47 -0300991 bool event = false;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300992 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -0300993
994 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
995 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300996 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300997
Jarod Wilson29b44942010-11-09 18:41:46 -0300998 /* if there's no data, just return now */
999 if (buf_len <= i)
1000 return;
1001
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001002 for (; i < buf_len; i++) {
1003 switch (ir->parser_state) {
1004 case SUBCMD:
William Steidtmann76dea4c2013-04-15 17:17:11 -03001005 ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]);
A Sun5c809922017-03-26 16:04:51 -03001006 mceusb_dev_printdata(ir, ir->buf_in, buf_len, i - 1,
Jarod Wilson36e9d262010-10-22 16:49:35 -03001007 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001008 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001009 ir->parser_state = CMD_DATA;
1010 break;
1011 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -03001012 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001013 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001014 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
1015 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -03001016 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -03001017
A Sun5c809922017-03-26 16:04:51 -03001018 dev_dbg(ir->dev, "Storing %s with duration %u",
Jarod Wilson66e89522010-06-01 17:32:08 -03001019 rawir.pulse ? "pulse" : "space",
1020 rawir.duration);
1021
Sean Youngb83bfd12012-08-13 08:59:47 -03001022 if (ir_raw_event_store_with_filter(ir->rc, &rawir))
1023 event = true;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001024 break;
1025 case CMD_DATA:
1026 ir->rem--;
1027 break;
1028 case CMD_HEADER:
1029 /* decode mce packets of the form (84),AA,BB,CC,DD */
1030 /* IR data packets can span USB messages - rem */
1031 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001032 if ((ir->cmd == MCE_CMD_PORT_IR) ||
1033 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -03001034 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001035 ir->parser_state = SUBCMD;
1036 continue;
1037 }
1038 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
A Sun5c809922017-03-26 16:04:51 -03001039 mceusb_dev_printdata(ir, ir->buf_in, buf_len,
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001040 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -03001041 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001042 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001043 else
1044 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001045 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001046 }
1047
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001048 if (ir->parser_state != CMD_HEADER && !ir->rem)
1049 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001050 }
Sean Youngb83bfd12012-08-13 08:59:47 -03001051 if (event) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001052 dev_dbg(ir->dev, "processed IR data");
Sean Youngb83bfd12012-08-13 08:59:47 -03001053 ir_raw_event_handle(ir->rc);
1054 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001055}
1056
Sean Young6ac454a2012-07-15 13:31:31 -03001057static void mceusb_dev_recv(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -03001058{
1059 struct mceusb_dev *ir;
Jarod Wilson66e89522010-06-01 17:32:08 -03001060
1061 if (!urb)
1062 return;
1063
1064 ir = urb->context;
1065 if (!ir) {
1066 usb_unlink_urb(urb);
1067 return;
1068 }
1069
Jarod Wilson66e89522010-06-01 17:32:08 -03001070 switch (urb->status) {
1071 /* success */
1072 case 0:
Sean Youngd26cec22016-04-14 17:42:49 -03001073 mceusb_process_ir_data(ir, urb->actual_length);
Jarod Wilson66e89522010-06-01 17:32:08 -03001074 break;
1075
1076 case -ECONNRESET:
1077 case -ENOENT:
Sean Young6b4a16c2014-01-20 19:10:44 -03001078 case -EILSEQ:
Jarod Wilson66e89522010-06-01 17:32:08 -03001079 case -ESHUTDOWN:
1080 usb_unlink_urb(urb);
1081 return;
1082
1083 case -EPIPE:
A Suna06854a2017-03-26 15:28:08 -03001084 dev_err(ir->dev, "Error: urb status = %d (RX HALT)",
1085 urb->status);
1086 mceusb_defer_kevent(ir, EVENT_RX_HALT);
1087 return;
1088
Jarod Wilson66e89522010-06-01 17:32:08 -03001089 default:
Sean Young6b4a16c2014-01-20 19:10:44 -03001090 dev_err(ir->dev, "Error: urb status = %d", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001091 break;
1092 }
1093
1094 usb_submit_urb(urb, GFP_ATOMIC);
1095}
1096
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001097static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1098{
1099 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1100 ir->emver = 1;
1101 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1102}
1103
Jarod Wilson66e89522010-06-01 17:32:08 -03001104static void mceusb_gen1_init(struct mceusb_dev *ir)
1105{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001106 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001107 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001108 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001109
1110 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1111 if (!data) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001112 dev_err(dev, "%s: memory allocation failed!", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001113 return;
1114 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001115
1116 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001117 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001118 * on the receive control pipe and expect a certain value pair back
1119 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001120 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1121 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001122 data, USB_CTRL_MSG_SZ, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001123 dev_dbg(dev, "set address - ret = %d", ret);
1124 dev_dbg(dev, "set address - data[0] = %d, data[1] = %d",
1125 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -03001126
1127 /* set feature: bit rate 38400 bps */
1128 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1129 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1130 0xc04e, 0x0000, NULL, 0, HZ * 3);
1131
Sean Young6b4a16c2014-01-20 19:10:44 -03001132 dev_dbg(dev, "set feature - ret = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001133
1134 /* bRequest 4: set char length to 8 bits */
1135 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1136 4, USB_TYPE_VENDOR,
1137 0x0808, 0x0000, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001138 dev_dbg(dev, "set char length - retB = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001139
1140 /* bRequest 2: set handshaking to use DTR/DSR */
1141 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1142 2, USB_TYPE_VENDOR,
1143 0x0000, 0x0100, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001144 dev_dbg(dev, "set handshake - retC = %d", ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001145
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001146 /* device resume */
1147 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001148
1149 /* get hw/sw revision? */
1150 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001151
Jarod Wilson657290b2010-06-16 17:10:05 -03001152 kfree(data);
Sean Young8dfef672013-01-29 08:19:29 -03001153}
Jarod Wilson66e89522010-06-01 17:32:08 -03001154
1155static void mceusb_gen2_init(struct mceusb_dev *ir)
1156{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001157 /* device resume */
1158 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001159
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001160 /* get wake version (protocol, key, address) */
1161 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1162
1163 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001164 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001165}
1166
Jarod Wilson22b07662010-07-08 12:38:57 -03001167static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001168{
Jarod Wilsona411e832011-07-18 16:54:26 -03001169 int i;
1170 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1171 MCE_CMD_GETPORTSTATUS, 0x00 };
1172
1173 /* defaults, if the hardware doesn't support querying */
1174 ir->num_txports = 2;
1175 ir->num_rxports = 2;
1176
1177 /* get number of tx and rx ports */
1178 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1179
Jarod Wilson66e89522010-06-01 17:32:08 -03001180 /* get the carrier and frequency */
1181 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001182
Jarod Wilsona411e832011-07-18 16:54:26 -03001183 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001184 /* get the transmitter bitmask */
1185 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001186
1187 /* get receiver timeout value */
1188 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001189
1190 /* get receiver sensor setting */
1191 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001192
1193 for (i = 0; i < ir->num_txports; i++) {
1194 cmdbuf[2] = i;
1195 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1196 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001197}
1198
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001199static void mceusb_flash_led(struct mceusb_dev *ir)
1200{
1201 if (ir->emver < 2)
1202 return;
1203
1204 mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
1205}
1206
A Suna06854a2017-03-26 15:28:08 -03001207/*
1208 * Workqueue function
1209 * for resetting or recovering device after occurrence of error events
1210 * specified in ir->kevent bit field.
1211 * Function runs (via schedule_work()) in non-interrupt context, for
1212 * calls here (such as usb_clear_halt()) requiring non-interrupt context.
1213 */
1214static void mceusb_deferred_kevent(struct work_struct *work)
1215{
1216 struct mceusb_dev *ir =
1217 container_of(work, struct mceusb_dev, kevent);
1218 int status;
1219
1220 if (test_bit(EVENT_RX_HALT, &ir->kevent_flags)) {
1221 usb_unlink_urb(ir->urb_in);
1222 status = usb_clear_halt(ir->usbdev, ir->pipe_in);
1223 if (status < 0) {
1224 dev_err(ir->dev, "rx clear halt error %d",
1225 status);
A Suna06854a2017-03-26 15:28:08 -03001226 }
1227 clear_bit(EVENT_RX_HALT, &ir->kevent_flags);
A Sunc779a9c2017-04-13 05:06:47 -03001228 if (status == 0) {
1229 status = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1230 if (status < 0) {
1231 dev_err(ir->dev,
1232 "rx unhalt submit urb error %d",
1233 status);
1234 }
A Suna06854a2017-03-26 15:28:08 -03001235 }
1236 }
A Sunc779a9c2017-04-13 05:06:47 -03001237
1238 if (test_bit(EVENT_TX_HALT, &ir->kevent_flags)) {
1239 status = usb_clear_halt(ir->usbdev, ir->pipe_out);
1240 if (status < 0)
1241 dev_err(ir->dev, "tx clear halt error %d", status);
1242 clear_bit(EVENT_TX_HALT, &ir->kevent_flags);
1243 }
A Suna06854a2017-03-26 15:28:08 -03001244}
1245
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001246static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001247{
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001248 struct usb_device *udev = ir->usbdev;
Jarod Wilson66e89522010-06-01 17:32:08 -03001249 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001250 struct rc_dev *rc;
1251 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001252
Andi Shyti0f7499f2016-12-16 06:50:58 -02001253 rc = rc_allocate_device(RC_DRIVER_IR_RAW);
David Härdemand8b4b582010-10-29 16:08:23 -03001254 if (!rc) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001255 dev_err(dev, "remote dev allocation failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001256 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001257 }
1258
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001259 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001260 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001261 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001262 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001263 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1264 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1265
Jarod Wilson66e89522010-06-01 17:32:08 -03001266 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001267
David Härdemand8b4b582010-10-29 16:08:23 -03001268 rc->input_name = ir->name;
1269 rc->input_phys = ir->phys;
1270 usb_to_input_id(ir->usbdev, &rc->input_id);
1271 rc->dev.parent = dev;
1272 rc->priv = ir;
Sean Young8c34b5c2016-12-03 08:55:56 -02001273 rc->allowed_protocols = RC_BIT_ALL_IR_DECODER;
Rafi Rubin9824ae42011-07-03 17:13:53 -03001274 rc->timeout = MS_TO_NS(100);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001275 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001276 rc->s_tx_mask = mceusb_set_tx_mask;
1277 rc->s_tx_carrier = mceusb_set_tx_carrier;
1278 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001279 }
David Härdemand8b4b582010-10-29 16:08:23 -03001280 rc->driver_name = DRIVER_NAME;
Mauro Carvalho Chehab5b8c8d42014-07-27 17:28:48 -03001281
1282 switch (le16_to_cpu(udev->descriptor.idVendor)) {
1283 case VENDOR_HAUPPAUGE:
1284 rc->map_name = RC_MAP_HAUPPAUGE;
1285 break;
1286 case VENDOR_PCTV:
1287 rc->map_name = RC_MAP_PINNACLE_PCTV_HD;
1288 break;
1289 default:
1290 rc->map_name = RC_MAP_RC6_MCE;
1291 }
1292 if (mceusb_model[ir->model].rc_map)
1293 rc->map_name = mceusb_model[ir->model].rc_map;
Jarod Wilson66e89522010-06-01 17:32:08 -03001294
David Härdemand8b4b582010-10-29 16:08:23 -03001295 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001296 if (ret < 0) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001297 dev_err(dev, "remote dev registration failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001298 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001299 }
1300
David Härdemand8b4b582010-10-29 16:08:23 -03001301 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001302
David Härdemand8b4b582010-10-29 16:08:23 -03001303out:
1304 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001305 return NULL;
1306}
1307
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001308static int mceusb_dev_probe(struct usb_interface *intf,
1309 const struct usb_device_id *id)
Jarod Wilson66e89522010-06-01 17:32:08 -03001310{
1311 struct usb_device *dev = interface_to_usbdev(intf);
1312 struct usb_host_interface *idesc;
1313 struct usb_endpoint_descriptor *ep = NULL;
1314 struct usb_endpoint_descriptor *ep_in = NULL;
1315 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001316 struct mceusb_dev *ir = NULL;
Sean Younge1159cb2016-04-14 17:42:50 -03001317 int pipe, maxp, i, res;
Jarod Wilson66e89522010-06-01 17:32:08 -03001318 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001319 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001320 bool is_gen3;
1321 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001322 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001323 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001324
Sean Young6b4a16c2014-01-20 19:10:44 -03001325 dev_dbg(&intf->dev, "%s called", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001326
Jarod Wilson66e89522010-06-01 17:32:08 -03001327 idesc = intf->cur_altsetting;
1328
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001329 is_gen3 = mceusb_model[model].mce_gen3;
1330 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001331 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001332 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001333
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001334 /* There are multi-function devices with non-IR interfaces */
1335 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1336 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001337
1338 /* step through the endpoints to find first bulk in and out endpoint */
1339 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1340 ep = &idesc->endpoint[i].desc;
1341
Matt DeVillier0cacb462014-04-24 11:16:31 -03001342 if (ep_in == NULL) {
1343 if (usb_endpoint_is_bulk_in(ep)) {
1344 ep_in = ep;
1345 dev_dbg(&intf->dev, "acceptable bulk inbound endpoint found\n");
1346 } else if (usb_endpoint_is_int_in(ep)) {
1347 ep_in = ep;
1348 ep_in->bInterval = 1;
1349 dev_dbg(&intf->dev, "acceptable interrupt inbound endpoint found\n");
1350 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001351 }
1352
Matt DeVillier0cacb462014-04-24 11:16:31 -03001353 if (ep_out == NULL) {
1354 if (usb_endpoint_is_bulk_out(ep)) {
1355 ep_out = ep;
1356 dev_dbg(&intf->dev, "acceptable bulk outbound endpoint found\n");
1357 } else if (usb_endpoint_is_int_out(ep)) {
1358 ep_out = ep;
1359 ep_out->bInterval = 1;
1360 dev_dbg(&intf->dev, "acceptable interrupt outbound endpoint found\n");
1361 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001362 }
1363 }
Johan Hovold03eb2a52017-03-07 15:14:13 -03001364 if (!ep_in || !ep_out) {
1365 dev_dbg(&intf->dev, "required endpoints not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001366 return -ENODEV;
1367 }
1368
Matt DeVillier0cacb462014-04-24 11:16:31 -03001369 if (usb_endpoint_xfer_int(ep_in))
1370 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1371 else
1372 pipe = usb_rcvbulkpipe(dev, ep_in->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001373 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1374
1375 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1376 if (!ir)
1377 goto mem_alloc_fail;
1378
A Suna06854a2017-03-26 15:28:08 -03001379 ir->pipe_in = pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -03001380 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1381 if (!ir->buf_in)
1382 goto buf_in_alloc_fail;
1383
1384 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1385 if (!ir->urb_in)
1386 goto urb_in_alloc_fail;
1387
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001388 ir->usbdev = usb_get_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001389 ir->dev = &intf->dev;
1390 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001391 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001392 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001393 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001394 ir->model = model;
1395
Jarod Wilson66e89522010-06-01 17:32:08 -03001396 /* Saving usb interface data for use by the transmitter routine */
Jarod Wilson66e89522010-06-01 17:32:08 -03001397 ir->usb_ep_out = ep_out;
A Sunc779a9c2017-04-13 05:06:47 -03001398 if (usb_endpoint_xfer_int(ep_out))
1399 ir->pipe_out = usb_sndintpipe(ir->usbdev,
1400 ep_out->bEndpointAddress);
1401 else
1402 ir->pipe_out = usb_sndbulkpipe(ir->usbdev,
1403 ep_out->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001404
1405 if (dev->descriptor.iManufacturer
1406 && usb_string(dev, dev->descriptor.iManufacturer,
1407 buf, sizeof(buf)) > 0)
1408 strlcpy(name, buf, sizeof(name));
1409 if (dev->descriptor.iProduct
1410 && usb_string(dev, dev->descriptor.iProduct,
1411 buf, sizeof(buf)) > 0)
1412 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1413 " %s", buf);
1414
A Suna06854a2017-03-26 15:28:08 -03001415 /*
1416 * Initialize async USB error handler before registering
1417 * or activating any mceusb RX and TX functions
1418 */
1419 INIT_WORK(&ir->kevent, mceusb_deferred_kevent);
1420
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001421 ir->rc = mceusb_init_rc_dev(ir);
David Härdemand8b4b582010-10-29 16:08:23 -03001422 if (!ir->rc)
1423 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001424
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001425 /* wire up inbound data handler */
A Sun8e175b22017-03-26 15:33:07 -03001426 if (usb_endpoint_xfer_int(ep_in))
1427 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1428 mceusb_dev_recv, ir, ep_in->bInterval);
1429 else
1430 usb_fill_bulk_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1431 mceusb_dev_recv, ir);
1432
Jarod Wilson66e89522010-06-01 17:32:08 -03001433 ir->urb_in->transfer_dma = ir->dma_in;
1434 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1435
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001436 /* flush buffers on the device */
A Sun5c809922017-03-26 16:04:51 -03001437 dev_dbg(&intf->dev, "Flushing receive buffers");
Sean Younge1159cb2016-04-14 17:42:50 -03001438 res = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1439 if (res)
A Sun5c809922017-03-26 16:04:51 -03001440 dev_err(&intf->dev, "failed to flush buffers: %d", res);
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001441
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001442 /* figure out which firmware/emulator version this hardware has */
1443 mceusb_get_emulator_version(ir);
1444
Jarod Wilson66e89522010-06-01 17:32:08 -03001445 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001446 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001447 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001448 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001449 mceusb_gen2_init(ir);
1450
Jarod Wilson22b07662010-07-08 12:38:57 -03001451 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001452
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001453 mceusb_flash_led(ir);
1454
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001455 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001456 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001457
1458 usb_set_intfdata(intf, ir);
1459
Jarod Wilsonfa3348982011-07-18 16:54:23 -03001460 /* enable wake via this device */
1461 device_set_wakeup_capable(ir->dev, true);
1462 device_set_wakeup_enable(ir->dev, true);
1463
Sean Young6b4a16c2014-01-20 19:10:44 -03001464 dev_info(&intf->dev, "Registered %s with mce emulator interface version %x",
1465 name, ir->emver);
1466 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and %x rx sensors (0x%x active)",
Jarod Wilsona411e832011-07-18 16:54:26 -03001467 ir->num_txports, ir->txports_cabled,
1468 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001469
1470 return 0;
1471
1472 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001473rc_dev_fail:
A Suna06854a2017-03-26 15:28:08 -03001474 cancel_work_sync(&ir->kevent);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001475 usb_put_dev(ir->usbdev);
Sean Younge1159cb2016-04-14 17:42:50 -03001476 usb_kill_urb(ir->urb_in);
Jarod Wilson66e89522010-06-01 17:32:08 -03001477 usb_free_urb(ir->urb_in);
1478urb_in_alloc_fail:
1479 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1480buf_in_alloc_fail:
1481 kfree(ir);
1482mem_alloc_fail:
Sean Young6b4a16c2014-01-20 19:10:44 -03001483 dev_err(&intf->dev, "%s: device setup failed!", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001484
1485 return -ENOMEM;
1486}
1487
1488
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001489static void mceusb_dev_disconnect(struct usb_interface *intf)
Jarod Wilson66e89522010-06-01 17:32:08 -03001490{
1491 struct usb_device *dev = interface_to_usbdev(intf);
1492 struct mceusb_dev *ir = usb_get_intfdata(intf);
1493
1494 usb_set_intfdata(intf, NULL);
1495
1496 if (!ir)
1497 return;
1498
1499 ir->usbdev = NULL;
A Suna06854a2017-03-26 15:28:08 -03001500 cancel_work_sync(&ir->kevent);
David Härdemand8b4b582010-10-29 16:08:23 -03001501 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001502 usb_kill_urb(ir->urb_in);
1503 usb_free_urb(ir->urb_in);
1504 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001505 usb_put_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001506
1507 kfree(ir);
1508}
1509
1510static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1511{
1512 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001513 dev_info(ir->dev, "suspend");
Jarod Wilson66e89522010-06-01 17:32:08 -03001514 usb_kill_urb(ir->urb_in);
1515 return 0;
1516}
1517
1518static int mceusb_dev_resume(struct usb_interface *intf)
1519{
1520 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001521 dev_info(ir->dev, "resume");
Jarod Wilson66e89522010-06-01 17:32:08 -03001522 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1523 return -EIO;
1524 return 0;
1525}
1526
1527static struct usb_driver mceusb_dev_driver = {
1528 .name = DRIVER_NAME,
1529 .probe = mceusb_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001530 .disconnect = mceusb_dev_disconnect,
Jarod Wilson66e89522010-06-01 17:32:08 -03001531 .suspend = mceusb_dev_suspend,
1532 .resume = mceusb_dev_resume,
1533 .reset_resume = mceusb_dev_resume,
1534 .id_table = mceusb_dev_table
1535};
1536
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001537module_usb_driver(mceusb_dev_driver);
Jarod Wilson66e89522010-06-01 17:32:08 -03001538
1539MODULE_DESCRIPTION(DRIVER_DESC);
1540MODULE_AUTHOR(DRIVER_AUTHOR);
1541MODULE_LICENSE("GPL");
1542MODULE_DEVICE_TABLE(usb, mceusb_dev_table);