Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1 | /* |
| 2 | * Driver for USB Windows Media Center Ed. eHome Infrared Transceivers |
| 3 | * |
Jarod Wilson | fda516b | 2011-07-18 16:54:29 -0300 | [diff] [blame] | 4 | * Copyright (c) 2010-2011, Jarod Wilson <jarod@redhat.com> |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 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 Wilson | fda516b | 2011-07-18 16:54:29 -0300 | [diff] [blame] | 18 | * Updated in July of 2011 with the aid of Microsoft's official |
| 19 | * remote/transceiver requirements and specification document, found at |
| 20 | * download.microsoft.com, title |
| 21 | * Windows-Media-Center-RC-IR-Collection-Green-Button-Specification-03-08-2011-V2.pdf |
| 22 | * |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 23 | * |
| 24 | * This program is free software; you can redistribute it and/or modify |
| 25 | * it under the terms of the GNU General Public License as published by |
| 26 | * the Free Software Foundation; either version 2 of the License, or |
| 27 | * (at your option) any later version. |
| 28 | * |
| 29 | * This program is distributed in the hope that it will be useful, |
| 30 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 31 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 32 | * GNU General Public License for more details. |
| 33 | * |
| 34 | * You should have received a copy of the GNU General Public License |
| 35 | * along with this program; if not, write to the Free Software |
| 36 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 37 | * |
| 38 | */ |
| 39 | |
| 40 | #include <linux/device.h> |
| 41 | #include <linux/module.h> |
| 42 | #include <linux/slab.h> |
Paul Bender | 635f76b | 2010-12-16 13:23:07 -0300 | [diff] [blame] | 43 | #include <linux/usb.h> |
| 44 | #include <linux/usb/input.h> |
Jarod Wilson | fa334898 | 2011-07-18 16:54:23 -0300 | [diff] [blame] | 45 | #include <linux/pm_wakeup.h> |
Mauro Carvalho Chehab | 6bda964 | 2010-11-17 13:28:38 -0300 | [diff] [blame] | 46 | #include <media/rc-core.h> |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 47 | |
Jarod Wilson | fda516b | 2011-07-18 16:54:29 -0300 | [diff] [blame] | 48 | #define DRIVER_VERSION "1.92" |
| 49 | #define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>" |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 50 | #define DRIVER_DESC "Windows Media Center Ed. eHome Infrared Transceiver " \ |
| 51 | "device driver" |
| 52 | #define DRIVER_NAME "mceusb" |
| 53 | |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 54 | #define USB_BUFLEN 32 /* USB reception buffer length */ |
| 55 | #define USB_CTRL_MSG_SZ 2 /* Size of usb ctrl msg on gen1 hw */ |
| 56 | #define MCE_G1_INIT_MSGS 40 /* Init messages on gen1 hw to throw out */ |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 57 | |
| 58 | /* MCE constants */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 59 | #define MCE_CMDBUF_SIZE 384 /* MCE Command buffer length */ |
| 60 | #define MCE_TIME_UNIT 50 /* Approx 50us resolution */ |
| 61 | #define MCE_CODE_LENGTH 5 /* Normal length of packet (with header) */ |
| 62 | #define MCE_PACKET_SIZE 4 /* Normal length of packet (without header) */ |
| 63 | #define MCE_IRDATA_HEADER 0x84 /* Actual header format is 0x80 + num_bytes */ |
| 64 | #define MCE_IRDATA_TRAILER 0x80 /* End of IR data */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 65 | #define MCE_MAX_CHANNELS 2 /* Two transmitters, hardware dependent? */ |
| 66 | #define MCE_DEFAULT_TX_MASK 0x03 /* Vals: TX1=0x01, TX2=0x02, ALL=0x03 */ |
| 67 | #define MCE_PULSE_BIT 0x80 /* Pulse bit, MSB set == PULSE else SPACE */ |
| 68 | #define MCE_PULSE_MASK 0x7f /* Pulse mask */ |
| 69 | #define MCE_MAX_PULSE_LENGTH 0x7f /* Longest transmittable pulse symbol */ |
| 70 | |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 71 | /* |
| 72 | * The interface between the host and the IR hardware is command-response |
| 73 | * based. All commands and responses have a consistent format, where a lead |
| 74 | * byte always identifies the type of data following it. The lead byte has |
| 75 | * a port value in the 3 highest bits and a length value in the 5 lowest |
| 76 | * bits. |
| 77 | * |
| 78 | * The length field is overloaded, with a value of 11111 indicating that the |
| 79 | * following byte is a command or response code, and the length of the entire |
| 80 | * message is determined by the code. If the length field is not 11111, then |
| 81 | * it specifies the number of bytes of port data that follow. |
| 82 | */ |
| 83 | #define MCE_CMD 0x1f |
| 84 | #define MCE_PORT_IR 0x4 /* (0x4 << 5) | MCE_CMD = 0x9f */ |
| 85 | #define MCE_PORT_SYS 0x7 /* (0x7 << 5) | MCE_CMD = 0xff */ |
| 86 | #define MCE_PORT_SER 0x6 /* 0xc0 thru 0xdf flush & 0x1f bytes */ |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 87 | #define MCE_PORT_MASK 0xe0 /* Mask out command bits */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 88 | |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 89 | /* Command port headers */ |
| 90 | #define MCE_CMD_PORT_IR 0x9f /* IR-related cmd/rsp */ |
| 91 | #define MCE_CMD_PORT_SYS 0xff /* System (non-IR) device cmd/rsp */ |
| 92 | |
| 93 | /* Commands that set device state (2-4 bytes in length) */ |
| 94 | #define MCE_CMD_RESET 0xfe /* Reset device, 2 bytes */ |
| 95 | #define MCE_CMD_RESUME 0xaa /* Resume device after error, 2 bytes */ |
| 96 | #define MCE_CMD_SETIRCFS 0x06 /* Set tx carrier, 4 bytes */ |
| 97 | #define MCE_CMD_SETIRTIMEOUT 0x0c /* Set timeout, 4 bytes */ |
| 98 | #define MCE_CMD_SETIRTXPORTS 0x08 /* Set tx ports, 3 bytes */ |
| 99 | #define MCE_CMD_SETIRRXPORTEN 0x14 /* Set rx ports, 3 bytes */ |
| 100 | #define MCE_CMD_FLASHLED 0x23 /* Flash receiver LED, 2 bytes */ |
| 101 | |
| 102 | /* Commands that query device state (all 2 bytes, unless noted) */ |
| 103 | #define MCE_CMD_GETIRCFS 0x07 /* Get carrier */ |
| 104 | #define MCE_CMD_GETIRTIMEOUT 0x0d /* Get timeout */ |
| 105 | #define MCE_CMD_GETIRTXPORTS 0x13 /* Get tx ports */ |
| 106 | #define MCE_CMD_GETIRRXPORTEN 0x15 /* Get rx ports */ |
| 107 | #define MCE_CMD_GETPORTSTATUS 0x11 /* Get tx port status, 3 bytes */ |
| 108 | #define MCE_CMD_GETIRNUMPORTS 0x16 /* Get number of ports */ |
| 109 | #define MCE_CMD_GETWAKESOURCE 0x17 /* Get wake source */ |
| 110 | #define MCE_CMD_GETEMVER 0x22 /* Get emulator interface version */ |
| 111 | #define MCE_CMD_GETDEVDETAILS 0x21 /* Get device details (em ver2 only) */ |
| 112 | #define MCE_CMD_GETWAKESUPPORT 0x20 /* Get wake details (em ver2 only) */ |
| 113 | #define MCE_CMD_GETWAKEVERSION 0x18 /* Get wake pattern (em ver2 only) */ |
| 114 | |
| 115 | /* Misc commands */ |
| 116 | #define MCE_CMD_NOP 0xff /* No operation */ |
| 117 | |
| 118 | /* Responses to commands (non-error cases) */ |
| 119 | #define MCE_RSP_EQIRCFS 0x06 /* tx carrier, 4 bytes */ |
| 120 | #define MCE_RSP_EQIRTIMEOUT 0x0c /* rx timeout, 4 bytes */ |
| 121 | #define MCE_RSP_GETWAKESOURCE 0x17 /* wake source, 3 bytes */ |
| 122 | #define MCE_RSP_EQIRTXPORTS 0x08 /* tx port mask, 3 bytes */ |
| 123 | #define MCE_RSP_EQIRRXPORTEN 0x14 /* rx port mask, 3 bytes */ |
| 124 | #define MCE_RSP_GETPORTSTATUS 0x11 /* tx port status, 7 bytes */ |
| 125 | #define MCE_RSP_EQIRRXCFCNT 0x15 /* rx carrier count, 4 bytes */ |
| 126 | #define MCE_RSP_EQIRNUMPORTS 0x16 /* number of ports, 4 bytes */ |
| 127 | #define MCE_RSP_EQWAKESUPPORT 0x20 /* wake capabilities, 3 bytes */ |
| 128 | #define MCE_RSP_EQWAKEVERSION 0x18 /* wake pattern details, 6 bytes */ |
| 129 | #define MCE_RSP_EQDEVDETAILS 0x21 /* device capabilities, 3 bytes */ |
| 130 | #define MCE_RSP_EQEMVER 0x22 /* emulator interface ver, 3 bytes */ |
| 131 | #define MCE_RSP_FLASHLED 0x23 /* success flashing LED, 2 bytes */ |
| 132 | |
| 133 | /* Responses to error cases, must send MCE_CMD_RESUME to clear them */ |
| 134 | #define MCE_RSP_CMD_ILLEGAL 0xfe /* illegal command for port, 2 bytes */ |
| 135 | #define MCE_RSP_TX_TIMEOUT 0x81 /* tx timed out, 2 bytes */ |
| 136 | |
| 137 | /* Misc commands/responses not defined in the MCE remote/transceiver spec */ |
Jarod Wilson | 1cd50f2 | 2010-11-09 18:41:03 -0300 | [diff] [blame] | 138 | #define MCE_CMD_SIG_END 0x01 /* End of signal */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 139 | #define MCE_CMD_PING 0x03 /* Ping device */ |
| 140 | #define MCE_CMD_UNKNOWN 0x04 /* Unknown */ |
| 141 | #define MCE_CMD_UNKNOWN2 0x05 /* Unknown */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 142 | #define MCE_CMD_UNKNOWN3 0x09 /* Unknown */ |
| 143 | #define MCE_CMD_UNKNOWN4 0x0a /* Unknown */ |
| 144 | #define MCE_CMD_G_REVISION 0x0b /* Get hw/sw revision */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 145 | #define MCE_CMD_UNKNOWN5 0x0e /* Unknown */ |
| 146 | #define MCE_CMD_UNKNOWN6 0x0f /* Unknown */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 147 | #define MCE_CMD_UNKNOWN8 0x19 /* Unknown */ |
| 148 | #define MCE_CMD_UNKNOWN9 0x1b /* Unknown */ |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 149 | #define MCE_CMD_NULL 0x00 /* These show up various places... */ |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 150 | |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 151 | /* if buf[i] & MCE_PORT_MASK == 0x80 and buf[i] != MCE_CMD_PORT_IR, |
| 152 | * then we're looking at a raw IR data sample */ |
| 153 | #define MCE_COMMAND_IRDATA 0x80 |
| 154 | #define MCE_PACKET_LENGTH_MASK 0x1f /* Packet length mask */ |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 155 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 156 | #define MCEUSB_RX 1 |
| 157 | #define MCEUSB_TX 2 |
| 158 | |
| 159 | #define VENDOR_PHILIPS 0x0471 |
| 160 | #define VENDOR_SMK 0x0609 |
| 161 | #define VENDOR_TATUNG 0x1460 |
| 162 | #define VENDOR_GATEWAY 0x107b |
| 163 | #define VENDOR_SHUTTLE 0x1308 |
| 164 | #define VENDOR_SHUTTLE2 0x051c |
| 165 | #define VENDOR_MITSUMI 0x03ee |
| 166 | #define VENDOR_TOPSEED 0x1784 |
| 167 | #define VENDOR_RICAVISION 0x179d |
| 168 | #define VENDOR_ITRON 0x195d |
| 169 | #define VENDOR_FIC 0x1509 |
| 170 | #define VENDOR_LG 0x043e |
| 171 | #define VENDOR_MICROSOFT 0x045e |
| 172 | #define VENDOR_FORMOSA 0x147a |
| 173 | #define VENDOR_FINTEK 0x1934 |
| 174 | #define VENDOR_PINNACLE 0x2304 |
| 175 | #define VENDOR_ECS 0x1019 |
| 176 | #define VENDOR_WISTRON 0x0fb8 |
| 177 | #define VENDOR_COMPRO 0x185b |
| 178 | #define VENDOR_NORTHSTAR 0x04eb |
| 179 | #define VENDOR_REALTEK 0x0bda |
| 180 | #define VENDOR_TIVO 0x105a |
Mauro Carvalho Chehab | 56e92f6 | 2010-10-18 16:32:50 -0300 | [diff] [blame] | 181 | #define VENDOR_CONEXANT 0x0572 |
Mark Lord | a4de5f0 | 2012-07-11 18:53:28 -0300 | [diff] [blame] | 182 | #define VENDOR_TWISTEDMELON 0x2596 |
Matthias Schwarzott | eda9dfd | 2013-11-21 17:26:42 -0300 | [diff] [blame] | 183 | #define VENDOR_HAUPPAUGE 0x2040 |
Mauro Carvalho Chehab | 9683e01 | 2014-07-27 17:06:02 -0300 | [diff] [blame] | 184 | #define VENDOR_PCTV 0x2013 |
Olli Salonen | e186613 | 2016-03-17 10:11:09 -0300 | [diff] [blame] | 185 | #define VENDOR_ADAPTEC 0x03f3 |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 186 | |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 187 | enum mceusb_model_type { |
| 188 | MCE_GEN2 = 0, /* Most boards */ |
| 189 | MCE_GEN1, |
| 190 | MCE_GEN3, |
| 191 | MCE_GEN2_TX_INV, |
| 192 | POLARIS_EVK, |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 193 | CX_HYBRID_TV, |
Jarod Wilson | a6994eb | 2011-03-01 12:38:28 -0300 | [diff] [blame] | 194 | MULTIFUNCTION, |
Jarod Wilson | d8ee99e | 2011-03-24 12:59:10 -0300 | [diff] [blame] | 195 | TIVO_KIT, |
Jarod Wilson | 2faa0ca | 2011-04-19 16:47:34 -0300 | [diff] [blame] | 196 | MCE_GEN2_NO_TX, |
Matthias Schwarzott | eda9dfd | 2013-11-21 17:26:42 -0300 | [diff] [blame] | 197 | HAUPPAUGE_CX_HYBRID_TV, |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 198 | }; |
| 199 | |
| 200 | struct mceusb_model { |
| 201 | u32 mce_gen1:1; |
| 202 | u32 mce_gen2:1; |
| 203 | u32 mce_gen3:1; |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 204 | u32 tx_mask_normal:1; |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 205 | u32 no_tx:1; |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 206 | |
Jarod Wilson | a6994eb | 2011-03-01 12:38:28 -0300 | [diff] [blame] | 207 | int ir_intfnum; |
| 208 | |
Mauro Carvalho Chehab | 17c2b1f | 2010-10-22 11:51:50 -0300 | [diff] [blame] | 209 | const char *rc_map; /* Allow specify a per-board map */ |
Mauro Carvalho Chehab | 3459d45 | 2010-10-22 11:52:53 -0300 | [diff] [blame] | 210 | const char *name; /* per-board name */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | static const struct mceusb_model mceusb_model[] = { |
| 214 | [MCE_GEN1] = { |
| 215 | .mce_gen1 = 1, |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 216 | .tx_mask_normal = 1, |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 217 | }, |
| 218 | [MCE_GEN2] = { |
| 219 | .mce_gen2 = 1, |
| 220 | }, |
Jarod Wilson | 2faa0ca | 2011-04-19 16:47:34 -0300 | [diff] [blame] | 221 | [MCE_GEN2_NO_TX] = { |
| 222 | .mce_gen2 = 1, |
| 223 | .no_tx = 1, |
| 224 | }, |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 225 | [MCE_GEN2_TX_INV] = { |
| 226 | .mce_gen2 = 1, |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 227 | .tx_mask_normal = 1, |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 228 | }, |
| 229 | [MCE_GEN3] = { |
| 230 | .mce_gen3 = 1, |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 231 | .tx_mask_normal = 1, |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 232 | }, |
| 233 | [POLARIS_EVK] = { |
Mauro Carvalho Chehab | 17c2b1f | 2010-10-22 11:51:50 -0300 | [diff] [blame] | 234 | /* |
| 235 | * In fact, the EVK is shipped without |
| 236 | * remotes, but we should have something handy, |
| 237 | * to allow testing it |
| 238 | */ |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 239 | .name = "Conexant Hybrid TV (cx231xx) MCE IR", |
| 240 | }, |
| 241 | [CX_HYBRID_TV] = { |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 242 | .no_tx = 1, /* tx isn't wired up at all */ |
| 243 | .name = "Conexant Hybrid TV (cx231xx) MCE IR", |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 244 | }, |
Matthias Schwarzott | eda9dfd | 2013-11-21 17:26:42 -0300 | [diff] [blame] | 245 | [HAUPPAUGE_CX_HYBRID_TV] = { |
Matthias Schwarzott | eda9dfd | 2013-11-21 17:26:42 -0300 | [diff] [blame] | 246 | .no_tx = 1, /* eeprom says it has no tx */ |
| 247 | .name = "Conexant Hybrid TV (cx231xx) MCE IR no TX", |
| 248 | }, |
Jarod Wilson | a6994eb | 2011-03-01 12:38:28 -0300 | [diff] [blame] | 249 | [MULTIFUNCTION] = { |
| 250 | .mce_gen2 = 1, |
| 251 | .ir_intfnum = 2, |
| 252 | }, |
Jarod Wilson | d8ee99e | 2011-03-24 12:59:10 -0300 | [diff] [blame] | 253 | [TIVO_KIT] = { |
| 254 | .mce_gen2 = 1, |
| 255 | .rc_map = RC_MAP_TIVO, |
| 256 | }, |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 257 | }; |
| 258 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 259 | static struct usb_device_id mceusb_dev_table[] = { |
| 260 | /* Original Microsoft MCE IR Transceiver (often HP-branded) */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 261 | { USB_DEVICE(VENDOR_MICROSOFT, 0x006d), |
| 262 | .driver_info = MCE_GEN1 }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 263 | /* Philips Infrared Transceiver - Sahara branded */ |
| 264 | { USB_DEVICE(VENDOR_PHILIPS, 0x0608) }, |
| 265 | /* Philips Infrared Transceiver - HP branded */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 266 | { USB_DEVICE(VENDOR_PHILIPS, 0x060c), |
| 267 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 268 | /* Philips SRM5100 */ |
| 269 | { USB_DEVICE(VENDOR_PHILIPS, 0x060d) }, |
| 270 | /* Philips Infrared Transceiver - Omaura */ |
| 271 | { USB_DEVICE(VENDOR_PHILIPS, 0x060f) }, |
| 272 | /* Philips Infrared Transceiver - Spinel plus */ |
| 273 | { USB_DEVICE(VENDOR_PHILIPS, 0x0613) }, |
| 274 | /* Philips eHome Infrared Transceiver */ |
| 275 | { USB_DEVICE(VENDOR_PHILIPS, 0x0815) }, |
Jarod Wilson | c13df9c | 2010-08-27 18:21:14 -0300 | [diff] [blame] | 276 | /* Philips/Spinel plus IR transceiver for ASUS */ |
| 277 | { USB_DEVICE(VENDOR_PHILIPS, 0x206c) }, |
| 278 | /* Philips/Spinel plus IR transceiver for ASUS */ |
| 279 | { USB_DEVICE(VENDOR_PHILIPS, 0x2088) }, |
Jarod Wilson | e296e12 | 2011-04-25 14:48:18 -0300 | [diff] [blame] | 280 | /* Philips IR transceiver (Dell branded) */ |
Sean Young | 8dfef67 | 2013-01-29 08:19:29 -0300 | [diff] [blame] | 281 | { USB_DEVICE(VENDOR_PHILIPS, 0x2093), |
| 282 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | a6994eb | 2011-03-01 12:38:28 -0300 | [diff] [blame] | 283 | /* Realtek MCE IR Receiver and card reader */ |
| 284 | { USB_DEVICE(VENDOR_REALTEK, 0x0161), |
| 285 | .driver_info = MULTIFUNCTION }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 286 | /* SMK/Toshiba G83C0004D410 */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 287 | { USB_DEVICE(VENDOR_SMK, 0x031d), |
| 288 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 289 | /* SMK eHome Infrared Transceiver (Sony VAIO) */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 290 | { USB_DEVICE(VENDOR_SMK, 0x0322), |
| 291 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 292 | /* bundled with Hauppauge PVR-150 */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 293 | { USB_DEVICE(VENDOR_SMK, 0x0334), |
| 294 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 295 | /* SMK eHome Infrared Transceiver */ |
| 296 | { USB_DEVICE(VENDOR_SMK, 0x0338) }, |
Jarod Wilson | b825fe1b | 2011-05-26 16:03:17 -0300 | [diff] [blame] | 297 | /* SMK/I-O Data GV-MC7/RCKIT Receiver */ |
| 298 | { USB_DEVICE(VENDOR_SMK, 0x0353), |
| 299 | .driver_info = MCE_GEN2_NO_TX }, |
Olli Salonen | 1869384 | 2016-03-17 10:11:10 -0300 | [diff] [blame] | 300 | /* SMK RXX6000 Infrared Receiver */ |
| 301 | { USB_DEVICE(VENDOR_SMK, 0x0357), |
| 302 | .driver_info = MCE_GEN2_NO_TX }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 303 | /* Tatung eHome Infrared Transceiver */ |
| 304 | { USB_DEVICE(VENDOR_TATUNG, 0x9150) }, |
| 305 | /* Shuttle eHome Infrared Transceiver */ |
| 306 | { USB_DEVICE(VENDOR_SHUTTLE, 0xc001) }, |
| 307 | /* Shuttle eHome Infrared Transceiver */ |
| 308 | { USB_DEVICE(VENDOR_SHUTTLE2, 0xc001) }, |
| 309 | /* Gateway eHome Infrared Transceiver */ |
| 310 | { USB_DEVICE(VENDOR_GATEWAY, 0x3009) }, |
| 311 | /* Mitsumi */ |
| 312 | { USB_DEVICE(VENDOR_MITSUMI, 0x2501) }, |
| 313 | /* Topseed eHome Infrared Transceiver */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 314 | { USB_DEVICE(VENDOR_TOPSEED, 0x0001), |
| 315 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 316 | /* Topseed HP eHome Infrared Transceiver */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 317 | { USB_DEVICE(VENDOR_TOPSEED, 0x0006), |
| 318 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 319 | /* Topseed eHome Infrared Transceiver */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 320 | { USB_DEVICE(VENDOR_TOPSEED, 0x0007), |
| 321 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 322 | /* Topseed eHome Infrared Transceiver */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 323 | { USB_DEVICE(VENDOR_TOPSEED, 0x0008), |
| 324 | .driver_info = MCE_GEN3 }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 325 | /* Topseed eHome Infrared Transceiver */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 326 | { USB_DEVICE(VENDOR_TOPSEED, 0x000a), |
| 327 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 328 | /* Topseed eHome Infrared Transceiver */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 329 | { USB_DEVICE(VENDOR_TOPSEED, 0x0011), |
Jarod Wilson | 7d9a46f | 2011-03-04 20:20:47 -0300 | [diff] [blame] | 330 | .driver_info = MCE_GEN3 }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 331 | /* Ricavision internal Infrared Transceiver */ |
| 332 | { USB_DEVICE(VENDOR_RICAVISION, 0x0010) }, |
| 333 | /* Itron ione Libra Q-11 */ |
| 334 | { USB_DEVICE(VENDOR_ITRON, 0x7002) }, |
| 335 | /* FIC eHome Infrared Transceiver */ |
| 336 | { USB_DEVICE(VENDOR_FIC, 0x9242) }, |
| 337 | /* LG eHome Infrared Transceiver */ |
| 338 | { USB_DEVICE(VENDOR_LG, 0x9803) }, |
| 339 | /* Microsoft MCE Infrared Transceiver */ |
| 340 | { USB_DEVICE(VENDOR_MICROSOFT, 0x00a0) }, |
| 341 | /* Formosa eHome Infrared Transceiver */ |
| 342 | { USB_DEVICE(VENDOR_FORMOSA, 0xe015) }, |
| 343 | /* Formosa21 / eHome Infrared Receiver */ |
| 344 | { USB_DEVICE(VENDOR_FORMOSA, 0xe016) }, |
| 345 | /* Formosa aim / Trust MCE Infrared Receiver */ |
Jarod Wilson | 2faa0ca | 2011-04-19 16:47:34 -0300 | [diff] [blame] | 346 | { USB_DEVICE(VENDOR_FORMOSA, 0xe017), |
| 347 | .driver_info = MCE_GEN2_NO_TX }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 348 | /* Formosa Industrial Computing / Beanbag Emulation Device */ |
| 349 | { USB_DEVICE(VENDOR_FORMOSA, 0xe018) }, |
| 350 | /* Formosa21 / eHome Infrared Receiver */ |
| 351 | { USB_DEVICE(VENDOR_FORMOSA, 0xe03a) }, |
| 352 | /* Formosa Industrial Computing AIM IR605/A */ |
| 353 | { USB_DEVICE(VENDOR_FORMOSA, 0xe03c) }, |
| 354 | /* Formosa Industrial Computing */ |
| 355 | { USB_DEVICE(VENDOR_FORMOSA, 0xe03e) }, |
Jarod Wilson | 22f1732 | 2012-03-12 13:27:03 -0300 | [diff] [blame] | 356 | /* Formosa Industrial Computing */ |
| 357 | { USB_DEVICE(VENDOR_FORMOSA, 0xe042) }, |
Jarod Wilson | fbb1f1b | 2010-12-16 13:27:11 -0300 | [diff] [blame] | 358 | /* Fintek eHome Infrared Transceiver (HP branded) */ |
Sean Young | db8ee10 | 2013-01-29 08:19:30 -0300 | [diff] [blame] | 359 | { USB_DEVICE(VENDOR_FINTEK, 0x5168), |
| 360 | .driver_info = MCE_GEN2_TX_INV }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 361 | /* Fintek eHome Infrared Transceiver */ |
| 362 | { USB_DEVICE(VENDOR_FINTEK, 0x0602) }, |
| 363 | /* Fintek eHome Infrared Transceiver (in the AOpen MP45) */ |
| 364 | { USB_DEVICE(VENDOR_FINTEK, 0x0702) }, |
| 365 | /* Pinnacle Remote Kit */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 366 | { USB_DEVICE(VENDOR_PINNACLE, 0x0225), |
| 367 | .driver_info = MCE_GEN3 }, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 368 | /* Elitegroup Computer Systems IR */ |
| 369 | { USB_DEVICE(VENDOR_ECS, 0x0f38) }, |
| 370 | /* Wistron Corp. eHome Infrared Receiver */ |
| 371 | { USB_DEVICE(VENDOR_WISTRON, 0x0002) }, |
| 372 | /* Compro K100 */ |
| 373 | { USB_DEVICE(VENDOR_COMPRO, 0x3020) }, |
| 374 | /* Compro K100 v2 */ |
| 375 | { USB_DEVICE(VENDOR_COMPRO, 0x3082) }, |
| 376 | /* Northstar Systems, Inc. eHome Infrared Transceiver */ |
| 377 | { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) }, |
| 378 | /* TiVo PC IR Receiver */ |
Jarod Wilson | d8ee99e | 2011-03-24 12:59:10 -0300 | [diff] [blame] | 379 | { USB_DEVICE(VENDOR_TIVO, 0x2000), |
| 380 | .driver_info = TIVO_KIT }, |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 381 | /* Conexant Hybrid TV "Shelby" Polaris SDK */ |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 382 | { USB_DEVICE(VENDOR_CONEXANT, 0x58a1), |
| 383 | .driver_info = POLARIS_EVK }, |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 384 | /* Conexant Hybrid TV RDU253S Polaris */ |
| 385 | { USB_DEVICE(VENDOR_CONEXANT, 0x58a5), |
| 386 | .driver_info = CX_HYBRID_TV }, |
Mark Lord | a4de5f0 | 2012-07-11 18:53:28 -0300 | [diff] [blame] | 387 | /* Twisted Melon Inc. - Manta Mini Receiver */ |
| 388 | { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8008) }, |
| 389 | /* Twisted Melon Inc. - Manta Pico Receiver */ |
| 390 | { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8016) }, |
| 391 | /* Twisted Melon Inc. - Manta Transceiver */ |
| 392 | { USB_DEVICE(VENDOR_TWISTEDMELON, 0x8042) }, |
Matthias Schwarzott | eda9dfd | 2013-11-21 17:26:42 -0300 | [diff] [blame] | 393 | /* Hauppauge WINTV-HVR-HVR 930C-HD - based on cx231xx */ |
| 394 | { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb130), |
| 395 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, |
Mauro Carvalho Chehab | 9683e01 | 2014-07-27 17:06:02 -0300 | [diff] [blame] | 396 | { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb131), |
| 397 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, |
Matthias Schwarzott | 6675661 | 2014-08-31 08:35:10 -0300 | [diff] [blame] | 398 | { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb138), |
| 399 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, |
| 400 | { USB_DEVICE(VENDOR_HAUPPAUGE, 0xb139), |
| 401 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, |
Mauro Carvalho Chehab | 9683e01 | 2014-07-27 17:06:02 -0300 | [diff] [blame] | 402 | { USB_DEVICE(VENDOR_PCTV, 0x0259), |
| 403 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, |
| 404 | { USB_DEVICE(VENDOR_PCTV, 0x025e), |
| 405 | .driver_info = HAUPPAUGE_CX_HYBRID_TV }, |
Olli Salonen | e186613 | 2016-03-17 10:11:09 -0300 | [diff] [blame] | 406 | /* Adaptec / HP eHome Receiver */ |
| 407 | { USB_DEVICE(VENDOR_ADAPTEC, 0x0094) }, |
Mauro Carvalho Chehab | 9683e01 | 2014-07-27 17:06:02 -0300 | [diff] [blame] | 408 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 409 | /* Terminating entry */ |
| 410 | { } |
| 411 | }; |
| 412 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 413 | /* data structure for each usb transceiver */ |
| 414 | struct mceusb_dev { |
| 415 | /* ir-core bits */ |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 416 | struct rc_dev *rc; |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 417 | |
| 418 | /* optional features we can enable */ |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 419 | bool learning_enabled; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 420 | |
| 421 | /* core device bits */ |
| 422 | struct device *dev; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 423 | |
| 424 | /* usb */ |
| 425 | struct usb_device *usbdev; |
| 426 | struct urb *urb_in; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 427 | struct usb_endpoint_descriptor *usb_ep_out; |
| 428 | |
| 429 | /* buffers and dma */ |
| 430 | unsigned char *buf_in; |
| 431 | unsigned int len_in; |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 432 | dma_addr_t dma_in; |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 433 | |
| 434 | enum { |
| 435 | CMD_HEADER = 0, |
| 436 | SUBCMD, |
| 437 | CMD_DATA, |
| 438 | PARSE_IRDATA, |
| 439 | } parser_state; |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 440 | |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 441 | u8 cmd, rem; /* Remaining IR data bytes in packet */ |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 442 | |
| 443 | struct { |
| 444 | u32 connected:1; |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 445 | u32 tx_mask_normal:1; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 446 | u32 microsoft_gen1:1; |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 447 | u32 no_tx:1; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 448 | } flags; |
| 449 | |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 450 | /* transmit support */ |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 451 | u32 carrier; |
| 452 | unsigned char tx_mask; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 453 | |
| 454 | char name[128]; |
| 455 | char phys[64]; |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 456 | enum mceusb_model_type model; |
Jarod Wilson | 4840b78 | 2011-07-18 16:54:24 -0300 | [diff] [blame] | 457 | |
| 458 | bool need_reset; /* flag to issue a device resume cmd */ |
Jarod Wilson | ab1072e | 2011-07-18 16:54:25 -0300 | [diff] [blame] | 459 | u8 emver; /* emulator interface version */ |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 460 | u8 num_txports; /* number of transmit ports */ |
| 461 | u8 num_rxports; /* number of receive sensors */ |
| 462 | u8 txports_cabled; /* bitmask of transmitters with cable */ |
| 463 | u8 rxports_active; /* bitmask of active receive sensors */ |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 464 | }; |
| 465 | |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 466 | /* MCE Device Command Strings, generally a port and command pair */ |
| 467 | static char DEVICE_RESUME[] = {MCE_CMD_NULL, MCE_CMD_PORT_SYS, |
| 468 | MCE_CMD_RESUME}; |
| 469 | static char GET_REVISION[] = {MCE_CMD_PORT_SYS, MCE_CMD_G_REVISION}; |
Jarod Wilson | ab1072e | 2011-07-18 16:54:25 -0300 | [diff] [blame] | 470 | static char GET_EMVER[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETEMVER}; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 471 | static char GET_WAKEVERSION[] = {MCE_CMD_PORT_SYS, MCE_CMD_GETWAKEVERSION}; |
Jarod Wilson | b71969b | 2011-07-18 16:54:27 -0300 | [diff] [blame] | 472 | static char FLASH_LED[] = {MCE_CMD_PORT_SYS, MCE_CMD_FLASHLED}; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 473 | static char GET_UNKNOWN2[] = {MCE_CMD_PORT_IR, MCE_CMD_UNKNOWN2}; |
| 474 | static char GET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRCFS}; |
| 475 | static char GET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTIMEOUT}; |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 476 | static char GET_NUM_PORTS[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRNUMPORTS}; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 477 | static char GET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRTXPORTS}; |
| 478 | static char GET_RX_SENSOR[] = {MCE_CMD_PORT_IR, MCE_CMD_GETIRRXPORTEN}; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 479 | /* sub in desired values in lower byte or bytes for full command */ |
| 480 | /* FIXME: make use of these for transmit. |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 481 | static char SET_CARRIER_FREQ[] = {MCE_CMD_PORT_IR, |
| 482 | MCE_CMD_SETIRCFS, 0x00, 0x00}; |
| 483 | static char SET_TX_BITMASK[] = {MCE_CMD_PORT_IR, MCE_CMD_SETIRTXPORTS, 0x00}; |
| 484 | static char SET_RX_TIMEOUT[] = {MCE_CMD_PORT_IR, |
| 485 | MCE_CMD_SETIRTIMEOUT, 0x00, 0x00}; |
| 486 | static char SET_RX_SENSOR[] = {MCE_CMD_PORT_IR, |
| 487 | MCE_RSP_EQIRRXPORTEN, 0x00}; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 488 | */ |
| 489 | |
William Steidtmann | 76dea4c | 2013-04-15 17:17:11 -0300 | [diff] [blame] | 490 | static int mceusb_cmd_datasize(u8 cmd, u8 subcmd) |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 491 | { |
| 492 | int datasize = 0; |
| 493 | |
| 494 | switch (cmd) { |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 495 | case MCE_CMD_NULL: |
| 496 | if (subcmd == MCE_CMD_PORT_SYS) |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 497 | datasize = 1; |
| 498 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 499 | case MCE_CMD_PORT_SYS: |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 500 | switch (subcmd) { |
William Steidtmann | 76dea4c | 2013-04-15 17:17:11 -0300 | [diff] [blame] | 501 | case MCE_RSP_GETPORTSTATUS: |
| 502 | datasize = 5; |
| 503 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 504 | case MCE_RSP_EQWAKEVERSION: |
| 505 | datasize = 4; |
| 506 | break; |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 507 | case MCE_CMD_G_REVISION: |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 508 | datasize = 2; |
| 509 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 510 | case MCE_RSP_EQWAKESUPPORT: |
William Steidtmann | 76dea4c | 2013-04-15 17:17:11 -0300 | [diff] [blame] | 511 | case MCE_RSP_GETWAKESOURCE: |
| 512 | case MCE_RSP_EQDEVDETAILS: |
| 513 | case MCE_RSP_EQEMVER: |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 514 | datasize = 1; |
| 515 | break; |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 516 | } |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 517 | case MCE_CMD_PORT_IR: |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 518 | switch (subcmd) { |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 519 | case MCE_CMD_UNKNOWN: |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 520 | case MCE_RSP_EQIRCFS: |
| 521 | case MCE_RSP_EQIRTIMEOUT: |
| 522 | case MCE_RSP_EQIRRXCFCNT: |
William Steidtmann | 76dea4c | 2013-04-15 17:17:11 -0300 | [diff] [blame] | 523 | case MCE_RSP_EQIRNUMPORTS: |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 524 | datasize = 2; |
| 525 | break; |
Jarod Wilson | 1cd50f2 | 2010-11-09 18:41:03 -0300 | [diff] [blame] | 526 | case MCE_CMD_SIG_END: |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 527 | case MCE_RSP_EQIRTXPORTS: |
| 528 | case MCE_RSP_EQIRRXPORTEN: |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 529 | datasize = 1; |
| 530 | break; |
| 531 | } |
| 532 | } |
| 533 | return datasize; |
| 534 | } |
| 535 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 536 | static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf, |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 537 | int offset, int len, bool out) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 538 | { |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 539 | #if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG) |
| 540 | char *inout; |
Hans Verkuil | 5becbc5 | 2012-05-14 10:22:58 -0300 | [diff] [blame] | 541 | u8 cmd, subcmd, data1, data2, data3, data4; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 542 | struct device *dev = ir->dev; |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 543 | int start, skip = 0; |
Jarod Wilson | e217fb4 | 2011-07-18 16:54:28 -0300 | [diff] [blame] | 544 | u32 carrier, period; |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 545 | |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 546 | /* skip meaningless 0xb1 0x60 header bytes on orig receiver */ |
Jarod Wilson | 29b4494 | 2010-11-09 18:41:46 -0300 | [diff] [blame] | 547 | if (ir->flags.microsoft_gen1 && !out && !offset) |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 548 | skip = 2; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 549 | |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 550 | if (len <= skip) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 551 | return; |
| 552 | |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 553 | dev_dbg(dev, "%cx data: %*ph (length=%d)", |
| 554 | (out ? 't' : 'r'), min(len, USB_BUFLEN), buf, len); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 555 | |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 556 | inout = out ? "Request" : "Got"; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 557 | |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 558 | start = offset + skip; |
| 559 | cmd = buf[start] & 0xff; |
| 560 | subcmd = buf[start + 1] & 0xff; |
| 561 | data1 = buf[start + 2] & 0xff; |
| 562 | data2 = buf[start + 3] & 0xff; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 563 | data3 = buf[start + 4] & 0xff; |
| 564 | data4 = buf[start + 5] & 0xff; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 565 | |
| 566 | switch (cmd) { |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 567 | case MCE_CMD_NULL: |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 568 | if (subcmd == MCE_CMD_NULL) |
| 569 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 570 | if ((subcmd == MCE_CMD_PORT_SYS) && |
| 571 | (data1 == MCE_CMD_RESUME)) |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 572 | dev_dbg(dev, "Device resume requested"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 573 | else |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 574 | dev_dbg(dev, "Unknown command 0x%02x 0x%02x", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 575 | cmd, subcmd); |
| 576 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 577 | case MCE_CMD_PORT_SYS: |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 578 | switch (subcmd) { |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 579 | case MCE_RSP_EQEMVER: |
| 580 | if (!out) |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 581 | dev_dbg(dev, "Emulator interface version %x", |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 582 | data1); |
| 583 | break; |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 584 | case MCE_CMD_G_REVISION: |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 585 | if (len == 2) |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 586 | dev_dbg(dev, "Get hw/sw rev?"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 587 | else |
Mauro Carvalho Chehab | eef8fc3 | 2016-03-06 10:00:09 -0300 | [diff] [blame] | 588 | dev_dbg(dev, "hw/sw rev %*ph", |
| 589 | 4, &buf[start + 2]); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 590 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 591 | case MCE_CMD_RESUME: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 592 | dev_dbg(dev, "Device resume requested"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 593 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 594 | case MCE_RSP_CMD_ILLEGAL: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 595 | dev_dbg(dev, "Illegal PORT_SYS command"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 596 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 597 | case MCE_RSP_EQWAKEVERSION: |
| 598 | if (!out) |
Mauro Carvalho Chehab | 25ec587 | 2016-10-18 17:44:25 -0200 | [diff] [blame] | 599 | dev_dbg(dev, "Wake version, proto: 0x%02x, payload: 0x%02x, address: 0x%02x, version: 0x%02x", |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 600 | data1, data2, data3, data4); |
| 601 | break; |
| 602 | case MCE_RSP_GETPORTSTATUS: |
| 603 | if (!out) |
| 604 | /* We use data1 + 1 here, to match hw labels */ |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 605 | dev_dbg(dev, "TX port %d: blaster is%s connected", |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 606 | data1 + 1, data4 ? " not" : ""); |
| 607 | break; |
Jarod Wilson | b71969b | 2011-07-18 16:54:27 -0300 | [diff] [blame] | 608 | case MCE_CMD_FLASHLED: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 609 | dev_dbg(dev, "Attempting to flash LED"); |
Jarod Wilson | b71969b | 2011-07-18 16:54:27 -0300 | [diff] [blame] | 610 | break; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 611 | default: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 612 | dev_dbg(dev, "Unknown command 0x%02x 0x%02x", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 613 | cmd, subcmd); |
| 614 | break; |
| 615 | } |
| 616 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 617 | case MCE_CMD_PORT_IR: |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 618 | switch (subcmd) { |
Jarod Wilson | 1cd50f2 | 2010-11-09 18:41:03 -0300 | [diff] [blame] | 619 | case MCE_CMD_SIG_END: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 620 | dev_dbg(dev, "End of signal"); |
Jarod Wilson | 1cd50f2 | 2010-11-09 18:41:03 -0300 | [diff] [blame] | 621 | break; |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 622 | case MCE_CMD_PING: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 623 | dev_dbg(dev, "Ping"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 624 | break; |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 625 | case MCE_CMD_UNKNOWN: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 626 | dev_dbg(dev, "Resp to 9f 05 of 0x%02x 0x%02x", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 627 | data1, data2); |
| 628 | break; |
Jarod Wilson | e217fb4 | 2011-07-18 16:54:28 -0300 | [diff] [blame] | 629 | case MCE_RSP_EQIRCFS: |
| 630 | period = DIV_ROUND_CLOSEST( |
Jean Delvare | ed7dd24 | 2012-09-01 14:53:57 -0300 | [diff] [blame] | 631 | (1U << data1 * 2) * (data2 + 1), 10); |
Jarod Wilson | e217fb4 | 2011-07-18 16:54:28 -0300 | [diff] [blame] | 632 | if (!period) |
| 633 | break; |
| 634 | carrier = (1000 * 1000) / period; |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 635 | dev_dbg(dev, "%s carrier of %u Hz (period %uus)", |
Jarod Wilson | e217fb4 | 2011-07-18 16:54:28 -0300 | [diff] [blame] | 636 | inout, carrier, period); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 637 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 638 | case MCE_CMD_GETIRCFS: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 639 | dev_dbg(dev, "Get carrier mode and freq"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 640 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 641 | case MCE_RSP_EQIRTXPORTS: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 642 | dev_dbg(dev, "%s transmit blaster mask of 0x%02x", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 643 | inout, data1); |
| 644 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 645 | case MCE_RSP_EQIRTIMEOUT: |
Rafi Rubin | f3e456c | 2011-07-03 17:13:52 -0300 | [diff] [blame] | 646 | /* value is in units of 50us, so x*50/1000 ms */ |
Jarod Wilson | e217fb4 | 2011-07-18 16:54:28 -0300 | [diff] [blame] | 647 | period = ((data1 << 8) | data2) * MCE_TIME_UNIT / 1000; |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 648 | dev_dbg(dev, "%s receive timeout of %d ms", |
Jarod Wilson | e217fb4 | 2011-07-18 16:54:28 -0300 | [diff] [blame] | 649 | inout, period); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 650 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 651 | case MCE_CMD_GETIRTIMEOUT: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 652 | dev_dbg(dev, "Get receive timeout"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 653 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 654 | case MCE_CMD_GETIRTXPORTS: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 655 | dev_dbg(dev, "Get transmit blaster mask"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 656 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 657 | case MCE_RSP_EQIRRXPORTEN: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 658 | dev_dbg(dev, "%s %s-range receive sensor in use", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 659 | inout, data1 == 0x02 ? "short" : "long"); |
| 660 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 661 | case MCE_CMD_GETIRRXPORTEN: |
| 662 | /* aka MCE_RSP_EQIRRXCFCNT */ |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 663 | if (out) |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 664 | dev_dbg(dev, "Get receive sensor"); |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 665 | else if (ir->learning_enabled) |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 666 | dev_dbg(dev, "RX pulse count: %d", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 667 | ((data1 << 8) | data2)); |
| 668 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 669 | case MCE_RSP_EQIRNUMPORTS: |
| 670 | if (out) |
| 671 | break; |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 672 | dev_dbg(dev, "Num TX ports: %x, num RX ports: %x", |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 673 | data1, data2); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 674 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 675 | case MCE_RSP_CMD_ILLEGAL: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 676 | dev_dbg(dev, "Illegal PORT_IR command"); |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 677 | break; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 678 | default: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 679 | dev_dbg(dev, "Unknown command 0x%02x 0x%02x", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 680 | cmd, subcmd); |
| 681 | break; |
| 682 | } |
| 683 | break; |
| 684 | default: |
| 685 | break; |
| 686 | } |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 687 | |
| 688 | if (cmd == MCE_IRDATA_TRAILER) |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 689 | dev_dbg(dev, "End of raw IR data"); |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 690 | else if ((cmd != MCE_CMD_PORT_IR) && |
| 691 | ((cmd & MCE_PORT_MASK) == MCE_COMMAND_IRDATA)) |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 692 | dev_dbg(dev, "Raw IR data, %d pulse/space samples", ir->rem); |
| 693 | #endif |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 694 | } |
| 695 | |
Sean Young | 6ac454a | 2012-07-15 13:31:31 -0300 | [diff] [blame] | 696 | static void mce_async_callback(struct urb *urb) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 697 | { |
| 698 | struct mceusb_dev *ir; |
| 699 | int len; |
| 700 | |
| 701 | if (!urb) |
| 702 | return; |
| 703 | |
| 704 | ir = urb->context; |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 705 | |
| 706 | switch (urb->status) { |
| 707 | /* success */ |
| 708 | case 0: |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 709 | len = urb->actual_length; |
| 710 | |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 711 | mceusb_dev_printdata(ir, urb->transfer_buffer, 0, len, true); |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 712 | break; |
| 713 | |
| 714 | case -ECONNRESET: |
| 715 | case -ENOENT: |
| 716 | case -EILSEQ: |
| 717 | case -ESHUTDOWN: |
| 718 | break; |
| 719 | |
| 720 | case -EPIPE: |
| 721 | default: |
| 722 | dev_err(ir->dev, "Error: request urb status = %d", urb->status); |
| 723 | break; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 724 | } |
| 725 | |
Jarod Wilson | 0b43fcd | 2011-05-24 16:44:54 -0300 | [diff] [blame] | 726 | /* the transfer buffer and urb were allocated in mce_request_packet */ |
| 727 | kfree(urb->transfer_buffer); |
| 728 | usb_free_urb(urb); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | /* request incoming or send outgoing usb packet - used to initialize remote */ |
Jarod Wilson | 51ea629 | 2011-05-10 14:09:59 -0300 | [diff] [blame] | 732 | static void mce_request_packet(struct mceusb_dev *ir, unsigned char *data, |
| 733 | int size, int urb_type) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 734 | { |
Jarod Wilson | 51ea629 | 2011-05-10 14:09:59 -0300 | [diff] [blame] | 735 | int res, pipe; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 736 | struct urb *async_urb; |
| 737 | struct device *dev = ir->dev; |
| 738 | unsigned char *async_buf; |
| 739 | |
| 740 | if (urb_type == MCEUSB_TX) { |
| 741 | async_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 742 | if (unlikely(!async_urb)) { |
| 743 | dev_err(dev, "Error, couldn't allocate urb!\n"); |
| 744 | return; |
| 745 | } |
| 746 | |
| 747 | async_buf = kzalloc(size, GFP_KERNEL); |
| 748 | if (!async_buf) { |
| 749 | dev_err(dev, "Error, couldn't allocate buf!\n"); |
| 750 | usb_free_urb(async_urb); |
| 751 | return; |
| 752 | } |
| 753 | |
| 754 | /* outbound data */ |
Matt DeVillier | 0cacb46 | 2014-04-24 11:16:31 -0300 | [diff] [blame] | 755 | if (usb_endpoint_xfer_int(ir->usb_ep_out)) { |
| 756 | pipe = usb_sndintpipe(ir->usbdev, |
| 757 | ir->usb_ep_out->bEndpointAddress); |
| 758 | usb_fill_int_urb(async_urb, ir->usbdev, pipe, async_buf, |
| 759 | size, mce_async_callback, ir, |
| 760 | ir->usb_ep_out->bInterval); |
| 761 | } else { |
| 762 | pipe = usb_sndbulkpipe(ir->usbdev, |
| 763 | ir->usb_ep_out->bEndpointAddress); |
| 764 | usb_fill_bulk_urb(async_urb, ir->usbdev, pipe, |
| 765 | async_buf, size, mce_async_callback, |
| 766 | ir); |
| 767 | } |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 768 | memcpy(async_buf, data, size); |
| 769 | |
| 770 | } else if (urb_type == MCEUSB_RX) { |
| 771 | /* standard request */ |
| 772 | async_urb = ir->urb_in; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 773 | } else { |
| 774 | dev_err(dev, "Error! Unknown urb type %d\n", urb_type); |
| 775 | return; |
| 776 | } |
| 777 | |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 778 | dev_dbg(dev, "receive request called (size=%#x)", size); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 779 | |
| 780 | async_urb->transfer_buffer_length = size; |
| 781 | async_urb->dev = ir->usbdev; |
| 782 | |
| 783 | res = usb_submit_urb(async_urb, GFP_ATOMIC); |
| 784 | if (res) { |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 785 | dev_err(dev, "receive request FAILED! (res=%d)", res); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 786 | return; |
| 787 | } |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 788 | dev_dbg(dev, "receive request complete (res=%d)", res); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 789 | } |
| 790 | |
| 791 | static void mce_async_out(struct mceusb_dev *ir, unsigned char *data, int size) |
| 792 | { |
Jarod Wilson | 4840b78 | 2011-07-18 16:54:24 -0300 | [diff] [blame] | 793 | int rsize = sizeof(DEVICE_RESUME); |
| 794 | |
| 795 | if (ir->need_reset) { |
| 796 | ir->need_reset = false; |
| 797 | mce_request_packet(ir, DEVICE_RESUME, rsize, MCEUSB_TX); |
| 798 | msleep(10); |
| 799 | } |
| 800 | |
Jarod Wilson | 51ea629 | 2011-05-10 14:09:59 -0300 | [diff] [blame] | 801 | mce_request_packet(ir, data, size, MCEUSB_TX); |
Jarod Wilson | 417c0a2 | 2011-07-18 16:54:22 -0300 | [diff] [blame] | 802 | msleep(10); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 803 | } |
| 804 | |
Jarod Wilson | 3a918aa | 2011-05-26 14:23:18 -0300 | [diff] [blame] | 805 | static void mce_flush_rx_buffer(struct mceusb_dev *ir, int size) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 806 | { |
Jarod Wilson | 3a918aa | 2011-05-26 14:23:18 -0300 | [diff] [blame] | 807 | mce_request_packet(ir, NULL, size, MCEUSB_RX); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 808 | } |
| 809 | |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 810 | /* Send data out the IR blaster port(s) */ |
David Härdeman | 5588dc2 | 2011-04-28 12:13:58 -0300 | [diff] [blame] | 811 | static int mceusb_tx_ir(struct rc_dev *dev, unsigned *txbuf, unsigned count) |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 812 | { |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 813 | struct mceusb_dev *ir = dev->priv; |
Sean Young | db8ee10 | 2013-01-29 08:19:30 -0300 | [diff] [blame] | 814 | int i, length, ret = 0; |
David Härdeman | 5588dc2 | 2011-04-28 12:13:58 -0300 | [diff] [blame] | 815 | int cmdcount = 0; |
Sean Young | db8ee10 | 2013-01-29 08:19:30 -0300 | [diff] [blame] | 816 | unsigned char cmdbuf[MCE_CMDBUF_SIZE]; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 817 | |
| 818 | /* MCE tx init header */ |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 819 | cmdbuf[cmdcount++] = MCE_CMD_PORT_IR; |
| 820 | cmdbuf[cmdcount++] = MCE_CMD_SETIRTXPORTS; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 821 | cmdbuf[cmdcount++] = ir->tx_mask; |
| 822 | |
Sean Young | db8ee10 | 2013-01-29 08:19:30 -0300 | [diff] [blame] | 823 | /* Send the set TX ports command */ |
| 824 | mce_async_out(ir, cmdbuf, cmdcount); |
| 825 | cmdcount = 0; |
| 826 | |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 827 | /* Generate mce packet data */ |
| 828 | for (i = 0; (i < count) && (cmdcount < MCE_CMDBUF_SIZE); i++) { |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 829 | txbuf[i] = txbuf[i] / MCE_TIME_UNIT; |
| 830 | |
| 831 | do { /* loop to support long pulses/spaces > 127*50us=6.35ms */ |
| 832 | |
| 833 | /* Insert mce packet header every 4th entry */ |
| 834 | if ((cmdcount < MCE_CMDBUF_SIZE) && |
Sean Young | db8ee10 | 2013-01-29 08:19:30 -0300 | [diff] [blame] | 835 | (cmdcount % MCE_CODE_LENGTH) == 0) |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 836 | cmdbuf[cmdcount++] = MCE_IRDATA_HEADER; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 837 | |
| 838 | /* Insert mce packet data */ |
| 839 | if (cmdcount < MCE_CMDBUF_SIZE) |
| 840 | cmdbuf[cmdcount++] = |
| 841 | (txbuf[i] < MCE_PULSE_BIT ? |
| 842 | txbuf[i] : MCE_MAX_PULSE_LENGTH) | |
| 843 | (i & 1 ? 0x00 : MCE_PULSE_BIT); |
| 844 | else { |
| 845 | ret = -EINVAL; |
| 846 | goto out; |
| 847 | } |
| 848 | |
| 849 | } while ((txbuf[i] > MCE_MAX_PULSE_LENGTH) && |
| 850 | (txbuf[i] -= MCE_MAX_PULSE_LENGTH)); |
| 851 | } |
| 852 | |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 853 | /* Check if we have room for the empty packet at the end */ |
| 854 | if (cmdcount >= MCE_CMDBUF_SIZE) { |
| 855 | ret = -EINVAL; |
| 856 | goto out; |
| 857 | } |
| 858 | |
Dan Carpenter | b940a22 | 2013-02-12 08:22:08 -0300 | [diff] [blame] | 859 | /* Fix packet length in last header */ |
| 860 | length = cmdcount % MCE_CODE_LENGTH; |
| 861 | cmdbuf[cmdcount - length] -= MCE_CODE_LENGTH - length; |
| 862 | |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 863 | /* All mce commands end with an empty packet (0x80) */ |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 864 | cmdbuf[cmdcount++] = MCE_IRDATA_TRAILER; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 865 | |
| 866 | /* Transmit the command to the mce device */ |
| 867 | mce_async_out(ir, cmdbuf, cmdcount); |
| 868 | |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 869 | out: |
David Härdeman | 5588dc2 | 2011-04-28 12:13:58 -0300 | [diff] [blame] | 870 | return ret ? ret : count; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 871 | } |
| 872 | |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 873 | /* Sets active IR outputs -- mce devices typically have two */ |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 874 | static int mceusb_set_tx_mask(struct rc_dev *dev, u32 mask) |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 875 | { |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 876 | struct mceusb_dev *ir = dev->priv; |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 877 | |
Sean Young | 20f5a82 | 2016-07-10 13:34:32 -0300 | [diff] [blame] | 878 | /* return number of transmitters */ |
| 879 | int emitters = ir->num_txports ? ir->num_txports : 2; |
| 880 | |
| 881 | if (mask >= (1 << emitters)) |
| 882 | return emitters; |
| 883 | |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 884 | if (ir->flags.tx_mask_normal) |
| 885 | ir->tx_mask = mask; |
| 886 | else |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 887 | ir->tx_mask = (mask != MCE_DEFAULT_TX_MASK ? |
| 888 | mask ^ MCE_DEFAULT_TX_MASK : mask) << 1; |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 889 | |
| 890 | return 0; |
| 891 | } |
| 892 | |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 893 | /* Sets the send carrier frequency and mode */ |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 894 | static int mceusb_set_tx_carrier(struct rc_dev *dev, u32 carrier) |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 895 | { |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 896 | struct mceusb_dev *ir = dev->priv; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 897 | int clk = 10000000; |
| 898 | int prescaler = 0, divisor = 0; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 899 | unsigned char cmdbuf[4] = { MCE_CMD_PORT_IR, |
| 900 | MCE_CMD_SETIRCFS, 0x00, 0x00 }; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 901 | |
| 902 | /* Carrier has changed */ |
| 903 | if (ir->carrier != carrier) { |
| 904 | |
| 905 | if (carrier == 0) { |
| 906 | ir->carrier = carrier; |
Jarod Wilson | 1cd50f2 | 2010-11-09 18:41:03 -0300 | [diff] [blame] | 907 | cmdbuf[2] = MCE_CMD_SIG_END; |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 908 | cmdbuf[3] = MCE_IRDATA_TRAILER; |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 909 | dev_dbg(ir->dev, "disabling carrier modulation"); |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 910 | mce_async_out(ir, cmdbuf, sizeof(cmdbuf)); |
| 911 | return carrier; |
| 912 | } |
| 913 | |
| 914 | for (prescaler = 0; prescaler < 4; ++prescaler) { |
| 915 | divisor = (clk >> (2 * prescaler)) / carrier; |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 916 | if (divisor <= 0xff) { |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 917 | ir->carrier = carrier; |
| 918 | cmdbuf[2] = prescaler; |
| 919 | cmdbuf[3] = divisor; |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 920 | dev_dbg(ir->dev, "requesting %u HZ carrier", |
| 921 | carrier); |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 922 | |
| 923 | /* Transmit new carrier to mce device */ |
| 924 | mce_async_out(ir, cmdbuf, sizeof(cmdbuf)); |
| 925 | return carrier; |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | return -EINVAL; |
| 930 | |
| 931 | } |
| 932 | |
Sean Young | 14d8188 | 2016-07-10 13:34:33 -0300 | [diff] [blame] | 933 | return 0; |
Jarod Wilson | e23fb96 | 2010-06-16 17:55:52 -0300 | [diff] [blame] | 934 | } |
| 935 | |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 936 | /* |
| 937 | * We don't do anything but print debug spew for many of the command bits |
| 938 | * we receive from the hardware, but some of them are useful information |
| 939 | * we want to store so that we can use them. |
| 940 | */ |
| 941 | static void mceusb_handle_command(struct mceusb_dev *ir, int index) |
| 942 | { |
| 943 | u8 hi = ir->buf_in[index + 1] & 0xff; |
| 944 | u8 lo = ir->buf_in[index + 2] & 0xff; |
| 945 | |
| 946 | switch (ir->buf_in[index]) { |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 947 | /* the one and only 5-byte return value command */ |
| 948 | case MCE_RSP_GETPORTSTATUS: |
| 949 | if ((ir->buf_in[index + 4] & 0xff) == 0x00) |
| 950 | ir->txports_cabled |= 1 << hi; |
| 951 | break; |
| 952 | |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 953 | /* 2-byte return value commands */ |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 954 | case MCE_RSP_EQIRTIMEOUT: |
Rafi Rubin | f3e456c | 2011-07-03 17:13:52 -0300 | [diff] [blame] | 955 | ir->rc->timeout = US_TO_NS((hi << 8 | lo) * MCE_TIME_UNIT); |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 956 | break; |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 957 | case MCE_RSP_EQIRNUMPORTS: |
| 958 | ir->num_txports = hi; |
| 959 | ir->num_rxports = lo; |
| 960 | break; |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 961 | |
| 962 | /* 1-byte return value commands */ |
Jarod Wilson | ab1072e | 2011-07-18 16:54:25 -0300 | [diff] [blame] | 963 | case MCE_RSP_EQEMVER: |
| 964 | ir->emver = hi; |
| 965 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 966 | case MCE_RSP_EQIRTXPORTS: |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 967 | ir->tx_mask = hi; |
| 968 | break; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 969 | case MCE_RSP_EQIRRXPORTEN: |
| 970 | ir->learning_enabled = ((hi & 0x02) == 0x02); |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 971 | ir->rxports_active = hi; |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 972 | break; |
Jarod Wilson | 4840b78 | 2011-07-18 16:54:24 -0300 | [diff] [blame] | 973 | case MCE_RSP_CMD_ILLEGAL: |
| 974 | ir->need_reset = true; |
| 975 | break; |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 976 | default: |
| 977 | break; |
| 978 | } |
| 979 | } |
| 980 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 981 | static void mceusb_process_ir_data(struct mceusb_dev *ir, int buf_len) |
| 982 | { |
Maxim Levitsky | 4651918 | 2010-10-16 19:56:28 -0300 | [diff] [blame] | 983 | DEFINE_IR_RAW_EVENT(rawir); |
Sean Young | b83bfd1 | 2012-08-13 08:59:47 -0300 | [diff] [blame] | 984 | bool event = false; |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 985 | int i = 0; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 986 | |
| 987 | /* skip meaningless 0xb1 0x60 header bytes on orig receiver */ |
| 988 | if (ir->flags.microsoft_gen1) |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 989 | i = 2; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 990 | |
Jarod Wilson | 29b4494 | 2010-11-09 18:41:46 -0300 | [diff] [blame] | 991 | /* if there's no data, just return now */ |
| 992 | if (buf_len <= i) |
| 993 | return; |
| 994 | |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 995 | for (; i < buf_len; i++) { |
| 996 | switch (ir->parser_state) { |
| 997 | case SUBCMD: |
William Steidtmann | 76dea4c | 2013-04-15 17:17:11 -0300 | [diff] [blame] | 998 | ir->rem = mceusb_cmd_datasize(ir->cmd, ir->buf_in[i]); |
Jarod Wilson | 36e9d26 | 2010-10-22 16:49:35 -0300 | [diff] [blame] | 999 | mceusb_dev_printdata(ir, ir->buf_in, i - 1, |
| 1000 | ir->rem + 2, false); |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 1001 | mceusb_handle_command(ir, i); |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 1002 | ir->parser_state = CMD_DATA; |
| 1003 | break; |
| 1004 | case PARSE_IRDATA: |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1005 | ir->rem--; |
Jarod Wilson | 5bd9d73 | 2011-01-26 12:20:09 -0300 | [diff] [blame] | 1006 | init_ir_raw_event(&rawir); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1007 | rawir.pulse = ((ir->buf_in[i] & MCE_PULSE_BIT) != 0); |
| 1008 | rawir.duration = (ir->buf_in[i] & MCE_PULSE_MASK) |
Jarod Wilson | b4608fa | 2011-01-18 17:31:24 -0300 | [diff] [blame] | 1009 | * US_TO_NS(MCE_TIME_UNIT); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1010 | |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1011 | dev_dbg(ir->dev, "Storing %s with duration %d", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1012 | rawir.pulse ? "pulse" : "space", |
| 1013 | rawir.duration); |
| 1014 | |
Sean Young | b83bfd1 | 2012-08-13 08:59:47 -0300 | [diff] [blame] | 1015 | if (ir_raw_event_store_with_filter(ir->rc, &rawir)) |
| 1016 | event = true; |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 1017 | break; |
| 1018 | case CMD_DATA: |
| 1019 | ir->rem--; |
| 1020 | break; |
| 1021 | case CMD_HEADER: |
| 1022 | /* decode mce packets of the form (84),AA,BB,CC,DD */ |
| 1023 | /* IR data packets can span USB messages - rem */ |
| 1024 | ir->cmd = ir->buf_in[i]; |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 1025 | if ((ir->cmd == MCE_CMD_PORT_IR) || |
| 1026 | ((ir->cmd & MCE_PORT_MASK) != |
Jarod Wilson | 4a88391 | 2010-10-22 14:42:54 -0300 | [diff] [blame] | 1027 | MCE_COMMAND_IRDATA)) { |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 1028 | ir->parser_state = SUBCMD; |
| 1029 | continue; |
| 1030 | } |
| 1031 | ir->rem = (ir->cmd & MCE_PACKET_LENGTH_MASK); |
Jarod Wilson | 2ee95db | 2010-11-12 19:49:04 -0300 | [diff] [blame] | 1032 | mceusb_dev_printdata(ir, ir->buf_in, |
| 1033 | i, ir->rem + 1, false); |
Jarod Wilson | 1cd50f2 | 2010-11-09 18:41:03 -0300 | [diff] [blame] | 1034 | if (ir->rem) |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 1035 | ir->parser_state = PARSE_IRDATA; |
Jarod Wilson | 5bd9d73 | 2011-01-26 12:20:09 -0300 | [diff] [blame] | 1036 | else |
| 1037 | ir_raw_event_reset(ir->rc); |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 1038 | break; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1039 | } |
| 1040 | |
Mauro Carvalho Chehab | 39dc5c3 | 2010-10-22 01:35:44 -0300 | [diff] [blame] | 1041 | if (ir->parser_state != CMD_HEADER && !ir->rem) |
| 1042 | ir->parser_state = CMD_HEADER; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1043 | } |
Sean Young | b83bfd1 | 2012-08-13 08:59:47 -0300 | [diff] [blame] | 1044 | if (event) { |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1045 | dev_dbg(ir->dev, "processed IR data"); |
Sean Young | b83bfd1 | 2012-08-13 08:59:47 -0300 | [diff] [blame] | 1046 | ir_raw_event_handle(ir->rc); |
| 1047 | } |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1048 | } |
| 1049 | |
Sean Young | 6ac454a | 2012-07-15 13:31:31 -0300 | [diff] [blame] | 1050 | static void mceusb_dev_recv(struct urb *urb) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1051 | { |
| 1052 | struct mceusb_dev *ir; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1053 | |
| 1054 | if (!urb) |
| 1055 | return; |
| 1056 | |
| 1057 | ir = urb->context; |
| 1058 | if (!ir) { |
| 1059 | usb_unlink_urb(urb); |
| 1060 | return; |
| 1061 | } |
| 1062 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1063 | switch (urb->status) { |
| 1064 | /* success */ |
| 1065 | case 0: |
Sean Young | d26cec2 | 2016-04-14 17:42:49 -0300 | [diff] [blame^] | 1066 | mceusb_process_ir_data(ir, urb->actual_length); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1067 | break; |
| 1068 | |
| 1069 | case -ECONNRESET: |
| 1070 | case -ENOENT: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1071 | case -EILSEQ: |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1072 | case -ESHUTDOWN: |
| 1073 | usb_unlink_urb(urb); |
| 1074 | return; |
| 1075 | |
| 1076 | case -EPIPE: |
| 1077 | default: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1078 | dev_err(ir->dev, "Error: urb status = %d", urb->status); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1079 | break; |
| 1080 | } |
| 1081 | |
| 1082 | usb_submit_urb(urb, GFP_ATOMIC); |
| 1083 | } |
| 1084 | |
Jarod Wilson | ab1072e | 2011-07-18 16:54:25 -0300 | [diff] [blame] | 1085 | static void mceusb_get_emulator_version(struct mceusb_dev *ir) |
| 1086 | { |
| 1087 | /* If we get no reply or an illegal command reply, its ver 1, says MS */ |
| 1088 | ir->emver = 1; |
| 1089 | mce_async_out(ir, GET_EMVER, sizeof(GET_EMVER)); |
| 1090 | } |
| 1091 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1092 | static void mceusb_gen1_init(struct mceusb_dev *ir) |
| 1093 | { |
Mauro Carvalho Chehab | ca17a4f | 2010-07-10 11:19:42 -0300 | [diff] [blame] | 1094 | int ret; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1095 | struct device *dev = ir->dev; |
Jarod Wilson | b48592e | 2010-07-03 22:42:14 -0300 | [diff] [blame] | 1096 | char *data; |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 1097 | |
| 1098 | data = kzalloc(USB_CTRL_MSG_SZ, GFP_KERNEL); |
| 1099 | if (!data) { |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1100 | dev_err(dev, "%s: memory allocation failed!", __func__); |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 1101 | return; |
| 1102 | } |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1103 | |
| 1104 | /* |
Jarod Wilson | b48592e | 2010-07-03 22:42:14 -0300 | [diff] [blame] | 1105 | * This is a strange one. Windows issues a set address to the device |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1106 | * on the receive control pipe and expect a certain value pair back |
| 1107 | */ |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1108 | ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0), |
| 1109 | USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0, |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 1110 | data, USB_CTRL_MSG_SZ, HZ * 3); |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1111 | dev_dbg(dev, "set address - ret = %d", ret); |
| 1112 | dev_dbg(dev, "set address - data[0] = %d, data[1] = %d", |
| 1113 | data[0], data[1]); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1114 | |
| 1115 | /* set feature: bit rate 38400 bps */ |
| 1116 | ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0), |
| 1117 | USB_REQ_SET_FEATURE, USB_TYPE_VENDOR, |
| 1118 | 0xc04e, 0x0000, NULL, 0, HZ * 3); |
| 1119 | |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1120 | dev_dbg(dev, "set feature - ret = %d", ret); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1121 | |
| 1122 | /* bRequest 4: set char length to 8 bits */ |
| 1123 | ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0), |
| 1124 | 4, USB_TYPE_VENDOR, |
| 1125 | 0x0808, 0x0000, NULL, 0, HZ * 3); |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1126 | dev_dbg(dev, "set char length - retB = %d", ret); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1127 | |
| 1128 | /* bRequest 2: set handshaking to use DTR/DSR */ |
| 1129 | ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0), |
| 1130 | 2, USB_TYPE_VENDOR, |
| 1131 | 0x0000, 0x0100, NULL, 0, HZ * 3); |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1132 | dev_dbg(dev, "set handshake - retC = %d", ret); |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 1133 | |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 1134 | /* device resume */ |
| 1135 | mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME)); |
Jarod Wilson | 22b0766 | 2010-07-08 12:38:57 -0300 | [diff] [blame] | 1136 | |
| 1137 | /* get hw/sw revision? */ |
| 1138 | mce_async_out(ir, GET_REVISION, sizeof(GET_REVISION)); |
Jarod Wilson | 22b0766 | 2010-07-08 12:38:57 -0300 | [diff] [blame] | 1139 | |
Jarod Wilson | 657290b | 2010-06-16 17:10:05 -0300 | [diff] [blame] | 1140 | kfree(data); |
Sean Young | 8dfef67 | 2013-01-29 08:19:29 -0300 | [diff] [blame] | 1141 | } |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1142 | |
| 1143 | static void mceusb_gen2_init(struct mceusb_dev *ir) |
| 1144 | { |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 1145 | /* device resume */ |
| 1146 | mce_async_out(ir, DEVICE_RESUME, sizeof(DEVICE_RESUME)); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1147 | |
Jarod Wilson | a6fbd3b | 2011-07-18 16:54:21 -0300 | [diff] [blame] | 1148 | /* get wake version (protocol, key, address) */ |
| 1149 | mce_async_out(ir, GET_WAKEVERSION, sizeof(GET_WAKEVERSION)); |
| 1150 | |
| 1151 | /* unknown what this one actually returns... */ |
Jarod Wilson | 22b0766 | 2010-07-08 12:38:57 -0300 | [diff] [blame] | 1152 | mce_async_out(ir, GET_UNKNOWN2, sizeof(GET_UNKNOWN2)); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1153 | } |
| 1154 | |
Jarod Wilson | 22b0766 | 2010-07-08 12:38:57 -0300 | [diff] [blame] | 1155 | static void mceusb_get_parameters(struct mceusb_dev *ir) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1156 | { |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 1157 | int i; |
| 1158 | unsigned char cmdbuf[3] = { MCE_CMD_PORT_SYS, |
| 1159 | MCE_CMD_GETPORTSTATUS, 0x00 }; |
| 1160 | |
| 1161 | /* defaults, if the hardware doesn't support querying */ |
| 1162 | ir->num_txports = 2; |
| 1163 | ir->num_rxports = 2; |
| 1164 | |
| 1165 | /* get number of tx and rx ports */ |
| 1166 | mce_async_out(ir, GET_NUM_PORTS, sizeof(GET_NUM_PORTS)); |
| 1167 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1168 | /* get the carrier and frequency */ |
| 1169 | mce_async_out(ir, GET_CARRIER_FREQ, sizeof(GET_CARRIER_FREQ)); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1170 | |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 1171 | if (ir->num_txports && !ir->flags.no_tx) |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 1172 | /* get the transmitter bitmask */ |
| 1173 | mce_async_out(ir, GET_TX_BITMASK, sizeof(GET_TX_BITMASK)); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1174 | |
| 1175 | /* get receiver timeout value */ |
| 1176 | mce_async_out(ir, GET_RX_TIMEOUT, sizeof(GET_RX_TIMEOUT)); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1177 | |
| 1178 | /* get receiver sensor setting */ |
| 1179 | mce_async_out(ir, GET_RX_SENSOR, sizeof(GET_RX_SENSOR)); |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 1180 | |
| 1181 | for (i = 0; i < ir->num_txports; i++) { |
| 1182 | cmdbuf[2] = i; |
| 1183 | mce_async_out(ir, cmdbuf, sizeof(cmdbuf)); |
| 1184 | } |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1185 | } |
| 1186 | |
Jarod Wilson | b71969b | 2011-07-18 16:54:27 -0300 | [diff] [blame] | 1187 | static void mceusb_flash_led(struct mceusb_dev *ir) |
| 1188 | { |
| 1189 | if (ir->emver < 2) |
| 1190 | return; |
| 1191 | |
| 1192 | mce_async_out(ir, FLASH_LED, sizeof(FLASH_LED)); |
| 1193 | } |
| 1194 | |
Alexey Khoroshilov | e947d9a | 2014-09-08 19:10:43 -0300 | [diff] [blame] | 1195 | static struct rc_dev *mceusb_init_rc_dev(struct mceusb_dev *ir) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1196 | { |
Alexey Khoroshilov | e947d9a | 2014-09-08 19:10:43 -0300 | [diff] [blame] | 1197 | struct usb_device *udev = ir->usbdev; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1198 | struct device *dev = ir->dev; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1199 | struct rc_dev *rc; |
| 1200 | int ret; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1201 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1202 | rc = rc_allocate_device(); |
| 1203 | if (!rc) { |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1204 | dev_err(dev, "remote dev allocation failed"); |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1205 | goto out; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1206 | } |
| 1207 | |
Mauro Carvalho Chehab | 3459d45 | 2010-10-22 11:52:53 -0300 | [diff] [blame] | 1208 | snprintf(ir->name, sizeof(ir->name), "%s (%04x:%04x)", |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1209 | mceusb_model[ir->model].name ? |
Paul Bender | 5ad1a55 | 2010-11-17 16:56:17 -0300 | [diff] [blame] | 1210 | mceusb_model[ir->model].name : |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1211 | "Media Center Ed. eHome Infrared Remote Transceiver", |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1212 | le16_to_cpu(ir->usbdev->descriptor.idVendor), |
| 1213 | le16_to_cpu(ir->usbdev->descriptor.idProduct)); |
| 1214 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1215 | usb_make_path(ir->usbdev, ir->phys, sizeof(ir->phys)); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1216 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1217 | rc->input_name = ir->name; |
| 1218 | rc->input_phys = ir->phys; |
| 1219 | usb_to_input_id(ir->usbdev, &rc->input_id); |
| 1220 | rc->dev.parent = dev; |
| 1221 | rc->priv = ir; |
| 1222 | rc->driver_type = RC_DRIVER_IR_RAW; |
David Härdeman | c5540fb | 2014-04-03 20:32:21 -0300 | [diff] [blame] | 1223 | rc->allowed_protocols = RC_BIT_ALL; |
Rafi Rubin | 9824ae4 | 2011-07-03 17:13:53 -0300 | [diff] [blame] | 1224 | rc->timeout = MS_TO_NS(100); |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 1225 | if (!ir->flags.no_tx) { |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1226 | rc->s_tx_mask = mceusb_set_tx_mask; |
| 1227 | rc->s_tx_carrier = mceusb_set_tx_carrier; |
| 1228 | rc->tx_ir = mceusb_tx_ir; |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 1229 | } |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1230 | rc->driver_name = DRIVER_NAME; |
Mauro Carvalho Chehab | 5b8c8d4 | 2014-07-27 17:28:48 -0300 | [diff] [blame] | 1231 | |
| 1232 | switch (le16_to_cpu(udev->descriptor.idVendor)) { |
| 1233 | case VENDOR_HAUPPAUGE: |
| 1234 | rc->map_name = RC_MAP_HAUPPAUGE; |
| 1235 | break; |
| 1236 | case VENDOR_PCTV: |
| 1237 | rc->map_name = RC_MAP_PINNACLE_PCTV_HD; |
| 1238 | break; |
| 1239 | default: |
| 1240 | rc->map_name = RC_MAP_RC6_MCE; |
| 1241 | } |
| 1242 | if (mceusb_model[ir->model].rc_map) |
| 1243 | rc->map_name = mceusb_model[ir->model].rc_map; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1244 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1245 | ret = rc_register_device(rc); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1246 | if (ret < 0) { |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1247 | dev_err(dev, "remote dev registration failed"); |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1248 | goto out; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1249 | } |
| 1250 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1251 | return rc; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1252 | |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1253 | out: |
| 1254 | rc_free_device(rc); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1255 | return NULL; |
| 1256 | } |
| 1257 | |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1258 | static int mceusb_dev_probe(struct usb_interface *intf, |
| 1259 | const struct usb_device_id *id) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1260 | { |
| 1261 | struct usb_device *dev = interface_to_usbdev(intf); |
| 1262 | struct usb_host_interface *idesc; |
| 1263 | struct usb_endpoint_descriptor *ep = NULL; |
| 1264 | struct usb_endpoint_descriptor *ep_in = NULL; |
| 1265 | struct usb_endpoint_descriptor *ep_out = NULL; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1266 | struct mceusb_dev *ir = NULL; |
Jarod Wilson | d732a72 | 2010-06-16 17:10:46 -0300 | [diff] [blame] | 1267 | int pipe, maxp, i; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1268 | char buf[63], name[128] = ""; |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 1269 | enum mceusb_model_type model = id->driver_info; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1270 | bool is_gen3; |
| 1271 | bool is_microsoft_gen1; |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 1272 | bool tx_mask_normal; |
Jarod Wilson | a6994eb | 2011-03-01 12:38:28 -0300 | [diff] [blame] | 1273 | int ir_intfnum; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1274 | |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1275 | dev_dbg(&intf->dev, "%s called", __func__); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1276 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1277 | idesc = intf->cur_altsetting; |
| 1278 | |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 1279 | is_gen3 = mceusb_model[model].mce_gen3; |
| 1280 | is_microsoft_gen1 = mceusb_model[model].mce_gen1; |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 1281 | tx_mask_normal = mceusb_model[model].tx_mask_normal; |
Jarod Wilson | a6994eb | 2011-03-01 12:38:28 -0300 | [diff] [blame] | 1282 | ir_intfnum = mceusb_model[model].ir_intfnum; |
Mauro Carvalho Chehab | 56e92f6 | 2010-10-18 16:32:50 -0300 | [diff] [blame] | 1283 | |
Jarod Wilson | a6994eb | 2011-03-01 12:38:28 -0300 | [diff] [blame] | 1284 | /* There are multi-function devices with non-IR interfaces */ |
| 1285 | if (idesc->desc.bInterfaceNumber != ir_intfnum) |
| 1286 | return -ENODEV; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1287 | |
| 1288 | /* step through the endpoints to find first bulk in and out endpoint */ |
| 1289 | for (i = 0; i < idesc->desc.bNumEndpoints; ++i) { |
| 1290 | ep = &idesc->endpoint[i].desc; |
| 1291 | |
Matt DeVillier | 0cacb46 | 2014-04-24 11:16:31 -0300 | [diff] [blame] | 1292 | if (ep_in == NULL) { |
| 1293 | if (usb_endpoint_is_bulk_in(ep)) { |
| 1294 | ep_in = ep; |
| 1295 | dev_dbg(&intf->dev, "acceptable bulk inbound endpoint found\n"); |
| 1296 | } else if (usb_endpoint_is_int_in(ep)) { |
| 1297 | ep_in = ep; |
| 1298 | ep_in->bInterval = 1; |
| 1299 | dev_dbg(&intf->dev, "acceptable interrupt inbound endpoint found\n"); |
| 1300 | } |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1301 | } |
| 1302 | |
Matt DeVillier | 0cacb46 | 2014-04-24 11:16:31 -0300 | [diff] [blame] | 1303 | if (ep_out == NULL) { |
| 1304 | if (usb_endpoint_is_bulk_out(ep)) { |
| 1305 | ep_out = ep; |
| 1306 | dev_dbg(&intf->dev, "acceptable bulk outbound endpoint found\n"); |
| 1307 | } else if (usb_endpoint_is_int_out(ep)) { |
| 1308 | ep_out = ep; |
| 1309 | ep_out->bInterval = 1; |
| 1310 | dev_dbg(&intf->dev, "acceptable interrupt outbound endpoint found\n"); |
| 1311 | } |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1312 | } |
| 1313 | } |
| 1314 | if (ep_in == NULL) { |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1315 | dev_dbg(&intf->dev, "inbound and/or endpoint not found"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1316 | return -ENODEV; |
| 1317 | } |
| 1318 | |
Matt DeVillier | 0cacb46 | 2014-04-24 11:16:31 -0300 | [diff] [blame] | 1319 | if (usb_endpoint_xfer_int(ep_in)) |
| 1320 | pipe = usb_rcvintpipe(dev, ep_in->bEndpointAddress); |
| 1321 | else |
| 1322 | pipe = usb_rcvbulkpipe(dev, ep_in->bEndpointAddress); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1323 | maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe)); |
| 1324 | |
| 1325 | ir = kzalloc(sizeof(struct mceusb_dev), GFP_KERNEL); |
| 1326 | if (!ir) |
| 1327 | goto mem_alloc_fail; |
| 1328 | |
| 1329 | ir->buf_in = usb_alloc_coherent(dev, maxp, GFP_ATOMIC, &ir->dma_in); |
| 1330 | if (!ir->buf_in) |
| 1331 | goto buf_in_alloc_fail; |
| 1332 | |
| 1333 | ir->urb_in = usb_alloc_urb(0, GFP_KERNEL); |
| 1334 | if (!ir->urb_in) |
| 1335 | goto urb_in_alloc_fail; |
| 1336 | |
Alexey Khoroshilov | e947d9a | 2014-09-08 19:10:43 -0300 | [diff] [blame] | 1337 | ir->usbdev = usb_get_dev(dev); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1338 | ir->dev = &intf->dev; |
| 1339 | ir->len_in = maxp; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1340 | ir->flags.microsoft_gen1 = is_microsoft_gen1; |
Jarod Wilson | d8cc7fd | 2010-12-15 19:20:55 -0300 | [diff] [blame] | 1341 | ir->flags.tx_mask_normal = tx_mask_normal; |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 1342 | ir->flags.no_tx = mceusb_model[model].no_tx; |
Mauro Carvalho Chehab | 37dbd3a | 2010-10-22 11:50:37 -0300 | [diff] [blame] | 1343 | ir->model = model; |
| 1344 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1345 | /* Saving usb interface data for use by the transmitter routine */ |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1346 | ir->usb_ep_out = ep_out; |
| 1347 | |
| 1348 | if (dev->descriptor.iManufacturer |
| 1349 | && usb_string(dev, dev->descriptor.iManufacturer, |
| 1350 | buf, sizeof(buf)) > 0) |
| 1351 | strlcpy(name, buf, sizeof(name)); |
| 1352 | if (dev->descriptor.iProduct |
| 1353 | && usb_string(dev, dev->descriptor.iProduct, |
| 1354 | buf, sizeof(buf)) > 0) |
| 1355 | snprintf(name + strlen(name), sizeof(name) - strlen(name), |
| 1356 | " %s", buf); |
| 1357 | |
Alexey Khoroshilov | e947d9a | 2014-09-08 19:10:43 -0300 | [diff] [blame] | 1358 | ir->rc = mceusb_init_rc_dev(ir); |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1359 | if (!ir->rc) |
| 1360 | goto rc_dev_fail; |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1361 | |
Jarod Wilson | b48592e | 2010-07-03 22:42:14 -0300 | [diff] [blame] | 1362 | /* wire up inbound data handler */ |
Sean Young | 6ac454a | 2012-07-15 13:31:31 -0300 | [diff] [blame] | 1363 | usb_fill_int_urb(ir->urb_in, dev, pipe, ir->buf_in, maxp, |
| 1364 | mceusb_dev_recv, ir, ep_in->bInterval); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1365 | ir->urb_in->transfer_dma = ir->dma_in; |
| 1366 | ir->urb_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
| 1367 | |
Jarod Wilson | 3a918aa | 2011-05-26 14:23:18 -0300 | [diff] [blame] | 1368 | /* flush buffers on the device */ |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1369 | dev_dbg(&intf->dev, "Flushing receive buffers\n"); |
Jarod Wilson | 3a918aa | 2011-05-26 14:23:18 -0300 | [diff] [blame] | 1370 | mce_flush_rx_buffer(ir, maxp); |
| 1371 | |
Jarod Wilson | ab1072e | 2011-07-18 16:54:25 -0300 | [diff] [blame] | 1372 | /* figure out which firmware/emulator version this hardware has */ |
| 1373 | mceusb_get_emulator_version(ir); |
| 1374 | |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1375 | /* initialize device */ |
Jarod Wilson | 22b0766 | 2010-07-08 12:38:57 -0300 | [diff] [blame] | 1376 | if (ir->flags.microsoft_gen1) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1377 | mceusb_gen1_init(ir); |
Jarod Wilson | 22b0766 | 2010-07-08 12:38:57 -0300 | [diff] [blame] | 1378 | else if (!is_gen3) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1379 | mceusb_gen2_init(ir); |
| 1380 | |
Jarod Wilson | 22b0766 | 2010-07-08 12:38:57 -0300 | [diff] [blame] | 1381 | mceusb_get_parameters(ir); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1382 | |
Jarod Wilson | b71969b | 2011-07-18 16:54:27 -0300 | [diff] [blame] | 1383 | mceusb_flash_led(ir); |
| 1384 | |
Jarod Wilson | 6f6c625 | 2010-10-29 00:07:39 -0300 | [diff] [blame] | 1385 | if (!ir->flags.no_tx) |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1386 | mceusb_set_tx_mask(ir->rc, MCE_DEFAULT_TX_MASK); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1387 | |
| 1388 | usb_set_intfdata(intf, ir); |
| 1389 | |
Jarod Wilson | fa334898 | 2011-07-18 16:54:23 -0300 | [diff] [blame] | 1390 | /* enable wake via this device */ |
| 1391 | device_set_wakeup_capable(ir->dev, true); |
| 1392 | device_set_wakeup_enable(ir->dev, true); |
| 1393 | |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1394 | dev_info(&intf->dev, "Registered %s with mce emulator interface version %x", |
| 1395 | name, ir->emver); |
| 1396 | dev_info(&intf->dev, "%x tx ports (0x%x cabled) and %x rx sensors (0x%x active)", |
Jarod Wilson | a411e83 | 2011-07-18 16:54:26 -0300 | [diff] [blame] | 1397 | ir->num_txports, ir->txports_cabled, |
| 1398 | ir->num_rxports, ir->rxports_active); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1399 | |
| 1400 | return 0; |
| 1401 | |
| 1402 | /* Error-handling path */ |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1403 | rc_dev_fail: |
Alexey Khoroshilov | e947d9a | 2014-09-08 19:10:43 -0300 | [diff] [blame] | 1404 | usb_put_dev(ir->usbdev); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1405 | usb_free_urb(ir->urb_in); |
| 1406 | urb_in_alloc_fail: |
| 1407 | usb_free_coherent(dev, maxp, ir->buf_in, ir->dma_in); |
| 1408 | buf_in_alloc_fail: |
| 1409 | kfree(ir); |
| 1410 | mem_alloc_fail: |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1411 | dev_err(&intf->dev, "%s: device setup failed!", __func__); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1412 | |
| 1413 | return -ENOMEM; |
| 1414 | } |
| 1415 | |
| 1416 | |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1417 | static void mceusb_dev_disconnect(struct usb_interface *intf) |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1418 | { |
| 1419 | struct usb_device *dev = interface_to_usbdev(intf); |
| 1420 | struct mceusb_dev *ir = usb_get_intfdata(intf); |
| 1421 | |
| 1422 | usb_set_intfdata(intf, NULL); |
| 1423 | |
| 1424 | if (!ir) |
| 1425 | return; |
| 1426 | |
| 1427 | ir->usbdev = NULL; |
David Härdeman | d8b4b58 | 2010-10-29 16:08:23 -0300 | [diff] [blame] | 1428 | rc_unregister_device(ir->rc); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1429 | usb_kill_urb(ir->urb_in); |
| 1430 | usb_free_urb(ir->urb_in); |
| 1431 | usb_free_coherent(dev, ir->len_in, ir->buf_in, ir->dma_in); |
Alexey Khoroshilov | e947d9a | 2014-09-08 19:10:43 -0300 | [diff] [blame] | 1432 | usb_put_dev(dev); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1433 | |
| 1434 | kfree(ir); |
| 1435 | } |
| 1436 | |
| 1437 | static int mceusb_dev_suspend(struct usb_interface *intf, pm_message_t message) |
| 1438 | { |
| 1439 | struct mceusb_dev *ir = usb_get_intfdata(intf); |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1440 | dev_info(ir->dev, "suspend"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1441 | usb_kill_urb(ir->urb_in); |
| 1442 | return 0; |
| 1443 | } |
| 1444 | |
| 1445 | static int mceusb_dev_resume(struct usb_interface *intf) |
| 1446 | { |
| 1447 | struct mceusb_dev *ir = usb_get_intfdata(intf); |
Sean Young | 6b4a16c | 2014-01-20 19:10:44 -0300 | [diff] [blame] | 1448 | dev_info(ir->dev, "resume"); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1449 | if (usb_submit_urb(ir->urb_in, GFP_ATOMIC)) |
| 1450 | return -EIO; |
| 1451 | return 0; |
| 1452 | } |
| 1453 | |
| 1454 | static struct usb_driver mceusb_dev_driver = { |
| 1455 | .name = DRIVER_NAME, |
| 1456 | .probe = mceusb_dev_probe, |
Greg Kroah-Hartman | 4c62e97 | 2012-12-21 13:17:53 -0800 | [diff] [blame] | 1457 | .disconnect = mceusb_dev_disconnect, |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1458 | .suspend = mceusb_dev_suspend, |
| 1459 | .resume = mceusb_dev_resume, |
| 1460 | .reset_resume = mceusb_dev_resume, |
| 1461 | .id_table = mceusb_dev_table |
| 1462 | }; |
| 1463 | |
Greg Kroah-Hartman | ecb3b2b | 2011-11-18 09:46:12 -0800 | [diff] [blame] | 1464 | module_usb_driver(mceusb_dev_driver); |
Jarod Wilson | 66e8952 | 2010-06-01 17:32:08 -0300 | [diff] [blame] | 1465 | |
| 1466 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 1467 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 1468 | MODULE_LICENSE("GPL"); |
| 1469 | MODULE_DEVICE_TABLE(usb, mceusb_dev_table); |