]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/mouse.4
Upgrade to OpenSSH 7.8p1.
[FreeBSD/FreeBSD.git] / share / man / man4 / mouse.4
1 .\"
2 .\" Copyright (c) 1997
3 .\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer as
11 .\"    the first lines of this file unmodified.
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 ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 .\"
27 .\" $FreeBSD$
28 .\"
29 .Dd December 3, 1997
30 .Dt MOUSE 4
31 .Os
32 .Sh NAME
33 .Nm mouse
34 .Nd mouse and pointing device drivers
35 .Sh SYNOPSIS
36 .In sys/mouse.h
37 .Sh DESCRIPTION
38 The mouse drivers
39 .Xr mse 4 ,
40 .Xr psm 4 ,
41 .Xr ums 4
42 and
43 .Xr sysmouse 4
44 provide user programs with movement and button state information of the mouse.
45 Currently there are specific device drivers for bus, InPort, PS/2, and USB mice.
46 The serial mouse is not directly supported by a dedicated driver, but
47 it is accessible via the serial device driver or via
48 .Xr moused 8
49 and
50 .Xr sysmouse 4 .
51 .Pp
52 The user program simply opens a mouse device with a
53 .Xr open 2
54 call and reads
55 mouse data from the device via
56 .Xr read 2 .
57 Movement and button states are usually encoded in fixed-length data packets.
58 Some mouse devices may send data in variable length of packets.
59 Actual protocol (data format) used by each driver differs widely.
60 .Pp
61 The mouse drivers may have ``non-blocking'' attribute which will make
62 the driver return immediately if mouse data is not available.
63 .Pp
64 Mouse device drivers often offer several levels of operation.
65 The current operation level can be examined and changed via
66 .Xr ioctl 2
67 commands.
68 The level zero is the lowest level at which the driver offers the basic
69 service to user programs.
70 Most drivers provide horizontal and vertical movement of the mouse
71 and state of up to three buttons at this level.
72 At the level one, if supported by the driver, mouse data is encoded
73 in the standard format
74 .Dv MOUSE_PROTO_SYSMOUSE
75 as follows:
76 .Pp
77 .Bl -tag -width Byte_1 -compact
78 .It Byte 1
79 .Bl -tag -width bit_7 -compact
80 .It bit 7
81 Always one.
82 .It bit 6..3
83 Always zero.
84 .It bit 2
85 Left button status; cleared if pressed, otherwise set.
86 .It bit 1
87 Middle button status; cleared if pressed, otherwise set.
88 Always one,
89 if the device does not have the middle button.
90 .It bit 0
91 Right button status; cleared if pressed, otherwise set.
92 .El
93 .It Byte 2
94 The first half of horizontal movement count in two's complement;
95 -128 through 127.
96 .It Byte 3
97 The first half of vertical movement count in two's complement;
98 -128 through 127.
99 .It Byte 4
100 The second half of the horizontal movement count in two's complement;
101 -128 through 127.
102 To obtain the full horizontal movement count, add
103 the byte 2 and 4.
104 .It Byte 5
105 The second half of the vertical movement count in two's complement;
106 -128 through 127.
107 To obtain the full vertical movement count, add
108 the byte 3 and 5.
109 .It Byte 6
110 The bit 7 is always zero.
111 The lower 7 bits encode the first half of
112 Z axis movement count in two's complement; -64 through 63.
113 .It Byte 7
114 The bit 7 is always zero.
115 The lower 7 bits encode the second half of
116 the Z axis movement count in two's complement; -64 through 63.
117 To obtain the full Z axis movement count, add the byte 6 and 7.
118 .It Byte 8
119 The bit 7 is always zero.
120 The bits 0 through 6 reflect the state
121 of the buttons 4 through 10.
122 If a button is pressed, the corresponding bit is cleared.
123 Otherwise
124 the bit is set.
125 .El
126 .Pp
127 The first 5 bytes of this format is compatible with the MouseSystems
128 format.
129 The additional 3 bytes have their MSBs always set to zero.
130 Thus, if the user program can interpret the MouseSystems data format and
131 tries to find the first byte of the format by detecting the bit pattern
132 10000xxxb,
133 it will discard the additional bytes, thus, be able to decode x, y
134 and states of 3 buttons correctly.
135 .Pp
136 Device drivers may offer operation levels higher than one.
137 Refer to manual pages of individual drivers for details.
138 .Sh IOCTLS
139 The following
140 .Xr ioctl 2
141 commands are defined for the mouse drivers.
142 The degree of support
143 varies from one driver to another.
144 This section gives general
145 description of the commands.
146 Refer to manual pages of individual drivers for specific details.
147 .Pp
148 .Bl -tag -width MOUSE -compact
149 .It Dv MOUSE_GETLEVEL Ar int *level
150 .It Dv MOUSE_SETLEVEL Ar int *level
151 These commands manipulate the operation level of the mouse driver.
152 .Pp
153 .It Dv MOUSE_GETHWINFO Ar mousehw_t *hw
154 Returns the hardware information of the attached device in the following
155 Except for the
156 .Dv iftype
157 field, the device driver may not always fill the structure with correct
158 values.
159 Consult manual pages of individual drivers for details of support.
160 .Bd -literal
161 typedef struct mousehw {
162     int buttons;    /* number of buttons */
163     int iftype;     /* I/F type */
164     int type;       /* mouse/track ball/pad... */
165     int model;      /* I/F dependent model ID */
166     int hwid;       /* I/F dependent hardware ID */
167 } mousehw_t;
168 .Ed
169 .Pp
170 The
171 .Dv buttons
172 field holds the number of buttons detected by the driver.
173 The driver
174 may put an arbitrary value, such as two, in this field, if it cannot
175 determine the exact number.
176 .Pp
177 The
178 .Dv iftype
179 is the type of interface:
180 .Dv MOUSE_IF_SERIAL ,
181 .Dv MOUSE_IF_BUS ,
182 .Dv MOUSE_IF_INPORT ,
183 .Dv MOUSE_IF_PS2 ,
184 .Dv MOUSE_IF_USB ,
185 .Dv MOUSE_IF_SYSMOUSE
186 or
187 .Dv MOUSE_IF_UNKNOWN .
188 .Pp
189 The
190 .Dv type
191 tells the device type:
192 .Dv MOUSE_MOUSE ,
193 .Dv MOUSE_TRACKBALL ,
194 .Dv MOUSE_STICK ,
195 .Dv MOUSE_PAD ,
196 or
197 .Dv MOUSE_UNKNOWN .
198 .Pp
199 The
200 .Dv model
201 may be
202 .Dv MOUSE_MODEL_GENERIC
203 or one of
204 .Dv MOUSE_MODEL_XXX
205 constants.
206 .Pp
207 The
208 .Dv hwid
209 is the ID value returned by the pointing device.
210 It
211 depend on the interface type; refer to the manual page of
212 specific mouse drivers for possible values.
213 .Pp
214 .It Dv MOUSE_GETMODE Ar mousemode_t *mode
215 The command reports the current operation parameters of the mouse driver.
216 .Bd -literal
217 typedef struct mousemode {
218     int protocol;    /* MOUSE_PROTO_XXX */
219     int rate;        /* report rate (per sec) */
220     int resolution;  /* MOUSE_RES_XXX, -1 if unknown */
221     int accelfactor; /* acceleration factor */
222     int level;       /* driver operation level */
223     int packetsize;  /* the length of the data packet */
224     unsigned char syncmask[2]; /* sync. bits */
225 } mousemode_t;
226 .Ed
227 .Pp
228 The
229 .Dv protocol
230 field tells the format in which the device status is returned
231 when the mouse data is read by the user program.
232 It is one of
233 .Dv MOUSE_PROTO_XXX
234 constants.
235 .Pp
236 The
237 .Dv rate
238 field is the status report rate (reports/sec) at which the device will send
239 movement reports to the host computer.
240 -1 if unknown or not applicable.
241 .Pp
242 The
243 .Dv resolution
244 field holds a value specifying resolution of the pointing device.
245 It is a positive value or one of
246 .Dv MOUSE_RES_XXX
247 constants.
248 .Pp
249 The
250 .Dv accelfactor
251 field holds a value to control acceleration feature.
252 It must be zero or greater.
253 If it is zero, acceleration is disabled.
254 .Pp
255 The
256 .Dv packetsize
257 field tells the length of the fixed-size data packet or the length
258 of the fixed part of the variable-length packet.
259 The size depends on the interface type, the device type and model, the
260 protocol and the operation level of the driver.
261 .Pp
262 The array
263 .Dv syncmask
264 holds a bit mask and pattern to detect the first byte of the
265 data packet.
266 .Dv syncmask[0]
267 is the bit mask to be ANDed with a byte.
268 If the result is equal to
269 .Dv syncmask[1] ,
270 the byte is likely to be the first byte of the data packet.
271 Note that this method of detecting the first byte is not 100% reliable,
272 thus, should be taken only as an advisory measure.
273 .Pp
274 .It Dv MOUSE_SETMODE Ar mousemode_t *mode
275 The command changes the current operation parameters of the mouse driver
276 as specified in
277 .Ar mode .
278 Only
279 .Dv rate ,
280 .Dv resolution ,
281 .Dv level
282 and
283 .Dv accelfactor
284 may be modifiable.
285 Setting values in the other field does not generate
286 error and has no effect.
287 .Pp
288 If you do not want to change the current setting of a field, put -1
289 there.
290 You may also put zero in
291 .Dv resolution
292 and
293 .Dv rate ,
294 and the default value for the fields will be selected.
295 .Pp
296 .It Dv MOUSE_READDATA Ar mousedata_t *data
297 The command reads the raw data from the device.
298 .Bd -literal
299 typedef struct mousedata {
300     int len;        /* # of data in the buffer */
301     int buf[16];    /* data buffer */
302 } mousedata_t;
303 .Ed
304 .Pp
305 The calling process must fill the
306 .Dv len
307 field with the number of bytes to be read into the buffer.
308 This command may not be supported by all drivers.
309 .Pp
310 .It Dv MOUSE_READSTATE Ar mousedata_t *state
311 The command reads the raw state data from the device.
312 It uses the same structure as above.
313 This command may not be supported by all drivers.
314 .Pp
315 .It Dv MOUSE_GETSTATUS Ar mousestatus_t *status
316 The command returns the current state of buttons and
317 movement counts in the following structure.
318 .Bd -literal
319 typedef struct mousestatus {
320     int flags;      /* state change flags */
321     int button;     /* button status */
322     int obutton;    /* previous button status */
323     int dx;         /* x movement */
324     int dy;         /* y movement */
325     int dz;         /* z movement */
326 } mousestatus_t;
327 .Ed
328 .Pp
329 The
330 .Dv button
331 and
332 .Dv obutton
333 fields hold the current and the previous state of the mouse buttons.
334 When a button is pressed, the corresponding bit is set.
335 The mouse drivers may support up to 31 buttons with the bit 0 through 31.
336 Few button bits are defined as
337 .Dv MOUSE_BUTTON1DOWN
338 through
339 .Dv MOUSE_BUTTON8DOWN .
340 The first three buttons correspond to left, middle and right buttons.
341 .Pp
342 If the state of the button has changed since the last
343 .Dv MOUSE_GETSTATUS
344 call, the corresponding bit in the
345 .Dv flags
346 field will be set.
347 If the mouse has moved since the last call, the
348 .Dv MOUSE_POSCHANGED
349 bit in the
350 .Dv flags
351 field will also be set.
352 .Pp
353 The other fields hold movement counts since the last
354 .Dv MOUSE_GETSTATUS
355 call.
356 The internal counters will be reset after every call to this
357 command.
358 .El
359 .Sh FILES
360 .Bl -tag -width /dev/sysmouseXX -compact
361 .It Pa /dev/cuau%d
362 serial ports
363 .It Pa /dev/mse%d
364 bus and InPort mouse device
365 .It Pa /dev/psm%d
366 PS/2 mouse device
367 .It Pa /dev/sysmouse
368 virtual mouse device
369 .It Pa /dev/ums%d
370 USB mouse device
371 .El
372 .Sh SEE ALSO
373 .Xr ioctl 2 ,
374 .Xr mse 4 ,
375 .Xr psm 4 ,
376 .Xr sysmouse 4 ,
377 .Xr ums 4 ,
378 .Xr moused 8
379 .\".Sh HISTORY
380 .Sh AUTHORS
381 This manual page was written by
382 .An Kazutaka Yokota Aq Mt yokota@FreeBSD.org .