xref: /freebsd/sys/dev/usb/input/wsp.c (revision 1f474190)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2012 Huang Wen Hui
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kernel.h>
35 #include <sys/malloc.h>
36 #include <sys/module.h>
37 #include <sys/lock.h>
38 #include <sys/mutex.h>
39 #include <sys/bus.h>
40 #include <sys/conf.h>
41 #include <sys/fcntl.h>
42 #include <sys/file.h>
43 #include <sys/selinfo.h>
44 #include <sys/poll.h>
45 #include <sys/sysctl.h>
46 
47 #include <dev/usb/usb.h>
48 #include <dev/usb/usbdi.h>
49 #include <dev/usb/usbdi_util.h>
50 #include <dev/usb/usbhid.h>
51 
52 #include "usbdevs.h"
53 
54 #define	USB_DEBUG_VAR wsp_debug
55 #include <dev/usb/usb_debug.h>
56 
57 #include <sys/mouse.h>
58 
59 #define	WSP_DRIVER_NAME "wsp"
60 #define	WSP_BUFFER_MAX	1024
61 
62 #define	WSP_CLAMP(x,low,high) do {		\
63 	if ((x) < (low))			\
64 		(x) = (low);			\
65 	else if ((x) > (high))			\
66 		(x) = (high);			\
67 } while (0)
68 
69 /* Tunables */
70 static	SYSCTL_NODE(_hw_usb, OID_AUTO, wsp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
71     "USB wsp");
72 
73 #ifdef USB_DEBUG
74 enum wsp_log_level {
75 	WSP_LLEVEL_DISABLED = 0,
76 	WSP_LLEVEL_ERROR,
77 	WSP_LLEVEL_DEBUG,		/* for troubleshooting */
78 	WSP_LLEVEL_INFO,		/* for diagnostics */
79 };
80 static int wsp_debug = WSP_LLEVEL_ERROR;/* the default is to only log errors */
81 
82 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, debug, CTLFLAG_RWTUN,
83     &wsp_debug, WSP_LLEVEL_ERROR, "WSP debug level");
84 #endif					/* USB_DEBUG */
85 
86 static struct wsp_tuning {
87 	int	scale_factor;
88 	int	z_factor;
89 	int	pressure_touch_threshold;
90 	int	pressure_untouch_threshold;
91 	int	pressure_tap_threshold;
92 	int	scr_hor_threshold;
93 	int	enable_single_tap_clicks;
94 }
95 	wsp_tuning =
96 {
97 	.scale_factor = 12,
98 	.z_factor = 5,
99 	.pressure_touch_threshold = 50,
100 	.pressure_untouch_threshold = 10,
101 	.pressure_tap_threshold = 120,
102 	.scr_hor_threshold = 20,
103 	.enable_single_tap_clicks = 1,
104 };
105 
106 static void
107 wsp_runing_rangecheck(struct wsp_tuning *ptun)
108 {
109 	WSP_CLAMP(ptun->scale_factor, 1, 63);
110 	WSP_CLAMP(ptun->z_factor, 1, 63);
111 	WSP_CLAMP(ptun->pressure_touch_threshold, 1, 255);
112 	WSP_CLAMP(ptun->pressure_untouch_threshold, 1, 255);
113 	WSP_CLAMP(ptun->pressure_tap_threshold, 1, 255);
114 	WSP_CLAMP(ptun->scr_hor_threshold, 1, 255);
115 	WSP_CLAMP(ptun->enable_single_tap_clicks, 0, 1);
116 }
117 
118 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, scale_factor, CTLFLAG_RWTUN,
119     &wsp_tuning.scale_factor, 0, "movement scale factor");
120 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, z_factor, CTLFLAG_RWTUN,
121     &wsp_tuning.z_factor, 0, "Z-axis scale factor");
122 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, pressure_touch_threshold, CTLFLAG_RWTUN,
123     &wsp_tuning.pressure_touch_threshold, 0, "touch pressure threshold");
124 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, pressure_untouch_threshold, CTLFLAG_RWTUN,
125     &wsp_tuning.pressure_untouch_threshold, 0, "untouch pressure threshold");
126 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, pressure_tap_threshold, CTLFLAG_RWTUN,
127     &wsp_tuning.pressure_tap_threshold, 0, "tap pressure threshold");
128 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, scr_hor_threshold, CTLFLAG_RWTUN,
129     &wsp_tuning.scr_hor_threshold, 0, "horizontal scrolling threshold");
130 SYSCTL_INT(_hw_usb_wsp, OID_AUTO, enable_single_tap_clicks, CTLFLAG_RWTUN,
131     &wsp_tuning.enable_single_tap_clicks, 0, "enable single tap clicks");
132 
133 /*
134  * Some tables, structures, definitions and constant values for the
135  * touchpad protocol has been copied from Linux's
136  * "drivers/input/mouse/bcm5974.c" which has the following copyright
137  * holders under GPLv2. All device specific code in this driver has
138  * been written from scratch. The decoding algorithm is based on
139  * output from FreeBSD's usbdump.
140  *
141  * Copyright (C) 2008      Henrik Rydberg (rydberg@euromail.se)
142  * Copyright (C) 2008      Scott Shawcroft (scott.shawcroft@gmail.com)
143  * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
144  * Copyright (C) 2005      Johannes Berg (johannes@sipsolutions.net)
145  * Copyright (C) 2005      Stelian Pop (stelian@popies.net)
146  * Copyright (C) 2005      Frank Arnold (frank@scirocco-5v-turbo.de)
147  * Copyright (C) 2005      Peter Osterlund (petero2@telia.com)
148  * Copyright (C) 2005      Michael Hanselmann (linux-kernel@hansmi.ch)
149  * Copyright (C) 2006      Nicolas Boichat (nicolas@boichat.ch)
150  */
151 
152 /* button data structure */
153 struct bt_data {
154 	uint8_t	unknown1;		/* constant */
155 	uint8_t	button;			/* left button */
156 	uint8_t	rel_x;			/* relative x coordinate */
157 	uint8_t	rel_y;			/* relative y coordinate */
158 } __packed;
159 
160 /* trackpad header types */
161 enum tp_type {
162 	TYPE1,			/* plain trackpad */
163 	TYPE2,			/* button integrated in trackpad */
164 	TYPE3,			/* additional header fields since June 2013 */
165 	TYPE4                   /* additional header field for pressure data */
166 };
167 
168 /* trackpad finger data offsets, le16-aligned */
169 #define	FINGER_TYPE1		(13 * 2)
170 #define	FINGER_TYPE2		(15 * 2)
171 #define	FINGER_TYPE3		(19 * 2)
172 #define	FINGER_TYPE4		(23 * 2)
173 
174 /* trackpad button data offsets */
175 #define	BUTTON_TYPE2		15
176 #define	BUTTON_TYPE3		23
177 #define	BUTTON_TYPE4		31
178 
179 /* list of device capability bits */
180 #define	HAS_INTEGRATED_BUTTON	1
181 
182 /* trackpad finger data block size */
183 #define FSIZE_TYPE1             (14 * 2)
184 #define FSIZE_TYPE2             (14 * 2)
185 #define FSIZE_TYPE3             (14 * 2)
186 #define FSIZE_TYPE4             (15 * 2)
187 
188 /* trackpad finger header - little endian */
189 struct tp_header {
190 	uint8_t	flag;
191 	uint8_t	sn0;
192 	uint16_t wFixed0;
193 	uint32_t dwSn1;
194 	uint32_t dwFixed1;
195 	uint16_t wLength;
196 	uint8_t	nfinger;
197 	uint8_t	ibt;
198 	int16_t	wUnknown[6];
199 	uint8_t	q1;
200 	uint8_t	q2;
201 } __packed;
202 
203 /* trackpad finger structure - little endian */
204 struct tp_finger {
205 	int16_t	origin;			/* zero when switching track finger */
206 	int16_t	abs_x;			/* absolute x coodinate */
207 	int16_t	abs_y;			/* absolute y coodinate */
208 	int16_t	rel_x;			/* relative x coodinate */
209 	int16_t	rel_y;			/* relative y coodinate */
210 	int16_t	tool_major;		/* tool area, major axis */
211 	int16_t	tool_minor;		/* tool area, minor axis */
212 	int16_t	orientation;		/* 16384 when point, else 15 bit angle */
213 	int16_t	touch_major;		/* touch area, major axis */
214 	int16_t	touch_minor;		/* touch area, minor axis */
215 	int16_t	unused[2];		/* zeros */
216 	int16_t pressure;		/* pressure on forcetouch touchpad */
217 	int16_t	multi;			/* one finger: varies, more fingers:
218 				 	 * constant */
219 } __packed;
220 
221 /* trackpad finger data size, empirically at least ten fingers */
222 #define	MAX_FINGERS		16
223 #define	SIZEOF_FINGER		sizeof(struct tp_finger)
224 #define	SIZEOF_ALL_FINGERS	(MAX_FINGERS * SIZEOF_FINGER)
225 
226 #if (WSP_BUFFER_MAX < ((MAX_FINGERS * FSIZE_TYPE4) + FINGER_TYPE4))
227 #error "WSP_BUFFER_MAX is too small"
228 #endif
229 
230 enum {
231 	WSP_FLAG_WELLSPRING1,
232 	WSP_FLAG_WELLSPRING2,
233 	WSP_FLAG_WELLSPRING3,
234 	WSP_FLAG_WELLSPRING4,
235 	WSP_FLAG_WELLSPRING4A,
236 	WSP_FLAG_WELLSPRING5,
237 	WSP_FLAG_WELLSPRING6A,
238 	WSP_FLAG_WELLSPRING6,
239 	WSP_FLAG_WELLSPRING5A,
240 	WSP_FLAG_WELLSPRING7,
241 	WSP_FLAG_WELLSPRING7A,
242 	WSP_FLAG_WELLSPRING8,
243 	WSP_FLAG_WELLSPRING9,
244 	WSP_FLAG_MAX,
245 };
246 
247 /* device-specific configuration */
248 struct wsp_dev_params {
249 	uint8_t	caps;			/* device capability bitmask */
250 	uint8_t	tp_type;		/* type of trackpad interface */
251 	uint8_t	tp_button;		/* offset to button data */
252 	uint8_t	tp_offset;		/* offset to trackpad finger data */
253 	uint8_t tp_fsize;		/* bytes in single finger block */
254 	uint8_t tp_delta;		/* offset from header to finger struct */
255 	uint8_t iface_index;
256 	uint8_t um_size;		/* usb control message length */
257 	uint8_t um_req_val;		/* usb control message value */
258 	uint8_t um_req_idx;		/* usb control message index */
259 	uint8_t um_switch_idx;		/* usb control message mode switch index */
260 	uint8_t um_switch_on;		/* usb control message mode switch on */
261 	uint8_t um_switch_off;		/* usb control message mode switch off */
262 };
263 
264 static const struct wsp_dev_params wsp_dev_params[WSP_FLAG_MAX] = {
265 	[WSP_FLAG_WELLSPRING1] = {
266 		.caps = 0,
267 		.tp_type = TYPE1,
268 		.tp_button = 0,
269 		.tp_offset = FINGER_TYPE1,
270 		.tp_fsize = FSIZE_TYPE1,
271 		.tp_delta = 0,
272 		.iface_index = 0,
273 		.um_size = 8,
274 		.um_req_val = 0x03,
275 		.um_req_idx = 0x00,
276 		.um_switch_idx = 0,
277 		.um_switch_on = 0x01,
278 		.um_switch_off = 0x08,
279 	},
280 	[WSP_FLAG_WELLSPRING2] = {
281 		.caps = 0,
282 		.tp_type = TYPE1,
283 		.tp_button = 0,
284 		.tp_offset = FINGER_TYPE1,
285 		.tp_fsize = FSIZE_TYPE1,
286 		.tp_delta = 0,
287 		.iface_index = 0,
288 		.um_size = 8,
289 		.um_req_val = 0x03,
290 		.um_req_idx = 0x00,
291 		.um_switch_idx = 0,
292 		.um_switch_on = 0x01,
293 		.um_switch_off = 0x08,
294 	},
295 	[WSP_FLAG_WELLSPRING3] = {
296 		.caps = HAS_INTEGRATED_BUTTON,
297 		.tp_type = TYPE2,
298 		.tp_button = BUTTON_TYPE2,
299 		.tp_offset = FINGER_TYPE2,
300 		.tp_fsize = FSIZE_TYPE2,
301 		.tp_delta = 0,
302 		.iface_index = 0,
303 		.um_size = 8,
304 		.um_req_val = 0x03,
305 		.um_req_idx = 0x00,
306 		.um_switch_idx = 0,
307 		.um_switch_on = 0x01,
308 		.um_switch_off = 0x08,
309 	},
310 	[WSP_FLAG_WELLSPRING4] = {
311 		.caps = HAS_INTEGRATED_BUTTON,
312 		.tp_type = TYPE2,
313 		.tp_button = BUTTON_TYPE2,
314 		.tp_offset = FINGER_TYPE2,
315 		.tp_fsize = FSIZE_TYPE2,
316 		.tp_delta = 0,
317 		.iface_index = 0,
318 		.um_size = 8,
319 		.um_req_val = 0x03,
320 		.um_req_idx = 0x00,
321 		.um_switch_idx = 0,
322 		.um_switch_on = 0x01,
323 		.um_switch_off = 0x08,
324 	},
325 	[WSP_FLAG_WELLSPRING4A] = {
326 		.caps = HAS_INTEGRATED_BUTTON,
327 		.tp_type = TYPE2,
328 		.tp_button = BUTTON_TYPE2,
329 		.tp_offset = FINGER_TYPE2,
330 		.tp_fsize = FSIZE_TYPE2,
331 		.tp_delta = 0,
332 		.iface_index = 0,
333 		.um_size = 8,
334 		.um_req_val = 0x03,
335 		.um_req_idx = 0x00,
336 		.um_switch_idx = 0,
337 		.um_switch_on = 0x01,
338 		.um_switch_off = 0x08,
339 	},
340 	[WSP_FLAG_WELLSPRING5] = {
341 		.caps = HAS_INTEGRATED_BUTTON,
342 		.tp_type = TYPE2,
343 		.tp_button = BUTTON_TYPE2,
344 		.tp_offset = FINGER_TYPE2,
345 		.tp_fsize = FSIZE_TYPE2,
346 		.tp_delta = 0,
347 		.iface_index = 0,
348 		.um_size = 8,
349 		.um_req_val = 0x03,
350 		.um_req_idx = 0x00,
351 		.um_switch_idx = 0,
352 		.um_switch_on = 0x01,
353 		.um_switch_off = 0x08,
354 	},
355 	[WSP_FLAG_WELLSPRING6] = {
356 		.caps = HAS_INTEGRATED_BUTTON,
357 		.tp_type = TYPE2,
358 		.tp_button = BUTTON_TYPE2,
359 		.tp_offset = FINGER_TYPE2,
360 		.tp_fsize = FSIZE_TYPE2,
361 		.tp_delta = 0,
362 		.iface_index = 0,
363 		.um_size = 8,
364 		.um_req_val = 0x03,
365 		.um_req_idx = 0x00,
366 		.um_switch_idx = 0,
367 		.um_switch_on = 0x01,
368 		.um_switch_off = 0x08,
369 	},
370 	[WSP_FLAG_WELLSPRING5A] = {
371 		.caps = HAS_INTEGRATED_BUTTON,
372 		.tp_type = TYPE2,
373 		.tp_button = BUTTON_TYPE2,
374 		.tp_offset = FINGER_TYPE2,
375 		.tp_fsize = FSIZE_TYPE2,
376 		.tp_delta = 0,
377 		.iface_index = 0,
378 		.um_size = 8,
379 		.um_req_val = 0x03,
380 		.um_req_idx = 0x00,
381 		.um_switch_idx = 0,
382 		.um_switch_on = 0x01,
383 		.um_switch_off = 0x08,
384 	},
385 	[WSP_FLAG_WELLSPRING6A] = {
386 		.caps = HAS_INTEGRATED_BUTTON,
387 		.tp_type = TYPE2,
388 		.tp_button = BUTTON_TYPE2,
389 		.tp_offset = FINGER_TYPE2,
390 		.tp_fsize = FSIZE_TYPE2,
391 		.tp_delta = 0,
392 		.um_size = 8,
393 		.um_req_val = 0x03,
394 		.um_req_idx = 0x00,
395 		.um_switch_idx = 0,
396 		.um_switch_on = 0x01,
397 		.um_switch_off = 0x08,
398 	},
399 	[WSP_FLAG_WELLSPRING7] = {
400 		.caps = HAS_INTEGRATED_BUTTON,
401 		.tp_type = TYPE2,
402 		.tp_button = BUTTON_TYPE2,
403 		.tp_offset = FINGER_TYPE2,
404 		.tp_fsize = FSIZE_TYPE2,
405 		.tp_delta = 0,
406 		.iface_index = 0,
407 		.um_size = 8,
408 		.um_req_val = 0x03,
409 		.um_req_idx = 0x00,
410 		.um_switch_idx = 0,
411 		.um_switch_on = 0x01,
412 		.um_switch_off = 0x08,
413 	},
414 	[WSP_FLAG_WELLSPRING7A] = {
415 		.caps = HAS_INTEGRATED_BUTTON,
416 		.tp_type = TYPE2,
417 		.tp_button = BUTTON_TYPE2,
418 		.tp_offset = FINGER_TYPE2,
419 		.tp_fsize = FSIZE_TYPE2,
420 		.tp_delta = 0,
421 		.iface_index = 0,
422 		.um_size = 8,
423 		.um_req_val = 0x03,
424 		.um_req_idx = 0x00,
425 		.um_switch_idx = 0,
426 		.um_switch_on = 0x01,
427 		.um_switch_off = 0x08,
428 	},
429 	[WSP_FLAG_WELLSPRING8] = {
430 		.caps = HAS_INTEGRATED_BUTTON,
431 		.tp_type = TYPE3,
432 		.tp_button = BUTTON_TYPE3,
433 		.tp_offset = FINGER_TYPE3,
434 		.tp_fsize = FSIZE_TYPE3,
435 		.tp_delta = 0,
436 		.iface_index = 0,
437 		.um_size = 8,
438 		.um_req_val = 0x03,
439 		.um_req_idx = 0x00,
440 		.um_switch_idx = 0,
441 		.um_switch_on = 0x01,
442 		.um_switch_off = 0x08,
443 	},
444 	[WSP_FLAG_WELLSPRING9] = {
445 		.caps = HAS_INTEGRATED_BUTTON,
446 		.tp_type = TYPE4,
447 		.tp_button = BUTTON_TYPE4,
448 		.tp_offset = FINGER_TYPE4,
449 		.tp_fsize = FSIZE_TYPE4,
450 		.tp_delta = 2,
451 		.iface_index = 2,
452 		.um_size = 2,
453 		.um_req_val = 0x03,
454 		.um_req_idx = 0x02,
455 		.um_switch_idx = 1,
456 		.um_switch_on = 0x01,
457 		.um_switch_off = 0x00,
458 	},
459 };
460 #define	WSP_DEV(v,p,i) { USB_VPI(USB_VENDOR_##v, USB_PRODUCT_##v##_##p, i) }
461 
462 static const STRUCT_USB_HOST_ID wsp_devs[] = {
463 	/* MacbookAir1.1 */
464 	WSP_DEV(APPLE, WELLSPRING_ANSI, WSP_FLAG_WELLSPRING1),
465 	WSP_DEV(APPLE, WELLSPRING_ISO, WSP_FLAG_WELLSPRING1),
466 	WSP_DEV(APPLE, WELLSPRING_JIS, WSP_FLAG_WELLSPRING1),
467 
468 	/* MacbookProPenryn, aka wellspring2 */
469 	WSP_DEV(APPLE, WELLSPRING2_ANSI, WSP_FLAG_WELLSPRING2),
470 	WSP_DEV(APPLE, WELLSPRING2_ISO, WSP_FLAG_WELLSPRING2),
471 	WSP_DEV(APPLE, WELLSPRING2_JIS, WSP_FLAG_WELLSPRING2),
472 
473 	/* Macbook5,1 (unibody), aka wellspring3 */
474 	WSP_DEV(APPLE, WELLSPRING3_ANSI, WSP_FLAG_WELLSPRING3),
475 	WSP_DEV(APPLE, WELLSPRING3_ISO, WSP_FLAG_WELLSPRING3),
476 	WSP_DEV(APPLE, WELLSPRING3_JIS, WSP_FLAG_WELLSPRING3),
477 
478 	/* MacbookAir3,2 (unibody), aka wellspring4 */
479 	WSP_DEV(APPLE, WELLSPRING4_ANSI, WSP_FLAG_WELLSPRING4),
480 	WSP_DEV(APPLE, WELLSPRING4_ISO, WSP_FLAG_WELLSPRING4),
481 	WSP_DEV(APPLE, WELLSPRING4_JIS, WSP_FLAG_WELLSPRING4),
482 
483 	/* MacbookAir3,1 (unibody), aka wellspring4 */
484 	WSP_DEV(APPLE, WELLSPRING4A_ANSI, WSP_FLAG_WELLSPRING4A),
485 	WSP_DEV(APPLE, WELLSPRING4A_ISO, WSP_FLAG_WELLSPRING4A),
486 	WSP_DEV(APPLE, WELLSPRING4A_JIS, WSP_FLAG_WELLSPRING4A),
487 
488 	/* Macbook8 (unibody, March 2011) */
489 	WSP_DEV(APPLE, WELLSPRING5_ANSI, WSP_FLAG_WELLSPRING5),
490 	WSP_DEV(APPLE, WELLSPRING5_ISO, WSP_FLAG_WELLSPRING5),
491 	WSP_DEV(APPLE, WELLSPRING5_JIS, WSP_FLAG_WELLSPRING5),
492 
493 	/* MacbookAir4,1 (unibody, July 2011) */
494 	WSP_DEV(APPLE, WELLSPRING6A_ANSI, WSP_FLAG_WELLSPRING6A),
495 	WSP_DEV(APPLE, WELLSPRING6A_ISO, WSP_FLAG_WELLSPRING6A),
496 	WSP_DEV(APPLE, WELLSPRING6A_JIS, WSP_FLAG_WELLSPRING6A),
497 
498 	/* MacbookAir4,2 (unibody, July 2011) */
499 	WSP_DEV(APPLE, WELLSPRING6_ANSI, WSP_FLAG_WELLSPRING6),
500 	WSP_DEV(APPLE, WELLSPRING6_ISO, WSP_FLAG_WELLSPRING6),
501 	WSP_DEV(APPLE, WELLSPRING6_JIS, WSP_FLAG_WELLSPRING6),
502 
503 	/* Macbook8,2 (unibody) */
504 	WSP_DEV(APPLE, WELLSPRING5A_ANSI, WSP_FLAG_WELLSPRING5A),
505 	WSP_DEV(APPLE, WELLSPRING5A_ISO, WSP_FLAG_WELLSPRING5A),
506 	WSP_DEV(APPLE, WELLSPRING5A_JIS, WSP_FLAG_WELLSPRING5A),
507 
508 	/* MacbookPro10,1 (unibody, June 2012) */
509 	/* MacbookPro11,1-3 (unibody, June 2013) */
510 	WSP_DEV(APPLE, WELLSPRING7_ANSI, WSP_FLAG_WELLSPRING7),
511 	WSP_DEV(APPLE, WELLSPRING7_ISO, WSP_FLAG_WELLSPRING7),
512 	WSP_DEV(APPLE, WELLSPRING7_JIS, WSP_FLAG_WELLSPRING7),
513 
514 	/* MacbookPro10,2 (unibody, October 2012) */
515 	WSP_DEV(APPLE, WELLSPRING7A_ANSI, WSP_FLAG_WELLSPRING7A),
516 	WSP_DEV(APPLE, WELLSPRING7A_ISO, WSP_FLAG_WELLSPRING7A),
517 	WSP_DEV(APPLE, WELLSPRING7A_JIS, WSP_FLAG_WELLSPRING7A),
518 
519 	/* MacbookAir6,2 (unibody, June 2013) */
520 	WSP_DEV(APPLE, WELLSPRING8_ANSI, WSP_FLAG_WELLSPRING8),
521 	WSP_DEV(APPLE, WELLSPRING8_ISO, WSP_FLAG_WELLSPRING8),
522 	WSP_DEV(APPLE, WELLSPRING8_JIS, WSP_FLAG_WELLSPRING8),
523 
524 	/* MacbookPro12,1 MacbookPro11,4 */
525 	WSP_DEV(APPLE, WELLSPRING9_ANSI, WSP_FLAG_WELLSPRING9),
526 	WSP_DEV(APPLE, WELLSPRING9_ISO, WSP_FLAG_WELLSPRING9),
527 	WSP_DEV(APPLE, WELLSPRING9_JIS, WSP_FLAG_WELLSPRING9),
528 };
529 
530 #define	WSP_FIFO_BUF_SIZE	 8	/* bytes */
531 #define	WSP_FIFO_QUEUE_MAXLEN	50	/* units */
532 
533 enum {
534 	WSP_INTR_DT,
535 	WSP_N_TRANSFER,
536 };
537 
538 struct wsp_softc {
539 	struct usb_device *sc_usb_device;
540 	struct mtx sc_mutex;		/* for synchronization */
541 	struct usb_xfer *sc_xfer[WSP_N_TRANSFER];
542 	struct usb_fifo_sc sc_fifo;
543 
544 	const struct wsp_dev_params *sc_params;	/* device configuration */
545 
546 	mousehw_t sc_hw;
547 	mousemode_t sc_mode;
548 	u_int	sc_pollrate;
549 	mousestatus_t sc_status;
550 	u_int	sc_state;
551 #define	WSP_ENABLED	       0x01
552 
553 	struct tp_finger *index[MAX_FINGERS];	/* finger index data */
554 	int16_t	pos_x[MAX_FINGERS];	/* position array */
555 	int16_t	pos_y[MAX_FINGERS];	/* position array */
556 	u_int	sc_touch;		/* touch status */
557 #define	WSP_UNTOUCH		0x00
558 #define	WSP_FIRST_TOUCH		0x01
559 #define	WSP_SECOND_TOUCH	0x02
560 #define	WSP_TOUCHING		0x04
561 	int16_t	pre_pos_x;		/* previous position array */
562 	int16_t	pre_pos_y;		/* previous position array */
563 	int	dx_sum;			/* x axis cumulative movement */
564 	int	dy_sum;			/* y axis cumulative movement */
565 	int	dz_sum;			/* z axis cumulative movement */
566 	int	dz_count;
567 #define	WSP_DZ_MAX_COUNT	32
568 	int	dt_sum;			/* T-axis cumulative movement */
569 	int	rdx;			/* x axis remainder of divide by scale_factor */
570 	int	rdy;			/* y axis remainder of divide by scale_factor */
571 	int	rdz;			/* z axis remainder of divide by scale_factor */
572 	int	tp_datalen;
573 	uint8_t o_ntouch;		/* old touch finger status */
574 	uint8_t	finger;			/* 0 or 1 *, check which finger moving */
575 	uint16_t intr_count;
576 #define	WSP_TAP_THRESHOLD	3
577 #define	WSP_TAP_MAX_COUNT	20
578 	int	distance;		/* the distance of 2 fingers */
579 #define	MAX_DISTANCE		2500	/* the max allowed distance */
580 	uint8_t	ibtn;			/* button status in tapping */
581 	uint8_t	ntaps;			/* finger status in tapping */
582 	uint8_t	scr_mode;		/* scroll status in movement */
583 #define	WSP_SCR_NONE		0
584 #define	WSP_SCR_VER		1
585 #define	WSP_SCR_HOR		2
586 	uint8_t tp_data[WSP_BUFFER_MAX] __aligned(4);		/* trackpad transferred data */
587 };
588 
589 /*
590  * function prototypes
591  */
592 static usb_fifo_cmd_t wsp_start_read;
593 static usb_fifo_cmd_t wsp_stop_read;
594 static usb_fifo_open_t wsp_open;
595 static usb_fifo_close_t wsp_close;
596 static usb_fifo_ioctl_t wsp_ioctl;
597 
598 static struct usb_fifo_methods wsp_fifo_methods = {
599 	.f_open = &wsp_open,
600 	.f_close = &wsp_close,
601 	.f_ioctl = &wsp_ioctl,
602 	.f_start_read = &wsp_start_read,
603 	.f_stop_read = &wsp_stop_read,
604 	.basename[0] = WSP_DRIVER_NAME,
605 };
606 
607 /* device initialization and shutdown */
608 static int wsp_enable(struct wsp_softc *sc);
609 static void wsp_disable(struct wsp_softc *sc);
610 
611 /* updating fifo */
612 static void wsp_reset_buf(struct wsp_softc *sc);
613 static void wsp_add_to_queue(struct wsp_softc *, int, int, int, uint32_t);
614 
615 /* Device methods. */
616 static device_probe_t wsp_probe;
617 static device_attach_t wsp_attach;
618 static device_detach_t wsp_detach;
619 static usb_callback_t wsp_intr_callback;
620 
621 static const struct usb_config wsp_config[WSP_N_TRANSFER] = {
622 	[WSP_INTR_DT] = {
623 		.type = UE_INTERRUPT,
624 		.endpoint = UE_ADDR_ANY,
625 		.direction = UE_DIR_IN,
626 		.flags = {
627 			.pipe_bof = 0,
628 			.short_xfer_ok = 1,
629 		},
630 		.bufsize = WSP_BUFFER_MAX,
631 		.callback = &wsp_intr_callback,
632 	},
633 };
634 
635 static usb_error_t
636 wsp_set_device_mode(struct wsp_softc *sc, uint8_t on)
637 {
638 	const struct wsp_dev_params *params = sc->sc_params;
639 	uint8_t	mode_bytes[8];
640 	usb_error_t err;
641 
642 	/* Type 3 does not require a mode switch */
643 	if (params->tp_type == TYPE3)
644 		return 0;
645 
646 	err = usbd_req_get_report(sc->sc_usb_device, NULL,
647 	    mode_bytes, params->um_size, params->iface_index,
648 	    params->um_req_val, params->um_req_idx);
649 
650 	if (err != USB_ERR_NORMAL_COMPLETION) {
651 		DPRINTF("Failed to read device mode (%d)\n", err);
652 		return (err);
653 	}
654 
655 	/*
656 	 * XXX Need to wait at least 250ms for hardware to get
657 	 * ready. The device mode handling appears to be handled
658 	 * asynchronously and we should not issue these commands too
659 	 * quickly.
660 	 */
661 	pause("WHW", hz / 4);
662 
663 	mode_bytes[params->um_switch_idx] =
664 	    on ? params->um_switch_on : params->um_switch_off;
665 
666 	return (usbd_req_set_report(sc->sc_usb_device, NULL,
667 	    mode_bytes, params->um_size, params->iface_index,
668 	    params->um_req_val, params->um_req_idx));
669 }
670 
671 static int
672 wsp_enable(struct wsp_softc *sc)
673 {
674 	/* reset status */
675 	memset(&sc->sc_status, 0, sizeof(sc->sc_status));
676 	sc->sc_state |= WSP_ENABLED;
677 
678 	DPRINTFN(WSP_LLEVEL_INFO, "enabled wsp\n");
679 	return (0);
680 }
681 
682 static void
683 wsp_disable(struct wsp_softc *sc)
684 {
685 	sc->sc_state &= ~WSP_ENABLED;
686 	DPRINTFN(WSP_LLEVEL_INFO, "disabled wsp\n");
687 }
688 
689 static int
690 wsp_probe(device_t self)
691 {
692 	struct usb_attach_arg *uaa = device_get_ivars(self);
693 	struct usb_interface_descriptor *id;
694 	struct usb_interface *iface;
695 	uint8_t i;
696 
697 	if (uaa->usb_mode != USB_MODE_HOST)
698 		return (ENXIO);
699 
700 	/* figure out first interface matching */
701 	for (i = 1;; i++) {
702 		iface = usbd_get_iface(uaa->device, i);
703 		if (iface == NULL || i == 3)
704 			return (ENXIO);
705 		id = iface->idesc;
706 		if ((id == NULL) ||
707 		    (id->bInterfaceClass != UICLASS_HID) ||
708 		    (id->bInterfaceProtocol != 0 &&
709 		    id->bInterfaceProtocol != UIPROTO_MOUSE))
710 			continue;
711 		break;
712 	}
713 	/* check if we are attaching to the first match */
714 	if (uaa->info.bIfaceIndex != i)
715 		return (ENXIO);
716 	return (usbd_lookup_id_by_uaa(wsp_devs, sizeof(wsp_devs), uaa));
717 }
718 
719 static int
720 wsp_attach(device_t dev)
721 {
722 	struct wsp_softc *sc = device_get_softc(dev);
723 	struct usb_attach_arg *uaa = device_get_ivars(dev);
724 	usb_error_t err;
725 	void *d_ptr = NULL;
726 	uint16_t d_len;
727 
728 	DPRINTFN(WSP_LLEVEL_INFO, "sc=%p\n", sc);
729 
730 	/* Get HID descriptor */
731 	err = usbd_req_get_hid_desc(uaa->device, NULL, &d_ptr,
732 	    &d_len, M_TEMP, uaa->info.bIfaceIndex);
733 
734 	if (err == USB_ERR_NORMAL_COMPLETION) {
735 		/* Get HID report descriptor length */
736 		sc->tp_datalen = hid_report_size(d_ptr, d_len, hid_input, NULL);
737 		free(d_ptr, M_TEMP);
738 
739 		if (sc->tp_datalen <= 0 || sc->tp_datalen > WSP_BUFFER_MAX) {
740 			DPRINTF("Invalid datalength or too big "
741 			    "datalength: %d\n", sc->tp_datalen);
742 			return (ENXIO);
743 		}
744 	} else {
745 		return (ENXIO);
746 	}
747 
748 	sc->sc_usb_device = uaa->device;
749 
750 	/* get device specific configuration */
751 	sc->sc_params = wsp_dev_params + USB_GET_DRIVER_INFO(uaa);
752 
753 	/*
754 	 * By default the touchpad behaves like a HID device, sending
755 	 * packets with reportID = 8. Such reports contain only
756 	 * limited information. They encode movement deltas and button
757 	 * events, but do not include data from the pressure
758 	 * sensors. The device input mode can be switched from HID
759 	 * reports to raw sensor data using vendor-specific USB
760 	 * control commands:
761 	 */
762 
763 	/*
764 	 * During re-enumeration of the device we need to force the
765 	 * device back into HID mode before switching it to RAW
766 	 * mode. Else the device does not work like expected.
767 	 */
768 	err = wsp_set_device_mode(sc, 0);
769 	if (err != USB_ERR_NORMAL_COMPLETION) {
770 		DPRINTF("Failed to set mode to HID MODE (%d)\n", err);
771 		return (ENXIO);
772 	}
773 
774 	err = wsp_set_device_mode(sc, 1);
775 	if (err != USB_ERR_NORMAL_COMPLETION) {
776 		DPRINTF("failed to set mode to RAW MODE (%d)\n", err);
777 		return (ENXIO);
778 	}
779 
780 	mtx_init(&sc->sc_mutex, "wspmtx", NULL, MTX_DEF | MTX_RECURSE);
781 
782 	err = usbd_transfer_setup(uaa->device,
783 	    &uaa->info.bIfaceIndex, sc->sc_xfer, wsp_config,
784 	    WSP_N_TRANSFER, sc, &sc->sc_mutex);
785 	if (err) {
786 		DPRINTF("error=%s\n", usbd_errstr(err));
787 		goto detach;
788 	}
789 	if (usb_fifo_attach(sc->sc_usb_device, sc, &sc->sc_mutex,
790 	    &wsp_fifo_methods, &sc->sc_fifo,
791 	    device_get_unit(dev), -1, uaa->info.bIfaceIndex,
792 	    UID_ROOT, GID_OPERATOR, 0644)) {
793 		goto detach;
794 	}
795 	device_set_usb_desc(dev);
796 
797 	sc->sc_hw.buttons = 3;
798 	sc->sc_hw.iftype = MOUSE_IF_USB;
799 	sc->sc_hw.type = MOUSE_PAD;
800 	sc->sc_hw.model = MOUSE_MODEL_GENERIC;
801 	sc->sc_mode.protocol = MOUSE_PROTO_MSC;
802 	sc->sc_mode.rate = -1;
803 	sc->sc_mode.resolution = MOUSE_RES_UNKNOWN;
804 	sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
805 	sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
806 	sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
807 
808 	sc->sc_touch = WSP_UNTOUCH;
809 	sc->scr_mode = WSP_SCR_NONE;
810 
811 	return (0);
812 
813 detach:
814 	wsp_detach(dev);
815 	return (ENOMEM);
816 }
817 
818 static int
819 wsp_detach(device_t dev)
820 {
821 	struct wsp_softc *sc = device_get_softc(dev);
822 
823 	(void) wsp_set_device_mode(sc, 0);
824 
825 	mtx_lock(&sc->sc_mutex);
826 	if (sc->sc_state & WSP_ENABLED)
827 		wsp_disable(sc);
828 	mtx_unlock(&sc->sc_mutex);
829 
830 	usb_fifo_detach(&sc->sc_fifo);
831 
832 	usbd_transfer_unsetup(sc->sc_xfer, WSP_N_TRANSFER);
833 
834 	mtx_destroy(&sc->sc_mutex);
835 
836 	return (0);
837 }
838 
839 static void
840 wsp_intr_callback(struct usb_xfer *xfer, usb_error_t error)
841 {
842 	struct wsp_softc *sc = usbd_xfer_softc(xfer);
843 	const struct wsp_dev_params *params = sc->sc_params;
844 	struct usb_page_cache *pc;
845 	struct tp_finger *f;
846 	struct tp_header *h;
847 	struct wsp_tuning tun = wsp_tuning;
848 	int ntouch = 0;			/* the finger number in touch */
849 	int ibt = 0;			/* button status */
850 	int dx = 0;
851 	int dy = 0;
852 	int dz = 0;
853 	int rdx = 0;
854 	int rdy = 0;
855 	int rdz = 0;
856 	int len;
857 	int i;
858 
859 	wsp_runing_rangecheck(&tun);
860 
861 	if (sc->dz_count == 0)
862 		sc->dz_count = WSP_DZ_MAX_COUNT;
863 
864 	usbd_xfer_status(xfer, &len, NULL, NULL, NULL);
865 
866 	switch (USB_GET_STATE(xfer)) {
867 	case USB_ST_TRANSFERRED:
868 
869 		/* copy out received data */
870 		pc = usbd_xfer_get_frame(xfer, 0);
871 		usbd_copy_out(pc, 0, sc->tp_data, len);
872 
873 		if ((len < params->tp_offset + params->tp_fsize) ||
874 		    ((len - params->tp_offset) % params->tp_fsize) != 0) {
875 			DPRINTFN(WSP_LLEVEL_INFO, "Invalid length: %d, %x, %x\n",
876 			    len, sc->tp_data[0], sc->tp_data[1]);
877 			goto tr_setup;
878 		}
879 
880 		if (len < sc->tp_datalen) {
881 			/* make sure we don't process old data */
882 			memset(sc->tp_data + len, 0, sc->tp_datalen - len);
883 		}
884 
885 		h = (struct tp_header *)(sc->tp_data);
886 
887 		if (params->tp_type >= TYPE2) {
888 			ibt = sc->tp_data[params->tp_button];
889 			ntouch = sc->tp_data[params->tp_button - 1];
890 		}
891 		/* range check */
892 		if (ntouch < 0)
893 			ntouch = 0;
894 		else if (ntouch > MAX_FINGERS)
895 			ntouch = MAX_FINGERS;
896 
897 		for (i = 0; i != ntouch; i++) {
898 			f = (struct tp_finger *)(sc->tp_data + params->tp_offset + params->tp_delta + i * params->tp_fsize);
899 			/* swap endianness, if any */
900 			if (le16toh(0x1234) != 0x1234) {
901 				f->origin = le16toh((uint16_t)f->origin);
902 				f->abs_x = le16toh((uint16_t)f->abs_x);
903 				f->abs_y = le16toh((uint16_t)f->abs_y);
904 				f->rel_x = le16toh((uint16_t)f->rel_x);
905 				f->rel_y = le16toh((uint16_t)f->rel_y);
906 				f->tool_major = le16toh((uint16_t)f->tool_major);
907 				f->tool_minor = le16toh((uint16_t)f->tool_minor);
908 				f->orientation = le16toh((uint16_t)f->orientation);
909 				f->touch_major = le16toh((uint16_t)f->touch_major);
910 				f->touch_minor = le16toh((uint16_t)f->touch_minor);
911 				f->pressure = le16toh((uint16_t)f->pressure);
912 				f->multi = le16toh((uint16_t)f->multi);
913 			}
914 			DPRINTFN(WSP_LLEVEL_INFO,
915 			    "[%d]ibt=%d, taps=%d, o=%4d, ax=%5d, ay=%5d, "
916 			    "rx=%5d, ry=%5d, tlmaj=%4d, tlmin=%4d, ot=%4x, "
917 			    "tchmaj=%4d, tchmin=%4d, presure=%4d, m=%4x\n",
918 			    i, ibt, ntouch, f->origin, f->abs_x, f->abs_y,
919 			    f->rel_x, f->rel_y, f->tool_major, f->tool_minor, f->orientation,
920 			    f->touch_major, f->touch_minor, f->pressure, f->multi);
921 			sc->pos_x[i] = f->abs_x;
922 			sc->pos_y[i] = -f->abs_y;
923 			sc->index[i] = f;
924 		}
925 
926 		sc->sc_status.flags &= ~MOUSE_POSCHANGED;
927 		sc->sc_status.flags &= ~MOUSE_STDBUTTONSCHANGED;
928 		sc->sc_status.obutton = sc->sc_status.button;
929 		sc->sc_status.button = 0;
930 
931 		if (ibt != 0) {
932 			if ((params->caps & HAS_INTEGRATED_BUTTON) && ntouch == 2)
933 				sc->sc_status.button |= MOUSE_BUTTON3DOWN;
934 			else if ((params->caps & HAS_INTEGRATED_BUTTON) && ntouch == 3)
935 				sc->sc_status.button |= MOUSE_BUTTON2DOWN;
936 			else
937 				sc->sc_status.button |= MOUSE_BUTTON1DOWN;
938 			sc->ibtn = 1;
939 		}
940 		sc->intr_count++;
941 
942 		if (sc->ntaps < ntouch) {
943 			switch (ntouch) {
944 			case 1:
945 				if (sc->index[0]->touch_major > tun.pressure_tap_threshold &&
946 				    sc->index[0]->tool_major <= 1200)
947 					sc->ntaps = 1;
948 				break;
949 			case 2:
950 				if (sc->index[0]->touch_major > tun.pressure_tap_threshold-30 &&
951 				    sc->index[1]->touch_major > tun.pressure_tap_threshold-30)
952 					sc->ntaps = 2;
953 				break;
954 			case 3:
955 				if (sc->index[0]->touch_major > tun.pressure_tap_threshold-40 &&
956 				    sc->index[1]->touch_major > tun.pressure_tap_threshold-40 &&
957 				    sc->index[2]->touch_major > tun.pressure_tap_threshold-40)
958 					sc->ntaps = 3;
959 				break;
960 			default:
961 				break;
962 			}
963 		}
964 		if (ntouch == 2) {
965 			sc->distance = max(sc->distance, max(
966 			    abs(sc->pos_x[0] - sc->pos_x[1]),
967 			    abs(sc->pos_y[0] - sc->pos_y[1])));
968 		}
969 		if (sc->index[0]->touch_major < tun.pressure_untouch_threshold &&
970 		    sc->sc_status.button == 0) {
971 			sc->sc_touch = WSP_UNTOUCH;
972 			if (sc->intr_count < WSP_TAP_MAX_COUNT &&
973 			    sc->intr_count > WSP_TAP_THRESHOLD &&
974 			    sc->ntaps && sc->ibtn == 0) {
975 				/*
976 				 * Add a pair of events (button-down and
977 				 * button-up).
978 				 */
979 				switch (sc->ntaps) {
980 				case 1:
981 					if (!(params->caps & HAS_INTEGRATED_BUTTON) || tun.enable_single_tap_clicks) {
982 						wsp_add_to_queue(sc, 0, 0, 0, MOUSE_BUTTON1DOWN);
983 						DPRINTFN(WSP_LLEVEL_INFO, "LEFT CLICK!\n");
984 					}
985 					break;
986 				case 2:
987 					DPRINTFN(WSP_LLEVEL_INFO, "sum_x=%5d, sum_y=%5d\n",
988 					    sc->dx_sum, sc->dy_sum);
989 					if (sc->distance < MAX_DISTANCE && abs(sc->dx_sum) < 5 &&
990 					    abs(sc->dy_sum) < 5) {
991 						wsp_add_to_queue(sc, 0, 0, 0, MOUSE_BUTTON3DOWN);
992 						DPRINTFN(WSP_LLEVEL_INFO, "RIGHT CLICK!\n");
993 					}
994 					break;
995 				case 3:
996 					wsp_add_to_queue(sc, 0, 0, 0, MOUSE_BUTTON2DOWN);
997 					break;
998 				default:
999 					/* we don't handle taps of more than three fingers */
1000 					break;
1001 				}
1002 				wsp_add_to_queue(sc, 0, 0, 0, 0);	/* button release */
1003 			}
1004 			if ((sc->dt_sum / tun.scr_hor_threshold) != 0 &&
1005 			    sc->ntaps == 2 && sc->scr_mode == WSP_SCR_HOR) {
1006 				/*
1007 				 * translate T-axis into button presses
1008 				 * until further
1009 				 */
1010 				if (sc->dt_sum > 0)
1011 					wsp_add_to_queue(sc, 0, 0, 0, 1UL << 3);
1012 				else if (sc->dt_sum < 0)
1013 					wsp_add_to_queue(sc, 0, 0, 0, 1UL << 4);
1014 			}
1015 			sc->dz_count = WSP_DZ_MAX_COUNT;
1016 			sc->dz_sum = 0;
1017 			sc->intr_count = 0;
1018 			sc->ibtn = 0;
1019 			sc->ntaps = 0;
1020 			sc->finger = 0;
1021 			sc->distance = 0;
1022 			sc->dt_sum = 0;
1023 			sc->dx_sum = 0;
1024 			sc->dy_sum = 0;
1025 			sc->rdx = 0;
1026 			sc->rdy = 0;
1027 			sc->rdz = 0;
1028 			sc->scr_mode = WSP_SCR_NONE;
1029 		} else if (sc->index[0]->touch_major >= tun.pressure_touch_threshold &&
1030 		    sc->sc_touch == WSP_UNTOUCH) {	/* ignore first touch */
1031 			sc->sc_touch = WSP_FIRST_TOUCH;
1032 		} else if (sc->index[0]->touch_major >= tun.pressure_touch_threshold &&
1033 		    sc->sc_touch == WSP_FIRST_TOUCH) {	/* ignore second touch */
1034 			sc->sc_touch = WSP_SECOND_TOUCH;
1035 			DPRINTFN(WSP_LLEVEL_INFO, "Fist pre_x=%5d, pre_y=%5d\n",
1036 			    sc->pre_pos_x, sc->pre_pos_y);
1037 		} else {
1038 			if (sc->sc_touch == WSP_SECOND_TOUCH)
1039 				sc->sc_touch = WSP_TOUCHING;
1040 
1041 			if (ntouch != 0 &&
1042 			    sc->index[0]->touch_major >= tun.pressure_touch_threshold) {
1043 				dx = sc->pos_x[0] - sc->pre_pos_x;
1044 				dy = sc->pos_y[0] - sc->pre_pos_y;
1045 
1046 				/* Ignore movement during button is releasing */
1047 				if (sc->ibtn != 0 && sc->sc_status.button == 0)
1048 					dx = dy = 0;
1049 
1050 				/* Ignore movement if ntouch changed */
1051 				if (sc->o_ntouch != ntouch)
1052 					dx = dy = 0;
1053 
1054 				/* Ignore unexpeted movement when typing */
1055 				if (ntouch == 1 && sc->index[0]->tool_major > 1200)
1056 					dx = dy = 0;
1057 
1058 				if (sc->ibtn != 0 && ntouch == 1 &&
1059 				    sc->intr_count < WSP_TAP_MAX_COUNT &&
1060 				    abs(sc->dx_sum) < 1 && abs(sc->dy_sum) < 1 )
1061 					dx = dy = 0;
1062 
1063 				if (ntouch == 2 && sc->sc_status.button != 0) {
1064 					dx = sc->pos_x[sc->finger] - sc->pre_pos_x;
1065 					dy = sc->pos_y[sc->finger] - sc->pre_pos_y;
1066 
1067 					/*
1068 					 * Ignore movement of switch finger or
1069 					 * movement from ibt=0 to ibt=1
1070 					 */
1071 					if (sc->index[0]->origin == 0 || sc->index[1]->origin == 0 ||
1072 					    sc->sc_status.obutton != sc->sc_status.button) {
1073 						dx = dy = 0;
1074 						sc->finger = 0;
1075 					}
1076 					if ((abs(sc->index[0]->rel_x) + abs(sc->index[0]->rel_y)) <
1077 					    (abs(sc->index[1]->rel_x) + abs(sc->index[1]->rel_y)) &&
1078 					    sc->finger == 0) {
1079 						sc->sc_touch = WSP_SECOND_TOUCH;
1080 						dx = dy = 0;
1081 						sc->finger = 1;
1082 					}
1083 					if ((abs(sc->index[0]->rel_x) + abs(sc->index[0]->rel_y)) >=
1084 					    (abs(sc->index[1]->rel_x) + abs(sc->index[1]->rel_y)) &&
1085 					    sc->finger == 1) {
1086 						sc->sc_touch = WSP_SECOND_TOUCH;
1087 						dx = dy = 0;
1088 						sc->finger = 0;
1089 					}
1090 					DPRINTFN(WSP_LLEVEL_INFO, "dx=%5d, dy=%5d, mov=%5d\n",
1091 					    dx, dy, sc->finger);
1092 				}
1093 				if (sc->dz_count--) {
1094 					rdz = (dy + sc->rdz) % tun.scale_factor;
1095 					sc->dz_sum -= (dy + sc->rdz) / tun.scale_factor;
1096 					sc->rdz = rdz;
1097 				}
1098 				if ((sc->dz_sum / tun.z_factor) != 0)
1099 					sc->dz_count = 0;
1100 			}
1101 			rdx = (dx + sc->rdx) % tun.scale_factor;
1102 			dx = (dx + sc->rdx) / tun.scale_factor;
1103 			sc->rdx = rdx;
1104 
1105 			rdy = (dy + sc->rdy) % tun.scale_factor;
1106 			dy = (dy + sc->rdy) / tun.scale_factor;
1107 			sc->rdy = rdy;
1108 
1109 			sc->dx_sum += dx;
1110 			sc->dy_sum += dy;
1111 
1112 			if (ntouch == 2 && sc->sc_status.button == 0) {
1113 				if (sc->scr_mode == WSP_SCR_NONE &&
1114 				    abs(sc->dx_sum) + abs(sc->dy_sum) > tun.scr_hor_threshold)
1115 					sc->scr_mode = abs(sc->dx_sum) >
1116 					    abs(sc->dy_sum) * 2 ? WSP_SCR_HOR : WSP_SCR_VER;
1117 				DPRINTFN(WSP_LLEVEL_INFO, "scr_mode=%5d, count=%d, dx_sum=%d, dy_sum=%d\n",
1118 				    sc->scr_mode, sc->intr_count, sc->dx_sum, sc->dy_sum);
1119 				if (sc->scr_mode == WSP_SCR_HOR)
1120 					sc->dt_sum += dx;
1121 				else
1122 					sc->dt_sum = 0;
1123 
1124 				dx = dy = 0;
1125 				if (sc->dz_count == 0)
1126 					dz = sc->dz_sum / tun.z_factor;
1127 				if (sc->scr_mode == WSP_SCR_HOR ||
1128 				    abs(sc->pos_x[0] - sc->pos_x[1]) > MAX_DISTANCE ||
1129 				    abs(sc->pos_y[0] - sc->pos_y[1]) > MAX_DISTANCE)
1130 					dz = 0;
1131 			}
1132 			if (ntouch == 3)
1133 				dx = dy = dz = 0;
1134 			if (sc->intr_count < WSP_TAP_MAX_COUNT &&
1135 			    abs(dx) < 3 && abs(dy) < 3 && abs(dz) < 3)
1136 				dx = dy = dz = 0;
1137 			else
1138 				sc->intr_count = WSP_TAP_MAX_COUNT;
1139 			if (dx || dy || dz)
1140 				sc->sc_status.flags |= MOUSE_POSCHANGED;
1141 			DPRINTFN(WSP_LLEVEL_INFO, "dx=%5d, dy=%5d, dz=%5d, sc_touch=%x, btn=%x\n",
1142 			    dx, dy, dz, sc->sc_touch, sc->sc_status.button);
1143 			sc->sc_status.dx += dx;
1144 			sc->sc_status.dy += dy;
1145 			sc->sc_status.dz += dz;
1146 
1147 			wsp_add_to_queue(sc, dx, -dy, dz, sc->sc_status.button);
1148 			if (sc->dz_count == 0) {
1149 				sc->dz_sum = 0;
1150 				sc->rdz = 0;
1151 			}
1152 		}
1153 		sc->pre_pos_x = sc->pos_x[0];
1154 		sc->pre_pos_y = sc->pos_y[0];
1155 
1156 		if (ntouch == 2 && sc->sc_status.button != 0) {
1157 			sc->pre_pos_x = sc->pos_x[sc->finger];
1158 			sc->pre_pos_y = sc->pos_y[sc->finger];
1159 		}
1160 		sc->o_ntouch = ntouch;
1161 
1162 	case USB_ST_SETUP:
1163 tr_setup:
1164 		/* check if we can put more data into the FIFO */
1165 		if (usb_fifo_put_bytes_max(
1166 		    sc->sc_fifo.fp[USB_FIFO_RX]) != 0) {
1167 			usbd_xfer_set_frame_len(xfer, 0,
1168 			    sc->tp_datalen);
1169 			usbd_transfer_submit(xfer);
1170 		}
1171 		break;
1172 
1173 	default:			/* Error */
1174 		if (error != USB_ERR_CANCELLED) {
1175 			/* try clear stall first */
1176 			usbd_xfer_set_stall(xfer);
1177 			goto tr_setup;
1178 		}
1179 		break;
1180 	}
1181 }
1182 
1183 static void
1184 wsp_add_to_queue(struct wsp_softc *sc, int dx, int dy, int dz,
1185     uint32_t buttons_in)
1186 {
1187 	uint32_t buttons_out;
1188 	uint8_t buf[8];
1189 
1190 	dx = imin(dx, 254);
1191 	dx = imax(dx, -256);
1192 	dy = imin(dy, 254);
1193 	dy = imax(dy, -256);
1194 	dz = imin(dz, 126);
1195 	dz = imax(dz, -128);
1196 
1197 	buttons_out = MOUSE_MSC_BUTTONS;
1198 	if (buttons_in & MOUSE_BUTTON1DOWN)
1199 		buttons_out &= ~MOUSE_MSC_BUTTON1UP;
1200 	else if (buttons_in & MOUSE_BUTTON2DOWN)
1201 		buttons_out &= ~MOUSE_MSC_BUTTON2UP;
1202 	else if (buttons_in & MOUSE_BUTTON3DOWN)
1203 		buttons_out &= ~MOUSE_MSC_BUTTON3UP;
1204 
1205 	/* Encode the mouse data in standard format; refer to mouse(4) */
1206 	buf[0] = sc->sc_mode.syncmask[1];
1207 	buf[0] |= buttons_out;
1208 	buf[1] = dx >> 1;
1209 	buf[2] = dy >> 1;
1210 	buf[3] = dx - (dx >> 1);
1211 	buf[4] = dy - (dy >> 1);
1212 	/* Encode extra bytes for level 1 */
1213 	if (sc->sc_mode.level == 1) {
1214 		buf[5] = dz >> 1;	/* dz / 2 */
1215 		buf[6] = dz - (dz >> 1);/* dz - (dz / 2) */
1216 		buf[7] = (((~buttons_in) >> 3) & MOUSE_SYS_EXTBUTTONS);
1217 	}
1218 	usb_fifo_put_data_linear(sc->sc_fifo.fp[USB_FIFO_RX], buf,
1219 	    sc->sc_mode.packetsize, 1);
1220 }
1221 
1222 static void
1223 wsp_reset_buf(struct wsp_softc *sc)
1224 {
1225 	/* reset read queue */
1226 	usb_fifo_reset(sc->sc_fifo.fp[USB_FIFO_RX]);
1227 }
1228 
1229 static void
1230 wsp_start_read(struct usb_fifo *fifo)
1231 {
1232 	struct wsp_softc *sc = usb_fifo_softc(fifo);
1233 	int rate;
1234 
1235 	/* Check if we should override the default polling interval */
1236 	rate = sc->sc_pollrate;
1237 	/* Range check rate */
1238 	if (rate > 1000)
1239 		rate = 1000;
1240 	/* Check for set rate */
1241 	if ((rate > 0) && (sc->sc_xfer[WSP_INTR_DT] != NULL)) {
1242 		/* Stop current transfer, if any */
1243 		usbd_transfer_stop(sc->sc_xfer[WSP_INTR_DT]);
1244 		/* Set new interval */
1245 		usbd_xfer_set_interval(sc->sc_xfer[WSP_INTR_DT], 1000 / rate);
1246 		/* Only set pollrate once */
1247 		sc->sc_pollrate = 0;
1248 	}
1249 	usbd_transfer_start(sc->sc_xfer[WSP_INTR_DT]);
1250 }
1251 
1252 static void
1253 wsp_stop_read(struct usb_fifo *fifo)
1254 {
1255 	struct wsp_softc *sc = usb_fifo_softc(fifo);
1256 
1257 	usbd_transfer_stop(sc->sc_xfer[WSP_INTR_DT]);
1258 }
1259 
1260 static int
1261 wsp_open(struct usb_fifo *fifo, int fflags)
1262 {
1263 	DPRINTFN(WSP_LLEVEL_INFO, "\n");
1264 
1265 	if (fflags & FREAD) {
1266 		struct wsp_softc *sc = usb_fifo_softc(fifo);
1267 		int rc;
1268 
1269 		if (sc->sc_state & WSP_ENABLED)
1270 			return (EBUSY);
1271 
1272 		if (usb_fifo_alloc_buffer(fifo,
1273 		    WSP_FIFO_BUF_SIZE, WSP_FIFO_QUEUE_MAXLEN)) {
1274 			return (ENOMEM);
1275 		}
1276 		rc = wsp_enable(sc);
1277 		if (rc != 0) {
1278 			usb_fifo_free_buffer(fifo);
1279 			return (rc);
1280 		}
1281 	}
1282 	return (0);
1283 }
1284 
1285 static void
1286 wsp_close(struct usb_fifo *fifo, int fflags)
1287 {
1288 	if (fflags & FREAD) {
1289 		struct wsp_softc *sc = usb_fifo_softc(fifo);
1290 
1291 		wsp_disable(sc);
1292 		usb_fifo_free_buffer(fifo);
1293 	}
1294 }
1295 
1296 int
1297 wsp_ioctl(struct usb_fifo *fifo, u_long cmd, void *addr, int fflags)
1298 {
1299 	struct wsp_softc *sc = usb_fifo_softc(fifo);
1300 	mousemode_t mode;
1301 	int error = 0;
1302 
1303 	mtx_lock(&sc->sc_mutex);
1304 
1305 	switch (cmd) {
1306 	case MOUSE_GETHWINFO:
1307 		*(mousehw_t *)addr = sc->sc_hw;
1308 		break;
1309 	case MOUSE_GETMODE:
1310 		*(mousemode_t *)addr = sc->sc_mode;
1311 		break;
1312 	case MOUSE_SETMODE:
1313 		mode = *(mousemode_t *)addr;
1314 
1315 		if (mode.level == -1)
1316 			/* Don't change the current setting */
1317 			;
1318 		else if ((mode.level < 0) || (mode.level > 1)) {
1319 			error = EINVAL;
1320 			goto done;
1321 		}
1322 		sc->sc_mode.level = mode.level;
1323 		sc->sc_pollrate = mode.rate;
1324 		sc->sc_hw.buttons = 3;
1325 
1326 		if (sc->sc_mode.level == 0) {
1327 			sc->sc_mode.protocol = MOUSE_PROTO_MSC;
1328 			sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
1329 			sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
1330 			sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
1331 		} else if (sc->sc_mode.level == 1) {
1332 			sc->sc_mode.protocol = MOUSE_PROTO_SYSMOUSE;
1333 			sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE;
1334 			sc->sc_mode.syncmask[0] = MOUSE_SYS_SYNCMASK;
1335 			sc->sc_mode.syncmask[1] = MOUSE_SYS_SYNC;
1336 		}
1337 		wsp_reset_buf(sc);
1338 		break;
1339 	case MOUSE_GETLEVEL:
1340 		*(int *)addr = sc->sc_mode.level;
1341 		break;
1342 	case MOUSE_SETLEVEL:
1343 		if (*(int *)addr < 0 || *(int *)addr > 1) {
1344 			error = EINVAL;
1345 			goto done;
1346 		}
1347 		sc->sc_mode.level = *(int *)addr;
1348 		sc->sc_hw.buttons = 3;
1349 
1350 		if (sc->sc_mode.level == 0) {
1351 			sc->sc_mode.protocol = MOUSE_PROTO_MSC;
1352 			sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
1353 			sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
1354 			sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
1355 		} else if (sc->sc_mode.level == 1) {
1356 			sc->sc_mode.protocol = MOUSE_PROTO_SYSMOUSE;
1357 			sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE;
1358 			sc->sc_mode.syncmask[0] = MOUSE_SYS_SYNCMASK;
1359 			sc->sc_mode.syncmask[1] = MOUSE_SYS_SYNC;
1360 		}
1361 		wsp_reset_buf(sc);
1362 		break;
1363 	case MOUSE_GETSTATUS:{
1364 			mousestatus_t *status = (mousestatus_t *)addr;
1365 
1366 			*status = sc->sc_status;
1367 			sc->sc_status.obutton = sc->sc_status.button;
1368 			sc->sc_status.button = 0;
1369 			sc->sc_status.dx = 0;
1370 			sc->sc_status.dy = 0;
1371 			sc->sc_status.dz = 0;
1372 
1373 			if (status->dx || status->dy || status->dz)
1374 				status->flags |= MOUSE_POSCHANGED;
1375 			if (status->button != status->obutton)
1376 				status->flags |= MOUSE_BUTTONSCHANGED;
1377 			break;
1378 		}
1379 	default:
1380 		error = ENOTTY;
1381 	}
1382 
1383 done:
1384 	mtx_unlock(&sc->sc_mutex);
1385 	return (error);
1386 }
1387 
1388 static device_method_t wsp_methods[] = {
1389 	/* Device interface */
1390 	DEVMETHOD(device_probe, wsp_probe),
1391 	DEVMETHOD(device_attach, wsp_attach),
1392 	DEVMETHOD(device_detach, wsp_detach),
1393 	DEVMETHOD_END
1394 };
1395 
1396 static driver_t wsp_driver = {
1397 	.name = WSP_DRIVER_NAME,
1398 	.methods = wsp_methods,
1399 	.size = sizeof(struct wsp_softc)
1400 };
1401 
1402 static devclass_t wsp_devclass;
1403 
1404 DRIVER_MODULE(wsp, uhub, wsp_driver, wsp_devclass, NULL, 0);
1405 MODULE_DEPEND(wsp, usb, 1, 1, 1);
1406 MODULE_VERSION(wsp, 1);
1407 USB_PNP_HOST_INFO(wsp_devs);
1408