xref: /freebsd/share/man/man4/psm.4 (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
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 April 1, 2000
30.Dt PSM 4
31.Os FreeBSD
32.Sh NAME
33.Nm psm
34.Nd PS/2 mouse style pointing device driver
35.Sh SYNOPSIS
36.Cd "options KBD_RESETDELAY=N"
37.Cd "options KBD_MAXWAIT=N"
38.Cd "options PSM_DEBUG=N"
39.Cd "options KBDIO_DEBUG=N"
40.Cd "device psm0 at atkbdc? irq 12"
41.Sh DESCRIPTION
42The
43.Nm
44driver provides support for the PS/2 mouse style pointing device.
45Currently there can be only one
46.Nm
47device node in the system.
48As the PS/2 mouse port is located
49at the auxiliary port of the keyboard controller,
50the keyboard controller driver,
51.Nm atkbdc ,
52must also be configured in the kernel.
53Note that there is currently no provision of changing the
54.Em irq
55number.
56.Pp
57Basic PS/2 style pointing device has two or three buttons.
58Some devices may have a roller or a wheel and/or additional buttons.
59.Ss Device Resolution
60The PS/2 style pointing device usually has several grades of resolution,
61that is, sensitivity of movement.
62They are typically 25, 50, 100 and 200
63pulse per inch.
64Some devices may have finer resolution.
65The current resolution can be changed at runtime.
66The
67.Nm
68driver allows the user to initially set the resolution
69via the driver flag
70.Pq see Sx DRIVER CONFIGURATION
71or change it later via the
72.Xr ioctl 2
73command
74.Dv MOUSE_SETMODE
75.Pq see Sx IOCTLS .
76.Ss Report Rate
77Frequency, or report rate, at which the device sends movement
78and button state reports to the host system is also configurable.
79The PS/2 style pointing device typically supports 10, 20, 40, 60, 80, 100
80and 200 reports per second.
8160 or 100 appears to be the default value for many devices.
82Note that when there is no movement and no button has changed its state,
83the device won't send anything to the host system.
84The report rate can be changed via an ioctl call.
85.Ss Operation Levels
86The
87.Nm
88driver has three levels of operation.
89The current operation level can be set via an ioctl call.
90.Pp
91At the level zero the basic support is provided; the device driver will report
92horizontal and vertical movement of the attached device
93and state of up to three buttons.
94The movement and status are encoded in a series of fixed-length data packets
95.Pq see Sx Data Packet Format .
96This is the default level of operation and the driver is initially
97at this level when opened by the user program.
98.Pp
99The operation level one, the `extended' level, supports a roller (or wheel),
100if any, and up to 11 buttons.
101The movement of the roller is reported as movement along the Z axis.
1028 byte data packets are sent to the user program at this level.
103.Pp
104At the operation level two, data from the pointing device is passed to the
105user program as is.
106Modern PS/2 type pointing devices often use proprietary data format.
107Therefore, the user program is expected to have
108intimate knowledge about the format from a particular device when operating
109the driver at this level.
110This level is called `native' level.
111.Ss Data Packet Format
112Data packets read from the
113.Nm
114driver are formatted differently at each operation level.
115.Pp
116A data packet from the PS/2 mouse style pointing device
117is three bytes long at the operation level zero:
118.Pp
119.Bl -tag -width Byte_1 -compact
120.It Byte 1
121.Bl -tag -width bit_7 -compact
122.It bit 7
123One indicates overflow in the vertical movement count.
124.It bit 6
125One indicates overflow in the horizontal movement count.
126.It bit 5
127Set if the vertical movement count is negative.
128.It bit 4
129Set if the horizontal movement count is negative.
130.It bit 3
131Always one.
132.\" The ALPS GlidePoint clears this bit when the user `taps' the surface of
133.\" the pad, otherwise the bit is set.
134.\" Most, if not all, other devices always set this bit.
135.It bit 2
136Middle button status; set if pressed.
137For devices without the middle
138button, this bit is always zero.
139.It bit 1
140Right button status; set if pressed.
141.It bit 0
142Left button status; set if pressed.
143.El
144.It Byte 2
145Horizontal movement count in two's complement;
146-256 through 255.
147Note that the sign bit is in the first byte.
148.It Byte 3
149Vertical movement count in two's complement;
150-256 through 255.
151Note that the sign bit is in the first byte.
152.El
153.Pp
154At the level one, a data packet is encoded
155in the standard format
156.Dv MOUSE_PROTO_SYSMOUSE
157as defined in
158.Xr mouse 4 .
159.Pp
160At the level two, native level, there is no standard on the size and format
161of the data packet.
162.Ss Acceleration
163The
164.Nm
165driver can somewhat `accelerate' the movement of the pointing device.
166The faster you move the device, the further the pointer
167travels on the screen.
168The driver has an internal variable which governs the effect of
169the acceleration.
170Its value can be modified via the driver flag
171or via an ioctl call.
172.Ss Device Number
173The minor device number of the
174.Nm
175is made up of:
176.Bd -literal -offset indent
177minor = (`unit' << 1) | `non-blocking'
178.Ed
179.Pp
180where `unit' is the device number (usually 0) and the `non-blocking' bit
181is set to indicate ``don't block waiting for mouse input,
182return immediately''.
183The `non-blocking' bit should be set for \fIXFree86\fP,
184therefore the minor device number usually used for \fIXFree86\fP is 1.
185See
186.Sx FILES
187for device node names.
188.Sh DRIVER CONFIGURATION
189.Ss Kernel Configuration Options
190There are following kernel configuration options to control the
191.Nm
192driver.
193They may be set in the kernel configuration file
194.Pq see Xr config 8 .
195.Bl -tag -width MOUSE
196.It Em KBD_RESETDELAY=X , KBD_MAXWAIT=Y
197The
198.Nm
199driver will attempt to reset the pointing device during the boot process.
200It sometimes takes a long while before the device will respond after
201reset.
202These options control how long the driver should wait before
203it eventually gives up waiting.
204The driver will wait
205.Fa X
206*
207.Fa Y
208msecs at most.
209If the driver seems unable to detect your pointing
210device, you may want to increase these values.
211The default values are
212200 msec for
213.Fa X
214and 5
215for
216.Fa Y .
217.It Em PSM_DEBUG=N , KBDIO_DEBUG=N
218Sets the debug level to
219.Fa N .
220The default debug level is zero.
221See
222.Sx DIAGNOSTICS
223for debug logging.
224.El
225.Ss Driver Flags
226The
227.Nm
228driver accepts the following driver flags.
229Set them in the
230kernel configuration file or in the User Configuration Menu at
231the boot time
232.Pq see Xr boot 8 .
233.Pp
234.Bl -tag -width MOUSE
235.It bit 0..3 RESOLUTION
236This flag specifies the resolution of the pointing device.
237It must be zero through four.
238The greater the value
239is, the finer resolution the device will select.
240Actual resolution selected by this field varies according to the model
241of the device.
242Typical resolutions are:
243.Pp
244.Bl -tag -width 0_(medium_high)__ -compact
245.It Em 1 (low)
24625 pulse per inch (ppi)
247.It Em 2 (medium low)
24850 ppi
249.It Em 3 (medium high)
250100 ppi
251.It Em 4 (high)
252200 ppi
253.El
254.Pp
255Leaving this flag zero will selects the default resolution for the
256device (whatever it is).
257.It bit 4..7 ACCELERATION
258This flag controls the amount of acceleration effect.
259The smaller the value of this flag is, more sensitive the movement becomes.
260The minimum value allowed, thus the value for the most sensitive setting,
261is one.
262Setting this flag to zero will completely disables the
263acceleration effect.
264.It bit 8 NOCHECKSYNC
265The
266.Nm
267driver tries to detect the first byte of the data packet by checking
268the bit pattern of that byte.
269Although this method should work with most
270PS/2 pointing devices, it may interfere with some devices which are not
271so compatible with known devices.
272If you think your pointing device is not functioning as expected,
273and the kernel frequently prints the following message to the console,
274.Bd -literal -offset indent
275psmintr: out of sync (xxxx != yyyy).
276.Ed
277.Pp
278set this flag to disable synchronization check and see if it helps.
279.It bit 9 NOIDPROBE
280The
281.Nm
282driver will not try to identify the model of the pointing device and
283will not carry out model-specific initialization.
284The device should always act like a standard PS/2 mouse without such
285initialization.
286Extra features, such as wheels and additional buttons, won't be
287recognized by the
288.Nm
289driver.
290.It bit 10 NORESET
291When this flag is set, the
292.Nm
293driver won't reset the pointing device when initializing the device.
294If the
295.Fx
296kernel
297is started after another OS has run, the pointing device will inherit
298settings from the previous OS.
299However, because there is no way for the
300.Nm
301driver to know the settings, the device and the driver may not
302work correctly.
303The flag should never be necessary under normal circumstances.
304.It bit 11 FORCETAP
305Some pad devices report as if the fourth button is pressed
306when the user `taps' the surface of the device (see
307.Sx CAVEATS ) .
308This flag will make the
309.Nm
310driver assume that the device behaves this way.
311Without the flag, the driver will assume this behavior
312for ALPS GlidePoint models only.
313.It bit 12 IGNOREPORTERROR
314This flag makes
315.Nm
316driver ignore certain error conditions when probing the PS/2 mouse port.
317It should never be necessary under normal circumstances.
318.It bit 13 HOOKRESUME
319The built-in PS/2 pointing device of some laptop computers is somehow
320not operable immediately after the system `resumes' from
321the power saving mode,
322though it will eventually become available.
323There are reports that
324stimulating the device by performing I/O will help
325waking up the device quickly.
326This flag will enable a piece of code in the
327.Nm
328driver to hook
329the `resume' event and exercise some harmless I/O operations on the
330device.
331.It bit 14 INITAFTERSUSPEND
332This flag adds more drastic action for the above problem.
333It will cause the
334.Nm
335driver to reset and re-initialize the pointing device
336after the `resume' event.
337It has no effect unless the
338.Em HOOKRESUME
339flag is set as well.
340.El
341.Sh IOCTLS
342There are a few
343.Xr ioctl 2
344commands for mouse drivers.
345These commands and related structures and constants are defined in
346.Ao Pa sys/mouse.h Ac .
347General description of the commands is given in
348.Xr mouse 4 .
349This section explains the features specific to the
350.Nm
351driver.
352.Pp
353.Bl -tag -width MOUSE -compact
354.It Dv MOUSE_GETLEVEL Ar int *level
355.It Dv MOUSE_SETLEVEL Ar int *level
356These commands manipulate the operation level of the
357.Nm
358driver.
359.Pp
360.It Dv MOUSE_GETHWINFO Ar mousehw_t *hw
361Returns the hardware information of the attached device in the following
362structure.
363.Bd -literal
364typedef struct mousehw {
365    int buttons;    /* number of buttons */
366    int iftype;     /* I/F type */
367    int type;       /* mouse/track ball/pad... */
368    int model;      /* I/F dependent model ID */
369    int hwid;       /* I/F dependent hardware ID */
370} mousehw_t;
371.Ed
372.Pp
373The
374.Dv buttons
375field holds the number of buttons on the device.
376The
377.Nm
378driver currently can detect the 3 button mouse from Logitech and report
379accordingly.
380The 3 button mouse from the other manufacturer may or may not be
381reported correctly.
382However, it will not affect the operation of
383the driver.
384.Pp
385The
386.Dv iftype
387is always
388.Dv MOUSE_IF_PS2 .
389.Pp
390The
391.Dv type
392tells the device type:
393.Dv MOUSE_MOUSE ,
394.Dv MOUSE_TRACKBALL ,
395.Dv MOUSE_STICK ,
396.Dv MOUSE_PAD ,
397or
398.Dv MOUSE_UNKNOWN .
399The user should not heavily rely on this field, as the
400driver may not always, in fact it is very rarely able to, identify
401the device type.
402.Pp
403The
404.Dv model
405is always
406.Dv MOUSE_MODEL_GENERIC
407at the operation level 0.
408It may be
409.Dv MOUSE_MODEL_GENERIC
410or one of
411.Dv MOUSE_MODEL_XXX
412constants at higher operation levels.
413Again the
414.Nm
415driver may or may not set an appropriate value in this field.
416.Pp
417The
418.Dv hwid
419is the ID value returned by the device.
420Known IDs include:
421.Pp
422.Bl -tag -width 0__ -compact
423.It Em 0
424Mouse (Microsoft, Logitech and many other manufacturers)
425.It Em 2
426Microsoft Ballpoint mouse
427.It Em 3
428Microsoft IntelliMouse
429.El
430.Pp
431.It Dv MOUSE_GETMODE Ar mousemode_t *mode
432The command gets the current operation parameters of the mouse
433driver.
434.Bd -literal
435typedef struct mousemode {
436    int protocol;    /* MOUSE_PROTO_XXX */
437    int rate;        /* report rate (per sec), -1 if unknown */
438    int resolution;  /* MOUSE_RES_XXX, -1 if unknown */
439    int accelfactor; /* acceleration factor */
440    int level;       /* driver operation level */
441    int packetsize;  /* the length of the data packet */
442    unsigned char syncmask[2]; /* sync. bits */
443} mousemode_t;
444.Ed
445.Pp
446The
447.Dv protocol
448is
449.Dv MOUSE_PROTO_PS2
450at the operation level zero and two.
451.Dv MOUSE_PROTO_SYSMOUSE
452at the operation level one.
453.Pp
454The
455.Dv rate
456is the status report rate (reports/sec) at which the device will send
457movement report to the host computer.
458Typical supported values are 10, 20, 40, 60, 80, 100 and 200.
459Some mice may accept other arbitrary values too.
460.Pp
461The
462.Dv resolution
463of the pointing device must be one of
464.Dv MOUSE_RES_XXX
465constants or a positive value.
466The greater the value
467is, the finer resolution the mouse will select.
468Actual resolution selected by the
469.Dv MOUSE_RES_XXX
470constant varies according to the model of mouse.
471Typical resolutions are:
472.Pp
473.Bl -tag -width MOUSE_RES_MEDIUMHIGH__ -compact
474.It Dv MOUSE_RES_LOW
47525 ppi
476.It Dv MOUSE_RES_MEDIUMLOW
47750 ppi
478.It Dv MOUSE_RES_MEDIUMHIGH
479100 ppi
480.It Dv MOUSE_RES_HIGH
481200 ppi
482.El
483.Pp
484The
485.Dv accelfactor
486field holds a value to control acceleration feature
487.Pq see Sx Acceleration .
488It must be zero or greater.  If it is zero, acceleration is disabled.
489.Pp
490The
491.Dv packetsize
492field specifies the length of the data packet.
493It depends on the
494operation level and the model of the pointing device.
495.Pp
496.Bl -tag -width level_0__ -compact
497.It Em level 0
4983 bytes
499.It Em level 1
5008 bytes
501.It Em level 2
502Depends on the model of the device
503.El
504.Pp
505The array
506.Dv syncmask
507holds a bit mask and pattern to detect the first byte of the
508data packet.
509.Dv syncmask[0]
510is the bit mask to be ANDed with a byte.
511If the result is equal to
512.Dv syncmask[1] ,
513the byte is likely to be the first byte of the data packet.
514Note that this detection method is not 100% reliable,
515thus, should be taken only as an advisory measure.
516.Pp
517.It Dv MOUSE_SETMODE Ar mousemode_t *mode
518The command changes the current operation parameters of the mouse driver
519as specified in
520.Ar mode .
521Only
522.Dv rate ,
523.Dv resolution ,
524.Dv level
525and
526.Dv accelfactor
527may be modifiable.
528Setting values in the other field does not generate
529error and has no effect.
530.Pp
531If you do not want to change the current setting of a field, put -1
532there.
533You may also put zero in
534.Dv resolution
535and
536.Dv rate ,
537and the default value for the fields will be selected.
538.\" .Pp
539.\" .It Dv MOUSE_GETVARS Ar mousevar_t *vars
540.\" .It Dv MOUSE_SETVARS Ar mousevar_t *vars
541.\" These commands are not supported by the
542.\" .Nm
543.\" driver.
544.Pp
545.It Dv MOUSE_READDATA Ar mousedata_t *data
546.\" The command reads the raw data from the device.
547.\" .Bd -literal
548.\" typedef struct mousedata {
549.\"     int len;        /* # of data in the buffer */
550.\"     int buf[16];    /* data buffer */
551.\" } mousedata_t;
552.\" .Ed
553.\" .Pp
554.\" Upon returning to the user program, the driver will place the number
555.\" of valid data bytes in the buffer in the
556.\" .Dv len
557.\" field.
558.\" .Pp
559.It Dv MOUSE_READSTATE Ar mousedata_t *state
560.\" The command reads the hardware settings from the device.
561.\" Upon returning to the user program, the driver will place the number
562.\" of valid data bytes in the buffer in the
563.\" .Dv len
564.\" field. It is usually 3 bytes.
565.\" The buffer is formatted as follows:
566.\" .Pp
567.\" .Bl -tag -width Byte_1 -compact
568.\" .It Byte 1
569.\" .Bl -tag -width bit_6 -compact
570.\" .It bit 7
571.\" Reserved.
572.\" .It bit 6
573.\" 0 - stream mode, 1 - remote mode.
574.\" In the stream mode, the pointing device sends the device status
575.\" whenever its state changes. In the remote mode, the host computer
576.\" must request the status to be sent.
577.\" The
578.\" .Nm
579.\" driver puts the device in the stream mode.
580.\" .It bit 5
581.\" Set if the pointing device is currently enabled. Otherwise zero.
582.\" .It bit 4
583.\" 0 - 1:1 scaling, 1 - 2:1 scaling.
584.\" 1:1 scaling is the default.
585.\" .It bit 3
586.\" Reserved.
587.\" .It bit 2
588.\" Left button status; set if pressed.
589.\" .It bit 1
590.\" Middle button status; set if pressed.
591.\" .It bit 0
592.\" Right button status; set if pressed.
593.\" .El
594.\" .It Byte 2
595.\" .Bl -tag -width bit_6_0 -compact
596.\" .It bit 7
597.\" Reserved.
598.\" .It bit 6..0
599.\" Resolution code: zero through three. Actual resolution for
600.\" the resolution code varies from one device to another.
601.\" .El
602.\" .It Byte 3
603.\" The status report rate (reports/sec) at which the device will send
604.\" movement report to the host computer.
605.\" .El
606These commands are not currently supported by the
607.Nm
608driver.
609.Pp
610.It Dv MOUSE_GETSTATUS Ar mousestatus_t *status
611The command returns the current state of buttons and
612movement counts as described in
613.Xr mouse 4 .
614.El
615.Sh FILES
616.Bl -tag -width /dev/npsm0 -compact
617.It Pa /dev/psm0
618`non-blocking' device node
619.It Pa /dev/bpsm0
620`blocking' device node under
621.Em devfs .
622.El
623.Sh EXAMPLES
624.Dl "device psm0 at atkbdc? irq 12 flags 0x2000"
625.Pp
626Add the
627.Nm
628driver to the kernel with the optional code to stimulate the pointing device
629after the `resume' event.
630.Pp
631.Dl "device psm0 at atkbdc? flags 0x024 irq 12"
632.Pp
633Set the device resolution high (4) and the acceleration factor to 2.
634.Sh DIAGNOSTICS
635.Pp
636At debug level 0, little information is logged except for the following
637line during boot process:
638.Bd -literal -offset indent
639psm0: device ID X
640.Ed
641.Pp
642where
643.Fa X
644the device ID code returned by the found pointing device.
645See
646.Dv MOUSE_GETINFO
647for known IDs.
648.Pp
649At debug level 1 more information will be logged
650while the driver probes the auxiliary port (mouse port).
651Messages are logged with the LOG_KERN facility at the LOG_DEBUG level
652.Pq see Xr syslogd 8 .
653.Bd -literal -offset indent
654psm0: current command byte:xxxx
655kbdio: TEST_AUX_PORT status:0000
656kbdio: RESET_AUX return code:00fa
657kbdio: RESET_AUX status:00aa
658kbdio: RESET_AUX ID:0000
659[...]
660psm: status 00 02 64
661psm0 irq 12 on isa
662psm0: model AAAA, device ID X, N buttons
663psm0: config:00000www, flags:0000uuuu, packet size:M
664psm0: syncmask:xx, syncbits:yy
665.Ed
666.Pp
667The first line shows the command byte value of the keyboard
668controller just before the auxiliary port is probed.
669It usually is 4D, 45, 47 or 65, depending on how the motherboard BIOS
670initialized the keyboard controller upon power-up.
671.Pp
672The second line shows the result of the keyboard controller's
673test on the auxiliary port interface, with zero indicating
674no error; note that some controllers report no error even if
675the port does not exist in the system, however.
676.Pp
677The third through fifth lines show the reset status of the pointing device.
678The functioning device should return the sequence of FA AA <ID>.
679The ID code is described above.
680.Pp
681The seventh line shows the current hardware settings.
682.\" See
683.\" .Dv MOUSE_READSTATE
684.\" for definitions.
685These bytes are formatted as follows:
686.Pp
687.Bl -tag -width Byte_1 -compact
688.It Byte 1
689.Bl -tag -width bit_6 -compact
690.It bit 7
691Reserved.
692.It bit 6
6930 - stream mode, 1 - remote mode.
694In the stream mode, the pointing device sends the device status
695whenever its state changes.
696In the remote mode, the host computer
697must request the status to be sent.
698The
699.Nm
700driver puts the device in the stream mode.
701.It bit 5
702Set if the pointing device is currently enabled.
703Otherwise zero.
704.It bit 4
7050 - 1:1 scaling, 1 - 2:1 scaling.
7061:1 scaling is the default.
707.It bit 3
708Reserved.
709.It bit 2
710Left button status; set if pressed.
711.It bit 1
712Middle button status; set if pressed.
713.It bit 0
714Right button status; set if pressed.
715.El
716.It Byte 2
717.Bl -tag -width bit_6_0 -compact
718.It bit 7
719Reserved.
720.It bit 6..0
721Resolution code: zero through three.
722Actual resolution for
723the resolution code varies from one device to another.
724.El
725.It Byte 3
726The status report rate (reports/sec) at which the device will send
727movement report to the host computer.
728.El
729.Pp
730Note that the pointing device will not be enabled until the
731.Nm
732driver is opened by the user program.
733.Pp
734The rest of the lines show the device ID code, the number of detected
735buttons and internal variables.
736.Pp
737At debug level 2, much more detailed information is logged.
738.Sh CAVEATS
739Many pad devices behave as if the first (left) button were pressed if
740the user `taps' the surface of the pad.
741In contrast, some pad products, e.g. some verions of ALPS GlidePoint
742and Interlink VersaPad, treat the tapping action
743as fourth button events.
744.Pp
745It is reported that Interlink VersaPad rquires both
746.Em HOOKRESUME
747and
748.Em INITAFTERSUSPEND
749flags in order to recover from suspended state.
750These flags are automatically set when VersaPad is detected by the
751.Nm
752driver.
753.Pp
754Some PS/2 mouse models from MouseSystems require to be put in the
755high resolution mode to work properly.
756Use the driver flag to
757set resolution.
758.Pp
759There is not a guaranteed way to re-synchronize with the first byte
760of the packet once we are out of synchronization with the data
761stream.
762However, if you are using the \fIXFree86\fP server and experiencing
763the problem, you may be able to make the X server synchronize with the mouse
764by switching away to a virtual terminal and getting back to the X server,
765unless the X server is accessing the mouse via
766.Xr moused 8 .
767Clicking any button without moving the mouse may also work.
768.Sh BUGS
769The ioctl command
770.Dv MOUSEIOCREAD
771has been removed.
772It was never functional anyway.
773.Sh SEE ALSO
774.Xr ioctl 2 ,
775.Xr syslog 3 ,
776.Xr atkbdc 4 ,
777.Xr mouse 4 ,
778.Xr mse 4 ,
779.Xr sysmouse 4 ,
780.Xr moused 8 ,
781.Xr syslogd 8
782.\".Sh HISTORY
783.Sh AUTHORS
784.An -nosplit
785The
786.Nm
787driver is based on the work done by quite a number of people, including
788.An Eric Forsberg ,
789.An Sandi Donno ,
790.An Rick Macklem ,
791.An Andrew Herbert ,
792.An Charles Hannum ,
793.An Shoji Yuen
794and
795.An Kazutaka Yokota
796to name the few.
797.Pp
798This manual page was written by
799.An Kazutaka Yokota Aq yokota@FreeBSD.org .
800