3 .\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
4 .\" All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
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.
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.
34 .Nd mouse and pointing device drivers
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
52 The user program simply opens a mouse device with a
55 mouse data from the device via
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.
61 The mouse drivers may have ``non-blocking'' attribute which will make
62 the driver return immediately if mouse data is not available.
64 Mouse device drivers often offer several levels of operation.
65 The current operation level can be examined and changed via
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
77 .Bl -tag -width Byte_1 -compact
79 .Bl -tag -width bit_7 -compact
85 Left button status; cleared if pressed, otherwise set.
87 Middle button status; cleared if pressed, otherwise set.
89 if the device does not have the middle button.
91 Right button status; cleared if pressed, otherwise set.
94 The first half of horizontal movement count in two's complement;
97 The first half of vertical movement count in two's complement;
100 The second half of the horizontal movement count in two's complement;
102 To obtain the full horizontal movement count, add
105 The second half of the vertical movement count in two's complement;
107 To obtain the full vertical movement count, add
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.
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.
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.
127 The first 5 bytes of this format is compatible with the MouseSystems
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
133 it will discard the additional bytes, thus, be able to decode x, y
134 and states of 3 buttons correctly.
136 Device drivers may offer operation levels higher than one.
137 Refer to manual pages of individual drivers for details.
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.
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.
153 .It Dv MOUSE_GETHWINFO Ar mousehw_t *hw
154 Returns the hardware information of the attached device in the following
157 field, the device driver may not always fill the structure with correct
159 Consult manual pages of individual drivers for details of support.
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 */
172 field holds the number of buttons detected by the driver.
174 may put an arbitrary value, such as two, in this field, if it cannot
175 determine the exact number.
179 is the type of interface:
180 .Dv MOUSE_IF_SERIAL ,
182 .Dv MOUSE_IF_INPORT ,
185 .Dv MOUSE_IF_SYSMOUSE
187 .Dv MOUSE_IF_UNKNOWN .
191 tells the device type:
193 .Dv MOUSE_TRACKBALL ,
202 .Dv MOUSE_MODEL_GENERIC
209 is the ID value returned by the pointing device.
211 depend on the interface type; refer to the manual page of
212 specific mouse drivers for possible values.
214 .It Dv MOUSE_GETMODE Ar mousemode_t *mode
215 The command reports the current operation parameters of the mouse driver.
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 */
230 field tells the format in which the device status is returned
231 when the mouse data is read by the user program.
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.
244 field holds a value specifying resolution of the pointing device.
245 It is a positive value or one of
251 field holds a value to control acceleration feature.
252 It must be zero or greater.
253 If it is zero, acceleration is disabled.
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.
264 holds a bit mask and pattern to detect the first byte of the
267 is the bit mask to be ANDed with a byte.
268 If the result is equal to
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.
274 .It Dv MOUSE_SETMODE Ar mousemode_t *mode
275 The command changes the current operation parameters of the mouse driver
285 Setting values in the other field does not generate
286 error and has no effect.
288 If you do not want to change the current setting of a field, put -1
290 You may also put zero in
294 and the default value for the fields will be selected.
296 .\" .It Dv MOUSE_GETVARS Ar mousevar_t *vars
297 .\" Get internal variables of the mouse driver.
298 .\" The variables which can be manipulated through these commands
299 .\" are specific to each driver.
300 .\" This command may not be supported by all drivers.
302 .\" typedef struct mousevar {
303 .\" int var[16]; /* internal variables */
307 .\" If the commands are supported, the first element of the array is
308 .\" filled with a signature value.
309 .\" Apart from the signature data, there is currently no standard concerning
310 .\" the other elements of the buffer.
312 .\" .It Dv MOUSE_SETVARS Ar mousevar_t *vars
313 .\" Get internal variables of the mouse driver.
314 .\" The first element of the array must be a signature value.
315 .\" This command may not be supported by all drivers.
317 .It Dv MOUSE_READDATA Ar mousedata_t *data
318 The command reads the raw data from the device.
320 typedef struct mousedata {
321 int len; /* # of data in the buffer */
322 int buf[16]; /* data buffer */
326 The calling process must fill the
328 field with the number of bytes to be read into the buffer.
329 This command may not be supported by all drivers.
331 .It Dv MOUSE_READSTATE Ar mousedata_t *state
332 The command reads the raw state data from the device.
333 It uses the same structure as above.
334 This command may not be supported by all drivers.
336 .It Dv MOUSE_GETSTATUS Ar mousestatus_t *status
337 The command returns the current state of buttons and
338 movement counts in the following structure.
340 typedef struct mousestatus {
341 int flags; /* state change flags */
342 int button; /* button status */
343 int obutton; /* previous button status */
344 int dx; /* x movement */
345 int dy; /* y movement */
346 int dz; /* z movement */
354 fields hold the current and the previous state of the mouse buttons.
355 When a button is pressed, the corresponding bit is set.
356 The mouse drivers may support up to 31 buttons with the bit 0 through 31.
357 Few button bits are defined as
358 .Dv MOUSE_BUTTON1DOWN
360 .Dv MOUSE_BUTTON8DOWN .
361 The first three buttons correspond to left, middle and right buttons.
363 If the state of the button has changed since the last
365 call, the corresponding bit in the
368 If the mouse has moved since the last call, the
372 field will also be set.
374 The other fields hold movement counts since the last
377 The internal counters will be reset after every call to this
381 .Bl -tag -width /dev/sysmouseXX -compact
385 bus and InPort mouse device
402 This manual page was written by
403 .An Kazutaka Yokota Aq yokota@FreeBSD.org .