Home | History | Annotate | Line # | Download | only in pckbport
synapticsvar.h revision 1.11
      1  1.11     blymn /*	$NetBSD: synapticsvar.h,v 1.11 2021/06/30 22:13:27 blymn Exp $	*/
      2   1.1  christos 
      3   1.1  christos /*
      4   1.2       scw  * Copyright (c) 2005, Steve C. Woodford
      5   1.1  christos  * Copyright (c) 2004, Ales Krenek
      6   1.1  christos  * Copyright (c) 2004, Kentaro A. Kurahone
      7   1.1  christos  * All rights reserved.
      8   1.3     perry  *
      9   1.1  christos  * Redistribution and use in source and binary forms, with or without
     10   1.1  christos  * modification, are permitted provided that the following conditions
     11   1.1  christos  * are met:
     12   1.1  christos  *
     13   1.1  christos  *   * Redistributions of source code must retain the above copyright
     14   1.1  christos  *     notice, this list of conditions and the following disclaimer.
     15   1.1  christos  *   * Redistributions in binary form must reproduce the above
     16   1.1  christos  *     copyright notice, this list of conditions and the following
     17   1.1  christos  *     disclaimer in the documentation and/or other materials provided
     18   1.1  christos  *     with the distribution.
     19   1.1  christos  *   * Neither the name of the Kentaro A. Kurahone nor the names of its
     20   1.1  christos  *     contributors may be used to endorse or promote products derived
     21   1.1  christos  *     from this software without specific prior written permission.
     22   1.1  christos  *
     23   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     24   1.1  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     25   1.1  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     26   1.1  christos  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
     27   1.1  christos  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     28   1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     29   1.1  christos  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     30   1.1  christos  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     31   1.1  christos  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32   1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     33   1.1  christos  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     34   1.1  christos  * POSSIBILITY OF SUCH DAMAGE.
     35   1.1  christos  *
     36   1.1  christos  */
     37   1.1  christos 
     38   1.1  christos #ifndef _DEV_PCKBCPORT_SYNAPTICSVAR_H_
     39   1.1  christos #define _DEV_PCKBCPORT_SYNAPTICSVAR_H_
     40   1.1  christos 
     41  1.11     blymn #define SYN_MAX_FINGERS 2
     42  1.11     blymn 
     43   1.1  christos struct synaptics_softc {
     44   1.1  christos 	int	caps;
     45   1.1  christos 
     46   1.2       scw 	int	flags;
     47   1.6  christos #define	SYN_FLAG_HAS_MIDDLE_BUTTON		(1 << 0)
     48   1.6  christos #define	SYN_FLAG_HAS_BUTTONS_4_5		(1 << 1)
     49   1.6  christos #define	SYN_FLAG_HAS_UP_DOWN_BUTTONS		(1 << 2)
     50   1.6  christos #define	SYN_FLAG_HAS_PASSTHROUGH		(1 << 3)
     51   1.6  christos #define	SYN_FLAG_HAS_PALM_DETECT		(1 << 4)
     52   1.6  christos #define	SYN_FLAG_HAS_MULTI_FINGER		(1 << 5)
     53   1.6  christos #define	SYN_FLAG_HAS_MULTI_FINGER_REPORT	(1 << 6)
     54   1.6  christos #define	SYN_FLAG_HAS_VERTICAL_SCROLL		(1 << 7)
     55   1.6  christos #define	SYN_FLAG_HAS_HORIZONTAL_SCROLL		(1 << 8)
     56   1.6  christos #define	SYN_FLAG_HAS_ONE_BUTTON_CLICKPAD	(1 << 9)
     57   1.6  christos #define	SYN_FLAG_HAS_TWO_BUTTON_CLICKPAD	(1 << 10)
     58   1.6  christos #define	SYN_FLAG_HAS_EXTENDED_WMODE		(1 << 11)
     59   1.9     blymn #define	SYN_FLAG_HAS_ADV_GESTURE_MODE		(1 << 12)
     60   1.2       scw 
     61  1.11     blymn 	/* Total number of packets received */
     62  1.11     blymn 	u_int	total_packets[SYN_MAX_FINGERS];
     63  1.11     blymn 
     64   1.7     blymn #define	SYN_TIME(sc,c,n)	(((sc)->total_packets[(n)] >= (c)) ?	\
     65   1.7     blymn 				((sc)->total_packets[(n)] - (c)) :	\
     66   1.7     blymn 				((c) - (sc)->total_packets[(n)]))
     67   1.2       scw 
     68   1.2       scw 	int	up_down;
     69   1.2       scw 	int	prev_fingers;
     70   1.2       scw 
     71   1.2       scw 	int	gesture_start_x, gesture_start_y;
     72   1.6  christos 	int	gesture_move_x, gesture_move_y;
     73   1.2       scw 	u_int	gesture_start_packet;
     74   1.2       scw 	u_int	gesture_tap_packet;
     75   1.2       scw 
     76   1.2       scw 	int	gesture_buttons;
     77   1.2       scw 	int	gesture_type;
     78   1.2       scw #define	SYN_GESTURE_SINGLE	0x01
     79   1.2       scw #define	SYN_GESTURE_DOUBLE	0x02
     80   1.2       scw #define	SYN_GESTURE_DRAG	0x04
     81   1.2       scw #define	SYN_IS_SINGLE_TAP(t)	((t) & SYN_GESTURE_SINGLE)
     82   1.2       scw #define	SYN_IS_DOUBLE_TAP(t)	((t) & SYN_GESTURE_DOUBLE)
     83   1.2       scw #define	SYN_IS_DRAG(t)		((t) & SYN_GESTURE_DRAG)
     84   1.2       scw 
     85   1.2       scw #define	SYN_HIST_SIZE	4
     86   1.7     blymn 	char	button_history;
     87   1.8     blymn 	int	dz_hold;
     88   1.8     blymn 	int	rem_x[SYN_MAX_FINGERS];
     89   1.8     blymn 	int	rem_y[SYN_MAX_FINGERS];
     90   1.8     blymn 	int	rem_z[SYN_MAX_FINGERS];
     91   1.8     blymn 	u_int	movement_history[SYN_MAX_FINGERS];
     92   1.8     blymn 	int	history_x[SYN_MAX_FINGERS][SYN_HIST_SIZE];
     93   1.8     blymn 	int	history_y[SYN_MAX_FINGERS][SYN_HIST_SIZE];
     94   1.8     blymn 	int	history_z[SYN_MAX_FINGERS][SYN_HIST_SIZE];
     95  1.10  jmcneill 
     96  1.10  jmcneill 	char	ext_left;
     97  1.10  jmcneill 	char	ext_right;
     98  1.10  jmcneill 	char	ext_middle;
     99  1.10  jmcneill 	char	ext_up;
    100  1.10  jmcneill 	char	ext_down;
    101   1.1  christos };
    102   1.1  christos 
    103   1.1  christos int pms_synaptics_probe_init(void *vsc);
    104   1.1  christos void pms_synaptics_enable(void *vsc);
    105   1.1  christos void pms_synaptics_resume(void *vsc);
    106   1.1  christos 
    107   1.1  christos #endif
    108