Sync usage with man page.
[netbsd-mini2440.git] / share / man / man9 / wsmouse.9
blobef3e599313d929fbe2af4e0b4a266f708ca90f7a
1 .\"     $NetBSD: wsmouse.9,v 1.15 2007/03/07 00:41:19 dogcow Exp $
2 .\"
3 .\" Copyright (c) 2001 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Gregory McGarry.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .Dd November 12, 2006
31 .Dt WSMOUSE 9
32 .Os
33 .Sh NAME
34 .Nm wsmouse ,
35 .Nm wsmouse_input ,
36 .Nm wsmousedevprint
37 .Nd wscons mouse support
38 .Sh SYNOPSIS
39 .In dev/wscons/wsconsio.h
40 .In dev/wscons/wsmousevar.h
41 .Ft void
42 .Fn wsmouse_input "struct device *msdev" "u_int btns" \
43 "int x" "int y" "int z" "int w" "u_int flags"
44 .Ft int
45 .Fn wsmousedevprint "void *aux" "const char *pnp"
46 .Sh DESCRIPTION
47 The
48 .Nm
49 module is a component of the
50 .Xr wscons 9
51 framework to provide machine-independent mouse support.
52 Most of the support is provided by the
53 .Xr wsmouse 4
54 device driver, which must be a child of the hardware device driver.
55 .Sh DATA TYPES
56 Mouse drivers providing support for wscons pointer devices will make use
57 of the following data types:
58 .Bl -tag -width compact
59 .It Fa struct wsmouse_accessops
60 A structure used to specify the mouse access functions.
61 All pointer devices must provide this structure and pass it to the
62 .Xr wsmouse 4
63 child device.
64 It has the following members:
65 .Bd -literal
66         int     (*enable)(void *);
67         int     (*ioctl)(void *v, u_long cmd, void *data,
68                         int flag, struct lwp *l);
69         void    (*disable)(void *);
70 .Ed
71 .Pp
72 The
73 .Fa enable
74 member defines the function to be called to enable monitoring pointer
75 movements and passing these events to
76 wscons.
77 The
78 .Fa disable
79 member defines the function to disable movement events.
80 The
81 .Fa ioctl
82 member defines the function to be called to perform mouse-specific
83 ioctl calls.
84 .Pp
85 There is a
86 .Fa void *
87 cookie provided by the mouse driver associated with these functions,
88 which is passed to them when they are invoked.
89 .It Fa struct wsmousedev_attach_args
90 A structure used to attach the
91 .Xr wsmouse 4
92 child device.
93 It has the following members:
94 .Bd -literal
95         const struct wsmouse_accessops *accessops;
96         void *accesscookie;
97 .Ed
98 .El
99 .Sh FUNCTIONS
100 .Bl -tag -width compact
101 .It Fn wsmouse_input "msdev" "btns" "x" "y" "z" "w" "flags"
102 Callback from the mouse driver to the wsmouse interface driver.
103 Arguments are as follows:
104 .Bl -tag -width msdev -compact
105 .It Fa msdev
106 This is the
107 .Fa struct device
108 pointer passed from
109 .Fn config_found
110 on attaching the child
111 .Xr wsmouse 4
112 to specify the mouse device.
113 .It Fa btns
114 This specifies the current button status.
115 Bits for pressed buttons (which will cause the
116 .Dv WSCONS_EVENT_MOUSE_DOWN
117 event on
118 .Xr wsmouse 4
119 device) should be set, and bits for released buttons (which will cause the
120 .Dv WSCONS_EVENT_MOUSE_UP
121 event) should be zero.
122 The left most button state should be in LSB,
123 i.e. for typical three button mouse,
124 the left button is 0x01,
125 the middle button is 0x02,
126 and the right button is 0x04.
127 .It Fa x
128 Absolute or relative X-axis value to specify the pointer coordinate.
129 Rightward (moving the mouse right) is positive.
130 .It Fa y
131 Absolute or relative Y-axis value to specify the pointer coordinate.
132 Upward (moving the mouse forward) is positive.
133 Note that this aspect is opposite from the one used in the X server dix layer.
134 .It Fa z
135 Absolute or relative Z-axis value to specify the pointer coordinate.
136 Usually this axis is used for the wheel.
137 Downward (turning the wheel backward) is positive.
138 .It Fa w
139 Absolute or relative W-axis value to specify the pointer coordinate.
140 Usually this axis would be used for the horizontal component of the wheel.
141 .It Fa flags
142 This argument specifies whether the pointer device and the measurement
143 of the
144 .Fa x ,
145 .Fa y ,
146 .Fa z ,
148 .Fa w
149 axes is in relative or absolute mode.
150 Valid values for
151 .Fa flags
152 are:
153 .Bl -tag -width compact
154 .It WSMOUSE_INPUT_DELTA
155 Relative mode.
156 .It WSMOUSE_INPUT_ABSOLUTE_X
157 Absolute mode in
158 .Fa x
159 axis.
160 .It WSMOUSE_INPUT_ABSOLUTE_Y
161 Absolute mode in
162 .Fa y
163 axis.
164 .It WSMOUSE_INPUT_ABSOLUTE_Z
165 Absolute mode in
166 .Fa z
167 axis.
168 .It WSMOUSE_INPUT_ABSOLUTE_W
169 Absolute mode in
170 .Fa w
171 axis.
174 .It Fn wsmousedevprint "aux" "pnp"
175 The default wsmouse printing routine used by
176 .Fn config_found .
177 (see
178 .Xr autoconf 9 ) .
180 .Sh AUTOCONFIGURATION
181 Mouse drivers which want to use the wsmouse module must be a
182 parent to the
183 .Xr wsmouse 4
184 device and provide an attachment interface.
185 To attach the
186 .Xr wsmouse 4
187 device, the mouse driver must allocate and populate a
188 .Fa wsmousedev_attach_args
189 structure with the supported operations and callbacks and call
190 .Fn config_found
191 to perform the attach (see
192 .Xr autoconf 9 ) .
193 .Sh OPERATION
194 When a mouse-movement event is received, the device driver must
195 perform any necessary movement decoding to wscons events and pass the
196 events to wscons via
197 .Fn wsmouse_input .
199 The wscons framework calls back into the hardware driver by invoking
200 the functions that are specified in the
201 .Em accessops
202 structure.
204 .Fn enable
206 .Fn disable
207 functions are relatively simple and self-explanatory.
209 .Fn ioctl
210 function is called by the wscons interface to perform
211 mouse-specific ioctl operations (see
212 .Xr ioctl 2 ) .
213 The argument
214 .Fa cmd
215 to the
216 .Fn ioctl
217 function specifies the specific command to perform using the data
218 .Fa data .
219 Valid commands are listed in
220 .Pa sys/dev/wscons/wsconsio.h .
221 .Sh CODE REFERENCES
222 This section describes places within the
224 source tree where actual code implementing or using the
225 machine-independent wscons subsystem can be found.
226 All pathnames are relative to
227 .Pa /usr/src .
229 The wscons subsystem is implemented within the directory
230 .Pa sys/dev/wscons .
233 module itself is implement within the file
234 .Pa sys/dev/wscons/wsmouse.c .
235 .Xr ioctl 2
236 operations are listed in
237 .Pa sys/dev/wscons/wsconsio.h .
238 .Sh SEE ALSO
239 .Xr ioctl 2 ,
240 .Xr pms 4 ,
241 .Xr wscons 4 ,
242 .Xr wsmouse 4 ,
243 .Xr autoconf 9 ,
244 .Xr driver 9 ,
245 .Xr intro 9 ,
246 .Xr wscons 9 ,
247 .Xr wsdisplay 9 ,
248 .Xr wskbd 9