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.
27 .\" $FreeBSD: src/share/man/man4/psm.4,v 1.24.2.9 2002/12/29 16:35:38 schweikh Exp $
28 .\" $DragonFly: src/share/man/man4/psm.4,v 1.7 2008/05/02 02:05:05 swildner Exp $
35 .Nd PS/2 mouse style pointing device driver
37 .Cd "options KBD_RESETDELAY=N"
38 .Cd "options KBD_MAXWAIT=N"
39 .Cd "options PSM_DEBUG=N"
40 .Cd "options KBDIO_DEBUG=N"
41 .Cd "device psm0 at atkbdc? irq 12"
45 driver provides support for the PS/2 mouse style pointing device.
46 Currently there can be only one
48 device node in the system.
49 As the PS/2 mouse port is located
50 at the auxiliary port of the keyboard controller,
51 the keyboard controller driver,
53 must also be configured in the kernel.
54 Note that there is currently no provision of changing the
58 Basic PS/2 style pointing device has two or three buttons.
59 Some devices may have a roller or a wheel and/or additional buttons.
61 The PS/2 style pointing device usually has several grades of resolution,
62 that is, sensitivity of movement.
63 They are typically 25, 50, 100 and 200
65 Some devices may have finer resolution.
66 The current resolution can be changed at runtime.
69 driver allows the user to initially set the resolution
72 .Sx "DRIVER CONFIGURATION" )
73 or change it later via the
80 Frequency, or report rate, at which the device sends movement
81 and button state reports to the host system is also configurable.
82 The PS/2 style pointing device typically supports 10, 20, 40, 60, 80, 100
83 and 200 reports per second.
84 60 or 100 appears to be the default value for many devices.
85 Note that when there is no movement and no button has changed its state,
86 the device won't send anything to the host system.
87 The report rate can be changed via an ioctl call.
91 driver has three levels of operation.
92 The current operation level can be set via an ioctl call.
94 At the level zero the basic support is provided; the device driver will report
95 horizontal and vertical movement of the attached device
96 and state of up to three buttons.
97 The movement and status are encoded in a series of fixed-length data packets
99 .Sx "Data Packet Format" ) .
100 This is the default level of operation and the driver is initially
101 at this level when opened by the user program.
103 The operation level one, the `extended' level, supports a roller (or wheel),
104 if any, and up to 11 buttons.
105 The movement of the roller is reported as movement along the Z axis.
106 8 byte data packets are sent to the user program at this level.
108 At the operation level two, data from the pointing device is passed to the
110 Modern PS/2 type pointing devices often use proprietary data format.
111 Therefore, the user program is expected to have
112 intimate knowledge about the format from a particular device when operating
113 the driver at this level.
114 This level is called `native' level.
115 .Ss Data Packet Format
116 Data packets read from the
118 driver are formatted differently at each operation level.
120 A data packet from the PS/2 mouse style pointing device
121 is three bytes long at the operation level zero:
123 .Bl -tag -width Byte_1 -compact
125 .Bl -tag -width bit_7 -compact
127 One indicates overflow in the vertical movement count.
129 One indicates overflow in the horizontal movement count.
131 Set if the vertical movement count is negative.
133 Set if the horizontal movement count is negative.
136 .\" The ALPS GlidePoint clears this bit when the user `taps' the surface of
137 .\" the pad, otherwise the bit is set.
138 .\" Most, if not all, other devices always set this bit.
140 Middle button status; set if pressed.
141 For devices without the middle
142 button, this bit is always zero.
144 Right button status; set if pressed.
146 Left button status; set if pressed.
149 Horizontal movement count in two's complement;
151 Note that the sign bit is in the first byte.
153 Vertical movement count in two's complement;
155 Note that the sign bit is in the first byte.
158 At the level one, a data packet is encoded
159 in the standard format
160 .Dv MOUSE_PROTO_SYSMOUSE
164 At the level two, native level, there is no standard on the size and format
169 driver can somewhat `accelerate' the movement of the pointing device.
170 The faster you move the device, the further the pointer
171 travels on the screen.
172 The driver has an internal variable which governs the effect of
174 Its value can be modified via the driver flag
175 or via an ioctl call.
177 The minor device number of the
180 .Bd -literal -offset indent
181 minor = (`unit' << 1) | `non-blocking'
184 where `unit' is the device number (usually 0) and the `non-blocking' bit
185 is set to indicate ``don't block waiting for mouse input,
186 return immediately''.
187 The `non-blocking' bit should be set for \fIXFree86\fP,
188 therefore the minor device number usually used for \fIXFree86\fP is 1.
191 for device node names.
192 .Sh DRIVER CONFIGURATION
193 .Ss Kernel Configuration Options
194 There are following kernel configuration options to control the
197 They may be set in the kernel configuration file
200 .Bl -tag -width MOUSE
201 .It Em KBD_RESETDELAY=X , KBD_MAXWAIT=Y
204 driver will attempt to reset the pointing device during the boot process.
205 It sometimes takes a long while before the device will respond after
207 These options control how long the driver should wait before
208 it eventually gives up waiting.
214 If the driver seems unable to detect your pointing
215 device, you may want to increase these values.
216 The default values are
222 .It Em PSM_DEBUG=N , KBDIO_DEBUG=N
223 Sets the debug level to
225 The default debug level is zero.
233 driver accepts the following driver flags.
235 kernel configuration file or in the User Configuration Menu at
239 .Bl -tag -width MOUSE
240 .It bit 0..3 RESOLUTION
241 This flag specifies the resolution of the pointing device.
242 It must be zero through four.
243 The greater the value
244 is, the finer resolution the device will select.
245 Actual resolution selected by this field varies according to the model
247 Typical resolutions are:
249 .Bl -tag -width 0_(medium_high)__ -compact
251 25 pulse per inch (ppi)
252 .It Em 2 (medium low)
254 .It Em 3 (medium high)
260 Leaving this flag zero will selects the default resolution for the
261 device (whatever it is).
262 .It bit 4..7 ACCELERATION
263 This flag controls the amount of acceleration effect.
264 The smaller the value of this flag is, more sensitive the movement becomes.
265 The minimum value allowed, thus the value for the most sensitive setting,
267 Setting this flag to zero will completely disables the
269 .It bit 8 NOCHECKSYNC
272 driver tries to detect the first byte of the data packet by checking
273 the bit pattern of that byte.
274 Although this method should work with most
275 PS/2 pointing devices, it may interfere with some devices which are not
276 so compatible with known devices.
277 If you think your pointing device is not functioning as expected,
278 and the kernel frequently prints the following message to the console,
279 .Bd -literal -offset indent
280 psmintr: out of sync (xxxx != yyyy).
283 set this flag to disable synchronization check and see if it helps.
287 driver will not try to identify the model of the pointing device and
288 will not carry out model-specific initialization.
289 The device should always act like a standard PS/2 mouse without such
291 Extra features, such as wheels and additional buttons, won't be
296 When this flag is set, the
298 driver won't reset the pointing device when initializing the device.
302 is started after another OS has run, the pointing device will inherit
303 settings from the previous OS.
304 However, because there is no way for the
306 driver to know the settings, the device and the driver may not
308 The flag should never be necessary under normal circumstances.
310 Some pad devices report as if the fourth button is pressed
311 when the user `taps' the surface of the device (see
313 This flag will make the
315 driver assume that the device behaves this way.
316 Without the flag, the driver will assume this behavior
317 for ALPS GlidePoint models only.
318 .It bit 12 IGNOREPORTERROR
321 driver ignore certain error conditions when probing the PS/2 mouse port.
322 It should never be necessary under normal circumstances.
323 .It bit 13 HOOKRESUME
324 The built-in PS/2 pointing device of some laptop computers is somehow
325 not operable immediately after the system `resumes' from
326 the power saving mode,
327 though it will eventually become available.
328 There are reports that
329 stimulating the device by performing I/O will help
330 waking up the device quickly.
331 This flag will enable a piece of code in the
334 the `resume' event and exercise some harmless I/O operations on the
336 .It bit 14 INITAFTERSUSPEND
337 This flag adds more drastic action for the above problem.
340 driver to reset and re-initialize the pointing device
341 after the `resume' event.
342 It has no effect unless the
349 commands for mouse drivers.
350 These commands and related structures and constants are defined in
351 .In machine/mouse.h .
352 General description of the commands is given in
354 This section explains the features specific to the
358 .Bl -tag -width MOUSE -compact
359 .It Dv MOUSE_GETLEVEL Ar int *level
360 .It Dv MOUSE_SETLEVEL Ar int *level
361 These commands manipulate the operation level of the
365 .It Dv MOUSE_GETHWINFO Ar mousehw_t *hw
366 Returns the hardware information of the attached device in the following
369 typedef struct mousehw {
370 int buttons; /* number of buttons */
371 int iftype; /* I/F type */
372 int type; /* mouse/track ball/pad... */
373 int model; /* I/F dependent model ID */
374 int hwid; /* I/F dependent hardware ID */
380 field holds the number of buttons on the device.
383 driver currently can detect the 3 button mouse from Logitech and report
385 The 3 button mouse from the other manufacturer may or may not be
387 However, it will not affect the operation of
397 tells the device type:
399 .Dv MOUSE_TRACKBALL ,
404 The user should not heavily rely on this field, as the
405 driver may not always, in fact it is very rarely able to, identify
411 .Dv MOUSE_MODEL_GENERIC
412 at the operation level 0.
414 .Dv MOUSE_MODEL_GENERIC
417 constants at higher operation levels.
420 driver may or may not set an appropriate value in this field.
424 is the ID value returned by the device.
427 .Bl -tag -width 0__ -compact
429 Mouse (Microsoft, Logitech and many other manufacturers)
431 Microsoft Ballpoint mouse
433 Microsoft IntelliMouse
436 .It Dv MOUSE_GETMODE Ar mousemode_t *mode
437 The command gets the current operation parameters of the mouse
440 typedef struct mousemode {
441 int protocol; /* MOUSE_PROTO_XXX */
442 int rate; /* report rate (per sec), -1 if unknown */
443 int resolution; /* MOUSE_RES_XXX, -1 if unknown */
444 int accelfactor; /* acceleration factor */
445 int level; /* driver operation level */
446 int packetsize; /* the length of the data packet */
447 unsigned char syncmask[2]; /* sync. bits */
455 at the operation level zero and two.
456 .Dv MOUSE_PROTO_SYSMOUSE
457 at the operation level one.
461 is the status report rate (reports/sec) at which the device will send
462 movement report to the host computer.
463 Typical supported values are 10, 20, 40, 60, 80, 100 and 200.
464 Some mice may accept other arbitrary values too.
468 of the pointing device must be one of
470 constants or a positive value.
471 The greater the value
472 is, the finer resolution the mouse will select.
473 Actual resolution selected by the
475 constant varies according to the model of mouse.
476 Typical resolutions are:
478 .Bl -tag -width MOUSE_RES_MEDIUMHIGH__ -compact
481 .It Dv MOUSE_RES_MEDIUMLOW
483 .It Dv MOUSE_RES_MEDIUMHIGH
485 .It Dv MOUSE_RES_HIGH
491 field holds a value to control acceleration feature
494 It must be zero or greater. If it is zero, acceleration is disabled.
498 field specifies the length of the data packet.
500 operation level and the model of the pointing device.
502 .Bl -tag -width level_0__ -compact
508 Depends on the model of the device
513 holds a bit mask and pattern to detect the first byte of the
516 is the bit mask to be ANDed with a byte.
517 If the result is equal to
519 the byte is likely to be the first byte of the data packet.
520 Note that this detection method is not 100% reliable,
521 thus, should be taken only as an advisory measure.
523 .It Dv MOUSE_SETMODE Ar mousemode_t *mode
524 The command changes the current operation parameters of the mouse driver
534 Setting values in the other field does not generate
535 error and has no effect.
537 If you do not want to change the current setting of a field, put -1
539 You may also put zero in
543 and the default value for the fields will be selected.
545 .\" .It Dv MOUSE_GETVARS Ar mousevar_t *vars
546 .\" .It Dv MOUSE_SETVARS Ar mousevar_t *vars
547 .\" These commands are not supported by the
551 .It Dv MOUSE_READDATA Ar mousedata_t *data
552 .\" The command reads the raw data from the device.
554 .\" typedef struct mousedata {
555 .\" int len; /* # of data in the buffer */
556 .\" int buf[16]; /* data buffer */
560 .\" Upon returning to the user program, the driver will place the number
561 .\" of valid data bytes in the buffer in the
565 .It Dv MOUSE_READSTATE Ar mousedata_t *state
566 .\" The command reads the hardware settings from the device.
567 .\" Upon returning to the user program, the driver will place the number
568 .\" of valid data bytes in the buffer in the
570 .\" field. It is usually 3 bytes.
571 .\" The buffer is formatted as follows:
573 .\" .Bl -tag -width Byte_1 -compact
575 .\" .Bl -tag -width bit_6 -compact
579 .\" 0 - stream mode, 1 - remote mode.
580 .\" In the stream mode, the pointing device sends the device status
581 .\" whenever its state changes. In the remote mode, the host computer
582 .\" must request the status to be sent.
585 .\" driver puts the device in the stream mode.
587 .\" Set if the pointing device is currently enabled. Otherwise zero.
589 .\" 0 - 1:1 scaling, 1 - 2:1 scaling.
590 .\" 1:1 scaling is the default.
594 .\" Left button status; set if pressed.
596 .\" Middle button status; set if pressed.
598 .\" Right button status; set if pressed.
601 .\" .Bl -tag -width bit_6_0 -compact
605 .\" Resolution code: zero through three. Actual resolution for
606 .\" the resolution code varies from one device to another.
609 .\" The status report rate (reports/sec) at which the device will send
610 .\" movement report to the host computer.
612 These commands are not currently supported by the
616 .It Dv MOUSE_GETSTATUS Ar mousestatus_t *status
617 The command returns the current state of buttons and
618 movement counts as described in
622 .Bl -tag -width /dev/npsm0 -compact
624 `non-blocking' device node
626 `blocking' device node
629 .Dl "device psm0 at atkbdc? irq 12 flags 0x2000"
633 driver to the kernel with the optional code to stimulate the pointing device
634 after the `resume' event.
636 .Dl "device psm0 at atkbdc? flags 0x024 irq 12"
638 Set the device resolution high (4) and the acceleration factor to 2.
640 At debug level 0, little information is logged except for the following
641 line during boot process:
642 .Bd -literal -offset indent
648 the device ID code returned by the found pointing device.
653 At debug level 1 more information will be logged
654 while the driver probes the auxiliary port (mouse port).
655 Messages are logged with the LOG_KERN facility at the LOG_DEBUG level
658 .Bd -literal -offset indent
659 psm0: current command byte:xxxx
660 kbdio: TEST_AUX_PORT status:0000
661 kbdio: RESET_AUX return code:00fa
662 kbdio: RESET_AUX status:00aa
663 kbdio: RESET_AUX ID:0000
667 psm0: model AAAA, device ID X, N buttons
668 psm0: config:00000www, flags:0000uuuu, packet size:M
669 psm0: syncmask:xx, syncbits:yy
672 The first line shows the command byte value of the keyboard
673 controller just before the auxiliary port is probed.
674 It usually is 4D, 45, 47 or 65, depending on how the motherboard BIOS
675 initialized the keyboard controller upon power-up.
677 The second line shows the result of the keyboard controller's
678 test on the auxiliary port interface, with zero indicating
679 no error; note that some controllers report no error even if
680 the port does not exist in the system, however.
682 The third through fifth lines show the reset status of the pointing device.
683 The functioning device should return the sequence of FA AA <ID>.
684 The ID code is described above.
686 The seventh line shows the current hardware settings.
688 .\" .Dv MOUSE_READSTATE
690 These bytes are formatted as follows:
692 .Bl -tag -width Byte_1 -compact
694 .Bl -tag -width bit_6 -compact
698 0 - stream mode, 1 - remote mode.
699 In the stream mode, the pointing device sends the device status
700 whenever its state changes.
701 In the remote mode, the host computer
702 must request the status to be sent.
705 driver puts the device in the stream mode.
707 Set if the pointing device is currently enabled.
710 0 - 1:1 scaling, 1 - 2:1 scaling.
711 1:1 scaling is the default.
715 Left button status; set if pressed.
717 Middle button status; set if pressed.
719 Right button status; set if pressed.
722 .Bl -tag -width bit_6_0 -compact
726 Resolution code: zero through three.
727 Actual resolution for
728 the resolution code varies from one device to another.
731 The status report rate (reports/sec) at which the device will send
732 movement report to the host computer.
735 Note that the pointing device will not be enabled until the
737 driver is opened by the user program.
739 The rest of the lines show the device ID code, the number of detected
740 buttons and internal variables.
742 At debug level 2, much more detailed information is logged.
744 Many pad devices behave as if the first (left) button were pressed if
745 the user `taps' the surface of the pad.
746 In contrast, some pad products, e.g. some versions of ALPS GlidePoint
747 and Interlink VersaPad, treat the tapping action
748 as fourth button events.
750 It is reported that Interlink VersaPad requires both
754 flags in order to recover from suspended state.
755 These flags are automatically set when VersaPad is detected by the
759 Some PS/2 mouse models from MouseSystems require to be put in the
760 high resolution mode to work properly.
761 Use the driver flag to
764 There is not a guaranteed way to re-synchronize with the first byte
765 of the packet once we are out of synchronization with the data
767 However, if you are using the \fIXFree86\fP server and experiencing
768 the problem, you may be able to make the X server synchronize with the mouse
769 by switching away to a virtual terminal and getting back to the X server,
770 unless the X server is accessing the mouse via
772 Clicking any button without moving the mouse may also work.
787 driver is based on the work done by quite a number of people, including
798 This manual page was written by
799 .An Kazutaka Yokota Aq yokota@FreeBSD.org .
804 It was never functional anyway.