blob: 4d5351ebb9408b02a2f13fbacedb47f4c98c51cc [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Jarod Wilson66e89522010-06-01 17:32:08 -03002/*
3 * Driver for USB Windows Media Center Ed. eHome Infrared Transceivers
4 *
Jarod Wilsonfda516b2011-07-18 16:54:29 -03005 * Copyright (c) 2010-2011, Jarod Wilson <jarod@redhat.com>
Jarod Wilson66e89522010-06-01 17:32:08 -03006 *
7 * Based on the original lirc_mceusb and lirc_mceusb2 drivers, by Dan
8 * Conti, Martin Blatter and Daniel Melander, the latter of which was
9 * in turn also based on the lirc_atiusb driver by Paul Miller. The
10 * two mce drivers were merged into one by Jarod Wilson, with transmit
11 * support for the 1st-gen device added primarily by Patrick Calhoun,
12 * with a bit of tweaks by Jarod. Debugging improvements and proper
13 * support for what appears to be 3rd-gen hardware added by Jarod.
14 * Initial port from lirc driver to ir-core drivery by Jarod, based
15 * partially on a port to an earlier proposed IR infrastructure by
16 * Jon Smirl, which included enhancements and simplifications to the
17 * incoming IR buffer parsing routines.
18 *
Jarod Wilsonfda516b2011-07-18 16:54:29 -030019 * Updated in July of 2011 with the aid of Microsoft's official
20 * remote/transceiver requirements and specification document, found at
21 * download.microsoft.com, title
22 * Windows-Media-Center-RC-IR-Collection-Green-Button-Specification-03-08-2011-V2.pdf
Jarod Wilson66e89522010-06-01 17:32:08 -030023 */
24
25#include <linux/device.h>
26#include <linux/module.h>
27#include <linux/slab.h>
A Suna06854a2017-03-26 15:28:08 -030028#include <linux/workqueue.h>
Paul Bender635f76b2010-12-16 13:23:07 -030029#include <linux/usb.h>
30#include <linux/usb/input.h>
Jarod Wilsonfa3348982011-07-18 16:54:23 -030031#include <linux/pm_wakeup.h>
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030032#include <media/rc-core.h>
Jarod Wilson66e89522010-06-01 17:32:08 -030033
A Sun279c60f2018-03-16 15:52:09 -040034#define DRIVER_VERSION "1.94"
Jarod Wilsonfda516b2011-07-18 16:54:29 -030035#define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
Jarod Wilson66e89522010-06-01 17:32:08 -030036#define DRIVER_DESC "Windows Media Center Ed. eHome Infrared Transceiver " \
37 "device driver"
38#define DRIVER_NAME "mceusb"
39
Jarod Wilson4a883912010-10-22 14:42:54 -030040#define USB_CTRL_MSG_SZ 2 /* Size of usb ctrl msg on gen1 hw */
41#define MCE_G1_INIT_MSGS 40 /* Init messages on gen1 hw to throw out */
Jarod Wilson66e89522010-06-01 17:32:08 -030042
43/* MCE constants */
Jarod Wilson4a883912010-10-22 14:42:54 -030044#define MCE_CMDBUF_SIZE 384 /* MCE Command buffer length */
45#define MCE_TIME_UNIT 50 /* Approx 50us resolution */
46#define MCE_CODE_LENGTH 5 /* Normal length of packet (with header) */
47#define MCE_PACKET_SIZE 4 /* Normal length of packet (without header) */
48#define MCE_IRDATA_HEADER 0x84 /* Actual header format is 0x80 + num_bytes */
49#define MCE_IRDATA_TRAILER 0x80 /* End of IR data */
Jarod Wilson4a883912010-10-22 14:42:54 -030050#define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */
51#define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
52#define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */
53#define MCE_PULSE_MASK 0x7f /* Pulse mask */
54#define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */
55
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030056/*
57 * The interface between the host and the IR hardware is command-response
58 * based. All commands and responses have a consistent format, where a lead
59 * byte always identifies the type of data following it. The lead byte has
60 * a port value in the 3 highest bits and a length value in the 5 lowest
61 * bits.
62 *
63 * The length field is overloaded, with a value of 11111 indicating that the
64 * following byte is a command or response code, and the length of the entire
65 * message is determined by the code. If the length field is not 11111, then
66 * it specifies the number of bytes of port data that follow.
67 */
68#define MCE_CMD 0x1f
69#define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */
70#define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */
Mauro Carvalho Chehab04ad3012019-02-18 14:29:01 -050071#define MCE_PORT_SER 0x6 /* 0xc0 through 0xdf flush & 0x1f bytes */
Sean Young6b4a16c2014-01-20 19:10:44 -030072#define MCE_PORT_MASK 0xe0 /* Mask out command bits */
Jarod Wilson4a883912010-10-22 14:42:54 -030073
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030074/* Command port headers */
75#define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */
76#define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */
77
78/* Commands that set device state (2-4 bytes in length) */
79#define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */
80#define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */
81#define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */
82#define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */
83#define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */
84#define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */
85#define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */
86
87/* Commands that query device state (all 2 bytes, unless noted) */
88#define MCE_CMD_GETIRCFS 0x07 /* Get carrier */
89#define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */
90#define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */
91#define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */
92#define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */
93#define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */
94#define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */
95#define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */
96#define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */
97#define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */
98#define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */
99
100/* Misc commands */
101#define MCE_CMD_NOP 0xff /* No operation */
102
103/* Responses to commands (non-error cases) */
104#define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */
105#define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */
106#define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */
107#define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */
108#define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */
109#define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */
110#define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */
111#define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */
112#define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */
113#define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */
114#define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */
115#define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */
116#define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */
117
118/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
119#define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */
120#define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */
121
122/* Misc commands/responses not defined in the MCE remote/transceiver spec */
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300123#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -0300124#define MCE_CMD_PING 0x03 /* Ping device */
125#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
126#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300127#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
128#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
129#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
Jarod Wilson4a883912010-10-22 14:42:54 -0300130#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
131#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300132#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
133#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300134#define MCE_CMD_NULL 0x00 /* These show up various places... */
Jarod Wilson66e89522010-06-01 17:32:08 -0300135
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300136/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
137 * then we're looking at a raw IR data sample */
138#define MCE_COMMAND_IRDATA 0x80
139#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
Jarod Wilson66e89522010-06-01 17:32:08 -0300140
Jarod Wilson66e89522010-06-01 17:32:08 -0300141#define VENDOR_PHILIPS 0x0471
142#define VENDOR_SMK 0x0609
143#define VENDOR_TATUNG 0x1460
144#define VENDOR_GATEWAY 0x107b
145#define VENDOR_SHUTTLE 0x1308
146#define VENDOR_SHUTTLE2 0x051c
147#define VENDOR_MITSUMI 0x03ee
148#define VENDOR_TOPSEED 0x1784
149#define VENDOR_RICAVISION 0x179d
150#define VENDOR_ITRON 0x195d
151#define VENDOR_FIC 0x1509
152#define VENDOR_LG 0x043e
153#define VENDOR_MICROSOFT 0x045e
154#define VENDOR_FORMOSA 0x147a
155#define VENDOR_FINTEK 0x1934
156#define VENDOR_PINNACLE 0x2304
157#define VENDOR_ECS 0x1019
158#define VENDOR_WISTRON 0x0fb8
159#define VENDOR_COMPRO 0x185b
160#define VENDOR_NORTHSTAR 0x04eb
161#define VENDOR_REALTEK 0x0bda
162#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300163#define VENDOR_CONEXANT 0x0572
Mark Lorda4de5f02012-07-11 18:53:28 -0300164#define VENDOR_TWISTEDMELON 0x2596
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300165#define VENDOR_HAUPPAUGE 0x2040
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300166#define VENDOR_PCTV 0x2013
Olli Salonene1866132016-03-17 10:11:09 -0300167#define VENDOR_ADAPTEC 0x03f3
Jarod Wilson66e89522010-06-01 17:32:08 -0300168
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300169enum mceusb_model_type {
170 MCE_GEN2 = 0, /* Most boards */
171 MCE_GEN1,
172 MCE_GEN3,
Sean Youngaec3ead2018-05-09 06:11:28 -0400173 MCE_GEN3_BROKEN_IRTIMEOUT,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300174 MCE_GEN2_TX_INV,
Sean Young35ecf2b2018-03-18 06:46:02 -0400175 MCE_GEN2_TX_INV_RX_GOOD,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300176 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300177 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300178 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300179 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300180 MCE_GEN2_NO_TX,
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300181 HAUPPAUGE_CX_HYBRID_TV,
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400182 EVROMEDIA_FULL_HYBRID_FULLHD,
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400183 ASTROMETA_T2HYBRID,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300184};
185
186struct mceusb_model {
187 u32 mce_gen1:1;
188 u32 mce_gen2:1;
189 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300190 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300191 u32 no_tx:1;
Sean Youngaec3ead2018-05-09 06:11:28 -0400192 u32 broken_irtimeout:1;
A Sun279c60f2018-03-16 15:52:09 -0400193 /*
194 * 2nd IR receiver (short-range, wideband) for learning mode:
195 * 0, absent 2nd receiver (rx2)
196 * 1, rx2 present
197 * 2, rx2 which under counts IR carrier cycles
198 */
199 u32 rx2;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300200
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300201 int ir_intfnum;
202
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300203 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300204 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300205};
206
207static const struct mceusb_model mceusb_model[] = {
208 [MCE_GEN1] = {
209 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300210 .tx_mask_normal = 1,
A Sun279c60f2018-03-16 15:52:09 -0400211 .rx2 = 2,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300212 },
213 [MCE_GEN2] = {
214 .mce_gen2 = 1,
A Sun279c60f2018-03-16 15:52:09 -0400215 .rx2 = 2,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300216 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300217 [MCE_GEN2_NO_TX] = {
218 .mce_gen2 = 1,
219 .no_tx = 1,
220 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300221 [MCE_GEN2_TX_INV] = {
222 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300223 .tx_mask_normal = 1,
A Sun279c60f2018-03-16 15:52:09 -0400224 .rx2 = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300225 },
Sean Young35ecf2b2018-03-18 06:46:02 -0400226 [MCE_GEN2_TX_INV_RX_GOOD] = {
227 .mce_gen2 = 1,
228 .tx_mask_normal = 1,
229 .rx2 = 2,
230 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300231 [MCE_GEN3] = {
232 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300233 .tx_mask_normal = 1,
A Sun279c60f2018-03-16 15:52:09 -0400234 .rx2 = 2,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300235 },
Sean Youngaec3ead2018-05-09 06:11:28 -0400236 [MCE_GEN3_BROKEN_IRTIMEOUT] = {
237 .mce_gen3 = 1,
238 .tx_mask_normal = 1,
239 .rx2 = 2,
240 .broken_irtimeout = 1
241 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300242 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300243 /*
244 * In fact, the EVK is shipped without
245 * remotes, but we should have something handy,
246 * to allow testing it
247 */
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300248 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
A Sun279c60f2018-03-16 15:52:09 -0400249 .rx2 = 2,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300250 },
251 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300252 .no_tx = 1, /* tx isn't wired up at all */
253 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300254 },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300255 [HAUPPAUGE_CX_HYBRID_TV] = {
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300256 .no_tx = 1, /* eeprom says it has no tx */
257 .name = "Conexant Hybrid TV (cx231xx) MCE IR no TX",
258 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300259 [MULTIFUNCTION] = {
260 .mce_gen2 = 1,
261 .ir_intfnum = 2,
A Sun279c60f2018-03-16 15:52:09 -0400262 .rx2 = 2,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300263 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300264 [TIVO_KIT] = {
265 .mce_gen2 = 1,
266 .rc_map = RC_MAP_TIVO,
A Sun279c60f2018-03-16 15:52:09 -0400267 .rx2 = 2,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300268 },
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400269 [EVROMEDIA_FULL_HYBRID_FULLHD] = {
270 .name = "Evromedia USB Full Hybrid Full HD",
271 .no_tx = 1,
272 .rc_map = RC_MAP_MSI_DIGIVOX_III,
273 },
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400274 [ASTROMETA_T2HYBRID] = {
275 .name = "Astrometa T2Hybrid",
276 .no_tx = 1,
277 .rc_map = RC_MAP_ASTROMETA_T2HYBRID,
278 }
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300279};
280
Arvind Yadav5fad16b2017-08-13 05:54:44 -0300281static const struct usb_device_id mceusb_dev_table[] = {
Jarod Wilson66e89522010-06-01 17:32:08 -0300282 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300283 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
284 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300285 /* Philips Infrared Transceiver - Sahara branded */
286 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
287 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300288 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
289 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300290 /* Philips SRM5100 */
291 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
292 /* Philips Infrared Transceiver - Omaura */
293 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
294 /* Philips Infrared Transceiver - Spinel plus */
295 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
296 /* Philips eHome Infrared Transceiver */
297 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300298 /* Philips/Spinel plus IR transceiver for ASUS */
299 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
300 /* Philips/Spinel plus IR transceiver for ASUS */
301 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300302 /* Philips IR transceiver (Dell branded) */
Sean Young8dfef672013-01-29 08:19:29 -0300303 { USB_DEVICE(VENDOR_PHILIPS, 0x2093),
304 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300305 /* Realtek MCE IR Receiver and card reader */
306 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
307 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300308 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300309 { USB_DEVICE(VENDOR_SMK, 0x031d),
Sean Young35ecf2b2018-03-18 06:46:02 -0400310 .driver_info = MCE_GEN2_TX_INV_RX_GOOD },
Jarod Wilson66e89522010-06-01 17:32:08 -0300311 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300312 { USB_DEVICE(VENDOR_SMK, 0x0322),
313 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300314 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300315 { USB_DEVICE(VENDOR_SMK, 0x0334),
316 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300317 /* SMK eHome Infrared Transceiver */
318 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300319 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
320 { USB_DEVICE(VENDOR_SMK, 0x0353),
321 .driver_info = MCE_GEN2_NO_TX },
Olli Salonen18693842016-03-17 10:11:10 -0300322 /* SMK RXX6000 Infrared Receiver */
323 { USB_DEVICE(VENDOR_SMK, 0x0357),
324 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300325 /* Tatung eHome Infrared Transceiver */
326 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
327 /* Shuttle eHome Infrared Transceiver */
328 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
329 /* Shuttle eHome Infrared Transceiver */
330 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
331 /* Gateway eHome Infrared Transceiver */
332 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
333 /* Mitsumi */
334 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
335 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300336 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
337 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300338 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300339 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
340 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300341 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300342 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
343 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300344 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300345 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
346 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300347 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300348 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
349 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300350 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300351 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Sean Youngaec3ead2018-05-09 06:11:28 -0400352 .driver_info = MCE_GEN3_BROKEN_IRTIMEOUT },
Jarod Wilson66e89522010-06-01 17:32:08 -0300353 /* Ricavision internal Infrared Transceiver */
354 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
355 /* Itron ione Libra Q-11 */
356 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
357 /* FIC eHome Infrared Transceiver */
358 { USB_DEVICE(VENDOR_FIC, 0x9242) },
359 /* LG eHome Infrared Transceiver */
360 { USB_DEVICE(VENDOR_LG, 0x9803) },
361 /* Microsoft MCE Infrared Transceiver */
362 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
363 /* Formosa eHome Infrared Transceiver */
364 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
365 /* Formosa21 / eHome Infrared Receiver */
366 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
367 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300368 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
369 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300370 /* Formosa Industrial Computing / Beanbag Emulation Device */
371 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
372 /* Formosa21 / eHome Infrared Receiver */
373 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
374 /* Formosa Industrial Computing AIM IR605/A */
375 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
376 /* Formosa Industrial Computing */
377 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilson22f17322012-03-12 13:27:03 -0300378 /* Formosa Industrial Computing */
379 { USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300380 /* Fintek eHome Infrared Transceiver (HP branded) */
Sean Youngdb8ee102013-01-29 08:19:30 -0300381 { USB_DEVICE(VENDOR_FINTEK, 0x5168),
382 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300383 /* Fintek eHome Infrared Transceiver */
384 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
385 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
386 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
387 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300388 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
389 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300390 /* Elitegroup Computer Systems IR */
391 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
392 /* Wistron Corp. eHome Infrared Receiver */
393 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
394 /* Compro K100 */
395 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
396 /* Compro K100 v2 */
397 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
398 /* Northstar Systems, Inc. eHome Infrared Transceiver */
399 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
400 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300401 { USB_DEVICE(VENDOR_TIVO, 0x2000),
402 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300403 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300404 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
405 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300406 /* Conexant Hybrid TV RDU253S Polaris */
407 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
408 .driver_info = CX_HYBRID_TV },
Mark Lorda4de5f02012-07-11 18:53:28 -0300409 /* Twisted Melon Inc. - Manta Mini Receiver */
410 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
411 /* Twisted Melon Inc. - Manta Pico Receiver */
412 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
413 /* Twisted Melon Inc. - Manta Transceiver */
414 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300415 /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
416 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
417 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300418 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb131),
419 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Matthias Schwarzott66756612014-08-31 08:35:10 -0300420 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb138),
421 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
422 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb139),
423 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Brad Lovefd044de2018-10-05 11:19:49 -0400424 /* Hauppauge WinTV-HVR-935C - based on cx231xx */
425 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb151),
426 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
427 /* Hauppauge WinTV-HVR-955Q - based on cx231xx */
428 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb123),
429 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
430 /* Hauppauge WinTV-HVR-975 - based on cx231xx */
431 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb150),
432 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300433 { USB_DEVICE(VENDOR_PCTV, 0x0259),
434 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
435 { USB_DEVICE(VENDOR_PCTV, 0x025e),
436 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Olli Salonene1866132016-03-17 10:11:09 -0300437 /* Adaptec / HP eHome Receiver */
438 { USB_DEVICE(VENDOR_ADAPTEC, 0x0094) },
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400439 /* Evromedia USB Full Hybrid Full HD */
440 { USB_DEVICE(0x1b80, 0xd3b2),
441 .driver_info = EVROMEDIA_FULL_HYBRID_FULLHD },
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400442 /* Astrometa T2hybrid */
443 { USB_DEVICE(0x15f4, 0x0135),
444 .driver_info = ASTROMETA_T2HYBRID },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300445
Jarod Wilson66e89522010-06-01 17:32:08 -0300446 /* Terminating entry */
447 { }
448};
449
Jarod Wilson66e89522010-06-01 17:32:08 -0300450/* data structure for each usb transceiver */
451struct mceusb_dev {
452 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300453 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300454
455 /* optional features we can enable */
A Sun279c60f2018-03-16 15:52:09 -0400456 bool carrier_report_enabled;
457 bool wideband_rx_enabled; /* aka learning mode, short-range rx */
Jarod Wilson66e89522010-06-01 17:32:08 -0300458
459 /* core device bits */
460 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300461
462 /* usb */
463 struct usb_device *usbdev;
464 struct urb *urb_in;
A Suna06854a2017-03-26 15:28:08 -0300465 unsigned int pipe_in;
Jarod Wilson66e89522010-06-01 17:32:08 -0300466 struct usb_endpoint_descriptor *usb_ep_out;
A Sunc779a9c2017-04-13 05:06:47 -0300467 unsigned int pipe_out;
Jarod Wilson66e89522010-06-01 17:32:08 -0300468
469 /* buffers and dma */
470 unsigned char *buf_in;
471 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300472 dma_addr_t dma_in;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300473
474 enum {
475 CMD_HEADER = 0,
476 SUBCMD,
477 CMD_DATA,
478 PARSE_IRDATA,
479 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300480
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300481 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300482
483 struct {
484 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300485 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300486 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300487 u32 no_tx:1;
A Sun279c60f2018-03-16 15:52:09 -0400488 u32 rx2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300489 } flags;
490
Jarod Wilsone23fb962010-06-16 17:55:52 -0300491 /* transmit support */
Jarod Wilsone23fb962010-06-16 17:55:52 -0300492 u32 carrier;
493 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300494
495 char name[128];
496 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300497 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300498
499 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300500 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300501 u8 num_txports; /* number of transmit ports */
502 u8 num_rxports; /* number of receive sensors */
503 u8 txports_cabled; /* bitmask of transmitters with cable */
504 u8 rxports_active; /* bitmask of active receive sensors */
A Sun279c60f2018-03-16 15:52:09 -0400505 bool learning_active; /* wideband rx is active */
506
507 /* receiver carrier frequency detection support */
508 u32 pulse_tunit; /* IR pulse "on" cumulative time units */
509 u32 pulse_count; /* pulse "on" count in measurement interval */
A Suna06854a2017-03-26 15:28:08 -0300510
511 /*
512 * support for async error handler mceusb_deferred_kevent()
513 * where usb_clear_halt(), usb_reset_configuration(),
514 * usb_reset_device(), etc. must be done in process context
515 */
516 struct work_struct kevent;
517 unsigned long kevent_flags;
518# define EVENT_TX_HALT 0
519# define EVENT_RX_HALT 1
Jarod Wilson66e89522010-06-01 17:32:08 -0300520};
521
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300522/* MCE Device Command Strings, generally a port and command pair */
523static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
524 MCE_CMD_RESUME};
525static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300526static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300527static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300528static char FLASH_LED[] = {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300529static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
530static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
531static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
Jarod Wilsona411e832011-07-18 16:54:26 -0300532static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300533static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
534static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300535/* sub in desired values in lower byte or bytes for full command */
536/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300537static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
538 MCE_CMD_SETIRCFS, 0x00, 0x00};
539static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
540static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
541 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
542static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
543 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300544*/
545
William Steidtmann76dea4c2013-04-15 17:17:11 -0300546static int mceusb_cmd_datasize(u8 cmd, u8 subcmd)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300547{
548 int datasize = 0;
549
550 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300551 case MCE_CMD_NULL:
552 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300553 datasize = 1;
554 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300555 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300556 switch (subcmd) {
William Steidtmann76dea4c2013-04-15 17:17:11 -0300557 case MCE_RSP_GETPORTSTATUS:
558 datasize = 5;
559 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300560 case MCE_RSP_EQWAKEVERSION:
561 datasize = 4;
562 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300563 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300564 datasize = 2;
565 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300566 case MCE_RSP_EQWAKESUPPORT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300567 case MCE_RSP_GETWAKESOURCE:
568 case MCE_RSP_EQDEVDETAILS:
569 case MCE_RSP_EQEMVER:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300570 datasize = 1;
571 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300572 }
Sean Younge708e5a2018-05-10 07:49:49 -0400573 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300574 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300575 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300576 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300577 case MCE_RSP_EQIRCFS:
578 case MCE_RSP_EQIRTIMEOUT:
579 case MCE_RSP_EQIRRXCFCNT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300580 case MCE_RSP_EQIRNUMPORTS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300581 datasize = 2;
582 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300583 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300584 case MCE_RSP_EQIRTXPORTS:
585 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300586 datasize = 1;
587 break;
588 }
589 }
590 return datasize;
591}
592
Sean Youngff05cf02017-08-04 05:30:20 -0400593static void mceusb_dev_printdata(struct mceusb_dev *ir, u8 *buf, int buf_len,
594 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300595{
Sean Young6b4a16c2014-01-20 19:10:44 -0300596#if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
597 char *inout;
Sean Youngff05cf02017-08-04 05:30:20 -0400598 u8 cmd, subcmd, *data;
Jarod Wilson66e89522010-06-01 17:32:08 -0300599 struct device *dev = ir->dev;
Sean Young6b4a16c2014-01-20 19:10:44 -0300600 int start, skip = 0;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300601 u32 carrier, period;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300602
Jarod Wilson657290b2010-06-16 17:10:05 -0300603 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300604 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300605 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300606
Jarod Wilson36e9d262010-10-22 16:49:35 -0300607 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300608 return;
609
Sean Young6b4a16c2014-01-20 19:10:44 -0300610 dev_dbg(dev, "%cx data: %*ph (length=%d)",
A Sun5c809922017-03-26 16:04:51 -0300611 (out ? 't' : 'r'),
612 min(len, buf_len - offset), buf + offset, len);
Jarod Wilson66e89522010-06-01 17:32:08 -0300613
Sean Young6b4a16c2014-01-20 19:10:44 -0300614 inout = out ? "Request" : "Got";
Jarod Wilson66e89522010-06-01 17:32:08 -0300615
Jarod Wilson36e9d262010-10-22 16:49:35 -0300616 start = offset + skip;
617 cmd = buf[start] & 0xff;
618 subcmd = buf[start + 1] & 0xff;
Sean Youngff05cf02017-08-04 05:30:20 -0400619 data = buf + start + 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300620
621 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300622 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300623 if (subcmd == MCE_CMD_NULL)
624 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300625 if ((subcmd == MCE_CMD_PORT_SYS) &&
Sean Youngff05cf02017-08-04 05:30:20 -0400626 (data[0] == MCE_CMD_RESUME))
Sean Young6b4a16c2014-01-20 19:10:44 -0300627 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300628 else
Sean Young6b4a16c2014-01-20 19:10:44 -0300629 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300630 cmd, subcmd);
631 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300632 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300633 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300634 case MCE_RSP_EQEMVER:
635 if (!out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300636 dev_dbg(dev, "Emulator interface version %x",
Sean Youngff05cf02017-08-04 05:30:20 -0400637 data[0]);
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300638 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300639 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300640 if (len == 2)
Sean Young6b4a16c2014-01-20 19:10:44 -0300641 dev_dbg(dev, "Get hw/sw rev?");
Jarod Wilson66e89522010-06-01 17:32:08 -0300642 else
Mauro Carvalho Chehabeef8fc32016-03-06 10:00:09 -0300643 dev_dbg(dev, "hw/sw rev %*ph",
644 4, &buf[start + 2]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300645 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300646 case MCE_CMD_RESUME:
Sean Young6b4a16c2014-01-20 19:10:44 -0300647 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300648 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300649 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300650 dev_dbg(dev, "Illegal PORT_SYS command");
Jarod Wilson66e89522010-06-01 17:32:08 -0300651 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300652 case MCE_RSP_EQWAKEVERSION:
653 if (!out)
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200654 dev_dbg(dev, "Wake version, proto: 0x%02x, payload: 0x%02x, address: 0x%02x, version: 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400655 data[0], data[1], data[2], data[3]);
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300656 break;
657 case MCE_RSP_GETPORTSTATUS:
658 if (!out)
659 /* We use data1 + 1 here, to match hw labels */
Sean Young6b4a16c2014-01-20 19:10:44 -0300660 dev_dbg(dev, "TX port %d: blaster is%s connected",
Sean Youngff05cf02017-08-04 05:30:20 -0400661 data[0] + 1, data[3] ? " not" : "");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300662 break;
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300663 case MCE_CMD_FLASHLED:
Sean Young6b4a16c2014-01-20 19:10:44 -0300664 dev_dbg(dev, "Attempting to flash LED");
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300665 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300666 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300667 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300668 cmd, subcmd);
669 break;
670 }
671 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300672 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300673 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300674 case MCE_CMD_SIG_END:
Sean Young6b4a16c2014-01-20 19:10:44 -0300675 dev_dbg(dev, "End of signal");
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300676 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300677 case MCE_CMD_PING:
Sean Young6b4a16c2014-01-20 19:10:44 -0300678 dev_dbg(dev, "Ping");
Jarod Wilson66e89522010-06-01 17:32:08 -0300679 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300680 case MCE_CMD_UNKNOWN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300681 dev_dbg(dev, "Resp to 9f 05 of 0x%02x 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400682 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300683 break;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300684 case MCE_RSP_EQIRCFS:
Sean Youngff05cf02017-08-04 05:30:20 -0400685 period = DIV_ROUND_CLOSEST((1U << data[0] * 2) *
686 (data[1] + 1), 10);
Jarod Wilsone217fb42011-07-18 16:54:28 -0300687 if (!period)
688 break;
689 carrier = (1000 * 1000) / period;
Sean Young6b4a16c2014-01-20 19:10:44 -0300690 dev_dbg(dev, "%s carrier of %u Hz (period %uus)",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300691 inout, carrier, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300692 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300693 case MCE_CMD_GETIRCFS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300694 dev_dbg(dev, "Get carrier mode and freq");
Jarod Wilson66e89522010-06-01 17:32:08 -0300695 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300696 case MCE_RSP_EQIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300697 dev_dbg(dev, "%s transmit blaster mask of 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400698 inout, data[0]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300699 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300700 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300701 /* value is in units of 50us, so x*50/1000 ms */
Sean Youngff05cf02017-08-04 05:30:20 -0400702 period = ((data[0] << 8) | data[1]) *
703 MCE_TIME_UNIT / 1000;
Sean Young6b4a16c2014-01-20 19:10:44 -0300704 dev_dbg(dev, "%s receive timeout of %d ms",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300705 inout, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300706 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300707 case MCE_CMD_GETIRTIMEOUT:
Sean Young6b4a16c2014-01-20 19:10:44 -0300708 dev_dbg(dev, "Get receive timeout");
Jarod Wilson66e89522010-06-01 17:32:08 -0300709 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300710 case MCE_CMD_GETIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300711 dev_dbg(dev, "Get transmit blaster mask");
Jarod Wilson66e89522010-06-01 17:32:08 -0300712 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300713 case MCE_RSP_EQIRRXPORTEN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300714 dev_dbg(dev, "%s %s-range receive sensor in use",
Sean Youngff05cf02017-08-04 05:30:20 -0400715 inout, data[0] == 0x02 ? "short" : "long");
Jarod Wilson66e89522010-06-01 17:32:08 -0300716 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300717 case MCE_CMD_GETIRRXPORTEN:
718 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300719 if (out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300720 dev_dbg(dev, "Get receive sensor");
A Sun279c60f2018-03-16 15:52:09 -0400721 else
722 dev_dbg(dev, "RX carrier cycle count: %d",
Sean Youngff05cf02017-08-04 05:30:20 -0400723 ((data[0] << 8) | data[1]));
Jarod Wilson66e89522010-06-01 17:32:08 -0300724 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300725 case MCE_RSP_EQIRNUMPORTS:
726 if (out)
727 break;
Sean Young6b4a16c2014-01-20 19:10:44 -0300728 dev_dbg(dev, "Num TX ports: %x, num RX ports: %x",
Sean Youngff05cf02017-08-04 05:30:20 -0400729 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300730 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300731 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300732 dev_dbg(dev, "Illegal PORT_IR command");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300733 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300734 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300735 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300736 cmd, subcmd);
737 break;
738 }
739 break;
740 default:
741 break;
742 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300743
744 if (cmd == MCE_IRDATA_TRAILER)
Sean Young6b4a16c2014-01-20 19:10:44 -0300745 dev_dbg(dev, "End of raw IR data");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300746 else if ((cmd != MCE_CMD_PORT_IR) &&
747 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Sean Young6b4a16c2014-01-20 19:10:44 -0300748 dev_dbg(dev, "Raw IR data, %d pulse/space samples", ir->rem);
749#endif
Jarod Wilson66e89522010-06-01 17:32:08 -0300750}
751
A Suna06854a2017-03-26 15:28:08 -0300752/*
753 * Schedule work that can't be done in interrupt handlers
754 * (mceusb_dev_recv() and mce_async_callback()) nor tasklets.
755 * Invokes mceusb_deferred_kevent() for recovering from
756 * error events specified by the kevent bit field.
757 */
758static void mceusb_defer_kevent(struct mceusb_dev *ir, int kevent)
759{
760 set_bit(kevent, &ir->kevent_flags);
761 if (!schedule_work(&ir->kevent))
762 dev_err(ir->dev, "kevent %d may have been dropped", kevent);
763 else
764 dev_dbg(ir->dev, "kevent %d scheduled", kevent);
765}
766
Sean Young6ac454a2012-07-15 13:31:31 -0300767static void mce_async_callback(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -0300768{
769 struct mceusb_dev *ir;
770 int len;
771
772 if (!urb)
773 return;
774
775 ir = urb->context;
Sean Young6b4a16c2014-01-20 19:10:44 -0300776
777 switch (urb->status) {
778 /* success */
779 case 0:
Jarod Wilson66e89522010-06-01 17:32:08 -0300780 len = urb->actual_length;
781
A Sun5c809922017-03-26 16:04:51 -0300782 mceusb_dev_printdata(ir, urb->transfer_buffer, len,
783 0, len, true);
Sean Young6b4a16c2014-01-20 19:10:44 -0300784 break;
785
786 case -ECONNRESET:
787 case -ENOENT:
788 case -EILSEQ:
789 case -ESHUTDOWN:
790 break;
791
792 case -EPIPE:
A Sunc779a9c2017-04-13 05:06:47 -0300793 dev_err(ir->dev, "Error: request urb status = %d (TX HALT)",
794 urb->status);
795 mceusb_defer_kevent(ir, EVENT_TX_HALT);
796 break;
797
Sean Young6b4a16c2014-01-20 19:10:44 -0300798 default:
799 dev_err(ir->dev, "Error: request urb status = %d", urb->status);
800 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300801 }
802
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300803 /* the transfer buffer and urb were allocated in mce_request_packet */
804 kfree(urb->transfer_buffer);
805 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300806}
807
A Sun5c809922017-03-26 16:04:51 -0300808/* request outgoing (send) usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300809static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
Sean Younge1159cb2016-04-14 17:42:50 -0300810 int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300811{
A Sunc779a9c2017-04-13 05:06:47 -0300812 int res;
Jarod Wilson66e89522010-06-01 17:32:08 -0300813 struct urb *async_urb;
814 struct device *dev = ir->dev;
815 unsigned char *async_buf;
816
Sean Younge1159cb2016-04-14 17:42:50 -0300817 async_urb = usb_alloc_urb(0, GFP_KERNEL);
818 if (unlikely(!async_urb)) {
A Sun5c809922017-03-26 16:04:51 -0300819 dev_err(dev, "Error, couldn't allocate urb!");
Jarod Wilson66e89522010-06-01 17:32:08 -0300820 return;
821 }
822
Sean Younge1159cb2016-04-14 17:42:50 -0300823 async_buf = kmalloc(size, GFP_KERNEL);
824 if (!async_buf) {
825 usb_free_urb(async_urb);
826 return;
827 }
828
829 /* outbound data */
A Sunc779a9c2017-04-13 05:06:47 -0300830 if (usb_endpoint_xfer_int(ir->usb_ep_out))
831 usb_fill_int_urb(async_urb, ir->usbdev, ir->pipe_out,
832 async_buf, size, mce_async_callback, ir,
Sean Younge1159cb2016-04-14 17:42:50 -0300833 ir->usb_ep_out->bInterval);
A Sunc779a9c2017-04-13 05:06:47 -0300834 else
835 usb_fill_bulk_urb(async_urb, ir->usbdev, ir->pipe_out,
836 async_buf, size, mce_async_callback, ir);
837
Sean Younge1159cb2016-04-14 17:42:50 -0300838 memcpy(async_buf, data, size);
839
A Sun5c809922017-03-26 16:04:51 -0300840 dev_dbg(dev, "send request called (size=%#x)", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300841
Jarod Wilson66e89522010-06-01 17:32:08 -0300842 res = usb_submit_urb(async_urb, GFP_ATOMIC);
843 if (res) {
A Sun5c809922017-03-26 16:04:51 -0300844 dev_err(dev, "send request FAILED! (res=%d)", res);
Johan Hovold2d5a6ce2017-06-01 04:45:59 -0300845 kfree(async_buf);
846 usb_free_urb(async_urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300847 return;
848 }
A Sun5c809922017-03-26 16:04:51 -0300849 dev_dbg(dev, "send request complete (res=%d)", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300850}
851
852static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
853{
Jarod Wilson4840b782011-07-18 16:54:24 -0300854 int rsize = sizeof(DEVICE_RESUME);
855
856 if (ir->need_reset) {
857 ir->need_reset = false;
Sean Younge1159cb2016-04-14 17:42:50 -0300858 mce_request_packet(ir, DEVICE_RESUME, rsize);
Jarod Wilson4840b782011-07-18 16:54:24 -0300859 msleep(10);
860 }
861
Sean Younge1159cb2016-04-14 17:42:50 -0300862 mce_request_packet(ir, data, size);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300863 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300864}
865
Jarod Wilsone23fb962010-06-16 17:55:52 -0300866/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300867static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300868{
David Härdemand8b4b582010-10-29 16:08:23 -0300869 struct mceusb_dev *ir = dev->priv;
Sean Youngdb8ee102013-01-29 08:19:30 -0300870 int i, length, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300871 int cmdcount = 0;
Sean Youngdb8ee102013-01-29 08:19:30 -0300872 unsigned char cmdbuf[MCE_CMDBUF_SIZE];
Jarod Wilsone23fb962010-06-16 17:55:52 -0300873
874 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300875 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
876 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300877 cmdbuf[cmdcount++] = ir->tx_mask;
878
Sean Youngdb8ee102013-01-29 08:19:30 -0300879 /* Send the set TX ports command */
880 mce_async_out(ir, cmdbuf, cmdcount);
881 cmdcount = 0;
882
Jarod Wilsone23fb962010-06-16 17:55:52 -0300883 /* Generate mce packet data */
884 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300885 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
886
887 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
888
889 /* Insert mce packet header every 4th entry */
890 if ((cmdcount < MCE_CMDBUF_SIZE) &&
Sean Youngdb8ee102013-01-29 08:19:30 -0300891 (cmdcount % MCE_CODE_LENGTH) == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300892 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300893
894 /* Insert mce packet data */
895 if (cmdcount < MCE_CMDBUF_SIZE)
896 cmdbuf[cmdcount++] =
897 (txbuf[i] < MCE_PULSE_BIT ?
898 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
899 (i & 1 ? 0x00 : MCE_PULSE_BIT);
900 else {
901 ret = -EINVAL;
902 goto out;
903 }
904
905 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
906 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
907 }
908
Jarod Wilsone23fb962010-06-16 17:55:52 -0300909 /* Check if we have room for the empty packet at the end */
910 if (cmdcount >= MCE_CMDBUF_SIZE) {
911 ret = -EINVAL;
912 goto out;
913 }
914
Dan Carpenterb940a222013-02-12 08:22:08 -0300915 /* Fix packet length in last header */
916 length = cmdcount % MCE_CODE_LENGTH;
917 cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length;
918
Jarod Wilsone23fb962010-06-16 17:55:52 -0300919 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300920 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300921
922 /* Transmit the command to the mce device */
923 mce_async_out(ir, cmdbuf, cmdcount);
924
Jarod Wilsone23fb962010-06-16 17:55:52 -0300925out:
David Härdeman5588dc22011-04-28 12:13:58 -0300926 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300927}
928
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300929/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300930static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300931{
David Härdemand8b4b582010-10-29 16:08:23 -0300932 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300933
Sean Young20f5a822016-07-10 13:34:32 -0300934 /* return number of transmitters */
935 int emitters = ir->num_txports ? ir->num_txports : 2;
936
937 if (mask >= (1 << emitters))
938 return emitters;
939
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300940 if (ir->flags.tx_mask_normal)
941 ir->tx_mask = mask;
942 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300943 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
944 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300945
946 return 0;
947}
948
Jarod Wilsone23fb962010-06-16 17:55:52 -0300949/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300950static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300951{
David Härdemand8b4b582010-10-29 16:08:23 -0300952 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300953 int clk = 10000000;
954 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300955 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
956 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300957
958 /* Carrier has changed */
959 if (ir->carrier != carrier) {
960
961 if (carrier == 0) {
962 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300963 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300964 cmdbuf[3] = MCE_IRDATA_TRAILER;
Sean Young6b4a16c2014-01-20 19:10:44 -0300965 dev_dbg(ir->dev, "disabling carrier modulation");
Jarod Wilsone23fb962010-06-16 17:55:52 -0300966 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200967 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300968 }
969
970 for (prescaler = 0; prescaler < 4; ++prescaler) {
971 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300972 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300973 ir->carrier = carrier;
974 cmdbuf[2] = prescaler;
975 cmdbuf[3] = divisor;
Sean Young6b4a16c2014-01-20 19:10:44 -0300976 dev_dbg(ir->dev, "requesting %u HZ carrier",
977 carrier);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300978
979 /* Transmit new carrier to mce device */
980 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200981 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300982 }
983 }
984
985 return -EINVAL;
986
987 }
988
Sean Young14d81882016-07-10 13:34:33 -0300989 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300990}
991
Sean Young877f1a72018-04-08 11:06:49 -0400992static int mceusb_set_timeout(struct rc_dev *dev, unsigned int timeout)
993{
994 u8 cmdbuf[4] = { MCE_CMD_PORT_IR, MCE_CMD_SETIRTIMEOUT, 0, 0 };
995 struct mceusb_dev *ir = dev->priv;
996 unsigned int units;
997
998 units = DIV_ROUND_CLOSEST(timeout, US_TO_NS(MCE_TIME_UNIT));
999
1000 cmdbuf[2] = units >> 8;
1001 cmdbuf[3] = units;
1002
1003 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1004
1005 /* get receiver timeout value */
1006 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
1007
1008 return 0;
1009}
1010
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001011/*
A Sun279c60f2018-03-16 15:52:09 -04001012 * Select or deselect the 2nd receiver port.
1013 * Second receiver is learning mode, wide-band, short-range receiver.
1014 * Only one receiver (long or short range) may be active at a time.
1015 */
1016static int mceusb_set_rx_wideband(struct rc_dev *dev, int enable)
1017{
1018 struct mceusb_dev *ir = dev->priv;
1019 unsigned char cmdbuf[3] = { MCE_CMD_PORT_IR,
1020 MCE_CMD_SETIRRXPORTEN, 0x00 };
1021
1022 dev_dbg(ir->dev, "select %s-range receive sensor",
1023 enable ? "short" : "long");
1024 if (enable) {
1025 ir->wideband_rx_enabled = true;
1026 cmdbuf[2] = 2; /* port 2 is short range receiver */
1027 } else {
1028 ir->wideband_rx_enabled = false;
1029 cmdbuf[2] = 1; /* port 1 is long range receiver */
1030 }
1031 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1032 /* response from device sets ir->learning_active */
1033
1034 return 0;
1035}
1036
1037/*
1038 * Enable/disable receiver carrier frequency pass through reporting.
1039 * Only the short-range receiver has carrier frequency measuring capability.
1040 * Implicitly select this receiver when enabling carrier frequency reporting.
1041 */
1042static int mceusb_set_rx_carrier_report(struct rc_dev *dev, int enable)
1043{
1044 struct mceusb_dev *ir = dev->priv;
1045 unsigned char cmdbuf[3] = { MCE_CMD_PORT_IR,
1046 MCE_CMD_SETIRRXPORTEN, 0x00 };
1047
1048 dev_dbg(ir->dev, "%s short-range receiver carrier reporting",
1049 enable ? "enable" : "disable");
1050 if (enable) {
1051 ir->carrier_report_enabled = true;
1052 if (!ir->learning_active) {
1053 cmdbuf[2] = 2; /* port 2 is short range receiver */
1054 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1055 }
1056 } else {
1057 ir->carrier_report_enabled = false;
1058 /*
1059 * Revert to normal (long-range) receiver only if the
1060 * wideband (short-range) receiver wasn't explicitly
1061 * enabled.
1062 */
1063 if (ir->learning_active && !ir->wideband_rx_enabled) {
1064 cmdbuf[2] = 1; /* port 1 is long range receiver */
1065 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1066 }
1067 }
1068
1069 return 0;
1070}
1071
1072/*
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001073 * We don't do anything but print debug spew for many of the command bits
1074 * we receive from the hardware, but some of them are useful information
1075 * we want to store so that we can use them.
1076 */
1077static void mceusb_handle_command(struct mceusb_dev *ir, int index)
1078{
Sean Young183e19f2018-08-21 15:57:52 -04001079 struct ir_raw_event rawir = {};
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001080 u8 hi = ir->buf_in[index + 1] & 0xff;
1081 u8 lo = ir->buf_in[index + 2] & 0xff;
A Sun279c60f2018-03-16 15:52:09 -04001082 u32 carrier_cycles;
1083 u32 cycles_fix;
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001084
1085 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -03001086 /* the one and only 5-byte return value command */
1087 case MCE_RSP_GETPORTSTATUS:
1088 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
1089 ir->txports_cabled |= 1 << hi;
1090 break;
1091
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001092 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001093 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -03001094 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001095 break;
Jarod Wilsona411e832011-07-18 16:54:26 -03001096 case MCE_RSP_EQIRNUMPORTS:
1097 ir->num_txports = hi;
1098 ir->num_rxports = lo;
1099 break;
A Sun279c60f2018-03-16 15:52:09 -04001100 case MCE_RSP_EQIRRXCFCNT:
1101 /*
1102 * The carrier cycle counter can overflow and wrap around
1103 * without notice from the device. So frequency measurement
1104 * will be inaccurate with long duration IR.
1105 *
1106 * The long-range (non learning) receiver always reports
1107 * zero count so we always ignore its report.
1108 */
1109 if (ir->carrier_report_enabled && ir->learning_active &&
1110 ir->pulse_tunit > 0) {
1111 carrier_cycles = (hi << 8 | lo);
1112 /*
1113 * Adjust carrier cycle count by adding
1114 * 1 missed count per pulse "on"
1115 */
1116 cycles_fix = ir->flags.rx2 == 2 ? ir->pulse_count : 0;
1117 rawir.carrier_report = 1;
1118 rawir.carrier = (1000000u / MCE_TIME_UNIT) *
1119 (carrier_cycles + cycles_fix) /
1120 ir->pulse_tunit;
1121 dev_dbg(ir->dev, "RX carrier frequency %u Hz (pulse count = %u, cycles = %u, duration = %u, rx2 = %u)",
1122 rawir.carrier, ir->pulse_count, carrier_cycles,
1123 ir->pulse_tunit, ir->flags.rx2);
1124 ir_raw_event_store(ir->rc, &rawir);
1125 }
1126 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001127
1128 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001129 case MCE_RSP_EQEMVER:
1130 ir->emver = hi;
1131 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001132 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001133 ir->tx_mask = hi;
1134 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001135 case MCE_RSP_EQIRRXPORTEN:
A Sun279c60f2018-03-16 15:52:09 -04001136 ir->learning_active = ((hi & 0x02) == 0x02);
1137 if (ir->rxports_active != hi) {
1138 dev_info(ir->dev, "%s-range (0x%x) receiver active",
1139 ir->learning_active ? "short" : "long", hi);
1140 ir->rxports_active = hi;
1141 }
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001142 break;
Jarod Wilson4840b782011-07-18 16:54:24 -03001143 case MCE_RSP_CMD_ILLEGAL:
1144 ir->need_reset = true;
1145 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001146 default:
1147 break;
1148 }
1149}
1150
Jarod Wilson66e89522010-06-01 17:32:08 -03001151static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
1152{
Sean Young183e19f2018-08-21 15:57:52 -04001153 struct ir_raw_event rawir = {};
Sean Youngb83bfd12012-08-13 08:59:47 -03001154 bool event = false;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001155 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -03001156
1157 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
1158 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001159 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -03001160
Jarod Wilson29b44942010-11-09 18:41:46 -03001161 /* if there's no data, just return now */
1162 if (buf_len <= i)
1163 return;
1164
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001165 for (; i < buf_len; i++) {
1166 switch (ir->parser_state) {
1167 case SUBCMD:
William Steidtmann76dea4c2013-04-15 17:17:11 -03001168 ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]);
A Sun5c809922017-03-26 16:04:51 -03001169 mceusb_dev_printdata(ir, ir->buf_in, buf_len, i - 1,
Jarod Wilson36e9d262010-10-22 16:49:35 -03001170 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001171 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001172 ir->parser_state = CMD_DATA;
1173 break;
1174 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -03001175 ir->rem--;
Jarod Wilson66e89522010-06-01 17:32:08 -03001176 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
A Sun279c60f2018-03-16 15:52:09 -04001177 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK);
Sean Youngd4589932018-05-10 07:37:51 -04001178 if (unlikely(!rawir.duration)) {
A Suna91418a2019-06-19 03:53:53 -04001179 dev_dbg(ir->dev, "nonsensical irdata %02x with duration 0",
1180 ir->buf_in[i]);
Sean Youngd4589932018-05-10 07:37:51 -04001181 break;
1182 }
A Sun279c60f2018-03-16 15:52:09 -04001183 if (rawir.pulse) {
1184 ir->pulse_tunit += rawir.duration;
1185 ir->pulse_count++;
1186 }
1187 rawir.duration *= US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -03001188
A Sun279c60f2018-03-16 15:52:09 -04001189 dev_dbg(ir->dev, "Storing %s %u ns (%02x)",
Jarod Wilson66e89522010-06-01 17:32:08 -03001190 rawir.pulse ? "pulse" : "space",
A Sun279c60f2018-03-16 15:52:09 -04001191 rawir.duration, ir->buf_in[i]);
Jarod Wilson66e89522010-06-01 17:32:08 -03001192
Sean Youngb83bfd12012-08-13 08:59:47 -03001193 if (ir_raw_event_store_with_filter(ir->rc, &rawir))
1194 event = true;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001195 break;
1196 case CMD_DATA:
1197 ir->rem--;
1198 break;
1199 case CMD_HEADER:
1200 /* decode mce packets of the form (84),AA,BB,CC,DD */
1201 /* IR data packets can span USB messages - rem */
1202 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001203 if ((ir->cmd == MCE_CMD_PORT_IR) ||
1204 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -03001205 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001206 ir->parser_state = SUBCMD;
1207 continue;
1208 }
1209 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
A Sun5c809922017-03-26 16:04:51 -03001210 mceusb_dev_printdata(ir, ir->buf_in, buf_len,
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001211 i, ir->rem + 1, false);
A Sun279c60f2018-03-16 15:52:09 -04001212 if (ir->rem) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001213 ir->parser_state = PARSE_IRDATA;
A Sun279c60f2018-03-16 15:52:09 -04001214 } else {
Sean Young183e19f2018-08-21 15:57:52 -04001215 struct ir_raw_event ev = {
1216 .timeout = 1,
1217 .duration = ir->rc->timeout
1218 };
1219
Sean Young91352b52018-04-18 05:36:25 -04001220 if (ir_raw_event_store_with_filter(ir->rc,
Sean Young183e19f2018-08-21 15:57:52 -04001221 &ev))
Sean Young91352b52018-04-18 05:36:25 -04001222 event = true;
A Sun279c60f2018-03-16 15:52:09 -04001223 ir->pulse_tunit = 0;
1224 ir->pulse_count = 0;
1225 }
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001226 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001227 }
1228
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001229 if (ir->parser_state != CMD_HEADER && !ir->rem)
1230 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001231 }
Sean Youngb83bfd12012-08-13 08:59:47 -03001232 if (event) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001233 dev_dbg(ir->dev, "processed IR data");
Sean Youngb83bfd12012-08-13 08:59:47 -03001234 ir_raw_event_handle(ir->rc);
1235 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001236}
1237
Sean Young6ac454a2012-07-15 13:31:31 -03001238static void mceusb_dev_recv(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -03001239{
1240 struct mceusb_dev *ir;
Jarod Wilson66e89522010-06-01 17:32:08 -03001241
1242 if (!urb)
1243 return;
1244
1245 ir = urb->context;
1246 if (!ir) {
1247 usb_unlink_urb(urb);
1248 return;
1249 }
1250
Jarod Wilson66e89522010-06-01 17:32:08 -03001251 switch (urb->status) {
1252 /* success */
1253 case 0:
Sean Youngd26cec22016-04-14 17:42:49 -03001254 mceusb_process_ir_data(ir, urb->actual_length);
Jarod Wilson66e89522010-06-01 17:32:08 -03001255 break;
1256
1257 case -ECONNRESET:
1258 case -ENOENT:
Sean Young6b4a16c2014-01-20 19:10:44 -03001259 case -EILSEQ:
Jarod Wilson66e89522010-06-01 17:32:08 -03001260 case -ESHUTDOWN:
1261 usb_unlink_urb(urb);
1262 return;
1263
1264 case -EPIPE:
A Suna06854a2017-03-26 15:28:08 -03001265 dev_err(ir->dev, "Error: urb status = %d (RX HALT)",
1266 urb->status);
1267 mceusb_defer_kevent(ir, EVENT_RX_HALT);
1268 return;
1269
Jarod Wilson66e89522010-06-01 17:32:08 -03001270 default:
Sean Young6b4a16c2014-01-20 19:10:44 -03001271 dev_err(ir->dev, "Error: urb status = %d", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001272 break;
1273 }
1274
1275 usb_submit_urb(urb, GFP_ATOMIC);
1276}
1277
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001278static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1279{
1280 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1281 ir->emver = 1;
1282 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1283}
1284
Jarod Wilson66e89522010-06-01 17:32:08 -03001285static void mceusb_gen1_init(struct mceusb_dev *ir)
1286{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001287 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001288 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001289 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001290
1291 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1292 if (!data) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001293 dev_err(dev, "%s: memory allocation failed!", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001294 return;
1295 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001296
1297 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001298 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001299 * on the receive control pipe and expect a certain value pair back
1300 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001301 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1302 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001303 data, USB_CTRL_MSG_SZ, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001304 dev_dbg(dev, "set address - ret = %d", ret);
1305 dev_dbg(dev, "set address - data[0] = %d, data[1] = %d",
1306 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -03001307
1308 /* set feature: bit rate 38400 bps */
1309 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1310 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1311 0xc04e, 0x0000, NULL, 0, HZ * 3);
1312
Sean Young6b4a16c2014-01-20 19:10:44 -03001313 dev_dbg(dev, "set feature - ret = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001314
1315 /* bRequest 4: set char length to 8 bits */
1316 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1317 4, USB_TYPE_VENDOR,
1318 0x0808, 0x0000, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001319 dev_dbg(dev, "set char length - retB = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001320
1321 /* bRequest 2: set handshaking to use DTR/DSR */
1322 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1323 2, USB_TYPE_VENDOR,
1324 0x0000, 0x0100, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001325 dev_dbg(dev, "set handshake - retC = %d", ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001326
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001327 /* device resume */
1328 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001329
1330 /* get hw/sw revision? */
1331 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001332
Jarod Wilson657290b2010-06-16 17:10:05 -03001333 kfree(data);
Sean Young8dfef672013-01-29 08:19:29 -03001334}
Jarod Wilson66e89522010-06-01 17:32:08 -03001335
1336static void mceusb_gen2_init(struct mceusb_dev *ir)
1337{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001338 /* device resume */
1339 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001340
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001341 /* get wake version (protocol, key, address) */
1342 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1343
1344 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001345 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001346}
1347
Jarod Wilson22b07662010-07-08 12:38:57 -03001348static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001349{
Jarod Wilsona411e832011-07-18 16:54:26 -03001350 int i;
1351 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1352 MCE_CMD_GETPORTSTATUS, 0x00 };
1353
1354 /* defaults, if the hardware doesn't support querying */
1355 ir->num_txports = 2;
1356 ir->num_rxports = 2;
1357
1358 /* get number of tx and rx ports */
1359 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1360
Jarod Wilson66e89522010-06-01 17:32:08 -03001361 /* get the carrier and frequency */
1362 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001363
Jarod Wilsona411e832011-07-18 16:54:26 -03001364 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001365 /* get the transmitter bitmask */
1366 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001367
1368 /* get receiver timeout value */
1369 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001370
1371 /* get receiver sensor setting */
1372 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001373
1374 for (i = 0; i < ir->num_txports; i++) {
1375 cmdbuf[2] = i;
1376 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1377 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001378}
1379
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001380static void mceusb_flash_led(struct mceusb_dev *ir)
1381{
1382 if (ir->emver < 2)
1383 return;
1384
1385 mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
1386}
1387
A Suna06854a2017-03-26 15:28:08 -03001388/*
1389 * Workqueue function
1390 * for resetting or recovering device after occurrence of error events
1391 * specified in ir->kevent bit field.
1392 * Function runs (via schedule_work()) in non-interrupt context, for
1393 * calls here (such as usb_clear_halt()) requiring non-interrupt context.
1394 */
1395static void mceusb_deferred_kevent(struct work_struct *work)
1396{
1397 struct mceusb_dev *ir =
1398 container_of(work, struct mceusb_dev, kevent);
1399 int status;
1400
1401 if (test_bit(EVENT_RX_HALT, &ir->kevent_flags)) {
1402 usb_unlink_urb(ir->urb_in);
1403 status = usb_clear_halt(ir->usbdev, ir->pipe_in);
1404 if (status < 0) {
1405 dev_err(ir->dev, "rx clear halt error %d",
1406 status);
A Suna06854a2017-03-26 15:28:08 -03001407 }
1408 clear_bit(EVENT_RX_HALT, &ir->kevent_flags);
A Sunc779a9c2017-04-13 05:06:47 -03001409 if (status == 0) {
1410 status = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1411 if (status < 0) {
1412 dev_err(ir->dev,
1413 "rx unhalt submit urb error %d",
1414 status);
1415 }
A Suna06854a2017-03-26 15:28:08 -03001416 }
1417 }
A Sunc779a9c2017-04-13 05:06:47 -03001418
1419 if (test_bit(EVENT_TX_HALT, &ir->kevent_flags)) {
1420 status = usb_clear_halt(ir->usbdev, ir->pipe_out);
1421 if (status < 0)
1422 dev_err(ir->dev, "tx clear halt error %d", status);
1423 clear_bit(EVENT_TX_HALT, &ir->kevent_flags);
1424 }
A Suna06854a2017-03-26 15:28:08 -03001425}
1426
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001427static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001428{
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001429 struct usb_device *udev = ir->usbdev;
Jarod Wilson66e89522010-06-01 17:32:08 -03001430 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001431 struct rc_dev *rc;
1432 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001433
Andi Shyti0f7499f2016-12-16 06:50:58 -02001434 rc = rc_allocate_device(RC_DRIVER_IR_RAW);
David Härdemand8b4b582010-10-29 16:08:23 -03001435 if (!rc) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001436 dev_err(dev, "remote dev allocation failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001437 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001438 }
1439
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001440 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001441 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001442 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001443 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001444 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1445 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1446
Jarod Wilson66e89522010-06-01 17:32:08 -03001447 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001448
Sean Young518f4b22017-07-01 12:13:19 -04001449 rc->device_name = ir->name;
David Härdemand8b4b582010-10-29 16:08:23 -03001450 rc->input_phys = ir->phys;
1451 usb_to_input_id(ir->usbdev, &rc->input_id);
1452 rc->dev.parent = dev;
1453 rc->priv = ir;
Sean Young6d741bf2017-08-07 16:20:58 -04001454 rc->allowed_protocols = RC_PROTO_BIT_ALL_IR_DECODER;
Sean Young877f1a72018-04-08 11:06:49 -04001455 rc->min_timeout = US_TO_NS(MCE_TIME_UNIT);
Rafi Rubin9824ae42011-07-03 17:13:53 -03001456 rc->timeout = MS_TO_NS(100);
Sean Youngaec3ead2018-05-09 06:11:28 -04001457 if (!mceusb_model[ir->model].broken_irtimeout) {
1458 rc->s_timeout = mceusb_set_timeout;
1459 rc->max_timeout = 10 * IR_DEFAULT_TIMEOUT;
1460 } else {
1461 /*
1462 * If we can't set the timeout using CMD_SETIRTIMEOUT, we can
1463 * rely on software timeouts for timeouts < 100ms.
1464 */
1465 rc->max_timeout = rc->timeout;
1466 }
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001467 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001468 rc->s_tx_mask = mceusb_set_tx_mask;
1469 rc->s_tx_carrier = mceusb_set_tx_carrier;
1470 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001471 }
A Sun279c60f2018-03-16 15:52:09 -04001472 if (ir->flags.rx2 > 0) {
1473 rc->s_learning_mode = mceusb_set_rx_wideband;
1474 rc->s_carrier_report = mceusb_set_rx_carrier_report;
1475 }
David Härdemand8b4b582010-10-29 16:08:23 -03001476 rc->driver_name = DRIVER_NAME;
Mauro Carvalho Chehab5b8c8d42014-07-27 17:28:48 -03001477
1478 switch (le16_to_cpu(udev->descriptor.idVendor)) {
1479 case VENDOR_HAUPPAUGE:
1480 rc->map_name = RC_MAP_HAUPPAUGE;
1481 break;
1482 case VENDOR_PCTV:
1483 rc->map_name = RC_MAP_PINNACLE_PCTV_HD;
1484 break;
1485 default:
1486 rc->map_name = RC_MAP_RC6_MCE;
1487 }
1488 if (mceusb_model[ir->model].rc_map)
1489 rc->map_name = mceusb_model[ir->model].rc_map;
Jarod Wilson66e89522010-06-01 17:32:08 -03001490
David Härdemand8b4b582010-10-29 16:08:23 -03001491 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001492 if (ret < 0) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001493 dev_err(dev, "remote dev registration failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001494 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001495 }
1496
David Härdemand8b4b582010-10-29 16:08:23 -03001497 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001498
David Härdemand8b4b582010-10-29 16:08:23 -03001499out:
1500 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001501 return NULL;
1502}
1503
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001504static int mceusb_dev_probe(struct usb_interface *intf,
1505 const struct usb_device_id *id)
Jarod Wilson66e89522010-06-01 17:32:08 -03001506{
1507 struct usb_device *dev = interface_to_usbdev(intf);
1508 struct usb_host_interface *idesc;
1509 struct usb_endpoint_descriptor *ep = NULL;
1510 struct usb_endpoint_descriptor *ep_in = NULL;
1511 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001512 struct mceusb_dev *ir = NULL;
Sean Younge1159cb2016-04-14 17:42:50 -03001513 int pipe, maxp, i, res;
Jarod Wilson66e89522010-06-01 17:32:08 -03001514 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001515 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001516 bool is_gen3;
1517 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001518 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001519 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001520
Sean Young6b4a16c2014-01-20 19:10:44 -03001521 dev_dbg(&intf->dev, "%s called", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001522
Jarod Wilson66e89522010-06-01 17:32:08 -03001523 idesc = intf->cur_altsetting;
1524
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001525 is_gen3 = mceusb_model[model].mce_gen3;
1526 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001527 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001528 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001529
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001530 /* There are multi-function devices with non-IR interfaces */
1531 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1532 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001533
1534 /* step through the endpoints to find first bulk in and out endpoint */
1535 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1536 ep = &idesc->endpoint[i].desc;
1537
Matt DeVillier0cacb462014-04-24 11:16:31 -03001538 if (ep_in == NULL) {
1539 if (usb_endpoint_is_bulk_in(ep)) {
1540 ep_in = ep;
1541 dev_dbg(&intf->dev, "acceptable bulk inbound endpoint found\n");
1542 } else if (usb_endpoint_is_int_in(ep)) {
1543 ep_in = ep;
1544 ep_in->bInterval = 1;
1545 dev_dbg(&intf->dev, "acceptable interrupt inbound endpoint found\n");
1546 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001547 }
1548
Matt DeVillier0cacb462014-04-24 11:16:31 -03001549 if (ep_out == NULL) {
1550 if (usb_endpoint_is_bulk_out(ep)) {
1551 ep_out = ep;
1552 dev_dbg(&intf->dev, "acceptable bulk outbound endpoint found\n");
1553 } else if (usb_endpoint_is_int_out(ep)) {
1554 ep_out = ep;
1555 ep_out->bInterval = 1;
1556 dev_dbg(&intf->dev, "acceptable interrupt outbound endpoint found\n");
1557 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001558 }
1559 }
Johan Hovold03eb2a52017-03-07 15:14:13 -03001560 if (!ep_in || !ep_out) {
1561 dev_dbg(&intf->dev, "required endpoints not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001562 return -ENODEV;
1563 }
1564
Matt DeVillier0cacb462014-04-24 11:16:31 -03001565 if (usb_endpoint_xfer_int(ep_in))
1566 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1567 else
1568 pipe = usb_rcvbulkpipe(dev, ep_in->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001569 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1570
1571 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1572 if (!ir)
1573 goto mem_alloc_fail;
1574
A Suna06854a2017-03-26 15:28:08 -03001575 ir->pipe_in = pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -03001576 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1577 if (!ir->buf_in)
1578 goto buf_in_alloc_fail;
1579
1580 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1581 if (!ir->urb_in)
1582 goto urb_in_alloc_fail;
1583
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001584 ir->usbdev = usb_get_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001585 ir->dev = &intf->dev;
1586 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001587 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001588 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001589 ir->flags.no_tx = mceusb_model[model].no_tx;
A Sun279c60f2018-03-16 15:52:09 -04001590 ir->flags.rx2 = mceusb_model[model].rx2;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001591 ir->model = model;
1592
Jarod Wilson66e89522010-06-01 17:32:08 -03001593 /* Saving usb interface data for use by the transmitter routine */
Jarod Wilson66e89522010-06-01 17:32:08 -03001594 ir->usb_ep_out = ep_out;
A Sunc779a9c2017-04-13 05:06:47 -03001595 if (usb_endpoint_xfer_int(ep_out))
1596 ir->pipe_out = usb_sndintpipe(ir->usbdev,
1597 ep_out->bEndpointAddress);
1598 else
1599 ir->pipe_out = usb_sndbulkpipe(ir->usbdev,
1600 ep_out->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001601
1602 if (dev->descriptor.iManufacturer
1603 && usb_string(dev, dev->descriptor.iManufacturer,
1604 buf, sizeof(buf)) > 0)
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001605 strscpy(name, buf, sizeof(name));
Jarod Wilson66e89522010-06-01 17:32:08 -03001606 if (dev->descriptor.iProduct
1607 && usb_string(dev, dev->descriptor.iProduct,
1608 buf, sizeof(buf)) > 0)
1609 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1610 " %s", buf);
1611
A Suna06854a2017-03-26 15:28:08 -03001612 /*
1613 * Initialize async USB error handler before registering
1614 * or activating any mceusb RX and TX functions
1615 */
1616 INIT_WORK(&ir->kevent, mceusb_deferred_kevent);
1617
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001618 ir->rc = mceusb_init_rc_dev(ir);
David Härdemand8b4b582010-10-29 16:08:23 -03001619 if (!ir->rc)
1620 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001621
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001622 /* wire up inbound data handler */
A Sun8e175b22017-03-26 15:33:07 -03001623 if (usb_endpoint_xfer_int(ep_in))
1624 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1625 mceusb_dev_recv, ir, ep_in->bInterval);
1626 else
1627 usb_fill_bulk_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1628 mceusb_dev_recv, ir);
1629
Jarod Wilson66e89522010-06-01 17:32:08 -03001630 ir->urb_in->transfer_dma = ir->dma_in;
1631 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1632
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001633 /* flush buffers on the device */
A Sun5c809922017-03-26 16:04:51 -03001634 dev_dbg(&intf->dev, "Flushing receive buffers");
Sean Younge1159cb2016-04-14 17:42:50 -03001635 res = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1636 if (res)
A Sun5c809922017-03-26 16:04:51 -03001637 dev_err(&intf->dev, "failed to flush buffers: %d", res);
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001638
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001639 /* figure out which firmware/emulator version this hardware has */
1640 mceusb_get_emulator_version(ir);
1641
Jarod Wilson66e89522010-06-01 17:32:08 -03001642 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001643 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001644 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001645 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001646 mceusb_gen2_init(ir);
1647
Jarod Wilson22b07662010-07-08 12:38:57 -03001648 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001649
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001650 mceusb_flash_led(ir);
1651
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001652 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001653 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001654
1655 usb_set_intfdata(intf, ir);
1656
Jarod Wilsonfa3348982011-07-18 16:54:23 -03001657 /* enable wake via this device */
1658 device_set_wakeup_capable(ir->dev, true);
1659 device_set_wakeup_enable(ir->dev, true);
1660
Sean Young6b4a16c2014-01-20 19:10:44 -03001661 dev_info(&intf->dev, "Registered %s with mce emulator interface version %x",
1662 name, ir->emver);
1663 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and %x rx sensors (0x%x active)",
Jarod Wilsona411e832011-07-18 16:54:26 -03001664 ir->num_txports, ir->txports_cabled,
1665 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001666
1667 return 0;
1668
1669 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001670rc_dev_fail:
A Suna06854a2017-03-26 15:28:08 -03001671 cancel_work_sync(&ir->kevent);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001672 usb_put_dev(ir->usbdev);
Sean Younge1159cb2016-04-14 17:42:50 -03001673 usb_kill_urb(ir->urb_in);
Jarod Wilson66e89522010-06-01 17:32:08 -03001674 usb_free_urb(ir->urb_in);
1675urb_in_alloc_fail:
1676 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1677buf_in_alloc_fail:
1678 kfree(ir);
1679mem_alloc_fail:
Sean Young6b4a16c2014-01-20 19:10:44 -03001680 dev_err(&intf->dev, "%s: device setup failed!", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001681
1682 return -ENOMEM;
1683}
1684
1685
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001686static void mceusb_dev_disconnect(struct usb_interface *intf)
Jarod Wilson66e89522010-06-01 17:32:08 -03001687{
1688 struct usb_device *dev = interface_to_usbdev(intf);
1689 struct mceusb_dev *ir = usb_get_intfdata(intf);
1690
1691 usb_set_intfdata(intf, NULL);
1692
1693 if (!ir)
1694 return;
1695
1696 ir->usbdev = NULL;
A Suna06854a2017-03-26 15:28:08 -03001697 cancel_work_sync(&ir->kevent);
David Härdemand8b4b582010-10-29 16:08:23 -03001698 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001699 usb_kill_urb(ir->urb_in);
1700 usb_free_urb(ir->urb_in);
1701 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001702 usb_put_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001703
1704 kfree(ir);
1705}
1706
1707static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1708{
1709 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001710 dev_info(ir->dev, "suspend");
Jarod Wilson66e89522010-06-01 17:32:08 -03001711 usb_kill_urb(ir->urb_in);
1712 return 0;
1713}
1714
1715static int mceusb_dev_resume(struct usb_interface *intf)
1716{
1717 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001718 dev_info(ir->dev, "resume");
Jarod Wilson66e89522010-06-01 17:32:08 -03001719 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1720 return -EIO;
1721 return 0;
1722}
1723
1724static struct usb_driver mceusb_dev_driver = {
1725 .name = DRIVER_NAME,
1726 .probe = mceusb_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001727 .disconnect = mceusb_dev_disconnect,
Jarod Wilson66e89522010-06-01 17:32:08 -03001728 .suspend = mceusb_dev_suspend,
1729 .resume = mceusb_dev_resume,
1730 .reset_resume = mceusb_dev_resume,
1731 .id_table = mceusb_dev_table
1732};
1733
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001734module_usb_driver(mceusb_dev_driver);
Jarod Wilson66e89522010-06-01 17:32:08 -03001735
1736MODULE_DESCRIPTION(DRIVER_DESC);
1737MODULE_AUTHOR(DRIVER_AUTHOR);
1738MODULE_LICENSE("GPL");
1739MODULE_DEVICE_TABLE(usb, mceusb_dev_table);