blob: 48a6a0826a772042355287942576c786d790300b [file] [log] [blame]
Jarod Wilson66e89522010-06-01 17:32:08 -03001/*
2 * Driver for USB Windows Media Center Ed. eHome Infrared Transceivers
3 *
Jarod Wilsonfda516b2011-07-18 16:54:29 -03004 * Copyright (c) 2010-2011, Jarod Wilson <jarod@redhat.com>
Jarod Wilson66e89522010-06-01 17:32:08 -03005 *
6 * Based on the original lirc_mceusb and lirc_mceusb2 drivers, by Dan
7 * Conti, Martin Blatter and Daniel Melander, the latter of which was
8 * in turn also based on the lirc_atiusb driver by Paul Miller. The
9 * two mce drivers were merged into one by Jarod Wilson, with transmit
10 * support for the 1st-gen device added primarily by Patrick Calhoun,
11 * with a bit of tweaks by Jarod. Debugging improvements and proper
12 * support for what appears to be 3rd-gen hardware added by Jarod.
13 * Initial port from lirc driver to ir-core drivery by Jarod, based
14 * partially on a port to an earlier proposed IR infrastructure by
15 * Jon Smirl, which included enhancements and simplifications to the
16 * incoming IR buffer parsing routines.
17 *
Jarod Wilsonfda516b2011-07-18 16:54:29 -030018 * Updated in July of 2011 with the aid of Microsoft's official
19 * remote/transceiver requirements and specification document, found at
20 * download.microsoft.com, title
21 * Windows-Media-Center-RC-IR-Collection-Green-Button-Specification-03-08-2011-V2.pdf
22 *
Jarod Wilson66e89522010-06-01 17:32:08 -030023 *
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
37 *
38 */
39
40#include <linux/device.h>
41#include <linux/module.h>
42#include <linux/slab.h>
Paul Bender635f76b2010-12-16 13:23:07 -030043#include <linux/usb.h>
44#include <linux/usb/input.h>
Jarod Wilsonfa3348982011-07-18 16:54:23 -030045#include <linux/pm_wakeup.h>
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030046#include <media/rc-core.h>
Jarod Wilson66e89522010-06-01 17:32:08 -030047
Jarod Wilsonfda516b2011-07-18 16:54:29 -030048#define DRIVER_VERSION "1.92"
49#define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>"
Jarod Wilson66e89522010-06-01 17:32:08 -030050#define DRIVER_DESC "Windows Media Center Ed. eHome Infrared Transceiver " \
51 "device driver"
52#define DRIVER_NAME "mceusb"
53
Jarod Wilson4a883912010-10-22 14:42:54 -030054#define USB_BUFLEN 32 /* USB reception buffer length */
55#define USB_CTRL_MSG_SZ 2 /* Size of usb ctrl msg on gen1 hw */
56#define MCE_G1_INIT_MSGS 40 /* Init messages on gen1 hw to throw out */
Jarod Wilson66e89522010-06-01 17:32:08 -030057
58/* MCE constants */
Jarod Wilson4a883912010-10-22 14:42:54 -030059#define MCE_CMDBUF_SIZE 384 /* MCE Command buffer length */
60#define MCE_TIME_UNIT 50 /* Approx 50us resolution */
61#define MCE_CODE_LENGTH 5 /* Normal length of packet (with header) */
62#define MCE_PACKET_SIZE 4 /* Normal length of packet (without header) */
63#define MCE_IRDATA_HEADER 0x84 /* Actual header format is 0x80 + num_bytes */
64#define MCE_IRDATA_TRAILER 0x80 /* End of IR data */
Jarod Wilson4a883912010-10-22 14:42:54 -030065#define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */
66#define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
67#define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */
68#define MCE_PULSE_MASK 0x7f /* Pulse mask */
69#define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */
70
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030071/*
72 * The interface between the host and the IR hardware is command-response
73 * based. All commands and responses have a consistent format, where a lead
74 * byte always identifies the type of data following it. The lead byte has
75 * a port value in the 3 highest bits and a length value in the 5 lowest
76 * bits.
77 *
78 * The length field is overloaded, with a value of 11111 indicating that the
79 * following byte is a command or response code, and the length of the entire
80 * message is determined by the code. If the length field is not 11111, then
81 * it specifies the number of bytes of port data that follow.
82 */
83#define MCE_CMD 0x1f
84#define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */
85#define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */
86#define MCE_PORT_SER 0x6 /* 0xc0 thru 0xdf flush & 0x1f bytes */
Sean Young6b4a16c2014-01-20 19:10:44 -030087#define MCE_PORT_MASK 0xe0 /* Mask out command bits */
Jarod Wilson4a883912010-10-22 14:42:54 -030088
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030089/* Command port headers */
90#define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */
91#define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */
92
93/* Commands that set device state (2-4 bytes in length) */
94#define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */
95#define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */
96#define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */
97#define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */
98#define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */
99#define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */
100#define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */
101
102/* Commands that query device state (all 2 bytes, unless noted) */
103#define MCE_CMD_GETIRCFS 0x07 /* Get carrier */
104#define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */
105#define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */
106#define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */
107#define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */
108#define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */
109#define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */
110#define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */
111#define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */
112#define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */
113#define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */
114
115/* Misc commands */
116#define MCE_CMD_NOP 0xff /* No operation */
117
118/* Responses to commands (non-error cases) */
119#define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */
120#define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */
121#define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */
122#define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */
123#define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */
124#define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */
125#define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */
126#define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */
127#define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */
128#define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */
129#define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */
130#define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */
131#define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */
132
133/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
134#define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */
135#define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */
136
137/* Misc commands/responses not defined in the MCE remote/transceiver spec */
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300138#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -0300139#define MCE_CMD_PING 0x03 /* Ping device */
140#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
141#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300142#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
143#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
144#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
Jarod Wilson4a883912010-10-22 14:42:54 -0300145#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
146#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300147#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
148#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300149#define MCE_CMD_NULL 0x00 /* These show up various places... */
Jarod Wilson66e89522010-06-01 17:32:08 -0300150
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300151/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
152 * then we're looking at a raw IR data sample */
153#define MCE_COMMAND_IRDATA 0x80
154#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
Jarod Wilson66e89522010-06-01 17:32:08 -0300155
Jarod Wilson66e89522010-06-01 17:32:08 -0300156/* general constants */
157#define SEND_FLAG_IN_PROGRESS 1
158#define SEND_FLAG_COMPLETE 2
159#define RECV_FLAG_IN_PROGRESS 3
160#define RECV_FLAG_COMPLETE 4
161
162#define MCEUSB_RX 1
163#define MCEUSB_TX 2
164
165#define VENDOR_PHILIPS 0x0471
166#define VENDOR_SMK 0x0609
167#define VENDOR_TATUNG 0x1460
168#define VENDOR_GATEWAY 0x107b
169#define VENDOR_SHUTTLE 0x1308
170#define VENDOR_SHUTTLE2 0x051c
171#define VENDOR_MITSUMI 0x03ee
172#define VENDOR_TOPSEED 0x1784
173#define VENDOR_RICAVISION 0x179d
174#define VENDOR_ITRON 0x195d
175#define VENDOR_FIC 0x1509
176#define VENDOR_LG 0x043e
177#define VENDOR_MICROSOFT 0x045e
178#define VENDOR_FORMOSA 0x147a
179#define VENDOR_FINTEK 0x1934
180#define VENDOR_PINNACLE 0x2304
181#define VENDOR_ECS 0x1019
182#define VENDOR_WISTRON 0x0fb8
183#define VENDOR_COMPRO 0x185b
184#define VENDOR_NORTHSTAR 0x04eb
185#define VENDOR_REALTEK 0x0bda
186#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300187#define VENDOR_CONEXANT 0x0572
Mark Lorda4de5f02012-07-11 18:53:28 -0300188#define VENDOR_TWISTEDMELON 0x2596
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300189#define VENDOR_HAUPPAUGE 0x2040
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300190#define VENDOR_PCTV 0x2013
Jarod Wilson66e89522010-06-01 17:32:08 -0300191
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300192enum mceusb_model_type {
193 MCE_GEN2 = 0, /* Most boards */
194 MCE_GEN1,
195 MCE_GEN3,
196 MCE_GEN2_TX_INV,
197 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300198 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300199 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300200 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300201 MCE_GEN2_NO_TX,
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300202 HAUPPAUGE_CX_HYBRID_TV,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300203};
204
205struct mceusb_model {
206 u32 mce_gen1:1;
207 u32 mce_gen2:1;
208 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300209 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300210 u32 no_tx:1;
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,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300222 },
223 [MCE_GEN2] = {
224 .mce_gen2 = 1,
225 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300226 [MCE_GEN2_NO_TX] = {
227 .mce_gen2 = 1,
228 .no_tx = 1,
229 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300230 [MCE_GEN2_TX_INV] = {
231 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300232 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300233 },
234 [MCE_GEN3] = {
235 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300236 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300237 },
238 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300239 /*
240 * In fact, the EVK is shipped without
241 * remotes, but we should have something handy,
242 * to allow testing it
243 */
Mauro Carvalho Chehab15195d32011-01-24 12:18:47 -0300244 .rc_map = RC_MAP_HAUPPAUGE,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300245 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
246 },
247 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300248 .no_tx = 1, /* tx isn't wired up at all */
249 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300250 },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300251 [HAUPPAUGE_CX_HYBRID_TV] = {
252 .rc_map = RC_MAP_HAUPPAUGE,
253 .no_tx = 1, /* eeprom says it has no tx */
254 .name = "Conexant Hybrid TV (cx231xx) MCE IR no TX",
255 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300256 [MULTIFUNCTION] = {
257 .mce_gen2 = 1,
258 .ir_intfnum = 2,
259 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300260 [TIVO_KIT] = {
261 .mce_gen2 = 1,
262 .rc_map = RC_MAP_TIVO,
263 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300264};
265
Jarod Wilson66e89522010-06-01 17:32:08 -0300266static struct usb_device_id mceusb_dev_table[] = {
267 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300268 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
269 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300270 /* Philips Infrared Transceiver - Sahara branded */
271 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
272 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300273 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
274 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300275 /* Philips SRM5100 */
276 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
277 /* Philips Infrared Transceiver - Omaura */
278 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
279 /* Philips Infrared Transceiver - Spinel plus */
280 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
281 /* Philips eHome Infrared Transceiver */
282 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300283 /* Philips/Spinel plus IR transceiver for ASUS */
284 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
285 /* Philips/Spinel plus IR transceiver for ASUS */
286 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300287 /* Philips IR transceiver (Dell branded) */
Sean Young8dfef672013-01-29 08:19:29 -0300288 { USB_DEVICE(VENDOR_PHILIPS, 0x2093),
289 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300290 /* Realtek MCE IR Receiver and card reader */
291 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
292 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300293 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300294 { USB_DEVICE(VENDOR_SMK, 0x031d),
295 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300296 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300297 { USB_DEVICE(VENDOR_SMK, 0x0322),
298 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300299 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300300 { USB_DEVICE(VENDOR_SMK, 0x0334),
301 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300302 /* SMK eHome Infrared Transceiver */
303 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300304 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
305 { USB_DEVICE(VENDOR_SMK, 0x0353),
306 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300307 /* Tatung eHome Infrared Transceiver */
308 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
309 /* Shuttle eHome Infrared Transceiver */
310 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
311 /* Shuttle eHome Infrared Transceiver */
312 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
313 /* Gateway eHome Infrared Transceiver */
314 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
315 /* Mitsumi */
316 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
317 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300318 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
319 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300320 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300321 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
322 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300323 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300324 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
325 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300326 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300327 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
328 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300329 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300330 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
331 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300332 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300333 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300334 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300335 /* Ricavision internal Infrared Transceiver */
336 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
337 /* Itron ione Libra Q-11 */
338 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
339 /* FIC eHome Infrared Transceiver */
340 { USB_DEVICE(VENDOR_FIC, 0x9242) },
341 /* LG eHome Infrared Transceiver */
342 { USB_DEVICE(VENDOR_LG, 0x9803) },
343 /* Microsoft MCE Infrared Transceiver */
344 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
345 /* Formosa eHome Infrared Transceiver */
346 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
347 /* Formosa21 / eHome Infrared Receiver */
348 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
349 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300350 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
351 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300352 /* Formosa Industrial Computing / Beanbag Emulation Device */
353 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
354 /* Formosa21 / eHome Infrared Receiver */
355 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
356 /* Formosa Industrial Computing AIM IR605/A */
357 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
358 /* Formosa Industrial Computing */
359 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilson22f17322012-03-12 13:27:03 -0300360 /* Formosa Industrial Computing */
361 { USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300362 /* Fintek eHome Infrared Transceiver (HP branded) */
Sean Youngdb8ee102013-01-29 08:19:30 -0300363 { USB_DEVICE(VENDOR_FINTEK, 0x5168),
364 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300365 /* Fintek eHome Infrared Transceiver */
366 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
367 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
368 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
369 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300370 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
371 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300372 /* Elitegroup Computer Systems IR */
373 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
374 /* Wistron Corp. eHome Infrared Receiver */
375 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
376 /* Compro K100 */
377 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
378 /* Compro K100 v2 */
379 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
380 /* Northstar Systems, Inc. eHome Infrared Transceiver */
381 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
382 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300383 { USB_DEVICE(VENDOR_TIVO, 0x2000),
384 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300385 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300386 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
387 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300388 /* Conexant Hybrid TV RDU253S Polaris */
389 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
390 .driver_info = CX_HYBRID_TV },
Mark Lorda4de5f02012-07-11 18:53:28 -0300391 /* Twisted Melon Inc. - Manta Mini Receiver */
392 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
393 /* Twisted Melon Inc. - Manta Pico Receiver */
394 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
395 /* Twisted Melon Inc. - Manta Transceiver */
396 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
Matthias Schwarzotteda9dfd2013-11-21 17:26:42 -0300397 /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */
398 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130),
399 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
Mauro Carvalho Chehab9683e012014-07-27 17:06:02 -0300400 { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb131),
401 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
402 { USB_DEVICE(VENDOR_PCTV, 0x0259),
403 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
404 { USB_DEVICE(VENDOR_PCTV, 0x025e),
405 .driver_info = HAUPPAUGE_CX_HYBRID_TV },
406
Jarod Wilson66e89522010-06-01 17:32:08 -0300407 /* Terminating entry */
408 { }
409};
410
Jarod Wilson66e89522010-06-01 17:32:08 -0300411/* data structure for each usb transceiver */
412struct mceusb_dev {
413 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300414 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300415
416 /* optional features we can enable */
417 bool carrier_report_enabled;
418 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300419
420 /* core device bits */
421 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300422
423 /* usb */
424 struct usb_device *usbdev;
425 struct urb *urb_in;
Jarod Wilson66e89522010-06-01 17:32:08 -0300426 struct usb_endpoint_descriptor *usb_ep_out;
427
428 /* buffers and dma */
429 unsigned char *buf_in;
430 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300431 dma_addr_t dma_in;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300432
433 enum {
434 CMD_HEADER = 0,
435 SUBCMD,
436 CMD_DATA,
437 PARSE_IRDATA,
438 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300439
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300440 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300441
442 struct {
443 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300444 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300445 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300446 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300447 } flags;
448
Jarod Wilsone23fb962010-06-16 17:55:52 -0300449 /* transmit support */
Jarod Wilson66e89522010-06-01 17:32:08 -0300450 int send_flags;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300451 u32 carrier;
452 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300453
454 char name[128];
455 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300456 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300457
458 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300459 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300460 u8 num_txports; /* number of transmit ports */
461 u8 num_rxports; /* number of receive sensors */
462 u8 txports_cabled; /* bitmask of transmitters with cable */
463 u8 rxports_active; /* bitmask of active receive sensors */
Jarod Wilson66e89522010-06-01 17:32:08 -0300464};
465
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300466/* MCE Device Command Strings, generally a port and command pair */
467static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
468 MCE_CMD_RESUME};
469static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300470static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300471static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300472static char FLASH_LED[] = {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300473static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
474static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
475static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
Jarod Wilsona411e832011-07-18 16:54:26 -0300476static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300477static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
478static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300479/* sub in desired values in lower byte or bytes for full command */
480/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300481static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
482 MCE_CMD_SETIRCFS, 0x00, 0x00};
483static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
484static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
485 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
486static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
487 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300488*/
489
William Steidtmann76dea4c2013-04-15 17:17:11 -0300490static int mceusb_cmd_datasize(u8 cmd, u8 subcmd)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300491{
492 int datasize = 0;
493
494 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300495 case MCE_CMD_NULL:
496 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300497 datasize = 1;
498 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300499 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300500 switch (subcmd) {
William Steidtmann76dea4c2013-04-15 17:17:11 -0300501 case MCE_RSP_GETPORTSTATUS:
502 datasize = 5;
503 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300504 case MCE_RSP_EQWAKEVERSION:
505 datasize = 4;
506 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300507 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300508 datasize = 2;
509 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300510 case MCE_RSP_EQWAKESUPPORT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300511 case MCE_RSP_GETWAKESOURCE:
512 case MCE_RSP_EQDEVDETAILS:
513 case MCE_RSP_EQEMVER:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300514 datasize = 1;
515 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300516 }
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300517 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300518 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300519 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300520 case MCE_RSP_EQIRCFS:
521 case MCE_RSP_EQIRTIMEOUT:
522 case MCE_RSP_EQIRRXCFCNT:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300523 case MCE_RSP_EQIRNUMPORTS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300524 datasize = 2;
525 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300526 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300527 case MCE_RSP_EQIRTXPORTS:
528 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300529 datasize = 1;
530 break;
531 }
532 }
533 return datasize;
534}
535
Jarod Wilson66e89522010-06-01 17:32:08 -0300536static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300537 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300538{
Sean Young6b4a16c2014-01-20 19:10:44 -0300539#if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
540 char *inout;
Hans Verkuil5becbc52012-05-14 10:22:58 -0300541 u8 cmd, subcmd, data1, data2, data3, data4;
Jarod Wilson66e89522010-06-01 17:32:08 -0300542 struct device *dev = ir->dev;
Sean Young6b4a16c2014-01-20 19:10:44 -0300543 int start, skip = 0;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300544 u32 carrier, period;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300545
Jarod Wilson657290b2010-06-16 17:10:05 -0300546 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300547 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300548 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300549
Jarod Wilson36e9d262010-10-22 16:49:35 -0300550 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300551 return;
552
Sean Young6b4a16c2014-01-20 19:10:44 -0300553 dev_dbg(dev, "%cx data: %*ph (length=%d)",
554 (out ? 't' : 'r'), min(len, USB_BUFLEN), buf, len);
Jarod Wilson66e89522010-06-01 17:32:08 -0300555
Sean Young6b4a16c2014-01-20 19:10:44 -0300556 inout = out ? "Request" : "Got";
Jarod Wilson66e89522010-06-01 17:32:08 -0300557
Jarod Wilson36e9d262010-10-22 16:49:35 -0300558 start = offset + skip;
559 cmd = buf[start] & 0xff;
560 subcmd = buf[start + 1] & 0xff;
561 data1 = buf[start + 2] & 0xff;
562 data2 = buf[start + 3] & 0xff;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300563 data3 = buf[start + 4] & 0xff;
564 data4 = buf[start + 5] & 0xff;
Jarod Wilson66e89522010-06-01 17:32:08 -0300565
566 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300567 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300568 if (subcmd == MCE_CMD_NULL)
569 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300570 if ((subcmd == MCE_CMD_PORT_SYS) &&
571 (data1 == MCE_CMD_RESUME))
Sean Young6b4a16c2014-01-20 19:10:44 -0300572 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300573 else
Sean Young6b4a16c2014-01-20 19:10:44 -0300574 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300575 cmd, subcmd);
576 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300577 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300578 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300579 case MCE_RSP_EQEMVER:
580 if (!out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300581 dev_dbg(dev, "Emulator interface version %x",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300582 data1);
583 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300584 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300585 if (len == 2)
Sean Young6b4a16c2014-01-20 19:10:44 -0300586 dev_dbg(dev, "Get hw/sw rev?");
Jarod Wilson66e89522010-06-01 17:32:08 -0300587 else
Sean Young6b4a16c2014-01-20 19:10:44 -0300588 dev_dbg(dev, "hw/sw rev 0x%02x 0x%02x 0x%02x 0x%02x",
589 data1, data2,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300590 buf[start + 4], buf[start + 5]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300591 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300592 case MCE_CMD_RESUME:
Sean Young6b4a16c2014-01-20 19:10:44 -0300593 dev_dbg(dev, "Device resume requested");
Jarod Wilson66e89522010-06-01 17:32:08 -0300594 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300595 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300596 dev_dbg(dev, "Illegal PORT_SYS command");
Jarod Wilson66e89522010-06-01 17:32:08 -0300597 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300598 case MCE_RSP_EQWAKEVERSION:
599 if (!out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300600 dev_dbg(dev, "Wake version, proto: 0x%02x, "
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300601 "payload: 0x%02x, address: 0x%02x, "
Sean Young6b4a16c2014-01-20 19:10:44 -0300602 "version: 0x%02x",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300603 data1, data2, data3, data4);
604 break;
605 case MCE_RSP_GETPORTSTATUS:
606 if (!out)
607 /* We use data1 + 1 here, to match hw labels */
Sean Young6b4a16c2014-01-20 19:10:44 -0300608 dev_dbg(dev, "TX port %d: blaster is%s connected",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300609 data1 + 1, data4 ? " not" : "");
610 break;
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300611 case MCE_CMD_FLASHLED:
Sean Young6b4a16c2014-01-20 19:10:44 -0300612 dev_dbg(dev, "Attempting to flash LED");
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300613 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300614 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300615 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300616 cmd, subcmd);
617 break;
618 }
619 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300620 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300621 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300622 case MCE_CMD_SIG_END:
Sean Young6b4a16c2014-01-20 19:10:44 -0300623 dev_dbg(dev, "End of signal");
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300624 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300625 case MCE_CMD_PING:
Sean Young6b4a16c2014-01-20 19:10:44 -0300626 dev_dbg(dev, "Ping");
Jarod Wilson66e89522010-06-01 17:32:08 -0300627 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300628 case MCE_CMD_UNKNOWN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300629 dev_dbg(dev, "Resp to 9f 05 of 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300630 data1, data2);
631 break;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300632 case MCE_RSP_EQIRCFS:
633 period = DIV_ROUND_CLOSEST(
Jean Delvareed7dd242012-09-01 14:53:57 -0300634 (1U << data1 * 2) * (data2 + 1), 10);
Jarod Wilsone217fb42011-07-18 16:54:28 -0300635 if (!period)
636 break;
637 carrier = (1000 * 1000) / period;
Sean Young6b4a16c2014-01-20 19:10:44 -0300638 dev_dbg(dev, "%s carrier of %u Hz (period %uus)",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300639 inout, carrier, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300640 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300641 case MCE_CMD_GETIRCFS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300642 dev_dbg(dev, "Get carrier mode and freq");
Jarod Wilson66e89522010-06-01 17:32:08 -0300643 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300644 case MCE_RSP_EQIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300645 dev_dbg(dev, "%s transmit blaster mask of 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300646 inout, data1);
647 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300648 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300649 /* value is in units of 50us, so x*50/1000 ms */
Jarod Wilsone217fb42011-07-18 16:54:28 -0300650 period = ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000;
Sean Young6b4a16c2014-01-20 19:10:44 -0300651 dev_dbg(dev, "%s receive timeout of %d ms",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300652 inout, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300653 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300654 case MCE_CMD_GETIRTIMEOUT:
Sean Young6b4a16c2014-01-20 19:10:44 -0300655 dev_dbg(dev, "Get receive timeout");
Jarod Wilson66e89522010-06-01 17:32:08 -0300656 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300657 case MCE_CMD_GETIRTXPORTS:
Sean Young6b4a16c2014-01-20 19:10:44 -0300658 dev_dbg(dev, "Get transmit blaster mask");
Jarod Wilson66e89522010-06-01 17:32:08 -0300659 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300660 case MCE_RSP_EQIRRXPORTEN:
Sean Young6b4a16c2014-01-20 19:10:44 -0300661 dev_dbg(dev, "%s %s-range receive sensor in use",
Jarod Wilson66e89522010-06-01 17:32:08 -0300662 inout, data1 == 0x02 ? "short" : "long");
663 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300664 case MCE_CMD_GETIRRXPORTEN:
665 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300666 if (out)
Sean Young6b4a16c2014-01-20 19:10:44 -0300667 dev_dbg(dev, "Get receive sensor");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300668 else if (ir->learning_enabled)
Sean Young6b4a16c2014-01-20 19:10:44 -0300669 dev_dbg(dev, "RX pulse count: %d",
Jarod Wilson66e89522010-06-01 17:32:08 -0300670 ((data1 << 8) | data2));
671 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300672 case MCE_RSP_EQIRNUMPORTS:
673 if (out)
674 break;
Sean Young6b4a16c2014-01-20 19:10:44 -0300675 dev_dbg(dev, "Num TX ports: %x, num RX ports: %x",
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300676 data1, data2);
Jarod Wilson66e89522010-06-01 17:32:08 -0300677 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300678 case MCE_RSP_CMD_ILLEGAL:
Sean Young6b4a16c2014-01-20 19:10:44 -0300679 dev_dbg(dev, "Illegal PORT_IR command");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300680 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300681 default:
Sean Young6b4a16c2014-01-20 19:10:44 -0300682 dev_dbg(dev, "Unknown command 0x%02x 0x%02x",
Jarod Wilson66e89522010-06-01 17:32:08 -0300683 cmd, subcmd);
684 break;
685 }
686 break;
687 default:
688 break;
689 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300690
691 if (cmd == MCE_IRDATA_TRAILER)
Sean Young6b4a16c2014-01-20 19:10:44 -0300692 dev_dbg(dev, "End of raw IR data");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300693 else if ((cmd != MCE_CMD_PORT_IR) &&
694 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Sean Young6b4a16c2014-01-20 19:10:44 -0300695 dev_dbg(dev, "Raw IR data, %d pulse/space samples", ir->rem);
696#endif
Jarod Wilson66e89522010-06-01 17:32:08 -0300697}
698
Sean Young6ac454a2012-07-15 13:31:31 -0300699static void mce_async_callback(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -0300700{
701 struct mceusb_dev *ir;
702 int len;
703
704 if (!urb)
705 return;
706
707 ir = urb->context;
Sean Young6b4a16c2014-01-20 19:10:44 -0300708
709 switch (urb->status) {
710 /* success */
711 case 0:
Jarod Wilson66e89522010-06-01 17:32:08 -0300712 len = urb->actual_length;
713
Jarod Wilson36e9d262010-10-22 16:49:35 -0300714 mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true);
Sean Young6b4a16c2014-01-20 19:10:44 -0300715 break;
716
717 case -ECONNRESET:
718 case -ENOENT:
719 case -EILSEQ:
720 case -ESHUTDOWN:
721 break;
722
723 case -EPIPE:
724 default:
725 dev_err(ir->dev, "Error: request urb status = %d", urb->status);
726 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300727 }
728
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300729 /* the transfer buffer and urb were allocated in mce_request_packet */
730 kfree(urb->transfer_buffer);
731 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300732}
733
734/* request incoming or send outgoing usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300735static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
736 int size, int urb_type)
Jarod Wilson66e89522010-06-01 17:32:08 -0300737{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300738 int res, pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -0300739 struct urb *async_urb;
740 struct device *dev = ir->dev;
741 unsigned char *async_buf;
742
743 if (urb_type == MCEUSB_TX) {
744 async_urb = usb_alloc_urb(0, GFP_KERNEL);
745 if (unlikely(!async_urb)) {
746 dev_err(dev, "Error, couldn't allocate urb!\n");
747 return;
748 }
749
750 async_buf = kzalloc(size, GFP_KERNEL);
751 if (!async_buf) {
752 dev_err(dev, "Error, couldn't allocate buf!\n");
753 usb_free_urb(async_urb);
754 return;
755 }
756
757 /* outbound data */
Matt DeVillier0cacb462014-04-24 11:16:31 -0300758 if (usb_endpoint_xfer_int(ir->usb_ep_out)) {
759 pipe = usb_sndintpipe(ir->usbdev,
760 ir->usb_ep_out->bEndpointAddress);
761 usb_fill_int_urb(async_urb, ir->usbdev, pipe, async_buf,
762 size, mce_async_callback, ir,
763 ir->usb_ep_out->bInterval);
764 } else {
765 pipe = usb_sndbulkpipe(ir->usbdev,
766 ir->usb_ep_out->bEndpointAddress);
767 usb_fill_bulk_urb(async_urb, ir->usbdev, pipe,
768 async_buf, size, mce_async_callback,
769 ir);
770 }
Jarod Wilson66e89522010-06-01 17:32:08 -0300771 memcpy(async_buf, data, size);
772
773 } else if (urb_type == MCEUSB_RX) {
774 /* standard request */
775 async_urb = ir->urb_in;
776 ir->send_flags = RECV_FLAG_IN_PROGRESS;
777
778 } else {
779 dev_err(dev, "Error! Unknown urb type %d\n", urb_type);
780 return;
781 }
782
Sean Young6b4a16c2014-01-20 19:10:44 -0300783 dev_dbg(dev, "receive request called (size=%#x)", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300784
785 async_urb->transfer_buffer_length = size;
786 async_urb->dev = ir->usbdev;
787
788 res = usb_submit_urb(async_urb, GFP_ATOMIC);
789 if (res) {
Sean Young6b4a16c2014-01-20 19:10:44 -0300790 dev_err(dev, "receive request FAILED! (res=%d)", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300791 return;
792 }
Sean Young6b4a16c2014-01-20 19:10:44 -0300793 dev_dbg(dev, "receive request complete (res=%d)", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300794}
795
796static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
797{
Jarod Wilson4840b782011-07-18 16:54:24 -0300798 int rsize = sizeof(DEVICE_RESUME);
799
800 if (ir->need_reset) {
801 ir->need_reset = false;
802 mce_request_packet(ir, DEVICE_RESUME, rsize, MCEUSB_TX);
803 msleep(10);
804 }
805
Jarod Wilson51ea6292011-05-10 14:09:59 -0300806 mce_request_packet(ir, data, size, MCEUSB_TX);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300807 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300808}
809
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300810static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300811{
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300812 mce_request_packet(ir, NULL, size, MCEUSB_RX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300813}
814
Jarod Wilsone23fb962010-06-16 17:55:52 -0300815/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300816static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300817{
David Härdemand8b4b582010-10-29 16:08:23 -0300818 struct mceusb_dev *ir = dev->priv;
Sean Youngdb8ee102013-01-29 08:19:30 -0300819 int i, length, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300820 int cmdcount = 0;
Sean Youngdb8ee102013-01-29 08:19:30 -0300821 unsigned char cmdbuf[MCE_CMDBUF_SIZE];
Jarod Wilsone23fb962010-06-16 17:55:52 -0300822
823 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300824 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
825 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300826 cmdbuf[cmdcount++] = ir->tx_mask;
827
Sean Youngdb8ee102013-01-29 08:19:30 -0300828 /* Send the set TX ports command */
829 mce_async_out(ir, cmdbuf, cmdcount);
830 cmdcount = 0;
831
Jarod Wilsone23fb962010-06-16 17:55:52 -0300832 /* Generate mce packet data */
833 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300834 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
835
836 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
837
838 /* Insert mce packet header every 4th entry */
839 if ((cmdcount < MCE_CMDBUF_SIZE) &&
Sean Youngdb8ee102013-01-29 08:19:30 -0300840 (cmdcount % MCE_CODE_LENGTH) == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300841 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300842
843 /* Insert mce packet data */
844 if (cmdcount < MCE_CMDBUF_SIZE)
845 cmdbuf[cmdcount++] =
846 (txbuf[i] < MCE_PULSE_BIT ?
847 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
848 (i & 1 ? 0x00 : MCE_PULSE_BIT);
849 else {
850 ret = -EINVAL;
851 goto out;
852 }
853
854 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
855 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
856 }
857
Jarod Wilsone23fb962010-06-16 17:55:52 -0300858 /* Check if we have room for the empty packet at the end */
859 if (cmdcount >= MCE_CMDBUF_SIZE) {
860 ret = -EINVAL;
861 goto out;
862 }
863
Dan Carpenterb940a222013-02-12 08:22:08 -0300864 /* Fix packet length in last header */
865 length = cmdcount % MCE_CODE_LENGTH;
866 cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length;
867
Jarod Wilsone23fb962010-06-16 17:55:52 -0300868 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300869 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300870
871 /* Transmit the command to the mce device */
872 mce_async_out(ir, cmdbuf, cmdcount);
873
Jarod Wilsone23fb962010-06-16 17:55:52 -0300874out:
David Härdeman5588dc22011-04-28 12:13:58 -0300875 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300876}
877
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300878/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300879static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300880{
David Härdemand8b4b582010-10-29 16:08:23 -0300881 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300882
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300883 if (ir->flags.tx_mask_normal)
884 ir->tx_mask = mask;
885 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300886 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
887 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300888
889 return 0;
890}
891
Jarod Wilsone23fb962010-06-16 17:55:52 -0300892/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300893static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300894{
David Härdemand8b4b582010-10-29 16:08:23 -0300895 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300896 int clk = 10000000;
897 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300898 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
899 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300900
901 /* Carrier has changed */
902 if (ir->carrier != carrier) {
903
904 if (carrier == 0) {
905 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300906 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300907 cmdbuf[3] = MCE_IRDATA_TRAILER;
Sean Young6b4a16c2014-01-20 19:10:44 -0300908 dev_dbg(ir->dev, "disabling carrier modulation");
Jarod Wilsone23fb962010-06-16 17:55:52 -0300909 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
910 return carrier;
911 }
912
913 for (prescaler = 0; prescaler < 4; ++prescaler) {
914 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300915 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300916 ir->carrier = carrier;
917 cmdbuf[2] = prescaler;
918 cmdbuf[3] = divisor;
Sean Young6b4a16c2014-01-20 19:10:44 -0300919 dev_dbg(ir->dev, "requesting %u HZ carrier",
920 carrier);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300921
922 /* Transmit new carrier to mce device */
923 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
924 return carrier;
925 }
926 }
927
928 return -EINVAL;
929
930 }
931
932 return carrier;
933}
934
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300935/*
936 * We don't do anything but print debug spew for many of the command bits
937 * we receive from the hardware, but some of them are useful information
938 * we want to store so that we can use them.
939 */
940static void mceusb_handle_command(struct mceusb_dev *ir, int index)
941{
942 u8 hi = ir->buf_in[index + 1] & 0xff;
943 u8 lo = ir->buf_in[index + 2] & 0xff;
944
945 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -0300946 /* the one and only 5-byte return value command */
947 case MCE_RSP_GETPORTSTATUS:
948 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
949 ir->txports_cabled |= 1 << hi;
950 break;
951
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300952 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300953 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300954 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300955 break;
Jarod Wilsona411e832011-07-18 16:54:26 -0300956 case MCE_RSP_EQIRNUMPORTS:
957 ir->num_txports = hi;
958 ir->num_rxports = lo;
959 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300960
961 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300962 case MCE_RSP_EQEMVER:
963 ir->emver = hi;
964 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300965 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300966 ir->tx_mask = hi;
967 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300968 case MCE_RSP_EQIRRXPORTEN:
969 ir->learning_enabled = ((hi & 0x02) == 0x02);
Jarod Wilsona411e832011-07-18 16:54:26 -0300970 ir->rxports_active = hi;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300971 break;
Jarod Wilson4840b782011-07-18 16:54:24 -0300972 case MCE_RSP_CMD_ILLEGAL:
973 ir->need_reset = true;
974 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300975 default:
976 break;
977 }
978}
979
Jarod Wilson66e89522010-06-01 17:32:08 -0300980static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
981{
Maxim Levitsky46519182010-10-16 19:56:28 -0300982 DEFINE_IR_RAW_EVENT(rawir);
Sean Youngb83bfd12012-08-13 08:59:47 -0300983 bool event = false;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300984 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -0300985
986 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
987 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300988 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300989
Jarod Wilson29b44942010-11-09 18:41:46 -0300990 /* if there's no data, just return now */
991 if (buf_len <= i)
992 return;
993
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300994 for (; i < buf_len; i++) {
995 switch (ir->parser_state) {
996 case SUBCMD:
William Steidtmann76dea4c2013-04-15 17:17:11 -0300997 ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]);
Jarod Wilson36e9d262010-10-22 16:49:35 -0300998 mceusb_dev_printdata(ir, ir->buf_in, i - 1,
999 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001000 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001001 ir->parser_state = CMD_DATA;
1002 break;
1003 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -03001004 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001005 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001006 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
1007 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -03001008 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -03001009
Sean Young6b4a16c2014-01-20 19:10:44 -03001010 dev_dbg(ir->dev, "Storing %s with duration %d",
Jarod Wilson66e89522010-06-01 17:32:08 -03001011 rawir.pulse ? "pulse" : "space",
1012 rawir.duration);
1013
Sean Youngb83bfd12012-08-13 08:59:47 -03001014 if (ir_raw_event_store_with_filter(ir->rc, &rawir))
1015 event = true;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001016 break;
1017 case CMD_DATA:
1018 ir->rem--;
1019 break;
1020 case CMD_HEADER:
1021 /* decode mce packets of the form (84),AA,BB,CC,DD */
1022 /* IR data packets can span USB messages - rem */
1023 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001024 if ((ir->cmd == MCE_CMD_PORT_IR) ||
1025 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -03001026 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001027 ir->parser_state = SUBCMD;
1028 continue;
1029 }
1030 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001031 mceusb_dev_printdata(ir, ir->buf_in,
1032 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -03001033 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001034 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001035 else
1036 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001037 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001038 }
1039
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001040 if (ir->parser_state != CMD_HEADER && !ir->rem)
1041 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001042 }
Sean Youngb83bfd12012-08-13 08:59:47 -03001043 if (event) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001044 dev_dbg(ir->dev, "processed IR data");
Sean Youngb83bfd12012-08-13 08:59:47 -03001045 ir_raw_event_handle(ir->rc);
1046 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001047}
1048
Sean Young6ac454a2012-07-15 13:31:31 -03001049static void mceusb_dev_recv(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -03001050{
1051 struct mceusb_dev *ir;
1052 int buf_len;
1053
1054 if (!urb)
1055 return;
1056
1057 ir = urb->context;
1058 if (!ir) {
1059 usb_unlink_urb(urb);
1060 return;
1061 }
1062
1063 buf_len = urb->actual_length;
1064
Jarod Wilson66e89522010-06-01 17:32:08 -03001065 if (ir->send_flags == RECV_FLAG_IN_PROGRESS) {
1066 ir->send_flags = SEND_FLAG_COMPLETE;
Sean Young6b4a16c2014-01-20 19:10:44 -03001067 dev_dbg(ir->dev, "setup answer received %d bytes\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001068 buf_len);
1069 }
1070
1071 switch (urb->status) {
1072 /* success */
1073 case 0:
1074 mceusb_process_ir_data(ir, buf_len);
1075 break;
1076
1077 case -ECONNRESET:
1078 case -ENOENT:
Sean Young6b4a16c2014-01-20 19:10:44 -03001079 case -EILSEQ:
Jarod Wilson66e89522010-06-01 17:32:08 -03001080 case -ESHUTDOWN:
1081 usb_unlink_urb(urb);
1082 return;
1083
1084 case -EPIPE:
1085 default:
Sean Young6b4a16c2014-01-20 19:10:44 -03001086 dev_err(ir->dev, "Error: urb status = %d", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001087 break;
1088 }
1089
1090 usb_submit_urb(urb, GFP_ATOMIC);
1091}
1092
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001093static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1094{
1095 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1096 ir->emver = 1;
1097 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1098}
1099
Jarod Wilson66e89522010-06-01 17:32:08 -03001100static void mceusb_gen1_init(struct mceusb_dev *ir)
1101{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001102 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001103 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001104 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001105
1106 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1107 if (!data) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001108 dev_err(dev, "%s: memory allocation failed!", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001109 return;
1110 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001111
1112 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001113 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001114 * on the receive control pipe and expect a certain value pair back
1115 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001116 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1117 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001118 data, USB_CTRL_MSG_SZ, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001119 dev_dbg(dev, "set address - ret = %d", ret);
1120 dev_dbg(dev, "set address - data[0] = %d, data[1] = %d",
1121 data[0], data[1]);
Jarod Wilson66e89522010-06-01 17:32:08 -03001122
1123 /* set feature: bit rate 38400 bps */
1124 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1125 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1126 0xc04e, 0x0000, NULL, 0, HZ * 3);
1127
Sean Young6b4a16c2014-01-20 19:10:44 -03001128 dev_dbg(dev, "set feature - ret = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001129
1130 /* bRequest 4: set char length to 8 bits */
1131 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1132 4, USB_TYPE_VENDOR,
1133 0x0808, 0x0000, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001134 dev_dbg(dev, "set char length - retB = %d", ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001135
1136 /* bRequest 2: set handshaking to use DTR/DSR */
1137 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1138 2, USB_TYPE_VENDOR,
1139 0x0000, 0x0100, NULL, 0, HZ * 3);
Sean Young6b4a16c2014-01-20 19:10:44 -03001140 dev_dbg(dev, "set handshake - retC = %d", ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001141
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001142 /* device resume */
1143 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001144
1145 /* get hw/sw revision? */
1146 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001147
Jarod Wilson657290b2010-06-16 17:10:05 -03001148 kfree(data);
Sean Young8dfef672013-01-29 08:19:29 -03001149}
Jarod Wilson66e89522010-06-01 17:32:08 -03001150
1151static void mceusb_gen2_init(struct mceusb_dev *ir)
1152{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001153 /* device resume */
1154 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001155
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001156 /* get wake version (protocol, key, address) */
1157 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1158
1159 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001160 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001161}
1162
Jarod Wilson22b07662010-07-08 12:38:57 -03001163static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001164{
Jarod Wilsona411e832011-07-18 16:54:26 -03001165 int i;
1166 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1167 MCE_CMD_GETPORTSTATUS, 0x00 };
1168
1169 /* defaults, if the hardware doesn't support querying */
1170 ir->num_txports = 2;
1171 ir->num_rxports = 2;
1172
1173 /* get number of tx and rx ports */
1174 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1175
Jarod Wilson66e89522010-06-01 17:32:08 -03001176 /* get the carrier and frequency */
1177 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001178
Jarod Wilsona411e832011-07-18 16:54:26 -03001179 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001180 /* get the transmitter bitmask */
1181 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001182
1183 /* get receiver timeout value */
1184 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001185
1186 /* get receiver sensor setting */
1187 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001188
1189 for (i = 0; i < ir->num_txports; i++) {
1190 cmdbuf[2] = i;
1191 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1192 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001193}
1194
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001195static void mceusb_flash_led(struct mceusb_dev *ir)
1196{
1197 if (ir->emver < 2)
1198 return;
1199
1200 mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
1201}
1202
David Härdemand8b4b582010-10-29 16:08:23 -03001203static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001204{
Jarod Wilson66e89522010-06-01 17:32:08 -03001205 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001206 struct rc_dev *rc;
1207 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001208
David Härdemand8b4b582010-10-29 16:08:23 -03001209 rc = rc_allocate_device();
1210 if (!rc) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001211 dev_err(dev, "remote dev allocation failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001212 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001213 }
1214
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001215 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001216 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001217 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001218 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001219 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1220 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1221
Jarod Wilson66e89522010-06-01 17:32:08 -03001222 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001223
David Härdemand8b4b582010-10-29 16:08:23 -03001224 rc->input_name = ir->name;
1225 rc->input_phys = ir->phys;
1226 usb_to_input_id(ir->usbdev, &rc->input_id);
1227 rc->dev.parent = dev;
1228 rc->priv = ir;
1229 rc->driver_type = RC_DRIVER_IR_RAW;
David Härdemanc5540fb2014-04-03 20:32:21 -03001230 rc->allowed_protocols = RC_BIT_ALL;
Rafi Rubin9824ae42011-07-03 17:13:53 -03001231 rc->timeout = MS_TO_NS(100);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001232 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001233 rc->s_tx_mask = mceusb_set_tx_mask;
1234 rc->s_tx_carrier = mceusb_set_tx_carrier;
1235 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001236 }
David Härdemand8b4b582010-10-29 16:08:23 -03001237 rc->driver_name = DRIVER_NAME;
1238 rc->map_name = mceusb_model[ir->model].rc_map ?
1239 mceusb_model[ir->model].rc_map : RC_MAP_RC6_MCE;
Jarod Wilson66e89522010-06-01 17:32:08 -03001240
David Härdemand8b4b582010-10-29 16:08:23 -03001241 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001242 if (ret < 0) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001243 dev_err(dev, "remote dev registration failed");
David Härdemand8b4b582010-10-29 16:08:23 -03001244 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001245 }
1246
David Härdemand8b4b582010-10-29 16:08:23 -03001247 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001248
David Härdemand8b4b582010-10-29 16:08:23 -03001249out:
1250 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001251 return NULL;
1252}
1253
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001254static int mceusb_dev_probe(struct usb_interface *intf,
1255 const struct usb_device_id *id)
Jarod Wilson66e89522010-06-01 17:32:08 -03001256{
1257 struct usb_device *dev = interface_to_usbdev(intf);
1258 struct usb_host_interface *idesc;
1259 struct usb_endpoint_descriptor *ep = NULL;
1260 struct usb_endpoint_descriptor *ep_in = NULL;
1261 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001262 struct mceusb_dev *ir = NULL;
Jarod Wilsond732a722010-06-16 17:10:46 -03001263 int pipe, maxp, i;
Jarod Wilson66e89522010-06-01 17:32:08 -03001264 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001265 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001266 bool is_gen3;
1267 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001268 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001269 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001270
Sean Young6b4a16c2014-01-20 19:10:44 -03001271 dev_dbg(&intf->dev, "%s called", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001272
Jarod Wilson66e89522010-06-01 17:32:08 -03001273 idesc = intf->cur_altsetting;
1274
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001275 is_gen3 = mceusb_model[model].mce_gen3;
1276 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001277 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001278 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001279
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001280 /* There are multi-function devices with non-IR interfaces */
1281 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1282 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001283
1284 /* step through the endpoints to find first bulk in and out endpoint */
1285 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1286 ep = &idesc->endpoint[i].desc;
1287
Matt DeVillier0cacb462014-04-24 11:16:31 -03001288 if (ep_in == NULL) {
1289 if (usb_endpoint_is_bulk_in(ep)) {
1290 ep_in = ep;
1291 dev_dbg(&intf->dev, "acceptable bulk inbound endpoint found\n");
1292 } else if (usb_endpoint_is_int_in(ep)) {
1293 ep_in = ep;
1294 ep_in->bInterval = 1;
1295 dev_dbg(&intf->dev, "acceptable interrupt inbound endpoint found\n");
1296 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001297 }
1298
Matt DeVillier0cacb462014-04-24 11:16:31 -03001299 if (ep_out == NULL) {
1300 if (usb_endpoint_is_bulk_out(ep)) {
1301 ep_out = ep;
1302 dev_dbg(&intf->dev, "acceptable bulk outbound endpoint found\n");
1303 } else if (usb_endpoint_is_int_out(ep)) {
1304 ep_out = ep;
1305 ep_out->bInterval = 1;
1306 dev_dbg(&intf->dev, "acceptable interrupt outbound endpoint found\n");
1307 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001308 }
1309 }
1310 if (ep_in == NULL) {
Sean Young6b4a16c2014-01-20 19:10:44 -03001311 dev_dbg(&intf->dev, "inbound and/or endpoint not found");
Jarod Wilson66e89522010-06-01 17:32:08 -03001312 return -ENODEV;
1313 }
1314
Matt DeVillier0cacb462014-04-24 11:16:31 -03001315 if (usb_endpoint_xfer_int(ep_in))
1316 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1317 else
1318 pipe = usb_rcvbulkpipe(dev, ep_in->bEndpointAddress);
Jarod Wilson66e89522010-06-01 17:32:08 -03001319 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1320
1321 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1322 if (!ir)
1323 goto mem_alloc_fail;
1324
1325 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1326 if (!ir->buf_in)
1327 goto buf_in_alloc_fail;
1328
1329 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1330 if (!ir->urb_in)
1331 goto urb_in_alloc_fail;
1332
1333 ir->usbdev = dev;
1334 ir->dev = &intf->dev;
1335 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001336 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001337 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001338 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001339 ir->model = model;
1340
Jarod Wilson66e89522010-06-01 17:32:08 -03001341 /* Saving usb interface data for use by the transmitter routine */
Jarod Wilson66e89522010-06-01 17:32:08 -03001342 ir->usb_ep_out = ep_out;
1343
1344 if (dev->descriptor.iManufacturer
1345 && usb_string(dev, dev->descriptor.iManufacturer,
1346 buf, sizeof(buf)) > 0)
1347 strlcpy(name, buf, sizeof(name));
1348 if (dev->descriptor.iProduct
1349 && usb_string(dev, dev->descriptor.iProduct,
1350 buf, sizeof(buf)) > 0)
1351 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1352 " %s", buf);
1353
David Härdemand8b4b582010-10-29 16:08:23 -03001354 ir->rc = mceusb_init_rc_dev(ir);
1355 if (!ir->rc)
1356 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001357
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001358 /* wire up inbound data handler */
Sean Young6ac454a2012-07-15 13:31:31 -03001359 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1360 mceusb_dev_recv, ir, ep_in->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -03001361 ir->urb_in->transfer_dma = ir->dma_in;
1362 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1363
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001364 /* flush buffers on the device */
Sean Young6b4a16c2014-01-20 19:10:44 -03001365 dev_dbg(&intf->dev, "Flushing receive buffers\n");
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001366 mce_flush_rx_buffer(ir, maxp);
1367
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001368 /* figure out which firmware/emulator version this hardware has */
1369 mceusb_get_emulator_version(ir);
1370
Jarod Wilson66e89522010-06-01 17:32:08 -03001371 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001372 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001373 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001374 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001375 mceusb_gen2_init(ir);
1376
Jarod Wilson22b07662010-07-08 12:38:57 -03001377 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001378
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001379 mceusb_flash_led(ir);
1380
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001381 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001382 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001383
1384 usb_set_intfdata(intf, ir);
1385
Jarod Wilsonfa3348982011-07-18 16:54:23 -03001386 /* enable wake via this device */
1387 device_set_wakeup_capable(ir->dev, true);
1388 device_set_wakeup_enable(ir->dev, true);
1389
Sean Young6b4a16c2014-01-20 19:10:44 -03001390 dev_info(&intf->dev, "Registered %s with mce emulator interface version %x",
1391 name, ir->emver);
1392 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and %x rx sensors (0x%x active)",
Jarod Wilsona411e832011-07-18 16:54:26 -03001393 ir->num_txports, ir->txports_cabled,
1394 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001395
1396 return 0;
1397
1398 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001399rc_dev_fail:
Jarod Wilson66e89522010-06-01 17:32:08 -03001400 usb_free_urb(ir->urb_in);
1401urb_in_alloc_fail:
1402 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1403buf_in_alloc_fail:
1404 kfree(ir);
1405mem_alloc_fail:
Sean Young6b4a16c2014-01-20 19:10:44 -03001406 dev_err(&intf->dev, "%s: device setup failed!", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001407
1408 return -ENOMEM;
1409}
1410
1411
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001412static void mceusb_dev_disconnect(struct usb_interface *intf)
Jarod Wilson66e89522010-06-01 17:32:08 -03001413{
1414 struct usb_device *dev = interface_to_usbdev(intf);
1415 struct mceusb_dev *ir = usb_get_intfdata(intf);
1416
1417 usb_set_intfdata(intf, NULL);
1418
1419 if (!ir)
1420 return;
1421
1422 ir->usbdev = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -03001423 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001424 usb_kill_urb(ir->urb_in);
1425 usb_free_urb(ir->urb_in);
1426 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
1427
1428 kfree(ir);
1429}
1430
1431static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1432{
1433 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001434 dev_info(ir->dev, "suspend");
Jarod Wilson66e89522010-06-01 17:32:08 -03001435 usb_kill_urb(ir->urb_in);
1436 return 0;
1437}
1438
1439static int mceusb_dev_resume(struct usb_interface *intf)
1440{
1441 struct mceusb_dev *ir = usb_get_intfdata(intf);
Sean Young6b4a16c2014-01-20 19:10:44 -03001442 dev_info(ir->dev, "resume");
Jarod Wilson66e89522010-06-01 17:32:08 -03001443 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1444 return -EIO;
1445 return 0;
1446}
1447
1448static struct usb_driver mceusb_dev_driver = {
1449 .name = DRIVER_NAME,
1450 .probe = mceusb_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001451 .disconnect = mceusb_dev_disconnect,
Jarod Wilson66e89522010-06-01 17:32:08 -03001452 .suspend = mceusb_dev_suspend,
1453 .resume = mceusb_dev_resume,
1454 .reset_resume = mceusb_dev_resume,
1455 .id_table = mceusb_dev_table
1456};
1457
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001458module_usb_driver(mceusb_dev_driver);
Jarod Wilson66e89522010-06-01 17:32:08 -03001459
1460MODULE_DESCRIPTION(DRIVER_DESC);
1461MODULE_AUTHOR(DRIVER_AUTHOR);
1462MODULE_LICENSE("GPL");
1463MODULE_DEVICE_TABLE(usb, mceusb_dev_table);