Home | History | Annotate | Line # | Download | only in pckbport
synapticsvar.h revision 1.2.2.1
      1  1.2.2.1      kent /*	$NetBSD: synapticsvar.h,v 1.2.2.1 2005/04/29 11:29:13 kent 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.2.2.1      kent  *
      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.1  christos struct synaptics_softc {
     42      1.1  christos 	struct proc *syn_thread;
     43      1.1  christos 	int	caps;
     44      1.1  christos 
     45      1.2       scw 	int	flags;
     46      1.2       scw #define	SYN_FLAG_HAS_MIDDLE_BUTTON	(1 << 0)
     47      1.2       scw #define	SYN_FLAG_HAS_BUTTONS_4_5	(1 << 1)
     48      1.2       scw #define	SYN_FLAG_HAS_UP_DOWN_BUTTONS	(1 << 2)
     49      1.2       scw #define	SYN_FLAG_HAS_PASSTHROUGH	(1 << 3)	/* Not yet supported */
     50      1.2       scw #define	SYN_FLAG_HAS_PALM_DETECT	(1 << 4)
     51      1.2       scw #define	SYN_FLAG_HAS_MULTI_FINGER	(1 << 5)
     52      1.2       scw 
     53      1.2       scw 	u_int	total_packets;		/* Total number of packets received */
     54      1.2       scw #define	SYN_TIME(sc,c)	(((sc)->total_packets >= (c)) ?		\
     55      1.2       scw 			    ((sc)->total_packets - (c)) :	\
     56      1.2       scw 			    ((c) - (sc)->total_packets))
     57      1.2       scw 
     58      1.2       scw 	int	up_down;
     59      1.2       scw 	int	prev_fingers;
     60      1.2       scw 
     61      1.2       scw 	int	gesture_start_x, gesture_start_y;
     62      1.2       scw 	u_int	gesture_start_packet;
     63      1.2       scw 	u_int	gesture_tap_packet;
     64      1.2       scw 
     65      1.2       scw 	int	gesture_buttons;
     66      1.2       scw 	int	gesture_type;
     67      1.2       scw #define	SYN_GESTURE_SINGLE	0x01
     68      1.2       scw #define	SYN_GESTURE_DOUBLE	0x02
     69      1.2       scw #define	SYN_GESTURE_DRAG	0x04
     70      1.2       scw #define	SYN_IS_SINGLE_TAP(t)	((t) & SYN_GESTURE_SINGLE)
     71      1.2       scw #define	SYN_IS_DOUBLE_TAP(t)	((t) & SYN_GESTURE_DOUBLE)
     72      1.2       scw #define	SYN_IS_DRAG(t)		((t) & SYN_GESTURE_DRAG)
     73      1.2       scw 
     74      1.2       scw #define	SYN_HIST_SIZE	4
     75      1.2       scw 	int	rem_x, rem_y;
     76      1.2       scw 	u_int	movement_history;
     77      1.2       scw 	int	history_x[SYN_HIST_SIZE], history_y[SYN_HIST_SIZE];
     78      1.1  christos };
     79      1.1  christos 
     80      1.1  christos int pms_synaptics_probe_init(void *vsc);
     81      1.1  christos void pms_synaptics_enable(void *vsc);
     82      1.1  christos void pms_synaptics_resume(void *vsc);
     83      1.1  christos 
     84      1.1  christos #endif
     85