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