blob: c4f3bc00611dce4f2576e7c72f9870e1fd37ac7e [file] [log] [blame]
Jarod Wilson66e89522010-06-01 17:32:08 -03001/*
2 * Driver for USB Windows Media Center Ed. eHome Infrared Transceivers
3 *
4 * Copyright (c) 2010 by Jarod Wilson <jarod@redhat.com>
5 *
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 Wilson66e89522010-06-01 17:32:08 -030018 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 *
33 */
34
35#include <linux/device.h>
36#include <linux/module.h>
37#include <linux/slab.h>
Paul Bender635f76b2010-12-16 13:23:07 -030038#include <linux/usb.h>
39#include <linux/usb/input.h>
Jarod Wilsonfa334892011-07-18 16:54:23 -030040#include <linux/pm_wakeup.h>
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030041#include <media/rc-core.h>
Jarod Wilson66e89522010-06-01 17:32:08 -030042
43#define DRIVER_VERSION "1.91"
44#define DRIVER_AUTHOR "Jarod Wilson <jarod@wilsonet.com>"
45#define DRIVER_DESC "Windows Media Center Ed. eHome Infrared Transceiver " \
46 "device driver"
47#define DRIVER_NAME "mceusb"
48
Jarod Wilson4a883912010-10-22 14:42:54 -030049#define USB_BUFLEN 32 /* USB reception buffer length */
50#define USB_CTRL_MSG_SZ 2 /* Size of usb ctrl msg on gen1 hw */
51#define MCE_G1_INIT_MSGS 40 /* Init messages on gen1 hw to throw out */
Jarod Wilson66e89522010-06-01 17:32:08 -030052
53/* MCE constants */
Jarod Wilson4a883912010-10-22 14:42:54 -030054#define MCE_CMDBUF_SIZE 384 /* MCE Command buffer length */
55#define MCE_TIME_UNIT 50 /* Approx 50us resolution */
56#define MCE_CODE_LENGTH 5 /* Normal length of packet (with header) */
57#define MCE_PACKET_SIZE 4 /* Normal length of packet (without header) */
58#define MCE_IRDATA_HEADER 0x84 /* Actual header format is 0x80 + num_bytes */
59#define MCE_IRDATA_TRAILER 0x80 /* End of IR data */
60#define MCE_TX_HEADER_LENGTH 3 /* # of bytes in the initializing tx header */
61#define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */
62#define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
63#define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */
64#define MCE_PULSE_MASK 0x7f /* Pulse mask */
65#define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */
66
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030067/*
68 * The interface between the host and the IR hardware is command-response
69 * based. All commands and responses have a consistent format, where a lead
70 * byte always identifies the type of data following it. The lead byte has
71 * a port value in the 3 highest bits and a length value in the 5 lowest
72 * bits.
73 *
74 * The length field is overloaded, with a value of 11111 indicating that the
75 * following byte is a command or response code, and the length of the entire
76 * message is determined by the code. If the length field is not 11111, then
77 * it specifies the number of bytes of port data that follow.
78 */
79#define MCE_CMD 0x1f
80#define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */
81#define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */
82#define MCE_PORT_SER 0x6 /* 0xc0 thru 0xdf flush & 0x1f bytes */
83#define MCE_PORT_MASK 0xe0 /* Mask out command bits */
Jarod Wilson4a883912010-10-22 14:42:54 -030084
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030085/* Command port headers */
86#define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */
87#define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */
88
89/* Commands that set device state (2-4 bytes in length) */
90#define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */
91#define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */
92#define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */
93#define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */
94#define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */
95#define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */
96#define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */
97
98/* Commands that query device state (all 2 bytes, unless noted) */
99#define MCE_CMD_GETIRCFS 0x07 /* Get carrier */
100#define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */
101#define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */
102#define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */
103#define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */
104#define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */
105#define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */
106#define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */
107#define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */
108#define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */
109#define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */
110
111/* Misc commands */
112#define MCE_CMD_NOP 0xff /* No operation */
113
114/* Responses to commands (non-error cases) */
115#define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */
116#define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */
117#define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */
118#define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */
119#define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */
120#define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */
121#define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */
122#define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */
123#define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */
124#define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */
125#define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */
126#define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */
127#define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */
128
129/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
130#define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */
131#define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */
132
133/* Misc commands/responses not defined in the MCE remote/transceiver spec */
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300134#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -0300135#define MCE_CMD_PING 0x03 /* Ping device */
136#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
137#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300138#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
139#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
140#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
Jarod Wilson4a883912010-10-22 14:42:54 -0300141#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
142#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300143#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
144#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300145#define MCE_CMD_NULL 0x00 /* These show up various places... */
Jarod Wilson66e89522010-06-01 17:32:08 -0300146
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300147/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
148 * then we're looking at a raw IR data sample */
149#define MCE_COMMAND_IRDATA 0x80
150#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
Jarod Wilson66e89522010-06-01 17:32:08 -0300151
152/* module parameters */
153#ifdef CONFIG_USB_DEBUG
154static int debug = 1;
155#else
156static int debug;
157#endif
158
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300159#define mce_dbg(dev, fmt, ...) \
160 do { \
161 if (debug) \
162 dev_info(dev, fmt, ## __VA_ARGS__); \
163 } while (0)
164
Jarod Wilson66e89522010-06-01 17:32:08 -0300165/* general constants */
166#define SEND_FLAG_IN_PROGRESS 1
167#define SEND_FLAG_COMPLETE 2
168#define RECV_FLAG_IN_PROGRESS 3
169#define RECV_FLAG_COMPLETE 4
170
171#define MCEUSB_RX 1
172#define MCEUSB_TX 2
173
174#define VENDOR_PHILIPS 0x0471
175#define VENDOR_SMK 0x0609
176#define VENDOR_TATUNG 0x1460
177#define VENDOR_GATEWAY 0x107b
178#define VENDOR_SHUTTLE 0x1308
179#define VENDOR_SHUTTLE2 0x051c
180#define VENDOR_MITSUMI 0x03ee
181#define VENDOR_TOPSEED 0x1784
182#define VENDOR_RICAVISION 0x179d
183#define VENDOR_ITRON 0x195d
184#define VENDOR_FIC 0x1509
185#define VENDOR_LG 0x043e
186#define VENDOR_MICROSOFT 0x045e
187#define VENDOR_FORMOSA 0x147a
188#define VENDOR_FINTEK 0x1934
189#define VENDOR_PINNACLE 0x2304
190#define VENDOR_ECS 0x1019
191#define VENDOR_WISTRON 0x0fb8
192#define VENDOR_COMPRO 0x185b
193#define VENDOR_NORTHSTAR 0x04eb
194#define VENDOR_REALTEK 0x0bda
195#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300196#define VENDOR_CONEXANT 0x0572
Jarod Wilson66e89522010-06-01 17:32:08 -0300197
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300198enum mceusb_model_type {
199 MCE_GEN2 = 0, /* Most boards */
200 MCE_GEN1,
201 MCE_GEN3,
202 MCE_GEN2_TX_INV,
203 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300204 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300205 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300206 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300207 MCE_GEN2_NO_TX,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300208};
209
210struct mceusb_model {
211 u32 mce_gen1:1;
212 u32 mce_gen2:1;
213 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300214 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300215 u32 no_tx:1;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300216
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300217 int ir_intfnum;
218
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300219 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300220 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300221};
222
223static const struct mceusb_model mceusb_model[] = {
224 [MCE_GEN1] = {
225 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300226 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300227 },
228 [MCE_GEN2] = {
229 .mce_gen2 = 1,
230 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300231 [MCE_GEN2_NO_TX] = {
232 .mce_gen2 = 1,
233 .no_tx = 1,
234 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300235 [MCE_GEN2_TX_INV] = {
236 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300237 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300238 },
239 [MCE_GEN3] = {
240 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300241 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300242 },
243 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300244 /*
245 * In fact, the EVK is shipped without
246 * remotes, but we should have something handy,
247 * to allow testing it
248 */
Mauro Carvalho Chehab15195d32011-01-24 12:18:47 -0300249 .rc_map = RC_MAP_HAUPPAUGE,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300250 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
251 },
252 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300253 .no_tx = 1, /* tx isn't wired up at all */
254 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300255 },
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) */
288 { USB_DEVICE(VENDOR_PHILIPS, 0x2093) },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300289 /* Realtek MCE IR Receiver and card reader */
290 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
291 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300292 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300293 { USB_DEVICE(VENDOR_SMK, 0x031d),
294 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300295 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300296 { USB_DEVICE(VENDOR_SMK, 0x0322),
297 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300298 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300299 { USB_DEVICE(VENDOR_SMK, 0x0334),
300 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300301 /* SMK eHome Infrared Transceiver */
302 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe12011-05-26 16:03:17 -0300303 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
304 { USB_DEVICE(VENDOR_SMK, 0x0353),
305 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300306 /* Tatung eHome Infrared Transceiver */
307 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
308 /* Shuttle eHome Infrared Transceiver */
309 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
310 /* Shuttle eHome Infrared Transceiver */
311 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
312 /* Gateway eHome Infrared Transceiver */
313 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
314 /* Mitsumi */
315 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
316 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300317 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
318 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300319 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300320 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
321 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300322 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300323 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
324 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300325 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300326 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
327 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300328 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300329 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
330 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300331 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300332 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300333 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300334 /* Ricavision internal Infrared Transceiver */
335 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
336 /* Itron ione Libra Q-11 */
337 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
338 /* FIC eHome Infrared Transceiver */
339 { USB_DEVICE(VENDOR_FIC, 0x9242) },
340 /* LG eHome Infrared Transceiver */
341 { USB_DEVICE(VENDOR_LG, 0x9803) },
342 /* Microsoft MCE Infrared Transceiver */
343 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
344 /* Formosa eHome Infrared Transceiver */
345 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
346 /* Formosa21 / eHome Infrared Receiver */
347 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
348 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300349 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
350 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300351 /* Formosa Industrial Computing / Beanbag Emulation Device */
352 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
353 /* Formosa21 / eHome Infrared Receiver */
354 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
355 /* Formosa Industrial Computing AIM IR605/A */
356 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
357 /* Formosa Industrial Computing */
358 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300359 /* Fintek eHome Infrared Transceiver (HP branded) */
360 { USB_DEVICE(VENDOR_FINTEK, 0x5168) },
Jarod Wilson66e89522010-06-01 17:32:08 -0300361 /* Fintek eHome Infrared Transceiver */
362 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
363 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
364 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
365 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300366 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
367 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300368 /* Elitegroup Computer Systems IR */
369 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
370 /* Wistron Corp. eHome Infrared Receiver */
371 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
372 /* Compro K100 */
373 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
374 /* Compro K100 v2 */
375 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
376 /* Northstar Systems, Inc. eHome Infrared Transceiver */
377 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
378 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300379 { USB_DEVICE(VENDOR_TIVO, 0x2000),
380 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300381 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300382 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
383 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300384 /* Conexant Hybrid TV RDU253S Polaris */
385 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
386 .driver_info = CX_HYBRID_TV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300387 /* Terminating entry */
388 { }
389};
390
Jarod Wilson66e89522010-06-01 17:32:08 -0300391/* data structure for each usb transceiver */
392struct mceusb_dev {
393 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300394 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300395
396 /* optional features we can enable */
397 bool carrier_report_enabled;
398 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300399
400 /* core device bits */
401 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300402
403 /* usb */
404 struct usb_device *usbdev;
405 struct urb *urb_in;
406 struct usb_endpoint_descriptor *usb_ep_in;
407 struct usb_endpoint_descriptor *usb_ep_out;
408
409 /* buffers and dma */
410 unsigned char *buf_in;
411 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300412 dma_addr_t dma_in;
413 dma_addr_t dma_out;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300414
415 enum {
416 CMD_HEADER = 0,
417 SUBCMD,
418 CMD_DATA,
419 PARSE_IRDATA,
420 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300421
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300422 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300423
424 struct {
425 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300426 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300427 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300428 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300429 } flags;
430
Jarod Wilsone23fb962010-06-16 17:55:52 -0300431 /* transmit support */
Jarod Wilson66e89522010-06-01 17:32:08 -0300432 int send_flags;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300433 u32 carrier;
434 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300435
436 char name[128];
437 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300438 enum mceusb_model_type model;
Jarod Wilson4840b782011-07-18 16:54:24 -0300439
440 bool need_reset; /* flag to issue a device resume cmd */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300441 u8 emver; /* emulator interface version */
Jarod Wilsona411e832011-07-18 16:54:26 -0300442 u8 num_txports; /* number of transmit ports */
443 u8 num_rxports; /* number of receive sensors */
444 u8 txports_cabled; /* bitmask of transmitters with cable */
445 u8 rxports_active; /* bitmask of active receive sensors */
Jarod Wilson66e89522010-06-01 17:32:08 -0300446};
447
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300448/* MCE Device Command Strings, generally a port and command pair */
449static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
450 MCE_CMD_RESUME};
451static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300452static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300453static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
454static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
455static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
456static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
Jarod Wilsona411e832011-07-18 16:54:26 -0300457static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS};
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300458static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
459static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300460/* sub in desired values in lower byte or bytes for full command */
461/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300462static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
463 MCE_CMD_SETIRCFS, 0x00, 0x00};
464static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
465static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
466 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
467static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
468 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300469*/
470
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300471static int mceusb_cmdsize(u8 cmd, u8 subcmd)
472{
473 int datasize = 0;
474
475 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300476 case MCE_CMD_NULL:
477 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300478 datasize = 1;
479 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300480 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300481 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300482 case MCE_RSP_EQWAKEVERSION:
483 datasize = 4;
484 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300485 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300486 datasize = 2;
487 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300488 case MCE_RSP_EQWAKESUPPORT:
489 datasize = 1;
490 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300491 }
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300492 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300493 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300494 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300495 case MCE_RSP_EQIRCFS:
496 case MCE_RSP_EQIRTIMEOUT:
497 case MCE_RSP_EQIRRXCFCNT:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300498 datasize = 2;
499 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300500 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300501 case MCE_RSP_EQIRTXPORTS:
502 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300503 datasize = 1;
504 break;
505 }
506 }
507 return datasize;
508}
509
Jarod Wilson66e89522010-06-01 17:32:08 -0300510static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300511 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300512{
513 char codes[USB_BUFLEN * 3 + 1];
514 char inout[9];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300515 u8 cmd, subcmd, data1, data2, data3, data4, data5;
Jarod Wilson66e89522010-06-01 17:32:08 -0300516 struct device *dev = ir->dev;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300517 int i, start, skip = 0;
518
519 if (!debug)
520 return;
Jarod Wilson66e89522010-06-01 17:32:08 -0300521
Jarod Wilson657290b2010-06-16 17:10:05 -0300522 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300523 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300524 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300525
Jarod Wilson36e9d262010-10-22 16:49:35 -0300526 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300527 return;
528
529 for (i = 0; i < len && i < USB_BUFLEN; i++)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300530 snprintf(codes + i * 3, 4, "%02x ", buf[i + offset] & 0xff);
Jarod Wilson66e89522010-06-01 17:32:08 -0300531
Jarod Wilson36e9d262010-10-22 16:49:35 -0300532 dev_info(dev, "%sx data: %s(length=%d)\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300533 (out ? "t" : "r"), codes, len);
534
535 if (out)
536 strcpy(inout, "Request\0");
537 else
538 strcpy(inout, "Got\0");
539
Jarod Wilson36e9d262010-10-22 16:49:35 -0300540 start = offset + skip;
541 cmd = buf[start] & 0xff;
542 subcmd = buf[start + 1] & 0xff;
543 data1 = buf[start + 2] & 0xff;
544 data2 = buf[start + 3] & 0xff;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300545 data3 = buf[start + 4] & 0xff;
546 data4 = buf[start + 5] & 0xff;
547 data5 = buf[start + 6] & 0xff;
Jarod Wilson66e89522010-06-01 17:32:08 -0300548
549 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300550 case MCE_CMD_NULL:
Jarod Wilsona411e832011-07-18 16:54:26 -0300551 if (subcmd == MCE_CMD_NULL)
552 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300553 if ((subcmd == MCE_CMD_PORT_SYS) &&
554 (data1 == MCE_CMD_RESUME))
555 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300556 else
557 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
558 cmd, subcmd);
559 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300560 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300561 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300562 case MCE_RSP_EQEMVER:
563 if (!out)
564 dev_info(dev, "Emulator interface version %x\n",
565 data1);
566 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300567 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300568 if (len == 2)
569 dev_info(dev, "Get hw/sw rev?\n");
570 else
571 dev_info(dev, "hw/sw rev 0x%02x 0x%02x "
572 "0x%02x 0x%02x\n", data1, data2,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300573 buf[start + 4], buf[start + 5]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300574 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300575 case MCE_CMD_RESUME:
576 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300577 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300578 case MCE_RSP_CMD_ILLEGAL:
579 dev_info(dev, "Illegal PORT_SYS command\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300580 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300581 case MCE_RSP_EQWAKEVERSION:
582 if (!out)
583 dev_info(dev, "Wake version, proto: 0x%02x, "
584 "payload: 0x%02x, address: 0x%02x, "
585 "version: 0x%02x\n",
586 data1, data2, data3, data4);
587 break;
588 case MCE_RSP_GETPORTSTATUS:
589 if (!out)
590 /* We use data1 + 1 here, to match hw labels */
591 dev_info(dev, "TX port %d: blaster is%s connected\n",
592 data1 + 1, data4 ? " not" : "");
593 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300594 default:
595 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
596 cmd, subcmd);
597 break;
598 }
599 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300600 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300601 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300602 case MCE_CMD_SIG_END:
603 dev_info(dev, "End of signal\n");
604 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300605 case MCE_CMD_PING:
Jarod Wilson66e89522010-06-01 17:32:08 -0300606 dev_info(dev, "Ping\n");
607 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300608 case MCE_CMD_UNKNOWN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300609 dev_info(dev, "Resp to 9f 05 of 0x%02x 0x%02x\n",
610 data1, data2);
611 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300612 case MCE_CMD_SETIRCFS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300613 dev_info(dev, "%s carrier mode and freq of "
614 "0x%02x 0x%02x\n", inout, data1, data2);
615 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300616 case MCE_CMD_GETIRCFS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300617 dev_info(dev, "Get carrier mode and freq\n");
618 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300619 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300620 dev_info(dev, "%s transmit blaster mask of 0x%02x\n",
621 inout, data1);
622 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300623 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300624 /* value is in units of 50us, so x*50/1000 ms */
Jarod Wilson66e89522010-06-01 17:32:08 -0300625 dev_info(dev, "%s receive timeout of %d ms\n",
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300626 inout,
627 ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000);
Jarod Wilson66e89522010-06-01 17:32:08 -0300628 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300629 case MCE_CMD_GETIRTIMEOUT:
Jarod Wilson66e89522010-06-01 17:32:08 -0300630 dev_info(dev, "Get receive timeout\n");
631 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300632 case MCE_CMD_GETIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300633 dev_info(dev, "Get transmit blaster mask\n");
634 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300635 case MCE_RSP_EQIRRXPORTEN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300636 dev_info(dev, "%s %s-range receive sensor in use\n",
637 inout, data1 == 0x02 ? "short" : "long");
638 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300639 case MCE_CMD_GETIRRXPORTEN:
640 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300641 if (out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300642 dev_info(dev, "Get receive sensor\n");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300643 else if (ir->learning_enabled)
644 dev_info(dev, "RX pulse count: %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300645 ((data1 << 8) | data2));
646 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300647 case MCE_RSP_EQIRNUMPORTS:
648 if (out)
649 break;
650 dev_info(dev, "Num TX ports: %x, num RX ports: %x\n",
651 data1, data2);
Jarod Wilson66e89522010-06-01 17:32:08 -0300652 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300653 case MCE_RSP_CMD_ILLEGAL:
654 dev_info(dev, "Illegal PORT_IR command\n");
655 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300656 default:
657 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
658 cmd, subcmd);
659 break;
660 }
661 break;
662 default:
663 break;
664 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300665
666 if (cmd == MCE_IRDATA_TRAILER)
667 dev_info(dev, "End of raw IR data\n");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300668 else if ((cmd != MCE_CMD_PORT_IR) &&
669 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Jarod Wilson36e9d262010-10-22 16:49:35 -0300670 dev_info(dev, "Raw IR data, %d pulse/space samples\n", ir->rem);
Jarod Wilson66e89522010-06-01 17:32:08 -0300671}
672
Jarod Wilson7c294402010-08-02 18:21:06 -0300673static void mce_async_callback(struct urb *urb, struct pt_regs *regs)
Jarod Wilson66e89522010-06-01 17:32:08 -0300674{
675 struct mceusb_dev *ir;
676 int len;
677
678 if (!urb)
679 return;
680
681 ir = urb->context;
682 if (ir) {
683 len = urb->actual_length;
684
Jarod Wilson36e9d262010-10-22 16:49:35 -0300685 mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true);
Jarod Wilson66e89522010-06-01 17:32:08 -0300686 }
687
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300688 /* the transfer buffer and urb were allocated in mce_request_packet */
689 kfree(urb->transfer_buffer);
690 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300691}
692
693/* request incoming or send outgoing usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300694static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
695 int size, int urb_type)
Jarod Wilson66e89522010-06-01 17:32:08 -0300696{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300697 int res, pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -0300698 struct urb *async_urb;
699 struct device *dev = ir->dev;
700 unsigned char *async_buf;
701
702 if (urb_type == MCEUSB_TX) {
703 async_urb = usb_alloc_urb(0, GFP_KERNEL);
704 if (unlikely(!async_urb)) {
705 dev_err(dev, "Error, couldn't allocate urb!\n");
706 return;
707 }
708
709 async_buf = kzalloc(size, GFP_KERNEL);
710 if (!async_buf) {
711 dev_err(dev, "Error, couldn't allocate buf!\n");
712 usb_free_urb(async_urb);
713 return;
714 }
715
716 /* outbound data */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300717 pipe = usb_sndintpipe(ir->usbdev,
718 ir->usb_ep_out->bEndpointAddress);
719 usb_fill_int_urb(async_urb, ir->usbdev, pipe,
Jarod Wilson7c294402010-08-02 18:21:06 -0300720 async_buf, size, (usb_complete_t)mce_async_callback,
Jarod Wilson51ea6292011-05-10 14:09:59 -0300721 ir, ir->usb_ep_out->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -0300722 memcpy(async_buf, data, size);
723
724 } else if (urb_type == MCEUSB_RX) {
725 /* standard request */
726 async_urb = ir->urb_in;
727 ir->send_flags = RECV_FLAG_IN_PROGRESS;
728
729 } else {
730 dev_err(dev, "Error! Unknown urb type %d\n", urb_type);
731 return;
732 }
733
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300734 mce_dbg(dev, "receive request called (size=%#x)\n", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300735
736 async_urb->transfer_buffer_length = size;
737 async_urb->dev = ir->usbdev;
738
739 res = usb_submit_urb(async_urb, GFP_ATOMIC);
740 if (res) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300741 mce_dbg(dev, "receive request FAILED! (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300742 return;
743 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300744 mce_dbg(dev, "receive request complete (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300745}
746
747static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
748{
Jarod Wilson4840b782011-07-18 16:54:24 -0300749 int rsize = sizeof(DEVICE_RESUME);
750
751 if (ir->need_reset) {
752 ir->need_reset = false;
753 mce_request_packet(ir, DEVICE_RESUME, rsize, MCEUSB_TX);
754 msleep(10);
755 }
756
Jarod Wilson51ea6292011-05-10 14:09:59 -0300757 mce_request_packet(ir, data, size, MCEUSB_TX);
Jarod Wilson417c0a22011-07-18 16:54:22 -0300758 msleep(10);
Jarod Wilson66e89522010-06-01 17:32:08 -0300759}
760
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300761static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300762{
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300763 mce_request_packet(ir, NULL, size, MCEUSB_RX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300764}
765
Jarod Wilsone23fb962010-06-16 17:55:52 -0300766/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300767static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300768{
David Härdemand8b4b582010-10-29 16:08:23 -0300769 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300770 int i, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300771 int cmdcount = 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300772 unsigned char *cmdbuf; /* MCE command buffer */
773 long signal_duration = 0; /* Singnal length in us */
774 struct timeval start_time, end_time;
775
776 do_gettimeofday(&start_time);
777
David Härdeman5588dc22011-04-28 12:13:58 -0300778 cmdbuf = kzalloc(sizeof(unsigned) * MCE_CMDBUF_SIZE, GFP_KERNEL);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300779 if (!cmdbuf)
780 return -ENOMEM;
781
782 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300783 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
784 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300785 cmdbuf[cmdcount++] = ir->tx_mask;
786
787 /* Generate mce packet data */
788 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
789 signal_duration += txbuf[i];
790 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
791
792 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
793
794 /* Insert mce packet header every 4th entry */
795 if ((cmdcount < MCE_CMDBUF_SIZE) &&
796 (cmdcount - MCE_TX_HEADER_LENGTH) %
797 MCE_CODE_LENGTH == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300798 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300799
800 /* Insert mce packet data */
801 if (cmdcount < MCE_CMDBUF_SIZE)
802 cmdbuf[cmdcount++] =
803 (txbuf[i] < MCE_PULSE_BIT ?
804 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
805 (i & 1 ? 0x00 : MCE_PULSE_BIT);
806 else {
807 ret = -EINVAL;
808 goto out;
809 }
810
811 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
812 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
813 }
814
815 /* Fix packet length in last header */
816 cmdbuf[cmdcount - (cmdcount - MCE_TX_HEADER_LENGTH) % MCE_CODE_LENGTH] =
Jarod Wilson4a883912010-10-22 14:42:54 -0300817 MCE_COMMAND_IRDATA + (cmdcount - MCE_TX_HEADER_LENGTH) %
818 MCE_CODE_LENGTH - 1;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300819
820 /* Check if we have room for the empty packet at the end */
821 if (cmdcount >= MCE_CMDBUF_SIZE) {
822 ret = -EINVAL;
823 goto out;
824 }
825
826 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300827 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300828
829 /* Transmit the command to the mce device */
830 mce_async_out(ir, cmdbuf, cmdcount);
831
832 /*
833 * The lircd gap calculation expects the write function to
834 * wait the time it takes for the ircommand to be sent before
835 * it returns.
836 */
837 do_gettimeofday(&end_time);
838 signal_duration -= (end_time.tv_usec - start_time.tv_usec) +
839 (end_time.tv_sec - start_time.tv_sec) * 1000000;
840
841 /* delay with the closest number of ticks */
842 set_current_state(TASK_INTERRUPTIBLE);
843 schedule_timeout(usecs_to_jiffies(signal_duration));
844
845out:
846 kfree(cmdbuf);
David Härdeman5588dc22011-04-28 12:13:58 -0300847 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300848}
849
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300850/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300851static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300852{
David Härdemand8b4b582010-10-29 16:08:23 -0300853 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300854
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300855 if (ir->flags.tx_mask_normal)
856 ir->tx_mask = mask;
857 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300858 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
859 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300860
861 return 0;
862}
863
Jarod Wilsone23fb962010-06-16 17:55:52 -0300864/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300865static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300866{
David Härdemand8b4b582010-10-29 16:08:23 -0300867 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300868 int clk = 10000000;
869 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300870 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
871 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300872
873 /* Carrier has changed */
874 if (ir->carrier != carrier) {
875
876 if (carrier == 0) {
877 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300878 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300879 cmdbuf[3] = MCE_IRDATA_TRAILER;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300880 mce_dbg(ir->dev, "%s: disabling carrier "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300881 "modulation\n", __func__);
882 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
883 return carrier;
884 }
885
886 for (prescaler = 0; prescaler < 4; ++prescaler) {
887 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300888 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300889 ir->carrier = carrier;
890 cmdbuf[2] = prescaler;
891 cmdbuf[3] = divisor;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300892 mce_dbg(ir->dev, "%s: requesting %u HZ "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300893 "carrier\n", __func__, carrier);
894
895 /* Transmit new carrier to mce device */
896 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
897 return carrier;
898 }
899 }
900
901 return -EINVAL;
902
903 }
904
905 return carrier;
906}
907
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300908/*
909 * We don't do anything but print debug spew for many of the command bits
910 * we receive from the hardware, but some of them are useful information
911 * we want to store so that we can use them.
912 */
913static void mceusb_handle_command(struct mceusb_dev *ir, int index)
914{
915 u8 hi = ir->buf_in[index + 1] & 0xff;
916 u8 lo = ir->buf_in[index + 2] & 0xff;
917
918 switch (ir->buf_in[index]) {
Jarod Wilsona411e832011-07-18 16:54:26 -0300919 /* the one and only 5-byte return value command */
920 case MCE_RSP_GETPORTSTATUS:
921 if ((ir->buf_in[index + 4] & 0xff) == 0x00)
922 ir->txports_cabled |= 1 << hi;
923 break;
924
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300925 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300926 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300927 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300928 break;
Jarod Wilsona411e832011-07-18 16:54:26 -0300929 case MCE_RSP_EQIRNUMPORTS:
930 ir->num_txports = hi;
931 ir->num_rxports = lo;
932 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300933
934 /* 1-byte return value commands */
Jarod Wilsonab1072e2011-07-18 16:54:25 -0300935 case MCE_RSP_EQEMVER:
936 ir->emver = hi;
937 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300938 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300939 ir->tx_mask = hi;
940 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300941 case MCE_RSP_EQIRRXPORTEN:
942 ir->learning_enabled = ((hi & 0x02) == 0x02);
Jarod Wilsona411e832011-07-18 16:54:26 -0300943 ir->rxports_active = hi;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300944 break;
Jarod Wilson4840b782011-07-18 16:54:24 -0300945 case MCE_RSP_CMD_ILLEGAL:
946 ir->need_reset = true;
947 break;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300948 default:
949 break;
950 }
951}
952
Jarod Wilson66e89522010-06-01 17:32:08 -0300953static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
954{
Maxim Levitsky46519182010-10-16 19:56:28 -0300955 DEFINE_IR_RAW_EVENT(rawir);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300956 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -0300957
958 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
959 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300960 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300961
Jarod Wilson29b44942010-11-09 18:41:46 -0300962 /* if there's no data, just return now */
963 if (buf_len <= i)
964 return;
965
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300966 for (; i < buf_len; i++) {
967 switch (ir->parser_state) {
968 case SUBCMD:
969 ir->rem = mceusb_cmdsize(ir->cmd, ir->buf_in[i]);
Jarod Wilson36e9d262010-10-22 16:49:35 -0300970 mceusb_dev_printdata(ir, ir->buf_in, i - 1,
971 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300972 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300973 ir->parser_state = CMD_DATA;
974 break;
975 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -0300976 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -0300977 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -0300978 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
979 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300980 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -0300981
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300982 mce_dbg(ir->dev, "Storing %s with duration %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300983 rawir.pulse ? "pulse" : "space",
984 rawir.duration);
985
David Härdemand8b4b582010-10-29 16:08:23 -0300986 ir_raw_event_store_with_filter(ir->rc, &rawir);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300987 break;
988 case CMD_DATA:
989 ir->rem--;
990 break;
991 case CMD_HEADER:
992 /* decode mce packets of the form (84),AA,BB,CC,DD */
993 /* IR data packets can span USB messages - rem */
994 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300995 if ((ir->cmd == MCE_CMD_PORT_IR) ||
996 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -0300997 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300998 ir->parser_state = SUBCMD;
999 continue;
1000 }
1001 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
Jarod Wilson2ee95db2010-11-12 19:49:04 -03001002 mceusb_dev_printdata(ir, ir->buf_in,
1003 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -03001004 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001005 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -03001006 else
1007 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001008 break;
Jarod Wilson66e89522010-06-01 17:32:08 -03001009 }
1010
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -03001011 if (ir->parser_state != CMD_HEADER && !ir->rem)
1012 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -03001013 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001014 mce_dbg(ir->dev, "processed IR data, calling ir_raw_event_handle\n");
David Härdemand8b4b582010-10-29 16:08:23 -03001015 ir_raw_event_handle(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001016}
1017
Jarod Wilson66e89522010-06-01 17:32:08 -03001018static void mceusb_dev_recv(struct urb *urb, struct pt_regs *regs)
1019{
1020 struct mceusb_dev *ir;
1021 int buf_len;
1022
1023 if (!urb)
1024 return;
1025
1026 ir = urb->context;
1027 if (!ir) {
1028 usb_unlink_urb(urb);
1029 return;
1030 }
1031
1032 buf_len = urb->actual_length;
1033
Jarod Wilson66e89522010-06-01 17:32:08 -03001034 if (ir->send_flags == RECV_FLAG_IN_PROGRESS) {
1035 ir->send_flags = SEND_FLAG_COMPLETE;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001036 mce_dbg(ir->dev, "setup answer received %d bytes\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001037 buf_len);
1038 }
1039
1040 switch (urb->status) {
1041 /* success */
1042 case 0:
1043 mceusb_process_ir_data(ir, buf_len);
1044 break;
1045
1046 case -ECONNRESET:
1047 case -ENOENT:
1048 case -ESHUTDOWN:
1049 usb_unlink_urb(urb);
1050 return;
1051
1052 case -EPIPE:
1053 default:
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001054 mce_dbg(ir->dev, "Error: urb status = %d\n", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001055 break;
1056 }
1057
1058 usb_submit_urb(urb, GFP_ATOMIC);
1059}
1060
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001061static void mceusb_get_emulator_version(struct mceusb_dev *ir)
1062{
1063 /* If we get no reply or an illegal command reply, its ver 1, says MS */
1064 ir->emver = 1;
1065 mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER));
1066}
1067
Jarod Wilson66e89522010-06-01 17:32:08 -03001068static void mceusb_gen1_init(struct mceusb_dev *ir)
1069{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001070 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001071 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001072 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001073
1074 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1075 if (!data) {
1076 dev_err(dev, "%s: memory allocation failed!\n", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001077 return;
1078 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001079
1080 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001081 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001082 * on the receive control pipe and expect a certain value pair back
1083 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001084 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1085 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001086 data, USB_CTRL_MSG_SZ, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001087 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
1088 mce_dbg(dev, "%s - data[0] = %d, data[1] = %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001089 __func__, data[0], data[1]);
1090
1091 /* set feature: bit rate 38400 bps */
1092 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1093 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1094 0xc04e, 0x0000, NULL, 0, HZ * 3);
1095
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001096 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001097
1098 /* bRequest 4: set char length to 8 bits */
1099 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1100 4, USB_TYPE_VENDOR,
1101 0x0808, 0x0000, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001102 mce_dbg(dev, "%s - retB = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001103
1104 /* bRequest 2: set handshaking to use DTR/DSR */
1105 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1106 2, USB_TYPE_VENDOR,
1107 0x0000, 0x0100, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001108 mce_dbg(dev, "%s - retC = %d\n", __func__, ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001109
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001110 /* device resume */
1111 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001112
1113 /* get hw/sw revision? */
1114 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001115
Jarod Wilson657290b2010-06-16 17:10:05 -03001116 kfree(data);
Jarod Wilson66e89522010-06-01 17:32:08 -03001117};
1118
1119static void mceusb_gen2_init(struct mceusb_dev *ir)
1120{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001121 /* device resume */
1122 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001123
1124 /* get hw/sw revision? */
1125 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson66e89522010-06-01 17:32:08 -03001126
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001127 /* get wake version (protocol, key, address) */
1128 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1129
1130 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001131 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001132}
1133
Jarod Wilson22b07662010-07-08 12:38:57 -03001134static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001135{
Jarod Wilsona411e832011-07-18 16:54:26 -03001136 int i;
1137 unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS,
1138 MCE_CMD_GETPORTSTATUS, 0x00 };
1139
1140 /* defaults, if the hardware doesn't support querying */
1141 ir->num_txports = 2;
1142 ir->num_rxports = 2;
1143
1144 /* get number of tx and rx ports */
1145 mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS));
1146
Jarod Wilson66e89522010-06-01 17:32:08 -03001147 /* get the carrier and frequency */
1148 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001149
Jarod Wilsona411e832011-07-18 16:54:26 -03001150 if (ir->num_txports && !ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001151 /* get the transmitter bitmask */
1152 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001153
1154 /* get receiver timeout value */
1155 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001156
1157 /* get receiver sensor setting */
1158 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilsona411e832011-07-18 16:54:26 -03001159
1160 for (i = 0; i < ir->num_txports; i++) {
1161 cmdbuf[2] = i;
1162 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
1163 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001164}
1165
David Härdemand8b4b582010-10-29 16:08:23 -03001166static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001167{
Jarod Wilson66e89522010-06-01 17:32:08 -03001168 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001169 struct rc_dev *rc;
1170 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001171
David Härdemand8b4b582010-10-29 16:08:23 -03001172 rc = rc_allocate_device();
1173 if (!rc) {
1174 dev_err(dev, "remote dev allocation failed\n");
1175 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001176 }
1177
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001178 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001179 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001180 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001181 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001182 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1183 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1184
Jarod Wilson66e89522010-06-01 17:32:08 -03001185 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001186
David Härdemand8b4b582010-10-29 16:08:23 -03001187 rc->input_name = ir->name;
1188 rc->input_phys = ir->phys;
1189 usb_to_input_id(ir->usbdev, &rc->input_id);
1190 rc->dev.parent = dev;
1191 rc->priv = ir;
1192 rc->driver_type = RC_DRIVER_IR_RAW;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -03001193 rc->allowed_protos = RC_TYPE_ALL;
Rafi Rubin9824ae42011-07-03 17:13:53 -03001194 rc->timeout = MS_TO_NS(100);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001195 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001196 rc->s_tx_mask = mceusb_set_tx_mask;
1197 rc->s_tx_carrier = mceusb_set_tx_carrier;
1198 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001199 }
David Härdemand8b4b582010-10-29 16:08:23 -03001200 rc->driver_name = DRIVER_NAME;
1201 rc->map_name = mceusb_model[ir->model].rc_map ?
1202 mceusb_model[ir->model].rc_map : RC_MAP_RC6_MCE;
Jarod Wilson66e89522010-06-01 17:32:08 -03001203
David Härdemand8b4b582010-10-29 16:08:23 -03001204 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001205 if (ret < 0) {
David Härdemand8b4b582010-10-29 16:08:23 -03001206 dev_err(dev, "remote dev registration failed\n");
1207 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001208 }
1209
David Härdemand8b4b582010-10-29 16:08:23 -03001210 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001211
David Härdemand8b4b582010-10-29 16:08:23 -03001212out:
1213 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001214 return NULL;
1215}
1216
1217static int __devinit mceusb_dev_probe(struct usb_interface *intf,
1218 const struct usb_device_id *id)
1219{
1220 struct usb_device *dev = interface_to_usbdev(intf);
1221 struct usb_host_interface *idesc;
1222 struct usb_endpoint_descriptor *ep = NULL;
1223 struct usb_endpoint_descriptor *ep_in = NULL;
1224 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001225 struct mceusb_dev *ir = NULL;
Jarod Wilsond732a722010-06-16 17:10:46 -03001226 int pipe, maxp, i;
Jarod Wilson66e89522010-06-01 17:32:08 -03001227 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001228 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001229 bool is_gen3;
1230 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001231 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001232 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001233
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001234 mce_dbg(&intf->dev, "%s called\n", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001235
Jarod Wilson66e89522010-06-01 17:32:08 -03001236 idesc = intf->cur_altsetting;
1237
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001238 is_gen3 = mceusb_model[model].mce_gen3;
1239 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001240 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001241 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001242
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001243 /* There are multi-function devices with non-IR interfaces */
1244 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1245 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001246
1247 /* step through the endpoints to find first bulk in and out endpoint */
1248 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1249 ep = &idesc->endpoint[i].desc;
1250
1251 if ((ep_in == NULL)
1252 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1253 == USB_DIR_IN)
1254 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1255 == USB_ENDPOINT_XFER_BULK)
1256 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1257 == USB_ENDPOINT_XFER_INT))) {
1258
Jarod Wilson66e89522010-06-01 17:32:08 -03001259 ep_in = ep;
1260 ep_in->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001261 ep_in->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001262 mce_dbg(&intf->dev, "acceptable inbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001263 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001264 }
1265
1266 if ((ep_out == NULL)
1267 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1268 == USB_DIR_OUT)
1269 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1270 == USB_ENDPOINT_XFER_BULK)
1271 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1272 == USB_ENDPOINT_XFER_INT))) {
1273
Jarod Wilson66e89522010-06-01 17:32:08 -03001274 ep_out = ep;
1275 ep_out->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001276 ep_out->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001277 mce_dbg(&intf->dev, "acceptable outbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001278 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001279 }
1280 }
1281 if (ep_in == NULL) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001282 mce_dbg(&intf->dev, "inbound and/or endpoint not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001283 return -ENODEV;
1284 }
1285
1286 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1287 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1288
1289 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1290 if (!ir)
1291 goto mem_alloc_fail;
1292
1293 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1294 if (!ir->buf_in)
1295 goto buf_in_alloc_fail;
1296
1297 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1298 if (!ir->urb_in)
1299 goto urb_in_alloc_fail;
1300
1301 ir->usbdev = dev;
1302 ir->dev = &intf->dev;
1303 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001304 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001305 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001306 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001307 ir->model = model;
1308
Jarod Wilson66e89522010-06-01 17:32:08 -03001309 /* Saving usb interface data for use by the transmitter routine */
1310 ir->usb_ep_in = ep_in;
1311 ir->usb_ep_out = ep_out;
1312
1313 if (dev->descriptor.iManufacturer
1314 && usb_string(dev, dev->descriptor.iManufacturer,
1315 buf, sizeof(buf)) > 0)
1316 strlcpy(name, buf, sizeof(name));
1317 if (dev->descriptor.iProduct
1318 && usb_string(dev, dev->descriptor.iProduct,
1319 buf, sizeof(buf)) > 0)
1320 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1321 " %s", buf);
1322
David Härdemand8b4b582010-10-29 16:08:23 -03001323 ir->rc = mceusb_init_rc_dev(ir);
1324 if (!ir->rc)
1325 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001326
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001327 /* wire up inbound data handler */
Jarod Wilson66e89522010-06-01 17:32:08 -03001328 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in,
1329 maxp, (usb_complete_t) mceusb_dev_recv, ir, ep_in->bInterval);
1330 ir->urb_in->transfer_dma = ir->dma_in;
1331 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1332
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001333 /* flush buffers on the device */
1334 mce_dbg(&intf->dev, "Flushing receive buffers\n");
1335 mce_flush_rx_buffer(ir, maxp);
1336
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001337 /* figure out which firmware/emulator version this hardware has */
1338 mceusb_get_emulator_version(ir);
1339
Jarod Wilson66e89522010-06-01 17:32:08 -03001340 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001341 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001342 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001343 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001344 mceusb_gen2_init(ir);
1345
Jarod Wilson22b07662010-07-08 12:38:57 -03001346 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001347
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001348 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001349 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001350
1351 usb_set_intfdata(intf, ir);
1352
Jarod Wilsonfa334892011-07-18 16:54:23 -03001353 /* enable wake via this device */
1354 device_set_wakeup_capable(ir->dev, true);
1355 device_set_wakeup_enable(ir->dev, true);
1356
Jarod Wilsonab1072e2011-07-18 16:54:25 -03001357 dev_info(&intf->dev, "Registered %s with mce emulator interface "
1358 "version %x\n", name, ir->emver);
Jarod Wilsona411e832011-07-18 16:54:26 -03001359 dev_info(&intf->dev, "%x tx ports (0x%x cabled) and "
1360 "%x rx sensors (0x%x active)\n",
1361 ir->num_txports, ir->txports_cabled,
1362 ir->num_rxports, ir->rxports_active);
Jarod Wilson66e89522010-06-01 17:32:08 -03001363
1364 return 0;
1365
1366 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001367rc_dev_fail:
Jarod Wilson66e89522010-06-01 17:32:08 -03001368 usb_free_urb(ir->urb_in);
1369urb_in_alloc_fail:
1370 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1371buf_in_alloc_fail:
1372 kfree(ir);
1373mem_alloc_fail:
1374 dev_err(&intf->dev, "%s: device setup failed!\n", __func__);
1375
1376 return -ENOMEM;
1377}
1378
1379
1380static void __devexit mceusb_dev_disconnect(struct usb_interface *intf)
1381{
1382 struct usb_device *dev = interface_to_usbdev(intf);
1383 struct mceusb_dev *ir = usb_get_intfdata(intf);
1384
1385 usb_set_intfdata(intf, NULL);
1386
1387 if (!ir)
1388 return;
1389
1390 ir->usbdev = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -03001391 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001392 usb_kill_urb(ir->urb_in);
1393 usb_free_urb(ir->urb_in);
1394 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
1395
1396 kfree(ir);
1397}
1398
1399static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1400{
1401 struct mceusb_dev *ir = usb_get_intfdata(intf);
1402 dev_info(ir->dev, "suspend\n");
1403 usb_kill_urb(ir->urb_in);
1404 return 0;
1405}
1406
1407static int mceusb_dev_resume(struct usb_interface *intf)
1408{
1409 struct mceusb_dev *ir = usb_get_intfdata(intf);
1410 dev_info(ir->dev, "resume\n");
1411 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1412 return -EIO;
1413 return 0;
1414}
1415
1416static struct usb_driver mceusb_dev_driver = {
1417 .name = DRIVER_NAME,
1418 .probe = mceusb_dev_probe,
1419 .disconnect = mceusb_dev_disconnect,
1420 .suspend = mceusb_dev_suspend,
1421 .resume = mceusb_dev_resume,
1422 .reset_resume = mceusb_dev_resume,
1423 .id_table = mceusb_dev_table
1424};
1425
1426static int __init mceusb_dev_init(void)
1427{
1428 int ret;
1429
1430 ret = usb_register(&mceusb_dev_driver);
1431 if (ret < 0)
1432 printk(KERN_ERR DRIVER_NAME
1433 ": usb register failed, result = %d\n", ret);
1434
1435 return ret;
1436}
1437
1438static void __exit mceusb_dev_exit(void)
1439{
1440 usb_deregister(&mceusb_dev_driver);
1441}
1442
1443module_init(mceusb_dev_init);
1444module_exit(mceusb_dev_exit);
1445
1446MODULE_DESCRIPTION(DRIVER_DESC);
1447MODULE_AUTHOR(DRIVER_AUTHOR);
1448MODULE_LICENSE("GPL");
1449MODULE_DEVICE_TABLE(usb, mceusb_dev_table);
1450
1451module_param(debug, bool, S_IRUGO | S_IWUSR);
1452MODULE_PARM_DESC(debug, "Debug enabled or not");