blob: 14fea35e5d672c630b5e04adbee8165842603b41 [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 Wilsonfa334892011-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 */
65#define MCE_TX_HEADER_LENGTH 3 /* # of bytes in the initializing tx header */
66#define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */
67#define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
68#define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */
69#define MCE_PULSE_MASK 0x7f /* Pulse mask */
70#define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */
71
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030072/*
73 * The interface between the host and the IR hardware is command-response
74 * based. All commands and responses have a consistent format, where a lead
75 * byte always identifies the type of data following it. The lead byte has
76 * a port value in the 3 highest bits and a length value in the 5 lowest
77 * bits.
78 *
79 * The length field is overloaded, with a value of 11111 indicating that the
80 * following byte is a command or response code, and the length of the entire
81 * message is determined by the code. If the length field is not 11111, then
82 * it specifies the number of bytes of port data that follow.
83 */
84#define MCE_CMD 0x1f
85#define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */
86#define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */
87#define MCE_PORT_SER 0x6 /* 0xc0 thru 0xdf flush & 0x1f bytes */
88#define MCE_PORT_MASK 0xe0 /* Mask out command bits */
Jarod Wilson4a883912010-10-22 14:42:54 -030089
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030090/* Command port headers */
91#define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */
92#define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */
93
94/* Commands that set device state (2-4 bytes in length) */
95#define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */
96#define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */
97#define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */
98#define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */
99#define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */
100#define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */
101#define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */
102
103/* Commands that query device state (all 2 bytes, unless noted) */
104#define MCE_CMD_GETIRCFS 0x07 /* Get carrier */
105#define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */
106#define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */
107#define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */
108#define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */
109#define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */
110#define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */
111#define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */
112#define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */
113#define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */
114#define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */
115
116/* Misc commands */
117#define MCE_CMD_NOP 0xff /* No operation */
118
119/* Responses to commands (non-error cases) */
120#define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */
121#define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */
122#define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */
123#define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */
124#define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */
125#define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */
126#define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */
127#define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */
128#define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */
129#define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */
130#define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */
131#define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */
132#define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */
133
134/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
135#define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */
136#define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */
137
138/* Misc commands/responses not defined in the MCE remote/transceiver spec */
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300139#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -0300140#define MCE_CMD_PING 0x03 /* Ping device */
141#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
142#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300143#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
144#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
145#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
Jarod Wilson4a883912010-10-22 14:42:54 -0300146#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
147#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300148#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
149#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300150#define MCE_CMD_NULL 0x00 /* These show up various places... */
Jarod Wilson66e89522010-06-01 17:32:08 -0300151
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300152/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
153 * then we're looking at a raw IR data sample */
154#define MCE_COMMAND_IRDATA 0x80
155#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
Jarod Wilson66e89522010-06-01 17:32:08 -0300156
157/* module parameters */
158#ifdef CONFIG_USB_DEBUG
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030159static bool debug = 1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300160#else
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030161static bool debug;
Jarod Wilson66e89522010-06-01 17:32:08 -0300162#endif
163
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300164#define mce_dbg(dev, fmt, ...) \
165 do { \
166 if (debug) \
167 dev_info(dev, fmt, ## __VA_ARGS__); \
168 } while (0)
169
Jarod Wilson66e89522010-06-01 17:32:08 -0300170/* general constants */
171#define SEND_FLAG_IN_PROGRESS 1
172#define SEND_FLAG_COMPLETE 2
173#define RECV_FLAG_IN_PROGRESS 3
174#define RECV_FLAG_COMPLETE 4
175
176#define MCEUSB_RX 1
177#define MCEUSB_TX 2
178
179#define VENDOR_PHILIPS 0x0471
180#define VENDOR_SMK 0x0609
181#define VENDOR_TATUNG 0x1460
182#define VENDOR_GATEWAY 0x107b
183#define VENDOR_SHUTTLE 0x1308
184#define VENDOR_SHUTTLE2 0x051c
185#define VENDOR_MITSUMI 0x03ee
186#define VENDOR_TOPSEED 0x1784
187#define VENDOR_RICAVISION 0x179d
188#define VENDOR_ITRON 0x195d
189#define VENDOR_FIC 0x1509
190#define VENDOR_LG 0x043e
191#define VENDOR_MICROSOFT 0x045e
192#define VENDOR_FORMOSA 0x147a
193#define VENDOR_FINTEK 0x1934
194#define VENDOR_PINNACLE 0x2304
195#define VENDOR_ECS 0x1019
196#define VENDOR_WISTRON 0x0fb8
197#define VENDOR_COMPRO 0x185b
198#define VENDOR_NORTHSTAR 0x04eb
199#define VENDOR_REALTEK 0x0bda
200#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300201#define VENDOR_CONEXANT 0x0572
Mark Lorda4de5f02012-07-11 18:53:28 -0300202#define VENDOR_TWISTEDMELON 0x2596
Jarod Wilson66e89522010-06-01 17:32:08 -0300203
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300204enum mceusb_model_type {
205 MCE_GEN2 = 0, /* Most boards */
206 MCE_GEN1,
207 MCE_GEN3,
208 MCE_GEN2_TX_INV,
209 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300210 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300211 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300212 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300213 MCE_GEN2_NO_TX,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300214};
215
216struct mceusb_model {
217 u32 mce_gen1:1;
218 u32 mce_gen2:1;
219 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300220 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300221 u32 no_tx:1;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300222
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300223 int ir_intfnum;
224
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300225 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300226 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300227};
228
229static const struct mceusb_model mceusb_model[] = {
230 [MCE_GEN1] = {
231 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300232 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300233 },
234 [MCE_GEN2] = {
235 .mce_gen2 = 1,
236 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300237 [MCE_GEN2_NO_TX] = {
238 .mce_gen2 = 1,
239 .no_tx = 1,
240 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300241 [MCE_GEN2_TX_INV] = {
242 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300243 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300244 },
245 [MCE_GEN3] = {
246 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300247 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300248 },
249 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300250 /*
251 * In fact, the EVK is shipped without
252 * remotes, but we should have something handy,
253 * to allow testing it
254 */
Mauro Carvalho Chehab15195d32011-01-24 12:18:47 -0300255 .rc_map = RC_MAP_HAUPPAUGE,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300256 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
257 },
258 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300259 .no_tx = 1, /* tx isn't wired up at all */
260 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300261 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300262 [MULTIFUNCTION] = {
263 .mce_gen2 = 1,
264 .ir_intfnum = 2,
265 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300266 [TIVO_KIT] = {
267 .mce_gen2 = 1,
268 .rc_map = RC_MAP_TIVO,
269 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300270};
271
Jarod Wilson66e89522010-06-01 17:32:08 -0300272static struct usb_device_id mceusb_dev_table[] = {
273 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300274 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
275 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300276 /* Philips Infrared Transceiver - Sahara branded */
277 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
278 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300279 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
280 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300281 /* Philips SRM5100 */
282 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
283 /* Philips Infrared Transceiver - Omaura */
284 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
285 /* Philips Infrared Transceiver - Spinel plus */
286 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
287 /* Philips eHome Infrared Transceiver */
288 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300289 /* Philips/Spinel plus IR transceiver for ASUS */
290 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
291 /* Philips/Spinel plus IR transceiver for ASUS */
292 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300293 /* Philips IR transceiver (Dell branded) */
Sean Young8dfef672013-01-29 08:19:29 -0300294 { USB_DEVICE(VENDOR_PHILIPS, 0x2093),
295 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300296 /* Realtek MCE IR Receiver and card reader */
297 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
298 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300299 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300300 { USB_DEVICE(VENDOR_SMK, 0x031d),
301 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300302 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300303 { USB_DEVICE(VENDOR_SMK, 0x0322),
304 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300305 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300306 { USB_DEVICE(VENDOR_SMK, 0x0334),
307 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300308 /* SMK eHome Infrared Transceiver */
309 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe12011-05-26 16:03:17 -0300310 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
311 { USB_DEVICE(VENDOR_SMK, 0x0353),
312 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300313 /* Tatung eHome Infrared Transceiver */
314 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
315 /* Shuttle eHome Infrared Transceiver */
316 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
317 /* Shuttle eHome Infrared Transceiver */
318 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
319 /* Gateway eHome Infrared Transceiver */
320 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
321 /* Mitsumi */
322 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
323 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300324 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
325 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300326 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300327 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
328 .driver_info = MCE_GEN2_TX_INV },
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, 0x0007),
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, 0x0008),
334 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300335 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300336 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
337 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300338 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300339 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300340 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300341 /* Ricavision internal Infrared Transceiver */
342 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
343 /* Itron ione Libra Q-11 */
344 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
345 /* FIC eHome Infrared Transceiver */
346 { USB_DEVICE(VENDOR_FIC, 0x9242) },
347 /* LG eHome Infrared Transceiver */
348 { USB_DEVICE(VENDOR_LG, 0x9803) },
349 /* Microsoft MCE Infrared Transceiver */
350 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
351 /* Formosa eHome Infrared Transceiver */
352 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
353 /* Formosa21 / eHome Infrared Receiver */
354 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
355 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300356 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
357 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300358 /* Formosa Industrial Computing / Beanbag Emulation Device */
359 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
360 /* Formosa21 / eHome Infrared Receiver */
361 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
362 /* Formosa Industrial Computing AIM IR605/A */
363 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
364 /* Formosa Industrial Computing */
365 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilson22f17322012-03-12 13:27:03 -0300366 /* Formosa Industrial Computing */
367 { USB_DEVICE(VENDOR_FORMOSA, 0xe042) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300368 /* Fintek eHome Infrared Transceiver (HP branded) */
369 { USB_DEVICE(VENDOR_FINTEK, 0x5168) },
Jarod Wilson66e89522010-06-01 17:32:08 -0300370 /* Fintek eHome Infrared Transceiver */
371 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
372 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
373 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
374 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300375 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
376 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300377 /* Elitegroup Computer Systems IR */
378 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
379 /* Wistron Corp. eHome Infrared Receiver */
380 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
381 /* Compro K100 */
382 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
383 /* Compro K100 v2 */
384 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
385 /* Northstar Systems, Inc. eHome Infrared Transceiver */
386 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
387 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300388 { USB_DEVICE(VENDOR_TIVO, 0x2000),
389 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300390 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300391 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
392 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300393 /* Conexant Hybrid TV RDU253S Polaris */
394 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
395 .driver_info = CX_HYBRID_TV },
Mark Lorda4de5f02012-07-11 18:53:28 -0300396 /* Twisted Melon Inc. - Manta Mini Receiver */
397 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) },
398 /* Twisted Melon Inc. - Manta Pico Receiver */
399 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) },
400 /* Twisted Melon Inc. - Manta Transceiver */
401 { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) },
Jarod Wilson66e89522010-06-01 17:32:08 -0300402 /* Terminating entry */
403 { }
404};
405
Jarod Wilson66e89522010-06-01 17:32:08 -0300406/* data structure for each usb transceiver */
407struct mceusb_dev {
408 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300409 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300410
411 /* optional features we can enable */
412 bool carrier_report_enabled;
413 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300414
415 /* core device bits */
416 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300417
418 /* usb */
419 struct usb_device *usbdev;
420 struct urb *urb_in;
Jarod Wilson66e89522010-06-01 17:32:08 -0300421 struct usb_endpoint_descriptor *usb_ep_out;
422
423 /* buffers and dma */
424 unsigned char *buf_in;
425 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300426 dma_addr_t dma_in;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300427
428 enum {
429 CMD_HEADER = 0,
430 SUBCMD,
431 CMD_DATA,
432 PARSE_IRDATA,
433 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300434
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300435 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300436
437 struct {
438 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300439 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300440 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300441 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300442 } flags;
443
Jarod Wilsone23fb962010-06-16 17:55:52 -0300444 /* transmit support */
Jarod Wilson66e89522010-06-01 17:32:08 -0300445 int send_flags;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300446 u32 carrier;
447 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300448
449 char name[128];
450 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300451 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300452
453 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300454 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300455 u8 num_txports; /* number of transmit ports */
456 u8 num_rxports; /* number of receive sensors */
457 u8 txports_cabled; /* bitmask of transmitters with cable */
458 u8 rxports_active; /* bitmask of active receive sensors */
Jarod Wilson66e89522010-06-01 17:32:08 -0300459};
460
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300461/* MCE Device Command Strings, generally a port and command pair */
462static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
463 MCE_CMD_RESUME};
464static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300465static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300466static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300467static char FLASH_LED[] = {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300468static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
469static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
470static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
Jarod Wilsona411e832011-07-18 16:54:26 -0300471static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300472static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
473static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300474/* sub in desired values in lower byte or bytes for full command */
475/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300476static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
477 MCE_CMD_SETIRCFS, 0x00, 0x00};
478static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
479static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
480 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
481static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
482 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300483*/
484
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300485static int mceusb_cmdsize(u8 cmd, u8 subcmd)
486{
487 int datasize = 0;
488
489 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300490 case MCE_CMD_NULL:
491 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300492 datasize = 1;
493 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300494 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300495 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300496 case MCE_RSP_EQWAKEVERSION:
497 datasize = 4;
498 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300499 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300500 datasize = 2;
501 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300502 case MCE_RSP_EQWAKESUPPORT:
503 datasize = 1;
504 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300505 }
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300506 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300507 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300508 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300509 case MCE_RSP_EQIRCFS:
510 case MCE_RSP_EQIRTIMEOUT:
511 case MCE_RSP_EQIRRXCFCNT:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300512 datasize = 2;
513 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300514 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300515 case MCE_RSP_EQIRTXPORTS:
516 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300517 datasize = 1;
518 break;
519 }
520 }
521 return datasize;
522}
523
Jarod Wilson66e89522010-06-01 17:32:08 -0300524static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300525 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300526{
527 char codes[USB_BUFLEN * 3 + 1];
528 char inout[9];
Hans Verkuil5becbc52012-05-14 10:22:58 -0300529 u8 cmd, subcmd, data1, data2, data3, data4;
Jarod Wilson66e89522010-06-01 17:32:08 -0300530 struct device *dev = ir->dev;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300531 int i, start, skip = 0;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300532 u32 carrier, period;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300533
534 if (!debug)
535 return;
Jarod Wilson66e89522010-06-01 17:32:08 -0300536
Jarod Wilson657290b2010-06-16 17:10:05 -0300537 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300538 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300539 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300540
Jarod Wilson36e9d262010-10-22 16:49:35 -0300541 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300542 return;
543
544 for (i = 0; i < len && i < USB_BUFLEN; i++)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300545 snprintf(codes + i * 3, 4, "%02x ", buf[i + offset] & 0xff);
Jarod Wilson66e89522010-06-01 17:32:08 -0300546
Jarod Wilson36e9d262010-10-22 16:49:35 -0300547 dev_info(dev, "%sx data: %s(length=%d)\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300548 (out ? "t" : "r"), codes, len);
549
550 if (out)
551 strcpy(inout, "Request\0");
552 else
553 strcpy(inout, "Got\0");
554
Jarod Wilson36e9d262010-10-22 16:49:35 -0300555 start = offset + skip;
556 cmd = buf[start] & 0xff;
557 subcmd = buf[start + 1] & 0xff;
558 data1 = buf[start + 2] & 0xff;
559 data2 = buf[start + 3] & 0xff;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300560 data3 = buf[start + 4] & 0xff;
561 data4 = buf[start + 5] & 0xff;
Jarod Wilson66e89522010-06-01 17:32:08 -0300562
563 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300564 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300565 if (subcmd == MCE_CMD_NULL)
566 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300567 if ((subcmd == MCE_CMD_PORT_SYS) &&
568 (data1 == MCE_CMD_RESUME))
569 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300570 else
571 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
572 cmd, subcmd);
573 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300574 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300575 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300576 case MCE_RSP_EQEMVER:
577 if (!out)
578 dev_info(dev, "Emulator interface version %x\n",
579 data1);
580 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300581 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300582 if (len == 2)
583 dev_info(dev, "Get hw/sw rev?\n");
584 else
585 dev_info(dev, "hw/sw rev 0x%02x 0x%02x "
586 "0x%02x 0x%02x\n", data1, data2,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300587 buf[start + 4], buf[start + 5]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300588 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300589 case MCE_CMD_RESUME:
590 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300591 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300592 case MCE_RSP_CMD_ILLEGAL:
593 dev_info(dev, "Illegal PORT_SYS command\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300594 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300595 case MCE_RSP_EQWAKEVERSION:
596 if (!out)
597 dev_info(dev, "Wake version, proto: 0x%02x, "
598 "payload: 0x%02x, address: 0x%02x, "
599 "version: 0x%02x\n",
600 data1, data2, data3, data4);
601 break;
602 case MCE_RSP_GETPORTSTATUS:
603 if (!out)
604 /* We use data1 + 1 here, to match hw labels */
605 dev_info(dev, "TX port %d: blaster is%s connected\n",
606 data1 + 1, data4 ? " not" : "");
607 break;
Jarod Wilsonb71969b2011-07-18 16:54:27 -0300608 case MCE_CMD_FLASHLED:
609 dev_info(dev, "Attempting to flash LED\n");
610 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300611 default:
612 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
613 cmd, subcmd);
614 break;
615 }
616 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300617 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300618 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300619 case MCE_CMD_SIG_END:
620 dev_info(dev, "End of signal\n");
621 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300622 case MCE_CMD_PING:
Jarod Wilson66e89522010-06-01 17:32:08 -0300623 dev_info(dev, "Ping\n");
624 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300625 case MCE_CMD_UNKNOWN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300626 dev_info(dev, "Resp to 9f 05 of 0x%02x 0x%02x\n",
627 data1, data2);
628 break;
Jarod Wilsone217fb42011-07-18 16:54:28 -0300629 case MCE_RSP_EQIRCFS:
630 period = DIV_ROUND_CLOSEST(
Jean Delvareed7dd242012-09-01 14:53:57 -0300631 (1U << data1 * 2) * (data2 + 1), 10);
Jarod Wilsone217fb42011-07-18 16:54:28 -0300632 if (!period)
633 break;
634 carrier = (1000 * 1000) / period;
635 dev_info(dev, "%s carrier of %u Hz (period %uus)\n",
636 inout, carrier, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300637 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300638 case MCE_CMD_GETIRCFS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300639 dev_info(dev, "Get carrier mode and freq\n");
640 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300641 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300642 dev_info(dev, "%s transmit blaster mask of 0x%02x\n",
643 inout, data1);
644 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300645 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300646 /* value is in units of 50us, so x*50/1000 ms */
Jarod Wilsone217fb42011-07-18 16:54:28 -0300647 period = ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000;
Jarod Wilson66e89522010-06-01 17:32:08 -0300648 dev_info(dev, "%s receive timeout of %d ms\n",
Jarod Wilsone217fb42011-07-18 16:54:28 -0300649 inout, period);
Jarod Wilson66e89522010-06-01 17:32:08 -0300650 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300651 case MCE_CMD_GETIRTIMEOUT:
Jarod Wilson66e89522010-06-01 17:32:08 -0300652 dev_info(dev, "Get receive timeout\n");
653 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300654 case MCE_CMD_GETIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300655 dev_info(dev, "Get transmit blaster mask\n");
656 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300657 case MCE_RSP_EQIRRXPORTEN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300658 dev_info(dev, "%s %s-range receive sensor in use\n",
659 inout, data1 == 0x02 ? "short" : "long");
660 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300661 case MCE_CMD_GETIRRXPORTEN:
662 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300663 if (out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300664 dev_info(dev, "Get receive sensor\n");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300665 else if (ir->learning_enabled)
666 dev_info(dev, "RX pulse count: %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300667 ((data1 << 8) | data2));
668 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300669 case MCE_RSP_EQIRNUMPORTS:
670 if (out)
671 break;
672 dev_info(dev, "Num TX ports: %x, num RX ports: %x\n",
673 data1, data2);
Jarod Wilson66e89522010-06-01 17:32:08 -0300674 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300675 case MCE_RSP_CMD_ILLEGAL:
676 dev_info(dev, "Illegal PORT_IR command\n");
677 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300678 default:
679 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
680 cmd, subcmd);
681 break;
682 }
683 break;
684 default:
685 break;
686 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300687
688 if (cmd == MCE_IRDATA_TRAILER)
689 dev_info(dev, "End of raw IR data\n");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300690 else if ((cmd != MCE_CMD_PORT_IR) &&
691 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Jarod Wilson36e9d262010-10-22 16:49:35 -0300692 dev_info(dev, "Raw IR data, %d pulse/space samples\n", ir->rem);
Jarod Wilson66e89522010-06-01 17:32:08 -0300693}
694
Sean Young6ac454a2012-07-15 13:31:31 -0300695static void mce_async_callback(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -0300696{
697 struct mceusb_dev *ir;
698 int len;
699
700 if (!urb)
701 return;
702
703 ir = urb->context;
704 if (ir) {
705 len = urb->actual_length;
706
Jarod Wilson36e9d262010-10-22 16:49:35 -0300707 mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true);
Jarod Wilson66e89522010-06-01 17:32:08 -0300708 }
709
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300710 /* the transfer buffer and urb were allocated in mce_request_packet */
711 kfree(urb->transfer_buffer);
712 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300713}
714
715/* request incoming or send outgoing usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300716static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
717 int size, int urb_type)
Jarod Wilson66e89522010-06-01 17:32:08 -0300718{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300719 int res, pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -0300720 struct urb *async_urb;
721 struct device *dev = ir->dev;
722 unsigned char *async_buf;
723
724 if (urb_type == MCEUSB_TX) {
725 async_urb = usb_alloc_urb(0, GFP_KERNEL);
726 if (unlikely(!async_urb)) {
727 dev_err(dev, "Error, couldn't allocate urb!\n");
728 return;
729 }
730
731 async_buf = kzalloc(size, GFP_KERNEL);
732 if (!async_buf) {
733 dev_err(dev, "Error, couldn't allocate buf!\n");
734 usb_free_urb(async_urb);
735 return;
736 }
737
738 /* outbound data */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300739 pipe = usb_sndintpipe(ir->usbdev,
740 ir->usb_ep_out->bEndpointAddress);
741 usb_fill_int_urb(async_urb, ir->usbdev, pipe,
Sean Young6ac454a2012-07-15 13:31:31 -0300742 async_buf, size, mce_async_callback,
Jarod Wilson51ea6292011-05-10 14:09:59 -0300743 ir, ir->usb_ep_out->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -0300744 memcpy(async_buf, data, size);
745
746 } else if (urb_type == MCEUSB_RX) {
747 /* standard request */
748 async_urb = ir->urb_in;
749 ir->send_flags = RECV_FLAG_IN_PROGRESS;
750
751 } else {
752 dev_err(dev, "Error! Unknown urb type %d\n", urb_type);
753 return;
754 }
755
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300756 mce_dbg(dev, "receive request called (size=%#x)\n", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300757
758 async_urb->transfer_buffer_length = size;
759 async_urb->dev = ir->usbdev;
760
761 res = usb_submit_urb(async_urb, GFP_ATOMIC);
762 if (res) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300763 mce_dbg(dev, "receive request FAILED! (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300764 return;
765 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300766 mce_dbg(dev, "receive request complete (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300767}
768
769static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
770{
Jarod Wilson4840b782011-07-18 16:54:24 -0300771 int rsize = sizeof(DEVICE_RESUME);
772
773 if (ir->need_reset) {
774 ir->need_reset = false;
775 mce_request_packet(ir, DEVICE_RESUME, rsize, MCEUSB_TX);
776 msleep(10);
777 }
778
Jarod Wilson51ea6292011-05-10 14:09:59 -0300779 mce_request_packet(ir, data, size, MCEUSB_TX);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300780 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300781}
782
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300783static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300784{
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300785 mce_request_packet(ir, NULL, size, MCEUSB_RX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300786}
787
Jarod Wilsone23fb962010-06-16 17:55:52 -0300788/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300789static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300790{
David Härdemand8b4b582010-10-29 16:08:23 -0300791 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300792 int i, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300793 int cmdcount = 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300794 unsigned char *cmdbuf; /* MCE command buffer */
Jarod Wilsone23fb962010-06-16 17:55:52 -0300795
David Härdeman5588dc22011-04-28 12:13:58 -0300796 cmdbuf = kzalloc(sizeof(unsigned) * MCE_CMDBUF_SIZE, GFP_KERNEL);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300797 if (!cmdbuf)
798 return -ENOMEM;
799
800 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300801 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
802 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300803 cmdbuf[cmdcount++] = ir->tx_mask;
804
805 /* Generate mce packet data */
806 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300807 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
808
809 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
810
811 /* Insert mce packet header every 4th entry */
812 if ((cmdcount < MCE_CMDBUF_SIZE) &&
813 (cmdcount - MCE_TX_HEADER_LENGTH) %
814 MCE_CODE_LENGTH == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300815 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300816
817 /* Insert mce packet data */
818 if (cmdcount < MCE_CMDBUF_SIZE)
819 cmdbuf[cmdcount++] =
820 (txbuf[i] < MCE_PULSE_BIT ?
821 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
822 (i & 1 ? 0x00 : MCE_PULSE_BIT);
823 else {
824 ret = -EINVAL;
825 goto out;
826 }
827
828 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
829 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
830 }
831
832 /* Fix packet length in last header */
833 cmdbuf[cmdcount - (cmdcount - MCE_TX_HEADER_LENGTH) % MCE_CODE_LENGTH] =
Jarod Wilson4a883912010-10-22 14:42:54 -0300834 MCE_COMMAND_IRDATA + (cmdcount - MCE_TX_HEADER_LENGTH) %
835 MCE_CODE_LENGTH - 1;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300836
837 /* Check if we have room for the empty packet at the end */
838 if (cmdcount >= MCE_CMDBUF_SIZE) {
839 ret = -EINVAL;
840 goto out;
841 }
842
843 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300844 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300845
846 /* Transmit the command to the mce device */
847 mce_async_out(ir, cmdbuf, cmdcount);
848
Jarod Wilsone23fb962010-06-16 17:55:52 -0300849out:
850 kfree(cmdbuf);
David Härdeman5588dc22011-04-28 12:13:58 -0300851 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300852}
853
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300854/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300855static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300856{
David Härdemand8b4b582010-10-29 16:08:23 -0300857 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300858
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300859 if (ir->flags.tx_mask_normal)
860 ir->tx_mask = mask;
861 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300862 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
863 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300864
865 return 0;
866}
867
Jarod Wilsone23fb962010-06-16 17:55:52 -0300868/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300869static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300870{
David Härdemand8b4b582010-10-29 16:08:23 -0300871 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300872 int clk = 10000000;
873 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300874 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
875 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300876
877 /* Carrier has changed */
878 if (ir->carrier != carrier) {
879
880 if (carrier == 0) {
881 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300882 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300883 cmdbuf[3] = MCE_IRDATA_TRAILER;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300884 mce_dbg(ir->dev, "%s: disabling carrier "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300885 "modulation\n", __func__);
886 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
887 return carrier;
888 }
889
890 for (prescaler = 0; prescaler < 4; ++prescaler) {
891 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300892 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300893 ir->carrier = carrier;
894 cmdbuf[2] = prescaler;
895 cmdbuf[3] = divisor;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300896 mce_dbg(ir->dev, "%s: requesting %u HZ "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300897 "carrier\n", __func__, carrier);
898
899 /* Transmit new carrier to mce device */
900 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
901 return carrier;
902 }
903 }
904
905 return -EINVAL;
906
907 }
908
909 return carrier;
910}
911
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300912/*
913 * We don't do anything but print debug spew for many of the command bits
914 * we receive from the hardware, but some of them are useful information
915 * we want to store so that we can use them.
916 */
917static void mceusb_handle_command(struct mceusb_dev *ir, int index)
918{
919 u8 hi = ir->buf_in[index + 1] & 0xff;
920 u8 lo = ir->buf_in[index + 2] & 0xff;
921
922 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -0300923 /* the one and only 5-byte return value command */
924 case MCE_RSP_GETPORTSTATUS:
925 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
926 ir->txports_cabled |= 1 << hi;
927 break;
928
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300929 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300930 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300931 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300932 break;
Jarod Wilsona411e832011-07-18 16:54:26 -0300933 case MCE_RSP_EQIRNUMPORTS:
934 ir->num_txports = hi;
935 ir->num_rxports = lo;
936 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300937
938 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300939 case MCE_RSP_EQEMVER:
940 ir->emver = hi;
941 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300942 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300943 ir->tx_mask = hi;
944 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300945 case MCE_RSP_EQIRRXPORTEN:
946 ir->learning_enabled = ((hi & 0x02) == 0x02);
Jarod Wilsona411e832011-07-18 16:54:26 -0300947 ir->rxports_active = hi;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300948 break;
Jarod Wilson4840b782011-07-18 16:54:24 -0300949 case MCE_RSP_CMD_ILLEGAL:
950 ir->need_reset = true;
951 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300952 default:
953 break;
954 }
955}
956
Jarod Wilson66e89522010-06-01 17:32:08 -0300957static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
958{
Maxim Levitsky46519182010-10-16 19:56:28 -0300959 DEFINE_IR_RAW_EVENT(rawir);
Sean Youngb83bfd12012-08-13 08:59:47 -0300960 bool event = false;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300961 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -0300962
963 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
964 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300965 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300966
Jarod Wilson29b44942010-11-09 18:41:46 -0300967 /* if there's no data, just return now */
968 if (buf_len <= i)
969 return;
970
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300971 for (; i < buf_len; i++) {
972 switch (ir->parser_state) {
973 case SUBCMD:
974 ir->rem = mceusb_cmdsize(ir->cmd, ir->buf_in[i]);
Jarod Wilson36e9d262010-10-22 16:49:35 -0300975 mceusb_dev_printdata(ir, ir->buf_in, i - 1,
976 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300977 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300978 ir->parser_state = CMD_DATA;
979 break;
980 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -0300981 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -0300982 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -0300983 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
984 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300985 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -0300986
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300987 mce_dbg(ir->dev, "Storing %s with duration %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300988 rawir.pulse ? "pulse" : "space",
989 rawir.duration);
990
Sean Youngb83bfd12012-08-13 08:59:47 -0300991 if (ir_raw_event_store_with_filter(ir->rc, &rawir))
992 event = true;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300993 break;
994 case CMD_DATA:
995 ir->rem--;
996 break;
997 case CMD_HEADER:
998 /* decode mce packets of the form (84),AA,BB,CC,DD */
999 /* IR data packets can span USB messages - rem */
1000 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001001 if ((ir->cmd == MCE_CMD_PORT_IR) ||
1002 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -03001003 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001004 ir->parser_state = SUBCMD;
1005 continue;
1006 }
1007 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001008 mceusb_dev_printdata(ir, ir->buf_in,
1009 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -03001010 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001011 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001012 else
1013 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001014 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001015 }
1016
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001017 if (ir->parser_state != CMD_HEADER && !ir->rem)
1018 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001019 }
Sean Youngb83bfd12012-08-13 08:59:47 -03001020 if (event) {
1021 mce_dbg(ir->dev, "processed IR data, calling ir_raw_event_handle\n");
1022 ir_raw_event_handle(ir->rc);
1023 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001024}
1025
Sean Young6ac454a2012-07-15 13:31:31 -03001026static void mceusb_dev_recv(struct urb *urb)
Jarod Wilson66e89522010-06-01 17:32:08 -03001027{
1028 struct mceusb_dev *ir;
1029 int buf_len;
1030
1031 if (!urb)
1032 return;
1033
1034 ir = urb->context;
1035 if (!ir) {
1036 usb_unlink_urb(urb);
1037 return;
1038 }
1039
1040 buf_len = urb->actual_length;
1041
Jarod Wilson66e89522010-06-01 17:32:08 -03001042 if (ir->send_flags == RECV_FLAG_IN_PROGRESS) {
1043 ir->send_flags = SEND_FLAG_COMPLETE;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001044 mce_dbg(ir->dev, "setup answer received %d bytes\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001045 buf_len);
1046 }
1047
1048 switch (urb->status) {
1049 /* success */
1050 case 0:
1051 mceusb_process_ir_data(ir, buf_len);
1052 break;
1053
1054 case -ECONNRESET:
1055 case -ENOENT:
1056 case -ESHUTDOWN:
1057 usb_unlink_urb(urb);
1058 return;
1059
1060 case -EPIPE:
1061 default:
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001062 mce_dbg(ir->dev, "Error: urb status = %d\n", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001063 break;
1064 }
1065
1066 usb_submit_urb(urb, GFP_ATOMIC);
1067}
1068
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001069static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1070{
1071 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1072 ir->emver = 1;
1073 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1074}
1075
Jarod Wilson66e89522010-06-01 17:32:08 -03001076static void mceusb_gen1_init(struct mceusb_dev *ir)
1077{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001078 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001079 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001080 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001081
1082 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1083 if (!data) {
1084 dev_err(dev, "%s: memory allocation failed!\n", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001085 return;
1086 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001087
1088 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001089 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001090 * on the receive control pipe and expect a certain value pair back
1091 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001092 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1093 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001094 data, USB_CTRL_MSG_SZ, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001095 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
1096 mce_dbg(dev, "%s - data[0] = %d, data[1] = %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001097 __func__, data[0], data[1]);
1098
1099 /* set feature: bit rate 38400 bps */
1100 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1101 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1102 0xc04e, 0x0000, NULL, 0, HZ * 3);
1103
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001104 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001105
1106 /* bRequest 4: set char length to 8 bits */
1107 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1108 4, USB_TYPE_VENDOR,
1109 0x0808, 0x0000, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001110 mce_dbg(dev, "%s - retB = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001111
1112 /* bRequest 2: set handshaking to use DTR/DSR */
1113 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1114 2, USB_TYPE_VENDOR,
1115 0x0000, 0x0100, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001116 mce_dbg(dev, "%s - retC = %d\n", __func__, ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001117
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001118 /* device resume */
1119 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001120
1121 /* get hw/sw revision? */
1122 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001123
Jarod Wilson657290b2010-06-16 17:10:05 -03001124 kfree(data);
Sean Young8dfef672013-01-29 08:19:29 -03001125}
Jarod Wilson66e89522010-06-01 17:32:08 -03001126
1127static void mceusb_gen2_init(struct mceusb_dev *ir)
1128{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001129 /* device resume */
1130 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001131
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001132 /* get wake version (protocol, key, address) */
1133 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1134
1135 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001136 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001137}
1138
Jarod Wilson22b07662010-07-08 12:38:57 -03001139static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001140{
Jarod Wilsona411e832011-07-18 16:54:26 -03001141 int i;
1142 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1143 MCE_CMD_GETPORTSTATUS, 0x00 };
1144
1145 /* defaults, if the hardware doesn't support querying */
1146 ir->num_txports = 2;
1147 ir->num_rxports = 2;
1148
1149 /* get number of tx and rx ports */
1150 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1151
Jarod Wilson66e89522010-06-01 17:32:08 -03001152 /* get the carrier and frequency */
1153 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001154
Jarod Wilsona411e832011-07-18 16:54:26 -03001155 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001156 /* get the transmitter bitmask */
1157 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001158
1159 /* get receiver timeout value */
1160 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001161
1162 /* get receiver sensor setting */
1163 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001164
1165 for (i = 0; i < ir->num_txports; i++) {
1166 cmdbuf[2] = i;
1167 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1168 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001169}
1170
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001171static void mceusb_flash_led(struct mceusb_dev *ir)
1172{
1173 if (ir->emver < 2)
1174 return;
1175
1176 mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED));
1177}
1178
David Härdemand8b4b582010-10-29 16:08:23 -03001179static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001180{
Jarod Wilson66e89522010-06-01 17:32:08 -03001181 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001182 struct rc_dev *rc;
1183 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001184
David Härdemand8b4b582010-10-29 16:08:23 -03001185 rc = rc_allocate_device();
1186 if (!rc) {
1187 dev_err(dev, "remote dev allocation failed\n");
1188 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001189 }
1190
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001191 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001192 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001193 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001194 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001195 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1196 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1197
Jarod Wilson66e89522010-06-01 17:32:08 -03001198 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001199
David Härdemand8b4b582010-10-29 16:08:23 -03001200 rc->input_name = ir->name;
1201 rc->input_phys = ir->phys;
1202 usb_to_input_id(ir->usbdev, &rc->input_id);
1203 rc->dev.parent = dev;
1204 rc->priv = ir;
1205 rc->driver_type = RC_DRIVER_IR_RAW;
David Härdemanc003ab12012-10-11 19:11:54 -03001206 rc->allowed_protos = RC_BIT_ALL;
Rafi Rubin9824ae42011-07-03 17:13:53 -03001207 rc->timeout = MS_TO_NS(100);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001208 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001209 rc->s_tx_mask = mceusb_set_tx_mask;
1210 rc->s_tx_carrier = mceusb_set_tx_carrier;
1211 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001212 }
David Härdemand8b4b582010-10-29 16:08:23 -03001213 rc->driver_name = DRIVER_NAME;
1214 rc->map_name = mceusb_model[ir->model].rc_map ?
1215 mceusb_model[ir->model].rc_map : RC_MAP_RC6_MCE;
Jarod Wilson66e89522010-06-01 17:32:08 -03001216
David Härdemand8b4b582010-10-29 16:08:23 -03001217 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001218 if (ret < 0) {
David Härdemand8b4b582010-10-29 16:08:23 -03001219 dev_err(dev, "remote dev registration failed\n");
1220 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001221 }
1222
David Härdemand8b4b582010-10-29 16:08:23 -03001223 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001224
David Härdemand8b4b582010-10-29 16:08:23 -03001225out:
1226 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001227 return NULL;
1228}
1229
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001230static int mceusb_dev_probe(struct usb_interface *intf,
1231 const struct usb_device_id *id)
Jarod Wilson66e89522010-06-01 17:32:08 -03001232{
1233 struct usb_device *dev = interface_to_usbdev(intf);
1234 struct usb_host_interface *idesc;
1235 struct usb_endpoint_descriptor *ep = NULL;
1236 struct usb_endpoint_descriptor *ep_in = NULL;
1237 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001238 struct mceusb_dev *ir = NULL;
Jarod Wilsond732a722010-06-16 17:10:46 -03001239 int pipe, maxp, i;
Jarod Wilson66e89522010-06-01 17:32:08 -03001240 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001241 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001242 bool is_gen3;
1243 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001244 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001245 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001246
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001247 mce_dbg(&intf->dev, "%s called\n", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001248
Jarod Wilson66e89522010-06-01 17:32:08 -03001249 idesc = intf->cur_altsetting;
1250
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001251 is_gen3 = mceusb_model[model].mce_gen3;
1252 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001253 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001254 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001255
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001256 /* There are multi-function devices with non-IR interfaces */
1257 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1258 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001259
1260 /* step through the endpoints to find first bulk in and out endpoint */
1261 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1262 ep = &idesc->endpoint[i].desc;
1263
1264 if ((ep_in == NULL)
1265 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1266 == USB_DIR_IN)
1267 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1268 == USB_ENDPOINT_XFER_BULK)
1269 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1270 == USB_ENDPOINT_XFER_INT))) {
1271
Jarod Wilson66e89522010-06-01 17:32:08 -03001272 ep_in = ep;
1273 ep_in->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001274 ep_in->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001275 mce_dbg(&intf->dev, "acceptable inbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001276 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001277 }
1278
1279 if ((ep_out == NULL)
1280 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1281 == USB_DIR_OUT)
1282 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1283 == USB_ENDPOINT_XFER_BULK)
1284 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1285 == USB_ENDPOINT_XFER_INT))) {
1286
Jarod Wilson66e89522010-06-01 17:32:08 -03001287 ep_out = ep;
1288 ep_out->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001289 ep_out->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001290 mce_dbg(&intf->dev, "acceptable outbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001291 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001292 }
1293 }
1294 if (ep_in == NULL) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001295 mce_dbg(&intf->dev, "inbound and/or endpoint not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001296 return -ENODEV;
1297 }
1298
1299 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1300 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1301
1302 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1303 if (!ir)
1304 goto mem_alloc_fail;
1305
1306 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1307 if (!ir->buf_in)
1308 goto buf_in_alloc_fail;
1309
1310 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1311 if (!ir->urb_in)
1312 goto urb_in_alloc_fail;
1313
1314 ir->usbdev = dev;
1315 ir->dev = &intf->dev;
1316 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001317 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001318 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001319 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001320 ir->model = model;
1321
Jarod Wilson66e89522010-06-01 17:32:08 -03001322 /* Saving usb interface data for use by the transmitter routine */
Jarod Wilson66e89522010-06-01 17:32:08 -03001323 ir->usb_ep_out = ep_out;
1324
1325 if (dev->descriptor.iManufacturer
1326 && usb_string(dev, dev->descriptor.iManufacturer,
1327 buf, sizeof(buf)) > 0)
1328 strlcpy(name, buf, sizeof(name));
1329 if (dev->descriptor.iProduct
1330 && usb_string(dev, dev->descriptor.iProduct,
1331 buf, sizeof(buf)) > 0)
1332 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1333 " %s", buf);
1334
David Härdemand8b4b582010-10-29 16:08:23 -03001335 ir->rc = mceusb_init_rc_dev(ir);
1336 if (!ir->rc)
1337 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001338
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001339 /* wire up inbound data handler */
Sean Young6ac454a2012-07-15 13:31:31 -03001340 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp,
1341 mceusb_dev_recv, ir, ep_in->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -03001342 ir->urb_in->transfer_dma = ir->dma_in;
1343 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1344
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001345 /* flush buffers on the device */
1346 mce_dbg(&intf->dev, "Flushing receive buffers\n");
1347 mce_flush_rx_buffer(ir, maxp);
1348
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001349 /* figure out which firmware/emulator version this hardware has */
1350 mceusb_get_emulator_version(ir);
1351
Jarod Wilson66e89522010-06-01 17:32:08 -03001352 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001353 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001354 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001355 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001356 mceusb_gen2_init(ir);
1357
Jarod Wilson22b07662010-07-08 12:38:57 -03001358 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001359
Jarod Wilsonb71969b2011-07-18 16:54:27 -03001360 mceusb_flash_led(ir);
1361
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001362 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001363 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001364
1365 usb_set_intfdata(intf, ir);
1366
Jarod Wilsonfa334892011-07-18 16:54:23 -03001367 /* enable wake via this device */
1368 device_set_wakeup_capable(ir->dev, true);
1369 device_set_wakeup_enable(ir->dev, true);
1370
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001371 dev_info(&intf->dev, "Registered %s with mce emulator interface "
1372 "version %x\n", name, ir->emver);
Jarod Wilsona411e832011-07-18 16:54:26 -03001373 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and "
1374 "%x rx sensors (0x%x active)\n",
1375 ir->num_txports, ir->txports_cabled,
1376 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001377
1378 return 0;
1379
1380 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001381rc_dev_fail:
Jarod Wilson66e89522010-06-01 17:32:08 -03001382 usb_free_urb(ir->urb_in);
1383urb_in_alloc_fail:
1384 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1385buf_in_alloc_fail:
1386 kfree(ir);
1387mem_alloc_fail:
1388 dev_err(&intf->dev, "%s: device setup failed!\n", __func__);
1389
1390 return -ENOMEM;
1391}
1392
1393
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001394static void mceusb_dev_disconnect(struct usb_interface *intf)
Jarod Wilson66e89522010-06-01 17:32:08 -03001395{
1396 struct usb_device *dev = interface_to_usbdev(intf);
1397 struct mceusb_dev *ir = usb_get_intfdata(intf);
1398
1399 usb_set_intfdata(intf, NULL);
1400
1401 if (!ir)
1402 return;
1403
1404 ir->usbdev = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -03001405 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001406 usb_kill_urb(ir->urb_in);
1407 usb_free_urb(ir->urb_in);
1408 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
1409
1410 kfree(ir);
1411}
1412
1413static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1414{
1415 struct mceusb_dev *ir = usb_get_intfdata(intf);
1416 dev_info(ir->dev, "suspend\n");
1417 usb_kill_urb(ir->urb_in);
1418 return 0;
1419}
1420
1421static int mceusb_dev_resume(struct usb_interface *intf)
1422{
1423 struct mceusb_dev *ir = usb_get_intfdata(intf);
1424 dev_info(ir->dev, "resume\n");
1425 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1426 return -EIO;
1427 return 0;
1428}
1429
1430static struct usb_driver mceusb_dev_driver = {
1431 .name = DRIVER_NAME,
1432 .probe = mceusb_dev_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001433 .disconnect = mceusb_dev_disconnect,
Jarod Wilson66e89522010-06-01 17:32:08 -03001434 .suspend = mceusb_dev_suspend,
1435 .resume = mceusb_dev_resume,
1436 .reset_resume = mceusb_dev_resume,
1437 .id_table = mceusb_dev_table
1438};
1439
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -08001440module_usb_driver(mceusb_dev_driver);
Jarod Wilson66e89522010-06-01 17:32:08 -03001441
1442MODULE_DESCRIPTION(DRIVER_DESC);
1443MODULE_AUTHOR(DRIVER_AUTHOR);
1444MODULE_LICENSE("GPL");
1445MODULE_DEVICE_TABLE(usb, mceusb_dev_table);
1446
1447module_param(debug, bool, S_IRUGO | S_IWUSR);
1448MODULE_PARM_DESC(debug, "Debug enabled or not");