wsp.c revision 330897
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: stable/11/sys/dev/usb/input/wsp.c 330897 2018-03-14 03:19:51Z eadler $");
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 */
70static	SYSCTL_NODE(_hw_usb, OID_AUTO, wsp, CTLFLAG_RW, 0, "USB wsp");
71
72#ifdef USB_DEBUG
73enum wsp_log_level {
74	WSP_LLEVEL_DISABLED = 0,
75	WSP_LLEVEL_ERROR,
76	WSP_LLEVEL_DEBUG,		/* for troubleshooting */
77	WSP_LLEVEL_INFO,		/* for diagnostics */
78};
79static int wsp_debug = WSP_LLEVEL_ERROR;/* the default is to only log errors */
80
81SYSCTL_INT(_hw_usb_wsp, OID_AUTO, debug, CTLFLAG_RWTUN,
82    &wsp_debug, WSP_LLEVEL_ERROR, "WSP debug level");
83#endif					/* USB_DEBUG */
84
85static struct wsp_tuning {
86	int	scale_factor;
87	int	z_factor;
88	int	pressure_touch_threshold;
89	int	pressure_untouch_threshold;
90	int	pressure_tap_threshold;
91	int	scr_hor_threshold;
92	int	enable_single_tap_clicks;
93}
94	wsp_tuning =
95{
96	.scale_factor = 12,
97	.z_factor = 5,
98	.pressure_touch_threshold = 50,
99	.pressure_untouch_threshold = 10,
100	.pressure_tap_threshold = 120,
101	.scr_hor_threshold = 20,
102	.enable_single_tap_clicks = 1,
103};
104
105static void
106wsp_runing_rangecheck(struct wsp_tuning *ptun)
107{
108	WSP_CLAMP(ptun->scale_factor, 1, 63);
109	WSP_CLAMP(ptun->z_factor, 1, 63);
110	WSP_CLAMP(ptun->pressure_touch_threshold, 1, 255);
111	WSP_CLAMP(ptun->pressure_untouch_threshold, 1, 255);
112	WSP_CLAMP(ptun->pressure_tap_threshold, 1, 255);
113	WSP_CLAMP(ptun->scr_hor_threshold, 1, 255);
114	WSP_CLAMP(ptun->enable_single_tap_clicks, 0, 1);
115}
116
117SYSCTL_INT(_hw_usb_wsp, OID_AUTO, scale_factor, CTLFLAG_RWTUN,
118    &wsp_tuning.scale_factor, 0, "movement scale factor");
119SYSCTL_INT(_hw_usb_wsp, OID_AUTO, z_factor, CTLFLAG_RWTUN,
120    &wsp_tuning.z_factor, 0, "Z-axis scale factor");
121SYSCTL_INT(_hw_usb_wsp, OID_AUTO, pressure_touch_threshold, CTLFLAG_RWTUN,
122    &wsp_tuning.pressure_touch_threshold, 0, "touch pressure threshold");
123SYSCTL_INT(_hw_usb_wsp, OID_AUTO, pressure_untouch_threshold, CTLFLAG_RWTUN,
124    &wsp_tuning.pressure_untouch_threshold, 0, "untouch pressure threshold");
125SYSCTL_INT(_hw_usb_wsp, OID_AUTO, pressure_tap_threshold, CTLFLAG_RWTUN,
126    &wsp_tuning.pressure_tap_threshold, 0, "tap pressure threshold");
127SYSCTL_INT(_hw_usb_wsp, OID_AUTO, scr_hor_threshold, CTLFLAG_RWTUN,
128    &wsp_tuning.scr_hor_threshold, 0, "horizontal scrolling threshold");
129SYSCTL_INT(_hw_usb_wsp, OID_AUTO, enable_single_tap_clicks, CTLFLAG_RWTUN,
130    &wsp_tuning.enable_single_tap_clicks, 0, "enable single tap clicks");
131
132/*
133 * Some tables, structures, definitions and constant values for the
134 * touchpad protocol has been copied from Linux's
135 * "drivers/input/mouse/bcm5974.c" which has the following copyright
136 * holders under GPLv2. All device specific code in this driver has
137 * been written from scratch. The decoding algorithm is based on
138 * output from FreeBSD's usbdump.
139 *
140 * Copyright (C) 2008      Henrik Rydberg (rydberg@euromail.se)
141 * Copyright (C) 2008      Scott Shawcroft (scott.shawcroft@gmail.com)
142 * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
143 * Copyright (C) 2005      Johannes Berg (johannes@sipsolutions.net)
144 * Copyright (C) 2005      Stelian Pop (stelian@popies.net)
145 * Copyright (C) 2005      Frank Arnold (frank@scirocco-5v-turbo.de)
146 * Copyright (C) 2005      Peter Osterlund (petero2@telia.com)
147 * Copyright (C) 2005      Michael Hanselmann (linux-kernel@hansmi.ch)
148 * Copyright (C) 2006      Nicolas Boichat (nicolas@boichat.ch)
149 */
150
151/* button data structure */
152struct bt_data {
153	uint8_t	unknown1;		/* constant */
154	uint8_t	button;			/* left button */
155	uint8_t	rel_x;			/* relative x coordinate */
156	uint8_t	rel_y;			/* relative y coordinate */
157} __packed;
158
159/* trackpad header types */
160enum tp_type {
161	TYPE1,			/* plain trackpad */
162	TYPE2,			/* button integrated in trackpad */
163	TYPE3,			/* additional header fields since June 2013 */
164	TYPE4                   /* additional header field for pressure data */
165};
166
167/* trackpad finger data offsets, le16-aligned */
168#define	FINGER_TYPE1		(13 * 2)
169#define	FINGER_TYPE2		(15 * 2)
170#define	FINGER_TYPE3		(19 * 2)
171#define	FINGER_TYPE4		(23 * 2)
172
173/* trackpad button data offsets */
174#define	BUTTON_TYPE2		15
175#define	BUTTON_TYPE3		23
176#define	BUTTON_TYPE4		31
177
178/* list of device capability bits */
179#define	HAS_INTEGRATED_BUTTON	1
180
181/* trackpad finger data block size */
182#define FSIZE_TYPE1             (14 * 2)
183#define FSIZE_TYPE2             (14 * 2)
184#define FSIZE_TYPE3             (14 * 2)
185#define FSIZE_TYPE4             (15 * 2)
186
187/* trackpad finger header - little endian */
188struct tp_header {
189	uint8_t	flag;
190	uint8_t	sn0;
191	uint16_t wFixed0;
192	uint32_t dwSn1;
193	uint32_t dwFixed1;
194	uint16_t wLength;
195	uint8_t	nfinger;
196	uint8_t	ibt;
197	int16_t	wUnknown[6];
198	uint8_t	q1;
199	uint8_t	q2;
200} __packed;
201
202/* trackpad finger structure - little endian */
203struct tp_finger {
204	int16_t	origin;			/* zero when switching track finger */
205	int16_t	abs_x;			/* absolute x coodinate */
206	int16_t	abs_y;			/* absolute y coodinate */
207	int16_t	rel_x;			/* relative x coodinate */
208	int16_t	rel_y;			/* relative y coodinate */
209	int16_t	tool_major;		/* tool area, major axis */
210	int16_t	tool_minor;		/* tool area, minor axis */
211	int16_t	orientation;		/* 16384 when point, else 15 bit angle */
212	int16_t	touch_major;		/* touch area, major axis */
213	int16_t	touch_minor;		/* touch area, minor axis */
214	int16_t	unused[2];		/* zeros */
215	int16_t pressure;		/* pressure on forcetouch touchpad */
216	int16_t	multi;			/* one finger: varies, more fingers:
217				 	 * constant */
218} __packed;
219
220/* trackpad finger data size, empirically at least ten fingers */
221#define	MAX_FINGERS		16
222#define	SIZEOF_FINGER		sizeof(struct tp_finger)
223#define	SIZEOF_ALL_FINGERS	(MAX_FINGERS * SIZEOF_FINGER)
224
225#if (WSP_BUFFER_MAX < ((MAX_FINGERS * FSIZE_TYPE4) + FINGER_TYPE4))
226#error "WSP_BUFFER_MAX is too small"
227#endif
228
229enum {
230	WSP_FLAG_WELLSPRING1,
231	WSP_FLAG_WELLSPRING2,
232	WSP_FLAG_WELLSPRING3,
233	WSP_FLAG_WELLSPRING4,
234	WSP_FLAG_WELLSPRING4A,
235	WSP_FLAG_WELLSPRING5,
236	WSP_FLAG_WELLSPRING6A,
237	WSP_FLAG_WELLSPRING6,
238	WSP_FLAG_WELLSPRING5A,
239	WSP_FLAG_WELLSPRING7,
240	WSP_FLAG_WELLSPRING7A,
241	WSP_FLAG_WELLSPRING8,
242	WSP_FLAG_WELLSPRING9,
243	WSP_FLAG_MAX,
244};
245
246/* device-specific configuration */
247struct wsp_dev_params {
248	uint8_t	caps;			/* device capability bitmask */
249	uint8_t	tp_type;		/* type of trackpad interface */
250	uint8_t	tp_button;		/* offset to button data */
251	uint8_t	tp_offset;		/* offset to trackpad finger data */
252	uint8_t tp_fsize;		/* bytes in single finger block */
253	uint8_t tp_delta;		/* offset from header to finger struct */
254	uint8_t iface_index;
255	uint8_t um_size;		/* usb control message length */
256	uint8_t um_req_val;		/* usb control message value */
257	uint8_t um_req_idx;		/* usb control message index */
258	uint8_t um_switch_idx;		/* usb control message mode switch index */
259	uint8_t um_switch_on;		/* usb control message mode switch on */
260	uint8_t um_switch_off;		/* usb control message mode switch off */
261};
262
263static const struct wsp_dev_params wsp_dev_params[WSP_FLAG_MAX] = {
264	[WSP_FLAG_WELLSPRING1] = {
265		.caps = 0,
266		.tp_type = TYPE1,
267		.tp_button = 0,
268		.tp_offset = FINGER_TYPE1,
269		.tp_fsize = FSIZE_TYPE1,
270		.tp_delta = 0,
271		.iface_index = 0,
272		.um_size = 8,
273		.um_req_val = 0x03,
274		.um_req_idx = 0x00,
275		.um_switch_idx = 0,
276		.um_switch_on = 0x01,
277		.um_switch_off = 0x08,
278	},
279	[WSP_FLAG_WELLSPRING2] = {
280		.caps = 0,
281		.tp_type = TYPE1,
282		.tp_button = 0,
283		.tp_offset = FINGER_TYPE1,
284		.tp_fsize = FSIZE_TYPE1,
285		.tp_delta = 0,
286		.iface_index = 0,
287		.um_size = 8,
288		.um_req_val = 0x03,
289		.um_req_idx = 0x00,
290		.um_switch_idx = 0,
291		.um_switch_on = 0x01,
292		.um_switch_off = 0x08,
293	},
294	[WSP_FLAG_WELLSPRING3] = {
295		.caps = HAS_INTEGRATED_BUTTON,
296		.tp_type = TYPE2,
297		.tp_button = BUTTON_TYPE2,
298		.tp_offset = FINGER_TYPE2,
299		.tp_fsize = FSIZE_TYPE2,
300		.tp_delta = 0,
301		.iface_index = 0,
302		.um_size = 8,
303		.um_req_val = 0x03,
304		.um_req_idx = 0x00,
305		.um_switch_idx = 0,
306		.um_switch_on = 0x01,
307		.um_switch_off = 0x08,
308	},
309	[WSP_FLAG_WELLSPRING4] = {
310		.caps = HAS_INTEGRATED_BUTTON,
311		.tp_type = TYPE2,
312		.tp_button = BUTTON_TYPE2,
313		.tp_offset = FINGER_TYPE2,
314		.tp_fsize = FSIZE_TYPE2,
315		.tp_delta = 0,
316		.iface_index = 0,
317		.um_size = 8,
318		.um_req_val = 0x03,
319		.um_req_idx = 0x00,
320		.um_switch_idx = 0,
321		.um_switch_on = 0x01,
322		.um_switch_off = 0x08,
323	},
324	[WSP_FLAG_WELLSPRING4A] = {
325		.caps = HAS_INTEGRATED_BUTTON,
326		.tp_type = TYPE2,
327		.tp_button = BUTTON_TYPE2,
328		.tp_offset = FINGER_TYPE2,
329		.tp_fsize = FSIZE_TYPE2,
330		.tp_delta = 0,
331		.iface_index = 0,
332		.um_size = 8,
333		.um_req_val = 0x03,
334		.um_req_idx = 0x00,
335		.um_switch_idx = 0,
336		.um_switch_on = 0x01,
337		.um_switch_off = 0x08,
338	},
339	[WSP_FLAG_WELLSPRING5] = {
340		.caps = HAS_INTEGRATED_BUTTON,
341		.tp_type = TYPE2,
342		.tp_button = BUTTON_TYPE2,
343		.tp_offset = FINGER_TYPE2,
344		.tp_fsize = FSIZE_TYPE2,
345		.tp_delta = 0,
346		.iface_index = 0,
347		.um_size = 8,
348		.um_req_val = 0x03,
349		.um_req_idx = 0x00,
350		.um_switch_idx = 0,
351		.um_switch_on = 0x01,
352		.um_switch_off = 0x08,
353	},
354	[WSP_FLAG_WELLSPRING6] = {
355		.caps = HAS_INTEGRATED_BUTTON,
356		.tp_type = TYPE2,
357		.tp_button = BUTTON_TYPE2,
358		.tp_offset = FINGER_TYPE2,
359		.tp_fsize = FSIZE_TYPE2,
360		.tp_delta = 0,
361		.iface_index = 0,
362		.um_size = 8,
363		.um_req_val = 0x03,
364		.um_req_idx = 0x00,
365		.um_switch_idx = 0,
366		.um_switch_on = 0x01,
367		.um_switch_off = 0x08,
368	},
369	[WSP_FLAG_WELLSPRING5A] = {
370		.caps = HAS_INTEGRATED_BUTTON,
371		.tp_type = TYPE2,
372		.tp_button = BUTTON_TYPE2,
373		.tp_offset = FINGER_TYPE2,
374		.tp_fsize = FSIZE_TYPE2,
375		.tp_delta = 0,
376		.iface_index = 0,
377		.um_size = 8,
378		.um_req_val = 0x03,
379		.um_req_idx = 0x00,
380		.um_switch_idx = 0,
381		.um_switch_on = 0x01,
382		.um_switch_off = 0x08,
383	},
384	[WSP_FLAG_WELLSPRING6A] = {
385		.caps = HAS_INTEGRATED_BUTTON,
386		.tp_type = TYPE2,
387		.tp_button = BUTTON_TYPE2,
388		.tp_offset = FINGER_TYPE2,
389		.tp_fsize = FSIZE_TYPE2,
390		.tp_delta = 0,
391		.um_size = 8,
392		.um_req_val = 0x03,
393		.um_req_idx = 0x00,
394		.um_switch_idx = 0,
395		.um_switch_on = 0x01,
396		.um_switch_off = 0x08,
397	},
398	[WSP_FLAG_WELLSPRING7] = {
399		.caps = HAS_INTEGRATED_BUTTON,
400		.tp_type = TYPE2,
401		.tp_button = BUTTON_TYPE2,
402		.tp_offset = FINGER_TYPE2,
403		.tp_fsize = FSIZE_TYPE2,
404		.tp_delta = 0,
405		.iface_index = 0,
406		.um_size = 8,
407		.um_req_val = 0x03,
408		.um_req_idx = 0x00,
409		.um_switch_idx = 0,
410		.um_switch_on = 0x01,
411		.um_switch_off = 0x08,
412	},
413	[WSP_FLAG_WELLSPRING7A] = {
414		.caps = HAS_INTEGRATED_BUTTON,
415		.tp_type = TYPE2,
416		.tp_button = BUTTON_TYPE2,
417		.tp_offset = FINGER_TYPE2,
418		.tp_fsize = FSIZE_TYPE2,
419		.tp_delta = 0,
420		.iface_index = 0,
421		.um_size = 8,
422		.um_req_val = 0x03,
423		.um_req_idx = 0x00,
424		.um_switch_idx = 0,
425		.um_switch_on = 0x01,
426		.um_switch_off = 0x08,
427	},
428	[WSP_FLAG_WELLSPRING8] = {
429		.caps = HAS_INTEGRATED_BUTTON,
430		.tp_type = TYPE3,
431		.tp_button = BUTTON_TYPE3,
432		.tp_offset = FINGER_TYPE3,
433		.tp_fsize = FSIZE_TYPE3,
434		.tp_delta = 0,
435		.iface_index = 0,
436		.um_size = 8,
437		.um_req_val = 0x03,
438		.um_req_idx = 0x00,
439		.um_switch_idx = 0,
440		.um_switch_on = 0x01,
441		.um_switch_off = 0x08,
442	},
443	[WSP_FLAG_WELLSPRING9] = {
444		.caps = HAS_INTEGRATED_BUTTON,
445		.tp_type = TYPE4,
446		.tp_button = BUTTON_TYPE4,
447		.tp_offset = FINGER_TYPE4,
448		.tp_fsize = FSIZE_TYPE4,
449		.tp_delta = 2,
450		.iface_index = 2,
451		.um_size = 2,
452		.um_req_val = 0x03,
453		.um_req_idx = 0x02,
454		.um_switch_idx = 1,
455		.um_switch_on = 0x01,
456		.um_switch_off = 0x00,
457	},
458};
459
460#define	WSP_DEV(v,p,i) { USB_VPI(USB_VENDOR_##v, USB_PRODUCT_##v##_##p, i) }
461
462static 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
533enum {
534	WSP_INTR_DT,
535	WSP_N_TRANSFER,
536};
537
538struct 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 */
592static usb_fifo_cmd_t wsp_start_read;
593static usb_fifo_cmd_t wsp_stop_read;
594static usb_fifo_open_t wsp_open;
595static usb_fifo_close_t wsp_close;
596static usb_fifo_ioctl_t wsp_ioctl;
597
598static 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 */
608static int wsp_enable(struct wsp_softc *sc);
609static void wsp_disable(struct wsp_softc *sc);
610
611/* updating fifo */
612static void wsp_reset_buf(struct wsp_softc *sc);
613static void wsp_add_to_queue(struct wsp_softc *, int, int, int, uint32_t);
614
615/* Device methods. */
616static device_probe_t wsp_probe;
617static device_attach_t wsp_attach;
618static device_detach_t wsp_detach;
619static usb_callback_t wsp_intr_callback;
620
621static 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
635static usb_error_t
636wsp_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
671static int
672wsp_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
682static void
683wsp_disable(struct wsp_softc *sc)
684{
685	sc->sc_state &= ~WSP_ENABLED;
686	DPRINTFN(WSP_LLEVEL_INFO, "disabled wsp\n");
687}
688
689static int
690wsp_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
719static int
720wsp_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
813detach:
814	wsp_detach(dev);
815	return (ENOMEM);
816}
817
818static int
819wsp_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
839static void
840wsp_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			sc->sc_status.button |= MOUSE_BUTTON1DOWN;
933			sc->ibtn = 1;
934		}
935		sc->intr_count++;
936
937		if (sc->ntaps < ntouch) {
938			switch (ntouch) {
939			case 1:
940				if (sc->index[0]->touch_major > tun.pressure_tap_threshold &&
941				    sc->index[0]->tool_major <= 1200)
942					sc->ntaps = 1;
943				break;
944			case 2:
945				if (sc->index[0]->touch_major > tun.pressure_tap_threshold-30 &&
946				    sc->index[1]->touch_major > tun.pressure_tap_threshold-30)
947					sc->ntaps = 2;
948				break;
949			case 3:
950				if (sc->index[0]->touch_major > tun.pressure_tap_threshold-40 &&
951				    sc->index[1]->touch_major > tun.pressure_tap_threshold-40 &&
952				    sc->index[2]->touch_major > tun.pressure_tap_threshold-40)
953					sc->ntaps = 3;
954				break;
955			default:
956				break;
957			}
958		}
959		if (ntouch == 2) {
960			sc->distance = max(sc->distance, max(
961			    abs(sc->pos_x[0] - sc->pos_x[1]),
962			    abs(sc->pos_y[0] - sc->pos_y[1])));
963		}
964		if (sc->index[0]->touch_major < tun.pressure_untouch_threshold &&
965		    sc->sc_status.button == 0) {
966			sc->sc_touch = WSP_UNTOUCH;
967			if (sc->intr_count < WSP_TAP_MAX_COUNT &&
968			    sc->intr_count > WSP_TAP_THRESHOLD &&
969			    sc->ntaps && sc->ibtn == 0) {
970				/*
971				 * Add a pair of events (button-down and
972				 * button-up).
973				 */
974				switch (sc->ntaps) {
975				case 1:
976					if (!(params->caps & HAS_INTEGRATED_BUTTON) || tun.enable_single_tap_clicks) {
977						wsp_add_to_queue(sc, 0, 0, 0, MOUSE_BUTTON1DOWN);
978						DPRINTFN(WSP_LLEVEL_INFO, "LEFT CLICK!\n");
979					}
980					break;
981				case 2:
982					DPRINTFN(WSP_LLEVEL_INFO, "sum_x=%5d, sum_y=%5d\n",
983					    sc->dx_sum, sc->dy_sum);
984					if (sc->distance < MAX_DISTANCE && abs(sc->dx_sum) < 5 &&
985					    abs(sc->dy_sum) < 5) {
986						wsp_add_to_queue(sc, 0, 0, 0, MOUSE_BUTTON3DOWN);
987						DPRINTFN(WSP_LLEVEL_INFO, "RIGHT CLICK!\n");
988					}
989					break;
990				case 3:
991					wsp_add_to_queue(sc, 0, 0, 0, MOUSE_BUTTON2DOWN);
992					break;
993				default:
994					/* we don't handle taps of more than three fingers */
995					break;
996				}
997				wsp_add_to_queue(sc, 0, 0, 0, 0);	/* button release */
998			}
999			if ((sc->dt_sum / tun.scr_hor_threshold) != 0 &&
1000			    sc->ntaps == 2 && sc->scr_mode == WSP_SCR_HOR) {
1001
1002				/*
1003				 * translate T-axis into button presses
1004				 * until further
1005				 */
1006				if (sc->dt_sum > 0)
1007					wsp_add_to_queue(sc, 0, 0, 0, 1UL << 3);
1008				else if (sc->dt_sum < 0)
1009					wsp_add_to_queue(sc, 0, 0, 0, 1UL << 4);
1010			}
1011			sc->dz_count = WSP_DZ_MAX_COUNT;
1012			sc->dz_sum = 0;
1013			sc->intr_count = 0;
1014			sc->ibtn = 0;
1015			sc->ntaps = 0;
1016			sc->finger = 0;
1017			sc->distance = 0;
1018			sc->dt_sum = 0;
1019			sc->dx_sum = 0;
1020			sc->dy_sum = 0;
1021			sc->rdx = 0;
1022			sc->rdy = 0;
1023			sc->rdz = 0;
1024			sc->scr_mode = WSP_SCR_NONE;
1025		} else if (sc->index[0]->touch_major >= tun.pressure_touch_threshold &&
1026		    sc->sc_touch == WSP_UNTOUCH) {	/* ignore first touch */
1027			sc->sc_touch = WSP_FIRST_TOUCH;
1028		} else if (sc->index[0]->touch_major >= tun.pressure_touch_threshold &&
1029		    sc->sc_touch == WSP_FIRST_TOUCH) {	/* ignore second touch */
1030			sc->sc_touch = WSP_SECOND_TOUCH;
1031			DPRINTFN(WSP_LLEVEL_INFO, "Fist pre_x=%5d, pre_y=%5d\n",
1032			    sc->pre_pos_x, sc->pre_pos_y);
1033		} else {
1034			if (sc->sc_touch == WSP_SECOND_TOUCH)
1035				sc->sc_touch = WSP_TOUCHING;
1036
1037			if (ntouch != 0 &&
1038			    sc->index[0]->touch_major >= tun.pressure_touch_threshold) {
1039				dx = sc->pos_x[0] - sc->pre_pos_x;
1040				dy = sc->pos_y[0] - sc->pre_pos_y;
1041
1042				/* Ignore movement during button is releasing */
1043				if (sc->ibtn != 0 && sc->sc_status.button == 0)
1044					dx = dy = 0;
1045
1046				/* Ignore movement if ntouch changed */
1047				if (sc->o_ntouch != ntouch)
1048					dx = dy = 0;
1049
1050				/* Ignore unexpeted movement when typing */
1051				if (ntouch == 1 && sc->index[0]->tool_major > 1200)
1052					dx = dy = 0;
1053
1054				if (sc->ibtn != 0 && ntouch == 1 &&
1055				    sc->intr_count < WSP_TAP_MAX_COUNT &&
1056				    abs(sc->dx_sum) < 1 && abs(sc->dy_sum) < 1 )
1057					dx = dy = 0;
1058
1059				if (ntouch == 2 && sc->sc_status.button != 0) {
1060					dx = sc->pos_x[sc->finger] - sc->pre_pos_x;
1061					dy = sc->pos_y[sc->finger] - sc->pre_pos_y;
1062
1063					/*
1064					 * Ignore movement of switch finger or
1065					 * movement from ibt=0 to ibt=1
1066					 */
1067					if (sc->index[0]->origin == 0 || sc->index[1]->origin == 0 ||
1068					    sc->sc_status.obutton != sc->sc_status.button) {
1069						dx = dy = 0;
1070						sc->finger = 0;
1071					}
1072					if ((abs(sc->index[0]->rel_x) + abs(sc->index[0]->rel_y)) <
1073					    (abs(sc->index[1]->rel_x) + abs(sc->index[1]->rel_y)) &&
1074					    sc->finger == 0) {
1075						sc->sc_touch = WSP_SECOND_TOUCH;
1076						dx = dy = 0;
1077						sc->finger = 1;
1078					}
1079					if ((abs(sc->index[0]->rel_x) + abs(sc->index[0]->rel_y)) >=
1080					    (abs(sc->index[1]->rel_x) + abs(sc->index[1]->rel_y)) &&
1081					    sc->finger == 1) {
1082						sc->sc_touch = WSP_SECOND_TOUCH;
1083						dx = dy = 0;
1084						sc->finger = 0;
1085					}
1086					DPRINTFN(WSP_LLEVEL_INFO, "dx=%5d, dy=%5d, mov=%5d\n",
1087					    dx, dy, sc->finger);
1088				}
1089				if (sc->dz_count--) {
1090					rdz = (dy + sc->rdz) % tun.scale_factor;
1091					sc->dz_sum -= (dy + sc->rdz) / tun.scale_factor;
1092					sc->rdz = rdz;
1093				}
1094				if ((sc->dz_sum / tun.z_factor) != 0)
1095					sc->dz_count = 0;
1096			}
1097			rdx = (dx + sc->rdx) % tun.scale_factor;
1098			dx = (dx + sc->rdx) / tun.scale_factor;
1099			sc->rdx = rdx;
1100
1101			rdy = (dy + sc->rdy) % tun.scale_factor;
1102			dy = (dy + sc->rdy) / tun.scale_factor;
1103			sc->rdy = rdy;
1104
1105			sc->dx_sum += dx;
1106			sc->dy_sum += dy;
1107
1108			if (ntouch == 2 && sc->sc_status.button == 0) {
1109				if (sc->scr_mode == WSP_SCR_NONE &&
1110				    abs(sc->dx_sum) + abs(sc->dy_sum) > tun.scr_hor_threshold)
1111					sc->scr_mode = abs(sc->dx_sum) >
1112					    abs(sc->dy_sum) * 2 ? WSP_SCR_HOR : WSP_SCR_VER;
1113				DPRINTFN(WSP_LLEVEL_INFO, "scr_mode=%5d, count=%d, dx_sum=%d, dy_sum=%d\n",
1114				    sc->scr_mode, sc->intr_count, sc->dx_sum, sc->dy_sum);
1115				if (sc->scr_mode == WSP_SCR_HOR)
1116					sc->dt_sum += dx;
1117				else
1118					sc->dt_sum = 0;
1119
1120				dx = dy = 0;
1121				if (sc->dz_count == 0)
1122					dz = sc->dz_sum / tun.z_factor;
1123				if (sc->scr_mode == WSP_SCR_HOR ||
1124				    abs(sc->pos_x[0] - sc->pos_x[1]) > MAX_DISTANCE ||
1125				    abs(sc->pos_y[0] - sc->pos_y[1]) > MAX_DISTANCE)
1126					dz = 0;
1127			}
1128			if (ntouch == 3)
1129				dx = dy = dz = 0;
1130			if (sc->intr_count < WSP_TAP_MAX_COUNT &&
1131			    abs(dx) < 3 && abs(dy) < 3 && abs(dz) < 3)
1132				dx = dy = dz = 0;
1133			else
1134				sc->intr_count = WSP_TAP_MAX_COUNT;
1135			if (dx || dy || dz)
1136				sc->sc_status.flags |= MOUSE_POSCHANGED;
1137			DPRINTFN(WSP_LLEVEL_INFO, "dx=%5d, dy=%5d, dz=%5d, sc_touch=%x, btn=%x\n",
1138			    dx, dy, dz, sc->sc_touch, sc->sc_status.button);
1139			sc->sc_status.dx += dx;
1140			sc->sc_status.dy += dy;
1141			sc->sc_status.dz += dz;
1142
1143			wsp_add_to_queue(sc, dx, -dy, dz, sc->sc_status.button);
1144			if (sc->dz_count == 0) {
1145				sc->dz_sum = 0;
1146				sc->rdz = 0;
1147			}
1148
1149		}
1150		sc->pre_pos_x = sc->pos_x[0];
1151		sc->pre_pos_y = sc->pos_y[0];
1152
1153		if (ntouch == 2 && sc->sc_status.button != 0) {
1154			sc->pre_pos_x = sc->pos_x[sc->finger];
1155			sc->pre_pos_y = sc->pos_y[sc->finger];
1156		}
1157		sc->o_ntouch = ntouch;
1158
1159	case USB_ST_SETUP:
1160tr_setup:
1161		/* check if we can put more data into the FIFO */
1162		if (usb_fifo_put_bytes_max(
1163		    sc->sc_fifo.fp[USB_FIFO_RX]) != 0) {
1164			usbd_xfer_set_frame_len(xfer, 0,
1165			    sc->tp_datalen);
1166			usbd_transfer_submit(xfer);
1167		}
1168		break;
1169
1170	default:			/* Error */
1171		if (error != USB_ERR_CANCELLED) {
1172			/* try clear stall first */
1173			usbd_xfer_set_stall(xfer);
1174			goto tr_setup;
1175		}
1176		break;
1177	}
1178}
1179
1180static void
1181wsp_add_to_queue(struct wsp_softc *sc, int dx, int dy, int dz,
1182    uint32_t buttons_in)
1183{
1184	uint32_t buttons_out;
1185	uint8_t buf[8];
1186
1187	dx = imin(dx, 254);
1188	dx = imax(dx, -256);
1189	dy = imin(dy, 254);
1190	dy = imax(dy, -256);
1191	dz = imin(dz, 126);
1192	dz = imax(dz, -128);
1193
1194	buttons_out = MOUSE_MSC_BUTTONS;
1195	if (buttons_in & MOUSE_BUTTON1DOWN)
1196		buttons_out &= ~MOUSE_MSC_BUTTON1UP;
1197	else if (buttons_in & MOUSE_BUTTON2DOWN)
1198		buttons_out &= ~MOUSE_MSC_BUTTON2UP;
1199	else if (buttons_in & MOUSE_BUTTON3DOWN)
1200		buttons_out &= ~MOUSE_MSC_BUTTON3UP;
1201
1202	/* Encode the mouse data in standard format; refer to mouse(4) */
1203	buf[0] = sc->sc_mode.syncmask[1];
1204	buf[0] |= buttons_out;
1205	buf[1] = dx >> 1;
1206	buf[2] = dy >> 1;
1207	buf[3] = dx - (dx >> 1);
1208	buf[4] = dy - (dy >> 1);
1209	/* Encode extra bytes for level 1 */
1210	if (sc->sc_mode.level == 1) {
1211		buf[5] = dz >> 1;	/* dz / 2 */
1212		buf[6] = dz - (dz >> 1);/* dz - (dz / 2) */
1213		buf[7] = (((~buttons_in) >> 3) & MOUSE_SYS_EXTBUTTONS);
1214	}
1215	usb_fifo_put_data_linear(sc->sc_fifo.fp[USB_FIFO_RX], buf,
1216	    sc->sc_mode.packetsize, 1);
1217}
1218
1219static void
1220wsp_reset_buf(struct wsp_softc *sc)
1221{
1222	/* reset read queue */
1223	usb_fifo_reset(sc->sc_fifo.fp[USB_FIFO_RX]);
1224}
1225
1226static void
1227wsp_start_read(struct usb_fifo *fifo)
1228{
1229	struct wsp_softc *sc = usb_fifo_softc(fifo);
1230	int rate;
1231
1232	/* Check if we should override the default polling interval */
1233	rate = sc->sc_pollrate;
1234	/* Range check rate */
1235	if (rate > 1000)
1236		rate = 1000;
1237	/* Check for set rate */
1238	if ((rate > 0) && (sc->sc_xfer[WSP_INTR_DT] != NULL)) {
1239		/* Stop current transfer, if any */
1240		usbd_transfer_stop(sc->sc_xfer[WSP_INTR_DT]);
1241		/* Set new interval */
1242		usbd_xfer_set_interval(sc->sc_xfer[WSP_INTR_DT], 1000 / rate);
1243		/* Only set pollrate once */
1244		sc->sc_pollrate = 0;
1245	}
1246	usbd_transfer_start(sc->sc_xfer[WSP_INTR_DT]);
1247}
1248
1249static void
1250wsp_stop_read(struct usb_fifo *fifo)
1251{
1252	struct wsp_softc *sc = usb_fifo_softc(fifo);
1253
1254	usbd_transfer_stop(sc->sc_xfer[WSP_INTR_DT]);
1255}
1256
1257
1258static int
1259wsp_open(struct usb_fifo *fifo, int fflags)
1260{
1261	DPRINTFN(WSP_LLEVEL_INFO, "\n");
1262
1263	if (fflags & FREAD) {
1264		struct wsp_softc *sc = usb_fifo_softc(fifo);
1265		int rc;
1266
1267		if (sc->sc_state & WSP_ENABLED)
1268			return (EBUSY);
1269
1270		if (usb_fifo_alloc_buffer(fifo,
1271		    WSP_FIFO_BUF_SIZE, WSP_FIFO_QUEUE_MAXLEN)) {
1272			return (ENOMEM);
1273		}
1274		rc = wsp_enable(sc);
1275		if (rc != 0) {
1276			usb_fifo_free_buffer(fifo);
1277			return (rc);
1278		}
1279	}
1280	return (0);
1281}
1282
1283static void
1284wsp_close(struct usb_fifo *fifo, int fflags)
1285{
1286	if (fflags & FREAD) {
1287		struct wsp_softc *sc = usb_fifo_softc(fifo);
1288
1289		wsp_disable(sc);
1290		usb_fifo_free_buffer(fifo);
1291	}
1292}
1293
1294int
1295wsp_ioctl(struct usb_fifo *fifo, u_long cmd, void *addr, int fflags)
1296{
1297	struct wsp_softc *sc = usb_fifo_softc(fifo);
1298	mousemode_t mode;
1299	int error = 0;
1300
1301	mtx_lock(&sc->sc_mutex);
1302
1303	switch (cmd) {
1304	case MOUSE_GETHWINFO:
1305		*(mousehw_t *)addr = sc->sc_hw;
1306		break;
1307	case MOUSE_GETMODE:
1308		*(mousemode_t *)addr = sc->sc_mode;
1309		break;
1310	case MOUSE_SETMODE:
1311		mode = *(mousemode_t *)addr;
1312
1313		if (mode.level == -1)
1314			/* Don't change the current setting */
1315			;
1316		else if ((mode.level < 0) || (mode.level > 1)) {
1317			error = EINVAL;
1318			goto done;
1319		}
1320		sc->sc_mode.level = mode.level;
1321		sc->sc_pollrate = mode.rate;
1322		sc->sc_hw.buttons = 3;
1323
1324		if (sc->sc_mode.level == 0) {
1325			sc->sc_mode.protocol = MOUSE_PROTO_MSC;
1326			sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
1327			sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
1328			sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
1329		} else if (sc->sc_mode.level == 1) {
1330			sc->sc_mode.protocol = MOUSE_PROTO_SYSMOUSE;
1331			sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE;
1332			sc->sc_mode.syncmask[0] = MOUSE_SYS_SYNCMASK;
1333			sc->sc_mode.syncmask[1] = MOUSE_SYS_SYNC;
1334		}
1335		wsp_reset_buf(sc);
1336		break;
1337	case MOUSE_GETLEVEL:
1338		*(int *)addr = sc->sc_mode.level;
1339		break;
1340	case MOUSE_SETLEVEL:
1341		if (*(int *)addr < 0 || *(int *)addr > 1) {
1342			error = EINVAL;
1343			goto done;
1344		}
1345		sc->sc_mode.level = *(int *)addr;
1346		sc->sc_hw.buttons = 3;
1347
1348		if (sc->sc_mode.level == 0) {
1349			sc->sc_mode.protocol = MOUSE_PROTO_MSC;
1350			sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE;
1351			sc->sc_mode.syncmask[0] = MOUSE_MSC_SYNCMASK;
1352			sc->sc_mode.syncmask[1] = MOUSE_MSC_SYNC;
1353		} else if (sc->sc_mode.level == 1) {
1354			sc->sc_mode.protocol = MOUSE_PROTO_SYSMOUSE;
1355			sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE;
1356			sc->sc_mode.syncmask[0] = MOUSE_SYS_SYNCMASK;
1357			sc->sc_mode.syncmask[1] = MOUSE_SYS_SYNC;
1358		}
1359		wsp_reset_buf(sc);
1360		break;
1361	case MOUSE_GETSTATUS:{
1362			mousestatus_t *status = (mousestatus_t *)addr;
1363
1364			*status = sc->sc_status;
1365			sc->sc_status.obutton = sc->sc_status.button;
1366			sc->sc_status.button = 0;
1367			sc->sc_status.dx = 0;
1368			sc->sc_status.dy = 0;
1369			sc->sc_status.dz = 0;
1370
1371			if (status->dx || status->dy || status->dz)
1372				status->flags |= MOUSE_POSCHANGED;
1373			if (status->button != status->obutton)
1374				status->flags |= MOUSE_BUTTONSCHANGED;
1375			break;
1376		}
1377	default:
1378		error = ENOTTY;
1379	}
1380
1381done:
1382	mtx_unlock(&sc->sc_mutex);
1383	return (error);
1384}
1385
1386static device_method_t wsp_methods[] = {
1387	/* Device interface */
1388	DEVMETHOD(device_probe, wsp_probe),
1389	DEVMETHOD(device_attach, wsp_attach),
1390	DEVMETHOD(device_detach, wsp_detach),
1391	DEVMETHOD_END
1392};
1393
1394static driver_t wsp_driver = {
1395	.name = WSP_DRIVER_NAME,
1396	.methods = wsp_methods,
1397	.size = sizeof(struct wsp_softc)
1398};
1399
1400static devclass_t wsp_devclass;
1401
1402DRIVER_MODULE(wsp, uhub, wsp_driver, wsp_devclass, NULL, 0);
1403MODULE_DEPEND(wsp, usb, 1, 1, 1);
1404MODULE_VERSION(wsp, 1);
1405USB_PNP_HOST_INFO(wsp_devs);
1406