blob: eee28a57e2b431defa5378e4f06dff7fbb996b3a [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>
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -030040#include <media/rc-core.h>
Jarod Wilson66e89522010-06-01 17:32:08 -030041
42#define DRIVER_VERSION "1.91"
43#define DRIVER_AUTHOR "Jarod Wilson <jarod@wilsonet.com>"
44#define DRIVER_DESC "Windows Media Center Ed. eHome Infrared Transceiver " \
45 "device driver"
46#define DRIVER_NAME "mceusb"
47
Jarod Wilson4a883912010-10-22 14:42:54 -030048#define USB_BUFLEN 32 /* USB reception buffer length */
49#define USB_CTRL_MSG_SZ 2 /* Size of usb ctrl msg on gen1 hw */
50#define MCE_G1_INIT_MSGS 40 /* Init messages on gen1 hw to throw out */
Jarod Wilson66e89522010-06-01 17:32:08 -030051
52/* MCE constants */
Jarod Wilson4a883912010-10-22 14:42:54 -030053#define MCE_CMDBUF_SIZE 384 /* MCE Command buffer length */
54#define MCE_TIME_UNIT 50 /* Approx 50us resolution */
55#define MCE_CODE_LENGTH 5 /* Normal length of packet (with header) */
56#define MCE_PACKET_SIZE 4 /* Normal length of packet (without header) */
57#define MCE_IRDATA_HEADER 0x84 /* Actual header format is 0x80 + num_bytes */
58#define MCE_IRDATA_TRAILER 0x80 /* End of IR data */
59#define MCE_TX_HEADER_LENGTH 3 /* # of bytes in the initializing tx header */
60#define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */
61#define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */
62#define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */
63#define MCE_PULSE_MASK 0x7f /* Pulse mask */
64#define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */
65
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030066/*
67 * The interface between the host and the IR hardware is command-response
68 * based. All commands and responses have a consistent format, where a lead
69 * byte always identifies the type of data following it. The lead byte has
70 * a port value in the 3 highest bits and a length value in the 5 lowest
71 * bits.
72 *
73 * The length field is overloaded, with a value of 11111 indicating that the
74 * following byte is a command or response code, and the length of the entire
75 * message is determined by the code. If the length field is not 11111, then
76 * it specifies the number of bytes of port data that follow.
77 */
78#define MCE_CMD 0x1f
79#define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */
80#define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */
81#define MCE_PORT_SER 0x6 /* 0xc0 thru 0xdf flush & 0x1f bytes */
82#define MCE_PORT_MASK 0xe0 /* Mask out command bits */
Jarod Wilson4a883912010-10-22 14:42:54 -030083
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -030084/* Command port headers */
85#define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */
86#define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */
87
88/* Commands that set device state (2-4 bytes in length) */
89#define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */
90#define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */
91#define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */
92#define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */
93#define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */
94#define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */
95#define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */
96
97/* Commands that query device state (all 2 bytes, unless noted) */
98#define MCE_CMD_GETIRCFS 0x07 /* Get carrier */
99#define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */
100#define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */
101#define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */
102#define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */
103#define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */
104#define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */
105#define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */
106#define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */
107#define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */
108#define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */
109
110/* Misc commands */
111#define MCE_CMD_NOP 0xff /* No operation */
112
113/* Responses to commands (non-error cases) */
114#define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */
115#define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */
116#define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */
117#define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */
118#define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */
119#define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */
120#define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */
121#define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */
122#define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */
123#define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */
124#define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */
125#define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */
126#define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */
127
128/* Responses to error cases, must send MCE_CMD_RESUME to clear them */
129#define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */
130#define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */
131
132/* Misc commands/responses not defined in the MCE remote/transceiver spec */
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300133#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -0300134#define MCE_CMD_PING 0x03 /* Ping device */
135#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
136#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300137#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
138#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
139#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
Jarod Wilson4a883912010-10-22 14:42:54 -0300140#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
141#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
Jarod Wilson4a883912010-10-22 14:42:54 -0300142#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
143#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300144#define MCE_CMD_NULL 0x00 /* These show up various places... */
Jarod Wilson66e89522010-06-01 17:32:08 -0300145
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300146/* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR,
147 * then we're looking at a raw IR data sample */
148#define MCE_COMMAND_IRDATA 0x80
149#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
Jarod Wilson66e89522010-06-01 17:32:08 -0300150
151/* module parameters */
152#ifdef CONFIG_USB_DEBUG
153static int debug = 1;
154#else
155static int debug;
156#endif
157
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300158#define mce_dbg(dev, fmt, ...) \
159 do { \
160 if (debug) \
161 dev_info(dev, fmt, ## __VA_ARGS__); \
162 } while (0)
163
Jarod Wilson66e89522010-06-01 17:32:08 -0300164/* general constants */
165#define SEND_FLAG_IN_PROGRESS 1
166#define SEND_FLAG_COMPLETE 2
167#define RECV_FLAG_IN_PROGRESS 3
168#define RECV_FLAG_COMPLETE 4
169
170#define MCEUSB_RX 1
171#define MCEUSB_TX 2
172
173#define VENDOR_PHILIPS 0x0471
174#define VENDOR_SMK 0x0609
175#define VENDOR_TATUNG 0x1460
176#define VENDOR_GATEWAY 0x107b
177#define VENDOR_SHUTTLE 0x1308
178#define VENDOR_SHUTTLE2 0x051c
179#define VENDOR_MITSUMI 0x03ee
180#define VENDOR_TOPSEED 0x1784
181#define VENDOR_RICAVISION 0x179d
182#define VENDOR_ITRON 0x195d
183#define VENDOR_FIC 0x1509
184#define VENDOR_LG 0x043e
185#define VENDOR_MICROSOFT 0x045e
186#define VENDOR_FORMOSA 0x147a
187#define VENDOR_FINTEK 0x1934
188#define VENDOR_PINNACLE 0x2304
189#define VENDOR_ECS 0x1019
190#define VENDOR_WISTRON 0x0fb8
191#define VENDOR_COMPRO 0x185b
192#define VENDOR_NORTHSTAR 0x04eb
193#define VENDOR_REALTEK 0x0bda
194#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300195#define VENDOR_CONEXANT 0x0572
Jarod Wilson66e89522010-06-01 17:32:08 -0300196
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300197enum mceusb_model_type {
198 MCE_GEN2 = 0, /* Most boards */
199 MCE_GEN1,
200 MCE_GEN3,
201 MCE_GEN2_TX_INV,
202 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300203 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300204 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300205 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300206 MCE_GEN2_NO_TX,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300207};
208
209struct mceusb_model {
210 u32 mce_gen1:1;
211 u32 mce_gen2:1;
212 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300213 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300214 u32 no_tx:1;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300215
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300216 int ir_intfnum;
217
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300218 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300219 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300220};
221
222static const struct mceusb_model mceusb_model[] = {
223 [MCE_GEN1] = {
224 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300225 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300226 },
227 [MCE_GEN2] = {
228 .mce_gen2 = 1,
229 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300230 [MCE_GEN2_NO_TX] = {
231 .mce_gen2 = 1,
232 .no_tx = 1,
233 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300234 [MCE_GEN2_TX_INV] = {
235 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300236 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300237 },
238 [MCE_GEN3] = {
239 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300240 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300241 },
242 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300243 /*
244 * In fact, the EVK is shipped without
245 * remotes, but we should have something handy,
246 * to allow testing it
247 */
Mauro Carvalho Chehab15195d32011-01-24 12:18:47 -0300248 .rc_map = RC_MAP_HAUPPAUGE,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300249 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
250 },
251 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300252 .no_tx = 1, /* tx isn't wired up at all */
253 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300254 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300255 [MULTIFUNCTION] = {
256 .mce_gen2 = 1,
257 .ir_intfnum = 2,
258 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300259 [TIVO_KIT] = {
260 .mce_gen2 = 1,
261 .rc_map = RC_MAP_TIVO,
262 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300263};
264
Jarod Wilson66e89522010-06-01 17:32:08 -0300265static struct usb_device_id mceusb_dev_table[] = {
266 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300267 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
268 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300269 /* Philips Infrared Transceiver - Sahara branded */
270 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
271 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300272 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
273 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300274 /* Philips SRM5100 */
275 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
276 /* Philips Infrared Transceiver - Omaura */
277 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
278 /* Philips Infrared Transceiver - Spinel plus */
279 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
280 /* Philips eHome Infrared Transceiver */
281 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300282 /* Philips/Spinel plus IR transceiver for ASUS */
283 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
284 /* Philips/Spinel plus IR transceiver for ASUS */
285 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300286 /* Philips IR transceiver (Dell branded) */
287 { USB_DEVICE(VENDOR_PHILIPS, 0x2093) },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300288 /* Realtek MCE IR Receiver and card reader */
289 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
290 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300291 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300292 { USB_DEVICE(VENDOR_SMK, 0x031d),
293 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300294 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300295 { USB_DEVICE(VENDOR_SMK, 0x0322),
296 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300297 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300298 { USB_DEVICE(VENDOR_SMK, 0x0334),
299 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300300 /* SMK eHome Infrared Transceiver */
301 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300302 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
303 { USB_DEVICE(VENDOR_SMK, 0x0353),
304 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300305 /* Tatung eHome Infrared Transceiver */
306 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
307 /* Shuttle eHome Infrared Transceiver */
308 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
309 /* Shuttle eHome Infrared Transceiver */
310 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
311 /* Gateway eHome Infrared Transceiver */
312 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
313 /* Mitsumi */
314 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
315 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300316 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
317 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300318 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300319 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
320 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300321 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300322 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
323 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300324 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300325 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
326 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300327 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300328 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
329 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300330 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300331 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300332 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300333 /* Ricavision internal Infrared Transceiver */
334 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
335 /* Itron ione Libra Q-11 */
336 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
337 /* FIC eHome Infrared Transceiver */
338 { USB_DEVICE(VENDOR_FIC, 0x9242) },
339 /* LG eHome Infrared Transceiver */
340 { USB_DEVICE(VENDOR_LG, 0x9803) },
341 /* Microsoft MCE Infrared Transceiver */
342 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
343 /* Formosa eHome Infrared Transceiver */
344 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
345 /* Formosa21 / eHome Infrared Receiver */
346 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
347 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300348 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
349 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300350 /* Formosa Industrial Computing / Beanbag Emulation Device */
351 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
352 /* Formosa21 / eHome Infrared Receiver */
353 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
354 /* Formosa Industrial Computing AIM IR605/A */
355 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
356 /* Formosa Industrial Computing */
357 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300358 /* Fintek eHome Infrared Transceiver (HP branded) */
359 { USB_DEVICE(VENDOR_FINTEK, 0x5168) },
Jarod Wilson66e89522010-06-01 17:32:08 -0300360 /* Fintek eHome Infrared Transceiver */
361 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
362 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
363 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
364 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300365 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
366 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300367 /* Elitegroup Computer Systems IR */
368 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
369 /* Wistron Corp. eHome Infrared Receiver */
370 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
371 /* Compro K100 */
372 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
373 /* Compro K100 v2 */
374 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
375 /* Northstar Systems, Inc. eHome Infrared Transceiver */
376 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
377 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300378 { USB_DEVICE(VENDOR_TIVO, 0x2000),
379 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300380 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300381 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
382 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300383 /* Conexant Hybrid TV RDU253S Polaris */
384 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
385 .driver_info = CX_HYBRID_TV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300386 /* Terminating entry */
387 { }
388};
389
Jarod Wilson66e89522010-06-01 17:32:08 -0300390/* data structure for each usb transceiver */
391struct mceusb_dev {
392 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300393 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300394
395 /* optional features we can enable */
396 bool carrier_report_enabled;
397 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300398
399 /* core device bits */
400 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300401
402 /* usb */
403 struct usb_device *usbdev;
404 struct urb *urb_in;
405 struct usb_endpoint_descriptor *usb_ep_in;
406 struct usb_endpoint_descriptor *usb_ep_out;
407
408 /* buffers and dma */
409 unsigned char *buf_in;
410 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300411 dma_addr_t dma_in;
412 dma_addr_t dma_out;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300413
414 enum {
415 CMD_HEADER = 0,
416 SUBCMD,
417 CMD_DATA,
418 PARSE_IRDATA,
419 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300420
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300421 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300422
423 struct {
424 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300425 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300426 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300427 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300428 } flags;
429
Jarod Wilsone23fb962010-06-16 17:55:52 -0300430 /* transmit support */
Jarod Wilson66e89522010-06-01 17:32:08 -0300431 int send_flags;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300432 u32 carrier;
433 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300434
435 char name[128];
436 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300437 enum mceusb_model_type model;
Jarod Wilson66e89522010-06-01 17:32:08 -0300438};
439
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300440/* MCE Device Command Strings, generally a port and command pair */
441static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS,
442 MCE_CMD_RESUME};
443static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION};
444static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION};
445static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2};
446static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS};
447static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT};
448static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS};
449static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN};
Jarod Wilson66e89522010-06-01 17:32:08 -0300450/* sub in desired values in lower byte or bytes for full command */
451/* FIXME: make use of these for transmit.
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300452static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR,
453 MCE_CMD_SETIRCFS, 0x00, 0x00};
454static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00};
455static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR,
456 MCE_CMD_SETIRTIMEOUT, 0x00, 0x00};
457static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR,
458 MCE_RSP_EQIRRXPORTEN, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300459*/
460
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300461static int mceusb_cmdsize(u8 cmd, u8 subcmd)
462{
463 int datasize = 0;
464
465 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300466 case MCE_CMD_NULL:
467 if (subcmd == MCE_CMD_PORT_SYS)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300468 datasize = 1;
469 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300470 case MCE_CMD_PORT_SYS:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300471 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300472 case MCE_RSP_EQWAKEVERSION:
473 datasize = 4;
474 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300475 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300476 datasize = 2;
477 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300478 case MCE_RSP_EQWAKESUPPORT:
479 datasize = 1;
480 break;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300481 }
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300482 case MCE_CMD_PORT_IR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300483 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300484 case MCE_CMD_UNKNOWN:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300485 case MCE_RSP_EQIRCFS:
486 case MCE_RSP_EQIRTIMEOUT:
487 case MCE_RSP_EQIRRXCFCNT:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300488 datasize = 2;
489 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300490 case MCE_CMD_SIG_END:
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300491 case MCE_RSP_EQIRTXPORTS:
492 case MCE_RSP_EQIRRXPORTEN:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300493 datasize = 1;
494 break;
495 }
496 }
497 return datasize;
498}
499
Jarod Wilson66e89522010-06-01 17:32:08 -0300500static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300501 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300502{
503 char codes[USB_BUFLEN * 3 + 1];
504 char inout[9];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300505 u8 cmd, subcmd, data1, data2, data3, data4, data5;
Jarod Wilson66e89522010-06-01 17:32:08 -0300506 struct device *dev = ir->dev;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300507 int i, start, skip = 0;
508
509 if (!debug)
510 return;
Jarod Wilson66e89522010-06-01 17:32:08 -0300511
Jarod Wilson657290b2010-06-16 17:10:05 -0300512 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300513 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300514 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300515
Jarod Wilson36e9d262010-10-22 16:49:35 -0300516 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300517 return;
518
519 for (i = 0; i < len && i < USB_BUFLEN; i++)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300520 snprintf(codes + i * 3, 4, "%02x ", buf[i + offset] & 0xff);
Jarod Wilson66e89522010-06-01 17:32:08 -0300521
Jarod Wilson36e9d262010-10-22 16:49:35 -0300522 dev_info(dev, "%sx data: %s(length=%d)\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300523 (out ? "t" : "r"), codes, len);
524
525 if (out)
526 strcpy(inout, "Request\0");
527 else
528 strcpy(inout, "Got\0");
529
Jarod Wilson36e9d262010-10-22 16:49:35 -0300530 start = offset + skip;
531 cmd = buf[start] & 0xff;
532 subcmd = buf[start + 1] & 0xff;
533 data1 = buf[start + 2] & 0xff;
534 data2 = buf[start + 3] & 0xff;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300535 data3 = buf[start + 4] & 0xff;
536 data4 = buf[start + 5] & 0xff;
537 data5 = buf[start + 6] & 0xff;
Jarod Wilson66e89522010-06-01 17:32:08 -0300538
539 switch (cmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300540 case MCE_CMD_NULL:
541 if ((subcmd == MCE_CMD_PORT_SYS) &&
542 (data1 == MCE_CMD_RESUME))
543 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300544 else
545 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
546 cmd, subcmd);
547 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300548 case MCE_CMD_PORT_SYS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300549 switch (subcmd) {
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300550 case MCE_RSP_EQEMVER:
551 if (!out)
552 dev_info(dev, "Emulator interface version %x\n",
553 data1);
554 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300555 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300556 if (len == 2)
557 dev_info(dev, "Get hw/sw rev?\n");
558 else
559 dev_info(dev, "hw/sw rev 0x%02x 0x%02x "
560 "0x%02x 0x%02x\n", data1, data2,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300561 buf[start + 4], buf[start + 5]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300562 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300563 case MCE_CMD_RESUME:
564 dev_info(dev, "Device resume requested\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300565 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300566 case MCE_RSP_CMD_ILLEGAL:
567 dev_info(dev, "Illegal PORT_SYS command\n");
Jarod Wilson66e89522010-06-01 17:32:08 -0300568 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300569 case MCE_RSP_EQWAKEVERSION:
570 if (!out)
571 dev_info(dev, "Wake version, proto: 0x%02x, "
572 "payload: 0x%02x, address: 0x%02x, "
573 "version: 0x%02x\n",
574 data1, data2, data3, data4);
575 break;
576 case MCE_RSP_GETPORTSTATUS:
577 if (!out)
578 /* We use data1 + 1 here, to match hw labels */
579 dev_info(dev, "TX port %d: blaster is%s connected\n",
580 data1 + 1, data4 ? " not" : "");
581 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300582 default:
583 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
584 cmd, subcmd);
585 break;
586 }
587 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300588 case MCE_CMD_PORT_IR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300589 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300590 case MCE_CMD_SIG_END:
591 dev_info(dev, "End of signal\n");
592 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300593 case MCE_CMD_PING:
Jarod Wilson66e89522010-06-01 17:32:08 -0300594 dev_info(dev, "Ping\n");
595 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300596 case MCE_CMD_UNKNOWN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300597 dev_info(dev, "Resp to 9f 05 of 0x%02x 0x%02x\n",
598 data1, data2);
599 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300600 case MCE_CMD_SETIRCFS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300601 dev_info(dev, "%s carrier mode and freq of "
602 "0x%02x 0x%02x\n", inout, data1, data2);
603 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300604 case MCE_CMD_GETIRCFS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300605 dev_info(dev, "Get carrier mode and freq\n");
606 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300607 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300608 dev_info(dev, "%s transmit blaster mask of 0x%02x\n",
609 inout, data1);
610 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300611 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300612 /* value is in units of 50us, so x*50/1000 ms */
Jarod Wilson66e89522010-06-01 17:32:08 -0300613 dev_info(dev, "%s receive timeout of %d ms\n",
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300614 inout,
615 ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000);
Jarod Wilson66e89522010-06-01 17:32:08 -0300616 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300617 case MCE_CMD_GETIRTIMEOUT:
Jarod Wilson66e89522010-06-01 17:32:08 -0300618 dev_info(dev, "Get receive timeout\n");
619 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300620 case MCE_CMD_GETIRTXPORTS:
Jarod Wilson66e89522010-06-01 17:32:08 -0300621 dev_info(dev, "Get transmit blaster mask\n");
622 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300623 case MCE_RSP_EQIRRXPORTEN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300624 dev_info(dev, "%s %s-range receive sensor in use\n",
625 inout, data1 == 0x02 ? "short" : "long");
626 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300627 case MCE_CMD_GETIRRXPORTEN:
628 /* aka MCE_RSP_EQIRRXCFCNT */
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300629 if (out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300630 dev_info(dev, "Get receive sensor\n");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300631 else if (ir->learning_enabled)
632 dev_info(dev, "RX pulse count: %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300633 ((data1 << 8) | data2));
634 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300635 case MCE_RSP_EQIRNUMPORTS:
636 if (out)
637 break;
638 dev_info(dev, "Num TX ports: %x, num RX ports: %x\n",
639 data1, data2);
Jarod Wilson66e89522010-06-01 17:32:08 -0300640 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300641 case MCE_RSP_CMD_ILLEGAL:
642 dev_info(dev, "Illegal PORT_IR command\n");
643 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300644 default:
645 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
646 cmd, subcmd);
647 break;
648 }
649 break;
650 default:
651 break;
652 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300653
654 if (cmd == MCE_IRDATA_TRAILER)
655 dev_info(dev, "End of raw IR data\n");
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300656 else if ((cmd != MCE_CMD_PORT_IR) &&
657 ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA))
Jarod Wilson36e9d262010-10-22 16:49:35 -0300658 dev_info(dev, "Raw IR data, %d pulse/space samples\n", ir->rem);
Jarod Wilson66e89522010-06-01 17:32:08 -0300659}
660
Jarod Wilson7c294402010-08-02 18:21:06 -0300661static void mce_async_callback(struct urb *urb, struct pt_regs *regs)
Jarod Wilson66e89522010-06-01 17:32:08 -0300662{
663 struct mceusb_dev *ir;
664 int len;
665
666 if (!urb)
667 return;
668
669 ir = urb->context;
670 if (ir) {
671 len = urb->actual_length;
672
Jarod Wilson36e9d262010-10-22 16:49:35 -0300673 mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true);
Jarod Wilson66e89522010-06-01 17:32:08 -0300674 }
675
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300676 /* the transfer buffer and urb were allocated in mce_request_packet */
677 kfree(urb->transfer_buffer);
678 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300679}
680
681/* request incoming or send outgoing usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300682static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
683 int size, int urb_type)
Jarod Wilson66e89522010-06-01 17:32:08 -0300684{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300685 int res, pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -0300686 struct urb *async_urb;
687 struct device *dev = ir->dev;
688 unsigned char *async_buf;
689
690 if (urb_type == MCEUSB_TX) {
691 async_urb = usb_alloc_urb(0, GFP_KERNEL);
692 if (unlikely(!async_urb)) {
693 dev_err(dev, "Error, couldn't allocate urb!\n");
694 return;
695 }
696
697 async_buf = kzalloc(size, GFP_KERNEL);
698 if (!async_buf) {
699 dev_err(dev, "Error, couldn't allocate buf!\n");
700 usb_free_urb(async_urb);
701 return;
702 }
703
704 /* outbound data */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300705 pipe = usb_sndintpipe(ir->usbdev,
706 ir->usb_ep_out->bEndpointAddress);
707 usb_fill_int_urb(async_urb, ir->usbdev, pipe,
Jarod Wilson7c294402010-08-02 18:21:06 -0300708 async_buf, size, (usb_complete_t)mce_async_callback,
Jarod Wilson51ea6292011-05-10 14:09:59 -0300709 ir, ir->usb_ep_out->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -0300710 memcpy(async_buf, data, size);
711
712 } else if (urb_type == MCEUSB_RX) {
713 /* standard request */
714 async_urb = ir->urb_in;
715 ir->send_flags = RECV_FLAG_IN_PROGRESS;
716
717 } else {
718 dev_err(dev, "Error! Unknown urb type %d\n", urb_type);
719 return;
720 }
721
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300722 mce_dbg(dev, "receive request called (size=%#x)\n", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300723
724 async_urb->transfer_buffer_length = size;
725 async_urb->dev = ir->usbdev;
726
727 res = usb_submit_urb(async_urb, GFP_ATOMIC);
728 if (res) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300729 mce_dbg(dev, "receive request FAILED! (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300730 return;
731 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300732 mce_dbg(dev, "receive request complete (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300733}
734
735static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
736{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300737 mce_request_packet(ir, data, size, MCEUSB_TX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300738}
739
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300740static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300741{
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300742 mce_request_packet(ir, NULL, size, MCEUSB_RX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300743}
744
Jarod Wilsone23fb962010-06-16 17:55:52 -0300745/* Send data out the IR blaster port(s) */
David Härdeman5588dc22011-04-28 12:13:58 -0300746static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300747{
David Härdemand8b4b582010-10-29 16:08:23 -0300748 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300749 int i, ret = 0;
David Härdeman5588dc22011-04-28 12:13:58 -0300750 int cmdcount = 0;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300751 unsigned char *cmdbuf; /* MCE command buffer */
752 long signal_duration = 0; /* Singnal length in us */
753 struct timeval start_time, end_time;
754
755 do_gettimeofday(&start_time);
756
David Härdeman5588dc22011-04-28 12:13:58 -0300757 cmdbuf = kzalloc(sizeof(unsigned) * MCE_CMDBUF_SIZE, GFP_KERNEL);
Jarod Wilsone23fb962010-06-16 17:55:52 -0300758 if (!cmdbuf)
759 return -ENOMEM;
760
761 /* MCE tx init header */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300762 cmdbuf[cmdcount++] = MCE_CMD_PORT_IR;
763 cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300764 cmdbuf[cmdcount++] = ir->tx_mask;
765
766 /* Generate mce packet data */
767 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
768 signal_duration += txbuf[i];
769 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
770
771 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
772
773 /* Insert mce packet header every 4th entry */
774 if ((cmdcount < MCE_CMDBUF_SIZE) &&
775 (cmdcount - MCE_TX_HEADER_LENGTH) %
776 MCE_CODE_LENGTH == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300777 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300778
779 /* Insert mce packet data */
780 if (cmdcount < MCE_CMDBUF_SIZE)
781 cmdbuf[cmdcount++] =
782 (txbuf[i] < MCE_PULSE_BIT ?
783 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
784 (i & 1 ? 0x00 : MCE_PULSE_BIT);
785 else {
786 ret = -EINVAL;
787 goto out;
788 }
789
790 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
791 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
792 }
793
794 /* Fix packet length in last header */
795 cmdbuf[cmdcount - (cmdcount - MCE_TX_HEADER_LENGTH) % MCE_CODE_LENGTH] =
Jarod Wilson4a883912010-10-22 14:42:54 -0300796 MCE_COMMAND_IRDATA + (cmdcount - MCE_TX_HEADER_LENGTH) %
797 MCE_CODE_LENGTH - 1;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300798
799 /* Check if we have room for the empty packet at the end */
800 if (cmdcount >= MCE_CMDBUF_SIZE) {
801 ret = -EINVAL;
802 goto out;
803 }
804
805 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300806 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300807
808 /* Transmit the command to the mce device */
809 mce_async_out(ir, cmdbuf, cmdcount);
810
811 /*
812 * The lircd gap calculation expects the write function to
813 * wait the time it takes for the ircommand to be sent before
814 * it returns.
815 */
816 do_gettimeofday(&end_time);
817 signal_duration -= (end_time.tv_usec - start_time.tv_usec) +
818 (end_time.tv_sec - start_time.tv_sec) * 1000000;
819
820 /* delay with the closest number of ticks */
821 set_current_state(TASK_INTERRUPTIBLE);
822 schedule_timeout(usecs_to_jiffies(signal_duration));
823
824out:
825 kfree(cmdbuf);
David Härdeman5588dc22011-04-28 12:13:58 -0300826 return ret ? ret : count;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300827}
828
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300829/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300830static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300831{
David Härdemand8b4b582010-10-29 16:08:23 -0300832 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300833
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300834 if (ir->flags.tx_mask_normal)
835 ir->tx_mask = mask;
836 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300837 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
838 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300839
840 return 0;
841}
842
Jarod Wilsone23fb962010-06-16 17:55:52 -0300843/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300844static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300845{
David Härdemand8b4b582010-10-29 16:08:23 -0300846 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300847 int clk = 10000000;
848 int prescaler = 0, divisor = 0;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300849 unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR,
850 MCE_CMD_SETIRCFS, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300851
852 /* Carrier has changed */
853 if (ir->carrier != carrier) {
854
855 if (carrier == 0) {
856 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300857 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300858 cmdbuf[3] = MCE_IRDATA_TRAILER;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300859 mce_dbg(ir->dev, "%s: disabling carrier "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300860 "modulation\n", __func__);
861 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
862 return carrier;
863 }
864
865 for (prescaler = 0; prescaler < 4; ++prescaler) {
866 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300867 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300868 ir->carrier = carrier;
869 cmdbuf[2] = prescaler;
870 cmdbuf[3] = divisor;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300871 mce_dbg(ir->dev, "%s: requesting %u HZ "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300872 "carrier\n", __func__, carrier);
873
874 /* Transmit new carrier to mce device */
875 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
876 return carrier;
877 }
878 }
879
880 return -EINVAL;
881
882 }
883
884 return carrier;
885}
886
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300887/*
888 * We don't do anything but print debug spew for many of the command bits
889 * we receive from the hardware, but some of them are useful information
890 * we want to store so that we can use them.
891 */
892static void mceusb_handle_command(struct mceusb_dev *ir, int index)
893{
894 u8 hi = ir->buf_in[index + 1] & 0xff;
895 u8 lo = ir->buf_in[index + 2] & 0xff;
896
897 switch (ir->buf_in[index]) {
898 /* 2-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300899 case MCE_RSP_EQIRTIMEOUT:
Rafi Rubinf3e456c2011-07-03 17:13:52 -0300900 ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300901 break;
902
903 /* 1-byte return value commands */
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300904 case MCE_RSP_EQIRTXPORTS:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300905 ir->tx_mask = hi;
906 break;
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300907 case MCE_RSP_EQIRRXPORTEN:
908 ir->learning_enabled = ((hi & 0x02) == 0x02);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300909 break;
910 default:
911 break;
912 }
913}
914
Jarod Wilson66e89522010-06-01 17:32:08 -0300915static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
916{
Maxim Levitsky46519182010-10-16 19:56:28 -0300917 DEFINE_IR_RAW_EVENT(rawir);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300918 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -0300919
920 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
921 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300922 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300923
Jarod Wilson29b44942010-11-09 18:41:46 -0300924 /* if there's no data, just return now */
925 if (buf_len <= i)
926 return;
927
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300928 for (; i < buf_len; i++) {
929 switch (ir->parser_state) {
930 case SUBCMD:
931 ir->rem = mceusb_cmdsize(ir->cmd, ir->buf_in[i]);
Jarod Wilson36e9d262010-10-22 16:49:35 -0300932 mceusb_dev_printdata(ir, ir->buf_in, i - 1,
933 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300934 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300935 ir->parser_state = CMD_DATA;
936 break;
937 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -0300938 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -0300939 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -0300940 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
941 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300942 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -0300943
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300944 mce_dbg(ir->dev, "Storing %s with duration %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300945 rawir.pulse ? "pulse" : "space",
946 rawir.duration);
947
David Härdemand8b4b582010-10-29 16:08:23 -0300948 ir_raw_event_store_with_filter(ir->rc, &rawir);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300949 break;
950 case CMD_DATA:
951 ir->rem--;
952 break;
953 case CMD_HEADER:
954 /* decode mce packets of the form (84),AA,BB,CC,DD */
955 /* IR data packets can span USB messages - rem */
956 ir->cmd = ir->buf_in[i];
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -0300957 if ((ir->cmd == MCE_CMD_PORT_IR) ||
958 ((ir->cmd & MCE_PORT_MASK) !=
Jarod Wilson4a883912010-10-22 14:42:54 -0300959 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300960 ir->parser_state = SUBCMD;
961 continue;
962 }
963 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300964 mceusb_dev_printdata(ir, ir->buf_in,
965 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300966 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300967 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -0300968 else
969 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300970 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300971 }
972
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300973 if (ir->parser_state != CMD_HEADER && !ir->rem)
974 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -0300975 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300976 mce_dbg(ir->dev, "processed IR data, calling ir_raw_event_handle\n");
David Härdemand8b4b582010-10-29 16:08:23 -0300977 ir_raw_event_handle(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -0300978}
979
Jarod Wilson66e89522010-06-01 17:32:08 -0300980static void mceusb_dev_recv(struct urb *urb, struct pt_regs *regs)
981{
982 struct mceusb_dev *ir;
983 int buf_len;
984
985 if (!urb)
986 return;
987
988 ir = urb->context;
989 if (!ir) {
990 usb_unlink_urb(urb);
991 return;
992 }
993
994 buf_len = urb->actual_length;
995
Jarod Wilson66e89522010-06-01 17:32:08 -0300996 if (ir->send_flags == RECV_FLAG_IN_PROGRESS) {
997 ir->send_flags = SEND_FLAG_COMPLETE;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300998 mce_dbg(ir->dev, "setup answer received %d bytes\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300999 buf_len);
1000 }
1001
1002 switch (urb->status) {
1003 /* success */
1004 case 0:
1005 mceusb_process_ir_data(ir, buf_len);
1006 break;
1007
1008 case -ECONNRESET:
1009 case -ENOENT:
1010 case -ESHUTDOWN:
1011 usb_unlink_urb(urb);
1012 return;
1013
1014 case -EPIPE:
1015 default:
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001016 mce_dbg(ir->dev, "Error: urb status = %d\n", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -03001017 break;
1018 }
1019
1020 usb_submit_urb(urb, GFP_ATOMIC);
1021}
1022
1023static void mceusb_gen1_init(struct mceusb_dev *ir)
1024{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -03001025 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001026 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001027 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -03001028
1029 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
1030 if (!data) {
1031 dev_err(dev, "%s: memory allocation failed!\n", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -03001032 return;
1033 }
Jarod Wilson66e89522010-06-01 17:32:08 -03001034
1035 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001036 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -03001037 * on the receive control pipe and expect a certain value pair back
1038 */
Jarod Wilson66e89522010-06-01 17:32:08 -03001039 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
1040 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -03001041 data, USB_CTRL_MSG_SZ, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001042 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
1043 mce_dbg(dev, "%s - data[0] = %d, data[1] = %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -03001044 __func__, data[0], data[1]);
1045
1046 /* set feature: bit rate 38400 bps */
1047 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1048 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
1049 0xc04e, 0x0000, NULL, 0, HZ * 3);
1050
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001051 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001052
1053 /* bRequest 4: set char length to 8 bits */
1054 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1055 4, USB_TYPE_VENDOR,
1056 0x0808, 0x0000, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001057 mce_dbg(dev, "%s - retB = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001058
1059 /* bRequest 2: set handshaking to use DTR/DSR */
1060 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1061 2, USB_TYPE_VENDOR,
1062 0x0000, 0x0100, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001063 mce_dbg(dev, "%s - retC = %d\n", __func__, ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001064
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001065 /* device resume */
1066 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson22b07662010-07-08 12:38:57 -03001067
1068 /* get hw/sw revision? */
1069 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001070
Jarod Wilson657290b2010-06-16 17:10:05 -03001071 kfree(data);
Jarod Wilson66e89522010-06-01 17:32:08 -03001072};
1073
1074static void mceusb_gen2_init(struct mceusb_dev *ir)
1075{
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001076 /* device resume */
1077 mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME));
Jarod Wilson66e89522010-06-01 17:32:08 -03001078
1079 /* get hw/sw revision? */
1080 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson66e89522010-06-01 17:32:08 -03001081
Jarod Wilsona6fbd3b2011-07-18 16:54:21 -03001082 /* get wake version (protocol, key, address) */
1083 mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION));
1084
1085 /* unknown what this one actually returns... */
Jarod Wilson22b07662010-07-08 12:38:57 -03001086 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001087}
1088
Jarod Wilson22b07662010-07-08 12:38:57 -03001089static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001090{
Jarod Wilson66e89522010-06-01 17:32:08 -03001091 /* get the carrier and frequency */
1092 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001093
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001094 if (!ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001095 /* get the transmitter bitmask */
1096 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001097
1098 /* get receiver timeout value */
1099 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001100
1101 /* get receiver sensor setting */
1102 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilson66e89522010-06-01 17:32:08 -03001103}
1104
David Härdemand8b4b582010-10-29 16:08:23 -03001105static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001106{
Jarod Wilson66e89522010-06-01 17:32:08 -03001107 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001108 struct rc_dev *rc;
1109 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001110
David Härdemand8b4b582010-10-29 16:08:23 -03001111 rc = rc_allocate_device();
1112 if (!rc) {
1113 dev_err(dev, "remote dev allocation failed\n");
1114 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001115 }
1116
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001117 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001118 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001119 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001120 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001121 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1122 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1123
Jarod Wilson66e89522010-06-01 17:32:08 -03001124 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001125
David Härdemand8b4b582010-10-29 16:08:23 -03001126 rc->input_name = ir->name;
1127 rc->input_phys = ir->phys;
1128 usb_to_input_id(ir->usbdev, &rc->input_id);
1129 rc->dev.parent = dev;
1130 rc->priv = ir;
1131 rc->driver_type = RC_DRIVER_IR_RAW;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -03001132 rc->allowed_protos = RC_TYPE_ALL;
Rafi Rubin9824ae42011-07-03 17:13:53 -03001133 rc->timeout = MS_TO_NS(100);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001134 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001135 rc->s_tx_mask = mceusb_set_tx_mask;
1136 rc->s_tx_carrier = mceusb_set_tx_carrier;
1137 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001138 }
David Härdemand8b4b582010-10-29 16:08:23 -03001139 rc->driver_name = DRIVER_NAME;
1140 rc->map_name = mceusb_model[ir->model].rc_map ?
1141 mceusb_model[ir->model].rc_map : RC_MAP_RC6_MCE;
Jarod Wilson66e89522010-06-01 17:32:08 -03001142
David Härdemand8b4b582010-10-29 16:08:23 -03001143 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001144 if (ret < 0) {
David Härdemand8b4b582010-10-29 16:08:23 -03001145 dev_err(dev, "remote dev registration failed\n");
1146 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001147 }
1148
David Härdemand8b4b582010-10-29 16:08:23 -03001149 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001150
David Härdemand8b4b582010-10-29 16:08:23 -03001151out:
1152 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001153 return NULL;
1154}
1155
1156static int __devinit mceusb_dev_probe(struct usb_interface *intf,
1157 const struct usb_device_id *id)
1158{
1159 struct usb_device *dev = interface_to_usbdev(intf);
1160 struct usb_host_interface *idesc;
1161 struct usb_endpoint_descriptor *ep = NULL;
1162 struct usb_endpoint_descriptor *ep_in = NULL;
1163 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001164 struct mceusb_dev *ir = NULL;
Jarod Wilsond732a722010-06-16 17:10:46 -03001165 int pipe, maxp, i;
Jarod Wilson66e89522010-06-01 17:32:08 -03001166 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001167 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001168 bool is_gen3;
1169 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001170 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001171 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001172
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001173 mce_dbg(&intf->dev, "%s called\n", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001174
Jarod Wilson66e89522010-06-01 17:32:08 -03001175 idesc = intf->cur_altsetting;
1176
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001177 is_gen3 = mceusb_model[model].mce_gen3;
1178 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001179 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001180 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001181
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001182 /* There are multi-function devices with non-IR interfaces */
1183 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1184 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001185
1186 /* step through the endpoints to find first bulk in and out endpoint */
1187 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1188 ep = &idesc->endpoint[i].desc;
1189
1190 if ((ep_in == NULL)
1191 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1192 == USB_DIR_IN)
1193 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1194 == USB_ENDPOINT_XFER_BULK)
1195 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1196 == USB_ENDPOINT_XFER_INT))) {
1197
Jarod Wilson66e89522010-06-01 17:32:08 -03001198 ep_in = ep;
1199 ep_in->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001200 ep_in->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001201 mce_dbg(&intf->dev, "acceptable inbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001202 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001203 }
1204
1205 if ((ep_out == NULL)
1206 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1207 == USB_DIR_OUT)
1208 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1209 == USB_ENDPOINT_XFER_BULK)
1210 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1211 == USB_ENDPOINT_XFER_INT))) {
1212
Jarod Wilson66e89522010-06-01 17:32:08 -03001213 ep_out = ep;
1214 ep_out->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001215 ep_out->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001216 mce_dbg(&intf->dev, "acceptable outbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001217 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001218 }
1219 }
1220 if (ep_in == NULL) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001221 mce_dbg(&intf->dev, "inbound and/or endpoint not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001222 return -ENODEV;
1223 }
1224
1225 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1226 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1227
1228 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1229 if (!ir)
1230 goto mem_alloc_fail;
1231
1232 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1233 if (!ir->buf_in)
1234 goto buf_in_alloc_fail;
1235
1236 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1237 if (!ir->urb_in)
1238 goto urb_in_alloc_fail;
1239
1240 ir->usbdev = dev;
1241 ir->dev = &intf->dev;
1242 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001243 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001244 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001245 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001246 ir->model = model;
1247
Jarod Wilson66e89522010-06-01 17:32:08 -03001248 /* Saving usb interface data for use by the transmitter routine */
1249 ir->usb_ep_in = ep_in;
1250 ir->usb_ep_out = ep_out;
1251
1252 if (dev->descriptor.iManufacturer
1253 && usb_string(dev, dev->descriptor.iManufacturer,
1254 buf, sizeof(buf)) > 0)
1255 strlcpy(name, buf, sizeof(name));
1256 if (dev->descriptor.iProduct
1257 && usb_string(dev, dev->descriptor.iProduct,
1258 buf, sizeof(buf)) > 0)
1259 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1260 " %s", buf);
1261
David Härdemand8b4b582010-10-29 16:08:23 -03001262 ir->rc = mceusb_init_rc_dev(ir);
1263 if (!ir->rc)
1264 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001265
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001266 /* wire up inbound data handler */
Jarod Wilson66e89522010-06-01 17:32:08 -03001267 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in,
1268 maxp, (usb_complete_t) mceusb_dev_recv, ir, ep_in->bInterval);
1269 ir->urb_in->transfer_dma = ir->dma_in;
1270 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1271
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001272 /* flush buffers on the device */
1273 mce_dbg(&intf->dev, "Flushing receive buffers\n");
1274 mce_flush_rx_buffer(ir, maxp);
1275
Jarod Wilson66e89522010-06-01 17:32:08 -03001276 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001277 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001278 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001279 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001280 mceusb_gen2_init(ir);
1281
Jarod Wilson22b07662010-07-08 12:38:57 -03001282 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001283
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001284 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001285 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001286
1287 usb_set_intfdata(intf, ir);
1288
1289 dev_info(&intf->dev, "Registered %s on usb%d:%d\n", name,
1290 dev->bus->busnum, dev->devnum);
1291
1292 return 0;
1293
1294 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001295rc_dev_fail:
Jarod Wilson66e89522010-06-01 17:32:08 -03001296 usb_free_urb(ir->urb_in);
1297urb_in_alloc_fail:
1298 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1299buf_in_alloc_fail:
1300 kfree(ir);
1301mem_alloc_fail:
1302 dev_err(&intf->dev, "%s: device setup failed!\n", __func__);
1303
1304 return -ENOMEM;
1305}
1306
1307
1308static void __devexit mceusb_dev_disconnect(struct usb_interface *intf)
1309{
1310 struct usb_device *dev = interface_to_usbdev(intf);
1311 struct mceusb_dev *ir = usb_get_intfdata(intf);
1312
1313 usb_set_intfdata(intf, NULL);
1314
1315 if (!ir)
1316 return;
1317
1318 ir->usbdev = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -03001319 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001320 usb_kill_urb(ir->urb_in);
1321 usb_free_urb(ir->urb_in);
1322 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
1323
1324 kfree(ir);
1325}
1326
1327static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1328{
1329 struct mceusb_dev *ir = usb_get_intfdata(intf);
1330 dev_info(ir->dev, "suspend\n");
1331 usb_kill_urb(ir->urb_in);
1332 return 0;
1333}
1334
1335static int mceusb_dev_resume(struct usb_interface *intf)
1336{
1337 struct mceusb_dev *ir = usb_get_intfdata(intf);
1338 dev_info(ir->dev, "resume\n");
1339 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1340 return -EIO;
1341 return 0;
1342}
1343
1344static struct usb_driver mceusb_dev_driver = {
1345 .name = DRIVER_NAME,
1346 .probe = mceusb_dev_probe,
1347 .disconnect = mceusb_dev_disconnect,
1348 .suspend = mceusb_dev_suspend,
1349 .resume = mceusb_dev_resume,
1350 .reset_resume = mceusb_dev_resume,
1351 .id_table = mceusb_dev_table
1352};
1353
1354static int __init mceusb_dev_init(void)
1355{
1356 int ret;
1357
1358 ret = usb_register(&mceusb_dev_driver);
1359 if (ret < 0)
1360 printk(KERN_ERR DRIVER_NAME
1361 ": usb register failed, result = %d\n", ret);
1362
1363 return ret;
1364}
1365
1366static void __exit mceusb_dev_exit(void)
1367{
1368 usb_deregister(&mceusb_dev_driver);
1369}
1370
1371module_init(mceusb_dev_init);
1372module_exit(mceusb_dev_exit);
1373
1374MODULE_DESCRIPTION(DRIVER_DESC);
1375MODULE_AUTHOR(DRIVER_AUTHOR);
1376MODULE_LICENSE("GPL");
1377MODULE_DEVICE_TABLE(usb, mceusb_dev_table);
1378
1379module_param(debug, bool, S_IRUGO | S_IWUSR);
1380MODULE_PARM_DESC(debug, "Debug enabled or not");