blob: 06dfe0957b5e1d26ae2d7f61c1c7154e8a47f24e [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
66#define MCE_HW_CMD_HEADER 0xff /* MCE hardware command header */
67#define MCE_COMMAND_HEADER 0x9f /* MCE command header */
68#define MCE_COMMAND_MASK 0xe0 /* Mask out command bits */
69#define MCE_COMMAND_NULL 0x00 /* These show up various places... */
70/* if buf[i] & MCE_COMMAND_MASK == 0x80 and buf[i] != MCE_COMMAND_HEADER,
71 * then we're looking at a raw IR data sample */
72#define MCE_COMMAND_IRDATA 0x80
73#define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */
74
75/* Sub-commands, which follow MCE_COMMAND_HEADER or MCE_HW_CMD_HEADER */
Jarod Wilson1cd50f22010-11-09 18:41:03 -030076#define MCE_CMD_SIG_END 0x01 /* End of signal */
Jarod Wilson4a883912010-10-22 14:42:54 -030077#define MCE_CMD_PING 0x03 /* Ping device */
78#define MCE_CMD_UNKNOWN 0x04 /* Unknown */
79#define MCE_CMD_UNKNOWN2 0x05 /* Unknown */
80#define MCE_CMD_S_CARRIER 0x06 /* Set TX carrier frequency */
81#define MCE_CMD_G_CARRIER 0x07 /* Get TX carrier frequency */
82#define MCE_CMD_S_TXMASK 0x08 /* Set TX port bitmask */
83#define MCE_CMD_UNKNOWN3 0x09 /* Unknown */
84#define MCE_CMD_UNKNOWN4 0x0a /* Unknown */
85#define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */
86#define MCE_CMD_S_TIMEOUT 0x0c /* Set RX timeout value */
87#define MCE_CMD_G_TIMEOUT 0x0d /* Get RX timeout value */
88#define MCE_CMD_UNKNOWN5 0x0e /* Unknown */
89#define MCE_CMD_UNKNOWN6 0x0f /* Unknown */
90#define MCE_CMD_G_RXPORTSTS 0x11 /* Get RX port status */
91#define MCE_CMD_G_TXMASK 0x13 /* Set TX port bitmask */
92#define MCE_CMD_S_RXSENSOR 0x14 /* Set RX sensor (std/learning) */
93#define MCE_CMD_G_RXSENSOR 0x15 /* Get RX sensor (std/learning) */
Jarod Wilson2ee95db2010-11-12 19:49:04 -030094#define MCE_RSP_PULSE_COUNT 0x15 /* RX pulse count (only if learning) */
Jarod Wilson4a883912010-10-22 14:42:54 -030095#define MCE_CMD_TX_PORTS 0x16 /* Get number of TX ports */
96#define MCE_CMD_G_WAKESRC 0x17 /* Get wake source */
97#define MCE_CMD_UNKNOWN7 0x18 /* Unknown */
98#define MCE_CMD_UNKNOWN8 0x19 /* Unknown */
99#define MCE_CMD_UNKNOWN9 0x1b /* Unknown */
100#define MCE_CMD_DEVICE_RESET 0xaa /* Reset the hardware */
101#define MCE_RSP_CMD_INVALID 0xfe /* Invalid command issued */
Jarod Wilson66e89522010-06-01 17:32:08 -0300102
103
104/* module parameters */
105#ifdef CONFIG_USB_DEBUG
106static int debug = 1;
107#else
108static int debug;
109#endif
110
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300111#define mce_dbg(dev, fmt, ...) \
112 do { \
113 if (debug) \
114 dev_info(dev, fmt, ## __VA_ARGS__); \
115 } while (0)
116
Jarod Wilson66e89522010-06-01 17:32:08 -0300117/* general constants */
118#define SEND_FLAG_IN_PROGRESS 1
119#define SEND_FLAG_COMPLETE 2
120#define RECV_FLAG_IN_PROGRESS 3
121#define RECV_FLAG_COMPLETE 4
122
123#define MCEUSB_RX 1
124#define MCEUSB_TX 2
125
126#define VENDOR_PHILIPS 0x0471
127#define VENDOR_SMK 0x0609
128#define VENDOR_TATUNG 0x1460
129#define VENDOR_GATEWAY 0x107b
130#define VENDOR_SHUTTLE 0x1308
131#define VENDOR_SHUTTLE2 0x051c
132#define VENDOR_MITSUMI 0x03ee
133#define VENDOR_TOPSEED 0x1784
134#define VENDOR_RICAVISION 0x179d
135#define VENDOR_ITRON 0x195d
136#define VENDOR_FIC 0x1509
137#define VENDOR_LG 0x043e
138#define VENDOR_MICROSOFT 0x045e
139#define VENDOR_FORMOSA 0x147a
140#define VENDOR_FINTEK 0x1934
141#define VENDOR_PINNACLE 0x2304
142#define VENDOR_ECS 0x1019
143#define VENDOR_WISTRON 0x0fb8
144#define VENDOR_COMPRO 0x185b
145#define VENDOR_NORTHSTAR 0x04eb
146#define VENDOR_REALTEK 0x0bda
147#define VENDOR_TIVO 0x105a
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -0300148#define VENDOR_CONEXANT 0x0572
Jarod Wilson66e89522010-06-01 17:32:08 -0300149
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300150enum mceusb_model_type {
151 MCE_GEN2 = 0, /* Most boards */
152 MCE_GEN1,
153 MCE_GEN3,
154 MCE_GEN2_TX_INV,
155 POLARIS_EVK,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300156 CX_HYBRID_TV,
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300157 MULTIFUNCTION,
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300158 TIVO_KIT,
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300159 MCE_GEN2_NO_TX,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300160};
161
162struct mceusb_model {
163 u32 mce_gen1:1;
164 u32 mce_gen2:1;
165 u32 mce_gen3:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300166 u32 tx_mask_normal:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300167 u32 no_tx:1;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300168
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300169 int ir_intfnum;
170
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300171 const char *rc_map; /* Allow specify a per-board map */
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -0300172 const char *name; /* per-board name */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300173};
174
175static const struct mceusb_model mceusb_model[] = {
176 [MCE_GEN1] = {
177 .mce_gen1 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300178 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300179 },
180 [MCE_GEN2] = {
181 .mce_gen2 = 1,
182 },
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300183 [MCE_GEN2_NO_TX] = {
184 .mce_gen2 = 1,
185 .no_tx = 1,
186 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300187 [MCE_GEN2_TX_INV] = {
188 .mce_gen2 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300189 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300190 },
191 [MCE_GEN3] = {
192 .mce_gen3 = 1,
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300193 .tx_mask_normal = 1,
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300194 },
195 [POLARIS_EVK] = {
Mauro Carvalho Chehab17c2b1f2010-10-22 11:51:50 -0300196 /*
197 * In fact, the EVK is shipped without
198 * remotes, but we should have something handy,
199 * to allow testing it
200 */
Mauro Carvalho Chehab15195d32011-01-24 12:18:47 -0300201 .rc_map = RC_MAP_HAUPPAUGE,
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300202 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
203 },
204 [CX_HYBRID_TV] = {
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300205 .no_tx = 1, /* tx isn't wired up at all */
206 .name = "Conexant Hybrid TV (cx231xx) MCE IR",
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300207 },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300208 [MULTIFUNCTION] = {
209 .mce_gen2 = 1,
210 .ir_intfnum = 2,
211 },
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300212 [TIVO_KIT] = {
213 .mce_gen2 = 1,
214 .rc_map = RC_MAP_TIVO,
215 },
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300216};
217
Jarod Wilson66e89522010-06-01 17:32:08 -0300218static struct usb_device_id mceusb_dev_table[] = {
219 /* Original Microsoft MCE IR Transceiver (often HP-branded) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300220 { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
221 .driver_info = MCE_GEN1 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300222 /* Philips Infrared Transceiver - Sahara branded */
223 { USB_DEVICE(VENDOR_PHILIPS, 0x0608) },
224 /* Philips Infrared Transceiver - HP branded */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300225 { USB_DEVICE(VENDOR_PHILIPS, 0x060c),
226 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300227 /* Philips SRM5100 */
228 { USB_DEVICE(VENDOR_PHILIPS, 0x060d) },
229 /* Philips Infrared Transceiver - Omaura */
230 { USB_DEVICE(VENDOR_PHILIPS, 0x060f) },
231 /* Philips Infrared Transceiver - Spinel plus */
232 { USB_DEVICE(VENDOR_PHILIPS, 0x0613) },
233 /* Philips eHome Infrared Transceiver */
234 { USB_DEVICE(VENDOR_PHILIPS, 0x0815) },
Jarod Wilsonc13df9c2010-08-27 18:21:14 -0300235 /* Philips/Spinel plus IR transceiver for ASUS */
236 { USB_DEVICE(VENDOR_PHILIPS, 0x206c) },
237 /* Philips/Spinel plus IR transceiver for ASUS */
238 { USB_DEVICE(VENDOR_PHILIPS, 0x2088) },
Jarod Wilsone296e122011-04-25 14:48:18 -0300239 /* Philips IR transceiver (Dell branded) */
240 { USB_DEVICE(VENDOR_PHILIPS, 0x2093) },
Jarod Wilsona6994eb2011-03-01 12:38:28 -0300241 /* Realtek MCE IR Receiver and card reader */
242 { USB_DEVICE(VENDOR_REALTEK, 0x0161),
243 .driver_info = MULTIFUNCTION },
Jarod Wilson66e89522010-06-01 17:32:08 -0300244 /* SMK/Toshiba G83C0004D410 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300245 { USB_DEVICE(VENDOR_SMK, 0x031d),
246 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300247 /* SMK eHome Infrared Transceiver (Sony VAIO) */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300248 { USB_DEVICE(VENDOR_SMK, 0x0322),
249 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300250 /* bundled with Hauppauge PVR-150 */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300251 { USB_DEVICE(VENDOR_SMK, 0x0334),
252 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300253 /* SMK eHome Infrared Transceiver */
254 { USB_DEVICE(VENDOR_SMK, 0x0338) },
Jarod Wilsonb825fe1b2011-05-26 16:03:17 -0300255 /* SMK/I-O Data GV-MC7/RCKIT Receiver */
256 { USB_DEVICE(VENDOR_SMK, 0x0353),
257 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300258 /* Tatung eHome Infrared Transceiver */
259 { USB_DEVICE(VENDOR_TATUNG, 0x9150) },
260 /* Shuttle eHome Infrared Transceiver */
261 { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) },
262 /* Shuttle eHome Infrared Transceiver */
263 { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) },
264 /* Gateway eHome Infrared Transceiver */
265 { USB_DEVICE(VENDOR_GATEWAY, 0x3009) },
266 /* Mitsumi */
267 { USB_DEVICE(VENDOR_MITSUMI, 0x2501) },
268 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300269 { USB_DEVICE(VENDOR_TOPSEED, 0x0001),
270 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300271 /* Topseed HP eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300272 { USB_DEVICE(VENDOR_TOPSEED, 0x0006),
273 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300274 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300275 { USB_DEVICE(VENDOR_TOPSEED, 0x0007),
276 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300277 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300278 { USB_DEVICE(VENDOR_TOPSEED, 0x0008),
279 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300280 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300281 { USB_DEVICE(VENDOR_TOPSEED, 0x000a),
282 .driver_info = MCE_GEN2_TX_INV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300283 /* Topseed eHome Infrared Transceiver */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300284 { USB_DEVICE(VENDOR_TOPSEED, 0x0011),
Jarod Wilson7d9a46f2011-03-04 20:20:47 -0300285 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300286 /* Ricavision internal Infrared Transceiver */
287 { USB_DEVICE(VENDOR_RICAVISION, 0x0010) },
288 /* Itron ione Libra Q-11 */
289 { USB_DEVICE(VENDOR_ITRON, 0x7002) },
290 /* FIC eHome Infrared Transceiver */
291 { USB_DEVICE(VENDOR_FIC, 0x9242) },
292 /* LG eHome Infrared Transceiver */
293 { USB_DEVICE(VENDOR_LG, 0x9803) },
294 /* Microsoft MCE Infrared Transceiver */
295 { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) },
296 /* Formosa eHome Infrared Transceiver */
297 { USB_DEVICE(VENDOR_FORMOSA, 0xe015) },
298 /* Formosa21 / eHome Infrared Receiver */
299 { USB_DEVICE(VENDOR_FORMOSA, 0xe016) },
300 /* Formosa aim / Trust MCE Infrared Receiver */
Jarod Wilson2faa0ca2011-04-19 16:47:34 -0300301 { USB_DEVICE(VENDOR_FORMOSA, 0xe017),
302 .driver_info = MCE_GEN2_NO_TX },
Jarod Wilson66e89522010-06-01 17:32:08 -0300303 /* Formosa Industrial Computing / Beanbag Emulation Device */
304 { USB_DEVICE(VENDOR_FORMOSA, 0xe018) },
305 /* Formosa21 / eHome Infrared Receiver */
306 { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) },
307 /* Formosa Industrial Computing AIM IR605/A */
308 { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) },
309 /* Formosa Industrial Computing */
310 { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) },
Jarod Wilsonfbb1f1b2010-12-16 13:27:11 -0300311 /* Fintek eHome Infrared Transceiver (HP branded) */
312 { USB_DEVICE(VENDOR_FINTEK, 0x5168) },
Jarod Wilson66e89522010-06-01 17:32:08 -0300313 /* Fintek eHome Infrared Transceiver */
314 { USB_DEVICE(VENDOR_FINTEK, 0x0602) },
315 /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */
316 { USB_DEVICE(VENDOR_FINTEK, 0x0702) },
317 /* Pinnacle Remote Kit */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300318 { USB_DEVICE(VENDOR_PINNACLE, 0x0225),
319 .driver_info = MCE_GEN3 },
Jarod Wilson66e89522010-06-01 17:32:08 -0300320 /* Elitegroup Computer Systems IR */
321 { USB_DEVICE(VENDOR_ECS, 0x0f38) },
322 /* Wistron Corp. eHome Infrared Receiver */
323 { USB_DEVICE(VENDOR_WISTRON, 0x0002) },
324 /* Compro K100 */
325 { USB_DEVICE(VENDOR_COMPRO, 0x3020) },
326 /* Compro K100 v2 */
327 { USB_DEVICE(VENDOR_COMPRO, 0x3082) },
328 /* Northstar Systems, Inc. eHome Infrared Transceiver */
329 { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) },
330 /* TiVo PC IR Receiver */
Jarod Wilsond8ee99e2011-03-24 12:59:10 -0300331 { USB_DEVICE(VENDOR_TIVO, 0x2000),
332 .driver_info = TIVO_KIT },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300333 /* Conexant Hybrid TV "Shelby" Polaris SDK */
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300334 { USB_DEVICE(VENDOR_CONEXANT, 0x58a1),
335 .driver_info = POLARIS_EVK },
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300336 /* Conexant Hybrid TV RDU253S Polaris */
337 { USB_DEVICE(VENDOR_CONEXANT, 0x58a5),
338 .driver_info = CX_HYBRID_TV },
Jarod Wilson66e89522010-06-01 17:32:08 -0300339 /* Terminating entry */
340 { }
341};
342
Jarod Wilson66e89522010-06-01 17:32:08 -0300343/* data structure for each usb transceiver */
344struct mceusb_dev {
345 /* ir-core bits */
David Härdemand8b4b582010-10-29 16:08:23 -0300346 struct rc_dev *rc;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300347
348 /* optional features we can enable */
349 bool carrier_report_enabled;
350 bool learning_enabled;
Jarod Wilson66e89522010-06-01 17:32:08 -0300351
352 /* core device bits */
353 struct device *dev;
Jarod Wilson66e89522010-06-01 17:32:08 -0300354
355 /* usb */
356 struct usb_device *usbdev;
357 struct urb *urb_in;
358 struct usb_endpoint_descriptor *usb_ep_in;
359 struct usb_endpoint_descriptor *usb_ep_out;
360
361 /* buffers and dma */
362 unsigned char *buf_in;
363 unsigned int len_in;
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300364 dma_addr_t dma_in;
365 dma_addr_t dma_out;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300366
367 enum {
368 CMD_HEADER = 0,
369 SUBCMD,
370 CMD_DATA,
371 PARSE_IRDATA,
372 } parser_state;
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300373
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300374 u8 cmd, rem; /* Remaining IR data bytes in packet */
Jarod Wilson66e89522010-06-01 17:32:08 -0300375
376 struct {
377 u32 connected:1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300378 u32 tx_mask_normal:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300379 u32 microsoft_gen1:1;
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300380 u32 no_tx:1;
Jarod Wilson66e89522010-06-01 17:32:08 -0300381 } flags;
382
Jarod Wilsone23fb962010-06-16 17:55:52 -0300383 /* transmit support */
Jarod Wilson66e89522010-06-01 17:32:08 -0300384 int send_flags;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300385 u32 carrier;
386 unsigned char tx_mask;
Jarod Wilson66e89522010-06-01 17:32:08 -0300387
388 char name[128];
389 char phys[64];
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -0300390 enum mceusb_model_type model;
Jarod Wilson66e89522010-06-01 17:32:08 -0300391};
392
393/*
394 * MCE Device Command Strings
395 * Device command responses vary from device to device...
396 * - DEVICE_RESET resets the hardware to its default state
397 * - GET_REVISION fetches the hardware/software revision, common
398 * replies are ff 0b 45 ff 1b 08 and ff 0b 50 ff 1b 42
399 * - GET_CARRIER_FREQ gets the carrier mode and frequency of the
400 * device, with replies in the form of 9f 06 MM FF, where MM is 0-3,
401 * meaning clk of 10000000, 2500000, 625000 or 156250, and FF is
402 * ((clk / frequency) - 1)
403 * - GET_RX_TIMEOUT fetches the receiver timeout in units of 50us,
404 * response in the form of 9f 0c msb lsb
405 * - GET_TX_BITMASK fetches the transmitter bitmask, replies in
406 * the form of 9f 08 bm, where bm is the bitmask
407 * - GET_RX_SENSOR fetches the RX sensor setting -- long-range
408 * general use one or short-range learning one, in the form of
409 * 9f 14 ss, where ss is either 01 for long-range or 02 for short
410 * - SET_CARRIER_FREQ sets a new carrier mode and frequency
411 * - SET_TX_BITMASK sets the transmitter bitmask
412 * - SET_RX_TIMEOUT sets the receiver timeout
413 * - SET_RX_SENSOR sets which receiver sensor to use
414 */
Jarod Wilson4a883912010-10-22 14:42:54 -0300415static char DEVICE_RESET[] = {MCE_COMMAND_NULL, MCE_HW_CMD_HEADER,
416 MCE_CMD_DEVICE_RESET};
417static char GET_REVISION[] = {MCE_HW_CMD_HEADER, MCE_CMD_G_REVISION};
418static char GET_UNKNOWN[] = {MCE_HW_CMD_HEADER, MCE_CMD_UNKNOWN7};
419static char GET_UNKNOWN2[] = {MCE_COMMAND_HEADER, MCE_CMD_UNKNOWN2};
420static char GET_CARRIER_FREQ[] = {MCE_COMMAND_HEADER, MCE_CMD_G_CARRIER};
421static char GET_RX_TIMEOUT[] = {MCE_COMMAND_HEADER, MCE_CMD_G_TIMEOUT};
422static char GET_TX_BITMASK[] = {MCE_COMMAND_HEADER, MCE_CMD_G_TXMASK};
423static char GET_RX_SENSOR[] = {MCE_COMMAND_HEADER, MCE_CMD_G_RXSENSOR};
Jarod Wilson66e89522010-06-01 17:32:08 -0300424/* sub in desired values in lower byte or bytes for full command */
425/* FIXME: make use of these for transmit.
Jarod Wilson4a883912010-10-22 14:42:54 -0300426static char SET_CARRIER_FREQ[] = {MCE_COMMAND_HEADER,
427 MCE_CMD_S_CARRIER, 0x00, 0x00};
428static char SET_TX_BITMASK[] = {MCE_COMMAND_HEADER, MCE_CMD_S_TXMASK, 0x00};
429static char SET_RX_TIMEOUT[] = {MCE_COMMAND_HEADER,
430 MCE_CMD_S_TIMEOUT, 0x00, 0x00};
431static char SET_RX_SENSOR[] = {MCE_COMMAND_HEADER,
432 MCE_CMD_S_RXSENSOR, 0x00};
Jarod Wilson66e89522010-06-01 17:32:08 -0300433*/
434
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300435static int mceusb_cmdsize(u8 cmd, u8 subcmd)
436{
437 int datasize = 0;
438
439 switch (cmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300440 case MCE_COMMAND_NULL:
441 if (subcmd == MCE_HW_CMD_HEADER)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300442 datasize = 1;
443 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300444 case MCE_HW_CMD_HEADER:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300445 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300446 case MCE_CMD_G_REVISION:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300447 datasize = 2;
448 break;
449 }
Jarod Wilson4a883912010-10-22 14:42:54 -0300450 case MCE_COMMAND_HEADER:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300451 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300452 case MCE_CMD_UNKNOWN:
453 case MCE_CMD_S_CARRIER:
454 case MCE_CMD_S_TIMEOUT:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300455 case MCE_RSP_PULSE_COUNT:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300456 datasize = 2;
457 break;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300458 case MCE_CMD_SIG_END:
Jarod Wilson4a883912010-10-22 14:42:54 -0300459 case MCE_CMD_S_TXMASK:
460 case MCE_CMD_S_RXSENSOR:
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300461 datasize = 1;
462 break;
463 }
464 }
465 return datasize;
466}
467
Jarod Wilson66e89522010-06-01 17:32:08 -0300468static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300469 int offset, int len, bool out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300470{
471 char codes[USB_BUFLEN * 3 + 1];
472 char inout[9];
Jarod Wilson66e89522010-06-01 17:32:08 -0300473 u8 cmd, subcmd, data1, data2;
474 struct device *dev = ir->dev;
Jarod Wilson36e9d262010-10-22 16:49:35 -0300475 int i, start, skip = 0;
476
477 if (!debug)
478 return;
Jarod Wilson66e89522010-06-01 17:32:08 -0300479
Jarod Wilson657290b2010-06-16 17:10:05 -0300480 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
Jarod Wilson29b44942010-11-09 18:41:46 -0300481 if (ir->flags.microsoft_gen1 && !out && !offset)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300482 skip = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300483
Jarod Wilson36e9d262010-10-22 16:49:35 -0300484 if (len <= skip)
Jarod Wilson66e89522010-06-01 17:32:08 -0300485 return;
486
487 for (i = 0; i < len && i < USB_BUFLEN; i++)
Jarod Wilson36e9d262010-10-22 16:49:35 -0300488 snprintf(codes + i * 3, 4, "%02x ", buf[i + offset] & 0xff);
Jarod Wilson66e89522010-06-01 17:32:08 -0300489
Jarod Wilson36e9d262010-10-22 16:49:35 -0300490 dev_info(dev, "%sx data: %s(length=%d)\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300491 (out ? "t" : "r"), codes, len);
492
493 if (out)
494 strcpy(inout, "Request\0");
495 else
496 strcpy(inout, "Got\0");
497
Jarod Wilson36e9d262010-10-22 16:49:35 -0300498 start = offset + skip;
499 cmd = buf[start] & 0xff;
500 subcmd = buf[start + 1] & 0xff;
501 data1 = buf[start + 2] & 0xff;
502 data2 = buf[start + 3] & 0xff;
Jarod Wilson66e89522010-06-01 17:32:08 -0300503
504 switch (cmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300505 case MCE_COMMAND_NULL:
506 if ((subcmd == MCE_HW_CMD_HEADER) &&
507 (data1 == MCE_CMD_DEVICE_RESET))
Jarod Wilson66e89522010-06-01 17:32:08 -0300508 dev_info(dev, "Device reset requested\n");
509 else
510 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
511 cmd, subcmd);
512 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300513 case MCE_HW_CMD_HEADER:
Jarod Wilson66e89522010-06-01 17:32:08 -0300514 switch (subcmd) {
Jarod Wilson4a883912010-10-22 14:42:54 -0300515 case MCE_CMD_G_REVISION:
Jarod Wilson66e89522010-06-01 17:32:08 -0300516 if (len == 2)
517 dev_info(dev, "Get hw/sw rev?\n");
518 else
519 dev_info(dev, "hw/sw rev 0x%02x 0x%02x "
520 "0x%02x 0x%02x\n", data1, data2,
Jarod Wilson36e9d262010-10-22 16:49:35 -0300521 buf[start + 4], buf[start + 5]);
Jarod Wilson66e89522010-06-01 17:32:08 -0300522 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300523 case MCE_CMD_DEVICE_RESET:
Jarod Wilson66e89522010-06-01 17:32:08 -0300524 dev_info(dev, "Device reset requested\n");
525 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300526 case MCE_RSP_CMD_INVALID:
Jarod Wilson66e89522010-06-01 17:32:08 -0300527 dev_info(dev, "Previous command not supported\n");
528 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300529 case MCE_CMD_UNKNOWN7:
530 case MCE_CMD_UNKNOWN9:
Jarod Wilson66e89522010-06-01 17:32:08 -0300531 default:
532 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
533 cmd, subcmd);
534 break;
535 }
536 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300537 case MCE_COMMAND_HEADER:
Jarod Wilson66e89522010-06-01 17:32:08 -0300538 switch (subcmd) {
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300539 case MCE_CMD_SIG_END:
540 dev_info(dev, "End of signal\n");
541 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300542 case MCE_CMD_PING:
Jarod Wilson66e89522010-06-01 17:32:08 -0300543 dev_info(dev, "Ping\n");
544 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300545 case MCE_CMD_UNKNOWN:
Jarod Wilson66e89522010-06-01 17:32:08 -0300546 dev_info(dev, "Resp to 9f 05 of 0x%02x 0x%02x\n",
547 data1, data2);
548 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300549 case MCE_CMD_S_CARRIER:
Jarod Wilson66e89522010-06-01 17:32:08 -0300550 dev_info(dev, "%s carrier mode and freq of "
551 "0x%02x 0x%02x\n", inout, data1, data2);
552 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300553 case MCE_CMD_G_CARRIER:
Jarod Wilson66e89522010-06-01 17:32:08 -0300554 dev_info(dev, "Get carrier mode and freq\n");
555 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300556 case MCE_CMD_S_TXMASK:
Jarod Wilson66e89522010-06-01 17:32:08 -0300557 dev_info(dev, "%s transmit blaster mask of 0x%02x\n",
558 inout, data1);
559 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300560 case MCE_CMD_S_TIMEOUT:
Jarod Wilson66e89522010-06-01 17:32:08 -0300561 /* value is in units of 50us, so x*50/100 or x/2 ms */
562 dev_info(dev, "%s receive timeout of %d ms\n",
563 inout, ((data1 << 8) | data2) / 2);
564 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300565 case MCE_CMD_G_TIMEOUT:
Jarod Wilson66e89522010-06-01 17:32:08 -0300566 dev_info(dev, "Get receive timeout\n");
567 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300568 case MCE_CMD_G_TXMASK:
Jarod Wilson66e89522010-06-01 17:32:08 -0300569 dev_info(dev, "Get transmit blaster mask\n");
570 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300571 case MCE_CMD_S_RXSENSOR:
Jarod Wilson66e89522010-06-01 17:32:08 -0300572 dev_info(dev, "%s %s-range receive sensor in use\n",
573 inout, data1 == 0x02 ? "short" : "long");
574 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300575 case MCE_CMD_G_RXSENSOR:
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300576 /* aka MCE_RSP_PULSE_COUNT */
577 if (out)
Jarod Wilson66e89522010-06-01 17:32:08 -0300578 dev_info(dev, "Get receive sensor\n");
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300579 else if (ir->learning_enabled)
580 dev_info(dev, "RX pulse count: %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300581 ((data1 << 8) | data2));
582 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300583 case MCE_RSP_CMD_INVALID:
Jarod Wilson66e89522010-06-01 17:32:08 -0300584 dev_info(dev, "Error! Hardware is likely wedged...\n");
585 break;
Jarod Wilson4a883912010-10-22 14:42:54 -0300586 case MCE_CMD_UNKNOWN2:
587 case MCE_CMD_UNKNOWN3:
588 case MCE_CMD_UNKNOWN5:
Jarod Wilson66e89522010-06-01 17:32:08 -0300589 default:
590 dev_info(dev, "Unknown command 0x%02x 0x%02x\n",
591 cmd, subcmd);
592 break;
593 }
594 break;
595 default:
596 break;
597 }
Jarod Wilson36e9d262010-10-22 16:49:35 -0300598
599 if (cmd == MCE_IRDATA_TRAILER)
600 dev_info(dev, "End of raw IR data\n");
601 else if ((cmd != MCE_COMMAND_HEADER) &&
602 ((cmd & MCE_COMMAND_MASK) == MCE_COMMAND_IRDATA))
603 dev_info(dev, "Raw IR data, %d pulse/space samples\n", ir->rem);
Jarod Wilson66e89522010-06-01 17:32:08 -0300604}
605
Jarod Wilson7c294402010-08-02 18:21:06 -0300606static void mce_async_callback(struct urb *urb, struct pt_regs *regs)
Jarod Wilson66e89522010-06-01 17:32:08 -0300607{
608 struct mceusb_dev *ir;
609 int len;
610
611 if (!urb)
612 return;
613
614 ir = urb->context;
615 if (ir) {
616 len = urb->actual_length;
617
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300618 mce_dbg(ir->dev, "callback called (status=%d len=%d)\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300619 urb->status, len);
620
Jarod Wilson36e9d262010-10-22 16:49:35 -0300621 mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true);
Jarod Wilson66e89522010-06-01 17:32:08 -0300622 }
623
Jarod Wilson0b43fcd2011-05-24 16:44:54 -0300624 /* the transfer buffer and urb were allocated in mce_request_packet */
625 kfree(urb->transfer_buffer);
626 usb_free_urb(urb);
Jarod Wilson66e89522010-06-01 17:32:08 -0300627}
628
629/* request incoming or send outgoing usb packet - used to initialize remote */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300630static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data,
631 int size, int urb_type)
Jarod Wilson66e89522010-06-01 17:32:08 -0300632{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300633 int res, pipe;
Jarod Wilson66e89522010-06-01 17:32:08 -0300634 struct urb *async_urb;
635 struct device *dev = ir->dev;
636 unsigned char *async_buf;
637
638 if (urb_type == MCEUSB_TX) {
639 async_urb = usb_alloc_urb(0, GFP_KERNEL);
640 if (unlikely(!async_urb)) {
641 dev_err(dev, "Error, couldn't allocate urb!\n");
642 return;
643 }
644
645 async_buf = kzalloc(size, GFP_KERNEL);
646 if (!async_buf) {
647 dev_err(dev, "Error, couldn't allocate buf!\n");
648 usb_free_urb(async_urb);
649 return;
650 }
651
652 /* outbound data */
Jarod Wilson51ea6292011-05-10 14:09:59 -0300653 pipe = usb_sndintpipe(ir->usbdev,
654 ir->usb_ep_out->bEndpointAddress);
655 usb_fill_int_urb(async_urb, ir->usbdev, pipe,
Jarod Wilson7c294402010-08-02 18:21:06 -0300656 async_buf, size, (usb_complete_t)mce_async_callback,
Jarod Wilson51ea6292011-05-10 14:09:59 -0300657 ir, ir->usb_ep_out->bInterval);
Jarod Wilson66e89522010-06-01 17:32:08 -0300658 memcpy(async_buf, data, size);
659
660 } else if (urb_type == MCEUSB_RX) {
661 /* standard request */
662 async_urb = ir->urb_in;
663 ir->send_flags = RECV_FLAG_IN_PROGRESS;
664
665 } else {
666 dev_err(dev, "Error! Unknown urb type %d\n", urb_type);
667 return;
668 }
669
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300670 mce_dbg(dev, "receive request called (size=%#x)\n", size);
Jarod Wilson66e89522010-06-01 17:32:08 -0300671
672 async_urb->transfer_buffer_length = size;
673 async_urb->dev = ir->usbdev;
674
675 res = usb_submit_urb(async_urb, GFP_ATOMIC);
676 if (res) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300677 mce_dbg(dev, "receive request FAILED! (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300678 return;
679 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300680 mce_dbg(dev, "receive request complete (res=%d)\n", res);
Jarod Wilson66e89522010-06-01 17:32:08 -0300681}
682
683static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size)
684{
Jarod Wilson51ea6292011-05-10 14:09:59 -0300685 mce_request_packet(ir, data, size, MCEUSB_TX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300686}
687
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300688static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size)
Jarod Wilson66e89522010-06-01 17:32:08 -0300689{
Jarod Wilson3a918aa2011-05-26 14:23:18 -0300690 mce_request_packet(ir, NULL, size, MCEUSB_RX);
Jarod Wilson66e89522010-06-01 17:32:08 -0300691}
692
Jarod Wilsone23fb962010-06-16 17:55:52 -0300693/* Send data out the IR blaster port(s) */
David Härdemand8b4b582010-10-29 16:08:23 -0300694static int mceusb_tx_ir(struct rc_dev *dev, int *txbuf, u32 n)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300695{
David Härdemand8b4b582010-10-29 16:08:23 -0300696 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300697 int i, ret = 0;
698 int count, cmdcount = 0;
699 unsigned char *cmdbuf; /* MCE command buffer */
700 long signal_duration = 0; /* Singnal length in us */
701 struct timeval start_time, end_time;
702
703 do_gettimeofday(&start_time);
704
705 count = n / sizeof(int);
706
707 cmdbuf = kzalloc(sizeof(int) * MCE_CMDBUF_SIZE, GFP_KERNEL);
708 if (!cmdbuf)
709 return -ENOMEM;
710
711 /* MCE tx init header */
Jarod Wilson4a883912010-10-22 14:42:54 -0300712 cmdbuf[cmdcount++] = MCE_COMMAND_HEADER;
713 cmdbuf[cmdcount++] = MCE_CMD_S_TXMASK;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300714 cmdbuf[cmdcount++] = ir->tx_mask;
715
716 /* Generate mce packet data */
717 for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) {
718 signal_duration += txbuf[i];
719 txbuf[i] = txbuf[i] / MCE_TIME_UNIT;
720
721 do { /* loop to support long pulses/spaces > 127*50us=6.35ms */
722
723 /* Insert mce packet header every 4th entry */
724 if ((cmdcount < MCE_CMDBUF_SIZE) &&
725 (cmdcount - MCE_TX_HEADER_LENGTH) %
726 MCE_CODE_LENGTH == 0)
Jarod Wilson4a883912010-10-22 14:42:54 -0300727 cmdbuf[cmdcount++] = MCE_IRDATA_HEADER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300728
729 /* Insert mce packet data */
730 if (cmdcount < MCE_CMDBUF_SIZE)
731 cmdbuf[cmdcount++] =
732 (txbuf[i] < MCE_PULSE_BIT ?
733 txbuf[i] : MCE_MAX_PULSE_LENGTH) |
734 (i & 1 ? 0x00 : MCE_PULSE_BIT);
735 else {
736 ret = -EINVAL;
737 goto out;
738 }
739
740 } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) &&
741 (txbuf[i] -= MCE_MAX_PULSE_LENGTH));
742 }
743
744 /* Fix packet length in last header */
745 cmdbuf[cmdcount - (cmdcount - MCE_TX_HEADER_LENGTH) % MCE_CODE_LENGTH] =
Jarod Wilson4a883912010-10-22 14:42:54 -0300746 MCE_COMMAND_IRDATA + (cmdcount - MCE_TX_HEADER_LENGTH) %
747 MCE_CODE_LENGTH - 1;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300748
749 /* Check if we have room for the empty packet at the end */
750 if (cmdcount >= MCE_CMDBUF_SIZE) {
751 ret = -EINVAL;
752 goto out;
753 }
754
755 /* All mce commands end with an empty packet (0x80) */
Jarod Wilson4a883912010-10-22 14:42:54 -0300756 cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300757
758 /* Transmit the command to the mce device */
759 mce_async_out(ir, cmdbuf, cmdcount);
760
761 /*
762 * The lircd gap calculation expects the write function to
763 * wait the time it takes for the ircommand to be sent before
764 * it returns.
765 */
766 do_gettimeofday(&end_time);
767 signal_duration -= (end_time.tv_usec - start_time.tv_usec) +
768 (end_time.tv_sec - start_time.tv_sec) * 1000000;
769
770 /* delay with the closest number of ticks */
771 set_current_state(TASK_INTERRUPTIBLE);
772 schedule_timeout(usecs_to_jiffies(signal_duration));
773
774out:
775 kfree(cmdbuf);
776 return ret ? ret : n;
777}
778
Jarod Wilson6f6c6252010-10-29 00:07:39 -0300779/* Sets active IR outputs -- mce devices typically have two */
David Härdemand8b4b582010-10-29 16:08:23 -0300780static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask)
Jarod Wilson657290b2010-06-16 17:10:05 -0300781{
David Härdemand8b4b582010-10-29 16:08:23 -0300782 struct mceusb_dev *ir = dev->priv;
Jarod Wilson657290b2010-06-16 17:10:05 -0300783
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -0300784 if (ir->flags.tx_mask_normal)
785 ir->tx_mask = mask;
786 else
Jarod Wilson4a883912010-10-22 14:42:54 -0300787 ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ?
788 mask ^ MCE_DEFAULT_TX_MASK : mask) << 1;
Jarod Wilson657290b2010-06-16 17:10:05 -0300789
790 return 0;
791}
792
Jarod Wilsone23fb962010-06-16 17:55:52 -0300793/* Sets the send carrier frequency and mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300794static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier)
Jarod Wilsone23fb962010-06-16 17:55:52 -0300795{
David Härdemand8b4b582010-10-29 16:08:23 -0300796 struct mceusb_dev *ir = dev->priv;
Jarod Wilsone23fb962010-06-16 17:55:52 -0300797 int clk = 10000000;
798 int prescaler = 0, divisor = 0;
Jarod Wilson4a883912010-10-22 14:42:54 -0300799 unsigned char cmdbuf[4] = { MCE_COMMAND_HEADER,
800 MCE_CMD_S_CARRIER, 0x00, 0x00 };
Jarod Wilsone23fb962010-06-16 17:55:52 -0300801
802 /* Carrier has changed */
803 if (ir->carrier != carrier) {
804
805 if (carrier == 0) {
806 ir->carrier = carrier;
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300807 cmdbuf[2] = MCE_CMD_SIG_END;
Jarod Wilson4a883912010-10-22 14:42:54 -0300808 cmdbuf[3] = MCE_IRDATA_TRAILER;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300809 mce_dbg(ir->dev, "%s: disabling carrier "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300810 "modulation\n", __func__);
811 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
812 return carrier;
813 }
814
815 for (prescaler = 0; prescaler < 4; ++prescaler) {
816 divisor = (clk >> (2 * prescaler)) / carrier;
Jarod Wilson4a883912010-10-22 14:42:54 -0300817 if (divisor <= 0xff) {
Jarod Wilsone23fb962010-06-16 17:55:52 -0300818 ir->carrier = carrier;
819 cmdbuf[2] = prescaler;
820 cmdbuf[3] = divisor;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300821 mce_dbg(ir->dev, "%s: requesting %u HZ "
Jarod Wilsone23fb962010-06-16 17:55:52 -0300822 "carrier\n", __func__, carrier);
823
824 /* Transmit new carrier to mce device */
825 mce_async_out(ir, cmdbuf, sizeof(cmdbuf));
826 return carrier;
827 }
828 }
829
830 return -EINVAL;
831
832 }
833
834 return carrier;
835}
836
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300837/*
838 * We don't do anything but print debug spew for many of the command bits
839 * we receive from the hardware, but some of them are useful information
840 * we want to store so that we can use them.
841 */
842static void mceusb_handle_command(struct mceusb_dev *ir, int index)
843{
844 u8 hi = ir->buf_in[index + 1] & 0xff;
845 u8 lo = ir->buf_in[index + 2] & 0xff;
846
847 switch (ir->buf_in[index]) {
848 /* 2-byte return value commands */
849 case MCE_CMD_S_TIMEOUT:
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300850 ir->rc->timeout = US_TO_NS((hi << 8 | lo) / 2);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300851 break;
852
853 /* 1-byte return value commands */
854 case MCE_CMD_S_TXMASK:
855 ir->tx_mask = hi;
856 break;
857 case MCE_CMD_S_RXSENSOR:
858 ir->learning_enabled = (hi == 0x02);
859 break;
860 default:
861 break;
862 }
863}
864
Jarod Wilson66e89522010-06-01 17:32:08 -0300865static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len)
866{
Maxim Levitsky46519182010-10-16 19:56:28 -0300867 DEFINE_IR_RAW_EVENT(rawir);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300868 int i = 0;
Jarod Wilson66e89522010-06-01 17:32:08 -0300869
870 /* skip meaningless 0xb1 0x60 header bytes on orig receiver */
871 if (ir->flags.microsoft_gen1)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300872 i = 2;
Jarod Wilson66e89522010-06-01 17:32:08 -0300873
Jarod Wilson29b44942010-11-09 18:41:46 -0300874 /* if there's no data, just return now */
875 if (buf_len <= i)
876 return;
877
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300878 for (; i < buf_len; i++) {
879 switch (ir->parser_state) {
880 case SUBCMD:
881 ir->rem = mceusb_cmdsize(ir->cmd, ir->buf_in[i]);
Jarod Wilson36e9d262010-10-22 16:49:35 -0300882 mceusb_dev_printdata(ir, ir->buf_in, i - 1,
883 ir->rem + 2, false);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300884 mceusb_handle_command(ir, i);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300885 ir->parser_state = CMD_DATA;
886 break;
887 case PARSE_IRDATA:
Jarod Wilson66e89522010-06-01 17:32:08 -0300888 ir->rem--;
Jarod Wilson5bd9d732011-01-26 12:20:09 -0300889 init_ir_raw_event(&rawir);
Jarod Wilson66e89522010-06-01 17:32:08 -0300890 rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0);
891 rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK)
Jarod Wilsonb4608fa2011-01-18 17:31:24 -0300892 * US_TO_NS(MCE_TIME_UNIT);
Jarod Wilson66e89522010-06-01 17:32:08 -0300893
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300894 mce_dbg(ir->dev, "Storing %s with duration %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300895 rawir.pulse ? "pulse" : "space",
896 rawir.duration);
897
David Härdemand8b4b582010-10-29 16:08:23 -0300898 ir_raw_event_store_with_filter(ir->rc, &rawir);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300899 break;
900 case CMD_DATA:
901 ir->rem--;
902 break;
903 case CMD_HEADER:
904 /* decode mce packets of the form (84),AA,BB,CC,DD */
905 /* IR data packets can span USB messages - rem */
906 ir->cmd = ir->buf_in[i];
Jarod Wilson4a883912010-10-22 14:42:54 -0300907 if ((ir->cmd == MCE_COMMAND_HEADER) ||
908 ((ir->cmd & MCE_COMMAND_MASK) !=
909 MCE_COMMAND_IRDATA)) {
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300910 ir->parser_state = SUBCMD;
911 continue;
912 }
913 ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK);
Jarod Wilson2ee95db2010-11-12 19:49:04 -0300914 mceusb_dev_printdata(ir, ir->buf_in,
915 i, ir->rem + 1, false);
Jarod Wilson1cd50f22010-11-09 18:41:03 -0300916 if (ir->rem)
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300917 ir->parser_state = PARSE_IRDATA;
Jarod Wilson5bd9d732011-01-26 12:20:09 -0300918 else
919 ir_raw_event_reset(ir->rc);
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300920 break;
Jarod Wilson66e89522010-06-01 17:32:08 -0300921 }
922
Mauro Carvalho Chehab39dc5c32010-10-22 01:35:44 -0300923 if (ir->parser_state != CMD_HEADER && !ir->rem)
924 ir->parser_state = CMD_HEADER;
Jarod Wilson66e89522010-06-01 17:32:08 -0300925 }
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300926 mce_dbg(ir->dev, "processed IR data, calling ir_raw_event_handle\n");
David Härdemand8b4b582010-10-29 16:08:23 -0300927 ir_raw_event_handle(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -0300928}
929
Jarod Wilson66e89522010-06-01 17:32:08 -0300930static void mceusb_dev_recv(struct urb *urb, struct pt_regs *regs)
931{
932 struct mceusb_dev *ir;
933 int buf_len;
934
935 if (!urb)
936 return;
937
938 ir = urb->context;
939 if (!ir) {
940 usb_unlink_urb(urb);
941 return;
942 }
943
944 buf_len = urb->actual_length;
945
Jarod Wilson66e89522010-06-01 17:32:08 -0300946 if (ir->send_flags == RECV_FLAG_IN_PROGRESS) {
947 ir->send_flags = SEND_FLAG_COMPLETE;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300948 mce_dbg(ir->dev, "setup answer received %d bytes\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300949 buf_len);
950 }
951
952 switch (urb->status) {
953 /* success */
954 case 0:
955 mceusb_process_ir_data(ir, buf_len);
956 break;
957
958 case -ECONNRESET:
959 case -ENOENT:
960 case -ESHUTDOWN:
961 usb_unlink_urb(urb);
962 return;
963
964 case -EPIPE:
965 default:
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300966 mce_dbg(ir->dev, "Error: urb status = %d\n", urb->status);
Jarod Wilson66e89522010-06-01 17:32:08 -0300967 break;
968 }
969
970 usb_submit_urb(urb, GFP_ATOMIC);
971}
972
973static void mceusb_gen1_init(struct mceusb_dev *ir)
974{
Mauro Carvalho Chehabca17a4f2010-07-10 11:19:42 -0300975 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -0300976 struct device *dev = ir->dev;
Jarod Wilsonb48592e2010-07-03 22:42:14 -0300977 char *data;
Jarod Wilson657290b2010-06-16 17:10:05 -0300978
979 data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL);
980 if (!data) {
981 dev_err(dev, "%s: memory allocation failed!\n", __func__);
Jarod Wilson657290b2010-06-16 17:10:05 -0300982 return;
983 }
Jarod Wilson66e89522010-06-01 17:32:08 -0300984
985 /*
Jarod Wilsonb48592e2010-07-03 22:42:14 -0300986 * This is a strange one. Windows issues a set address to the device
Jarod Wilson66e89522010-06-01 17:32:08 -0300987 * on the receive control pipe and expect a certain value pair back
988 */
Jarod Wilson66e89522010-06-01 17:32:08 -0300989 ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0),
990 USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0,
Jarod Wilson657290b2010-06-16 17:10:05 -0300991 data, USB_CTRL_MSG_SZ, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -0300992 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
993 mce_dbg(dev, "%s - data[0] = %d, data[1] = %d\n",
Jarod Wilson66e89522010-06-01 17:32:08 -0300994 __func__, data[0], data[1]);
995
996 /* set feature: bit rate 38400 bps */
997 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
998 USB_REQ_SET_FEATURE, USB_TYPE_VENDOR,
999 0xc04e, 0x0000, NULL, 0, HZ * 3);
1000
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001001 mce_dbg(dev, "%s - ret = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001002
1003 /* bRequest 4: set char length to 8 bits */
1004 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1005 4, USB_TYPE_VENDOR,
1006 0x0808, 0x0000, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001007 mce_dbg(dev, "%s - retB = %d\n", __func__, ret);
Jarod Wilson66e89522010-06-01 17:32:08 -03001008
1009 /* bRequest 2: set handshaking to use DTR/DSR */
1010 ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0),
1011 2, USB_TYPE_VENDOR,
1012 0x0000, 0x0100, NULL, 0, HZ * 3);
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001013 mce_dbg(dev, "%s - retC = %d\n", __func__, ret);
Jarod Wilson657290b2010-06-16 17:10:05 -03001014
Jarod Wilson22b07662010-07-08 12:38:57 -03001015 /* device reset */
1016 mce_async_out(ir, DEVICE_RESET, sizeof(DEVICE_RESET));
Jarod Wilson22b07662010-07-08 12:38:57 -03001017
1018 /* get hw/sw revision? */
1019 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson22b07662010-07-08 12:38:57 -03001020
Jarod Wilson657290b2010-06-16 17:10:05 -03001021 kfree(data);
Jarod Wilson66e89522010-06-01 17:32:08 -03001022};
1023
1024static void mceusb_gen2_init(struct mceusb_dev *ir)
1025{
Jarod Wilson66e89522010-06-01 17:32:08 -03001026 /* device reset */
1027 mce_async_out(ir, DEVICE_RESET, sizeof(DEVICE_RESET));
Jarod Wilson66e89522010-06-01 17:32:08 -03001028
1029 /* get hw/sw revision? */
1030 mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION));
Jarod Wilson66e89522010-06-01 17:32:08 -03001031
Jarod Wilson22b07662010-07-08 12:38:57 -03001032 /* unknown what the next two actually return... */
Jarod Wilson66e89522010-06-01 17:32:08 -03001033 mce_async_out(ir, GET_UNKNOWN, sizeof(GET_UNKNOWN));
Jarod Wilson22b07662010-07-08 12:38:57 -03001034 mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2));
Jarod Wilson66e89522010-06-01 17:32:08 -03001035}
1036
Jarod Wilson22b07662010-07-08 12:38:57 -03001037static void mceusb_get_parameters(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001038{
Jarod Wilson66e89522010-06-01 17:32:08 -03001039 /* get the carrier and frequency */
1040 mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ));
Jarod Wilson66e89522010-06-01 17:32:08 -03001041
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001042 if (!ir->flags.no_tx)
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001043 /* get the transmitter bitmask */
1044 mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK));
Jarod Wilson66e89522010-06-01 17:32:08 -03001045
1046 /* get receiver timeout value */
1047 mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT));
Jarod Wilson66e89522010-06-01 17:32:08 -03001048
1049 /* get receiver sensor setting */
1050 mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR));
Jarod Wilson66e89522010-06-01 17:32:08 -03001051}
1052
David Härdemand8b4b582010-10-29 16:08:23 -03001053static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir)
Jarod Wilson66e89522010-06-01 17:32:08 -03001054{
Jarod Wilson66e89522010-06-01 17:32:08 -03001055 struct device *dev = ir->dev;
David Härdemand8b4b582010-10-29 16:08:23 -03001056 struct rc_dev *rc;
1057 int ret;
Jarod Wilson66e89522010-06-01 17:32:08 -03001058
David Härdemand8b4b582010-10-29 16:08:23 -03001059 rc = rc_allocate_device();
1060 if (!rc) {
1061 dev_err(dev, "remote dev allocation failed\n");
1062 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001063 }
1064
Mauro Carvalho Chehab3459d452010-10-22 11:52:53 -03001065 snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)",
David Härdemand8b4b582010-10-29 16:08:23 -03001066 mceusb_model[ir->model].name ?
Paul Bender5ad1a552010-11-17 16:56:17 -03001067 mceusb_model[ir->model].name :
David Härdemand8b4b582010-10-29 16:08:23 -03001068 "Media Center Ed. eHome Infrared Remote Transceiver",
Jarod Wilson66e89522010-06-01 17:32:08 -03001069 le16_to_cpu(ir->usbdev->descriptor.idVendor),
1070 le16_to_cpu(ir->usbdev->descriptor.idProduct));
1071
Jarod Wilson66e89522010-06-01 17:32:08 -03001072 usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys));
Jarod Wilson66e89522010-06-01 17:32:08 -03001073
David Härdemand8b4b582010-10-29 16:08:23 -03001074 rc->input_name = ir->name;
1075 rc->input_phys = ir->phys;
1076 usb_to_input_id(ir->usbdev, &rc->input_id);
1077 rc->dev.parent = dev;
1078 rc->priv = ir;
1079 rc->driver_type = RC_DRIVER_IR_RAW;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -03001080 rc->allowed_protos = RC_TYPE_ALL;
Jarod Wilsonb4608fa2011-01-18 17:31:24 -03001081 rc->timeout = US_TO_NS(1000);
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001082 if (!ir->flags.no_tx) {
David Härdemand8b4b582010-10-29 16:08:23 -03001083 rc->s_tx_mask = mceusb_set_tx_mask;
1084 rc->s_tx_carrier = mceusb_set_tx_carrier;
1085 rc->tx_ir = mceusb_tx_ir;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001086 }
David Härdemand8b4b582010-10-29 16:08:23 -03001087 rc->driver_name = DRIVER_NAME;
1088 rc->map_name = mceusb_model[ir->model].rc_map ?
1089 mceusb_model[ir->model].rc_map : RC_MAP_RC6_MCE;
Jarod Wilson66e89522010-06-01 17:32:08 -03001090
David Härdemand8b4b582010-10-29 16:08:23 -03001091 ret = rc_register_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001092 if (ret < 0) {
David Härdemand8b4b582010-10-29 16:08:23 -03001093 dev_err(dev, "remote dev registration failed\n");
1094 goto out;
Jarod Wilson66e89522010-06-01 17:32:08 -03001095 }
1096
David Härdemand8b4b582010-10-29 16:08:23 -03001097 return rc;
Jarod Wilson66e89522010-06-01 17:32:08 -03001098
David Härdemand8b4b582010-10-29 16:08:23 -03001099out:
1100 rc_free_device(rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001101 return NULL;
1102}
1103
1104static int __devinit mceusb_dev_probe(struct usb_interface *intf,
1105 const struct usb_device_id *id)
1106{
1107 struct usb_device *dev = interface_to_usbdev(intf);
1108 struct usb_host_interface *idesc;
1109 struct usb_endpoint_descriptor *ep = NULL;
1110 struct usb_endpoint_descriptor *ep_in = NULL;
1111 struct usb_endpoint_descriptor *ep_out = NULL;
Jarod Wilson66e89522010-06-01 17:32:08 -03001112 struct mceusb_dev *ir = NULL;
Jarod Wilsond732a722010-06-16 17:10:46 -03001113 int pipe, maxp, i;
Jarod Wilson66e89522010-06-01 17:32:08 -03001114 char buf[63], name[128] = "";
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001115 enum mceusb_model_type model = id->driver_info;
Jarod Wilson66e89522010-06-01 17:32:08 -03001116 bool is_gen3;
1117 bool is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001118 bool tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001119 int ir_intfnum;
Jarod Wilson66e89522010-06-01 17:32:08 -03001120
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001121 mce_dbg(&intf->dev, "%s called\n", __func__);
Jarod Wilson66e89522010-06-01 17:32:08 -03001122
Jarod Wilson66e89522010-06-01 17:32:08 -03001123 idesc = intf->cur_altsetting;
1124
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001125 is_gen3 = mceusb_model[model].mce_gen3;
1126 is_microsoft_gen1 = mceusb_model[model].mce_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001127 tx_mask_normal = mceusb_model[model].tx_mask_normal;
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001128 ir_intfnum = mceusb_model[model].ir_intfnum;
Mauro Carvalho Chehab56e92f62010-10-18 16:32:50 -03001129
Jarod Wilsona6994eb2011-03-01 12:38:28 -03001130 /* There are multi-function devices with non-IR interfaces */
1131 if (idesc->desc.bInterfaceNumber != ir_intfnum)
1132 return -ENODEV;
Jarod Wilson66e89522010-06-01 17:32:08 -03001133
1134 /* step through the endpoints to find first bulk in and out endpoint */
1135 for (i = 0; i < idesc->desc.bNumEndpoints; ++i) {
1136 ep = &idesc->endpoint[i].desc;
1137
1138 if ((ep_in == NULL)
1139 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1140 == USB_DIR_IN)
1141 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1142 == USB_ENDPOINT_XFER_BULK)
1143 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1144 == USB_ENDPOINT_XFER_INT))) {
1145
Jarod Wilson66e89522010-06-01 17:32:08 -03001146 ep_in = ep;
1147 ep_in->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001148 ep_in->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001149 mce_dbg(&intf->dev, "acceptable inbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001150 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001151 }
1152
1153 if ((ep_out == NULL)
1154 && ((ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK)
1155 == USB_DIR_OUT)
1156 && (((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1157 == USB_ENDPOINT_XFER_BULK)
1158 || ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
1159 == USB_ENDPOINT_XFER_INT))) {
1160
Jarod Wilson66e89522010-06-01 17:32:08 -03001161 ep_out = ep;
1162 ep_out->bmAttributes = USB_ENDPOINT_XFER_INT;
Jarod Wilsond732a722010-06-16 17:10:46 -03001163 ep_out->bInterval = 1;
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001164 mce_dbg(&intf->dev, "acceptable outbound endpoint "
Jarod Wilsond732a722010-06-16 17:10:46 -03001165 "found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001166 }
1167 }
1168 if (ep_in == NULL) {
Jarod Wilson5ae8f9a2011-05-26 15:51:11 -03001169 mce_dbg(&intf->dev, "inbound and/or endpoint not found\n");
Jarod Wilson66e89522010-06-01 17:32:08 -03001170 return -ENODEV;
1171 }
1172
1173 pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress);
1174 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
1175
1176 ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL);
1177 if (!ir)
1178 goto mem_alloc_fail;
1179
1180 ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in);
1181 if (!ir->buf_in)
1182 goto buf_in_alloc_fail;
1183
1184 ir->urb_in = usb_alloc_urb(0, GFP_KERNEL);
1185 if (!ir->urb_in)
1186 goto urb_in_alloc_fail;
1187
1188 ir->usbdev = dev;
1189 ir->dev = &intf->dev;
1190 ir->len_in = maxp;
Jarod Wilson66e89522010-06-01 17:32:08 -03001191 ir->flags.microsoft_gen1 = is_microsoft_gen1;
Jarod Wilsond8cc7fd2010-12-15 19:20:55 -03001192 ir->flags.tx_mask_normal = tx_mask_normal;
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001193 ir->flags.no_tx = mceusb_model[model].no_tx;
Mauro Carvalho Chehab37dbd3a2010-10-22 11:50:37 -03001194 ir->model = model;
1195
Jarod Wilson66e89522010-06-01 17:32:08 -03001196 /* Saving usb interface data for use by the transmitter routine */
1197 ir->usb_ep_in = ep_in;
1198 ir->usb_ep_out = ep_out;
1199
1200 if (dev->descriptor.iManufacturer
1201 && usb_string(dev, dev->descriptor.iManufacturer,
1202 buf, sizeof(buf)) > 0)
1203 strlcpy(name, buf, sizeof(name));
1204 if (dev->descriptor.iProduct
1205 && usb_string(dev, dev->descriptor.iProduct,
1206 buf, sizeof(buf)) > 0)
1207 snprintf(name + strlen(name), sizeof(name) - strlen(name),
1208 " %s", buf);
1209
David Härdemand8b4b582010-10-29 16:08:23 -03001210 ir->rc = mceusb_init_rc_dev(ir);
1211 if (!ir->rc)
1212 goto rc_dev_fail;
Jarod Wilson66e89522010-06-01 17:32:08 -03001213
Jarod Wilsonb48592e2010-07-03 22:42:14 -03001214 /* wire up inbound data handler */
Jarod Wilson66e89522010-06-01 17:32:08 -03001215 usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in,
1216 maxp, (usb_complete_t) mceusb_dev_recv, ir, ep_in->bInterval);
1217 ir->urb_in->transfer_dma = ir->dma_in;
1218 ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1219
Jarod Wilson3a918aa2011-05-26 14:23:18 -03001220 /* flush buffers on the device */
1221 mce_dbg(&intf->dev, "Flushing receive buffers\n");
1222 mce_flush_rx_buffer(ir, maxp);
1223
Jarod Wilson66e89522010-06-01 17:32:08 -03001224 /* initialize device */
Jarod Wilson22b07662010-07-08 12:38:57 -03001225 if (ir->flags.microsoft_gen1)
Jarod Wilson66e89522010-06-01 17:32:08 -03001226 mceusb_gen1_init(ir);
Jarod Wilson22b07662010-07-08 12:38:57 -03001227 else if (!is_gen3)
Jarod Wilson66e89522010-06-01 17:32:08 -03001228 mceusb_gen2_init(ir);
1229
Jarod Wilson22b07662010-07-08 12:38:57 -03001230 mceusb_get_parameters(ir);
Jarod Wilson66e89522010-06-01 17:32:08 -03001231
Jarod Wilson6f6c6252010-10-29 00:07:39 -03001232 if (!ir->flags.no_tx)
David Härdemand8b4b582010-10-29 16:08:23 -03001233 mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK);
Jarod Wilson66e89522010-06-01 17:32:08 -03001234
1235 usb_set_intfdata(intf, ir);
1236
1237 dev_info(&intf->dev, "Registered %s on usb%d:%d\n", name,
1238 dev->bus->busnum, dev->devnum);
1239
1240 return 0;
1241
1242 /* Error-handling path */
David Härdemand8b4b582010-10-29 16:08:23 -03001243rc_dev_fail:
Jarod Wilson66e89522010-06-01 17:32:08 -03001244 usb_free_urb(ir->urb_in);
1245urb_in_alloc_fail:
1246 usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in);
1247buf_in_alloc_fail:
1248 kfree(ir);
1249mem_alloc_fail:
1250 dev_err(&intf->dev, "%s: device setup failed!\n", __func__);
1251
1252 return -ENOMEM;
1253}
1254
1255
1256static void __devexit mceusb_dev_disconnect(struct usb_interface *intf)
1257{
1258 struct usb_device *dev = interface_to_usbdev(intf);
1259 struct mceusb_dev *ir = usb_get_intfdata(intf);
1260
1261 usb_set_intfdata(intf, NULL);
1262
1263 if (!ir)
1264 return;
1265
1266 ir->usbdev = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -03001267 rc_unregister_device(ir->rc);
Jarod Wilson66e89522010-06-01 17:32:08 -03001268 usb_kill_urb(ir->urb_in);
1269 usb_free_urb(ir->urb_in);
1270 usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in);
1271
1272 kfree(ir);
1273}
1274
1275static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message)
1276{
1277 struct mceusb_dev *ir = usb_get_intfdata(intf);
1278 dev_info(ir->dev, "suspend\n");
1279 usb_kill_urb(ir->urb_in);
1280 return 0;
1281}
1282
1283static int mceusb_dev_resume(struct usb_interface *intf)
1284{
1285 struct mceusb_dev *ir = usb_get_intfdata(intf);
1286 dev_info(ir->dev, "resume\n");
1287 if (usb_submit_urb(ir->urb_in, GFP_ATOMIC))
1288 return -EIO;
1289 return 0;
1290}
1291
1292static struct usb_driver mceusb_dev_driver = {
1293 .name = DRIVER_NAME,
1294 .probe = mceusb_dev_probe,
1295 .disconnect = mceusb_dev_disconnect,
1296 .suspend = mceusb_dev_suspend,
1297 .resume = mceusb_dev_resume,
1298 .reset_resume = mceusb_dev_resume,
1299 .id_table = mceusb_dev_table
1300};
1301
1302static int __init mceusb_dev_init(void)
1303{
1304 int ret;
1305
1306 ret = usb_register(&mceusb_dev_driver);
1307 if (ret < 0)
1308 printk(KERN_ERR DRIVER_NAME
1309 ": usb register failed, result = %d\n", ret);
1310
1311 return ret;
1312}
1313
1314static void __exit mceusb_dev_exit(void)
1315{
1316 usb_deregister(&mceusb_dev_driver);
1317}
1318
1319module_init(mceusb_dev_init);
1320module_exit(mceusb_dev_exit);
1321
1322MODULE_DESCRIPTION(DRIVER_DESC);
1323MODULE_AUTHOR(DRIVER_AUTHOR);
1324MODULE_LICENSE("GPL");
1325MODULE_DEVICE_TABLE(usb, mceusb_dev_table);
1326
1327module_param(debug, bool, S_IRUGO | S_IWUSR);
1328MODULE_PARM_DESC(debug, "Debug enabled or not");