diff options
| author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-11-09 21:00:14 -0500 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:36 -0500 |
| commit | 32cf86f6d16367db5a10039c1dd938a2427d697c (patch) | |
| tree | 21e6716b64d80d280da2561efd873430ca833f08 /drivers/media/rc/imon.c | |
| parent | 3ffea4988be3f3fa65f2104ba31eff2b5e0e82a0 (diff) | |
[media] rename drivers/media/IR to drives/media/rc
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/rc/imon.c')
| -rw-r--r-- | drivers/media/rc/imon.c | 2465 |
1 files changed, 2465 insertions, 0 deletions
diff --git a/drivers/media/rc/imon.c b/drivers/media/rc/imon.c new file mode 100644 index 00000000000..79f4f58c2ea --- /dev/null +++ b/drivers/media/rc/imon.c | |||
| @@ -0,0 +1,2465 @@ | |||
| 1 | /* | ||
| 2 | * imon.c: input and display driver for SoundGraph iMON IR/VFD/LCD | ||
| 3 | * | ||
| 4 | * Copyright(C) 2010 Jarod Wilson <jarod@wilsonet.com> | ||
| 5 | * Portions based on the original lirc_imon driver, | ||
| 6 | * Copyright(C) 2004 Venky Raju(dev@venky.ws) | ||
| 7 | * | ||
| 8 | * Huge thanks to R. Geoff Newbury for invaluable debugging on the | ||
| 9 | * 0xffdc iMON devices, and for sending me one to hack on, without | ||
| 10 | * which the support for them wouldn't be nearly as good. Thanks | ||
| 11 | * also to the numerous 0xffdc device owners that tested auto-config | ||
| 12 | * support for me and provided debug dumps from their devices. | ||
| 13 | * | ||
| 14 | * imon is free software; you can redistribute it and/or modify | ||
| 15 | * it under the terms of the GNU General Public License as published by | ||
| 16 | * the Free Software Foundation; either version 2 of the License, or | ||
| 17 | * (at your option) any later version. | ||
| 18 | * | ||
| 19 | * This program is distributed in the hope that it will be useful, | ||
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 22 | * GNU General Public License for more details. | ||
| 23 | * | ||
| 24 | * You should have received a copy of the GNU General Public License | ||
| 25 | * along with this program; if not, write to the Free Software | ||
| 26 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 27 | */ | ||
| 28 | |||
| 29 | #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__ | ||
| 30 | |||
| 31 | #include <linux/errno.h> | ||
| 32 | #include <linux/init.h> | ||
| 33 | #include <linux/kernel.h> | ||
| 34 | #include <linux/module.h> | ||
| 35 | #include <linux/slab.h> | ||
| 36 | #include <linux/uaccess.h> | ||
| 37 | |||
| 38 | #include <linux/input.h> | ||
| 39 | #include <linux/usb.h> | ||
| 40 | #include <linux/usb/input.h> | ||
| 41 | #include <media/ir-core.h> | ||
| 42 | |||
| 43 | #include <linux/time.h> | ||
| 44 | #include <linux/timer.h> | ||
| 45 | |||
| 46 | #define MOD_AUTHOR "Jarod Wilson <jarod@wilsonet.com>" | ||
| 47 | #define MOD_DESC "Driver for SoundGraph iMON MultiMedia IR/Display" | ||
| 48 | #define MOD_NAME "imon" | ||
| 49 | #define MOD_VERSION "0.9.2" | ||
| 50 | |||
| 51 | #define DISPLAY_MINOR_BASE 144 | ||
| 52 | #define DEVICE_NAME "lcd%d" | ||
| 53 | |||
| 54 | #define BUF_CHUNK_SIZE 8 | ||
| 55 | #define BUF_SIZE 128 | ||
| 56 | |||
| 57 | #define BIT_DURATION 250 /* each bit received is 250us */ | ||
| 58 | |||
| 59 | #define IMON_CLOCK_ENABLE_PACKETS 2 | ||
| 60 | |||
| 61 | /*** P R O T O T Y P E S ***/ | ||
| 62 | |||
| 63 | /* USB Callback prototypes */ | ||
| 64 | static int imon_probe(struct usb_interface *interface, | ||
| 65 | const struct usb_device_id *id); | ||
| 66 | static void imon_disconnect(struct usb_interface *interface); | ||
| 67 | static void usb_rx_callback_intf0(struct urb *urb); | ||
| 68 | static void usb_rx_callback_intf1(struct urb *urb); | ||
| 69 | static void usb_tx_callback(struct urb *urb); | ||
| 70 | |||
| 71 | /* suspend/resume support */ | ||
| 72 | static int imon_resume(struct usb_interface *intf); | ||
| 73 | static int imon_suspend(struct usb_interface *intf, pm_message_t message); | ||
| 74 | |||
| 75 | /* Display file_operations function prototypes */ | ||
| 76 | static int display_open(struct inode *inode, struct file *file); | ||
| 77 | static int display_close(struct inode *inode, struct file *file); | ||
| 78 | |||
| 79 | /* VFD write operation */ | ||
| 80 | static ssize_t vfd_write(struct file *file, const char *buf, | ||
| 81 | size_t n_bytes, loff_t *pos); | ||
| 82 | |||
| 83 | /* LCD file_operations override function prototypes */ | ||
| 84 | static ssize_t lcd_write(struct file *file, const char *buf, | ||
| 85 | size_t n_bytes, loff_t *pos); | ||
| 86 | |||
| 87 | /*** G L O B A L S ***/ | ||
| 88 | |||
| 89 | struct imon_context { | ||
| 90 | struct device *dev; | ||
| 91 | struct ir_dev_props *props; | ||
| 92 | /* Newer devices have two interfaces */ | ||
| 93 | struct usb_device *usbdev_intf0; | ||
| 94 | struct usb_device *usbdev_intf1; | ||
| 95 | |||
| 96 | bool display_supported; /* not all controllers do */ | ||
| 97 | bool display_isopen; /* display port has been opened */ | ||
| 98 | bool rf_device; /* true if iMON 2.4G LT/DT RF device */ | ||
| 99 | bool rf_isassociating; /* RF remote associating */ | ||
| 100 | bool dev_present_intf0; /* USB device presence, interface 0 */ | ||
| 101 | bool dev_present_intf1; /* USB device presence, interface 1 */ | ||
| 102 | |||
| 103 | struct mutex lock; /* to lock this object */ | ||
| 104 | wait_queue_head_t remove_ok; /* For unexpected USB disconnects */ | ||
| 105 | |||
| 106 | struct usb_endpoint_descriptor *rx_endpoint_intf0; | ||
| 107 | struct usb_endpoint_descriptor *rx_endpoint_intf1; | ||
| 108 | struct usb_endpoint_descriptor *tx_endpoint; | ||
| 109 | struct urb *rx_urb_intf0; | ||
| 110 | struct urb *rx_urb_intf1; | ||
| 111 | struct urb *tx_urb; | ||
| 112 | bool tx_control; | ||
| 113 | unsigned char usb_rx_buf[8]; | ||
| 114 | unsigned char usb_tx_buf[8]; | ||
| 115 | |||
| 116 | struct tx_t { | ||
| 117 | unsigned char data_buf[35]; /* user data buffer */ | ||
| 118 | struct completion finished; /* wait for write to finish */ | ||
| 119 | bool busy; /* write in progress */ | ||
| 120 | int status; /* status of tx completion */ | ||
| 121 | } tx; | ||
| 122 | |||
| 123 | u16 vendor; /* usb vendor ID */ | ||
| 124 | u16 product; /* usb product ID */ | ||
| 125 | |||
| 126 | struct input_dev *rdev; /* input device for remote */ | ||
| 127 | struct input_dev *idev; /* input device for panel & IR mouse */ | ||
| 128 | struct input_dev *touch; /* input device for touchscreen */ | ||
| 129 | |||
| 130 | spinlock_t kc_lock; /* make sure we get keycodes right */ | ||
| 131 | u32 kc; /* current input keycode */ | ||
| 132 | u32 last_keycode; /* last reported input keycode */ | ||
| 133 | u32 rc_scancode; /* the computed remote scancode */ | ||
| 134 | u8 rc_toggle; /* the computed remote toggle bit */ | ||
| 135 | u64 ir_type; /* iMON or MCE (RC6) IR protocol? */ | ||
| 136 | bool release_code; /* some keys send a release code */ | ||
| 137 | |||
| 138 | u8 display_type; /* store the display type */ | ||
| 139 | bool pad_mouse; /* toggle kbd(0)/mouse(1) mode */ | ||
| 140 | |||
| 141 | char name_rdev[128]; /* rc input device name */ | ||
| 142 | char phys_rdev[64]; /* rc input device phys path */ | ||
| 143 | |||
| 144 | char name_idev[128]; /* input device name */ | ||
| 145 | char phys_idev[64]; /* input device phys path */ | ||
| 146 | |||
| 147 | char name_touch[128]; /* touch screen name */ | ||
| 148 | char phys_touch[64]; /* touch screen phys path */ | ||
| 149 | struct timer_list ttimer; /* touch screen timer */ | ||
| 150 | int touch_x; /* x coordinate on touchscreen */ | ||
| 151 | int touch_y; /* y coordinate on touchscreen */ | ||
| 152 | }; | ||
| 153 | |||
| 154 | #define TOUCH_TIMEOUT (HZ/30) | ||
| 155 | |||
| 156 | /* vfd character device file operations */ | ||
| 157 | static const struct file_operations vfd_fops = { | ||
| 158 | .owner = THIS_MODULE, | ||
| 159 | .open = &display_open, | ||
| 160 | .write = &vfd_write, | ||
| 161 | .release = &display_close, | ||
| 162 | .llseek = noop_llseek, | ||
| 163 | }; | ||
| 164 | |||
| 165 | /* lcd character device file operations */ | ||
| 166 | static const struct file_operations lcd_fops = { | ||
| 167 | .owner = THIS_MODULE, | ||
| 168 | .open = &display_open, | ||
| 169 | .write = &lcd_write, | ||
| 170 | .release = &display_close, | ||
| 171 | .llseek = noop_llseek, | ||
| 172 | }; | ||
| 173 | |||
| 174 | enum { | ||
| 175 | IMON_DISPLAY_TYPE_AUTO = 0, | ||
| 176 | IMON_DISPLAY_TYPE_VFD = 1, | ||
| 177 | IMON_DISPLAY_TYPE_LCD = 2, | ||
| 178 | IMON_DISPLAY_TYPE_VGA = 3, | ||
| 179 | IMON_DISPLAY_TYPE_NONE = 4, | ||
| 180 | }; | ||
| 181 | |||
| 182 | enum { | ||
| 183 | IMON_KEY_IMON = 0, | ||
| 184 | IMON_KEY_MCE = 1, | ||
| 185 | IMON_KEY_PANEL = 2, | ||
| 186 | }; | ||
| 187 | |||
| 188 | /* | ||
| 189 | * USB Device ID for iMON USB Control Boards | ||
| 190 | * | ||
| 191 | * The Windows drivers contain 6 different inf files, more or less one for | ||
| 192 | * each new device until the 0x0034-0x0046 devices, which all use the same | ||
| 193 | * driver. Some of the devices in the 34-46 range haven't been definitively | ||
| 194 | * identified yet. Early devices have either a TriGem Computer, Inc. or a | ||
| 195 | * Samsung vendor ID (0x0aa8 and 0x04e8 respectively), while all later | ||
| 196 | * devices use the SoundGraph vendor ID (0x15c2). This driver only supports | ||
| 197 | * the ffdc and later devices, which do onboard decoding. | ||
| 198 | */ | ||
| 199 | static struct usb_device_id imon_usb_id_table[] = { | ||
| 200 | /* | ||
| 201 | * Several devices with this same device ID, all use iMON_PAD.inf | ||
| 202 | * SoundGraph iMON PAD (IR & VFD) | ||
| 203 | * SoundGraph iMON PAD (IR & LCD) | ||
| 204 | * SoundGraph iMON Knob (IR only) | ||
| 205 | */ | ||
| 206 | { USB_DEVICE(0x15c2, 0xffdc) }, | ||
| 207 | |||
| 208 | /* | ||
| 209 | * Newer devices, all driven by the latest iMON Windows driver, full | ||
| 210 | * list of device IDs extracted via 'strings Setup/data1.hdr |grep 15c2' | ||
| 211 | * Need user input to fill in details on unknown devices. | ||
| 212 | */ | ||
| 213 | /* SoundGraph iMON OEM Touch LCD (IR & 7" VGA LCD) */ | ||
| 214 | { USB_DEVICE(0x15c2, 0x0034) }, | ||
| 215 | /* SoundGraph iMON OEM Touch LCD (IR & 4.3" VGA LCD) */ | ||
| 216 | { USB_DEVICE(0x15c2, 0x0035) }, | ||
| 217 | /* SoundGraph iMON OEM VFD (IR & VFD) */ | ||
| 218 | { USB_DEVICE(0x15c2, 0x0036) }, | ||
| 219 | /* device specifics unknown */ | ||
| 220 | { USB_DEVICE(0x15c2, 0x0037) }, | ||
| 221 | /* SoundGraph iMON OEM LCD (IR & LCD) */ | ||
| 222 | { USB_DEVICE(0x15c2, 0x0038) }, | ||
| 223 | /* SoundGraph iMON UltraBay (IR & LCD) */ | ||
| 224 | { USB_DEVICE(0x15c2, 0x0039) }, | ||
| 225 | /* device specifics unknown */ | ||
| 226 | { USB_DEVICE(0x15c2, 0x003a) }, | ||
| 227 | /* device specifics unknown */ | ||
| 228 | { USB_DEVICE(0x15c2, 0x003b) }, | ||
| 229 | /* SoundGraph iMON OEM Inside (IR only) */ | ||
| 230 | { USB_DEVICE(0x15c2, 0x003c) }, | ||
| 231 | /* device specifics unknown */ | ||
| 232 | { USB_DEVICE(0x15c2, 0x003d) }, | ||
| 233 | /* device specifics unknown */ | ||
| 234 | { USB_DEVICE(0x15c2, 0x003e) }, | ||
| 235 | /* device specifics unknown */ | ||
| 236 | { USB_DEVICE(0x15c2, 0x003f) }, | ||
| 237 | /* device specifics unknown */ | ||
| 238 | { USB_DEVICE(0x15c2, 0x0040) }, | ||
| 239 | /* SoundGraph iMON MINI (IR only) */ | ||
| 240 | { USB_DEVICE(0x15c2, 0x0041) }, | ||
| 241 | /* Antec Veris Multimedia Station EZ External (IR only) */ | ||
| 242 | { USB_DEVICE(0x15c2, 0x0042) }, | ||
| 243 | /* Antec Veris Multimedia Station Basic Internal (IR only) */ | ||
| 244 | { USB_DEVICE(0x15c2, 0x0043) }, | ||
| 245 | /* Antec Veris Multimedia Station Elite (IR & VFD) */ | ||
| 246 | { USB_DEVICE(0x15c2, 0x0044) }, | ||
| 247 | /* Antec Veris Multimedia Station Premiere (IR & LCD) */ | ||
| 248 | { USB_DEVICE(0x15c2, 0x0045) }, | ||
| 249 | /* device specifics unknown */ | ||
| 250 | { USB_DEVICE(0x15c2, 0x0046) }, | ||
| 251 | {} | ||
| 252 | }; | ||
| 253 | |||
| 254 | /* USB Device data */ | ||
| 255 | static struct usb_driver imon_driver = { | ||
| 256 | .name = MOD_NAME, | ||
| 257 | .probe = imon_probe, | ||
| 258 | .disconnect = imon_disconnect, | ||
| 259 | .suspend = imon_suspend, | ||
| 260 | .resume = imon_resume, | ||
| 261 | .id_table = imon_usb_id_table, | ||
| 262 | }; | ||
| 263 | |||
| 264 | static struct usb_class_driver imon_vfd_class = { | ||
| 265 | .name = DEVICE_NAME, | ||
| 266 | .fops = &vfd_fops, | ||
| 267 | .minor_base = DISPLAY_MINOR_BASE, | ||
| 268 | }; | ||
| 269 | |||
| 270 | static struct usb_class_driver imon_lcd_class = { | ||
| 271 | .name = DEVICE_NAME, | ||
| 272 | .fops = &lcd_fops, | ||
| 273 | .minor_base = DISPLAY_MINOR_BASE, | ||
| 274 | }; | ||
| 275 | |||
| 276 | /* imon receiver front panel/knob key table */ | ||
| 277 | static const struct { | ||
| 278 | u64 hw_code; | ||
| 279 | u32 keycode; | ||
| 280 | } imon_panel_key_table[] = { | ||
| 281 | { 0x000000000f00ffeell, KEY_PROG1 }, /* Go */ | ||
| 282 | { 0x000000001f00ffeell, KEY_AUDIO }, | ||
| 283 | { 0x000000002000ffeell, KEY_VIDEO }, | ||
| 284 | { 0x000000002100ffeell, KEY_CAMERA }, | ||
| 285 | { 0x000000002700ffeell, KEY_DVD }, | ||
| 286 | { 0x000000002300ffeell, KEY_TV }, | ||
| 287 | { 0x000000000500ffeell, KEY_PREVIOUS }, | ||
| 288 | { 0x000000000700ffeell, KEY_REWIND }, | ||
| 289 | { 0x000000000400ffeell, KEY_STOP }, | ||
| 290 | { 0x000000003c00ffeell, KEY_PLAYPAUSE }, | ||
| 291 | { 0x000000000800ffeell, KEY_FASTFORWARD }, | ||
| 292 | { 0x000000000600ffeell, KEY_NEXT }, | ||
| 293 | { 0x000000010000ffeell, KEY_RIGHT }, | ||
| 294 | { 0x000001000000ffeell, KEY_LEFT }, | ||
| 295 | { 0x000000003d00ffeell, KEY_SELECT }, | ||
| 296 | { 0x000100000000ffeell, KEY_VOLUMEUP }, | ||
| 297 | { 0x010000000000ffeell, KEY_VOLUMEDOWN }, | ||
| 298 | { 0x000000000100ffeell, KEY_MUTE }, | ||
| 299 | /* 0xffdc iMON MCE VFD */ | ||
| 300 | { 0x00010000ffffffeell, KEY_VOLUMEUP }, | ||
| 301 | { 0x01000000ffffffeell, KEY_VOLUMEDOWN }, | ||
| 302 | /* iMON Knob values */ | ||
| 303 | { 0x000100ffffffffeell, KEY_VOLUMEUP }, | ||
| 304 | { 0x010000ffffffffeell, KEY_VOLUMEDOWN }, | ||
| 305 | { 0x000008ffffffffeell, KEY_MUTE }, | ||
| 306 | }; | ||
| 307 | |||
| 308 | /* to prevent races between open() and disconnect(), probing, etc */ | ||
| 309 | static DEFINE_MUTEX(driver_lock); | ||
| 310 | |||
| 311 | /* Module bookkeeping bits */ | ||
| 312 | MODULE_AUTHOR(MOD_AUTHOR); | ||
| 313 | MODULE_DESCRIPTION(MOD_DESC); | ||
| 314 | MODULE_VERSION(MOD_VERSION); | ||
| 315 | MODULE_LICENSE("GPL"); | ||
| 316 | MODULE_DEVICE_TABLE(usb, imon_usb_id_table); | ||
| 317 | |||
| 318 | static bool debug; | ||
| 319 | module_param(debug, bool, S_IRUGO | S_IWUSR); | ||
| 320 | MODULE_PARM_DESC(debug, "Debug messages: 0=no, 1=yes (default: no)"); | ||
| 321 | |||
| 322 | /* lcd, vfd, vga or none? should be auto-detected, but can be overridden... */ | ||
| 323 | static int display_type; | ||
| 324 | module_param(display_type, int, S_IRUGO); | ||
| 325 | MODULE_PARM_DESC(display_type, "Type of attached display. 0=autodetect, " | ||
| 326 | "1=vfd, 2=lcd, 3=vga, 4=none (default: autodetect)"); | ||
| 327 | |||
| 328 | static int pad_stabilize = 1; | ||
| 329 | module_param(pad_stabilize, int, S_IRUGO | S_IWUSR); | ||
| 330 | MODULE_PARM_DESC(pad_stabilize, "Apply stabilization algorithm to iMON PAD " | ||
| 331 | "presses in arrow key mode. 0=disable, 1=enable (default)."); | ||
| 332 | |||
| 333 | /* | ||
| 334 | * In certain use cases, mouse mode isn't really helpful, and could actually | ||
| 335 | * cause confusion, so allow disabling it when the IR device is open. | ||
| 336 | */ | ||
| 337 | static bool nomouse; | ||
| 338 | module_param(nomouse, bool, S_IRUGO | S_IWUSR); | ||
| 339 | MODULE_PARM_DESC(nomouse, "Disable mouse input device mode when IR device is " | ||
| 340 | "open. 0=don't disable, 1=disable. (default: don't disable)"); | ||
| 341 | |||
| 342 | /* threshold at which a pad push registers as an arrow key in kbd mode */ | ||
| 343 | static int pad_thresh; | ||
| 344 | module_param(pad_thresh, int, S_IRUGO | S_IWUSR); | ||
| 345 | MODULE_PARM_DESC(pad_thresh, "Threshold at which a pad push registers as an " | ||
| 346 | "arrow key in kbd mode (default: 28)"); | ||
| 347 | |||
| 348 | |||
| 349 | static void free_imon_context(struct imon_context *ictx) | ||
| 350 | { | ||
| 351 | struct device *dev = ictx->dev; | ||
| 352 | |||
| 353 | usb_free_urb(ictx->tx_urb); | ||
| 354 | usb_free_urb(ictx->rx_urb_intf0); | ||
| 355 | usb_free_urb(ictx->rx_urb_intf1); | ||
| 356 | kfree(ictx); | ||
| 357 | |||
| 358 | dev_dbg(dev, "%s: iMON context freed\n", __func__); | ||
| 359 | } | ||
| 360 | |||
| 361 | /** | ||
| 362 | * Called when the Display device (e.g. /dev/lcd0) | ||
| 363 | * is opened by the application. | ||
| 364 | */ | ||
| 365 | static int display_open(struct inode *inode, struct file *file) | ||
| 366 | { | ||
| 367 | struct usb_interface *interface; | ||
| 368 | struct imon_context *ictx = NULL; | ||
| 369 | int subminor; | ||
| 370 | int retval = 0; | ||
| 371 | |||
| 372 | /* prevent races with disconnect */ | ||
| 373 | mutex_lock(&driver_lock); | ||
| 374 | |||
| 375 | subminor = iminor(inode); | ||
| 376 | interface = usb_find_interface(&imon_driver, subminor); | ||
| 377 | if (!interface) { | ||
| 378 | pr_err("could not find interface for minor %d\n", subminor); | ||
| 379 | retval = -ENODEV; | ||
| 380 | goto exit; | ||
| 381 | } | ||
| 382 | ictx = usb_get_intfdata(interface); | ||
| 383 | |||
| 384 | if (!ictx) { | ||
| 385 | pr_err("no context found for minor %d\n", subminor); | ||
| 386 | retval = -ENODEV; | ||
| 387 | goto exit; | ||
| 388 | } | ||
| 389 | |||
| 390 | mutex_lock(&ictx->lock); | ||
| 391 | |||
| 392 | if (!ictx->display_supported) { | ||
| 393 | pr_err("display not supported by device\n"); | ||
| 394 | retval = -ENODEV; | ||
| 395 | } else if (ictx->display_isopen) { | ||
| 396 | pr_err("display port is already open\n"); | ||
| 397 | retval = -EBUSY; | ||
| 398 | } else { | ||
| 399 | ictx->display_isopen = true; | ||
| 400 | file->private_data = ictx; | ||
| 401 | dev_dbg(ictx->dev, "display port opened\n"); | ||
| 402 | } | ||
| 403 | |||
| 404 | mutex_unlock(&ictx->lock); | ||
| 405 | |||
| 406 | exit: | ||
| 407 | mutex_unlock(&driver_lock); | ||
| 408 | return retval; | ||
| 409 | } | ||
| 410 | |||
| 411 | /** | ||
| 412 | * Called when the display device (e.g. /dev/lcd0) | ||
| 413 | * is closed by the application. | ||
| 414 | */ | ||
| 415 | static int display_close(struct inode *inode, struct file *file) | ||
| 416 | { | ||
| 417 | struct imon_context *ictx = NULL; | ||
| 418 | int retval = 0; | ||
| 419 | |||
| 420 | ictx = file->private_data; | ||
| 421 | |||
| 422 | if (!ictx) { | ||
| 423 | pr_err("no context for device\n"); | ||
| 424 | return -ENODEV; | ||
| 425 | } | ||
| 426 | |||
| 427 | mutex_lock(&ictx->lock); | ||
| 428 | |||
| 429 | if (!ictx->display_supported) { | ||
| 430 | pr_err("display not supported by device\n"); | ||
| 431 | retval = -ENODEV; | ||
| 432 | } else if (!ictx->display_isopen) { | ||
| 433 | pr_err("display is not open\n"); | ||
| 434 | retval = -EIO; | ||
| 435 | } else { | ||
| 436 | ictx->display_isopen = false; | ||
| 437 | dev_dbg(ictx->dev, "display port closed\n"); | ||
| 438 | if (!ictx->dev_present_intf0) { | ||
| 439 | /* | ||
| 440 | * Device disconnected before close and IR port is not | ||
| 441 | * open. If IR port is open, context will be deleted by | ||
| 442 | * ir_close. | ||
| 443 | */ | ||
| 444 | mutex_unlock(&ictx->lock); | ||
| 445 | free_imon_context(ictx); | ||
| 446 | return retval; | ||
| 447 | } | ||
| 448 | } | ||
| 449 | |||
| 450 | mutex_unlock(&ictx->lock); | ||
| 451 | return retval; | ||
| 452 | } | ||
| 453 | |||
| 454 | /** | ||
| 455 | * Sends a packet to the device -- this function must be called | ||
| 456 | * with ictx->lock held. | ||
| 457 | */ | ||
| 458 | static int send_packet(struct imon_context *ictx) | ||
| 459 | { | ||
| 460 | unsigned int pipe; | ||
| 461 | unsigned long timeout; | ||
| 462 | int interval = 0; | ||
| 463 | int retval = 0; | ||
| 464 | struct usb_ctrlrequest *control_req = NULL; | ||
| 465 | |||
| 466 | /* Check if we need to use control or interrupt urb */ | ||
| 467 | if (!ictx->tx_control) { | ||
| 468 | pipe = usb_sndintpipe(ictx->usbdev_intf0, | ||
| 469 | ictx->tx_endpoint->bEndpointAddress); | ||
| 470 | interval = ictx->tx_endpoint->bInterval; | ||
| 471 | |||
| 472 | usb_fill_int_urb(ictx->tx_urb, ictx->usbdev_intf0, pipe, | ||
| 473 | ictx->usb_tx_buf, | ||
| 474 | sizeof(ictx->usb_tx_buf), | ||
| 475 | usb_tx_callback, ictx, interval); | ||
| 476 | |||
| 477 | ictx->tx_urb->actual_length = 0; | ||
| 478 | } else { | ||
| 479 | /* fill request into kmalloc'ed space: */ | ||
| 480 | control_req = kmalloc(sizeof(struct usb_ctrlrequest), | ||
| 481 | GFP_KERNEL); | ||
| 482 | if (control_req == NULL) | ||
| 483 | return -ENOMEM; | ||
| 484 | |||
| 485 | /* setup packet is '21 09 0200 0001 0008' */ | ||
| 486 | control_req->bRequestType = 0x21; | ||
| 487 | control_req->bRequest = 0x09; | ||
| 488 | control_req->wValue = cpu_to_le16(0x0200); | ||
| 489 | control_req->wIndex = cpu_to_le16(0x0001); | ||
| 490 | control_req->wLength = cpu_to_le16(0x0008); | ||
| 491 | |||
| 492 | /* control pipe is endpoint 0x00 */ | ||
| 493 | pipe = usb_sndctrlpipe(ictx->usbdev_intf0, 0); | ||
| 494 | |||
| 495 | /* build the control urb */ | ||
| 496 | usb_fill_control_urb(ictx->tx_urb, ictx->usbdev_intf0, | ||
| 497 | pipe, (unsigned char *)control_req, | ||
| 498 | ictx->usb_tx_buf, | ||
| 499 | sizeof(ictx->usb_tx_buf), | ||
| 500 | usb_tx_callback, ictx); | ||
| 501 | ictx->tx_urb->actual_length = 0; | ||
| 502 | } | ||
| 503 | |||
| 504 | init_completion(&ictx->tx.finished); | ||
| 505 | ictx->tx.busy = true; | ||
| 506 | smp_rmb(); /* ensure later readers know we're busy */ | ||
| 507 | |||
| 508 | retval = usb_submit_urb(ictx->tx_urb, GFP_KERNEL); | ||
| 509 | if (retval) { | ||
| 510 | ictx->tx.busy = false; | ||
| 511 | smp_rmb(); /* ensure later readers know we're not busy */ | ||
| 512 | pr_err("error submitting urb(%d)\n", retval); | ||
| 513 | } else { | ||
| 514 | /* Wait for transmission to complete (or abort) */ | ||
| 515 | mutex_unlock(&ictx->lock); | ||
| 516 | retval = wait_for_completion_interruptible( | ||
| 517 | &ictx->tx.finished); | ||
| 518 | if (retval) | ||
| 519 | pr_err("task interrupted\n"); | ||
| 520 | mutex_lock(&ictx->lock); | ||
| 521 | |||
| 522 | retval = ictx->tx.status; | ||
| 523 | if (retval) | ||
| 524 | pr_err("packet tx failed (%d)\n", retval); | ||
| 525 | } | ||
| 526 | |||
| 527 | kfree(control_req); | ||
| 528 | |||
| 529 | /* | ||
| 530 | * Induce a mandatory 5ms delay before returning, as otherwise, | ||
| 531 | * send_packet can get called so rapidly as to overwhelm the device, | ||
| 532 | * particularly on faster systems and/or those with quirky usb. | ||
| 533 | */ | ||
| 534 | timeout = msecs_to_jiffies(5); | ||
| 535 | set_current_state(TASK_UNINTERRUPTIBLE); | ||
| 536 | schedule_timeout(timeout); | ||
| 537 | |||
| 538 | return retval; | ||
| 539 | } | ||
| 540 | |||
| 541 | /** | ||
| 542 | * Sends an associate packet to the iMON 2.4G. | ||
| 543 | * | ||
| 544 | * This might not be such a good idea, since it has an id collision with | ||
| 545 | * some versions of the "IR & VFD" combo. The only way to determine if it | ||
| 546 | * is an RF version is to look at the product description string. (Which | ||
| 547 | * we currently do not fetch). | ||
| 548 | */ | ||
| 549 | static int send_associate_24g(struct imon_context *ictx) | ||
| 550 | { | ||
| 551 | int retval; | ||
| 552 | const unsigned char packet[8] = { 0x01, 0x00, 0x00, 0x00, | ||
| 553 | 0x00, 0x00, 0x00, 0x20 }; | ||
| 554 | |||
| 555 | if (!ictx) { | ||
| 556 | pr_err("no context for device\n"); | ||
| 557 | return -ENODEV; | ||
| 558 | } | ||
| 559 | |||
| 560 | if (!ictx->dev_present_intf0) { | ||
| 561 | pr_err("no iMON device present\n"); | ||
| 562 | return -ENODEV; | ||
| 563 | } | ||
| 564 | |||
| 565 | memcpy(ictx->usb_tx_buf, packet, sizeof(packet)); | ||
| 566 | retval = send_packet(ictx); | ||
| 567 | |||
| 568 | return retval; | ||
| 569 | } | ||
| 570 | |||
| 571 | /** | ||
| 572 | * Sends packets to setup and show clock on iMON display | ||
| 573 | * | ||
| 574 | * Arguments: year - last 2 digits of year, month - 1..12, | ||
| 575 | * day - 1..31, dow - day of the week (0-Sun...6-Sat), | ||
| 576 | * hour - 0..23, minute - 0..59, second - 0..59 | ||
| 577 | */ | ||
| 578 | static int send_set_imon_clock(struct imon_context *ictx, | ||
| 579 | unsigned int year, unsigned int month, | ||
| 580 | unsigned int day, unsigned int dow, | ||
| 581 | unsigned int hour, unsigned int minute, | ||
| 582 | unsigned int second) | ||
| 583 | { | ||
| 584 | unsigned char clock_enable_pkt[IMON_CLOCK_ENABLE_PACKETS][8]; | ||
| 585 | int retval = 0; | ||
| 586 | int i; | ||
| 587 | |||
| 588 | if (!ictx) { | ||
| 589 | pr_err("no context for device\n"); | ||
| 590 | return -ENODEV; | ||
| 591 | } | ||
| 592 | |||
| 593 | switch (ictx->display_type) { | ||
| 594 | case IMON_DISPLAY_TYPE_LCD: | ||
| 595 | clock_enable_pkt[0][0] = 0x80; | ||
| 596 | clock_enable_pkt[0][1] = year; | ||
| 597 | clock_enable_pkt[0][2] = month-1; | ||
| 598 | clock_enable_pkt[0][3] = day; | ||
| 599 | clock_enable_pkt[0][4] = hour; | ||
| 600 | clock_enable_pkt[0][5] = minute; | ||
| 601 | clock_enable_pkt[0][6] = second; | ||
| 602 | |||
| 603 | clock_enable_pkt[1][0] = 0x80; | ||
| 604 | clock_enable_pkt[1][1] = 0; | ||
| 605 | clock_enable_pkt[1][2] = 0; | ||
| 606 | clock_enable_pkt[1][3] = 0; | ||
| 607 | clock_enable_pkt[1][4] = 0; | ||
| 608 | clock_enable_pkt[1][5] = 0; | ||
| 609 | clock_enable_pkt[1][6] = 0; | ||
| 610 | |||
| 611 | if (ictx->product == 0xffdc) { | ||
| 612 | clock_enable_pkt[0][7] = 0x50; | ||
| 613 | clock_enable_pkt[1][7] = 0x51; | ||
| 614 | } else { | ||
| 615 | clock_enable_pkt[0][7] = 0x88; | ||
| 616 | clock_enable_pkt[1][7] = 0x8a; | ||
| 617 | } | ||
| 618 | |||
| 619 | break; | ||
| 620 | |||
| 621 | case IMON_DISPLAY_TYPE_VFD: | ||
| 622 | clock_enable_pkt[0][0] = year; | ||
| 623 | clock_enable_pkt[0][1] = month-1; | ||
| 624 | clock_enable_pkt[0][2] = day; | ||
| 625 | clock_enable_pkt[0][3] = dow; | ||
| 626 | clock_enable_pkt[0][4] = hour; | ||
| 627 | clock_enable_pkt[0][5] = minute; | ||
| 628 | clock_enable_pkt[0][6] = second; | ||
| 629 | clock_enable_pkt[0][7] = 0x40; | ||
| 630 | |||
| 631 | clock_enable_pkt[1][0] = 0; | ||
| 632 | clock_enable_pkt[1][1] = 0; | ||
| 633 | clock_enable_pkt[1][2] = 1; | ||
| 634 | clock_enable_pkt[1][3] = 0; | ||
| 635 | clock_enable_pkt[1][4] = 0; | ||
| 636 | clock_enable_pkt[1][5] = 0; | ||
| 637 | clock_enable_pkt[1][6] = 0; | ||
| 638 | clock_enable_pkt[1][7] = 0x42; | ||
| 639 | |||
| 640 | break; | ||
| 641 | |||
| 642 | default: | ||
| 643 | return -ENODEV; | ||
| 644 | } | ||
| 645 | |||
| 646 | for (i = 0; i < IMON_CLOCK_ENABLE_PACKETS; i++) { | ||
| 647 | memcpy(ictx->usb_tx_buf, clock_enable_pkt[i], 8); | ||
| 648 | retval = send_packet(ictx); | ||
| 649 | if (retval) { | ||
| 650 | pr_err("send_packet failed for packet %d\n", i); | ||
| 651 | break; | ||
| 652 | } | ||
| 653 | } | ||
| 654 | |||
| 655 | return retval; | ||
| 656 | } | ||
| 657 | |||
| 658 | /** | ||
| 659 | * These are the sysfs functions to handle the association on the iMON 2.4G LT. | ||
| 660 | */ | ||
| 661 | static ssize_t show_associate_remote(struct device *d, | ||
| 662 | struct device_attribute *attr, | ||
| 663 | char *buf) | ||
| 664 | { | ||
| 665 | struct imon_context *ictx = dev_get_drvdata(d); | ||
| 666 | |||
| 667 | if (!ictx) | ||
| 668 | return -ENODEV; | ||
| 669 | |||
| 670 | mutex_lock(&ictx->lock); | ||
| 671 | if (ictx->rf_isassociating) | ||
| 672 | strcpy(buf, "associating\n"); | ||
| 673 | else | ||
| 674 | strcpy(buf, "closed\n"); | ||
| 675 | |||
| 676 | dev_info(d, "Visit http://www.lirc.org/html/imon-24g.html for " | ||
| 677 | "instructions on how to associate your iMON 2.4G DT/LT " | ||
| 678 | "remote\n"); | ||
| 679 | mutex_unlock(&ictx->lock); | ||
| 680 | return strlen(buf); | ||
| 681 | } | ||
| 682 | |||
| 683 | static ssize_t store_associate_remote(struct device *d, | ||
| 684 | struct device_attribute *attr, | ||
| 685 | const char *buf, size_t count) | ||
| 686 | { | ||
| 687 | struct imon_context *ictx; | ||
| 688 | |||
| 689 | ictx = dev_get_drvdata(d); | ||
| 690 | |||
| 691 | if (!ictx) | ||
| 692 | return -ENODEV; | ||
| 693 | |||
| 694 | mutex_lock(&ictx->lock); | ||
| 695 | ictx->rf_isassociating = true; | ||
| 696 | send_associate_24g(ictx); | ||
| 697 | mutex_unlock(&ictx->lock); | ||
| 698 | |||
| 699 | return count; | ||
| 700 | } | ||
| 701 | |||
| 702 | /** | ||
| 703 | * sysfs functions to control internal imon clock | ||
| 704 | */ | ||
| 705 | static ssize_t show_imon_clock(struct device *d, | ||
| 706 | struct device_attribute *attr, char *buf) | ||
| 707 | { | ||
| 708 | struct imon_context *ictx = dev_get_drvdata(d); | ||
| 709 | size_t len; | ||
| 710 | |||
| 711 | if (!ictx) | ||
| 712 | return -ENODEV; | ||
| 713 | |||
| 714 | mutex_lock(&ictx->lock); | ||
| 715 | |||
| 716 | if (!ictx->display_supported) { | ||
| 717 | len = snprintf(buf, PAGE_SIZE, "Not supported."); | ||
| 718 | } else { | ||
| 719 | len = snprintf(buf, PAGE_SIZE, | ||
| 720 | "To set the clock on your iMON display:\n" | ||
| 721 | "# date \"+%%y %%m %%d %%w %%H %%M %%S\" > imon_clock\n" | ||
| 722 | "%s", ictx->display_isopen ? | ||
| 723 | "\nNOTE: imon device must be closed\n" : ""); | ||
| 724 | } | ||
| 725 | |||
| 726 | mutex_unlock(&ictx->lock); | ||
| 727 | |||
| 728 | return len; | ||
| 729 | } | ||
| 730 | |||
| 731 | static ssize_t store_imon_clock(struct device *d, | ||
| 732 | struct device_attribute *attr, | ||
| 733 | const char *buf, size_t count) | ||
| 734 | { | ||
| 735 | struct imon_context *ictx = dev_get_drvdata(d); | ||
| 736 | ssize_t retval; | ||
| 737 | unsigned int year, month, day, dow, hour, minute, second; | ||
| 738 | |||
| 739 | if (!ictx) | ||
| 740 | return -ENODEV; | ||
| 741 | |||
| 742 | mutex_lock(&ictx->lock); | ||
| 743 | |||
| 744 | if (!ictx->display_supported) { | ||
| 745 | retval = -ENODEV; | ||
| 746 | goto exit; | ||
| 747 | } else if (ictx->display_isopen) { | ||
| 748 | retval = -EBUSY; | ||
| 749 | goto exit; | ||
| 750 | } | ||
| 751 | |||
| 752 | if (sscanf(buf, "%u %u %u %u %u %u %u", &year, &month, &day, &dow, | ||
| 753 | &hour, &minute, &second) != 7) { | ||
| 754 | retval = -EINVAL; | ||
| 755 | goto exit; | ||
| 756 | } | ||
| 757 | |||
| 758 | if ((month < 1 || month > 12) || | ||
| 759 | (day < 1 || day > 31) || (dow > 6) || | ||
| 760 | (hour > 23) || (minute > 59) || (second > 59)) { | ||
| 761 | retval = -EINVAL; | ||
| 762 | goto exit; | ||
| 763 | } | ||
| 764 | |||
| 765 | retval = send_set_imon_clock(ictx, year, month, day, dow, | ||
| 766 | hour, minute, second); | ||
| 767 | if (retval) | ||
| 768 | goto exit; | ||
| 769 | |||
| 770 | retval = count; | ||
| 771 | exit: | ||
| 772 | mutex_unlock(&ictx->lock); | ||
| 773 | |||
| 774 | return retval; | ||
| 775 | } | ||
| 776 | |||
| 777 | |||
| 778 | static DEVICE_ATTR(imon_clock, S_IWUSR | S_IRUGO, show_imon_clock, | ||
| 779 | store_imon_clock); | ||
| 780 | |||
| 781 | static DEVICE_ATTR(associate_remote, S_IWUSR | S_IRUGO, show_associate_remote, | ||
| 782 | store_associate_remote); | ||
| 783 | |||
| 784 | static struct attribute *imon_display_sysfs_entries[] = { | ||
| 785 | &dev_attr_imon_clock.attr, | ||
| 786 | NULL | ||
| 787 | }; | ||
| 788 | |||
| 789 | static struct attribute_group imon_display_attr_group = { | ||
| 790 | .attrs = imon_display_sysfs_entries | ||
| 791 | }; | ||
| 792 | |||
| 793 | static struct attribute *imon_rf_sysfs_entries[] = { | ||
| 794 | &dev_attr_associate_remote.attr, | ||
| 795 | NULL | ||
| 796 | }; | ||
| 797 | |||
| 798 | static struct attribute_group imon_rf_attr_group = { | ||
| 799 | .attrs = imon_rf_sysfs_entries | ||
| 800 | }; | ||
| 801 | |||
| 802 | /** | ||
| 803 | * Writes data to the VFD. The iMON VFD is 2x16 characters | ||
| 804 | * and requires data in 5 consecutive USB interrupt packets, | ||
| 805 | * each packet but the last carrying 7 bytes. | ||
| 806 | * | ||
| 807 | * I don't know if the VFD board supports features such as | ||
| 808 | * scrolling, clearing rows, blanking, etc. so at | ||
| 809 | * the caller must provide a full screen of data. If fewer | ||
| 810 | * than 32 bytes are provided spaces will be appended to | ||
| 811 | * generate a full screen. | ||
| 812 | */ | ||
| 813 | static ssize_t vfd_write(struct file *file, const char *buf, | ||
| 814 | size_t n_bytes, loff_t *pos) | ||
| 815 | { | ||
| 816 | int i; | ||
| 817 | int offset; | ||
| 818 | int seq; | ||
| 819 | int retval = 0; | ||
| 820 | struct imon_context *ictx; | ||
| 821 | const unsigned char vfd_packet6[] = { | ||
| 822 | 0x01, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF }; | ||
| 823 | |||
| 824 | ictx = file->private_data; | ||
| 825 | if (!ictx) { | ||
| 826 | pr_err("no context for device\n"); | ||
| 827 | return -ENODEV; | ||
| 828 | } | ||
| 829 | |||
| 830 | mutex_lock(&ictx->lock); | ||
| 831 | |||
| 832 | if (!ictx->dev_present_intf0) { | ||
| 833 | pr_err("no iMON device present\n"); | ||
| 834 | retval = -ENODEV; | ||
| 835 | goto exit; | ||
| 836 | } | ||
| 837 | |||
| 838 | if (n_bytes <= 0 || n_bytes > 32) { | ||
| 839 | pr_err("invalid payload size\n"); | ||
| 840 | retval = -EINVAL; | ||
| 841 | goto exit; | ||
| 842 | } | ||
| 843 | |||
| 844 | if (copy_from_user(ictx->tx.data_buf, buf, n_bytes)) { | ||
| 845 | retval = -EFAULT; | ||
| 846 | goto exit; | ||
| 847 | } | ||
| 848 | |||
| 849 | /* Pad with spaces */ | ||
| 850 | for (i = n_bytes; i < 32; ++i) | ||
| 851 | ictx->tx.data_buf[i] = ' '; | ||
| 852 | |||
| 853 | for (i = 32; i < 35; ++i) | ||
| 854 | ictx->tx.data_buf[i] = 0xFF; | ||
| 855 | |||
| 856 | offset = 0; | ||
| 857 | seq = 0; | ||
| 858 | |||
| 859 | do { | ||
| 860 | memcpy(ictx->usb_tx_buf, ictx->tx.data_buf + offset, 7); | ||
| 861 | ictx->usb_tx_buf[7] = (unsigned char) seq; | ||
| 862 | |||
| 863 | retval = send_packet(ictx); | ||
| 864 | if (retval) { | ||
| 865 | pr_err("send packet failed for packet #%d\n", seq / 2); | ||
| 866 | goto exit; | ||
| 867 | } else { | ||
| 868 | seq += 2; | ||
| 869 | offset += 7; | ||
| 870 | } | ||
| 871 | |||
| 872 | } while (offset < 35); | ||
| 873 | |||
| 874 | /* Send packet #6 */ | ||
| 875 | memcpy(ictx->usb_tx_buf, &vfd_packet6, sizeof(vfd_packet6)); | ||
| 876 | ictx->usb_tx_buf[7] = (unsigned char) seq; | ||
| 877 | retval = send_packet(ictx); | ||
| 878 | if (retval) | ||
| 879 | pr_err("send packet failed for packet #%d\n", seq / 2); | ||
| 880 | |||
| 881 | exit: | ||
| 882 | mutex_unlock(&ictx->lock); | ||
| 883 | |||
| 884 | return (!retval) ? n_bytes : retval; | ||
| 885 | } | ||
| 886 | |||
| 887 | /** | ||
| 888 | * Writes data to the LCD. The iMON OEM LCD screen expects 8-byte | ||
| 889 | * packets. We accept data as 16 hexadecimal digits, followed by a | ||
| 890 | * newline (to make it easy to drive the device from a command-line | ||
| 891 | * -- even though the actual binary data is a bit complicated). | ||
| 892 | * | ||
| 893 | * The device itself is not a "traditional" text-mode display. It's | ||
| 894 | * actually a 16x96 pixel bitmap display. That means if you want to | ||
| 895 | * display text, you've got to have your own "font" and translate the | ||
| 896 | * text into bitmaps for display. This is really flexible (you can | ||
| 897 | * display whatever diacritics you need, and so on), but it's also | ||
| 898 | * a lot more complicated than most LCDs... | ||
| 899 | */ | ||
| 900 | static ssize_t lcd_write(struct file *file, const char *buf, | ||
| 901 | size_t n_bytes, loff_t *pos) | ||
| 902 | { | ||
| 903 | int retval = 0; | ||
| 904 | struct imon_context *ictx; | ||
| 905 | |||
| 906 | ictx = file->private_data; | ||
| 907 | if (!ictx) { | ||
| 908 | pr_err("no context for device\n"); | ||
| 909 | return -ENODEV; | ||
| 910 | } | ||
| 911 | |||
| 912 | mutex_lock(&ictx->lock); | ||
| 913 | |||
| 914 | if (!ictx->display_supported) { | ||
| 915 | pr_err("no iMON display present\n"); | ||
| 916 | retval = -ENODEV; | ||
| 917 | goto exit; | ||
| 918 | } | ||
| 919 | |||
| 920 | if (n_bytes != 8) { | ||
| 921 | pr_err("invalid payload size: %d (expected 8)\n", (int)n_bytes); | ||
| 922 | retval = -EINVAL; | ||
| 923 | goto exit; | ||
| 924 | } | ||
| 925 | |||
| 926 | if (copy_from_user(ictx->usb_tx_buf, buf, 8)) { | ||
| 927 | retval = -EFAULT; | ||
| 928 | goto exit; | ||
| 929 | } | ||
| 930 | |||
| 931 | retval = send_packet(ictx); | ||
| 932 | if (retval) { | ||
| 933 | pr_err("send packet failed!\n"); | ||
| 934 | goto exit; | ||
| 935 | } else { | ||
| 936 | dev_dbg(ictx->dev, "%s: write %d bytes to LCD\n", | ||
| 937 | __func__, (int) n_bytes); | ||
| 938 | } | ||
| 939 | exit: | ||
| 940 | mutex_unlock(&ictx->lock); | ||
| 941 | return (!retval) ? n_bytes : retval; | ||
| 942 | } | ||
| 943 | |||
| 944 | /** | ||
| 945 | * Callback function for USB core API: transmit data | ||
| 946 | */ | ||
| 947 | static void usb_tx_callback(struct urb *urb) | ||
| 948 | { | ||
| 949 | struct imon_context *ictx; | ||
| 950 | |||
| 951 | if (!urb) | ||
| 952 | return; | ||
| 953 | ictx = (struct imon_context *)urb->context; | ||
| 954 | if (!ictx) | ||
| 955 | return; | ||
| 956 | |||
| 957 | ictx->tx.status = urb->status; | ||
| 958 | |||
| 959 | /* notify waiters that write has finished */ | ||
| 960 | ictx->tx.busy = false; | ||
| 961 | smp_rmb(); /* ensure later readers know we're not busy */ | ||
| 962 | complete(&ictx->tx.finished); | ||
| 963 | } | ||
| 964 | |||
| 965 | /** | ||
| 966 | * report touchscreen input | ||
| 967 | */ | ||
| 968 | static void imon_touch_display_timeout(unsigned long data) | ||
| 969 | { | ||
| 970 | struct imon_context *ictx = (struct imon_context *)data; | ||
| 971 | |||
| 972 | if (ictx->display_type != IMON_DISPLAY_TYPE_VGA) | ||
| 973 | return; | ||
| 974 | |||
| 975 | input_report_abs(ictx->touch, ABS_X, ictx->touch_x); | ||
| 976 | input_report_abs(ictx->touch, ABS_Y, ictx->touch_y); | ||
| 977 | input_report_key(ictx->touch, BTN_TOUCH, 0x00); | ||
| 978 | input_sync(ictx->touch); | ||
| 979 | } | ||
| 980 | |||
| 981 | /** | ||
| 982 | * iMON IR receivers support two different signal sets -- those used by | ||
| 983 | * the iMON remotes, and those used by the Windows MCE remotes (which is | ||
| 984 | * really just RC-6), but only one or the other at a time, as the signals | ||
| 985 | * are decoded onboard the receiver. | ||
| 986 | */ | ||
| 987 | int imon_ir_change_protocol(void *priv, u64 ir_type) | ||
| 988 | { | ||
| 989 | int retval; | ||
| 990 | struct imon_context *ictx = priv; | ||
| 991 | struct device *dev = ictx->dev; | ||
| 992 | bool pad_mouse; | ||
| 993 | unsigned char ir_proto_packet[] = { | ||
| 994 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86 }; | ||
| 995 | |||
| 996 | if (ir_type && !(ir_type & ictx->props->allowed_protos)) | ||
| 997 | dev_warn(dev, "Looks like you're trying to use an IR protocol " | ||
| 998 | "this device does not support\n"); | ||
| 999 | |||
| 1000 | switch (ir_type) { | ||
| 1001 | case IR_TYPE_RC6: | ||
| 1002 | dev_dbg(dev, "Configuring IR receiver for MCE protocol\n"); | ||
| 1003 | ir_proto_packet[0] = 0x01; | ||
| 1004 | pad_mouse = false; | ||
| 1005 | break; | ||
| 1006 | case IR_TYPE_UNKNOWN: | ||
| 1007 | case IR_TYPE_OTHER: | ||
| 1008 | dev_dbg(dev, "Configuring IR receiver for iMON protocol\n"); | ||
| 1009 | if (pad_stabilize && !nomouse) | ||
| 1010 | pad_mouse = true; | ||
| 1011 | else { | ||
| 1012 | dev_dbg(dev, "PAD stabilize functionality disabled\n"); | ||
| 1013 | pad_mouse = false; | ||
| 1014 | } | ||
| 1015 | /* ir_proto_packet[0] = 0x00; // already the default */ | ||
| 1016 | ir_type = IR_TYPE_OTHER; | ||
| 1017 | break; | ||
| 1018 | default: | ||
| 1019 | dev_warn(dev, "Unsupported IR protocol specified, overriding " | ||
| 1020 | "to iMON IR protocol\n"); | ||
| 1021 | if (pad_stabilize && !nomouse) | ||
| 1022 | pad_mouse = true; | ||
| 1023 | else { | ||
| 1024 | dev_dbg(dev, "PAD stabilize functionality disabled\n"); | ||
| 1025 | pad_mouse = false; | ||
| 1026 | } | ||
| 1027 | /* ir_proto_packet[0] = 0x00; // already the default */ | ||
| 1028 | ir_type = IR_TYPE_OTHER; | ||
| 1029 | break; | ||
| 1030 | } | ||
| 1031 | |||
| 1032 | memcpy(ictx->usb_tx_buf, &ir_proto_packet, sizeof(ir_proto_packet)); | ||
| 1033 | |||
| 1034 | retval = send_packet(ictx); | ||
| 1035 | if (retval) | ||
| 1036 | goto out; | ||
| 1037 | |||
| 1038 | ictx->ir_type = ir_type; | ||
| 1039 | ictx->pad_mouse = pad_mouse; | ||
| 1040 | |||
| 1041 | out: | ||
| 1042 | return retval; | ||
| 1043 | } | ||
| 1044 | |||
| 1045 | static inline int tv2int(const struct timeval *a, const struct timeval *b) | ||
| 1046 | { | ||
| 1047 | int usecs = 0; | ||
| 1048 | int sec = 0; | ||
| 1049 | |||
| 1050 | if (b->tv_usec > a->tv_usec) { | ||
| 1051 | usecs = 1000000; | ||
| 1052 | sec--; | ||
| 1053 | } | ||
| 1054 | |||
| 1055 | usecs += a->tv_usec - b->tv_usec; | ||
| 1056 | |||
| 1057 | sec += a->tv_sec - b->tv_sec; | ||
| 1058 | sec *= 1000; | ||
| 1059 | usecs /= 1000; | ||
| 1060 | sec += usecs; | ||
| 1061 | |||
| 1062 | if (sec < 0) | ||
| 1063 | sec = 1000; | ||
| 1064 | |||
| 1065 | return sec; | ||
| 1066 | } | ||
| 1067 | |||
| 1068 | /** | ||
| 1069 | * The directional pad behaves a bit differently, depending on whether this is | ||
| 1070 | * one of the older ffdc devices or a newer device. Newer devices appear to | ||
| 1071 | * have a higher resolution matrix for more precise mouse movement, but it | ||
| 1072 | * makes things overly sensitive in keyboard mode, so we do some interesting | ||
| 1073 | * contortions to make it less touchy. Older devices run through the same | ||
| 1074 | * routine with shorter timeout and a smaller threshold. | ||
| 1075 | */ | ||
| 1076 | static int stabilize(int a, int b, u16 timeout, u16 threshold) | ||
| 1077 | { | ||
| 1078 | struct timeval ct; | ||
| 1079 | static struct timeval prev_time = {0, 0}; | ||
| 1080 | static struct timeval hit_time = {0, 0}; | ||
| 1081 | static int x, y, prev_result, hits; | ||
| 1082 | int result = 0; | ||
| 1083 | int msec, msec_hit; | ||
| 1084 | |||
| 1085 | do_gettimeofday(&ct); | ||
| 1086 | msec = tv2int(&ct, &prev_time); | ||
| 1087 | msec_hit = tv2int(&ct, &hit_time); | ||
| 1088 | |||
| 1089 | if (msec > 100) { | ||
| 1090 | x = 0; | ||
| 1091 | y = 0; | ||
| 1092 | hits = 0; | ||
| 1093 | } | ||
| 1094 | |||
| 1095 | x += a; | ||
| 1096 | y += b; | ||
| 1097 | |||
| 1098 | prev_time = ct; | ||
| 1099 | |||
| 1100 | if (abs(x) > threshold || abs(y) > threshold) { | ||
| 1101 | if (abs(y) > abs(x)) | ||
| 1102 | result = (y > 0) ? 0x7F : 0x80; | ||
| 1103 | else | ||
| 1104 | result = (x > 0) ? 0x7F00 : 0x8000; | ||
| 1105 | |||
| 1106 | x = 0; | ||
| 1107 | y = 0; | ||
| 1108 | |||
| 1109 | if (result == prev_result) { | ||
| 1110 | hits++; | ||
| 1111 | |||
| 1112 | if (hits > 3) { | ||
| 1113 | switch (result) { | ||
| 1114 | case 0x7F: | ||
| 1115 | y = 17 * threshold / 30; | ||
| 1116 | break; | ||
| 1117 | case 0x80: | ||
| 1118 | y -= 17 * threshold / 30; | ||
| 1119 | break; | ||
| 1120 | case 0x7F00: | ||
| 1121 | x = 17 * threshold / 30; | ||
| 1122 | break; | ||
| 1123 | case 0x8000: | ||
| 1124 | x -= 17 * threshold / 30; | ||
| 1125 | break; | ||
| 1126 | } | ||
| 1127 | } | ||
| 1128 | |||
| 1129 | if (hits == 2 && msec_hit < timeout) { | ||
| 1130 | result = 0; | ||
| 1131 | hits = 1; | ||
| 1132 | } | ||
| 1133 | } else { | ||
| 1134 | prev_result = result; | ||
| 1135 | hits = 1; | ||
| 1136 | hit_time = ct; | ||
| 1137 | } | ||
| 1138 | } | ||
| 1139 | |||
| 1140 | return result; | ||
| 1141 | } | ||
| 1142 | |||
| 1143 | static u32 imon_remote_key_lookup(struct imon_context *ictx, u32 scancode) | ||
| 1144 | { | ||
| 1145 | u32 keycode; | ||
| 1146 | u32 release; | ||
| 1147 | bool is_release_code = false; | ||
| 1148 | |||
| 1149 | /* Look for the initial press of a button */ | ||
| 1150 | keycode = ir_g_keycode_from_table(ictx->rdev, scancode); | ||
| 1151 | ictx->rc_toggle = 0x0; | ||
| 1152 | ictx->rc_scancode = scancode; | ||
| 1153 | |||
| 1154 | /* Look for the release of a button */ | ||
| 1155 | if (keycode == KEY_RESERVED) { | ||
| 1156 | release = scancode & ~0x4000; | ||
| 1157 | keycode = ir_g_keycode_from_table(ictx->rdev, release); | ||
| 1158 | if (keycode != KEY_RESERVED) | ||
| 1159 | is_release_code = true; | ||
| 1160 | } | ||
| 1161 | |||
| 1162 | ictx->release_code = is_release_code; | ||
| 1163 | |||
| 1164 | return keycode; | ||
| 1165 | } | ||
| 1166 | |||
| 1167 | static u32 imon_mce_key_lookup(struct imon_context *ictx, u32 scancode) | ||
| 1168 | { | ||
| 1169 | u32 keycode; | ||
| 1170 | |||
| 1171 | #define MCE_KEY_MASK 0x7000 | ||
| 1172 | #define MCE_TOGGLE_BIT 0x8000 | ||
| 1173 | |||
| 1174 | /* | ||
| 1175 | * On some receivers, mce keys decode to 0x8000f04xx and 0x8000f84xx | ||
| 1176 | * (the toggle bit flipping between alternating key presses), while | ||
| 1177 | * on other receivers, we see 0x8000f74xx and 0x8000ff4xx. To keep | ||
| 1178 | * the table trim, we always or in the bits to look up 0x8000ff4xx, | ||
| 1179 | * but we can't or them into all codes, as some keys are decoded in | ||
| 1180 | * a different way w/o the same use of the toggle bit... | ||
| 1181 | */ | ||
| 1182 | if (scancode & 0x80000000) | ||
| 1183 | scancode = scancode | MCE_KEY_MASK | MCE_TOGGLE_BIT; | ||
| 1184 | |||
| 1185 | ictx->rc_scancode = scancode; | ||
| 1186 | keycode = ir_g_keycode_from_table(ictx->rdev, scancode); | ||
| 1187 | |||
| 1188 | /* not used in mce mode, but make sure we know its false */ | ||
| 1189 | ictx->release_code = false; | ||
| 1190 | |||
| 1191 | return keycode; | ||
| 1192 | } | ||
| 1193 | |||
| 1194 | static u32 imon_panel_key_lookup(u64 code) | ||
| 1195 | { | ||
| 1196 | int i; | ||
| 1197 | u32 keycode = KEY_RESERVED; | ||
| 1198 | |||
| 1199 | for (i = 0; i < ARRAY_SIZE(imon_panel_key_table); i++) { | ||
| 1200 | if (imon_panel_key_table[i].hw_code == (code | 0xffee)) { | ||
| 1201 | keycode = imon_panel_key_table[i].keycode; | ||
| 1202 | break; | ||
| 1203 | } | ||
| 1204 | } | ||
| 1205 | |||
| 1206 | return keycode; | ||
| 1207 | } | ||
| 1208 | |||
| 1209 | static bool imon_mouse_event(struct imon_context *ictx, | ||
| 1210 | unsigned char *buf, int len) | ||
| 1211 | { | ||
| 1212 | char rel_x = 0x00, rel_y = 0x00; | ||
| 1213 | u8 right_shift = 1; | ||
| 1214 | bool mouse_input = true; | ||
| 1215 | int dir = 0; | ||
| 1216 | unsigned long flags; | ||
| 1217 | |||
| 1218 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1219 | |||
| 1220 | /* newer iMON device PAD or mouse button */ | ||
| 1221 | if (ictx->product != 0xffdc && (buf[0] & 0x01) && len == 5) { | ||
| 1222 | rel_x = buf[2]; | ||
| 1223 | rel_y = buf[3]; | ||
| 1224 | right_shift = 1; | ||
| 1225 | /* 0xffdc iMON PAD or mouse button input */ | ||
| 1226 | } else if (ictx->product == 0xffdc && (buf[0] & 0x40) && | ||
| 1227 | !((buf[1] & 0x01) || ((buf[1] >> 2) & 0x01))) { | ||
| 1228 | rel_x = (buf[1] & 0x08) | (buf[1] & 0x10) >> 2 | | ||
| 1229 | (buf[1] & 0x20) >> 4 | (buf[1] & 0x40) >> 6; | ||
| 1230 | if (buf[0] & 0x02) | ||
| 1231 | rel_x |= ~0x0f; | ||
| 1232 | rel_x = rel_x + rel_x / 2; | ||
| 1233 | rel_y = (buf[2] & 0x08) | (buf[2] & 0x10) >> 2 | | ||
| 1234 | (buf[2] & 0x20) >> 4 | (buf[2] & 0x40) >> 6; | ||
| 1235 | if (buf[0] & 0x01) | ||
| 1236 | rel_y |= ~0x0f; | ||
| 1237 | rel_y = rel_y + rel_y / 2; | ||
| 1238 | right_shift = 2; | ||
| 1239 | /* some ffdc devices decode mouse buttons differently... */ | ||
| 1240 | } else if (ictx->product == 0xffdc && (buf[0] == 0x68)) { | ||
| 1241 | right_shift = 2; | ||
| 1242 | /* ch+/- buttons, which we use for an emulated scroll wheel */ | ||
| 1243 | } else if (ictx->kc == KEY_CHANNELUP && (buf[2] & 0x40) != 0x40) { | ||
| 1244 | dir = 1; | ||
| 1245 | } else if (ictx->kc == KEY_CHANNELDOWN && (buf[2] & 0x40) != 0x40) { | ||
| 1246 | dir = -1; | ||
| 1247 | } else | ||
| 1248 | mouse_input = false; | ||
| 1249 | |||
| 1250 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1251 | |||
| 1252 | if (mouse_input) { | ||
| 1253 | dev_dbg(ictx->dev, "sending mouse data via input subsystem\n"); | ||
| 1254 | |||
| 1255 | if (dir) { | ||
| 1256 | input_report_rel(ictx->idev, REL_WHEEL, dir); | ||
| 1257 | } else if (rel_x || rel_y) { | ||
| 1258 | input_report_rel(ictx->idev, REL_X, rel_x); | ||
| 1259 | input_report_rel(ictx->idev, REL_Y, rel_y); | ||
| 1260 | } else { | ||
| 1261 | input_report_key(ictx->idev, BTN_LEFT, buf[1] & 0x1); | ||
| 1262 | input_report_key(ictx->idev, BTN_RIGHT, | ||
| 1263 | buf[1] >> right_shift & 0x1); | ||
| 1264 | } | ||
| 1265 | input_sync(ictx->idev); | ||
| 1266 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1267 | ictx->last_keycode = ictx->kc; | ||
| 1268 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1269 | } | ||
| 1270 | |||
| 1271 | return mouse_input; | ||
| 1272 | } | ||
| 1273 | |||
| 1274 | static void imon_touch_event(struct imon_context *ictx, unsigned char *buf) | ||
| 1275 | { | ||
| 1276 | mod_timer(&ictx->ttimer, jiffies + TOUCH_TIMEOUT); | ||
| 1277 | ictx->touch_x = (buf[0] << 4) | (buf[1] >> 4); | ||
| 1278 | ictx->touch_y = 0xfff - ((buf[2] << 4) | (buf[1] & 0xf)); | ||
| 1279 | input_report_abs(ictx->touch, ABS_X, ictx->touch_x); | ||
| 1280 | input_report_abs(ictx->touch, ABS_Y, ictx->touch_y); | ||
| 1281 | input_report_key(ictx->touch, BTN_TOUCH, 0x01); | ||
| 1282 | input_sync(ictx->touch); | ||
| 1283 | } | ||
| 1284 | |||
| 1285 | static void imon_pad_to_keys(struct imon_context *ictx, unsigned char *buf) | ||
| 1286 | { | ||
| 1287 | int dir = 0; | ||
| 1288 | char rel_x = 0x00, rel_y = 0x00; | ||
| 1289 | u16 timeout, threshold; | ||
| 1290 | u32 scancode = KEY_RESERVED; | ||
| 1291 | unsigned long flags; | ||
| 1292 | |||
| 1293 | /* | ||
| 1294 | * The imon directional pad functions more like a touchpad. Bytes 3 & 4 | ||
| 1295 | * contain a position coordinate (x,y), with each component ranging | ||
| 1296 | * from -14 to 14. We want to down-sample this to only 4 discrete values | ||
| 1297 | * for up/down/left/right arrow keys. Also, when you get too close to | ||
| 1298 | * diagonals, it has a tendancy to jump back and forth, so lets try to | ||
| 1299 | * ignore when they get too close. | ||
| 1300 | */ | ||
| 1301 | if (ictx->product != 0xffdc) { | ||
| 1302 | /* first, pad to 8 bytes so it conforms with everything else */ | ||
| 1303 | buf[5] = buf[6] = buf[7] = 0; | ||
| 1304 | timeout = 500; /* in msecs */ | ||
| 1305 | /* (2*threshold) x (2*threshold) square */ | ||
| 1306 | threshold = pad_thresh ? pad_thresh : 28; | ||
| 1307 | rel_x = buf[2]; | ||
| 1308 | rel_y = buf[3]; | ||
| 1309 | |||
| 1310 | if (ictx->ir_type == IR_TYPE_OTHER && pad_stabilize) { | ||
| 1311 | if ((buf[1] == 0) && ((rel_x != 0) || (rel_y != 0))) { | ||
| 1312 | dir = stabilize((int)rel_x, (int)rel_y, | ||
| 1313 | timeout, threshold); | ||
| 1314 | if (!dir) { | ||
| 1315 | spin_lock_irqsave(&ictx->kc_lock, | ||
| 1316 | flags); | ||
| 1317 | ictx->kc = KEY_UNKNOWN; | ||
| 1318 | spin_unlock_irqrestore(&ictx->kc_lock, | ||
| 1319 | flags); | ||
| 1320 | return; | ||
| 1321 | } | ||
| 1322 | buf[2] = dir & 0xFF; | ||
| 1323 | buf[3] = (dir >> 8) & 0xFF; | ||
| 1324 | scancode = be32_to_cpu(*((u32 *)buf)); | ||
| 1325 | } | ||
| 1326 | } else { | ||
| 1327 | /* | ||
| 1328 | * Hack alert: instead of using keycodes, we have | ||
| 1329 | * to use hard-coded scancodes here... | ||
| 1330 | */ | ||
| 1331 | if (abs(rel_y) > abs(rel_x)) { | ||
| 1332 | buf[2] = (rel_y > 0) ? 0x7F : 0x80; | ||
| 1333 | buf[3] = 0; | ||
| 1334 | if (rel_y > 0) | ||
| 1335 | scancode = 0x01007f00; /* KEY_DOWN */ | ||
| 1336 | else | ||
| 1337 | scancode = 0x01008000; /* KEY_UP */ | ||
| 1338 | } else { | ||
| 1339 | buf[2] = 0; | ||
| 1340 | buf[3] = (rel_x > 0) ? 0x7F : 0x80; | ||
| 1341 | if (rel_x > 0) | ||
| 1342 | scancode = 0x0100007f; /* KEY_RIGHT */ | ||
| 1343 | else | ||
| 1344 | scancode = 0x01000080; /* KEY_LEFT */ | ||
| 1345 | } | ||
| 1346 | } | ||
| 1347 | |||
| 1348 | /* | ||
| 1349 | * Handle on-board decoded pad events for e.g. older VFD/iMON-Pad | ||
| 1350 | * device (15c2:ffdc). The remote generates various codes from | ||
| 1351 | * 0x68nnnnB7 to 0x6AnnnnB7, the left mouse button generates | ||
| 1352 | * 0x688301b7 and the right one 0x688481b7. All other keys generate | ||
| 1353 | * 0x2nnnnnnn. Position coordinate is encoded in buf[1] and buf[2] with | ||
| 1354 | * reversed endianess. Extract direction from buffer, rotate endianess, | ||
| 1355 | * adjust sign and feed the values into stabilize(). The resulting codes | ||
| 1356 | * will be 0x01008000, 0x01007F00, which match the newer devices. | ||
| 1357 | */ | ||
| 1358 | } else { | ||
| 1359 | timeout = 10; /* in msecs */ | ||
| 1360 | /* (2*threshold) x (2*threshold) square */ | ||
| 1361 | threshold = pad_thresh ? pad_thresh : 15; | ||
| 1362 | |||
| 1363 | /* buf[1] is x */ | ||
| 1364 | rel_x = (buf[1] & 0x08) | (buf[1] & 0x10) >> 2 | | ||
| 1365 | (buf[1] & 0x20) >> 4 | (buf[1] & 0x40) >> 6; | ||
| 1366 | if (buf[0] & 0x02) | ||
| 1367 | rel_x |= ~0x10+1; | ||
| 1368 | /* buf[2] is y */ | ||
| 1369 | rel_y = (buf[2] & 0x08) | (buf[2] & 0x10) >> 2 | | ||
| 1370 | (buf[2] & 0x20) >> 4 | (buf[2] & 0x40) >> 6; | ||
| 1371 | if (buf[0] & 0x01) | ||
| 1372 | rel_y |= ~0x10+1; | ||
| 1373 | |||
| 1374 | buf[0] = 0x01; | ||
| 1375 | buf[1] = buf[4] = buf[5] = buf[6] = buf[7] = 0; | ||
| 1376 | |||
| 1377 | if (ictx->ir_type == IR_TYPE_OTHER && pad_stabilize) { | ||
| 1378 | dir = stabilize((int)rel_x, (int)rel_y, | ||
| 1379 | timeout, threshold); | ||
| 1380 | if (!dir) { | ||
| 1381 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1382 | ictx->kc = KEY_UNKNOWN; | ||
| 1383 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1384 | return; | ||
| 1385 | } | ||
| 1386 | buf[2] = dir & 0xFF; | ||
| 1387 | buf[3] = (dir >> 8) & 0xFF; | ||
| 1388 | scancode = be32_to_cpu(*((u32 *)buf)); | ||
| 1389 | } else { | ||
| 1390 | /* | ||
| 1391 | * Hack alert: instead of using keycodes, we have | ||
| 1392 | * to use hard-coded scancodes here... | ||
| 1393 | */ | ||
| 1394 | if (abs(rel_y) > abs(rel_x)) { | ||
| 1395 | buf[2] = (rel_y > 0) ? 0x7F : 0x80; | ||
| 1396 | buf[3] = 0; | ||
| 1397 | if (rel_y > 0) | ||
| 1398 | scancode = 0x01007f00; /* KEY_DOWN */ | ||
| 1399 | else | ||
| 1400 | scancode = 0x01008000; /* KEY_UP */ | ||
| 1401 | } else { | ||
| 1402 | buf[2] = 0; | ||
| 1403 | buf[3] = (rel_x > 0) ? 0x7F : 0x80; | ||
| 1404 | if (rel_x > 0) | ||
| 1405 | scancode = 0x0100007f; /* KEY_RIGHT */ | ||
| 1406 | else | ||
| 1407 | scancode = 0x01000080; /* KEY_LEFT */ | ||
| 1408 | } | ||
| 1409 | } | ||
| 1410 | } | ||
| 1411 | |||
| 1412 | if (scancode) { | ||
| 1413 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1414 | ictx->kc = imon_remote_key_lookup(ictx, scancode); | ||
| 1415 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1416 | } | ||
| 1417 | } | ||
| 1418 | |||
| 1419 | /** | ||
| 1420 | * figure out if these is a press or a release. We don't actually | ||
| 1421 | * care about repeats, as those will be auto-generated within the IR | ||
| 1422 | * subsystem for repeating scancodes. | ||
| 1423 | */ | ||
| 1424 | static int imon_parse_press_type(struct imon_context *ictx, | ||
| 1425 | unsigned char *buf, u8 ktype) | ||
| 1426 | { | ||
| 1427 | int press_type = 0; | ||
| 1428 | unsigned long flags; | ||
| 1429 | |||
| 1430 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1431 | |||
| 1432 | /* key release of 0x02XXXXXX key */ | ||
| 1433 | if (ictx->kc == KEY_RESERVED && buf[0] == 0x02 && buf[3] == 0x00) | ||
| 1434 | ictx->kc = ictx->last_keycode; | ||
| 1435 | |||
| 1436 | /* mouse button release on (some) 0xffdc devices */ | ||
| 1437 | else if (ictx->kc == KEY_RESERVED && buf[0] == 0x68 && buf[1] == 0x82 && | ||
| 1438 | buf[2] == 0x81 && buf[3] == 0xb7) | ||
| 1439 | ictx->kc = ictx->last_keycode; | ||
| 1440 | |||
| 1441 | /* mouse button release on (some other) 0xffdc devices */ | ||
| 1442 | else if (ictx->kc == KEY_RESERVED && buf[0] == 0x01 && buf[1] == 0x00 && | ||
| 1443 | buf[2] == 0x81 && buf[3] == 0xb7) | ||
| 1444 | ictx->kc = ictx->last_keycode; | ||
| 1445 | |||
| 1446 | /* mce-specific button handling, no keyup events */ | ||
| 1447 | else if (ktype == IMON_KEY_MCE) { | ||
| 1448 | ictx->rc_toggle = buf[2]; | ||
| 1449 | press_type = 1; | ||
| 1450 | |||
| 1451 | /* incoherent or irrelevant data */ | ||
| 1452 | } else if (ictx->kc == KEY_RESERVED) | ||
| 1453 | press_type = -EINVAL; | ||
| 1454 | |||
| 1455 | /* key release of 0xXXXXXXb7 key */ | ||
| 1456 | else if (ictx->release_code) | ||
| 1457 | press_type = 0; | ||
| 1458 | |||
| 1459 | /* this is a button press */ | ||
| 1460 | else | ||
| 1461 | press_type = 1; | ||
| 1462 | |||
| 1463 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1464 | |||
| 1465 | return press_type; | ||
| 1466 | } | ||
| 1467 | |||
| 1468 | /** | ||
| 1469 | * Process the incoming packet | ||
| 1470 | */ | ||
| 1471 | static void imon_incoming_packet(struct imon_context *ictx, | ||
| 1472 | struct urb *urb, int intf) | ||
| 1473 | { | ||
| 1474 | int len = urb->actual_length; | ||
| 1475 | unsigned char *buf = urb->transfer_buffer; | ||
| 1476 | struct device *dev = ictx->dev; | ||
| 1477 | unsigned long flags; | ||
| 1478 | u32 kc; | ||
| 1479 | bool norelease = false; | ||
| 1480 | int i; | ||
| 1481 | u64 scancode; | ||
| 1482 | int press_type = 0; | ||
| 1483 | int msec; | ||
| 1484 | struct timeval t; | ||
| 1485 | static struct timeval prev_time = { 0, 0 }; | ||
| 1486 | u8 ktype; | ||
| 1487 | |||
| 1488 | /* filter out junk data on the older 0xffdc imon devices */ | ||
| 1489 | if ((buf[0] == 0xff) && (buf[1] == 0xff) && (buf[2] == 0xff)) | ||
| 1490 | return; | ||
| 1491 | |||
| 1492 | /* Figure out what key was pressed */ | ||
| 1493 | if (len == 8 && buf[7] == 0xee) { | ||
| 1494 | scancode = be64_to_cpu(*((u64 *)buf)); | ||
| 1495 | ktype = IMON_KEY_PANEL; | ||
| 1496 | kc = imon_panel_key_lookup(scancode); | ||
| 1497 | } else { | ||
| 1498 | scancode = be32_to_cpu(*((u32 *)buf)); | ||
| 1499 | if (ictx->ir_type == IR_TYPE_RC6) { | ||
| 1500 | ktype = IMON_KEY_IMON; | ||
| 1501 | if (buf[0] == 0x80) | ||
| 1502 | ktype = IMON_KEY_MCE; | ||
| 1503 | kc = imon_mce_key_lookup(ictx, scancode); | ||
| 1504 | } else { | ||
| 1505 | ktype = IMON_KEY_IMON; | ||
| 1506 | kc = imon_remote_key_lookup(ictx, scancode); | ||
| 1507 | } | ||
| 1508 | } | ||
| 1509 | |||
| 1510 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1511 | /* keyboard/mouse mode toggle button */ | ||
| 1512 | if (kc == KEY_KEYBOARD && !ictx->release_code) { | ||
| 1513 | ictx->last_keycode = kc; | ||
| 1514 | if (!nomouse) { | ||
| 1515 | ictx->pad_mouse = ~(ictx->pad_mouse) & 0x1; | ||
| 1516 | dev_dbg(dev, "toggling to %s mode\n", | ||
| 1517 | ictx->pad_mouse ? "mouse" : "keyboard"); | ||
| 1518 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1519 | return; | ||
| 1520 | } else { | ||
| 1521 | ictx->pad_mouse = 0; | ||
| 1522 | dev_dbg(dev, "mouse mode disabled, passing key value\n"); | ||
| 1523 | } | ||
| 1524 | } | ||
| 1525 | |||
| 1526 | ictx->kc = kc; | ||
| 1527 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1528 | |||
| 1529 | /* send touchscreen events through input subsystem if touchpad data */ | ||
| 1530 | if (ictx->display_type == IMON_DISPLAY_TYPE_VGA && len == 8 && | ||
| 1531 | buf[7] == 0x86) { | ||
| 1532 | imon_touch_event(ictx, buf); | ||
| 1533 | return; | ||
| 1534 | |||
| 1535 | /* look for mouse events with pad in mouse mode */ | ||
| 1536 | } else if (ictx->pad_mouse) { | ||
| 1537 | if (imon_mouse_event(ictx, buf, len)) | ||
| 1538 | return; | ||
| 1539 | } | ||
| 1540 | |||
| 1541 | /* Now for some special handling to convert pad input to arrow keys */ | ||
| 1542 | if (((len == 5) && (buf[0] == 0x01) && (buf[4] == 0x00)) || | ||
| 1543 | ((len == 8) && (buf[0] & 0x40) && | ||
| 1544 | !(buf[1] & 0x1 || buf[1] >> 2 & 0x1))) { | ||
| 1545 | len = 8; | ||
| 1546 | imon_pad_to_keys(ictx, buf); | ||
| 1547 | norelease = true; | ||
| 1548 | } | ||
| 1549 | |||
| 1550 | if (debug) { | ||
| 1551 | printk(KERN_INFO "intf%d decoded packet: ", intf); | ||
| 1552 | for (i = 0; i < len; ++i) | ||
| 1553 | printk("%02x ", buf[i]); | ||
| 1554 | printk("\n"); | ||
| 1555 | } | ||
| 1556 | |||
| 1557 | press_type = imon_parse_press_type(ictx, buf, ktype); | ||
| 1558 | if (press_type < 0) | ||
| 1559 | goto not_input_data; | ||
| 1560 | |||
| 1561 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1562 | if (ictx->kc == KEY_UNKNOWN) | ||
| 1563 | goto unknown_key; | ||
| 1564 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1565 | |||
| 1566 | if (ktype != IMON_KEY_PANEL) { | ||
| 1567 | if (press_type == 0) | ||
| 1568 | ir_keyup(ictx->rdev); | ||
| 1569 | else { | ||
| 1570 | ir_keydown(ictx->rdev, ictx->rc_scancode, ictx->rc_toggle); | ||
| 1571 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1572 | ictx->last_keycode = ictx->kc; | ||
| 1573 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1574 | } | ||
| 1575 | return; | ||
| 1576 | } | ||
| 1577 | |||
| 1578 | /* Only panel type events left to process now */ | ||
| 1579 | spin_lock_irqsave(&ictx->kc_lock, flags); | ||
| 1580 | |||
| 1581 | /* KEY_MUTE repeats from knob need to be suppressed */ | ||
| 1582 | if (ictx->kc == KEY_MUTE && ictx->kc == ictx->last_keycode) { | ||
| 1583 | do_gettimeofday(&t); | ||
| 1584 | msec = tv2int(&t, &prev_time); | ||
| 1585 | prev_time = t; | ||
| 1586 | if (msec < ictx->idev->rep[REP_DELAY]) { | ||
| 1587 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1588 | return; | ||
| 1589 | } | ||
| 1590 | } | ||
| 1591 | kc = ictx->kc; | ||
| 1592 | |||
| 1593 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1594 | |||
| 1595 | input_report_key(ictx->idev, kc, press_type); | ||
| 1596 | input_sync(ictx->idev); | ||
| 1597 | |||
| 1598 | /* panel keys don't generate a release */ | ||
| 1599 | input_report_key(ictx->idev, kc, 0); | ||
| 1600 | input_sync(ictx->idev); | ||
| 1601 | |||
| 1602 | ictx->last_keycode = kc; | ||
| 1603 | |||
| 1604 | return; | ||
| 1605 | |||
| 1606 | unknown_key: | ||
| 1607 | spin_unlock_irqrestore(&ictx->kc_lock, flags); | ||
| 1608 | dev_info(dev, "%s: unknown keypress, code 0x%llx\n", __func__, | ||
| 1609 | (long long)scancode); | ||
| 1610 | return; | ||
| 1611 | |||
| 1612 | not_input_data: | ||
| 1613 | if (len != 8) { | ||
| 1614 | dev_warn(dev, "imon %s: invalid incoming packet " | ||
| 1615 | "size (len = %d, intf%d)\n", __func__, len, intf); | ||
| 1616 | return; | ||
| 1617 | } | ||
| 1618 | |||
| 1619 | /* iMON 2.4G associate frame */ | ||
| 1620 | if (buf[0] == 0x00 && | ||
| 1621 | buf[2] == 0xFF && /* REFID */ | ||
| 1622 | buf[3] == 0xFF && | ||
| 1623 | buf[4] == 0xFF && | ||
| 1624 | buf[5] == 0xFF && /* iMON 2.4G */ | ||
| 1625 | ((buf[6] == 0x4E && buf[7] == 0xDF) || /* LT */ | ||
| 1626 | (buf[6] == 0x5E && buf[7] == 0xDF))) { /* DT */ | ||
| 1627 | dev_warn(dev, "%s: remote associated refid=%02X\n", | ||
| 1628 | __func__, buf[1]); | ||
| 1629 | ictx->rf_isassociating = false; | ||
| 1630 | } | ||
| 1631 | } | ||
| 1632 | |||
| 1633 | /** | ||
| 1634 | * Callback function for USB core API: receive data | ||
| 1635 | */ | ||
| 1636 | static void usb_rx_callback_intf0(struct urb *urb) | ||
| 1637 | { | ||
| 1638 | struct imon_context *ictx; | ||
| 1639 | int intfnum = 0; | ||
| 1640 | |||
| 1641 | if (!urb) | ||
| 1642 | return; | ||
| 1643 | |||
| 1644 | ictx = (struct imon_context *)urb->context; | ||
| 1645 | if (!ictx) | ||
| 1646 | return; | ||
| 1647 | |||
| 1648 | switch (urb->status) { | ||
| 1649 | case -ENOENT: /* usbcore unlink successful! */ | ||
| 1650 | return; | ||
| 1651 | |||
| 1652 | case -ESHUTDOWN: /* transport endpoint was shut down */ | ||
| 1653 | break; | ||
| 1654 | |||
| 1655 | case 0: | ||
| 1656 | imon_incoming_packet(ictx, urb, intfnum); | ||
| 1657 | break; | ||
| 1658 | |||
| 1659 | default: | ||
| 1660 | dev_warn(ictx->dev, "imon %s: status(%d): ignored\n", | ||
| 1661 | __func__, urb->status); | ||
| 1662 | break; | ||
| 1663 | } | ||
| 1664 | |||
| 1665 | usb_submit_urb(ictx->rx_urb_intf0, GFP_ATOMIC); | ||
| 1666 | } | ||
| 1667 | |||
| 1668 | static void usb_rx_callback_intf1(struct urb *urb) | ||
| 1669 | { | ||
| 1670 | struct imon_context *ictx; | ||
| 1671 | int intfnum = 1; | ||
| 1672 | |||
| 1673 | if (!urb) | ||
| 1674 | return; | ||
| 1675 | |||
| 1676 | ictx = (struct imon_context *)urb->context; | ||
| 1677 | if (!ictx) | ||
| 1678 | return; | ||
| 1679 | |||
| 1680 | switch (urb->status) { | ||
| 1681 | case -ENOENT: /* usbcore unlink successful! */ | ||
| 1682 | return; | ||
| 1683 | |||
| 1684 | case -ESHUTDOWN: /* transport endpoint was shut down */ | ||
| 1685 | break; | ||
| 1686 | |||
| 1687 | case 0: | ||
| 1688 | imon_incoming_packet(ictx, urb, intfnum); | ||
| 1689 | break; | ||
| 1690 | |||
| 1691 | default: | ||
| 1692 | dev_warn(ictx->dev, "imon %s: status(%d): ignored\n", | ||
| 1693 | __func__, urb->status); | ||
| 1694 | break; | ||
| 1695 | } | ||
| 1696 | |||
| 1697 | usb_submit_urb(ictx->rx_urb_intf1, GFP_ATOMIC); | ||
| 1698 | } | ||
| 1699 | |||
| 1700 | /* | ||
| 1701 | * The 0x15c2:0xffdc device ID was used for umpteen different imon | ||
| 1702 | * devices, and all of them constantly spew interrupts, even when there | ||
| 1703 | * is no actual data to report. However, byte 6 of this buffer looks like | ||
| 1704 | * its unique across device variants, so we're trying to key off that to | ||
| 1705 | * figure out which display type (if any) and what IR protocol the device | ||
| 1706 | * actually supports. These devices have their IR protocol hard-coded into | ||
| 1707 | * their firmware, they can't be changed on the fly like the newer hardware. | ||
| 1708 | */ | ||
| 1709 | static void imon_get_ffdc_type(struct imon_context *ictx) | ||
| 1710 | { | ||
| 1711 | u8 ffdc_cfg_byte = ictx->usb_rx_buf[6]; | ||
| 1712 | u8 detected_display_type = IMON_DISPLAY_TYPE_NONE; | ||
| 1713 | u64 allowed_protos = IR_TYPE_OTHER; | ||
| 1714 | |||
| 1715 | switch (ffdc_cfg_byte) { | ||
| 1716 | /* iMON Knob, no display, iMON IR + vol knob */ | ||
| 1717 | case 0x21: | ||
| 1718 | dev_info(ictx->dev, "0xffdc iMON Knob, iMON IR"); | ||
| 1719 | ictx->display_supported = false; | ||
| 1720 | break; | ||
| 1721 | /* iMON 2.4G LT (usb stick), no display, iMON RF */ | ||
| 1722 | case 0x4e: | ||
| 1723 | dev_info(ictx->dev, "0xffdc iMON 2.4G LT, iMON RF"); | ||
| 1724 | ictx->display_supported = false; | ||
| 1725 | ictx->rf_device = true; | ||
| 1726 | break; | ||
| 1727 | /* iMON VFD, no IR (does have vol knob tho) */ | ||
| 1728 | case 0x35: | ||
| 1729 | dev_info(ictx->dev, "0xffdc iMON VFD + knob, no IR"); | ||
| 1730 | detected_display_type = IMON_DISPLAY_TYPE_VFD; | ||
| 1731 | break; | ||
| 1732 | /* iMON VFD, iMON IR */ | ||
| 1733 | case 0x24: | ||
| 1734 | case 0x85: | ||
| 1735 | dev_info(ictx->dev, "0xffdc iMON VFD, iMON IR"); | ||
| 1736 | detected_display_type = IMON_DISPLAY_TYPE_VFD; | ||
| 1737 | break; | ||
| 1738 | /* iMON VFD, MCE IR */ | ||
| 1739 | case 0x9e: | ||
| 1740 | dev_info(ictx->dev, "0xffdc iMON VFD, MCE IR"); | ||
| 1741 | detected_display_type = IMON_DISPLAY_TYPE_VFD; | ||
| 1742 | allowed_protos = IR_TYPE_RC6; | ||
| 1743 | break; | ||
| 1744 | /* iMON LCD, MCE IR */ | ||
| 1745 | case 0x9f: | ||
| 1746 | dev_info(ictx->dev, "0xffdc iMON LCD, MCE IR"); | ||
| 1747 | detected_display_type = IMON_DISPLAY_TYPE_LCD; | ||
| 1748 | allowed_protos = IR_TYPE_RC6; | ||
| 1749 | break; | ||
| 1750 | default: | ||
| 1751 | dev_info(ictx->dev, "Unknown 0xffdc device, " | ||
| 1752 | "defaulting to VFD and iMON IR"); | ||
| 1753 | detected_display_type = IMON_DISPLAY_TYPE_VFD; | ||
| 1754 | break; | ||
| 1755 | } | ||
| 1756 | |||
| 1757 | printk(KERN_CONT " (id 0x%02x)\n", ffdc_cfg_byte); | ||
| 1758 | |||
| 1759 | ictx->display_type = detected_display_type; | ||
| 1760 | ictx->props->allowed_protos = allowed_protos; | ||
| 1761 | ictx->ir_type = allowed_protos; | ||
| 1762 | } | ||
| 1763 | |||
| 1764 | static void imon_set_display_type(struct imon_context *ictx) | ||
| 1765 | { | ||
| 1766 | u8 configured_display_type = IMON_DISPLAY_TYPE_VFD; | ||
| 1767 | |||
| 1768 | /* | ||
| 1769 | * Try to auto-detect the type of display if the user hasn't set | ||
| 1770 | * it by hand via the display_type modparam. Default is VFD. | ||
| 1771 | */ | ||
| 1772 | |||
| 1773 | if (display_type == IMON_DISPLAY_TYPE_AUTO) { | ||
| 1774 | switch (ictx->product) { | ||
| 1775 | case 0xffdc: | ||
| 1776 | /* set in imon_get_ffdc_type() */ | ||
| 1777 | configured_display_type = ictx->display_type; | ||
| 1778 | break; | ||
| 1779 | case 0x0034: | ||
| 1780 | case 0x0035: | ||
| 1781 | configured_display_type = IMON_DISPLAY_TYPE_VGA; | ||
| 1782 | break; | ||
| 1783 | case 0x0038: | ||
| 1784 | case 0x0039: | ||
| 1785 | case 0x0045: | ||
| 1786 | configured_display_type = IMON_DISPLAY_TYPE_LCD; | ||
| 1787 | break; | ||
| 1788 | case 0x003c: | ||
| 1789 | case 0x0041: | ||
| 1790 | case 0x0042: | ||
| 1791 | case 0x0043: | ||
| 1792 | configured_display_type = IMON_DISPLAY_TYPE_NONE; | ||
| 1793 | ictx->display_supported = false; | ||
| 1794 | break; | ||
| 1795 | case 0x0036: | ||
| 1796 | case 0x0044: | ||
| 1797 | default: | ||
| 1798 | configured_display_type = IMON_DISPLAY_TYPE_VFD; | ||
| 1799 | break; | ||
| 1800 | } | ||
| 1801 | } else { | ||
| 1802 | configured_display_type = display_type; | ||
| 1803 | if (display_type == IMON_DISPLAY_TYPE_NONE) | ||
| 1804 | ictx->display_supported = false; | ||
| 1805 | else | ||
| 1806 | ictx->display_supported = true; | ||
| 1807 | dev_info(ictx->dev, "%s: overriding display type to %d via " | ||
| 1808 | "modparam\n", __func__, display_type); | ||
| 1809 | } | ||
| 1810 | |||
| 1811 | ictx->display_type = configured_display_type; | ||
| 1812 | } | ||
| 1813 | |||
| 1814 | static struct input_dev *imon_init_rdev(struct imon_context *ictx) | ||
| 1815 | { | ||
| 1816 | struct input_dev *rdev; | ||
| 1817 | struct ir_dev_props *props; | ||
| 1818 | int ret; | ||
| 1819 | char *ir_codes = NULL; | ||
| 1820 | const unsigned char fp_packet[] = { 0x40, 0x00, 0x00, 0x00, | ||
| 1821 | 0x00, 0x00, 0x00, 0x88 }; | ||
| 1822 | |||
| 1823 | rdev = input_allocate_device(); | ||
| 1824 | props = kzalloc(sizeof(*props), GFP_KERNEL); | ||
| 1825 | if (!rdev || !props) { | ||
| 1826 | dev_err(ictx->dev, "remote control dev allocation failed\n"); | ||
| 1827 | goto out; | ||
| 1828 | } | ||
| 1829 | |||
| 1830 | snprintf(ictx->name_rdev, sizeof(ictx->name_rdev), | ||
| 1831 | "iMON Remote (%04x:%04x)", ictx->vendor, ictx->product); | ||
| 1832 | usb_make_path(ictx->usbdev_intf0, ictx->phys_rdev, | ||
| 1833 | sizeof(ictx->phys_rdev)); | ||
| 1834 | strlcat(ictx->phys_rdev, "/input0", sizeof(ictx->phys_rdev)); | ||
| 1835 | |||
| 1836 | rdev->name = ictx->name_rdev; | ||
| 1837 | rdev->phys = ictx->phys_rdev; | ||
| 1838 | usb_to_input_id(ictx->usbdev_intf0, &rdev->id); | ||
| 1839 | rdev->dev.parent = ictx->dev; | ||
| 1840 | rdev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP); | ||
| 1841 | input_set_drvdata(rdev, ictx); | ||
| 1842 | |||
| 1843 | props->priv = ictx; | ||
| 1844 | props->driver_type = RC_DRIVER_SCANCODE; | ||
| 1845 | props->allowed_protos = IR_TYPE_OTHER | IR_TYPE_RC6; /* iMON PAD or MCE */ | ||
| 1846 | props->change_protocol = imon_ir_change_protocol; | ||
| 1847 | ictx->props = props; | ||
| 1848 | |||
| 1849 | /* Enable front-panel buttons and/or knobs */ | ||
| 1850 | memcpy(ictx->usb_tx_buf, &fp_packet, sizeof(fp_packet)); | ||
| 1851 | ret = send_packet(ictx); | ||
| 1852 | /* Not fatal, but warn about it */ | ||
| 1853 | if (ret) | ||
| 1854 | dev_info(ictx->dev, "panel buttons/knobs setup failed\n"); | ||
| 1855 | |||
| 1856 | if (ictx->product == 0xffdc) | ||
| 1857 | imon_get_ffdc_type(ictx); | ||
| 1858 | |||
| 1859 | imon_set_display_type(ictx); | ||
| 1860 | |||
| 1861 | if (ictx->ir_type == IR_TYPE_RC6) | ||
| 1862 | ir_codes = RC_MAP_IMON_MCE; | ||
| 1863 | else | ||
| 1864 | ir_codes = RC_MAP_IMON_PAD; | ||
| 1865 | |||
| 1866 | ret = ir_input_register(rdev, ir_codes, props, MOD_NAME); | ||
| 1867 | if (ret < 0) { | ||
| 1868 | dev_err(ictx->dev, "remote input dev register failed\n"); | ||
| 1869 | goto out; | ||
| 1870 | } | ||
| 1871 | |||
| 1872 | return rdev; | ||
| 1873 | |||
| 1874 | out: | ||
| 1875 | kfree(props); | ||
| 1876 | input_free_device(rdev); | ||
| 1877 | return NULL; | ||
| 1878 | } | ||
| 1879 | |||
| 1880 | static struct input_dev *imon_init_idev(struct imon_context *ictx) | ||
| 1881 | { | ||
| 1882 | struct input_dev *idev; | ||
| 1883 | int ret, i; | ||
| 1884 | |||
| 1885 | idev = input_allocate_device(); | ||
| 1886 | if (!idev) { | ||
| 1887 | dev_err(ictx->dev, "input dev allocation failed\n"); | ||
| 1888 | goto out; | ||
| 1889 | } | ||
| 1890 | |||
| 1891 | snprintf(ictx->name_idev, sizeof(ictx->name_idev), | ||
| 1892 | "iMON Panel, Knob and Mouse(%04x:%04x)", | ||
| 1893 | ictx->vendor, ictx->product); | ||
| 1894 | idev->name = ictx->name_idev; | ||
| 1895 | |||
| 1896 | usb_make_path(ictx->usbdev_intf0, ictx->phys_idev, | ||
| 1897 | sizeof(ictx->phys_idev)); | ||
| 1898 | strlcat(ictx->phys_idev, "/input1", sizeof(ictx->phys_idev)); | ||
| 1899 | idev->phys = ictx->phys_idev; | ||
| 1900 | |||
| 1901 | idev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP) | BIT_MASK(EV_REL); | ||
| 1902 | |||
| 1903 | idev->keybit[BIT_WORD(BTN_MOUSE)] = | ||
| 1904 | BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT); | ||
| 1905 | idev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y) | | ||
| 1906 | BIT_MASK(REL_WHEEL); | ||
| 1907 | |||
| 1908 | /* panel and/or knob code support */ | ||
| 1909 | for (i = 0; i < ARRAY_SIZE(imon_panel_key_table); i++) { | ||
| 1910 | u32 kc = imon_panel_key_table[i].keycode; | ||
| 1911 | __set_bit(kc, idev->keybit); | ||
| 1912 | } | ||
| 1913 | |||
| 1914 | usb_to_input_id(ictx->usbdev_intf0, &idev->id); | ||
| 1915 | idev->dev.parent = ictx->dev; | ||
| 1916 | input_set_drvdata(idev, ictx); | ||
| 1917 | |||
| 1918 | ret = input_register_device(idev); | ||
| 1919 | if (ret < 0) { | ||
| 1920 | dev_err(ictx->dev, "input dev register failed\n"); | ||
| 1921 | goto out; | ||
| 1922 | } | ||
| 1923 | |||
| 1924 | return idev; | ||
| 1925 | |||
| 1926 | out: | ||
| 1927 | input_free_device(idev); | ||
| 1928 | return NULL; | ||
| 1929 | } | ||
| 1930 | |||
| 1931 | static struct input_dev *imon_init_touch(struct imon_context *ictx) | ||
| 1932 | { | ||
| 1933 | struct input_dev *touch; | ||
| 1934 | int ret; | ||
| 1935 | |||
| 1936 | touch = input_allocate_device(); | ||
| 1937 | if (!touch) { | ||
| 1938 | dev_err(ictx->dev, "touchscreen input dev allocation failed\n"); | ||
| 1939 | goto touch_alloc_failed; | ||
| 1940 | } | ||
| 1941 | |||
| 1942 | snprintf(ictx->name_touch, sizeof(ictx->name_touch), | ||
| 1943 | "iMON USB Touchscreen (%04x:%04x)", | ||
| 1944 | ictx->vendor, ictx->product); | ||
| 1945 | touch->name = ictx->name_touch; | ||
| 1946 | |||
| 1947 | usb_make_path(ictx->usbdev_intf1, ictx->phys_touch, | ||
| 1948 | sizeof(ictx->phys_touch)); | ||
| 1949 | strlcat(ictx->phys_touch, "/input2", sizeof(ictx->phys_touch)); | ||
| 1950 | touch->phys = ictx->phys_touch; | ||
| 1951 | |||
| 1952 | touch->evbit[0] = | ||
| 1953 | BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); | ||
| 1954 | touch->keybit[BIT_WORD(BTN_TOUCH)] = | ||
| 1955 | BIT_MASK(BTN_TOUCH); | ||
| 1956 | input_set_abs_params(touch, ABS_X, | ||
| 1957 | 0x00, 0xfff, 0, 0); | ||
| 1958 | input_set_abs_params(touch, ABS_Y, | ||
| 1959 | 0x00, 0xfff, 0, 0); | ||
| 1960 | |||
| 1961 | input_set_drvdata(touch, ictx); | ||
| 1962 | |||
| 1963 | usb_to_input_id(ictx->usbdev_intf1, &touch->id); | ||
| 1964 | touch->dev.parent = ictx->dev; | ||
| 1965 | ret = input_register_device(touch); | ||
| 1966 | if (ret < 0) { | ||
| 1967 | dev_info(ictx->dev, "touchscreen input dev register failed\n"); | ||
| 1968 | goto touch_register_failed; | ||
| 1969 | } | ||
| 1970 | |||
| 1971 | return touch; | ||
| 1972 | |||
| 1973 | touch_register_failed: | ||
| 1974 | input_free_device(ictx->touch); | ||
| 1975 | |||
| 1976 | touch_alloc_failed: | ||
| 1977 | return NULL; | ||
| 1978 | } | ||
| 1979 | |||
| 1980 | static bool imon_find_endpoints(struct imon_context *ictx, | ||
| 1981 | struct usb_host_interface *iface_desc) | ||
| 1982 | { | ||
| 1983 | struct usb_endpoint_descriptor *ep; | ||
| 1984 | struct usb_endpoint_descriptor *rx_endpoint = NULL; | ||
| 1985 | struct usb_endpoint_descriptor *tx_endpoint = NULL; | ||
| 1986 | int ifnum = iface_desc->desc.bInterfaceNumber; | ||
| 1987 | int num_endpts = iface_desc->desc.bNumEndpoints; | ||
| 1988 | int i, ep_dir, ep_type; | ||
| 1989 | bool ir_ep_found = false; | ||
| 1990 | bool display_ep_found = false; | ||
| 1991 | bool tx_control = false; | ||
| 1992 | |||
| 1993 | /* | ||
| 1994 | * Scan the endpoint list and set: | ||
| 1995 | * first input endpoint = IR endpoint | ||
| 1996 | * first output endpoint = display endpoint | ||
| 1997 | */ | ||
| 1998 | for (i = 0; i < num_endpts && !(ir_ep_found && display_ep_found); ++i) { | ||
| 1999 | ep = &iface_desc->endpoint[i].desc; | ||
| 2000 | ep_dir = ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK; | ||
| 2001 | ep_type = ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; | ||
| 2002 | |||
| 2003 | if (!ir_ep_found && ep_dir == USB_DIR_IN && | ||
| 2004 | ep_type == USB_ENDPOINT_XFER_INT) { | ||
| 2005 | |||
| 2006 | rx_endpoint = ep; | ||
| 2007 | ir_ep_found = true; | ||
| 2008 | dev_dbg(ictx->dev, "%s: found IR endpoint\n", __func__); | ||
| 2009 | |||
| 2010 | } else if (!display_ep_found && ep_dir == USB_DIR_OUT && | ||
| 2011 | ep_type == USB_ENDPOINT_XFER_INT) { | ||
| 2012 | tx_endpoint = ep; | ||
| 2013 | display_ep_found = true; | ||
| 2014 | dev_dbg(ictx->dev, "%s: found display endpoint\n", __func__); | ||
| 2015 | } | ||
| 2016 | } | ||
| 2017 | |||
| 2018 | if (ifnum == 0) { | ||
| 2019 | ictx->rx_endpoint_intf0 = rx_endpoint; | ||
| 2020 | /* | ||
| 2021 | * tx is used to send characters to lcd/vfd, associate RF | ||
| 2022 | * remotes, set IR protocol, and maybe more... | ||
| 2023 | */ | ||
| 2024 | ictx->tx_endpoint = tx_endpoint; | ||
| 2025 | } else { | ||
| 2026 | ictx->rx_endpoint_intf1 = rx_endpoint; | ||
| 2027 | } | ||
| 2028 | |||
| 2029 | /* | ||
| 2030 | * If we didn't find a display endpoint, this is probably one of the | ||
| 2031 | * newer iMON devices that use control urb instead of interrupt | ||
| 2032 | */ | ||
| 2033 | if (!display_ep_found) { | ||
| 2034 | tx_control = true; | ||
| 2035 | display_ep_found = true; | ||
| 2036 | dev_dbg(ictx->dev, "%s: device uses control endpoint, not " | ||
| 2037 | "interface OUT endpoint\n", __func__); | ||
| 2038 | } | ||
| 2039 | |||
| 2040 | /* | ||
| 2041 | * Some iMON receivers have no display. Unfortunately, it seems | ||
| 2042 | * that SoundGraph recycles device IDs between devices both with | ||
| 2043 | * and without... :\ | ||
| 2044 | */ | ||
| 2045 | if (ictx->display_type == IMON_DISPLAY_TYPE_NONE) { | ||
| 2046 | display_ep_found = false; | ||
| 2047 | dev_dbg(ictx->dev, "%s: device has no display\n", __func__); | ||
| 2048 | } | ||
| 2049 | |||
| 2050 | /* | ||
| 2051 | * iMON Touch devices have a VGA touchscreen, but no "display", as | ||
| 2052 | * that refers to e.g. /dev/lcd0 (a character device LCD or VFD). | ||
| 2053 | */ | ||
| 2054 | if (ictx->display_type == IMON_DISPLAY_TYPE_VGA) { | ||
| 2055 | display_ep_found = false; | ||
| 2056 | dev_dbg(ictx->dev, "%s: iMON Touch device found\n", __func__); | ||
| 2057 | } | ||
| 2058 | |||
| 2059 | /* Input endpoint is mandatory */ | ||
| 2060 | if (!ir_ep_found) | ||
| 2061 | pr_err("no valid input (IR) endpoint found\n"); | ||
| 2062 | |||
| 2063 | ictx->tx_control = tx_control; | ||
| 2064 | |||
| 2065 | if (display_ep_found) | ||
| 2066 | ictx->display_supported = true; | ||
| 2067 | |||
| 2068 | return ir_ep_found; | ||
| 2069 | |||
| 2070 | } | ||
| 2071 | |||
| 2072 | static struct imon_context *imon_init_intf0(struct usb_interface *intf) | ||
| 2073 | { | ||
| 2074 | struct imon_context *ictx; | ||
| 2075 | struct urb *rx_urb; | ||
| 2076 | struct urb *tx_urb; | ||
| 2077 | struct device *dev = &intf->dev; | ||
| 2078 | struct usb_host_interface *iface_desc; | ||
| 2079 | int ret = -ENOMEM; | ||
| 2080 | |||
| 2081 | ictx = kzalloc(sizeof(struct imon_context), GFP_KERNEL); | ||
| 2082 | if (!ictx) { | ||
| 2083 | dev_err(dev, "%s: kzalloc failed for context", __func__); | ||
| 2084 | goto exit; | ||
| 2085 | } | ||
| 2086 | rx_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
| 2087 | if (!rx_urb) { | ||
| 2088 | dev_err(dev, "%s: usb_alloc_urb failed for IR urb", __func__); | ||
| 2089 | goto rx_urb_alloc_failed; | ||
| 2090 | } | ||
| 2091 | tx_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
| 2092 | if (!tx_urb) { | ||
| 2093 | dev_err(dev, "%s: usb_alloc_urb failed for display urb", | ||
| 2094 | __func__); | ||
| 2095 | goto tx_urb_alloc_failed; | ||
| 2096 | } | ||
| 2097 | |||
| 2098 | mutex_init(&ictx->lock); | ||
| 2099 | spin_lock_init(&ictx->kc_lock); | ||
| 2100 | |||
| 2101 | mutex_lock(&ictx->lock); | ||
| 2102 | |||
| 2103 | ictx->dev = dev; | ||
| 2104 | ictx->usbdev_intf0 = usb_get_dev(interface_to_usbdev(intf)); | ||
| 2105 | ictx->dev_present_intf0 = true; | ||
| 2106 | ictx->rx_urb_intf0 = rx_urb; | ||
| 2107 | ictx->tx_urb = tx_urb; | ||
| 2108 | ictx->rf_device = false; | ||
| 2109 | |||
| 2110 | ictx->vendor = le16_to_cpu(ictx->usbdev_intf0->descriptor.idVendor); | ||
| 2111 | ictx->product = le16_to_cpu(ictx->usbdev_intf0->descriptor.idProduct); | ||
| 2112 | |||
| 2113 | ret = -ENODEV; | ||
| 2114 | iface_desc = intf->cur_altsetting; | ||
| 2115 | if (!imon_find_endpoints(ictx, iface_desc)) { | ||
| 2116 | goto find_endpoint_failed; | ||
| 2117 | } | ||
| 2118 | |||
| 2119 | ictx->idev = imon_init_idev(ictx); | ||
| 2120 | if (!ictx->idev) { | ||
| 2121 | dev_err(dev, "%s: input device setup failed\n", __func__); | ||
| 2122 | goto idev_setup_failed; | ||
| 2123 | } | ||
| 2124 | |||
| 2125 | ictx->rdev = imon_init_rdev(ictx); | ||
| 2126 | if (!ictx->rdev) { | ||
| 2127 | dev_err(dev, "%s: rc device setup failed\n", __func__); | ||
| 2128 | goto rdev_setup_failed; | ||
| 2129 | } | ||
| 2130 | |||
| 2131 | usb_fill_int_urb(ictx->rx_urb_intf0, ictx->usbdev_intf0, | ||
| 2132 | usb_rcvintpipe(ictx->usbdev_intf0, | ||
| 2133 | ictx->rx_endpoint_intf0->bEndpointAddress), | ||
| 2134 | ictx->usb_rx_buf, sizeof(ictx->usb_rx_buf), | ||
| 2135 | usb_rx_callback_intf0, ictx, | ||
| 2136 | ictx->rx_endpoint_intf0->bInterval); | ||
| 2137 | |||
| 2138 | ret = usb_submit_urb(ictx->rx_urb_intf0, GFP_KERNEL); | ||
| 2139 | if (ret) { | ||
| 2140 | pr_err("usb_submit_urb failed for intf0 (%d)\n", ret); | ||
| 2141 | goto urb_submit_failed; | ||
| 2142 | } | ||
| 2143 | |||
| 2144 | return ictx; | ||
| 2145 | |||
| 2146 | urb_submit_failed: | ||
| 2147 | ir_input_unregister(ictx->rdev); | ||
| 2148 | rdev_setup_failed: | ||
| 2149 | input_unregister_device(ictx->idev); | ||
| 2150 | idev_setup_failed: | ||
| 2151 | find_endpoint_failed: | ||
| 2152 | mutex_unlock(&ictx->lock); | ||
| 2153 | usb_free_urb(tx_urb); | ||
| 2154 | tx_urb_alloc_failed: | ||
| 2155 | usb_free_urb(rx_urb); | ||
| 2156 | rx_urb_alloc_failed: | ||
| 2157 | kfree(ictx); | ||
| 2158 | exit: | ||
| 2159 | dev_err(dev, "unable to initialize intf0, err %d\n", ret); | ||
| 2160 | |||
| 2161 | return NULL; | ||
| 2162 | } | ||
| 2163 | |||
| 2164 | static struct imon_context *imon_init_intf1(struct usb_interface *intf, | ||
| 2165 | struct imon_context *ictx) | ||
| 2166 | { | ||
| 2167 | struct urb *rx_urb; | ||
| 2168 | struct usb_host_interface *iface_desc; | ||
| 2169 | int ret = -ENOMEM; | ||
| 2170 | |||
| 2171 | rx_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
| 2172 | if (!rx_urb) { | ||
| 2173 | pr_err("usb_alloc_urb failed for IR urb\n"); | ||
| 2174 | goto rx_urb_alloc_failed; | ||
| 2175 | } | ||
| 2176 | |||
| 2177 | mutex_lock(&ictx->lock); | ||
| 2178 | |||
| 2179 | if (ictx->display_type == IMON_DISPLAY_TYPE_VGA) { | ||
| 2180 | init_timer(&ictx->ttimer); | ||
| 2181 | ictx->ttimer.data = (unsigned long)ictx; | ||
| 2182 | ictx->ttimer.function = imon_touch_display_timeout; | ||
| 2183 | } | ||
| 2184 | |||
| 2185 | ictx->usbdev_intf1 = usb_get_dev(interface_to_usbdev(intf)); | ||
| 2186 | ictx->dev_present_intf1 = true; | ||
| 2187 | ictx->rx_urb_intf1 = rx_urb; | ||
| 2188 | |||
| 2189 | ret = -ENODEV; | ||
| 2190 | iface_desc = intf->cur_altsetting; | ||
| 2191 | if (!imon_find_endpoints(ictx, iface_desc)) | ||
| 2192 | goto find_endpoint_failed; | ||
| 2193 | |||
| 2194 | if (ictx->display_type == IMON_DISPLAY_TYPE_VGA) { | ||
| 2195 | ictx->touch = imon_init_touch(ictx); | ||
| 2196 | if (!ictx->touch) | ||
| 2197 | goto touch_setup_failed; | ||
| 2198 | } else | ||
| 2199 | ictx->touch = NULL; | ||
| 2200 | |||
| 2201 | usb_fill_int_urb(ictx->rx_urb_intf1, ictx->usbdev_intf1, | ||
| 2202 | usb_rcvintpipe(ictx->usbdev_intf1, | ||
| 2203 | ictx->rx_endpoint_intf1->bEndpointAddress), | ||
| 2204 | ictx->usb_rx_buf, sizeof(ictx->usb_rx_buf), | ||
| 2205 | usb_rx_callback_intf1, ictx, | ||
| 2206 | ictx->rx_endpoint_intf1->bInterval); | ||
| 2207 | |||
| 2208 | ret = usb_submit_urb(ictx->rx_urb_intf1, GFP_KERNEL); | ||
| 2209 | |||
| 2210 | if (ret) { | ||
| 2211 | pr_err("usb_submit_urb failed for intf1 (%d)\n", ret); | ||
| 2212 | goto urb_submit_failed; | ||
| 2213 | } | ||
| 2214 | |||
| 2215 | return ictx; | ||
| 2216 | |||
| 2217 | urb_submit_failed: | ||
| 2218 | if (ictx->touch) | ||
| 2219 | input_unregister_device(ictx->touch); | ||
| 2220 | touch_setup_failed: | ||
| 2221 | find_endpoint_failed: | ||
| 2222 | mutex_unlock(&ictx->lock); | ||
| 2223 | usb_free_urb(rx_urb); | ||
| 2224 | rx_urb_alloc_failed: | ||
| 2225 | dev_err(ictx->dev, "unable to initialize intf0, err %d\n", ret); | ||
| 2226 | |||
| 2227 | return NULL; | ||
| 2228 | } | ||
| 2229 | |||
| 2230 | static void imon_init_display(struct imon_context *ictx, | ||
| 2231 | struct usb_interface *intf) | ||
| 2232 | { | ||
| 2233 | int ret; | ||
| 2234 | |||
| 2235 | dev_dbg(ictx->dev, "Registering iMON display with sysfs\n"); | ||
| 2236 | |||
| 2237 | /* set up sysfs entry for built-in clock */ | ||
| 2238 | ret = sysfs_create_group(&intf->dev.kobj, &imon_display_attr_group); | ||
| 2239 | if (ret) | ||
| 2240 | dev_err(ictx->dev, "Could not create display sysfs " | ||
| 2241 | "entries(%d)", ret); | ||
| 2242 | |||
| 2243 | if (ictx->display_type == IMON_DISPLAY_TYPE_LCD) | ||
| 2244 | ret = usb_register_dev(intf, &imon_lcd_class); | ||
| 2245 | else | ||
| 2246 | ret = usb_register_dev(intf, &imon_vfd_class); | ||
| 2247 | if (ret) | ||
| 2248 | /* Not a fatal error, so ignore */ | ||
| 2249 | dev_info(ictx->dev, "could not get a minor number for " | ||
| 2250 | "display\n"); | ||
| 2251 | |||
| 2252 | } | ||
| 2253 | |||
| 2254 | /** | ||
| 2255 | * Callback function for USB core API: Probe | ||
| 2256 | */ | ||
| 2257 | static int __devinit imon_probe(struct usb_interface *interface, | ||
| 2258 | const struct usb_device_id *id) | ||
| 2259 | { | ||
| 2260 | struct usb_device *usbdev = NULL; | ||
| 2261 | struct usb_host_interface *iface_desc = NULL; | ||
| 2262 | struct usb_interface *first_if; | ||
| 2263 | struct device *dev = &interface->dev; | ||
| 2264 | int ifnum, code_length, sysfs_err; | ||
| 2265 | int ret = 0; | ||
| 2266 | struct imon_context *ictx = NULL; | ||
| 2267 | struct imon_context *first_if_ctx = NULL; | ||
| 2268 | u16 vendor, product; | ||
| 2269 | |||
| 2270 | code_length = BUF_CHUNK_SIZE * 8; | ||
| 2271 | |||
| 2272 | usbdev = usb_get_dev(interface_to_usbdev(interface)); | ||
| 2273 | iface_desc = interface->cur_altsetting; | ||
| 2274 | ifnum = iface_desc->desc.bInterfaceNumber; | ||
| 2275 | vendor = le16_to_cpu(usbdev->descriptor.idVendor); | ||
| 2276 | product = le16_to_cpu(usbdev->descriptor.idProduct); | ||
| 2277 | |||
| 2278 | dev_dbg(dev, "%s: found iMON device (%04x:%04x, intf%d)\n", | ||
| 2279 | __func__, vendor, product, ifnum); | ||
| 2280 | |||
| 2281 | /* prevent races probing devices w/multiple interfaces */ | ||
| 2282 | mutex_lock(&driver_lock); | ||
| 2283 | |||
| 2284 | first_if = usb_ifnum_to_if(usbdev, 0); | ||
| 2285 | first_if_ctx = (struct imon_context *)usb_get_intfdata(first_if); | ||
| 2286 | |||
| 2287 | if (ifnum == 0) { | ||
| 2288 | ictx = imon_init_intf0(interface); | ||
| 2289 | if (!ictx) { | ||
| 2290 | pr_err("failed to initialize context!\n"); | ||
| 2291 | ret = -ENODEV; | ||
| 2292 | goto fail; | ||
| 2293 | } | ||
| 2294 | |||
| 2295 | } else { | ||
| 2296 | /* this is the secondary interface on the device */ | ||
| 2297 | ictx = imon_init_intf1(interface, first_if_ctx); | ||
| 2298 | if (!ictx) { | ||
| 2299 | pr_err("failed to attach to context!\n"); | ||
| 2300 | ret = -ENODEV; | ||
| 2301 | goto fail; | ||
| 2302 | } | ||
| 2303 | |||
| 2304 | } | ||
| 2305 | |||
| 2306 | usb_set_intfdata(interface, ictx); | ||
| 2307 | |||
| 2308 | if (ifnum == 0) { | ||
| 2309 | if (product == 0xffdc && ictx->rf_device) { | ||
| 2310 | sysfs_err = sysfs_create_group(&interface->dev.kobj, | ||
| 2311 | &imon_rf_attr_group); | ||
| 2312 | if (sysfs_err) | ||
| 2313 | pr_err("Could not create RF sysfs entries(%d)\n", | ||
| 2314 | sysfs_err); | ||
| 2315 | } | ||
| 2316 | |||
| 2317 | if (ictx->display_supported) | ||
| 2318 | imon_init_display(ictx, interface); | ||
| 2319 | } | ||
| 2320 | |||
| 2321 | dev_info(dev, "iMON device (%04x:%04x, intf%d) on " | ||
| 2322 | "usb<%d:%d> initialized\n", vendor, product, ifnum, | ||
| 2323 | usbdev->bus->busnum, usbdev->devnum); | ||
| 2324 | |||
| 2325 | mutex_unlock(&ictx->lock); | ||
| 2326 | mutex_unlock(&driver_lock); | ||
| 2327 | |||
| 2328 | return 0; | ||
| 2329 | |||
| 2330 | fail: | ||
| 2331 | mutex_unlock(&driver_lock); | ||
| 2332 | dev_err(dev, "unable to register, err %d\n", ret); | ||
| 2333 | |||
| 2334 | return ret; | ||
| 2335 | } | ||
| 2336 | |||
| 2337 | /** | ||
| 2338 | * Callback function for USB core API: disconnect | ||
| 2339 | */ | ||
| 2340 | static void __devexit imon_disconnect(struct usb_interface *interface) | ||
| 2341 | { | ||
| 2342 | struct imon_context *ictx; | ||
| 2343 | struct device *dev; | ||
| 2344 | int ifnum; | ||
| 2345 | |||
| 2346 | /* prevent races with multi-interface device probing and display_open */ | ||
| 2347 | mutex_lock(&driver_lock); | ||
| 2348 | |||
| 2349 | ictx = usb_get_intfdata(interface); | ||
| 2350 | dev = ictx->dev; | ||
| 2351 | ifnum = interface->cur_altsetting->desc.bInterfaceNumber; | ||
| 2352 | |||
| 2353 | mutex_lock(&ictx->lock); | ||
| 2354 | |||
| 2355 | /* | ||
| 2356 | * sysfs_remove_group is safe to call even if sysfs_create_group | ||
| 2357 | * hasn't been called | ||
| 2358 | */ | ||
| 2359 | sysfs_remove_group(&interface->dev.kobj, &imon_display_attr_group); | ||
| 2360 | sysfs_remove_group(&interface->dev.kobj, &imon_rf_attr_group); | ||
| 2361 | |||
| 2362 | usb_set_intfdata(interface, NULL); | ||
| 2363 | |||
| 2364 | /* Abort ongoing write */ | ||
| 2365 | if (ictx->tx.busy) { | ||
| 2366 | usb_kill_urb(ictx->tx_urb); | ||
| 2367 | complete_all(&ictx->tx.finished); | ||
| 2368 | } | ||
| 2369 | |||
| 2370 | if (ifnum == 0) { | ||
| 2371 | ictx->dev_present_intf0 = false; | ||
| 2372 | usb_kill_urb(ictx->rx_urb_intf0); | ||
| 2373 | input_unregister_device(ictx->idev); | ||
| 2374 | ir_input_unregister(ictx->rdev); | ||
| 2375 | if (ictx->display_supported) { | ||
| 2376 | if (ictx->display_type == IMON_DISPLAY_TYPE_LCD) | ||
| 2377 | usb_deregister_dev(interface, &imon_lcd_class); | ||
| 2378 | else | ||
| 2379 | usb_deregister_dev(interface, &imon_vfd_class); | ||
| 2380 | } | ||
| 2381 | } else { | ||
| 2382 | ictx->dev_present_intf1 = false; | ||
| 2383 | usb_kill_urb(ictx->rx_urb_intf1); | ||
| 2384 | if (ictx->display_type == IMON_DISPLAY_TYPE_VGA) | ||
| 2385 | input_unregister_device(ictx->touch); | ||
| 2386 | } | ||
| 2387 | |||
| 2388 | if (!ictx->dev_present_intf0 && !ictx->dev_present_intf1) { | ||
| 2389 | if (ictx->display_type == IMON_DISPLAY_TYPE_VGA) | ||
| 2390 | del_timer_sync(&ictx->ttimer); | ||
| 2391 | mutex_unlock(&ictx->lock); | ||
| 2392 | if (!ictx->display_isopen) | ||
| 2393 | free_imon_context(ictx); | ||
| 2394 | } else | ||
| 2395 | mutex_unlock(&ictx->lock); | ||
| 2396 | |||
| 2397 | mutex_unlock(&driver_lock); | ||
| 2398 | |||
| 2399 | dev_dbg(dev, "%s: iMON device (intf%d) disconnected\n", | ||
| 2400 | __func__, ifnum); | ||
| 2401 | } | ||
| 2402 | |||
| 2403 | static int imon_suspend(struct usb_interface *intf, pm_message_t message) | ||
| 2404 | { | ||
| 2405 | struct imon_context *ictx = usb_get_intfdata(intf); | ||
| 2406 | int ifnum = intf->cur_altsetting->desc.bInterfaceNumber; | ||
| 2407 | |||
| 2408 | if (ifnum == 0) | ||
| 2409 | usb_kill_urb(ictx->rx_urb_intf0); | ||
| 2410 | else | ||
| 2411 | usb_kill_urb(ictx->rx_urb_intf1); | ||
| 2412 | |||
| 2413 | return 0; | ||
| 2414 | } | ||
| 2415 | |||
| 2416 | static int imon_resume(struct usb_interface *intf) | ||
| 2417 | { | ||
| 2418 | int rc = 0; | ||
| 2419 | struct imon_context *ictx = usb_get_intfdata(intf); | ||
| 2420 | int ifnum = intf->cur_altsetting->desc.bInterfaceNumber; | ||
| 2421 | |||
| 2422 | if (ifnum == 0) { | ||
| 2423 | usb_fill_int_urb(ictx->rx_urb_intf0, ictx->usbdev_intf0, | ||
| 2424 | usb_rcvintpipe(ictx->usbdev_intf0, | ||
| 2425 | ictx->rx_endpoint_intf0->bEndpointAddress), | ||
| 2426 | ictx->usb_rx_buf, sizeof(ictx->usb_rx_buf), | ||
| 2427 | usb_rx_callback_intf0, ictx, | ||
| 2428 | ictx->rx_endpoint_intf0->bInterval); | ||
| 2429 | |||
| 2430 | rc = usb_submit_urb(ictx->rx_urb_intf0, GFP_ATOMIC); | ||
| 2431 | |||
| 2432 | } else { | ||
| 2433 | usb_fill_int_urb(ictx->rx_urb_intf1, ictx->usbdev_intf1, | ||
| 2434 | usb_rcvintpipe(ictx->usbdev_intf1, | ||
| 2435 | ictx->rx_endpoint_intf1->bEndpointAddress), | ||
| 2436 | ictx->usb_rx_buf, sizeof(ictx->usb_rx_buf), | ||
| 2437 | usb_rx_callback_intf1, ictx, | ||
| 2438 | ictx->rx_endpoint_intf1->bInterval); | ||
| 2439 | |||
| 2440 | rc = usb_submit_urb(ictx->rx_urb_intf1, GFP_ATOMIC); | ||
| 2441 | } | ||
| 2442 | |||
| 2443 | return rc; | ||
| 2444 | } | ||
| 2445 | |||
| 2446 | static int __init imon_init(void) | ||
| 2447 | { | ||
| 2448 | int rc; | ||
| 2449 | |||
| 2450 | rc = usb_register(&imon_driver); | ||
| 2451 | if (rc) { | ||
| 2452 | pr_err("usb register failed(%d)\n", rc); | ||
| 2453 | rc = -ENODEV; | ||
| 2454 | } | ||
| 2455 | |||
| 2456 | return rc; | ||
| 2457 | } | ||
| 2458 | |||
| 2459 | static void __exit imon_exit(void) | ||
| 2460 | { | ||
| 2461 | usb_deregister(&imon_driver); | ||
| 2462 | } | ||
| 2463 | |||
| 2464 | module_init(imon_init); | ||
| 2465 | module_exit(imon_exit); | ||
