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