blob: a9187b0b46a1d163020427e47e592fd5733560fd [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,
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400191 EVROMEDIA_FULL_HYBRID_FULLHD,
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400192 ASTROMETA_T2HYBRID,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300193};
194
195struct mceusb_model {
196 u32 mce_gen1:1;
197 u32 mce_gen2:1;
198 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300199 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300200 u32 no_tx:1;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300201
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300202 int ir_intfnum;
203
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300204 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300205 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300206};
207
208static const struct mceusb_model mceusb_model[] = {
209 [MCE_GEN1] = {
210 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300211 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300212 },
213 [MCE_GEN2] = {
214 .mce_gen2 = 1,
215 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300216 [MCE_GEN2_NO_TX] = {
217 .mce_gen2 = 1,
218 .no_tx = 1,
219 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300220 [MCE_GEN2_TX_INV] = {
221 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300222 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300223 },
224 [MCE_GEN3] = {
225 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300226 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300227 },
228 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300229 /*
230 * In fact, the EVK is shipped without
231 * remotes, but we should have something handy,
232 * to allow testing it
233 */
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300234 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
235 },
236 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300237 .no_tx = 1, /* tx isn't wired up at all */
238 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300239 },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300240 [HAUPPAUGE_CX_HYBRID_TV] = {
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300241 .no_tx = 1, /* eeprom says it has no tx */
242 .name = "Conexant Hybrid TV (cx231xx) MCE IR no TX",
243 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300244 [MULTIFUNCTION] = {
245 .mce_gen2 = 1,
246 .ir_intfnum = 2,
247 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300248 [TIVO_KIT] = {
249 .mce_gen2 = 1,
250 .rc_map = RC_MAP_TIVO,
251 },
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400252 [EVROMEDIA_FULL_HYBRID_FULLHD] = {
253 .name = "Evromedia USB Full Hybrid Full HD",
254 .no_tx = 1,
255 .rc_map = RC_MAP_MSI_DIGIVOX_III,
256 },
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400257 [ASTROMETA_T2HYBRID] = {
258 .name = "Astrometa T2Hybrid",
259 .no_tx = 1,
260 .rc_map = RC_MAP_ASTROMETA_T2HYBRID,
261 }
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300262};
263
Arvind Yadav5fad16b2017-08-13 05:54:44 -0300264static const struct usb_device_id mceusb_dev_table[] = {
Jarod Wilson66e89522010-06-01 17:32:08 -0300265 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300266 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
267 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300268 /* Philips Infrared Transceiver - Sahara branded */
269 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
270 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300271 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
272 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300273 /* Philips SRM5100 */
274 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
275 /* Philips Infrared Transceiver - Omaura */
276 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
277 /* Philips Infrared Transceiver - Spinel plus */
278 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
279 /* Philips eHome Infrared Transceiver */
280 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300281 /* Philips/Spinel plus IR transceiver for ASUS */
282 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
283 /* Philips/Spinel plus IR transceiver for ASUS */
284 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300285 /* Philips IR transceiver (Dell branded) */
Sean Young8dfef672013-01-29 08:19:29 -0300286 { USB_DEVICE(VENDOR_PHILIPS, 0x2093),
287 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300288 /* Realtek MCE IR Receiver and card reader */
289 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
290 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300291 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300292 { USB_DEVICE(VENDOR_SMK, 0x031d),
293 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300294 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300295 { USB_DEVICE(VENDOR_SMK, 0x0322),
296 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300297 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300298 { USB_DEVICE(VENDOR_SMK, 0x0334),
299 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300300 /* SMK eHome Infrared Transceiver */
301 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300302 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
303 { USB_DEVICE(VENDOR_SMK, 0x0353),
304 .driver_info = MCE_GEN2_NO_TX },
Olli Salonen18693842016-03-17 10:11:10 -0300305 /* SMK RXX6000 Infrared Receiver */
306 { USB_DEVICE(VENDOR_SMK, 0x0357),
307 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300308 /* Tatung eHome Infrared Transceiver */
309 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
310 /* Shuttle eHome Infrared Transceiver */
311 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
312 /* Shuttle eHome Infrared Transceiver */
313 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
314 /* Gateway eHome Infrared Transceiver */
315 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
316 /* Mitsumi */
317 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
318 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300319 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
320 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300321 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300322 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
323 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300324 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300325 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
326 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300327 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300328 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
329 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300330 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300331 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
332 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300333 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300334 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300335 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300336 /* Ricavision internal Infrared Transceiver */
337 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
338 /* Itron ione Libra Q-11 */
339 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
340 /* FIC eHome Infrared Transceiver */
341 { USB_DEVICE(VENDOR_FIC, 0x9242) },
342 /* LG eHome Infrared Transceiver */
343 { USB_DEVICE(VENDOR_LG, 0x9803) },
344 /* Microsoft MCE Infrared Transceiver */
345 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
346 /* Formosa eHome Infrared Transceiver */
347 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
348 /* Formosa21 / eHome Infrared Receiver */
349 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
350 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300351 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
352 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300353 /* Formosa Industrial Computing / Beanbag Emulation Device */
354 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
355 /* Formosa21 / eHome Infrared Receiver */
356 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
357 /* Formosa Industrial Computing AIM IR605/A */
358 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
359 /* Formosa Industrial Computing */
360 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilson22f17322012-03-12 13:27:03 -0300361 /* Formosa Industrial Computing */
362 { USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300363 /* Fintek eHome Infrared Transceiver (HP branded) */
Sean Youngdb8ee102013-01-29 08:19:30 -0300364 { USB_DEVICE(VENDOR_FINTEK, 0x5168),
365 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300366 /* Fintek eHome Infrared Transceiver */
367 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
368 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
369 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
370 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300371 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
372 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300373 /* Elitegroup Computer Systems IR */
374 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
375 /* Wistron Corp. eHome Infrared Receiver */
376 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
377 /* Compro K100 */
378 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
379 /* Compro K100 v2 */
380 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
381 /* Northstar Systems, Inc. eHome Infrared Transceiver */
382 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
383 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300384 { USB_DEVICE(VENDOR_TIVO, 0x2000),
385 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300386 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300387 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
388 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300389 /* Conexant Hybrid TV RDU253S Polaris */
390 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
391 .driver_info = CX_HYBRID_TV },
Mark Lorda4de5f02012-07-11 18:53:28 -0300392 /* Twisted Melon Inc. - Manta Mini Receiver */
393 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
394 /* Twisted Melon Inc. - Manta Pico Receiver */
395 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
396 /* Twisted Melon Inc. - Manta Transceiver */
397 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300398 /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
399 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
400 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300401 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb131),
402 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Matthias Schwarzott66756612014-08-31 08:35:10 -0300403 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb138),
404 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
405 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb139),
406 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300407 { USB_DEVICE(VENDOR_PCTV, 0x0259),
408 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
409 { USB_DEVICE(VENDOR_PCTV, 0x025e),
410 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Olli Salonene1866132016-03-17 10:11:09 -0300411 /* Adaptec / HP eHome Receiver */
412 { USB_DEVICE(VENDOR_ADAPTEC, 0x0094) },
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400413 /* Evromedia USB Full Hybrid Full HD */
414 { USB_DEVICE(0x1b80, 0xd3b2),
415 .driver_info = EVROMEDIA_FULL_HYBRID_FULLHD },
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400416 /* Astrometa T2hybrid */
417 { USB_DEVICE(0x15f4, 0x0135),
418 .driver_info = ASTROMETA_T2HYBRID },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300419
Jarod Wilson66e89522010-06-01 17:32:08 -0300420 /* Terminating entry */
421 { }
422};
423
Jarod Wilson66e89522010-06-01 17:32:08 -0300424/* data structure for each usb transceiver */
425struct mceusb_dev {
426 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300427 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300428
429 /* optional features we can enable */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300430 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300431
432 /* core device bits */
433 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300434
435 /* usb */
436 struct usb_device *usbdev;
437 struct urb *urb_in;
A Suna06854a2017-03-26 15:28:08 -0300438 unsigned int pipe_in;
Jarod Wilson66e89522010-06-01 17:32:08 -0300439 struct usb_endpoint_descriptor *usb_ep_out;
A Sunc779a9c2017-04-13 05:06:47 -0300440 unsigned int pipe_out;
Jarod Wilson66e89522010-06-01 17:32:08 -0300441
442 /* buffers and dma */
443 unsigned char *buf_in;
444 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300445 dma_addr_t dma_in;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300446
447 enum {
448 CMD_HEADER = 0,
449 SUBCMD,
450 CMD_DATA,
451 PARSE_IRDATA,
452 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300453
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300454 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300455
456 struct {
457 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300458 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300459 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300460 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300461 } flags;
462
Jarod Wilsone23fb962010-06-16 17:55:52 -0300463 /* transmit support */
Jarod Wilsone23fb962010-06-16 17:55:52 -0300464 u32 carrier;
465 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300466
467 char name[128];
468 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300469 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300470
471 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300472 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300473 u8 num_txports; /* number of transmit ports */
474 u8 num_rxports; /* number of receive sensors */
475 u8 txports_cabled; /* bitmask of transmitters with cable */
476 u8 rxports_active; /* bitmask of active receive sensors */
A Suna06854a2017-03-26 15:28:08 -0300477
478 /*
479 * support for async error handler mceusb_deferred_kevent()
480 * where usb_clear_halt(), usb_reset_configuration(),
481 * usb_reset_device(), etc. must be done in process context
482 */
483 struct work_struct kevent;
484 unsigned long kevent_flags;
485# define EVENT_TX_HALT 0
486# define EVENT_RX_HALT 1
Jarod Wilson66e89522010-06-01 17:32:08 -0300487};
488
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300489/* MCE Device Command Strings, generally a port and command pair */
490static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
491 MCE_CMD_RESUME};
492static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300493static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300494static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300495static char FLASH_LED[] = {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300496static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
497static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
498static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
Jarod Wilsona411e832011-07-18 16:54:26 -0300499static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300500static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
501static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300502/* sub in desired values in lower byte or bytes for full command */
503/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300504static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
505 MCE_CMD_SETIRCFS, 0x00, 0x00};
506static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
507static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
508 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
509static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
510 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300511*/
512
William Steidtmann76dea4c2013-04-15 17:17:11 -0300513static int mceusb_cmd_datasize(u8 cmd, u8 subcmd)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300514{
515 int datasize = 0;
516
517 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300518 case MCE_CMD_NULL:
519 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300520 datasize = 1;
521 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300522 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300523 switch (subcmd) {
William Steidtmann76dea4c2013-04-15 17:17:11 -0300524 case MCE_RSP_GETPORTSTATUS:
525 datasize = 5;
526 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300527 case MCE_RSP_EQWAKEVERSION:
528 datasize = 4;
529 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300530 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300531 datasize = 2;
532 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300533 case MCE_RSP_EQWAKESUPPORT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300534 case MCE_RSP_GETWAKESOURCE:
535 case MCE_RSP_EQDEVDETAILS:
536 case MCE_RSP_EQEMVER:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300537 datasize = 1;
538 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300539 }
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300540 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300541 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300542 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300543 case MCE_RSP_EQIRCFS:
544 case MCE_RSP_EQIRTIMEOUT:
545 case MCE_RSP_EQIRRXCFCNT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300546 case MCE_RSP_EQIRNUMPORTS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300547 datasize = 2;
548 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300549 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300550 case MCE_RSP_EQIRTXPORTS:
551 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300552 datasize = 1;
553 break;
554 }
555 }
556 return datasize;
557}
558
Sean Youngff05cf02017-08-04 05:30:20 -0400559static void mceusb_dev_printdata(struct mceusb_dev *ir, u8 *buf, int buf_len,
560 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300561{
Sean Young6b4a16c2014-01-20 19:10:44 -0300562#if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
563 char *inout;
Sean Youngff05cf02017-08-04 05:30:20 -0400564 u8 cmd, subcmd, *data;
Jarod Wilson66e89522010-06-01 17:32:08 -0300565 struct device *dev = ir->dev;
Sean Young6b4a16c2014-01-20 19:10:44 -0300566 int start, skip = 0;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300567 u32 carrier, period;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300568
Jarod Wilson657290b2010-06-16 17:10:05 -0300569 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300570 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300571 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300572
Jarod Wilson36e9d262010-10-22 16:49:35 -0300573 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300574 return;
575
Sean Young6b4a16c2014-01-20 19:10:44 -0300576 dev_dbg(dev, "%cx data: %*ph (length=%d)",
A Sun5c809922017-03-26 16:04:51 -0300577 (out ? 't' : 'r'),
578 min(len, buf_len - offset), buf + offset, len);
Jarod Wilson66e89522010-06-01 17:32:08 -0300579
Sean Young6b4a16c2014-01-20 19:10:44 -0300580 inout = out ? "Request" : "Got";
Jarod Wilson66e89522010-06-01 17:32:08 -0300581
Jarod Wilson36e9d262010-10-22 16:49:35 -0300582 start = offset + skip;
583 cmd = buf[start] & 0xff;
584 subcmd = buf[start + 1] & 0xff;
Sean Youngff05cf02017-08-04 05:30:20 -0400585 data = buf + start + 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300586
587 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300588 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300589 if (subcmd == MCE_CMD_NULL)
590 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300591 if ((subcmd == MCE_CMD_PORT_SYS) &&
Sean Youngff05cf02017-08-04 05:30:20 -0400592 (data[0] == MCE_CMD_RESUME))
Sean Young6b4a16c2014-01-20 19:10:44 -0300593 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300594 else
Sean Young6b4a16c2014-01-20 19:10:44 -0300595 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300596 cmd, subcmd);
597 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300598 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300599 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300600 case MCE_RSP_EQEMVER:
601 if (!out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300602 dev_dbg(dev, "Emulator interface version %x",
Sean Youngff05cf02017-08-04 05:30:20 -0400603 data[0]);
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300604 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300605 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300606 if (len == 2)
Sean Young6b4a16c2014-01-20 19:10:44 -0300607 dev_dbg(dev, "Get hw/sw rev?");
Jarod Wilson66e89522010-06-01 17:32:08 -0300608 else
Mauro Carvalho Chehabeef8fc32016-03-06 10:00:09 -0300609 dev_dbg(dev, "hw/sw rev %*ph",
610 4, &buf[start + 2]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300611 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300612 case MCE_CMD_RESUME:
Sean Young6b4a16c2014-01-20 19:10:44 -0300613 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300614 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300615 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300616 dev_dbg(dev, "Illegal PORT_SYS command");
Jarod Wilson66e89522010-06-01 17:32:08 -0300617 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300618 case MCE_RSP_EQWAKEVERSION:
619 if (!out)
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200620 dev_dbg(dev, "Wake version, proto: 0x%02x, payload: 0x%02x, address: 0x%02x, version: 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400621 data[0], data[1], data[2], data[3]);
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300622 break;
623 case MCE_RSP_GETPORTSTATUS:
624 if (!out)
625 /* We use data1 + 1 here, to match hw labels */
Sean Young6b4a16c2014-01-20 19:10:44 -0300626 dev_dbg(dev, "TX port %d: blaster is%s connected",
Sean Youngff05cf02017-08-04 05:30:20 -0400627 data[0] + 1, data[3] ? " not" : "");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300628 break;
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300629 case MCE_CMD_FLASHLED:
Sean Young6b4a16c2014-01-20 19:10:44 -0300630 dev_dbg(dev, "Attempting to flash LED");
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300631 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300632 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300633 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300634 cmd, subcmd);
635 break;
636 }
637 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300638 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300639 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300640 case MCE_CMD_SIG_END:
Sean Young6b4a16c2014-01-20 19:10:44 -0300641 dev_dbg(dev, "End of signal");
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300642 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300643 case MCE_CMD_PING:
Sean Young6b4a16c2014-01-20 19:10:44 -0300644 dev_dbg(dev, "Ping");
Jarod Wilson66e89522010-06-01 17:32:08 -0300645 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300646 case MCE_CMD_UNKNOWN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300647 dev_dbg(dev, "Resp to 9f 05 of 0x%02x 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400648 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300649 break;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300650 case MCE_RSP_EQIRCFS:
Sean Youngff05cf02017-08-04 05:30:20 -0400651 period = DIV_ROUND_CLOSEST((1U << data[0] * 2) *
652 (data[1] + 1), 10);
Jarod Wilsone217fb42011-07-18 16:54:28 -0300653 if (!period)
654 break;
655 carrier = (1000 * 1000) / period;
Sean Young6b4a16c2014-01-20 19:10:44 -0300656 dev_dbg(dev, "%s carrier of %u Hz (period %uus)",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300657 inout, carrier, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300658 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300659 case MCE_CMD_GETIRCFS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300660 dev_dbg(dev, "Get carrier mode and freq");
Jarod Wilson66e89522010-06-01 17:32:08 -0300661 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300662 case MCE_RSP_EQIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300663 dev_dbg(dev, "%s transmit blaster mask of 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400664 inout, data[0]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300665 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300666 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300667 /* value is in units of 50us, so x*50/1000 ms */
Sean Youngff05cf02017-08-04 05:30:20 -0400668 period = ((data[0] << 8) | data[1]) *
669 MCE_TIME_UNIT / 1000;
Sean Young6b4a16c2014-01-20 19:10:44 -0300670 dev_dbg(dev, "%s receive timeout of %d ms",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300671 inout, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300672 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300673 case MCE_CMD_GETIRTIMEOUT:
Sean Young6b4a16c2014-01-20 19:10:44 -0300674 dev_dbg(dev, "Get receive timeout");
Jarod Wilson66e89522010-06-01 17:32:08 -0300675 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300676 case MCE_CMD_GETIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300677 dev_dbg(dev, "Get transmit blaster mask");
Jarod Wilson66e89522010-06-01 17:32:08 -0300678 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300679 case MCE_RSP_EQIRRXPORTEN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300680 dev_dbg(dev, "%s %s-range receive sensor in use",
Sean Youngff05cf02017-08-04 05:30:20 -0400681 inout, data[0] == 0x02 ? "short" : "long");
Jarod Wilson66e89522010-06-01 17:32:08 -0300682 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300683 case MCE_CMD_GETIRRXPORTEN:
684 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300685 if (out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300686 dev_dbg(dev, "Get receive sensor");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300687 else if (ir->learning_enabled)
Sean Young6b4a16c2014-01-20 19:10:44 -0300688 dev_dbg(dev, "RX pulse count: %d",
Sean Youngff05cf02017-08-04 05:30:20 -0400689 ((data[0] << 8) | data[1]));
Jarod Wilson66e89522010-06-01 17:32:08 -0300690 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300691 case MCE_RSP_EQIRNUMPORTS:
692 if (out)
693 break;
Sean Young6b4a16c2014-01-20 19:10:44 -0300694 dev_dbg(dev, "Num TX ports: %x, num RX ports: %x",
Sean Youngff05cf02017-08-04 05:30:20 -0400695 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300696 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300697 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300698 dev_dbg(dev, "Illegal PORT_IR command");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300699 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300700 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300701 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300702 cmd, subcmd);
703 break;
704 }
705 break;
706 default:
707 break;
708 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300709
710 if (cmd == MCE_IRDATA_TRAILER)
Sean Young6b4a16c2014-01-20 19:10:44 -0300711 dev_dbg(dev, "End of raw IR data");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300712 else if ((cmd != MCE_CMD_PORT_IR) &&
713 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Sean Young6b4a16c2014-01-20 19:10:44 -0300714 dev_dbg(dev, "Raw IR data, %d pulse/space samples", ir->rem);
715#endif
Jarod Wilson66e89522010-06-01 17:32:08 -0300716}
717
A Suna06854a2017-03-26 15:28:08 -0300718/*
719 * Schedule work that can't be done in interrupt handlers
720 * (mceusb_dev_recv() and mce_async_callback()) nor tasklets.
721 * Invokes mceusb_deferred_kevent() for recovering from
722 * error events specified by the kevent bit field.
723 */
724static void mceusb_defer_kevent(struct mceusb_dev *ir, int kevent)
725{
726 set_bit(kevent, &ir->kevent_flags);
727 if (!schedule_work(&ir->kevent))
728 dev_err(ir->dev, "kevent %d may have been dropped", kevent);
729 else
730 dev_dbg(ir->dev, "kevent %d scheduled", kevent);
731}
732
Sean Young6ac454a2012-07-15 13:31:31 -0300733static void mce_async_callback(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -0300734{
735 struct mceusb_dev *ir;
736 int len;
737
738 if (!urb)
739 return;
740
741 ir = urb->context;
Sean Young6b4a16c2014-01-20 19:10:44 -0300742
743 switch (urb->status) {
744 /* success */
745 case 0:
Jarod Wilson66e89522010-06-01 17:32:08 -0300746 len = urb->actual_length;
747
A Sun5c809922017-03-26 16:04:51 -0300748 mceusb_dev_printdata(ir, urb->transfer_buffer, len,
749 0, len, true);
Sean Young6b4a16c2014-01-20 19:10:44 -0300750 break;
751
752 case -ECONNRESET:
753 case -ENOENT:
754 case -EILSEQ:
755 case -ESHUTDOWN:
756 break;
757
758 case -EPIPE:
A Sunc779a9c2017-04-13 05:06:47 -0300759 dev_err(ir->dev, "Error: request urb status = %d (TX HALT)",
760 urb->status);
761 mceusb_defer_kevent(ir, EVENT_TX_HALT);
762 break;
763
Sean Young6b4a16c2014-01-20 19:10:44 -0300764 default:
765 dev_err(ir->dev, "Error: request urb status = %d", urb->status);
766 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300767 }
768
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300769 /* the transfer buffer and urb were allocated in mce_request_packet */
770 kfree(urb->transfer_buffer);
771 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300772}
773
A Sun5c809922017-03-26 16:04:51 -0300774/* request outgoing (send) usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300775static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
Sean Younge1159cb2016-04-14 17:42:50 -0300776 int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300777{
A Sunc779a9c2017-04-13 05:06:47 -0300778 int res;
Jarod Wilson66e89522010-06-01 17:32:08 -0300779 struct urb *async_urb;
780 struct device *dev = ir->dev;
781 unsigned char *async_buf;
782
Sean Younge1159cb2016-04-14 17:42:50 -0300783 async_urb = usb_alloc_urb(0, GFP_KERNEL);
784 if (unlikely(!async_urb)) {
A Sun5c809922017-03-26 16:04:51 -0300785 dev_err(dev, "Error, couldn't allocate urb!");
Jarod Wilson66e89522010-06-01 17:32:08 -0300786 return;
787 }
788
Sean Younge1159cb2016-04-14 17:42:50 -0300789 async_buf = kmalloc(size, GFP_KERNEL);
790 if (!async_buf) {
791 usb_free_urb(async_urb);
792 return;
793 }
794
795 /* outbound data */
A Sunc779a9c2017-04-13 05:06:47 -0300796 if (usb_endpoint_xfer_int(ir->usb_ep_out))
797 usb_fill_int_urb(async_urb, ir->usbdev, ir->pipe_out,
798 async_buf, size, mce_async_callback, ir,
Sean Younge1159cb2016-04-14 17:42:50 -0300799 ir->usb_ep_out->bInterval);
A Sunc779a9c2017-04-13 05:06:47 -0300800 else
801 usb_fill_bulk_urb(async_urb, ir->usbdev, ir->pipe_out,
802 async_buf, size, mce_async_callback, ir);
803
Sean Younge1159cb2016-04-14 17:42:50 -0300804 memcpy(async_buf, data, size);
805
A Sun5c809922017-03-26 16:04:51 -0300806 dev_dbg(dev, "send request called (size=%#x)", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300807
Jarod Wilson66e89522010-06-01 17:32:08 -0300808 res = usb_submit_urb(async_urb, GFP_ATOMIC);
809 if (res) {
A Sun5c809922017-03-26 16:04:51 -0300810 dev_err(dev, "send request FAILED! (res=%d)", res);
Johan Hovold2d5a6ce2017-06-01 04:45:59 -0300811 kfree(async_buf);
812 usb_free_urb(async_urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300813 return;
814 }
A Sun5c809922017-03-26 16:04:51 -0300815 dev_dbg(dev, "send request complete (res=%d)", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300816}
817
818static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
819{
Jarod Wilson4840b782011-07-18 16:54:24 -0300820 int rsize = sizeof(DEVICE_RESUME);
821
822 if (ir->need_reset) {
823 ir->need_reset = false;
Sean Younge1159cb2016-04-14 17:42:50 -0300824 mce_request_packet(ir, DEVICE_RESUME, rsize);
Jarod Wilson4840b782011-07-18 16:54:24 -0300825 msleep(10);
826 }
827
Sean Younge1159cb2016-04-14 17:42:50 -0300828 mce_request_packet(ir, data, size);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300829 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300830}
831
Jarod Wilsone23fb962010-06-16 17:55:52 -0300832/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300833static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300834{
David Härdemand8b4b582010-10-29 16:08:23 -0300835 struct mceusb_dev *ir = dev->priv;
Sean Youngdb8ee102013-01-29 08:19:30 -0300836 int i, length, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300837 int cmdcount = 0;
Sean Youngdb8ee102013-01-29 08:19:30 -0300838 unsigned char cmdbuf[MCE_CMDBUF_SIZE];
Jarod Wilsone23fb962010-06-16 17:55:52 -0300839
840 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300841 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
842 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300843 cmdbuf[cmdcount++] = ir->tx_mask;
844
Sean Youngdb8ee102013-01-29 08:19:30 -0300845 /* Send the set TX ports command */
846 mce_async_out(ir, cmdbuf, cmdcount);
847 cmdcount = 0;
848
Jarod Wilsone23fb962010-06-16 17:55:52 -0300849 /* Generate mce packet data */
850 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300851 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
852
853 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
854
855 /* Insert mce packet header every 4th entry */
856 if ((cmdcount < MCE_CMDBUF_SIZE) &&
Sean Youngdb8ee102013-01-29 08:19:30 -0300857 (cmdcount % MCE_CODE_LENGTH) == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300858 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300859
860 /* Insert mce packet data */
861 if (cmdcount < MCE_CMDBUF_SIZE)
862 cmdbuf[cmdcount++] =
863 (txbuf[i] < MCE_PULSE_BIT ?
864 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
865 (i & 1 ? 0x00 : MCE_PULSE_BIT);
866 else {
867 ret = -EINVAL;
868 goto out;
869 }
870
871 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
872 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
873 }
874
Jarod Wilsone23fb962010-06-16 17:55:52 -0300875 /* Check if we have room for the empty packet at the end */
876 if (cmdcount >= MCE_CMDBUF_SIZE) {
877 ret = -EINVAL;
878 goto out;
879 }
880
Dan Carpenterb940a222013-02-12 08:22:08 -0300881 /* Fix packet length in last header */
882 length = cmdcount % MCE_CODE_LENGTH;
883 cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length;
884
Jarod Wilsone23fb962010-06-16 17:55:52 -0300885 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300886 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300887
888 /* Transmit the command to the mce device */
889 mce_async_out(ir, cmdbuf, cmdcount);
890
Jarod Wilsone23fb962010-06-16 17:55:52 -0300891out:
David Härdeman5588dc22011-04-28 12:13:58 -0300892 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300893}
894
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300895/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300896static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300897{
David Härdemand8b4b582010-10-29 16:08:23 -0300898 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300899
Sean Young20f5a822016-07-10 13:34:32 -0300900 /* return number of transmitters */
901 int emitters = ir->num_txports ? ir->num_txports : 2;
902
903 if (mask >= (1 << emitters))
904 return emitters;
905
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300906 if (ir->flags.tx_mask_normal)
907 ir->tx_mask = mask;
908 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300909 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
910 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300911
912 return 0;
913}
914
Jarod Wilsone23fb962010-06-16 17:55:52 -0300915/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300916static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300917{
David Härdemand8b4b582010-10-29 16:08:23 -0300918 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300919 int clk = 10000000;
920 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300921 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
922 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300923
924 /* Carrier has changed */
925 if (ir->carrier != carrier) {
926
927 if (carrier == 0) {
928 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300929 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300930 cmdbuf[3] = MCE_IRDATA_TRAILER;
Sean Young6b4a16c2014-01-20 19:10:44 -0300931 dev_dbg(ir->dev, "disabling carrier modulation");
Jarod Wilsone23fb962010-06-16 17:55:52 -0300932 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200933 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300934 }
935
936 for (prescaler = 0; prescaler < 4; ++prescaler) {
937 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300938 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300939 ir->carrier = carrier;
940 cmdbuf[2] = prescaler;
941 cmdbuf[3] = divisor;
Sean Young6b4a16c2014-01-20 19:10:44 -0300942 dev_dbg(ir->dev, "requesting %u HZ carrier",
943 carrier);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300944
945 /* Transmit new carrier to mce device */
946 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200947 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300948 }
949 }
950
951 return -EINVAL;
952
953 }
954
Sean Young14d81882016-07-10 13:34:33 -0300955 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300956}
957
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300958/*
959 * We don't do anything but print debug spew for many of the command bits
960 * we receive from the hardware, but some of them are useful information
961 * we want to store so that we can use them.
962 */
963static void mceusb_handle_command(struct mceusb_dev *ir, int index)
964{
965 u8 hi = ir->buf_in[index + 1] & 0xff;
966 u8 lo = ir->buf_in[index + 2] & 0xff;
967
968 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -0300969 /* the one and only 5-byte return value command */
970 case MCE_RSP_GETPORTSTATUS:
971 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
972 ir->txports_cabled |= 1 << hi;
973 break;
974
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300975 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300976 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300977 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300978 break;
Jarod Wilsona411e832011-07-18 16:54:26 -0300979 case MCE_RSP_EQIRNUMPORTS:
980 ir->num_txports = hi;
981 ir->num_rxports = lo;
982 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300983
984 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300985 case MCE_RSP_EQEMVER:
986 ir->emver = hi;
987 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300988 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300989 ir->tx_mask = hi;
990 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300991 case MCE_RSP_EQIRRXPORTEN:
992 ir->learning_enabled = ((hi & 0x02) == 0x02);
Jarod Wilsona411e832011-07-18 16:54:26 -0300993 ir->rxports_active = hi;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300994 break;
Jarod Wilson4840b782011-07-18 16:54:24 -0300995 case MCE_RSP_CMD_ILLEGAL:
996 ir->need_reset = true;
997 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300998 default:
999 break;
1000 }
1001}
1002
Jarod Wilson66e89522010-06-01 17:32:08 -03001003static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
1004{
Maxim Levitsky46519182010-10-16 19:56:28 -03001005 DEFINE_IR_RAW_EVENT(rawir);
Sean Youngb83bfd12012-08-13 08:59:47 -03001006 bool event = false;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001007 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -03001008
1009 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
1010 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001011 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -03001012
Jarod Wilson29b44942010-11-09 18:41:46 -03001013 /* if there's no data, just return now */
1014 if (buf_len <= i)
1015 return;
1016
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001017 for (; i < buf_len; i++) {
1018 switch (ir->parser_state) {
1019 case SUBCMD:
William Steidtmann76dea4c2013-04-15 17:17:11 -03001020 ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]);
A Sun5c809922017-03-26 16:04:51 -03001021 mceusb_dev_printdata(ir, ir->buf_in, buf_len, i - 1,
Jarod Wilson36e9d262010-10-22 16:49:35 -03001022 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001023 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001024 ir->parser_state = CMD_DATA;
1025 break;
1026 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -03001027 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001028 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001029 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
1030 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -03001031 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -03001032
A Sun5c809922017-03-26 16:04:51 -03001033 dev_dbg(ir->dev, "Storing %s with duration %u",
Jarod Wilson66e89522010-06-01 17:32:08 -03001034 rawir.pulse ? "pulse" : "space",
1035 rawir.duration);
1036
Sean Youngb83bfd12012-08-13 08:59:47 -03001037 if (ir_raw_event_store_with_filter(ir->rc, &rawir))
1038 event = true;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001039 break;
1040 case CMD_DATA:
1041 ir->rem--;
1042 break;
1043 case CMD_HEADER:
1044 /* decode mce packets of the form (84),AA,BB,CC,DD */
1045 /* IR data packets can span USB messages - rem */
1046 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001047 if ((ir->cmd == MCE_CMD_PORT_IR) ||
1048 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -03001049 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001050 ir->parser_state = SUBCMD;
1051 continue;
1052 }
1053 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
A Sun5c809922017-03-26 16:04:51 -03001054 mceusb_dev_printdata(ir, ir->buf_in, buf_len,
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001055 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -03001056 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001057 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001058 else
1059 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001060 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001061 }
1062
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001063 if (ir->parser_state != CMD_HEADER && !ir->rem)
1064 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001065 }
Sean Youngb83bfd12012-08-13 08:59:47 -03001066 if (event) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001067 dev_dbg(ir->dev, "processed IR data");
Sean Youngb83bfd12012-08-13 08:59:47 -03001068 ir_raw_event_handle(ir->rc);
1069 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001070}
1071
Sean Young6ac454a2012-07-15 13:31:31 -03001072static void mceusb_dev_recv(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -03001073{
1074 struct mceusb_dev *ir;
Jarod Wilson66e89522010-06-01 17:32:08 -03001075
1076 if (!urb)
1077 return;
1078
1079 ir = urb->context;
1080 if (!ir) {
1081 usb_unlink_urb(urb);
1082 return;
1083 }
1084
Jarod Wilson66e89522010-06-01 17:32:08 -03001085 switch (urb->status) {
1086 /* success */
1087 case 0:
Sean Youngd26cec22016-04-14 17:42:49 -03001088 mceusb_process_ir_data(ir, urb->actual_length);
Jarod Wilson66e89522010-06-01 17:32:08 -03001089 break;
1090
1091 case -ECONNRESET:
1092 case -ENOENT:
Sean Young6b4a16c2014-01-20 19:10:44 -03001093 case -EILSEQ:
Jarod Wilson66e89522010-06-01 17:32:08 -03001094 case -ESHUTDOWN:
1095 usb_unlink_urb(urb);
1096 return;
1097
1098 case -EPIPE:
A Suna06854a2017-03-26 15:28:08 -03001099 dev_err(ir->dev, "Error: urb status = %d (RX HALT)",
1100 urb->status);
1101 mceusb_defer_kevent(ir, EVENT_RX_HALT);
1102 return;
1103
Jarod Wilson66e89522010-06-01 17:32:08 -03001104 default:
Sean Young6b4a16c2014-01-20 19:10:44 -03001105 dev_err(ir->dev, "Error: urb status = %d", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001106 break;
1107 }
1108
1109 usb_submit_urb(urb, GFP_ATOMIC);
1110}
1111
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001112static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1113{
1114 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1115 ir->emver = 1;
1116 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1117}
1118
Jarod Wilson66e89522010-06-01 17:32:08 -03001119static void mceusb_gen1_init(struct mceusb_dev *ir)
1120{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001121 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001122 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001123 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001124
1125 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1126 if (!data) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001127 dev_err(dev, "%s: memory allocation failed!", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001128 return;
1129 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001130
1131 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001132 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001133 * on the receive control pipe and expect a certain value pair back
1134 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001135 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1136 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001137 data, USB_CTRL_MSG_SZ, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001138 dev_dbg(dev, "set address - ret = %d", ret);
1139 dev_dbg(dev, "set address - data[0] = %d, data[1] = %d",
1140 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -03001141
1142 /* set feature: bit rate 38400 bps */
1143 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1144 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1145 0xc04e, 0x0000, NULL, 0, HZ * 3);
1146
Sean Young6b4a16c2014-01-20 19:10:44 -03001147 dev_dbg(dev, "set feature - ret = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001148
1149 /* bRequest 4: set char length to 8 bits */
1150 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1151 4, USB_TYPE_VENDOR,
1152 0x0808, 0x0000, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001153 dev_dbg(dev, "set char length - retB = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001154
1155 /* bRequest 2: set handshaking to use DTR/DSR */
1156 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1157 2, USB_TYPE_VENDOR,
1158 0x0000, 0x0100, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001159 dev_dbg(dev, "set handshake - retC = %d", ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001160
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001161 /* device resume */
1162 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001163
1164 /* get hw/sw revision? */
1165 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001166
Jarod Wilson657290b2010-06-16 17:10:05 -03001167 kfree(data);
Sean Young8dfef672013-01-29 08:19:29 -03001168}
Jarod Wilson66e89522010-06-01 17:32:08 -03001169
1170static void mceusb_gen2_init(struct mceusb_dev *ir)
1171{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001172 /* device resume */
1173 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001174
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001175 /* get wake version (protocol, key, address) */
1176 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1177
1178 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001179 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001180}
1181
Jarod Wilson22b07662010-07-08 12:38:57 -03001182static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001183{
Jarod Wilsona411e832011-07-18 16:54:26 -03001184 int i;
1185 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1186 MCE_CMD_GETPORTSTATUS, 0x00 };
1187
1188 /* defaults, if the hardware doesn't support querying */
1189 ir->num_txports = 2;
1190 ir->num_rxports = 2;
1191
1192 /* get number of tx and rx ports */
1193 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1194
Jarod Wilson66e89522010-06-01 17:32:08 -03001195 /* get the carrier and frequency */
1196 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001197
Jarod Wilsona411e832011-07-18 16:54:26 -03001198 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001199 /* get the transmitter bitmask */
1200 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001201
1202 /* get receiver timeout value */
1203 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001204
1205 /* get receiver sensor setting */
1206 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001207
1208 for (i = 0; i < ir->num_txports; i++) {
1209 cmdbuf[2] = i;
1210 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1211 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001212}
1213
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001214static void mceusb_flash_led(struct mceusb_dev *ir)
1215{
1216 if (ir->emver < 2)
1217 return;
1218
1219 mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
1220}
1221
A Suna06854a2017-03-26 15:28:08 -03001222/*
1223 * Workqueue function
1224 * for resetting or recovering device after occurrence of error events
1225 * specified in ir->kevent bit field.
1226 * Function runs (via schedule_work()) in non-interrupt context, for
1227 * calls here (such as usb_clear_halt()) requiring non-interrupt context.
1228 */
1229static void mceusb_deferred_kevent(struct work_struct *work)
1230{
1231 struct mceusb_dev *ir =
1232 container_of(work, struct mceusb_dev, kevent);
1233 int status;
1234
1235 if (test_bit(EVENT_RX_HALT, &ir->kevent_flags)) {
1236 usb_unlink_urb(ir->urb_in);
1237 status = usb_clear_halt(ir->usbdev, ir->pipe_in);
1238 if (status < 0) {
1239 dev_err(ir->dev, "rx clear halt error %d",
1240 status);
A Suna06854a2017-03-26 15:28:08 -03001241 }
1242 clear_bit(EVENT_RX_HALT, &ir->kevent_flags);
A Sunc779a9c2017-04-13 05:06:47 -03001243 if (status == 0) {
1244 status = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1245 if (status < 0) {
1246 dev_err(ir->dev,
1247 "rx unhalt submit urb error %d",
1248 status);
1249 }
A Suna06854a2017-03-26 15:28:08 -03001250 }
1251 }
A Sunc779a9c2017-04-13 05:06:47 -03001252
1253 if (test_bit(EVENT_TX_HALT, &ir->kevent_flags)) {
1254 status = usb_clear_halt(ir->usbdev, ir->pipe_out);
1255 if (status < 0)
1256 dev_err(ir->dev, "tx clear halt error %d", status);
1257 clear_bit(EVENT_TX_HALT, &ir->kevent_flags);
1258 }
A Suna06854a2017-03-26 15:28:08 -03001259}
1260
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001261static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001262{
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001263 struct usb_device *udev = ir->usbdev;
Jarod Wilson66e89522010-06-01 17:32:08 -03001264 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001265 struct rc_dev *rc;
1266 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001267
Andi Shyti0f7499f2016-12-16 06:50:58 -02001268 rc = rc_allocate_device(RC_DRIVER_IR_RAW);
David Härdemand8b4b582010-10-29 16:08:23 -03001269 if (!rc) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001270 dev_err(dev, "remote dev allocation failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001271 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001272 }
1273
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001274 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001275 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001276 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001277 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001278 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1279 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1280
Jarod Wilson66e89522010-06-01 17:32:08 -03001281 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001282
Sean Young518f4b22017-07-01 12:13:19 -04001283 rc->device_name = ir->name;
David Härdemand8b4b582010-10-29 16:08:23 -03001284 rc->input_phys = ir->phys;
1285 usb_to_input_id(ir->usbdev, &rc->input_id);
1286 rc->dev.parent = dev;
1287 rc->priv = ir;
Sean Young6d741bf2017-08-07 16:20:58 -04001288 rc->allowed_protocols = RC_PROTO_BIT_ALL_IR_DECODER;
Rafi Rubin9824ae42011-07-03 17:13:53 -03001289 rc->timeout = MS_TO_NS(100);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001290 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001291 rc->s_tx_mask = mceusb_set_tx_mask;
1292 rc->s_tx_carrier = mceusb_set_tx_carrier;
1293 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001294 }
David Härdemand8b4b582010-10-29 16:08:23 -03001295 rc->driver_name = DRIVER_NAME;
Mauro Carvalho Chehab5b8c8d42014-07-27 17:28:48 -03001296
1297 switch (le16_to_cpu(udev->descriptor.idVendor)) {
1298 case VENDOR_HAUPPAUGE:
1299 rc->map_name = RC_MAP_HAUPPAUGE;
1300 break;
1301 case VENDOR_PCTV:
1302 rc->map_name = RC_MAP_PINNACLE_PCTV_HD;
1303 break;
1304 default:
1305 rc->map_name = RC_MAP_RC6_MCE;
1306 }
1307 if (mceusb_model[ir->model].rc_map)
1308 rc->map_name = mceusb_model[ir->model].rc_map;
Jarod Wilson66e89522010-06-01 17:32:08 -03001309
David Härdemand8b4b582010-10-29 16:08:23 -03001310 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001311 if (ret < 0) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001312 dev_err(dev, "remote dev registration failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001313 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001314 }
1315
David Härdemand8b4b582010-10-29 16:08:23 -03001316 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001317
David Härdemand8b4b582010-10-29 16:08:23 -03001318out:
1319 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001320 return NULL;
1321}
1322
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001323static int mceusb_dev_probe(struct usb_interface *intf,
1324 const struct usb_device_id *id)
Jarod Wilson66e89522010-06-01 17:32:08 -03001325{
1326 struct usb_device *dev = interface_to_usbdev(intf);
1327 struct usb_host_interface *idesc;
1328 struct usb_endpoint_descriptor *ep = NULL;
1329 struct usb_endpoint_descriptor *ep_in = NULL;
1330 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001331 struct mceusb_dev *ir = NULL;
Sean Younge1159cb2016-04-14 17:42:50 -03001332 int pipe, maxp, i, res;
Jarod Wilson66e89522010-06-01 17:32:08 -03001333 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001334 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001335 bool is_gen3;
1336 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001337 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001338 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001339
Sean Young6b4a16c2014-01-20 19:10:44 -03001340 dev_dbg(&intf->dev, "%s called", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001341
Jarod Wilson66e89522010-06-01 17:32:08 -03001342 idesc = intf->cur_altsetting;
1343
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001344 is_gen3 = mceusb_model[model].mce_gen3;
1345 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001346 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001347 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001348
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001349 /* There are multi-function devices with non-IR interfaces */
1350 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1351 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001352
1353 /* step through the endpoints to find first bulk in and out endpoint */
1354 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1355 ep = &idesc->endpoint[i].desc;
1356
Matt DeVillier0cacb462014-04-24 11:16:31 -03001357 if (ep_in == NULL) {
1358 if (usb_endpoint_is_bulk_in(ep)) {
1359 ep_in = ep;
1360 dev_dbg(&intf->dev, "acceptable bulk inbound endpoint found\n");
1361 } else if (usb_endpoint_is_int_in(ep)) {
1362 ep_in = ep;
1363 ep_in->bInterval = 1;
1364 dev_dbg(&intf->dev, "acceptable interrupt inbound endpoint found\n");
1365 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001366 }
1367
Matt DeVillier0cacb462014-04-24 11:16:31 -03001368 if (ep_out == NULL) {
1369 if (usb_endpoint_is_bulk_out(ep)) {
1370 ep_out = ep;
1371 dev_dbg(&intf->dev, "acceptable bulk outbound endpoint found\n");
1372 } else if (usb_endpoint_is_int_out(ep)) {
1373 ep_out = ep;
1374 ep_out->bInterval = 1;
1375 dev_dbg(&intf->dev, "acceptable interrupt outbound endpoint found\n");
1376 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001377 }
1378 }
Johan Hovold03eb2a52017-03-07 15:14:13 -03001379 if (!ep_in || !ep_out) {
1380 dev_dbg(&intf->dev, "required endpoints not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001381 return -ENODEV;
1382 }
1383
Matt DeVillier0cacb462014-04-24 11:16:31 -03001384 if (usb_endpoint_xfer_int(ep_in))
1385 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1386 else
1387 pipe = usb_rcvbulkpipe(dev, ep_in->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001388 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1389
1390 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1391 if (!ir)
1392 goto mem_alloc_fail;
1393
A Suna06854a2017-03-26 15:28:08 -03001394 ir->pipe_in = pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -03001395 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1396 if (!ir->buf_in)
1397 goto buf_in_alloc_fail;
1398
1399 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1400 if (!ir->urb_in)
1401 goto urb_in_alloc_fail;
1402
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001403 ir->usbdev = usb_get_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001404 ir->dev = &intf->dev;
1405 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001406 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001407 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001408 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001409 ir->model = model;
1410
Jarod Wilson66e89522010-06-01 17:32:08 -03001411 /* Saving usb interface data for use by the transmitter routine */
Jarod Wilson66e89522010-06-01 17:32:08 -03001412 ir->usb_ep_out = ep_out;
A Sunc779a9c2017-04-13 05:06:47 -03001413 if (usb_endpoint_xfer_int(ep_out))
1414 ir->pipe_out = usb_sndintpipe(ir->usbdev,
1415 ep_out->bEndpointAddress);
1416 else
1417 ir->pipe_out = usb_sndbulkpipe(ir->usbdev,
1418 ep_out->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001419
1420 if (dev->descriptor.iManufacturer
1421 && usb_string(dev, dev->descriptor.iManufacturer,
1422 buf, sizeof(buf)) > 0)
1423 strlcpy(name, buf, sizeof(name));
1424 if (dev->descriptor.iProduct
1425 && usb_string(dev, dev->descriptor.iProduct,
1426 buf, sizeof(buf)) > 0)
1427 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1428 " %s", buf);
1429
A Suna06854a2017-03-26 15:28:08 -03001430 /*
1431 * Initialize async USB error handler before registering
1432 * or activating any mceusb RX and TX functions
1433 */
1434 INIT_WORK(&ir->kevent, mceusb_deferred_kevent);
1435
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001436 ir->rc = mceusb_init_rc_dev(ir);
David Härdemand8b4b582010-10-29 16:08:23 -03001437 if (!ir->rc)
1438 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001439
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001440 /* wire up inbound data handler */
A Sun8e175b22017-03-26 15:33:07 -03001441 if (usb_endpoint_xfer_int(ep_in))
1442 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1443 mceusb_dev_recv, ir, ep_in->bInterval);
1444 else
1445 usb_fill_bulk_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1446 mceusb_dev_recv, ir);
1447
Jarod Wilson66e89522010-06-01 17:32:08 -03001448 ir->urb_in->transfer_dma = ir->dma_in;
1449 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1450
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001451 /* flush buffers on the device */
A Sun5c809922017-03-26 16:04:51 -03001452 dev_dbg(&intf->dev, "Flushing receive buffers");
Sean Younge1159cb2016-04-14 17:42:50 -03001453 res = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1454 if (res)
A Sun5c809922017-03-26 16:04:51 -03001455 dev_err(&intf->dev, "failed to flush buffers: %d", res);
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001456
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001457 /* figure out which firmware/emulator version this hardware has */
1458 mceusb_get_emulator_version(ir);
1459
Jarod Wilson66e89522010-06-01 17:32:08 -03001460 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001461 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001462 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001463 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001464 mceusb_gen2_init(ir);
1465
Jarod Wilson22b07662010-07-08 12:38:57 -03001466 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001467
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001468 mceusb_flash_led(ir);
1469
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001470 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001471 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001472
1473 usb_set_intfdata(intf, ir);
1474
Jarod Wilsonfa3348982011-07-18 16:54:23 -03001475 /* enable wake via this device */
1476 device_set_wakeup_capable(ir->dev, true);
1477 device_set_wakeup_enable(ir->dev, true);
1478
Sean Young6b4a16c2014-01-20 19:10:44 -03001479 dev_info(&intf->dev, "Registered %s with mce emulator interface version %x",
1480 name, ir->emver);
1481 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and %x rx sensors (0x%x active)",
Jarod Wilsona411e832011-07-18 16:54:26 -03001482 ir->num_txports, ir->txports_cabled,
1483 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001484
1485 return 0;
1486
1487 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001488rc_dev_fail:
A Suna06854a2017-03-26 15:28:08 -03001489 cancel_work_sync(&ir->kevent);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001490 usb_put_dev(ir->usbdev);
Sean Younge1159cb2016-04-14 17:42:50 -03001491 usb_kill_urb(ir->urb_in);
Jarod Wilson66e89522010-06-01 17:32:08 -03001492 usb_free_urb(ir->urb_in);
1493urb_in_alloc_fail:
1494 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1495buf_in_alloc_fail:
1496 kfree(ir);
1497mem_alloc_fail:
Sean Young6b4a16c2014-01-20 19:10:44 -03001498 dev_err(&intf->dev, "%s: device setup failed!", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001499
1500 return -ENOMEM;
1501}
1502
1503
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001504static void mceusb_dev_disconnect(struct usb_interface *intf)
Jarod Wilson66e89522010-06-01 17:32:08 -03001505{
1506 struct usb_device *dev = interface_to_usbdev(intf);
1507 struct mceusb_dev *ir = usb_get_intfdata(intf);
1508
1509 usb_set_intfdata(intf, NULL);
1510
1511 if (!ir)
1512 return;
1513
1514 ir->usbdev = NULL;
A Suna06854a2017-03-26 15:28:08 -03001515 cancel_work_sync(&ir->kevent);
David Härdemand8b4b582010-10-29 16:08:23 -03001516 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001517 usb_kill_urb(ir->urb_in);
1518 usb_free_urb(ir->urb_in);
1519 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001520 usb_put_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001521
1522 kfree(ir);
1523}
1524
1525static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1526{
1527 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001528 dev_info(ir->dev, "suspend");
Jarod Wilson66e89522010-06-01 17:32:08 -03001529 usb_kill_urb(ir->urb_in);
1530 return 0;
1531}
1532
1533static int mceusb_dev_resume(struct usb_interface *intf)
1534{
1535 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001536 dev_info(ir->dev, "resume");
Jarod Wilson66e89522010-06-01 17:32:08 -03001537 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1538 return -EIO;
1539 return 0;
1540}
1541
1542static struct usb_driver mceusb_dev_driver = {
1543 .name = DRIVER_NAME,
1544 .probe = mceusb_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001545 .disconnect = mceusb_dev_disconnect,
Jarod Wilson66e89522010-06-01 17:32:08 -03001546 .suspend = mceusb_dev_suspend,
1547 .resume = mceusb_dev_resume,
1548 .reset_resume = mceusb_dev_resume,
1549 .id_table = mceusb_dev_table
1550};
1551
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001552module_usb_driver(mceusb_dev_driver);
Jarod Wilson66e89522010-06-01 17:32:08 -03001553
1554MODULE_DESCRIPTION(DRIVER_DESC);
1555MODULE_AUTHOR(DRIVER_AUTHOR);
1556MODULE_LICENSE("GPL");
1557MODULE_DEVICE_TABLE(usb, mceusb_dev_table);