blob: 4c0c8008872aed48b4dac05063eb4c8831f2283b [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 Sun279c60f2018-03-16 15:52:09 -040045#define DRIVER_VERSION "1.94"
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,
Sean Youngaec3ead2018-05-09 06:11:28 -0400184 MCE_GEN3_BROKEN_IRTIMEOUT,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300185 MCE_GEN2_TX_INV,
Sean Young35ecf2b2018-03-18 06:46:02 -0400186 MCE_GEN2_TX_INV_RX_GOOD,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300187 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300188 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300189 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300190 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300191 MCE_GEN2_NO_TX,
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300192 HAUPPAUGE_CX_HYBRID_TV,
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400193 EVROMEDIA_FULL_HYBRID_FULLHD,
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400194 ASTROMETA_T2HYBRID,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300195};
196
197struct mceusb_model {
198 u32 mce_gen1:1;
199 u32 mce_gen2:1;
200 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300201 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300202 u32 no_tx:1;
Sean Youngaec3ead2018-05-09 06:11:28 -0400203 u32 broken_irtimeout:1;
A Sun279c60f2018-03-16 15:52:09 -0400204 /*
205 * 2nd IR receiver (short-range, wideband) for learning mode:
206 * 0, absent 2nd receiver (rx2)
207 * 1, rx2 present
208 * 2, rx2 which under counts IR carrier cycles
209 */
210 u32 rx2;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300211
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300212 int ir_intfnum;
213
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300214 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300215 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300216};
217
218static const struct mceusb_model mceusb_model[] = {
219 [MCE_GEN1] = {
220 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300221 .tx_mask_normal = 1,
A Sun279c60f2018-03-16 15:52:09 -0400222 .rx2 = 2,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300223 },
224 [MCE_GEN2] = {
225 .mce_gen2 = 1,
A Sun279c60f2018-03-16 15:52:09 -0400226 .rx2 = 2,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300227 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300228 [MCE_GEN2_NO_TX] = {
229 .mce_gen2 = 1,
230 .no_tx = 1,
231 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300232 [MCE_GEN2_TX_INV] = {
233 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300234 .tx_mask_normal = 1,
A Sun279c60f2018-03-16 15:52:09 -0400235 .rx2 = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300236 },
Sean Young35ecf2b2018-03-18 06:46:02 -0400237 [MCE_GEN2_TX_INV_RX_GOOD] = {
238 .mce_gen2 = 1,
239 .tx_mask_normal = 1,
240 .rx2 = 2,
241 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300242 [MCE_GEN3] = {
243 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300244 .tx_mask_normal = 1,
A Sun279c60f2018-03-16 15:52:09 -0400245 .rx2 = 2,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300246 },
Sean Youngaec3ead2018-05-09 06:11:28 -0400247 [MCE_GEN3_BROKEN_IRTIMEOUT] = {
248 .mce_gen3 = 1,
249 .tx_mask_normal = 1,
250 .rx2 = 2,
251 .broken_irtimeout = 1
252 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300253 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300254 /*
255 * In fact, the EVK is shipped without
256 * remotes, but we should have something handy,
257 * to allow testing it
258 */
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300259 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
A Sun279c60f2018-03-16 15:52:09 -0400260 .rx2 = 2,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300261 },
262 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300263 .no_tx = 1, /* tx isn't wired up at all */
264 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300265 },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300266 [HAUPPAUGE_CX_HYBRID_TV] = {
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300267 .no_tx = 1, /* eeprom says it has no tx */
268 .name = "Conexant Hybrid TV (cx231xx) MCE IR no TX",
269 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300270 [MULTIFUNCTION] = {
271 .mce_gen2 = 1,
272 .ir_intfnum = 2,
A Sun279c60f2018-03-16 15:52:09 -0400273 .rx2 = 2,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300274 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300275 [TIVO_KIT] = {
276 .mce_gen2 = 1,
277 .rc_map = RC_MAP_TIVO,
A Sun279c60f2018-03-16 15:52:09 -0400278 .rx2 = 2,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300279 },
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400280 [EVROMEDIA_FULL_HYBRID_FULLHD] = {
281 .name = "Evromedia USB Full Hybrid Full HD",
282 .no_tx = 1,
283 .rc_map = RC_MAP_MSI_DIGIVOX_III,
284 },
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400285 [ASTROMETA_T2HYBRID] = {
286 .name = "Astrometa T2Hybrid",
287 .no_tx = 1,
288 .rc_map = RC_MAP_ASTROMETA_T2HYBRID,
289 }
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300290};
291
Arvind Yadav5fad16b2017-08-13 05:54:44 -0300292static const struct usb_device_id mceusb_dev_table[] = {
Jarod Wilson66e89522010-06-01 17:32:08 -0300293 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300294 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
295 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300296 /* Philips Infrared Transceiver - Sahara branded */
297 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
298 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300299 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
300 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300301 /* Philips SRM5100 */
302 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
303 /* Philips Infrared Transceiver - Omaura */
304 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
305 /* Philips Infrared Transceiver - Spinel plus */
306 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
307 /* Philips eHome Infrared Transceiver */
308 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300309 /* Philips/Spinel plus IR transceiver for ASUS */
310 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
311 /* Philips/Spinel plus IR transceiver for ASUS */
312 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300313 /* Philips IR transceiver (Dell branded) */
Sean Young8dfef672013-01-29 08:19:29 -0300314 { USB_DEVICE(VENDOR_PHILIPS, 0x2093),
315 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300316 /* Realtek MCE IR Receiver and card reader */
317 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
318 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300319 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300320 { USB_DEVICE(VENDOR_SMK, 0x031d),
Sean Young35ecf2b2018-03-18 06:46:02 -0400321 .driver_info = MCE_GEN2_TX_INV_RX_GOOD },
Jarod Wilson66e89522010-06-01 17:32:08 -0300322 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300323 { USB_DEVICE(VENDOR_SMK, 0x0322),
324 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300325 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300326 { USB_DEVICE(VENDOR_SMK, 0x0334),
327 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300328 /* SMK eHome Infrared Transceiver */
329 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300330 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
331 { USB_DEVICE(VENDOR_SMK, 0x0353),
332 .driver_info = MCE_GEN2_NO_TX },
Olli Salonen18693842016-03-17 10:11:10 -0300333 /* SMK RXX6000 Infrared Receiver */
334 { USB_DEVICE(VENDOR_SMK, 0x0357),
335 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300336 /* Tatung eHome Infrared Transceiver */
337 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
338 /* Shuttle eHome Infrared Transceiver */
339 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
340 /* Shuttle eHome Infrared Transceiver */
341 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
342 /* Gateway eHome Infrared Transceiver */
343 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
344 /* Mitsumi */
345 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
346 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300347 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
348 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300349 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300350 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
351 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300352 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300353 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
354 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300355 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300356 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
357 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300358 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300359 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
360 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300361 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300362 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Sean Youngaec3ead2018-05-09 06:11:28 -0400363 .driver_info = MCE_GEN3_BROKEN_IRTIMEOUT },
Jarod Wilson66e89522010-06-01 17:32:08 -0300364 /* Ricavision internal Infrared Transceiver */
365 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
366 /* Itron ione Libra Q-11 */
367 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
368 /* FIC eHome Infrared Transceiver */
369 { USB_DEVICE(VENDOR_FIC, 0x9242) },
370 /* LG eHome Infrared Transceiver */
371 { USB_DEVICE(VENDOR_LG, 0x9803) },
372 /* Microsoft MCE Infrared Transceiver */
373 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
374 /* Formosa eHome Infrared Transceiver */
375 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
376 /* Formosa21 / eHome Infrared Receiver */
377 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
378 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300379 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
380 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300381 /* Formosa Industrial Computing / Beanbag Emulation Device */
382 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
383 /* Formosa21 / eHome Infrared Receiver */
384 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
385 /* Formosa Industrial Computing AIM IR605/A */
386 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
387 /* Formosa Industrial Computing */
388 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilson22f17322012-03-12 13:27:03 -0300389 /* Formosa Industrial Computing */
390 { USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300391 /* Fintek eHome Infrared Transceiver (HP branded) */
Sean Youngdb8ee102013-01-29 08:19:30 -0300392 { USB_DEVICE(VENDOR_FINTEK, 0x5168),
393 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300394 /* Fintek eHome Infrared Transceiver */
395 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
396 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
397 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
398 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300399 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
400 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300401 /* Elitegroup Computer Systems IR */
402 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
403 /* Wistron Corp. eHome Infrared Receiver */
404 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
405 /* Compro K100 */
406 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
407 /* Compro K100 v2 */
408 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
409 /* Northstar Systems, Inc. eHome Infrared Transceiver */
410 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
411 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300412 { USB_DEVICE(VENDOR_TIVO, 0x2000),
413 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300414 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300415 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
416 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300417 /* Conexant Hybrid TV RDU253S Polaris */
418 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
419 .driver_info = CX_HYBRID_TV },
Mark Lorda4de5f02012-07-11 18:53:28 -0300420 /* Twisted Melon Inc. - Manta Mini Receiver */
421 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
422 /* Twisted Melon Inc. - Manta Pico Receiver */
423 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
424 /* Twisted Melon Inc. - Manta Transceiver */
425 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300426 /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
427 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
428 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300429 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb131),
430 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Matthias Schwarzott66756612014-08-31 08:35:10 -0300431 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb138),
432 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
433 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb139),
434 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300435 { USB_DEVICE(VENDOR_PCTV, 0x0259),
436 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
437 { USB_DEVICE(VENDOR_PCTV, 0x025e),
438 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Olli Salonene1866132016-03-17 10:11:09 -0300439 /* Adaptec / HP eHome Receiver */
440 { USB_DEVICE(VENDOR_ADAPTEC, 0x0094) },
Oleh Kravchenko47f42f32017-10-28 09:38:16 -0400441 /* Evromedia USB Full Hybrid Full HD */
442 { USB_DEVICE(0x1b80, 0xd3b2),
443 .driver_info = EVROMEDIA_FULL_HYBRID_FULLHD },
Oleh Kravchenko8ff19cd2017-10-28 09:38:18 -0400444 /* Astrometa T2hybrid */
445 { USB_DEVICE(0x15f4, 0x0135),
446 .driver_info = ASTROMETA_T2HYBRID },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300447
Jarod Wilson66e89522010-06-01 17:32:08 -0300448 /* Terminating entry */
449 { }
450};
451
Jarod Wilson66e89522010-06-01 17:32:08 -0300452/* data structure for each usb transceiver */
453struct mceusb_dev {
454 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300455 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300456
457 /* optional features we can enable */
A Sun279c60f2018-03-16 15:52:09 -0400458 bool carrier_report_enabled;
459 bool wideband_rx_enabled; /* aka learning mode, short-range rx */
Jarod Wilson66e89522010-06-01 17:32:08 -0300460
461 /* core device bits */
462 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300463
464 /* usb */
465 struct usb_device *usbdev;
466 struct urb *urb_in;
A Suna06854a2017-03-26 15:28:08 -0300467 unsigned int pipe_in;
Jarod Wilson66e89522010-06-01 17:32:08 -0300468 struct usb_endpoint_descriptor *usb_ep_out;
A Sunc779a9c2017-04-13 05:06:47 -0300469 unsigned int pipe_out;
Jarod Wilson66e89522010-06-01 17:32:08 -0300470
471 /* buffers and dma */
472 unsigned char *buf_in;
473 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300474 dma_addr_t dma_in;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300475
476 enum {
477 CMD_HEADER = 0,
478 SUBCMD,
479 CMD_DATA,
480 PARSE_IRDATA,
481 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300482
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300483 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300484
485 struct {
486 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300487 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300488 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300489 u32 no_tx:1;
A Sun279c60f2018-03-16 15:52:09 -0400490 u32 rx2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300491 } flags;
492
Jarod Wilsone23fb962010-06-16 17:55:52 -0300493 /* transmit support */
Jarod Wilsone23fb962010-06-16 17:55:52 -0300494 u32 carrier;
495 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300496
497 char name[128];
498 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300499 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300500
501 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300502 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300503 u8 num_txports; /* number of transmit ports */
504 u8 num_rxports; /* number of receive sensors */
505 u8 txports_cabled; /* bitmask of transmitters with cable */
506 u8 rxports_active; /* bitmask of active receive sensors */
A Sun279c60f2018-03-16 15:52:09 -0400507 bool learning_active; /* wideband rx is active */
508
509 /* receiver carrier frequency detection support */
510 u32 pulse_tunit; /* IR pulse "on" cumulative time units */
511 u32 pulse_count; /* pulse "on" count in measurement interval */
A Suna06854a2017-03-26 15:28:08 -0300512
513 /*
514 * support for async error handler mceusb_deferred_kevent()
515 * where usb_clear_halt(), usb_reset_configuration(),
516 * usb_reset_device(), etc. must be done in process context
517 */
518 struct work_struct kevent;
519 unsigned long kevent_flags;
520# define EVENT_TX_HALT 0
521# define EVENT_RX_HALT 1
Jarod Wilson66e89522010-06-01 17:32:08 -0300522};
523
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300524/* MCE Device Command Strings, generally a port and command pair */
525static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
526 MCE_CMD_RESUME};
527static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300528static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300529static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300530static char FLASH_LED[] = {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300531static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
532static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
533static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
Jarod Wilsona411e832011-07-18 16:54:26 -0300534static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300535static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
536static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300537/* sub in desired values in lower byte or bytes for full command */
538/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300539static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
540 MCE_CMD_SETIRCFS, 0x00, 0x00};
541static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
542static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
543 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
544static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
545 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300546*/
547
William Steidtmann76dea4c2013-04-15 17:17:11 -0300548static int mceusb_cmd_datasize(u8 cmd, u8 subcmd)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300549{
550 int datasize = 0;
551
552 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300553 case MCE_CMD_NULL:
554 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300555 datasize = 1;
556 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300557 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300558 switch (subcmd) {
William Steidtmann76dea4c2013-04-15 17:17:11 -0300559 case MCE_RSP_GETPORTSTATUS:
560 datasize = 5;
561 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300562 case MCE_RSP_EQWAKEVERSION:
563 datasize = 4;
564 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300565 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300566 datasize = 2;
567 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300568 case MCE_RSP_EQWAKESUPPORT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300569 case MCE_RSP_GETWAKESOURCE:
570 case MCE_RSP_EQDEVDETAILS:
571 case MCE_RSP_EQEMVER:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300572 datasize = 1;
573 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300574 }
Sean Younge708e5a2018-05-10 07:49:49 -0400575 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300576 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300577 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300578 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300579 case MCE_RSP_EQIRCFS:
580 case MCE_RSP_EQIRTIMEOUT:
581 case MCE_RSP_EQIRRXCFCNT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300582 case MCE_RSP_EQIRNUMPORTS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300583 datasize = 2;
584 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300585 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300586 case MCE_RSP_EQIRTXPORTS:
587 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300588 datasize = 1;
589 break;
590 }
591 }
592 return datasize;
593}
594
Sean Youngff05cf02017-08-04 05:30:20 -0400595static void mceusb_dev_printdata(struct mceusb_dev *ir, u8 *buf, int buf_len,
596 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300597{
Sean Young6b4a16c2014-01-20 19:10:44 -0300598#if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
599 char *inout;
Sean Youngff05cf02017-08-04 05:30:20 -0400600 u8 cmd, subcmd, *data;
Jarod Wilson66e89522010-06-01 17:32:08 -0300601 struct device *dev = ir->dev;
Sean Young6b4a16c2014-01-20 19:10:44 -0300602 int start, skip = 0;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300603 u32 carrier, period;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300604
Jarod Wilson657290b2010-06-16 17:10:05 -0300605 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300606 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300607 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300608
Jarod Wilson36e9d262010-10-22 16:49:35 -0300609 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300610 return;
611
Sean Young6b4a16c2014-01-20 19:10:44 -0300612 dev_dbg(dev, "%cx data: %*ph (length=%d)",
A Sun5c809922017-03-26 16:04:51 -0300613 (out ? 't' : 'r'),
614 min(len, buf_len - offset), buf + offset, len);
Jarod Wilson66e89522010-06-01 17:32:08 -0300615
Sean Young6b4a16c2014-01-20 19:10:44 -0300616 inout = out ? "Request" : "Got";
Jarod Wilson66e89522010-06-01 17:32:08 -0300617
Jarod Wilson36e9d262010-10-22 16:49:35 -0300618 start = offset + skip;
619 cmd = buf[start] & 0xff;
620 subcmd = buf[start + 1] & 0xff;
Sean Youngff05cf02017-08-04 05:30:20 -0400621 data = buf + start + 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300622
623 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300624 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300625 if (subcmd == MCE_CMD_NULL)
626 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300627 if ((subcmd == MCE_CMD_PORT_SYS) &&
Sean Youngff05cf02017-08-04 05:30:20 -0400628 (data[0] == MCE_CMD_RESUME))
Sean Young6b4a16c2014-01-20 19:10:44 -0300629 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300630 else
Sean Young6b4a16c2014-01-20 19:10:44 -0300631 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300632 cmd, subcmd);
633 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300634 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300635 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300636 case MCE_RSP_EQEMVER:
637 if (!out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300638 dev_dbg(dev, "Emulator interface version %x",
Sean Youngff05cf02017-08-04 05:30:20 -0400639 data[0]);
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300640 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300641 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300642 if (len == 2)
Sean Young6b4a16c2014-01-20 19:10:44 -0300643 dev_dbg(dev, "Get hw/sw rev?");
Jarod Wilson66e89522010-06-01 17:32:08 -0300644 else
Mauro Carvalho Chehabeef8fc32016-03-06 10:00:09 -0300645 dev_dbg(dev, "hw/sw rev %*ph",
646 4, &buf[start + 2]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300647 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300648 case MCE_CMD_RESUME:
Sean Young6b4a16c2014-01-20 19:10:44 -0300649 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300650 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300651 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300652 dev_dbg(dev, "Illegal PORT_SYS command");
Jarod Wilson66e89522010-06-01 17:32:08 -0300653 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300654 case MCE_RSP_EQWAKEVERSION:
655 if (!out)
Mauro Carvalho Chehab25ec5872016-10-18 17:44:25 -0200656 dev_dbg(dev, "Wake version, proto: 0x%02x, payload: 0x%02x, address: 0x%02x, version: 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400657 data[0], data[1], data[2], data[3]);
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300658 break;
659 case MCE_RSP_GETPORTSTATUS:
660 if (!out)
661 /* We use data1 + 1 here, to match hw labels */
Sean Young6b4a16c2014-01-20 19:10:44 -0300662 dev_dbg(dev, "TX port %d: blaster is%s connected",
Sean Youngff05cf02017-08-04 05:30:20 -0400663 data[0] + 1, data[3] ? " not" : "");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300664 break;
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300665 case MCE_CMD_FLASHLED:
Sean Young6b4a16c2014-01-20 19:10:44 -0300666 dev_dbg(dev, "Attempting to flash LED");
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300667 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300668 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300669 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300670 cmd, subcmd);
671 break;
672 }
673 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300674 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300675 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300676 case MCE_CMD_SIG_END:
Sean Young6b4a16c2014-01-20 19:10:44 -0300677 dev_dbg(dev, "End of signal");
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300678 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300679 case MCE_CMD_PING:
Sean Young6b4a16c2014-01-20 19:10:44 -0300680 dev_dbg(dev, "Ping");
Jarod Wilson66e89522010-06-01 17:32:08 -0300681 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300682 case MCE_CMD_UNKNOWN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300683 dev_dbg(dev, "Resp to 9f 05 of 0x%02x 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400684 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300685 break;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300686 case MCE_RSP_EQIRCFS:
Sean Youngff05cf02017-08-04 05:30:20 -0400687 period = DIV_ROUND_CLOSEST((1U << data[0] * 2) *
688 (data[1] + 1), 10);
Jarod Wilsone217fb42011-07-18 16:54:28 -0300689 if (!period)
690 break;
691 carrier = (1000 * 1000) / period;
Sean Young6b4a16c2014-01-20 19:10:44 -0300692 dev_dbg(dev, "%s carrier of %u Hz (period %uus)",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300693 inout, carrier, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300694 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300695 case MCE_CMD_GETIRCFS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300696 dev_dbg(dev, "Get carrier mode and freq");
Jarod Wilson66e89522010-06-01 17:32:08 -0300697 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300698 case MCE_RSP_EQIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300699 dev_dbg(dev, "%s transmit blaster mask of 0x%02x",
Sean Youngff05cf02017-08-04 05:30:20 -0400700 inout, data[0]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300701 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300702 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300703 /* value is in units of 50us, so x*50/1000 ms */
Sean Youngff05cf02017-08-04 05:30:20 -0400704 period = ((data[0] << 8) | data[1]) *
705 MCE_TIME_UNIT / 1000;
Sean Young6b4a16c2014-01-20 19:10:44 -0300706 dev_dbg(dev, "%s receive timeout of %d ms",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300707 inout, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300708 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300709 case MCE_CMD_GETIRTIMEOUT:
Sean Young6b4a16c2014-01-20 19:10:44 -0300710 dev_dbg(dev, "Get receive timeout");
Jarod Wilson66e89522010-06-01 17:32:08 -0300711 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300712 case MCE_CMD_GETIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300713 dev_dbg(dev, "Get transmit blaster mask");
Jarod Wilson66e89522010-06-01 17:32:08 -0300714 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300715 case MCE_RSP_EQIRRXPORTEN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300716 dev_dbg(dev, "%s %s-range receive sensor in use",
Sean Youngff05cf02017-08-04 05:30:20 -0400717 inout, data[0] == 0x02 ? "short" : "long");
Jarod Wilson66e89522010-06-01 17:32:08 -0300718 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300719 case MCE_CMD_GETIRRXPORTEN:
720 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300721 if (out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300722 dev_dbg(dev, "Get receive sensor");
A Sun279c60f2018-03-16 15:52:09 -0400723 else
724 dev_dbg(dev, "RX carrier cycle count: %d",
Sean Youngff05cf02017-08-04 05:30:20 -0400725 ((data[0] << 8) | data[1]));
Jarod Wilson66e89522010-06-01 17:32:08 -0300726 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300727 case MCE_RSP_EQIRNUMPORTS:
728 if (out)
729 break;
Sean Young6b4a16c2014-01-20 19:10:44 -0300730 dev_dbg(dev, "Num TX ports: %x, num RX ports: %x",
Sean Youngff05cf02017-08-04 05:30:20 -0400731 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300732 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300733 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300734 dev_dbg(dev, "Illegal PORT_IR command");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300735 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300736 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300737 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300738 cmd, subcmd);
739 break;
740 }
741 break;
742 default:
743 break;
744 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300745
746 if (cmd == MCE_IRDATA_TRAILER)
Sean Young6b4a16c2014-01-20 19:10:44 -0300747 dev_dbg(dev, "End of raw IR data");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300748 else if ((cmd != MCE_CMD_PORT_IR) &&
749 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Sean Young6b4a16c2014-01-20 19:10:44 -0300750 dev_dbg(dev, "Raw IR data, %d pulse/space samples", ir->rem);
751#endif
Jarod Wilson66e89522010-06-01 17:32:08 -0300752}
753
A Suna06854a2017-03-26 15:28:08 -0300754/*
755 * Schedule work that can't be done in interrupt handlers
756 * (mceusb_dev_recv() and mce_async_callback()) nor tasklets.
757 * Invokes mceusb_deferred_kevent() for recovering from
758 * error events specified by the kevent bit field.
759 */
760static void mceusb_defer_kevent(struct mceusb_dev *ir, int kevent)
761{
762 set_bit(kevent, &ir->kevent_flags);
763 if (!schedule_work(&ir->kevent))
764 dev_err(ir->dev, "kevent %d may have been dropped", kevent);
765 else
766 dev_dbg(ir->dev, "kevent %d scheduled", kevent);
767}
768
Sean Young6ac454a2012-07-15 13:31:31 -0300769static void mce_async_callback(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -0300770{
771 struct mceusb_dev *ir;
772 int len;
773
774 if (!urb)
775 return;
776
777 ir = urb->context;
Sean Young6b4a16c2014-01-20 19:10:44 -0300778
779 switch (urb->status) {
780 /* success */
781 case 0:
Jarod Wilson66e89522010-06-01 17:32:08 -0300782 len = urb->actual_length;
783
A Sun5c809922017-03-26 16:04:51 -0300784 mceusb_dev_printdata(ir, urb->transfer_buffer, len,
785 0, len, true);
Sean Young6b4a16c2014-01-20 19:10:44 -0300786 break;
787
788 case -ECONNRESET:
789 case -ENOENT:
790 case -EILSEQ:
791 case -ESHUTDOWN:
792 break;
793
794 case -EPIPE:
A Sunc779a9c2017-04-13 05:06:47 -0300795 dev_err(ir->dev, "Error: request urb status = %d (TX HALT)",
796 urb->status);
797 mceusb_defer_kevent(ir, EVENT_TX_HALT);
798 break;
799
Sean Young6b4a16c2014-01-20 19:10:44 -0300800 default:
801 dev_err(ir->dev, "Error: request urb status = %d", urb->status);
802 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300803 }
804
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300805 /* the transfer buffer and urb were allocated in mce_request_packet */
806 kfree(urb->transfer_buffer);
807 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300808}
809
A Sun5c809922017-03-26 16:04:51 -0300810/* request outgoing (send) usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300811static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
Sean Younge1159cb2016-04-14 17:42:50 -0300812 int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300813{
A Sunc779a9c2017-04-13 05:06:47 -0300814 int res;
Jarod Wilson66e89522010-06-01 17:32:08 -0300815 struct urb *async_urb;
816 struct device *dev = ir->dev;
817 unsigned char *async_buf;
818
Sean Younge1159cb2016-04-14 17:42:50 -0300819 async_urb = usb_alloc_urb(0, GFP_KERNEL);
820 if (unlikely(!async_urb)) {
A Sun5c809922017-03-26 16:04:51 -0300821 dev_err(dev, "Error, couldn't allocate urb!");
Jarod Wilson66e89522010-06-01 17:32:08 -0300822 return;
823 }
824
Sean Younge1159cb2016-04-14 17:42:50 -0300825 async_buf = kmalloc(size, GFP_KERNEL);
826 if (!async_buf) {
827 usb_free_urb(async_urb);
828 return;
829 }
830
831 /* outbound data */
A Sunc779a9c2017-04-13 05:06:47 -0300832 if (usb_endpoint_xfer_int(ir->usb_ep_out))
833 usb_fill_int_urb(async_urb, ir->usbdev, ir->pipe_out,
834 async_buf, size, mce_async_callback, ir,
Sean Younge1159cb2016-04-14 17:42:50 -0300835 ir->usb_ep_out->bInterval);
A Sunc779a9c2017-04-13 05:06:47 -0300836 else
837 usb_fill_bulk_urb(async_urb, ir->usbdev, ir->pipe_out,
838 async_buf, size, mce_async_callback, ir);
839
Sean Younge1159cb2016-04-14 17:42:50 -0300840 memcpy(async_buf, data, size);
841
A Sun5c809922017-03-26 16:04:51 -0300842 dev_dbg(dev, "send request called (size=%#x)", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300843
Jarod Wilson66e89522010-06-01 17:32:08 -0300844 res = usb_submit_urb(async_urb, GFP_ATOMIC);
845 if (res) {
A Sun5c809922017-03-26 16:04:51 -0300846 dev_err(dev, "send request FAILED! (res=%d)", res);
Johan Hovold2d5a6ce2017-06-01 04:45:59 -0300847 kfree(async_buf);
848 usb_free_urb(async_urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300849 return;
850 }
A Sun5c809922017-03-26 16:04:51 -0300851 dev_dbg(dev, "send request complete (res=%d)", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300852}
853
854static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
855{
Jarod Wilson4840b782011-07-18 16:54:24 -0300856 int rsize = sizeof(DEVICE_RESUME);
857
858 if (ir->need_reset) {
859 ir->need_reset = false;
Sean Younge1159cb2016-04-14 17:42:50 -0300860 mce_request_packet(ir, DEVICE_RESUME, rsize);
Jarod Wilson4840b782011-07-18 16:54:24 -0300861 msleep(10);
862 }
863
Sean Younge1159cb2016-04-14 17:42:50 -0300864 mce_request_packet(ir, data, size);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300865 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300866}
867
Jarod Wilsone23fb962010-06-16 17:55:52 -0300868/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300869static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300870{
David Härdemand8b4b582010-10-29 16:08:23 -0300871 struct mceusb_dev *ir = dev->priv;
Sean Youngdb8ee102013-01-29 08:19:30 -0300872 int i, length, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300873 int cmdcount = 0;
Sean Youngdb8ee102013-01-29 08:19:30 -0300874 unsigned char cmdbuf[MCE_CMDBUF_SIZE];
Jarod Wilsone23fb962010-06-16 17:55:52 -0300875
876 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300877 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
878 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300879 cmdbuf[cmdcount++] = ir->tx_mask;
880
Sean Youngdb8ee102013-01-29 08:19:30 -0300881 /* Send the set TX ports command */
882 mce_async_out(ir, cmdbuf, cmdcount);
883 cmdcount = 0;
884
Jarod Wilsone23fb962010-06-16 17:55:52 -0300885 /* Generate mce packet data */
886 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300887 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
888
889 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
890
891 /* Insert mce packet header every 4th entry */
892 if ((cmdcount < MCE_CMDBUF_SIZE) &&
Sean Youngdb8ee102013-01-29 08:19:30 -0300893 (cmdcount % MCE_CODE_LENGTH) == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300894 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300895
896 /* Insert mce packet data */
897 if (cmdcount < MCE_CMDBUF_SIZE)
898 cmdbuf[cmdcount++] =
899 (txbuf[i] < MCE_PULSE_BIT ?
900 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
901 (i & 1 ? 0x00 : MCE_PULSE_BIT);
902 else {
903 ret = -EINVAL;
904 goto out;
905 }
906
907 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
908 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
909 }
910
Jarod Wilsone23fb962010-06-16 17:55:52 -0300911 /* Check if we have room for the empty packet at the end */
912 if (cmdcount >= MCE_CMDBUF_SIZE) {
913 ret = -EINVAL;
914 goto out;
915 }
916
Dan Carpenterb940a222013-02-12 08:22:08 -0300917 /* Fix packet length in last header */
918 length = cmdcount % MCE_CODE_LENGTH;
919 cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length;
920
Jarod Wilsone23fb962010-06-16 17:55:52 -0300921 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300922 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300923
924 /* Transmit the command to the mce device */
925 mce_async_out(ir, cmdbuf, cmdcount);
926
Jarod Wilsone23fb962010-06-16 17:55:52 -0300927out:
David Härdeman5588dc22011-04-28 12:13:58 -0300928 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300929}
930
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300931/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300932static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300933{
David Härdemand8b4b582010-10-29 16:08:23 -0300934 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300935
Sean Young20f5a822016-07-10 13:34:32 -0300936 /* return number of transmitters */
937 int emitters = ir->num_txports ? ir->num_txports : 2;
938
939 if (mask >= (1 << emitters))
940 return emitters;
941
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300942 if (ir->flags.tx_mask_normal)
943 ir->tx_mask = mask;
944 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300945 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
946 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300947
948 return 0;
949}
950
Jarod Wilsone23fb962010-06-16 17:55:52 -0300951/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300952static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300953{
David Härdemand8b4b582010-10-29 16:08:23 -0300954 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300955 int clk = 10000000;
956 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300957 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
958 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300959
960 /* Carrier has changed */
961 if (ir->carrier != carrier) {
962
963 if (carrier == 0) {
964 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300965 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300966 cmdbuf[3] = MCE_IRDATA_TRAILER;
Sean Young6b4a16c2014-01-20 19:10:44 -0300967 dev_dbg(ir->dev, "disabling carrier modulation");
Jarod Wilsone23fb962010-06-16 17:55:52 -0300968 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200969 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300970 }
971
972 for (prescaler = 0; prescaler < 4; ++prescaler) {
973 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300974 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300975 ir->carrier = carrier;
976 cmdbuf[2] = prescaler;
977 cmdbuf[3] = divisor;
Sean Young6b4a16c2014-01-20 19:10:44 -0300978 dev_dbg(ir->dev, "requesting %u HZ carrier",
979 carrier);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300980
981 /* Transmit new carrier to mce device */
982 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
Sean Young3cf8d8e2016-12-02 15:16:07 -0200983 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300984 }
985 }
986
987 return -EINVAL;
988
989 }
990
Sean Young14d81882016-07-10 13:34:33 -0300991 return 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300992}
993
Sean Young877f1a72018-04-08 11:06:49 -0400994static int mceusb_set_timeout(struct rc_dev *dev, unsigned int timeout)
995{
996 u8 cmdbuf[4] = { MCE_CMD_PORT_IR, MCE_CMD_SETIRTIMEOUT, 0, 0 };
997 struct mceusb_dev *ir = dev->priv;
998 unsigned int units;
999
1000 units = DIV_ROUND_CLOSEST(timeout, US_TO_NS(MCE_TIME_UNIT));
1001
1002 cmdbuf[2] = units >> 8;
1003 cmdbuf[3] = units;
1004
1005 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1006
1007 /* get receiver timeout value */
1008 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
1009
1010 return 0;
1011}
1012
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001013/*
A Sun279c60f2018-03-16 15:52:09 -04001014 * Select or deselect the 2nd receiver port.
1015 * Second receiver is learning mode, wide-band, short-range receiver.
1016 * Only one receiver (long or short range) may be active at a time.
1017 */
1018static int mceusb_set_rx_wideband(struct rc_dev *dev, int enable)
1019{
1020 struct mceusb_dev *ir = dev->priv;
1021 unsigned char cmdbuf[3] = { MCE_CMD_PORT_IR,
1022 MCE_CMD_SETIRRXPORTEN, 0x00 };
1023
1024 dev_dbg(ir->dev, "select %s-range receive sensor",
1025 enable ? "short" : "long");
1026 if (enable) {
1027 ir->wideband_rx_enabled = true;
1028 cmdbuf[2] = 2; /* port 2 is short range receiver */
1029 } else {
1030 ir->wideband_rx_enabled = false;
1031 cmdbuf[2] = 1; /* port 1 is long range receiver */
1032 }
1033 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1034 /* response from device sets ir->learning_active */
1035
1036 return 0;
1037}
1038
1039/*
1040 * Enable/disable receiver carrier frequency pass through reporting.
1041 * Only the short-range receiver has carrier frequency measuring capability.
1042 * Implicitly select this receiver when enabling carrier frequency reporting.
1043 */
1044static int mceusb_set_rx_carrier_report(struct rc_dev *dev, int enable)
1045{
1046 struct mceusb_dev *ir = dev->priv;
1047 unsigned char cmdbuf[3] = { MCE_CMD_PORT_IR,
1048 MCE_CMD_SETIRRXPORTEN, 0x00 };
1049
1050 dev_dbg(ir->dev, "%s short-range receiver carrier reporting",
1051 enable ? "enable" : "disable");
1052 if (enable) {
1053 ir->carrier_report_enabled = true;
1054 if (!ir->learning_active) {
1055 cmdbuf[2] = 2; /* port 2 is short range receiver */
1056 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1057 }
1058 } else {
1059 ir->carrier_report_enabled = false;
1060 /*
1061 * Revert to normal (long-range) receiver only if the
1062 * wideband (short-range) receiver wasn't explicitly
1063 * enabled.
1064 */
1065 if (ir->learning_active && !ir->wideband_rx_enabled) {
1066 cmdbuf[2] = 1; /* port 1 is long range receiver */
1067 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1068 }
1069 }
1070
1071 return 0;
1072}
1073
1074/*
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001075 * We don't do anything but print debug spew for many of the command bits
1076 * we receive from the hardware, but some of them are useful information
1077 * we want to store so that we can use them.
1078 */
1079static void mceusb_handle_command(struct mceusb_dev *ir, int index)
1080{
A Sun279c60f2018-03-16 15:52:09 -04001081 DEFINE_IR_RAW_EVENT(rawir);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001082 u8 hi = ir->buf_in[index + 1] & 0xff;
1083 u8 lo = ir->buf_in[index + 2] & 0xff;
A Sun279c60f2018-03-16 15:52:09 -04001084 u32 carrier_cycles;
1085 u32 cycles_fix;
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001086
1087 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -03001088 /* the one and only 5-byte return value command */
1089 case MCE_RSP_GETPORTSTATUS:
1090 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
1091 ir->txports_cabled |= 1 << hi;
1092 break;
1093
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001094 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001095 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -03001096 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001097 break;
Jarod Wilsona411e832011-07-18 16:54:26 -03001098 case MCE_RSP_EQIRNUMPORTS:
1099 ir->num_txports = hi;
1100 ir->num_rxports = lo;
1101 break;
A Sun279c60f2018-03-16 15:52:09 -04001102 case MCE_RSP_EQIRRXCFCNT:
1103 /*
1104 * The carrier cycle counter can overflow and wrap around
1105 * without notice from the device. So frequency measurement
1106 * will be inaccurate with long duration IR.
1107 *
1108 * The long-range (non learning) receiver always reports
1109 * zero count so we always ignore its report.
1110 */
1111 if (ir->carrier_report_enabled && ir->learning_active &&
1112 ir->pulse_tunit > 0) {
1113 carrier_cycles = (hi << 8 | lo);
1114 /*
1115 * Adjust carrier cycle count by adding
1116 * 1 missed count per pulse "on"
1117 */
1118 cycles_fix = ir->flags.rx2 == 2 ? ir->pulse_count : 0;
1119 rawir.carrier_report = 1;
1120 rawir.carrier = (1000000u / MCE_TIME_UNIT) *
1121 (carrier_cycles + cycles_fix) /
1122 ir->pulse_tunit;
1123 dev_dbg(ir->dev, "RX carrier frequency %u Hz (pulse count = %u, cycles = %u, duration = %u, rx2 = %u)",
1124 rawir.carrier, ir->pulse_count, carrier_cycles,
1125 ir->pulse_tunit, ir->flags.rx2);
1126 ir_raw_event_store(ir->rc, &rawir);
1127 }
1128 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001129
1130 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001131 case MCE_RSP_EQEMVER:
1132 ir->emver = hi;
1133 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001134 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001135 ir->tx_mask = hi;
1136 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001137 case MCE_RSP_EQIRRXPORTEN:
A Sun279c60f2018-03-16 15:52:09 -04001138 ir->learning_active = ((hi & 0x02) == 0x02);
1139 if (ir->rxports_active != hi) {
1140 dev_info(ir->dev, "%s-range (0x%x) receiver active",
1141 ir->learning_active ? "short" : "long", hi);
1142 ir->rxports_active = hi;
1143 }
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001144 break;
Jarod Wilson4840b782011-07-18 16:54:24 -03001145 case MCE_RSP_CMD_ILLEGAL:
1146 ir->need_reset = true;
1147 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001148 default:
1149 break;
1150 }
1151}
1152
Jarod Wilson66e89522010-06-01 17:32:08 -03001153static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
1154{
Maxim Levitsky46519182010-10-16 19:56:28 -03001155 DEFINE_IR_RAW_EVENT(rawir);
Sean Youngb83bfd12012-08-13 08:59:47 -03001156 bool event = false;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001157 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -03001158
1159 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
1160 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001161 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -03001162
Jarod Wilson29b44942010-11-09 18:41:46 -03001163 /* if there's no data, just return now */
1164 if (buf_len <= i)
1165 return;
1166
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001167 for (; i < buf_len; i++) {
1168 switch (ir->parser_state) {
1169 case SUBCMD:
William Steidtmann76dea4c2013-04-15 17:17:11 -03001170 ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]);
A Sun5c809922017-03-26 16:04:51 -03001171 mceusb_dev_printdata(ir, ir->buf_in, buf_len, i - 1,
Jarod Wilson36e9d262010-10-22 16:49:35 -03001172 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001173 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001174 ir->parser_state = CMD_DATA;
1175 break;
1176 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -03001177 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001178 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001179 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
A Sun279c60f2018-03-16 15:52:09 -04001180 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK);
Sean Youngd4589932018-05-10 07:37:51 -04001181 if (unlikely(!rawir.duration)) {
1182 dev_warn(ir->dev, "nonsensical irdata %02x with duration 0",
1183 ir->buf_in[i]);
1184 break;
1185 }
A Sun279c60f2018-03-16 15:52:09 -04001186 if (rawir.pulse) {
1187 ir->pulse_tunit += rawir.duration;
1188 ir->pulse_count++;
1189 }
1190 rawir.duration *= US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -03001191
A Sun279c60f2018-03-16 15:52:09 -04001192 dev_dbg(ir->dev, "Storing %s %u ns (%02x)",
Jarod Wilson66e89522010-06-01 17:32:08 -03001193 rawir.pulse ? "pulse" : "space",
A Sun279c60f2018-03-16 15:52:09 -04001194 rawir.duration, ir->buf_in[i]);
Jarod Wilson66e89522010-06-01 17:32:08 -03001195
Sean Youngb83bfd12012-08-13 08:59:47 -03001196 if (ir_raw_event_store_with_filter(ir->rc, &rawir))
1197 event = true;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001198 break;
1199 case CMD_DATA:
1200 ir->rem--;
1201 break;
1202 case CMD_HEADER:
1203 /* decode mce packets of the form (84),AA,BB,CC,DD */
1204 /* IR data packets can span USB messages - rem */
1205 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001206 if ((ir->cmd == MCE_CMD_PORT_IR) ||
1207 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -03001208 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001209 ir->parser_state = SUBCMD;
1210 continue;
1211 }
1212 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
A Sun5c809922017-03-26 16:04:51 -03001213 mceusb_dev_printdata(ir, ir->buf_in, buf_len,
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001214 i, ir->rem + 1, false);
A Sun279c60f2018-03-16 15:52:09 -04001215 if (ir->rem) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001216 ir->parser_state = PARSE_IRDATA;
A Sun279c60f2018-03-16 15:52:09 -04001217 } else {
Sean Young91352b52018-04-18 05:36:25 -04001218 init_ir_raw_event(&rawir);
1219 rawir.timeout = 1;
1220 rawir.duration = ir->rc->timeout;
1221 if (ir_raw_event_store_with_filter(ir->rc,
1222 &rawir))
1223 event = true;
A Sun279c60f2018-03-16 15:52:09 -04001224 ir->pulse_tunit = 0;
1225 ir->pulse_count = 0;
1226 }
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001227 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001228 }
1229
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001230 if (ir->parser_state != CMD_HEADER && !ir->rem)
1231 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001232 }
Sean Youngb83bfd12012-08-13 08:59:47 -03001233 if (event) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001234 dev_dbg(ir->dev, "processed IR data");
Sean Youngb83bfd12012-08-13 08:59:47 -03001235 ir_raw_event_handle(ir->rc);
1236 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001237}
1238
Sean Young6ac454a2012-07-15 13:31:31 -03001239static void mceusb_dev_recv(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -03001240{
1241 struct mceusb_dev *ir;
Jarod Wilson66e89522010-06-01 17:32:08 -03001242
1243 if (!urb)
1244 return;
1245
1246 ir = urb->context;
1247 if (!ir) {
1248 usb_unlink_urb(urb);
1249 return;
1250 }
1251
Jarod Wilson66e89522010-06-01 17:32:08 -03001252 switch (urb->status) {
1253 /* success */
1254 case 0:
Sean Youngd26cec22016-04-14 17:42:49 -03001255 mceusb_process_ir_data(ir, urb->actual_length);
Jarod Wilson66e89522010-06-01 17:32:08 -03001256 break;
1257
1258 case -ECONNRESET:
1259 case -ENOENT:
Sean Young6b4a16c2014-01-20 19:10:44 -03001260 case -EILSEQ:
Jarod Wilson66e89522010-06-01 17:32:08 -03001261 case -ESHUTDOWN:
1262 usb_unlink_urb(urb);
1263 return;
1264
1265 case -EPIPE:
A Suna06854a2017-03-26 15:28:08 -03001266 dev_err(ir->dev, "Error: urb status = %d (RX HALT)",
1267 urb->status);
1268 mceusb_defer_kevent(ir, EVENT_RX_HALT);
1269 return;
1270
Jarod Wilson66e89522010-06-01 17:32:08 -03001271 default:
Sean Young6b4a16c2014-01-20 19:10:44 -03001272 dev_err(ir->dev, "Error: urb status = %d", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001273 break;
1274 }
1275
1276 usb_submit_urb(urb, GFP_ATOMIC);
1277}
1278
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001279static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1280{
1281 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1282 ir->emver = 1;
1283 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1284}
1285
Jarod Wilson66e89522010-06-01 17:32:08 -03001286static void mceusb_gen1_init(struct mceusb_dev *ir)
1287{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001288 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001289 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001290 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001291
1292 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1293 if (!data) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001294 dev_err(dev, "%s: memory allocation failed!", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001295 return;
1296 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001297
1298 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001299 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001300 * on the receive control pipe and expect a certain value pair back
1301 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001302 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1303 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001304 data, USB_CTRL_MSG_SZ, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001305 dev_dbg(dev, "set address - ret = %d", ret);
1306 dev_dbg(dev, "set address - data[0] = %d, data[1] = %d",
1307 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -03001308
1309 /* set feature: bit rate 38400 bps */
1310 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1311 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1312 0xc04e, 0x0000, NULL, 0, HZ * 3);
1313
Sean Young6b4a16c2014-01-20 19:10:44 -03001314 dev_dbg(dev, "set feature - ret = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001315
1316 /* bRequest 4: set char length to 8 bits */
1317 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1318 4, USB_TYPE_VENDOR,
1319 0x0808, 0x0000, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001320 dev_dbg(dev, "set char length - retB = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001321
1322 /* bRequest 2: set handshaking to use DTR/DSR */
1323 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1324 2, USB_TYPE_VENDOR,
1325 0x0000, 0x0100, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001326 dev_dbg(dev, "set handshake - retC = %d", ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001327
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001328 /* device resume */
1329 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001330
1331 /* get hw/sw revision? */
1332 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001333
Jarod Wilson657290b2010-06-16 17:10:05 -03001334 kfree(data);
Sean Young8dfef672013-01-29 08:19:29 -03001335}
Jarod Wilson66e89522010-06-01 17:32:08 -03001336
1337static void mceusb_gen2_init(struct mceusb_dev *ir)
1338{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001339 /* device resume */
1340 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001341
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001342 /* get wake version (protocol, key, address) */
1343 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1344
1345 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001346 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001347}
1348
Jarod Wilson22b07662010-07-08 12:38:57 -03001349static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001350{
Jarod Wilsona411e832011-07-18 16:54:26 -03001351 int i;
1352 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1353 MCE_CMD_GETPORTSTATUS, 0x00 };
1354
1355 /* defaults, if the hardware doesn't support querying */
1356 ir->num_txports = 2;
1357 ir->num_rxports = 2;
1358
1359 /* get number of tx and rx ports */
1360 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1361
Jarod Wilson66e89522010-06-01 17:32:08 -03001362 /* get the carrier and frequency */
1363 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001364
Jarod Wilsona411e832011-07-18 16:54:26 -03001365 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001366 /* get the transmitter bitmask */
1367 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001368
1369 /* get receiver timeout value */
1370 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001371
1372 /* get receiver sensor setting */
1373 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001374
1375 for (i = 0; i < ir->num_txports; i++) {
1376 cmdbuf[2] = i;
1377 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1378 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001379}
1380
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001381static void mceusb_flash_led(struct mceusb_dev *ir)
1382{
1383 if (ir->emver < 2)
1384 return;
1385
1386 mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
1387}
1388
A Suna06854a2017-03-26 15:28:08 -03001389/*
1390 * Workqueue function
1391 * for resetting or recovering device after occurrence of error events
1392 * specified in ir->kevent bit field.
1393 * Function runs (via schedule_work()) in non-interrupt context, for
1394 * calls here (such as usb_clear_halt()) requiring non-interrupt context.
1395 */
1396static void mceusb_deferred_kevent(struct work_struct *work)
1397{
1398 struct mceusb_dev *ir =
1399 container_of(work, struct mceusb_dev, kevent);
1400 int status;
1401
1402 if (test_bit(EVENT_RX_HALT, &ir->kevent_flags)) {
1403 usb_unlink_urb(ir->urb_in);
1404 status = usb_clear_halt(ir->usbdev, ir->pipe_in);
1405 if (status < 0) {
1406 dev_err(ir->dev, "rx clear halt error %d",
1407 status);
A Suna06854a2017-03-26 15:28:08 -03001408 }
1409 clear_bit(EVENT_RX_HALT, &ir->kevent_flags);
A Sunc779a9c2017-04-13 05:06:47 -03001410 if (status == 0) {
1411 status = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1412 if (status < 0) {
1413 dev_err(ir->dev,
1414 "rx unhalt submit urb error %d",
1415 status);
1416 }
A Suna06854a2017-03-26 15:28:08 -03001417 }
1418 }
A Sunc779a9c2017-04-13 05:06:47 -03001419
1420 if (test_bit(EVENT_TX_HALT, &ir->kevent_flags)) {
1421 status = usb_clear_halt(ir->usbdev, ir->pipe_out);
1422 if (status < 0)
1423 dev_err(ir->dev, "tx clear halt error %d", status);
1424 clear_bit(EVENT_TX_HALT, &ir->kevent_flags);
1425 }
A Suna06854a2017-03-26 15:28:08 -03001426}
1427
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001428static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001429{
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001430 struct usb_device *udev = ir->usbdev;
Jarod Wilson66e89522010-06-01 17:32:08 -03001431 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001432 struct rc_dev *rc;
1433 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001434
Andi Shyti0f7499f2016-12-16 06:50:58 -02001435 rc = rc_allocate_device(RC_DRIVER_IR_RAW);
David Härdemand8b4b582010-10-29 16:08:23 -03001436 if (!rc) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001437 dev_err(dev, "remote dev allocation failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001438 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001439 }
1440
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001441 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001442 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001443 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001444 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001445 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1446 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1447
Jarod Wilson66e89522010-06-01 17:32:08 -03001448 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001449
Sean Young518f4b22017-07-01 12:13:19 -04001450 rc->device_name = ir->name;
David Härdemand8b4b582010-10-29 16:08:23 -03001451 rc->input_phys = ir->phys;
1452 usb_to_input_id(ir->usbdev, &rc->input_id);
1453 rc->dev.parent = dev;
1454 rc->priv = ir;
Sean Young6d741bf2017-08-07 16:20:58 -04001455 rc->allowed_protocols = RC_PROTO_BIT_ALL_IR_DECODER;
Sean Young877f1a72018-04-08 11:06:49 -04001456 rc->min_timeout = US_TO_NS(MCE_TIME_UNIT);
Rafi Rubin9824ae42011-07-03 17:13:53 -03001457 rc->timeout = MS_TO_NS(100);
Sean Youngaec3ead2018-05-09 06:11:28 -04001458 if (!mceusb_model[ir->model].broken_irtimeout) {
1459 rc->s_timeout = mceusb_set_timeout;
1460 rc->max_timeout = 10 * IR_DEFAULT_TIMEOUT;
1461 } else {
1462 /*
1463 * If we can't set the timeout using CMD_SETIRTIMEOUT, we can
1464 * rely on software timeouts for timeouts < 100ms.
1465 */
1466 rc->max_timeout = rc->timeout;
1467 }
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001468 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001469 rc->s_tx_mask = mceusb_set_tx_mask;
1470 rc->s_tx_carrier = mceusb_set_tx_carrier;
1471 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001472 }
A Sun279c60f2018-03-16 15:52:09 -04001473 if (ir->flags.rx2 > 0) {
1474 rc->s_learning_mode = mceusb_set_rx_wideband;
1475 rc->s_carrier_report = mceusb_set_rx_carrier_report;
1476 }
David Härdemand8b4b582010-10-29 16:08:23 -03001477 rc->driver_name = DRIVER_NAME;
Mauro Carvalho Chehab5b8c8d42014-07-27 17:28:48 -03001478
1479 switch (le16_to_cpu(udev->descriptor.idVendor)) {
1480 case VENDOR_HAUPPAUGE:
1481 rc->map_name = RC_MAP_HAUPPAUGE;
1482 break;
1483 case VENDOR_PCTV:
1484 rc->map_name = RC_MAP_PINNACLE_PCTV_HD;
1485 break;
1486 default:
1487 rc->map_name = RC_MAP_RC6_MCE;
1488 }
1489 if (mceusb_model[ir->model].rc_map)
1490 rc->map_name = mceusb_model[ir->model].rc_map;
Jarod Wilson66e89522010-06-01 17:32:08 -03001491
David Härdemand8b4b582010-10-29 16:08:23 -03001492 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001493 if (ret < 0) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001494 dev_err(dev, "remote dev registration failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001495 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001496 }
1497
David Härdemand8b4b582010-10-29 16:08:23 -03001498 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001499
David Härdemand8b4b582010-10-29 16:08:23 -03001500out:
1501 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001502 return NULL;
1503}
1504
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001505static int mceusb_dev_probe(struct usb_interface *intf,
1506 const struct usb_device_id *id)
Jarod Wilson66e89522010-06-01 17:32:08 -03001507{
1508 struct usb_device *dev = interface_to_usbdev(intf);
1509 struct usb_host_interface *idesc;
1510 struct usb_endpoint_descriptor *ep = NULL;
1511 struct usb_endpoint_descriptor *ep_in = NULL;
1512 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001513 struct mceusb_dev *ir = NULL;
Sean Younge1159cb2016-04-14 17:42:50 -03001514 int pipe, maxp, i, res;
Jarod Wilson66e89522010-06-01 17:32:08 -03001515 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001516 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001517 bool is_gen3;
1518 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001519 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001520 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001521
Sean Young6b4a16c2014-01-20 19:10:44 -03001522 dev_dbg(&intf->dev, "%s called", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001523
Jarod Wilson66e89522010-06-01 17:32:08 -03001524 idesc = intf->cur_altsetting;
1525
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001526 is_gen3 = mceusb_model[model].mce_gen3;
1527 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001528 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001529 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001530
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001531 /* There are multi-function devices with non-IR interfaces */
1532 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1533 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001534
1535 /* step through the endpoints to find first bulk in and out endpoint */
1536 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1537 ep = &idesc->endpoint[i].desc;
1538
Matt DeVillier0cacb462014-04-24 11:16:31 -03001539 if (ep_in == NULL) {
1540 if (usb_endpoint_is_bulk_in(ep)) {
1541 ep_in = ep;
1542 dev_dbg(&intf->dev, "acceptable bulk inbound endpoint found\n");
1543 } else if (usb_endpoint_is_int_in(ep)) {
1544 ep_in = ep;
1545 ep_in->bInterval = 1;
1546 dev_dbg(&intf->dev, "acceptable interrupt inbound endpoint found\n");
1547 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001548 }
1549
Matt DeVillier0cacb462014-04-24 11:16:31 -03001550 if (ep_out == NULL) {
1551 if (usb_endpoint_is_bulk_out(ep)) {
1552 ep_out = ep;
1553 dev_dbg(&intf->dev, "acceptable bulk outbound endpoint found\n");
1554 } else if (usb_endpoint_is_int_out(ep)) {
1555 ep_out = ep;
1556 ep_out->bInterval = 1;
1557 dev_dbg(&intf->dev, "acceptable interrupt outbound endpoint found\n");
1558 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001559 }
1560 }
Johan Hovold03eb2a52017-03-07 15:14:13 -03001561 if (!ep_in || !ep_out) {
1562 dev_dbg(&intf->dev, "required endpoints not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001563 return -ENODEV;
1564 }
1565
Matt DeVillier0cacb462014-04-24 11:16:31 -03001566 if (usb_endpoint_xfer_int(ep_in))
1567 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1568 else
1569 pipe = usb_rcvbulkpipe(dev, ep_in->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001570 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1571
1572 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1573 if (!ir)
1574 goto mem_alloc_fail;
1575
A Suna06854a2017-03-26 15:28:08 -03001576 ir->pipe_in = pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -03001577 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1578 if (!ir->buf_in)
1579 goto buf_in_alloc_fail;
1580
1581 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1582 if (!ir->urb_in)
1583 goto urb_in_alloc_fail;
1584
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001585 ir->usbdev = usb_get_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001586 ir->dev = &intf->dev;
1587 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001588 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001589 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001590 ir->flags.no_tx = mceusb_model[model].no_tx;
A Sun279c60f2018-03-16 15:52:09 -04001591 ir->flags.rx2 = mceusb_model[model].rx2;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001592 ir->model = model;
1593
Jarod Wilson66e89522010-06-01 17:32:08 -03001594 /* Saving usb interface data for use by the transmitter routine */
Jarod Wilson66e89522010-06-01 17:32:08 -03001595 ir->usb_ep_out = ep_out;
A Sunc779a9c2017-04-13 05:06:47 -03001596 if (usb_endpoint_xfer_int(ep_out))
1597 ir->pipe_out = usb_sndintpipe(ir->usbdev,
1598 ep_out->bEndpointAddress);
1599 else
1600 ir->pipe_out = usb_sndbulkpipe(ir->usbdev,
1601 ep_out->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001602
1603 if (dev->descriptor.iManufacturer
1604 && usb_string(dev, dev->descriptor.iManufacturer,
1605 buf, sizeof(buf)) > 0)
1606 strlcpy(name, buf, sizeof(name));
1607 if (dev->descriptor.iProduct
1608 && usb_string(dev, dev->descriptor.iProduct,
1609 buf, sizeof(buf)) > 0)
1610 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1611 " %s", buf);
1612
A Suna06854a2017-03-26 15:28:08 -03001613 /*
1614 * Initialize async USB error handler before registering
1615 * or activating any mceusb RX and TX functions
1616 */
1617 INIT_WORK(&ir->kevent, mceusb_deferred_kevent);
1618
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001619 ir->rc = mceusb_init_rc_dev(ir);
David Härdemand8b4b582010-10-29 16:08:23 -03001620 if (!ir->rc)
1621 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001622
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001623 /* wire up inbound data handler */
A Sun8e175b22017-03-26 15:33:07 -03001624 if (usb_endpoint_xfer_int(ep_in))
1625 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1626 mceusb_dev_recv, ir, ep_in->bInterval);
1627 else
1628 usb_fill_bulk_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1629 mceusb_dev_recv, ir);
1630
Jarod Wilson66e89522010-06-01 17:32:08 -03001631 ir->urb_in->transfer_dma = ir->dma_in;
1632 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1633
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001634 /* flush buffers on the device */
A Sun5c809922017-03-26 16:04:51 -03001635 dev_dbg(&intf->dev, "Flushing receive buffers");
Sean Younge1159cb2016-04-14 17:42:50 -03001636 res = usb_submit_urb(ir->urb_in, GFP_KERNEL);
1637 if (res)
A Sun5c809922017-03-26 16:04:51 -03001638 dev_err(&intf->dev, "failed to flush buffers: %d", res);
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001639
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001640 /* figure out which firmware/emulator version this hardware has */
1641 mceusb_get_emulator_version(ir);
1642
Jarod Wilson66e89522010-06-01 17:32:08 -03001643 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001644 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001645 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001646 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001647 mceusb_gen2_init(ir);
1648
Jarod Wilson22b07662010-07-08 12:38:57 -03001649 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001650
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001651 mceusb_flash_led(ir);
1652
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001653 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001654 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001655
1656 usb_set_intfdata(intf, ir);
1657
Jarod Wilsonfa3348982011-07-18 16:54:23 -03001658 /* enable wake via this device */
1659 device_set_wakeup_capable(ir->dev, true);
1660 device_set_wakeup_enable(ir->dev, true);
1661
Sean Young6b4a16c2014-01-20 19:10:44 -03001662 dev_info(&intf->dev, "Registered %s with mce emulator interface version %x",
1663 name, ir->emver);
1664 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and %x rx sensors (0x%x active)",
Jarod Wilsona411e832011-07-18 16:54:26 -03001665 ir->num_txports, ir->txports_cabled,
1666 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001667
1668 return 0;
1669
1670 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001671rc_dev_fail:
A Suna06854a2017-03-26 15:28:08 -03001672 cancel_work_sync(&ir->kevent);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001673 usb_put_dev(ir->usbdev);
Sean Younge1159cb2016-04-14 17:42:50 -03001674 usb_kill_urb(ir->urb_in);
Jarod Wilson66e89522010-06-01 17:32:08 -03001675 usb_free_urb(ir->urb_in);
1676urb_in_alloc_fail:
1677 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1678buf_in_alloc_fail:
1679 kfree(ir);
1680mem_alloc_fail:
Sean Young6b4a16c2014-01-20 19:10:44 -03001681 dev_err(&intf->dev, "%s: device setup failed!", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001682
1683 return -ENOMEM;
1684}
1685
1686
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001687static void mceusb_dev_disconnect(struct usb_interface *intf)
Jarod Wilson66e89522010-06-01 17:32:08 -03001688{
1689 struct usb_device *dev = interface_to_usbdev(intf);
1690 struct mceusb_dev *ir = usb_get_intfdata(intf);
1691
1692 usb_set_intfdata(intf, NULL);
1693
1694 if (!ir)
1695 return;
1696
1697 ir->usbdev = NULL;
A Suna06854a2017-03-26 15:28:08 -03001698 cancel_work_sync(&ir->kevent);
David Härdemand8b4b582010-10-29 16:08:23 -03001699 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001700 usb_kill_urb(ir->urb_in);
1701 usb_free_urb(ir->urb_in);
1702 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
Alexey Khoroshilove947d9a2014-09-08 19:10:43 -03001703 usb_put_dev(dev);
Jarod Wilson66e89522010-06-01 17:32:08 -03001704
1705 kfree(ir);
1706}
1707
1708static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1709{
1710 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001711 dev_info(ir->dev, "suspend");
Jarod Wilson66e89522010-06-01 17:32:08 -03001712 usb_kill_urb(ir->urb_in);
1713 return 0;
1714}
1715
1716static int mceusb_dev_resume(struct usb_interface *intf)
1717{
1718 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001719 dev_info(ir->dev, "resume");
Jarod Wilson66e89522010-06-01 17:32:08 -03001720 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1721 return -EIO;
1722 return 0;
1723}
1724
1725static struct usb_driver mceusb_dev_driver = {
1726 .name = DRIVER_NAME,
1727 .probe = mceusb_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001728 .disconnect = mceusb_dev_disconnect,
Jarod Wilson66e89522010-06-01 17:32:08 -03001729 .suspend = mceusb_dev_suspend,
1730 .resume = mceusb_dev_resume,
1731 .reset_resume = mceusb_dev_resume,
1732 .id_table = mceusb_dev_table
1733};
1734
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001735module_usb_driver(mceusb_dev_driver);
Jarod Wilson66e89522010-06-01 17:32:08 -03001736
1737MODULE_DESCRIPTION(DRIVER_DESC);
1738MODULE_AUTHOR(DRIVER_AUTHOR);
1739MODULE_LICENSE("GPL");
1740MODULE_DEVICE_TABLE(usb, mceusb_dev_table);