1 /*- 2 * Copyright (c) 1992, 1993 Erik Forsberg. 3 * Copyright (c) 1996, 1997 Kazutaka YOKOTA. 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. 11 * 12 * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED 13 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 14 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 15 * NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 16 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 17 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 18 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 19 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 20 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 21 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 */ 23 /* 24 * Ported to 386bsd Oct 17, 1992 25 * Sandi Donno, Computer Science, University of Cape Town, South Africa 26 * Please send bug reports to sandi@cs.uct.ac.za 27 * 28 * Thanks are also due to Rick Macklem, rick@snowhite.cis.uoguelph.ca - 29 * although I was only partially successful in getting the alpha release 30 * of his "driver for the Logitech and ATI Inport Bus mice for use with 31 * 386bsd and the X386 port" to work with my Microsoft mouse, I nevertheless 32 * found his code to be an invaluable reference when porting this driver 33 * to 386bsd. 34 * 35 * Further modifications for latest 386BSD+patchkit and port to NetBSD, 36 * Andrew Herbert <andrew@werple.apana.org.au> - 8 June 1993 37 * 38 * Cloned from the Microsoft Bus Mouse driver, also by Erik Forsberg, by 39 * Andrew Herbert - 12 June 1993 40 * 41 * Modified for PS/2 mouse by Charles Hannum <mycroft@ai.mit.edu> 42 * - 13 June 1993 43 * 44 * Modified for PS/2 AUX mouse by Shoji Yuen <yuen@nuie.nagoya-u.ac.jp> 45 * - 24 October 1993 46 * 47 * Hardware access routines and probe logic rewritten by 48 * Kazutaka Yokota <yokota@zodiac.mech.utsunomiya-u.ac.jp> 49 * - 3, 14, 22 October 1996. 50 * - 12 November 1996. IOCTLs and rearranging `psmread', `psmioctl'... 51 * - 14, 30 November 1996. Uses `kbdio.c'. 52 * - 13 December 1996. Uses queuing version of `kbdio.c'. 53 * - January/February 1997. Tweaked probe logic for 54 * HiNote UltraII/Latitude/Armada laptops. 55 * - 30 July 1997. Added APM support. 56 * - 5 March 1997. Defined driver configuration flags (PSM_CONFIG_XXX). 57 * Improved sync check logic. 58 * Vendor specific support routines. 59 */ 60 61 #include <sys/cdefs.h> 62 __FBSDID("$FreeBSD$"); 63 64 #include "opt_isa.h" 65 #include "opt_psm.h" 66 67 #include <sys/param.h> 68 #include <sys/systm.h> 69 #include <sys/kernel.h> 70 #include <sys/module.h> 71 #include <sys/bus.h> 72 #include <sys/conf.h> 73 #include <sys/filio.h> 74 #include <sys/poll.h> 75 #include <sys/sigio.h> 76 #include <sys/signalvar.h> 77 #include <sys/syslog.h> 78 #include <machine/bus.h> 79 #include <sys/rman.h> 80 #include <sys/selinfo.h> 81 #include <sys/sysctl.h> 82 #include <sys/time.h> 83 #include <sys/uio.h> 84 85 #include <sys/limits.h> 86 #include <sys/mouse.h> 87 #include <machine/resource.h> 88 89 #ifdef DEV_ISA 90 #include <isa/isavar.h> 91 #endif 92 93 #include <dev/atkbdc/atkbdcreg.h> 94 #include <dev/atkbdc/psm.h> 95 96 /* 97 * Driver specific options: the following options may be set by 98 * `options' statements in the kernel configuration file. 99 */ 100 101 /* debugging */ 102 #ifndef PSM_DEBUG 103 #define PSM_DEBUG 0 /* 104 * logging: 0: none, 1: brief, 2: verbose 105 * 3: sync errors, 4: all packets 106 */ 107 #endif 108 #define VLOG(level, args) do { \ 109 if (verbose >= level) \ 110 log args; \ 111 } while (0) 112 113 #ifndef PSM_INPUT_TIMEOUT 114 #define PSM_INPUT_TIMEOUT 2000000 /* 2 sec */ 115 #endif 116 117 #ifndef PSM_TAP_TIMEOUT 118 #define PSM_TAP_TIMEOUT 125000 119 #endif 120 121 #ifndef PSM_TAP_THRESHOLD 122 #define PSM_TAP_THRESHOLD 25 123 #endif 124 125 /* end of driver specific options */ 126 127 #define PSMCPNP_DRIVER_NAME "psmcpnp" 128 129 /* input queue */ 130 #define PSM_BUFSIZE 960 131 #define PSM_SMALLBUFSIZE 240 132 133 /* operation levels */ 134 #define PSM_LEVEL_BASE 0 135 #define PSM_LEVEL_STANDARD 1 136 #define PSM_LEVEL_NATIVE 2 137 #define PSM_LEVEL_MIN PSM_LEVEL_BASE 138 #define PSM_LEVEL_MAX PSM_LEVEL_NATIVE 139 140 /* Logitech PS2++ protocol */ 141 #define MOUSE_PS2PLUS_CHECKBITS(b) \ 142 ((((b[2] & 0x03) << 2) | 0x02) == (b[1] & 0x0f)) 143 #define MOUSE_PS2PLUS_PACKET_TYPE(b) \ 144 (((b[0] & 0x30) >> 2) | ((b[1] & 0x30) >> 4)) 145 146 /* ring buffer */ 147 typedef struct ringbuf { 148 int count; /* # of valid elements in the buffer */ 149 int head; /* head pointer */ 150 int tail; /* tail poiner */ 151 u_char buf[PSM_BUFSIZE]; 152 } ringbuf_t; 153 154 /* data buffer */ 155 typedef struct packetbuf { 156 u_char ipacket[16]; /* interim input buffer */ 157 int inputbytes; /* # of bytes in the input buffer */ 158 } packetbuf_t; 159 160 #ifndef PSM_PACKETQUEUE 161 #define PSM_PACKETQUEUE 128 162 #endif 163 164 enum { 165 SYNAPTICS_SYSCTL_MIN_PRESSURE, 166 SYNAPTICS_SYSCTL_MAX_PRESSURE, 167 SYNAPTICS_SYSCTL_MAX_WIDTH, 168 SYNAPTICS_SYSCTL_MARGIN_TOP, 169 SYNAPTICS_SYSCTL_MARGIN_RIGHT, 170 SYNAPTICS_SYSCTL_MARGIN_BOTTOM, 171 SYNAPTICS_SYSCTL_MARGIN_LEFT, 172 SYNAPTICS_SYSCTL_NA_TOP, 173 SYNAPTICS_SYSCTL_NA_RIGHT, 174 SYNAPTICS_SYSCTL_NA_BOTTOM, 175 SYNAPTICS_SYSCTL_NA_LEFT, 176 SYNAPTICS_SYSCTL_WINDOW_MIN, 177 SYNAPTICS_SYSCTL_WINDOW_MAX, 178 SYNAPTICS_SYSCTL_MULTIPLICATOR, 179 SYNAPTICS_SYSCTL_WEIGHT_CURRENT, 180 SYNAPTICS_SYSCTL_WEIGHT_PREVIOUS, 181 SYNAPTICS_SYSCTL_WEIGHT_PREVIOUS_NA, 182 SYNAPTICS_SYSCTL_WEIGHT_LEN_SQUARED, 183 SYNAPTICS_SYSCTL_DIV_MIN, 184 SYNAPTICS_SYSCTL_DIV_MAX, 185 SYNAPTICS_SYSCTL_DIV_MAX_NA, 186 SYNAPTICS_SYSCTL_DIV_LEN, 187 SYNAPTICS_SYSCTL_TAP_MAX_DELTA, 188 SYNAPTICS_SYSCTL_TAP_MIN_QUEUE, 189 SYNAPTICS_SYSCTL_TAPHOLD_TIMEOUT, 190 SYNAPTICS_SYSCTL_VSCROLL_HOR_AREA, 191 SYNAPTICS_SYSCTL_VSCROLL_VER_AREA, 192 SYNAPTICS_SYSCTL_VSCROLL_MIN_DELTA, 193 SYNAPTICS_SYSCTL_VSCROLL_DIV_MIN, 194 SYNAPTICS_SYSCTL_VSCROLL_DIV_MAX 195 }; 196 197 typedef struct synapticsinfo { 198 struct sysctl_ctx_list sysctl_ctx; 199 struct sysctl_oid *sysctl_tree; 200 int directional_scrolls; 201 int min_pressure; 202 int max_pressure; 203 int max_width; 204 int margin_top; 205 int margin_right; 206 int margin_bottom; 207 int margin_left; 208 int na_top; 209 int na_right; 210 int na_bottom; 211 int na_left; 212 int window_min; 213 int window_max; 214 int multiplicator; 215 int weight_current; 216 int weight_previous; 217 int weight_previous_na; 218 int weight_len_squared; 219 int div_min; 220 int div_max; 221 int div_max_na; 222 int div_len; 223 int tap_max_delta; 224 int tap_min_queue; 225 int taphold_timeout; 226 int vscroll_ver_area; 227 int vscroll_hor_area; 228 int vscroll_min_delta; 229 int vscroll_div_min; 230 int vscroll_div_max; 231 } synapticsinfo_t; 232 233 typedef struct synapticspacket { 234 int x; 235 int y; 236 } synapticspacket_t; 237 238 #define SYNAPTICS_PACKETQUEUE 10 239 #define SYNAPTICS_QUEUE_CURSOR(x) \ 240 (x + SYNAPTICS_PACKETQUEUE) % SYNAPTICS_PACKETQUEUE 241 242 typedef struct synapticsaction { 243 synapticspacket_t queue[SYNAPTICS_PACKETQUEUE]; 244 int queue_len; 245 int queue_cursor; 246 int window_min; 247 int start_x; 248 int start_y; 249 int avg_dx; 250 int avg_dy; 251 int squelch_x; 252 int squelch_y; 253 int fingers_nb; 254 int tap_button; 255 int in_taphold; 256 int in_vscroll; 257 } synapticsaction_t; 258 259 /* driver control block */ 260 struct psm_softc { /* Driver status information */ 261 int unit; 262 struct selinfo rsel; /* Process selecting for Input */ 263 u_char state; /* Mouse driver state */ 264 int config; /* driver configuration flags */ 265 int flags; /* other flags */ 266 KBDC kbdc; /* handle to access kbd controller */ 267 struct resource *intr; /* IRQ resource */ 268 void *ih; /* interrupt handle */ 269 mousehw_t hw; /* hardware information */ 270 synapticshw_t synhw; /* Synaptics hardware information */ 271 synapticsinfo_t syninfo; /* Synaptics configuration */ 272 synapticsaction_t synaction; /* Synaptics action context */ 273 mousemode_t mode; /* operation mode */ 274 mousemode_t dflt_mode; /* default operation mode */ 275 mousestatus_t status; /* accumulated mouse movement */ 276 ringbuf_t queue; /* mouse status queue */ 277 packetbuf_t pqueue[PSM_PACKETQUEUE]; /* mouse data queue */ 278 int pqueue_start; /* start of data in queue */ 279 int pqueue_end; /* end of data in queue */ 280 int button; /* the latest button state */ 281 int xold; /* previous absolute X position */ 282 int yold; /* previous absolute Y position */ 283 int xaverage; /* average X position */ 284 int yaverage; /* average Y position */ 285 int squelch; /* level to filter movement at low speed */ 286 int zmax; /* maximum pressure value for touchpads */ 287 int syncerrors; /* # of bytes discarded to synchronize */ 288 int pkterrors; /* # of packets failed during quaranteen. */ 289 struct timeval inputtimeout; 290 struct timeval lastsoftintr; /* time of last soft interrupt */ 291 struct timeval lastinputerr; /* time last sync error happened */ 292 struct timeval taptimeout; /* tap timeout for touchpads */ 293 int watchdog; /* watchdog timer flag */ 294 struct callout_handle callout; /* watchdog timer call out */ 295 struct callout_handle softcallout; /* buffer timer call out */ 296 struct cdev *dev; 297 struct cdev *bdev; 298 int lasterr; 299 int cmdcount; 300 struct sigio *async; /* Processes waiting for SIGIO */ 301 }; 302 static devclass_t psm_devclass; 303 304 /* driver state flags (state) */ 305 #define PSM_VALID 0x80 306 #define PSM_OPEN 1 /* Device is open */ 307 #define PSM_ASLP 2 /* Waiting for mouse data */ 308 #define PSM_SOFTARMED 4 /* Software interrupt armed */ 309 #define PSM_NEED_SYNCBITS 8 /* Set syncbits using next data pkt */ 310 311 /* driver configuration flags (config) */ 312 #define PSM_CONFIG_RESOLUTION 0x000f /* resolution */ 313 #define PSM_CONFIG_ACCEL 0x00f0 /* acceleration factor */ 314 #define PSM_CONFIG_NOCHECKSYNC 0x0100 /* disable sync. test */ 315 #define PSM_CONFIG_NOIDPROBE 0x0200 /* disable mouse model probe */ 316 #define PSM_CONFIG_NORESET 0x0400 /* don't reset the mouse */ 317 #define PSM_CONFIG_FORCETAP 0x0800 /* assume `tap' action exists */ 318 #define PSM_CONFIG_IGNPORTERROR 0x1000 /* ignore error in aux port test */ 319 #define PSM_CONFIG_HOOKRESUME 0x2000 /* hook the system resume event */ 320 #define PSM_CONFIG_INITAFTERSUSPEND 0x4000 /* init the device at the resume event */ 321 #define PSM_CONFIG_SYNCHACK 0x8000 /* enable `out-of-sync' hack */ 322 323 #define PSM_CONFIG_FLAGS \ 324 (PSM_CONFIG_RESOLUTION | \ 325 PSM_CONFIG_ACCEL | \ 326 PSM_CONFIG_NOCHECKSYNC | \ 327 PSM_CONFIG_SYNCHACK | \ 328 PSM_CONFIG_NOIDPROBE | \ 329 PSM_CONFIG_NORESET | \ 330 PSM_CONFIG_FORCETAP | \ 331 PSM_CONFIG_IGNPORTERROR | \ 332 PSM_CONFIG_HOOKRESUME | \ 333 PSM_CONFIG_INITAFTERSUSPEND) 334 335 /* other flags (flags) */ 336 #define PSM_FLAGS_FINGERDOWN 0x0001 /* VersaPad finger down */ 337 338 /* Tunables */ 339 static int tap_enabled = -1; 340 TUNABLE_INT("hw.psm.tap_enabled", &tap_enabled); 341 342 static int synaptics_support = 0; 343 TUNABLE_INT("hw.psm.synaptics_support", &synaptics_support); 344 345 static int verbose = PSM_DEBUG; 346 TUNABLE_INT("debug.psm.loglevel", &verbose); 347 348 /* for backward compatibility */ 349 #define OLD_MOUSE_GETHWINFO _IOR('M', 1, old_mousehw_t) 350 #define OLD_MOUSE_GETMODE _IOR('M', 2, old_mousemode_t) 351 #define OLD_MOUSE_SETMODE _IOW('M', 3, old_mousemode_t) 352 353 typedef struct old_mousehw { 354 int buttons; 355 int iftype; 356 int type; 357 int hwid; 358 } old_mousehw_t; 359 360 typedef struct old_mousemode { 361 int protocol; 362 int rate; 363 int resolution; 364 int accelfactor; 365 } old_mousemode_t; 366 367 /* packet formatting function */ 368 typedef int packetfunc_t(struct psm_softc *, u_char *, int *, int, 369 mousestatus_t *); 370 371 /* function prototypes */ 372 static void psmidentify(driver_t *, device_t); 373 static int psmprobe(device_t); 374 static int psmattach(device_t); 375 static int psmdetach(device_t); 376 static int psmresume(device_t); 377 378 static d_open_t psmopen; 379 static d_close_t psmclose; 380 static d_read_t psmread; 381 static d_write_t psmwrite; 382 static d_ioctl_t psmioctl; 383 static d_poll_t psmpoll; 384 385 static int enable_aux_dev(KBDC); 386 static int disable_aux_dev(KBDC); 387 static int get_mouse_status(KBDC, int *, int, int); 388 static int get_aux_id(KBDC); 389 static int set_mouse_sampling_rate(KBDC, int); 390 static int set_mouse_scaling(KBDC, int); 391 static int set_mouse_resolution(KBDC, int); 392 static int set_mouse_mode(KBDC); 393 static int get_mouse_buttons(KBDC); 394 static int is_a_mouse(int); 395 static void recover_from_error(KBDC); 396 static int restore_controller(KBDC, int); 397 static int doinitialize(struct psm_softc *, mousemode_t *); 398 static int doopen(struct psm_softc *, int); 399 static int reinitialize(struct psm_softc *, int); 400 static char *model_name(int); 401 static void psmsoftintr(void *); 402 static void psmintr(void *); 403 static void psmtimeout(void *); 404 static int timeelapsed(const struct timeval *, int, int, 405 const struct timeval *); 406 static void dropqueue(struct psm_softc *); 407 static void flushpackets(struct psm_softc *); 408 static void proc_mmanplus(struct psm_softc *, packetbuf_t *, 409 mousestatus_t *, int *, int *, int *); 410 static int proc_synaptics(struct psm_softc *, packetbuf_t *, 411 mousestatus_t *, int *, int *, int *); 412 static void proc_versapad(struct psm_softc *, packetbuf_t *, 413 mousestatus_t *, int *, int *, int *); 414 static int tame_mouse(struct psm_softc *, packetbuf_t *, mousestatus_t *, 415 u_char *); 416 417 /* vendor specific features */ 418 typedef int probefunc_t(struct psm_softc *); 419 420 static int mouse_id_proc1(KBDC, int, int, int *); 421 static int mouse_ext_command(KBDC, int); 422 423 static probefunc_t enable_groller; 424 static probefunc_t enable_gmouse; 425 static probefunc_t enable_aglide; 426 static probefunc_t enable_kmouse; 427 static probefunc_t enable_msexplorer; 428 static probefunc_t enable_msintelli; 429 static probefunc_t enable_4dmouse; 430 static probefunc_t enable_4dplus; 431 static probefunc_t enable_mmanplus; 432 static probefunc_t enable_synaptics; 433 static probefunc_t enable_versapad; 434 435 static struct { 436 int model; 437 u_char syncmask; 438 int packetsize; 439 probefunc_t *probefunc; 440 } vendortype[] = { 441 /* 442 * WARNING: the order of probe is very important. Don't mess it 443 * unless you know what you are doing. 444 */ 445 { MOUSE_MODEL_NET, /* Genius NetMouse */ 446 0x08, MOUSE_PS2INTELLI_PACKETSIZE, enable_gmouse }, 447 { MOUSE_MODEL_NETSCROLL, /* Genius NetScroll */ 448 0xc8, 6, enable_groller }, 449 { MOUSE_MODEL_MOUSEMANPLUS, /* Logitech MouseMan+ */ 450 0x08, MOUSE_PS2_PACKETSIZE, enable_mmanplus }, 451 { MOUSE_MODEL_EXPLORER, /* Microsoft IntelliMouse Explorer */ 452 0x08, MOUSE_PS2INTELLI_PACKETSIZE, enable_msexplorer }, 453 { MOUSE_MODEL_4D, /* A4 Tech 4D Mouse */ 454 0x08, MOUSE_4D_PACKETSIZE, enable_4dmouse }, 455 { MOUSE_MODEL_4DPLUS, /* A4 Tech 4D+ Mouse */ 456 0xc8, MOUSE_4DPLUS_PACKETSIZE, enable_4dplus }, 457 { MOUSE_MODEL_SYNAPTICS, /* Synaptics Touchpad */ 458 0xc0, MOUSE_SYNAPTICS_PACKETSIZE, enable_synaptics }, 459 { MOUSE_MODEL_INTELLI, /* Microsoft IntelliMouse */ 460 0x08, MOUSE_PS2INTELLI_PACKETSIZE, enable_msintelli }, 461 { MOUSE_MODEL_GLIDEPOINT, /* ALPS GlidePoint */ 462 0xc0, MOUSE_PS2_PACKETSIZE, enable_aglide }, 463 { MOUSE_MODEL_THINK, /* Kensington ThinkingMouse */ 464 0x80, MOUSE_PS2_PACKETSIZE, enable_kmouse }, 465 { MOUSE_MODEL_VERSAPAD, /* Interlink electronics VersaPad */ 466 0xe8, MOUSE_PS2VERSA_PACKETSIZE, enable_versapad }, 467 { MOUSE_MODEL_GENERIC, 468 0xc0, MOUSE_PS2_PACKETSIZE, NULL }, 469 }; 470 #define GENERIC_MOUSE_ENTRY \ 471 ((sizeof(vendortype) / sizeof(*vendortype)) - 1) 472 473 /* device driver declarateion */ 474 static device_method_t psm_methods[] = { 475 /* Device interface */ 476 DEVMETHOD(device_identify, psmidentify), 477 DEVMETHOD(device_probe, psmprobe), 478 DEVMETHOD(device_attach, psmattach), 479 DEVMETHOD(device_detach, psmdetach), 480 DEVMETHOD(device_resume, psmresume), 481 482 { 0, 0 } 483 }; 484 485 static driver_t psm_driver = { 486 PSM_DRIVER_NAME, 487 psm_methods, 488 sizeof(struct psm_softc), 489 }; 490 491 static struct cdevsw psm_cdevsw = { 492 .d_version = D_VERSION, 493 .d_flags = D_NEEDGIANT, 494 .d_open = psmopen, 495 .d_close = psmclose, 496 .d_read = psmread, 497 .d_write = psmwrite, 498 .d_ioctl = psmioctl, 499 .d_poll = psmpoll, 500 .d_name = PSM_DRIVER_NAME, 501 }; 502 503 /* device I/O routines */ 504 static int 505 enable_aux_dev(KBDC kbdc) 506 { 507 int res; 508 509 res = send_aux_command(kbdc, PSMC_ENABLE_DEV); 510 VLOG(2, (LOG_DEBUG, "psm: ENABLE_DEV return code:%04x\n", res)); 511 512 return (res == PSM_ACK); 513 } 514 515 static int 516 disable_aux_dev(KBDC kbdc) 517 { 518 int res; 519 520 res = send_aux_command(kbdc, PSMC_DISABLE_DEV); 521 VLOG(2, (LOG_DEBUG, "psm: DISABLE_DEV return code:%04x\n", res)); 522 523 return (res == PSM_ACK); 524 } 525 526 static int 527 get_mouse_status(KBDC kbdc, int *status, int flag, int len) 528 { 529 int cmd; 530 int res; 531 int i; 532 533 switch (flag) { 534 case 0: 535 default: 536 cmd = PSMC_SEND_DEV_STATUS; 537 break; 538 case 1: 539 cmd = PSMC_SEND_DEV_DATA; 540 break; 541 } 542 empty_aux_buffer(kbdc, 5); 543 res = send_aux_command(kbdc, cmd); 544 VLOG(2, (LOG_DEBUG, "psm: SEND_AUX_DEV_%s return code:%04x\n", 545 (flag == 1) ? "DATA" : "STATUS", res)); 546 if (res != PSM_ACK) 547 return (0); 548 549 for (i = 0; i < len; ++i) { 550 status[i] = read_aux_data(kbdc); 551 if (status[i] < 0) 552 break; 553 } 554 555 VLOG(1, (LOG_DEBUG, "psm: %s %02x %02x %02x\n", 556 (flag == 1) ? "data" : "status", status[0], status[1], status[2])); 557 558 return (i); 559 } 560 561 static int 562 get_aux_id(KBDC kbdc) 563 { 564 int res; 565 int id; 566 567 empty_aux_buffer(kbdc, 5); 568 res = send_aux_command(kbdc, PSMC_SEND_DEV_ID); 569 VLOG(2, (LOG_DEBUG, "psm: SEND_DEV_ID return code:%04x\n", res)); 570 if (res != PSM_ACK) 571 return (-1); 572 573 /* 10ms delay */ 574 DELAY(10000); 575 576 id = read_aux_data(kbdc); 577 VLOG(2, (LOG_DEBUG, "psm: device ID: %04x\n", id)); 578 579 return (id); 580 } 581 582 static int 583 set_mouse_sampling_rate(KBDC kbdc, int rate) 584 { 585 int res; 586 587 res = send_aux_command_and_data(kbdc, PSMC_SET_SAMPLING_RATE, rate); 588 VLOG(2, (LOG_DEBUG, "psm: SET_SAMPLING_RATE (%d) %04x\n", rate, res)); 589 590 return ((res == PSM_ACK) ? rate : -1); 591 } 592 593 static int 594 set_mouse_scaling(KBDC kbdc, int scale) 595 { 596 int res; 597 598 switch (scale) { 599 case 1: 600 default: 601 scale = PSMC_SET_SCALING11; 602 break; 603 case 2: 604 scale = PSMC_SET_SCALING21; 605 break; 606 } 607 res = send_aux_command(kbdc, scale); 608 VLOG(2, (LOG_DEBUG, "psm: SET_SCALING%s return code:%04x\n", 609 (scale == PSMC_SET_SCALING21) ? "21" : "11", res)); 610 611 return (res == PSM_ACK); 612 } 613 614 /* `val' must be 0 through PSMD_MAX_RESOLUTION */ 615 static int 616 set_mouse_resolution(KBDC kbdc, int val) 617 { 618 int res; 619 620 res = send_aux_command_and_data(kbdc, PSMC_SET_RESOLUTION, val); 621 VLOG(2, (LOG_DEBUG, "psm: SET_RESOLUTION (%d) %04x\n", val, res)); 622 623 return ((res == PSM_ACK) ? val : -1); 624 } 625 626 /* 627 * NOTE: once `set_mouse_mode()' is called, the mouse device must be 628 * re-enabled by calling `enable_aux_dev()' 629 */ 630 static int 631 set_mouse_mode(KBDC kbdc) 632 { 633 int res; 634 635 res = send_aux_command(kbdc, PSMC_SET_STREAM_MODE); 636 VLOG(2, (LOG_DEBUG, "psm: SET_STREAM_MODE return code:%04x\n", res)); 637 638 return (res == PSM_ACK); 639 } 640 641 static int 642 get_mouse_buttons(KBDC kbdc) 643 { 644 int c = 2; /* assume two buttons by default */ 645 int status[3]; 646 647 /* 648 * NOTE: a special sequence to obtain Logitech Mouse specific 649 * information: set resolution to 25 ppi, set scaling to 1:1, set 650 * scaling to 1:1, set scaling to 1:1. Then the second byte of the 651 * mouse status bytes is the number of available buttons. 652 * Some manufactures also support this sequence. 653 */ 654 if (set_mouse_resolution(kbdc, PSMD_RES_LOW) != PSMD_RES_LOW) 655 return (c); 656 if (set_mouse_scaling(kbdc, 1) && set_mouse_scaling(kbdc, 1) && 657 set_mouse_scaling(kbdc, 1) && 658 get_mouse_status(kbdc, status, 0, 3) >= 3 && status[1] != 0) 659 return (status[1]); 660 return (c); 661 } 662 663 /* misc subroutines */ 664 /* 665 * Someday, I will get the complete list of valid pointing devices and 666 * their IDs... XXX 667 */ 668 static int 669 is_a_mouse(int id) 670 { 671 #if 0 672 static int valid_ids[] = { 673 PSM_MOUSE_ID, /* mouse */ 674 PSM_BALLPOINT_ID, /* ballpoint device */ 675 PSM_INTELLI_ID, /* Intellimouse */ 676 PSM_EXPLORER_ID, /* Intellimouse Explorer */ 677 -1 /* end of table */ 678 }; 679 int i; 680 681 for (i = 0; valid_ids[i] >= 0; ++i) 682 if (valid_ids[i] == id) 683 return (TRUE); 684 return (FALSE); 685 #else 686 return (TRUE); 687 #endif 688 } 689 690 static char * 691 model_name(int model) 692 { 693 static struct { 694 int model_code; 695 char *model_name; 696 } models[] = { 697 { MOUSE_MODEL_NETSCROLL, "NetScroll" }, 698 { MOUSE_MODEL_NET, "NetMouse/NetScroll Optical" }, 699 { MOUSE_MODEL_GLIDEPOINT, "GlidePoint" }, 700 { MOUSE_MODEL_THINK, "ThinkingMouse" }, 701 { MOUSE_MODEL_INTELLI, "IntelliMouse" }, 702 { MOUSE_MODEL_MOUSEMANPLUS, "MouseMan+" }, 703 { MOUSE_MODEL_VERSAPAD, "VersaPad" }, 704 { MOUSE_MODEL_EXPLORER, "IntelliMouse Explorer" }, 705 { MOUSE_MODEL_4D, "4D Mouse" }, 706 { MOUSE_MODEL_4DPLUS, "4D+ Mouse" }, 707 { MOUSE_MODEL_SYNAPTICS, "Synaptics Touchpad" }, 708 { MOUSE_MODEL_GENERIC, "Generic PS/2 mouse" }, 709 { MOUSE_MODEL_UNKNOWN, "Unknown" }, 710 }; 711 int i; 712 713 for (i = 0; models[i].model_code != MOUSE_MODEL_UNKNOWN; ++i) 714 if (models[i].model_code == model) 715 break; 716 return (models[i].model_name); 717 } 718 719 static void 720 recover_from_error(KBDC kbdc) 721 { 722 /* discard anything left in the output buffer */ 723 empty_both_buffers(kbdc, 10); 724 725 #if 0 726 /* 727 * NOTE: KBDC_RESET_KBD may not restore the communication between the 728 * keyboard and the controller. 729 */ 730 reset_kbd(kbdc); 731 #else 732 /* 733 * NOTE: somehow diagnostic and keyboard port test commands bring the 734 * keyboard back. 735 */ 736 if (!test_controller(kbdc)) 737 log(LOG_ERR, "psm: keyboard controller failed.\n"); 738 /* if there isn't a keyboard in the system, the following error is OK */ 739 if (test_kbd_port(kbdc) != 0) 740 VLOG(1, (LOG_ERR, "psm: keyboard port failed.\n")); 741 #endif 742 } 743 744 static int 745 restore_controller(KBDC kbdc, int command_byte) 746 { 747 empty_both_buffers(kbdc, 10); 748 749 if (!set_controller_command_byte(kbdc, 0xff, command_byte)) { 750 log(LOG_ERR, "psm: failed to restore the keyboard controller " 751 "command byte.\n"); 752 empty_both_buffers(kbdc, 10); 753 return (FALSE); 754 } else { 755 empty_both_buffers(kbdc, 10); 756 return (TRUE); 757 } 758 } 759 760 /* 761 * Re-initialize the aux port and device. The aux port must be enabled 762 * and its interrupt must be disabled before calling this routine. 763 * The aux device will be disabled before returning. 764 * The keyboard controller must be locked via `kbdc_lock()' before 765 * calling this routine. 766 */ 767 static int 768 doinitialize(struct psm_softc *sc, mousemode_t *mode) 769 { 770 KBDC kbdc = sc->kbdc; 771 int stat[3]; 772 int i; 773 774 switch((i = test_aux_port(kbdc))) { 775 case 1: /* ignore these errors */ 776 case 2: 777 case 3: 778 case PSM_ACK: 779 if (verbose) 780 log(LOG_DEBUG, 781 "psm%d: strange result for test aux port (%d).\n", 782 sc->unit, i); 783 /* FALLTHROUGH */ 784 case 0: /* no error */ 785 break; 786 case -1: /* time out */ 787 default: /* error */ 788 recover_from_error(kbdc); 789 if (sc->config & PSM_CONFIG_IGNPORTERROR) 790 break; 791 log(LOG_ERR, "psm%d: the aux port is not functioning (%d).\n", 792 sc->unit, i); 793 return (FALSE); 794 } 795 796 if (sc->config & PSM_CONFIG_NORESET) { 797 /* 798 * Don't try to reset the pointing device. It may possibly 799 * be left in the unknown state, though... 800 */ 801 } else { 802 /* 803 * NOTE: some controllers appears to hang the `keyboard' when 804 * the aux port doesn't exist and `PSMC_RESET_DEV' is issued. 805 */ 806 if (!reset_aux_dev(kbdc)) { 807 recover_from_error(kbdc); 808 log(LOG_ERR, "psm%d: failed to reset the aux device.\n", 809 sc->unit); 810 return (FALSE); 811 } 812 } 813 814 /* 815 * both the aux port and the aux device is functioning, see 816 * if the device can be enabled. 817 */ 818 if (!enable_aux_dev(kbdc) || !disable_aux_dev(kbdc)) { 819 log(LOG_ERR, "psm%d: failed to enable the aux device.\n", 820 sc->unit); 821 return (FALSE); 822 } 823 empty_both_buffers(kbdc, 10); /* remove stray data if any */ 824 825 if (sc->config & PSM_CONFIG_NOIDPROBE) 826 i = GENERIC_MOUSE_ENTRY; 827 else { 828 /* FIXME: hardware ID, mouse buttons? */ 829 830 /* other parameters */ 831 for (i = 0; vendortype[i].probefunc != NULL; ++i) 832 if ((*vendortype[i].probefunc)(sc)) { 833 if (verbose >= 2) 834 log(LOG_ERR, "psm%d: found %s\n", 835 sc->unit, 836 model_name(vendortype[i].model)); 837 break; 838 } 839 } 840 841 sc->hw.model = vendortype[i].model; 842 sc->mode.packetsize = vendortype[i].packetsize; 843 844 /* set mouse parameters */ 845 if (mode != (mousemode_t *)NULL) { 846 if (mode->rate > 0) 847 mode->rate = set_mouse_sampling_rate(kbdc, mode->rate); 848 if (mode->resolution >= 0) 849 mode->resolution = 850 set_mouse_resolution(kbdc, mode->resolution); 851 set_mouse_scaling(kbdc, 1); 852 set_mouse_mode(kbdc); 853 } 854 855 /* Record sync on the next data packet we see. */ 856 sc->flags |= PSM_NEED_SYNCBITS; 857 858 /* just check the status of the mouse */ 859 if (get_mouse_status(kbdc, stat, 0, 3) < 3) 860 log(LOG_DEBUG, "psm%d: failed to get status (doinitialize).\n", 861 sc->unit); 862 863 return (TRUE); 864 } 865 866 static int 867 doopen(struct psm_softc *sc, int command_byte) 868 { 869 int stat[3]; 870 871 /* 872 * FIXME: Synaptics TouchPad seems to go back to Relative Mode with 873 * no obvious reason. Thus we check the current mode and restore the 874 * Absolute Mode if it was cleared. 875 * 876 * The previous hack at the end of psmprobe() wasn't efficient when 877 * moused(8) was restarted. 878 * 879 * A Reset (FF) or Set Defaults (F6) command would clear the 880 * Absolute Mode bit. But a verbose boot or debug.psm.loglevel=5 881 * doesn't show any evidence of such a command. 882 */ 883 if (sc->hw.model == MOUSE_MODEL_SYNAPTICS) { 884 mouse_ext_command(sc->kbdc, 1); 885 get_mouse_status(sc->kbdc, stat, 0, 3); 886 if (stat[1] == 0x47 && stat[2] == 0x40) { 887 /* Set the mode byte -- request wmode where 888 * available */ 889 if (sc->synhw.capExtended) 890 mouse_ext_command(sc->kbdc, 0xc1); 891 else 892 mouse_ext_command(sc->kbdc, 0xc0); 893 set_mouse_sampling_rate(sc->kbdc, 20); 894 VLOG(5, (LOG_DEBUG, "psm%d: Synaptis Absolute Mode " 895 "hopefully restored\n", 896 sc->unit)); 897 } 898 } 899 900 /* 901 * A user may want to disable tap and drag gestures on a Synaptics 902 * TouchPad when it operates in Relative Mode. 903 */ 904 if (sc->hw.model == MOUSE_MODEL_GENERIC) { 905 if (tap_enabled > 0) { 906 /* 907 * Enable tap & drag gestures. We use a Mode Byte 908 * and clear the DisGest bit (see §2.5 of Synaptics 909 * TouchPad Interfacing Guide). 910 */ 911 VLOG(2, (LOG_DEBUG, 912 "psm%d: enable tap and drag gestures\n", 913 sc->unit)); 914 mouse_ext_command(sc->kbdc, 0x00); 915 set_mouse_sampling_rate(sc->kbdc, 20); 916 } else if (tap_enabled == 0) { 917 /* 918 * Disable tap & drag gestures. We use a Mode Byte 919 * and set the DisGest bit (see §2.5 of Synaptics 920 * TouchPad Interfacing Guide). 921 */ 922 VLOG(2, (LOG_DEBUG, 923 "psm%d: disable tap and drag gestures\n", 924 sc->unit)); 925 mouse_ext_command(sc->kbdc, 0x04); 926 set_mouse_sampling_rate(sc->kbdc, 20); 927 } 928 } 929 930 /* enable the mouse device */ 931 if (!enable_aux_dev(sc->kbdc)) { 932 /* MOUSE ERROR: failed to enable the mouse because: 933 * 1) the mouse is faulty, 934 * 2) the mouse has been removed(!?) 935 * In the latter case, the keyboard may have hung, and need 936 * recovery procedure... 937 */ 938 recover_from_error(sc->kbdc); 939 #if 0 940 /* FIXME: we could reset the mouse here and try to enable 941 * it again. But it will take long time and it's not a good 942 * idea to disable the keyboard that long... 943 */ 944 if (!doinitialize(sc, &sc->mode) || !enable_aux_dev(sc->kbdc)) { 945 recover_from_error(sc->kbdc); 946 #else 947 { 948 #endif 949 restore_controller(sc->kbdc, command_byte); 950 /* mark this device is no longer available */ 951 sc->state &= ~PSM_VALID; 952 log(LOG_ERR, 953 "psm%d: failed to enable the device (doopen).\n", 954 sc->unit); 955 return (EIO); 956 } 957 } 958 959 if (get_mouse_status(sc->kbdc, stat, 0, 3) < 3) 960 log(LOG_DEBUG, "psm%d: failed to get status (doopen).\n", 961 sc->unit); 962 963 /* enable the aux port and interrupt */ 964 if (!set_controller_command_byte(sc->kbdc, 965 kbdc_get_device_mask(sc->kbdc), 966 (command_byte & KBD_KBD_CONTROL_BITS) | 967 KBD_ENABLE_AUX_PORT | KBD_ENABLE_AUX_INT)) { 968 /* CONTROLLER ERROR */ 969 disable_aux_dev(sc->kbdc); 970 restore_controller(sc->kbdc, command_byte); 971 log(LOG_ERR, 972 "psm%d: failed to enable the aux interrupt (doopen).\n", 973 sc->unit); 974 return (EIO); 975 } 976 977 /* start the watchdog timer */ 978 sc->watchdog = FALSE; 979 sc->callout = timeout(psmtimeout, (void *)(uintptr_t)sc, hz*2); 980 981 return (0); 982 } 983 984 static int 985 reinitialize(struct psm_softc *sc, int doinit) 986 { 987 int err; 988 int c; 989 int s; 990 991 /* don't let anybody mess with the aux device */ 992 if (!kbdc_lock(sc->kbdc, TRUE)) 993 return (EIO); 994 s = spltty(); 995 996 /* block our watchdog timer */ 997 sc->watchdog = FALSE; 998 untimeout(psmtimeout, (void *)(uintptr_t)sc, sc->callout); 999 callout_handle_init(&sc->callout); 1000 1001 /* save the current controller command byte */ 1002 empty_both_buffers(sc->kbdc, 10); 1003 c = get_controller_command_byte(sc->kbdc); 1004 VLOG(2, (LOG_DEBUG, 1005 "psm%d: current command byte: %04x (reinitialize).\n", 1006 sc->unit, c)); 1007 1008 /* enable the aux port but disable the aux interrupt and the keyboard */ 1009 if ((c == -1) || !set_controller_command_byte(sc->kbdc, 1010 kbdc_get_device_mask(sc->kbdc), 1011 KBD_DISABLE_KBD_PORT | KBD_DISABLE_KBD_INT | 1012 KBD_ENABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1013 /* CONTROLLER ERROR */ 1014 splx(s); 1015 kbdc_lock(sc->kbdc, FALSE); 1016 log(LOG_ERR, 1017 "psm%d: unable to set the command byte (reinitialize).\n", 1018 sc->unit); 1019 return (EIO); 1020 } 1021 1022 /* flush any data */ 1023 if (sc->state & PSM_VALID) { 1024 /* this may fail; but never mind... */ 1025 disable_aux_dev(sc->kbdc); 1026 empty_aux_buffer(sc->kbdc, 10); 1027 } 1028 flushpackets(sc); 1029 sc->syncerrors = 0; 1030 sc->pkterrors = 0; 1031 memset(&sc->lastinputerr, 0, sizeof(sc->lastinputerr)); 1032 1033 /* try to detect the aux device; are you still there? */ 1034 err = 0; 1035 if (doinit) { 1036 if (doinitialize(sc, &sc->mode)) { 1037 /* yes */ 1038 sc->state |= PSM_VALID; 1039 } else { 1040 /* the device has gone! */ 1041 restore_controller(sc->kbdc, c); 1042 sc->state &= ~PSM_VALID; 1043 log(LOG_ERR, 1044 "psm%d: the aux device has gone! (reinitialize).\n", 1045 sc->unit); 1046 err = ENXIO; 1047 } 1048 } 1049 splx(s); 1050 1051 /* restore the driver state */ 1052 if ((sc->state & PSM_OPEN) && (err == 0)) { 1053 /* enable the aux device and the port again */ 1054 err = doopen(sc, c); 1055 if (err != 0) 1056 log(LOG_ERR, "psm%d: failed to enable the device " 1057 "(reinitialize).\n", sc->unit); 1058 } else { 1059 /* restore the keyboard port and disable the aux port */ 1060 if (!set_controller_command_byte(sc->kbdc, 1061 kbdc_get_device_mask(sc->kbdc), 1062 (c & KBD_KBD_CONTROL_BITS) | 1063 KBD_DISABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1064 /* CONTROLLER ERROR */ 1065 log(LOG_ERR, "psm%d: failed to disable the aux port " 1066 "(reinitialize).\n", sc->unit); 1067 err = EIO; 1068 } 1069 } 1070 1071 kbdc_lock(sc->kbdc, FALSE); 1072 return (err); 1073 } 1074 1075 /* psm driver entry points */ 1076 1077 static void 1078 psmidentify(driver_t *driver, device_t parent) 1079 { 1080 device_t psmc; 1081 device_t psm; 1082 u_long irq; 1083 int unit; 1084 1085 unit = device_get_unit(parent); 1086 1087 /* always add at least one child */ 1088 psm = BUS_ADD_CHILD(parent, KBDC_RID_AUX, driver->name, unit); 1089 if (psm == NULL) 1090 return; 1091 1092 irq = bus_get_resource_start(psm, SYS_RES_IRQ, KBDC_RID_AUX); 1093 if (irq > 0) 1094 return; 1095 1096 /* 1097 * If the PS/2 mouse device has already been reported by ACPI or 1098 * PnP BIOS, obtain the IRQ resource from it. 1099 * (See psmcpnp_attach() below.) 1100 */ 1101 psmc = device_find_child(device_get_parent(parent), 1102 PSMCPNP_DRIVER_NAME, unit); 1103 if (psmc == NULL) 1104 return; 1105 irq = bus_get_resource_start(psmc, SYS_RES_IRQ, 0); 1106 if (irq <= 0) 1107 return; 1108 bus_set_resource(psm, SYS_RES_IRQ, KBDC_RID_AUX, irq, 1); 1109 } 1110 1111 #define endprobe(v) do { \ 1112 if (bootverbose) \ 1113 --verbose; \ 1114 kbdc_set_device_mask(sc->kbdc, mask); \ 1115 kbdc_lock(sc->kbdc, FALSE); \ 1116 return (v); \ 1117 } while (0) 1118 1119 static int 1120 psmprobe(device_t dev) 1121 { 1122 int unit = device_get_unit(dev); 1123 struct psm_softc *sc = device_get_softc(dev); 1124 int stat[3]; 1125 int command_byte; 1126 int mask; 1127 int rid; 1128 int i; 1129 1130 #if 0 1131 kbdc_debug(TRUE); 1132 #endif 1133 1134 /* see if IRQ is available */ 1135 rid = KBDC_RID_AUX; 1136 sc->intr = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, 1137 RF_SHAREABLE | RF_ACTIVE); 1138 if (sc->intr == NULL) { 1139 if (bootverbose) 1140 device_printf(dev, "unable to allocate IRQ\n"); 1141 return (ENXIO); 1142 } 1143 bus_release_resource(dev, SYS_RES_IRQ, rid, sc->intr); 1144 1145 sc->unit = unit; 1146 sc->kbdc = atkbdc_open(device_get_unit(device_get_parent(dev))); 1147 sc->config = device_get_flags(dev) & PSM_CONFIG_FLAGS; 1148 /* XXX: for backward compatibility */ 1149 #if defined(PSM_HOOKRESUME) || defined(PSM_HOOKAPM) 1150 sc->config |= 1151 #ifdef PSM_RESETAFTERSUSPEND 1152 PSM_CONFIG_HOOKRESUME | PSM_CONFIG_INITAFTERSUSPEND; 1153 #else 1154 PSM_CONFIG_HOOKRESUME; 1155 #endif 1156 #endif /* PSM_HOOKRESUME | PSM_HOOKAPM */ 1157 sc->flags = 0; 1158 if (bootverbose) 1159 ++verbose; 1160 1161 device_set_desc(dev, "PS/2 Mouse"); 1162 1163 if (!kbdc_lock(sc->kbdc, TRUE)) { 1164 printf("psm%d: unable to lock the controller.\n", unit); 1165 if (bootverbose) 1166 --verbose; 1167 return (ENXIO); 1168 } 1169 1170 /* 1171 * NOTE: two bits in the command byte controls the operation of the 1172 * aux port (mouse port): the aux port disable bit (bit 5) and the aux 1173 * port interrupt (IRQ 12) enable bit (bit 2). 1174 */ 1175 1176 /* discard anything left after the keyboard initialization */ 1177 empty_both_buffers(sc->kbdc, 10); 1178 1179 /* save the current command byte; it will be used later */ 1180 mask = kbdc_get_device_mask(sc->kbdc) & ~KBD_AUX_CONTROL_BITS; 1181 command_byte = get_controller_command_byte(sc->kbdc); 1182 if (verbose) 1183 printf("psm%d: current command byte:%04x\n", unit, 1184 command_byte); 1185 if (command_byte == -1) { 1186 /* CONTROLLER ERROR */ 1187 printf("psm%d: unable to get the current command byte value.\n", 1188 unit); 1189 endprobe(ENXIO); 1190 } 1191 1192 /* 1193 * disable the keyboard port while probing the aux port, which must be 1194 * enabled during this routine 1195 */ 1196 if (!set_controller_command_byte(sc->kbdc, 1197 KBD_KBD_CONTROL_BITS | KBD_AUX_CONTROL_BITS, 1198 KBD_DISABLE_KBD_PORT | KBD_DISABLE_KBD_INT | 1199 KBD_ENABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1200 /* 1201 * this is CONTROLLER ERROR; I don't know how to recover 1202 * from this error... 1203 */ 1204 restore_controller(sc->kbdc, command_byte); 1205 printf("psm%d: unable to set the command byte.\n", unit); 1206 endprobe(ENXIO); 1207 } 1208 write_controller_command(sc->kbdc, KBDC_ENABLE_AUX_PORT); 1209 1210 /* 1211 * NOTE: `test_aux_port()' is designed to return with zero if the aux 1212 * port exists and is functioning. However, some controllers appears 1213 * to respond with zero even when the aux port doesn't exist. (It may 1214 * be that this is only the case when the controller DOES have the aux 1215 * port but the port is not wired on the motherboard.) The keyboard 1216 * controllers without the port, such as the original AT, are 1217 * supporsed to return with an error code or simply time out. In any 1218 * case, we have to continue probing the port even when the controller 1219 * passes this test. 1220 * 1221 * XXX: some controllers erroneously return the error code 1, 2 or 3 1222 * when it has the perfectly functional aux port. We have to ignore 1223 * this error code. Even if the controller HAS error with the aux 1224 * port, it will be detected later... 1225 * XXX: another incompatible controller returns PSM_ACK (0xfa)... 1226 */ 1227 switch ((i = test_aux_port(sc->kbdc))) { 1228 case 1: /* ignore these errors */ 1229 case 2: 1230 case 3: 1231 case PSM_ACK: 1232 if (verbose) 1233 printf("psm%d: strange result for test aux port " 1234 "(%d).\n", unit, i); 1235 /* FALLTHROUGH */ 1236 case 0: /* no error */ 1237 break; 1238 case -1: /* time out */ 1239 default: /* error */ 1240 recover_from_error(sc->kbdc); 1241 if (sc->config & PSM_CONFIG_IGNPORTERROR) 1242 break; 1243 restore_controller(sc->kbdc, command_byte); 1244 if (verbose) 1245 printf("psm%d: the aux port is not functioning (%d).\n", 1246 unit, i); 1247 endprobe(ENXIO); 1248 } 1249 1250 if (sc->config & PSM_CONFIG_NORESET) { 1251 /* 1252 * Don't try to reset the pointing device. It may possibly be 1253 * left in the unknown state, though... 1254 */ 1255 } else { 1256 /* 1257 * NOTE: some controllers appears to hang the `keyboard' when 1258 * the aux port doesn't exist and `PSMC_RESET_DEV' is issued. 1259 * 1260 * Attempt to reset the controller twice -- this helps 1261 * pierce through some KVM switches. The second reset 1262 * is non-fatal. 1263 */ 1264 if (!reset_aux_dev(sc->kbdc)) { 1265 recover_from_error(sc->kbdc); 1266 restore_controller(sc->kbdc, command_byte); 1267 if (verbose) 1268 printf("psm%d: failed to reset the aux " 1269 "device.\n", unit); 1270 endprobe(ENXIO); 1271 } else if (!reset_aux_dev(sc->kbdc)) { 1272 recover_from_error(sc->kbdc); 1273 if (verbose >= 2) 1274 printf("psm%d: failed to reset the aux device " 1275 "(2).\n", unit); 1276 } 1277 } 1278 1279 /* 1280 * both the aux port and the aux device is functioning, see if the 1281 * device can be enabled. NOTE: when enabled, the device will start 1282 * sending data; we shall immediately disable the device once we know 1283 * the device can be enabled. 1284 */ 1285 if (!enable_aux_dev(sc->kbdc) || !disable_aux_dev(sc->kbdc)) { 1286 /* MOUSE ERROR */ 1287 recover_from_error(sc->kbdc); 1288 restore_controller(sc->kbdc, command_byte); 1289 if (verbose) 1290 printf("psm%d: failed to enable the aux device.\n", 1291 unit); 1292 endprobe(ENXIO); 1293 } 1294 1295 /* save the default values after reset */ 1296 if (get_mouse_status(sc->kbdc, stat, 0, 3) >= 3) { 1297 sc->dflt_mode.rate = sc->mode.rate = stat[2]; 1298 sc->dflt_mode.resolution = sc->mode.resolution = stat[1]; 1299 } else { 1300 sc->dflt_mode.rate = sc->mode.rate = -1; 1301 sc->dflt_mode.resolution = sc->mode.resolution = -1; 1302 } 1303 1304 /* hardware information */ 1305 sc->hw.iftype = MOUSE_IF_PS2; 1306 1307 /* verify the device is a mouse */ 1308 sc->hw.hwid = get_aux_id(sc->kbdc); 1309 if (!is_a_mouse(sc->hw.hwid)) { 1310 restore_controller(sc->kbdc, command_byte); 1311 if (verbose) 1312 printf("psm%d: unknown device type (%d).\n", unit, 1313 sc->hw.hwid); 1314 endprobe(ENXIO); 1315 } 1316 switch (sc->hw.hwid) { 1317 case PSM_BALLPOINT_ID: 1318 sc->hw.type = MOUSE_TRACKBALL; 1319 break; 1320 case PSM_MOUSE_ID: 1321 case PSM_INTELLI_ID: 1322 case PSM_EXPLORER_ID: 1323 case PSM_4DMOUSE_ID: 1324 case PSM_4DPLUS_ID: 1325 sc->hw.type = MOUSE_MOUSE; 1326 break; 1327 default: 1328 sc->hw.type = MOUSE_UNKNOWN; 1329 break; 1330 } 1331 1332 if (sc->config & PSM_CONFIG_NOIDPROBE) { 1333 sc->hw.buttons = 2; 1334 i = GENERIC_MOUSE_ENTRY; 1335 } else { 1336 /* # of buttons */ 1337 sc->hw.buttons = get_mouse_buttons(sc->kbdc); 1338 1339 /* other parameters */ 1340 for (i = 0; vendortype[i].probefunc != NULL; ++i) 1341 if ((*vendortype[i].probefunc)(sc)) { 1342 if (verbose >= 2) 1343 printf("psm%d: found %s\n", unit, 1344 model_name(vendortype[i].model)); 1345 break; 1346 } 1347 } 1348 1349 sc->hw.model = vendortype[i].model; 1350 1351 sc->dflt_mode.level = PSM_LEVEL_BASE; 1352 sc->dflt_mode.packetsize = MOUSE_PS2_PACKETSIZE; 1353 sc->dflt_mode.accelfactor = (sc->config & PSM_CONFIG_ACCEL) >> 4; 1354 if (sc->config & PSM_CONFIG_NOCHECKSYNC) 1355 sc->dflt_mode.syncmask[0] = 0; 1356 else 1357 sc->dflt_mode.syncmask[0] = vendortype[i].syncmask; 1358 if (sc->config & PSM_CONFIG_FORCETAP) 1359 sc->dflt_mode.syncmask[0] &= ~MOUSE_PS2_TAP; 1360 sc->dflt_mode.syncmask[1] = 0; /* syncbits */ 1361 sc->mode = sc->dflt_mode; 1362 sc->mode.packetsize = vendortype[i].packetsize; 1363 1364 /* set mouse parameters */ 1365 #if 0 1366 /* 1367 * A version of Logitech FirstMouse+ won't report wheel movement, 1368 * if SET_DEFAULTS is sent... Don't use this command. 1369 * This fix was found by Takashi Nishida. 1370 */ 1371 i = send_aux_command(sc->kbdc, PSMC_SET_DEFAULTS); 1372 if (verbose >= 2) 1373 printf("psm%d: SET_DEFAULTS return code:%04x\n", unit, i); 1374 #endif 1375 if (sc->config & PSM_CONFIG_RESOLUTION) 1376 sc->mode.resolution = 1377 set_mouse_resolution(sc->kbdc, 1378 (sc->config & PSM_CONFIG_RESOLUTION) - 1); 1379 else if (sc->mode.resolution >= 0) 1380 sc->mode.resolution = 1381 set_mouse_resolution(sc->kbdc, sc->dflt_mode.resolution); 1382 if (sc->mode.rate > 0) 1383 sc->mode.rate = 1384 set_mouse_sampling_rate(sc->kbdc, sc->dflt_mode.rate); 1385 set_mouse_scaling(sc->kbdc, 1); 1386 1387 /* Record sync on the next data packet we see. */ 1388 sc->flags |= PSM_NEED_SYNCBITS; 1389 1390 /* just check the status of the mouse */ 1391 /* 1392 * NOTE: XXX there are some arcane controller/mouse combinations out 1393 * there, which hung the controller unless there is data transmission 1394 * after ACK from the mouse. 1395 */ 1396 if (get_mouse_status(sc->kbdc, stat, 0, 3) < 3) 1397 printf("psm%d: failed to get status.\n", unit); 1398 else { 1399 /* 1400 * When in its native mode, some mice operate with different 1401 * default parameters than in the PS/2 compatible mode. 1402 */ 1403 sc->dflt_mode.rate = sc->mode.rate = stat[2]; 1404 sc->dflt_mode.resolution = sc->mode.resolution = stat[1]; 1405 } 1406 1407 /* disable the aux port for now... */ 1408 if (!set_controller_command_byte(sc->kbdc, 1409 KBD_KBD_CONTROL_BITS | KBD_AUX_CONTROL_BITS, 1410 (command_byte & KBD_KBD_CONTROL_BITS) | 1411 KBD_DISABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1412 /* 1413 * this is CONTROLLER ERROR; I don't know the proper way to 1414 * recover from this error... 1415 */ 1416 restore_controller(sc->kbdc, command_byte); 1417 printf("psm%d: unable to set the command byte.\n", unit); 1418 endprobe(ENXIO); 1419 } 1420 1421 /* done */ 1422 kbdc_set_device_mask(sc->kbdc, mask | KBD_AUX_CONTROL_BITS); 1423 kbdc_lock(sc->kbdc, FALSE); 1424 return (0); 1425 } 1426 1427 static int 1428 psmattach(device_t dev) 1429 { 1430 int unit = device_get_unit(dev); 1431 struct psm_softc *sc = device_get_softc(dev); 1432 int error; 1433 int rid; 1434 1435 /* Setup initial state */ 1436 sc->state = PSM_VALID; 1437 callout_handle_init(&sc->callout); 1438 1439 /* Setup our interrupt handler */ 1440 rid = KBDC_RID_AUX; 1441 sc->intr = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, 1442 RF_SHAREABLE | RF_ACTIVE); 1443 if (sc->intr == NULL) 1444 return (ENXIO); 1445 error = bus_setup_intr(dev, sc->intr, INTR_TYPE_TTY, NULL, psmintr, sc, 1446 &sc->ih); 1447 if (error) { 1448 bus_release_resource(dev, SYS_RES_IRQ, rid, sc->intr); 1449 return (error); 1450 } 1451 1452 /* Done */ 1453 sc->dev = make_dev(&psm_cdevsw, 0, 0, 0, 0666, "psm%d", unit); 1454 sc->dev->si_drv1 = sc; 1455 sc->bdev = make_dev(&psm_cdevsw, 0, 0, 0, 0666, "bpsm%d", unit); 1456 sc->bdev->si_drv1 = sc; 1457 1458 if (!verbose) 1459 printf("psm%d: model %s, device ID %d\n", 1460 unit, model_name(sc->hw.model), sc->hw.hwid & 0x00ff); 1461 else { 1462 printf("psm%d: model %s, device ID %d-%02x, %d buttons\n", 1463 unit, model_name(sc->hw.model), sc->hw.hwid & 0x00ff, 1464 sc->hw.hwid >> 8, sc->hw.buttons); 1465 printf("psm%d: config:%08x, flags:%08x, packet size:%d\n", 1466 unit, sc->config, sc->flags, sc->mode.packetsize); 1467 printf("psm%d: syncmask:%02x, syncbits:%02x\n", 1468 unit, sc->mode.syncmask[0], sc->mode.syncmask[1]); 1469 } 1470 1471 if (bootverbose) 1472 --verbose; 1473 1474 return (0); 1475 } 1476 1477 static int 1478 psmdetach(device_t dev) 1479 { 1480 struct psm_softc *sc; 1481 int rid; 1482 1483 sc = device_get_softc(dev); 1484 if (sc->state & PSM_OPEN) 1485 return (EBUSY); 1486 1487 rid = KBDC_RID_AUX; 1488 bus_teardown_intr(dev, sc->intr, sc->ih); 1489 bus_release_resource(dev, SYS_RES_IRQ, rid, sc->intr); 1490 1491 destroy_dev(sc->dev); 1492 destroy_dev(sc->bdev); 1493 1494 return (0); 1495 } 1496 1497 static int 1498 psmopen(struct cdev *dev, int flag, int fmt, struct thread *td) 1499 { 1500 struct psm_softc *sc; 1501 int command_byte; 1502 int err; 1503 int s; 1504 1505 /* Get device data */ 1506 sc = dev->si_drv1; 1507 if ((sc == NULL) || (sc->state & PSM_VALID) == 0) { 1508 /* the device is no longer valid/functioning */ 1509 return (ENXIO); 1510 } 1511 1512 /* Disallow multiple opens */ 1513 if (sc->state & PSM_OPEN) 1514 return (EBUSY); 1515 1516 device_busy(devclass_get_device(psm_devclass, sc->unit)); 1517 1518 /* Initialize state */ 1519 sc->mode.level = sc->dflt_mode.level; 1520 sc->mode.protocol = sc->dflt_mode.protocol; 1521 sc->watchdog = FALSE; 1522 sc->async = NULL; 1523 1524 /* flush the event queue */ 1525 sc->queue.count = 0; 1526 sc->queue.head = 0; 1527 sc->queue.tail = 0; 1528 sc->status.flags = 0; 1529 sc->status.button = 0; 1530 sc->status.obutton = 0; 1531 sc->status.dx = 0; 1532 sc->status.dy = 0; 1533 sc->status.dz = 0; 1534 sc->button = 0; 1535 sc->pqueue_start = 0; 1536 sc->pqueue_end = 0; 1537 1538 /* empty input buffer */ 1539 flushpackets(sc); 1540 sc->syncerrors = 0; 1541 sc->pkterrors = 0; 1542 1543 /* don't let timeout routines in the keyboard driver to poll the kbdc */ 1544 if (!kbdc_lock(sc->kbdc, TRUE)) 1545 return (EIO); 1546 1547 /* save the current controller command byte */ 1548 s = spltty(); 1549 command_byte = get_controller_command_byte(sc->kbdc); 1550 1551 /* enable the aux port and temporalily disable the keyboard */ 1552 if (command_byte == -1 || !set_controller_command_byte(sc->kbdc, 1553 kbdc_get_device_mask(sc->kbdc), 1554 KBD_DISABLE_KBD_PORT | KBD_DISABLE_KBD_INT | 1555 KBD_ENABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1556 /* CONTROLLER ERROR; do you know how to get out of this? */ 1557 kbdc_lock(sc->kbdc, FALSE); 1558 splx(s); 1559 log(LOG_ERR, 1560 "psm%d: unable to set the command byte (psmopen).\n", 1561 sc->unit); 1562 return (EIO); 1563 } 1564 /* 1565 * Now that the keyboard controller is told not to generate 1566 * the keyboard and mouse interrupts, call `splx()' to allow 1567 * the other tty interrupts. The clock interrupt may also occur, 1568 * but timeout routines will be blocked by the poll flag set 1569 * via `kbdc_lock()' 1570 */ 1571 splx(s); 1572 1573 /* enable the mouse device */ 1574 err = doopen(sc, command_byte); 1575 1576 /* done */ 1577 if (err == 0) 1578 sc->state |= PSM_OPEN; 1579 kbdc_lock(sc->kbdc, FALSE); 1580 return (err); 1581 } 1582 1583 static int 1584 psmclose(struct cdev *dev, int flag, int fmt, struct thread *td) 1585 { 1586 struct psm_softc *sc = dev->si_drv1; 1587 int stat[3]; 1588 int command_byte; 1589 int s; 1590 1591 /* don't let timeout routines in the keyboard driver to poll the kbdc */ 1592 if (!kbdc_lock(sc->kbdc, TRUE)) 1593 return (EIO); 1594 1595 /* save the current controller command byte */ 1596 s = spltty(); 1597 command_byte = get_controller_command_byte(sc->kbdc); 1598 if (command_byte == -1) { 1599 kbdc_lock(sc->kbdc, FALSE); 1600 splx(s); 1601 return (EIO); 1602 } 1603 1604 /* disable the aux interrupt and temporalily disable the keyboard */ 1605 if (!set_controller_command_byte(sc->kbdc, 1606 kbdc_get_device_mask(sc->kbdc), 1607 KBD_DISABLE_KBD_PORT | KBD_DISABLE_KBD_INT | 1608 KBD_ENABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1609 log(LOG_ERR, 1610 "psm%d: failed to disable the aux int (psmclose).\n", 1611 sc->unit); 1612 /* CONTROLLER ERROR; 1613 * NOTE: we shall force our way through. Because the only 1614 * ill effect we shall see is that we may not be able 1615 * to read ACK from the mouse, and it doesn't matter much 1616 * so long as the mouse will accept the DISABLE command. 1617 */ 1618 } 1619 splx(s); 1620 1621 /* stop the watchdog timer */ 1622 untimeout(psmtimeout, (void *)(uintptr_t)sc, sc->callout); 1623 callout_handle_init(&sc->callout); 1624 1625 /* remove anything left in the output buffer */ 1626 empty_aux_buffer(sc->kbdc, 10); 1627 1628 /* disable the aux device, port and interrupt */ 1629 if (sc->state & PSM_VALID) { 1630 if (!disable_aux_dev(sc->kbdc)) { 1631 /* MOUSE ERROR; 1632 * NOTE: we don't return (error) and continue, 1633 * pretending we have successfully disabled the device. 1634 * It's OK because the interrupt routine will discard 1635 * any data from the mouse hereafter. 1636 */ 1637 log(LOG_ERR, 1638 "psm%d: failed to disable the device (psmclose).\n", 1639 sc->unit); 1640 } 1641 1642 if (get_mouse_status(sc->kbdc, stat, 0, 3) < 3) 1643 log(LOG_DEBUG, 1644 "psm%d: failed to get status (psmclose).\n", 1645 sc->unit); 1646 } 1647 1648 if (!set_controller_command_byte(sc->kbdc, 1649 kbdc_get_device_mask(sc->kbdc), 1650 (command_byte & KBD_KBD_CONTROL_BITS) | 1651 KBD_DISABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1652 /* 1653 * CONTROLLER ERROR; 1654 * we shall ignore this error; see the above comment. 1655 */ 1656 log(LOG_ERR, 1657 "psm%d: failed to disable the aux port (psmclose).\n", 1658 sc->unit); 1659 } 1660 1661 /* remove anything left in the output buffer */ 1662 empty_aux_buffer(sc->kbdc, 10); 1663 1664 /* clean up and sigio requests */ 1665 if (sc->async != NULL) { 1666 funsetown(&sc->async); 1667 sc->async = NULL; 1668 } 1669 1670 /* close is almost always successful */ 1671 sc->state &= ~PSM_OPEN; 1672 kbdc_lock(sc->kbdc, FALSE); 1673 device_unbusy(devclass_get_device(psm_devclass, sc->unit)); 1674 return (0); 1675 } 1676 1677 static int 1678 tame_mouse(struct psm_softc *sc, packetbuf_t *pb, mousestatus_t *status, 1679 u_char *buf) 1680 { 1681 static u_char butmapps2[8] = { 1682 0, 1683 MOUSE_PS2_BUTTON1DOWN, 1684 MOUSE_PS2_BUTTON2DOWN, 1685 MOUSE_PS2_BUTTON1DOWN | MOUSE_PS2_BUTTON2DOWN, 1686 MOUSE_PS2_BUTTON3DOWN, 1687 MOUSE_PS2_BUTTON1DOWN | MOUSE_PS2_BUTTON3DOWN, 1688 MOUSE_PS2_BUTTON2DOWN | MOUSE_PS2_BUTTON3DOWN, 1689 MOUSE_PS2_BUTTON1DOWN | MOUSE_PS2_BUTTON2DOWN | 1690 MOUSE_PS2_BUTTON3DOWN, 1691 }; 1692 static u_char butmapmsc[8] = { 1693 MOUSE_MSC_BUTTON1UP | MOUSE_MSC_BUTTON2UP | 1694 MOUSE_MSC_BUTTON3UP, 1695 MOUSE_MSC_BUTTON2UP | MOUSE_MSC_BUTTON3UP, 1696 MOUSE_MSC_BUTTON1UP | MOUSE_MSC_BUTTON3UP, 1697 MOUSE_MSC_BUTTON3UP, 1698 MOUSE_MSC_BUTTON1UP | MOUSE_MSC_BUTTON2UP, 1699 MOUSE_MSC_BUTTON2UP, 1700 MOUSE_MSC_BUTTON1UP, 1701 0, 1702 }; 1703 int mapped; 1704 int i; 1705 1706 if (sc->mode.level == PSM_LEVEL_BASE) { 1707 mapped = status->button & ~MOUSE_BUTTON4DOWN; 1708 if (status->button & MOUSE_BUTTON4DOWN) 1709 mapped |= MOUSE_BUTTON1DOWN; 1710 status->button = mapped; 1711 buf[0] = MOUSE_PS2_SYNC | butmapps2[mapped & MOUSE_STDBUTTONS]; 1712 i = imax(imin(status->dx, 255), -256); 1713 if (i < 0) 1714 buf[0] |= MOUSE_PS2_XNEG; 1715 buf[1] = i; 1716 i = imax(imin(status->dy, 255), -256); 1717 if (i < 0) 1718 buf[0] |= MOUSE_PS2_YNEG; 1719 buf[2] = i; 1720 return (MOUSE_PS2_PACKETSIZE); 1721 } else if (sc->mode.level == PSM_LEVEL_STANDARD) { 1722 buf[0] = MOUSE_MSC_SYNC | 1723 butmapmsc[status->button & MOUSE_STDBUTTONS]; 1724 i = imax(imin(status->dx, 255), -256); 1725 buf[1] = i >> 1; 1726 buf[3] = i - buf[1]; 1727 i = imax(imin(status->dy, 255), -256); 1728 buf[2] = i >> 1; 1729 buf[4] = i - buf[2]; 1730 i = imax(imin(status->dz, 127), -128); 1731 buf[5] = (i >> 1) & 0x7f; 1732 buf[6] = (i - (i >> 1)) & 0x7f; 1733 buf[7] = (~status->button >> 3) & 0x7f; 1734 return (MOUSE_SYS_PACKETSIZE); 1735 } 1736 return (pb->inputbytes); 1737 } 1738 1739 static int 1740 psmread(struct cdev *dev, struct uio *uio, int flag) 1741 { 1742 struct psm_softc *sc = dev->si_drv1; 1743 u_char buf[PSM_SMALLBUFSIZE]; 1744 int error = 0; 1745 int s; 1746 int l; 1747 1748 if ((sc->state & PSM_VALID) == 0) 1749 return (EIO); 1750 1751 /* block until mouse activity occured */ 1752 s = spltty(); 1753 while (sc->queue.count <= 0) { 1754 if (dev != sc->bdev) { 1755 splx(s); 1756 return (EWOULDBLOCK); 1757 } 1758 sc->state |= PSM_ASLP; 1759 error = tsleep(sc, PZERO | PCATCH, "psmrea", 0); 1760 sc->state &= ~PSM_ASLP; 1761 if (error) { 1762 splx(s); 1763 return (error); 1764 } else if ((sc->state & PSM_VALID) == 0) { 1765 /* the device disappeared! */ 1766 splx(s); 1767 return (EIO); 1768 } 1769 } 1770 splx(s); 1771 1772 /* copy data to the user land */ 1773 while ((sc->queue.count > 0) && (uio->uio_resid > 0)) { 1774 s = spltty(); 1775 l = imin(sc->queue.count, uio->uio_resid); 1776 if (l > sizeof(buf)) 1777 l = sizeof(buf); 1778 if (l > sizeof(sc->queue.buf) - sc->queue.head) { 1779 bcopy(&sc->queue.buf[sc->queue.head], &buf[0], 1780 sizeof(sc->queue.buf) - sc->queue.head); 1781 bcopy(&sc->queue.buf[0], 1782 &buf[sizeof(sc->queue.buf) - sc->queue.head], 1783 l - (sizeof(sc->queue.buf) - sc->queue.head)); 1784 } else 1785 bcopy(&sc->queue.buf[sc->queue.head], &buf[0], l); 1786 sc->queue.count -= l; 1787 sc->queue.head = (sc->queue.head + l) % sizeof(sc->queue.buf); 1788 splx(s); 1789 error = uiomove(buf, l, uio); 1790 if (error) 1791 break; 1792 } 1793 1794 return (error); 1795 } 1796 1797 static int 1798 block_mouse_data(struct psm_softc *sc, int *c) 1799 { 1800 int s; 1801 1802 if (!kbdc_lock(sc->kbdc, TRUE)) 1803 return (EIO); 1804 1805 s = spltty(); 1806 *c = get_controller_command_byte(sc->kbdc); 1807 if ((*c == -1) || !set_controller_command_byte(sc->kbdc, 1808 kbdc_get_device_mask(sc->kbdc), 1809 KBD_DISABLE_KBD_PORT | KBD_DISABLE_KBD_INT | 1810 KBD_ENABLE_AUX_PORT | KBD_DISABLE_AUX_INT)) { 1811 /* this is CONTROLLER ERROR */ 1812 splx(s); 1813 kbdc_lock(sc->kbdc, FALSE); 1814 return (EIO); 1815 } 1816 1817 /* 1818 * The device may be in the middle of status data transmission. 1819 * The transmission will be interrupted, thus, incomplete status 1820 * data must be discarded. Although the aux interrupt is disabled 1821 * at the keyboard controller level, at most one aux interrupt 1822 * may have already been pending and a data byte is in the 1823 * output buffer; throw it away. Note that the second argument 1824 * to `empty_aux_buffer()' is zero, so that the call will just 1825 * flush the internal queue. 1826 * `psmintr()' will be invoked after `splx()' if an interrupt is 1827 * pending; it will see no data and returns immediately. 1828 */ 1829 empty_aux_buffer(sc->kbdc, 0); /* flush the queue */ 1830 read_aux_data_no_wait(sc->kbdc); /* throw away data if any */ 1831 flushpackets(sc); 1832 splx(s); 1833 1834 return (0); 1835 } 1836 1837 static void 1838 dropqueue(struct psm_softc *sc) 1839 { 1840 1841 sc->queue.count = 0; 1842 sc->queue.head = 0; 1843 sc->queue.tail = 0; 1844 if ((sc->state & PSM_SOFTARMED) != 0) { 1845 sc->state &= ~PSM_SOFTARMED; 1846 untimeout(psmsoftintr, (void *)(uintptr_t)sc, sc->softcallout); 1847 } 1848 sc->pqueue_start = sc->pqueue_end; 1849 } 1850 1851 static void 1852 flushpackets(struct psm_softc *sc) 1853 { 1854 1855 dropqueue(sc); 1856 bzero(&sc->pqueue, sizeof(sc->pqueue)); 1857 } 1858 1859 static int 1860 unblock_mouse_data(struct psm_softc *sc, int c) 1861 { 1862 int error = 0; 1863 1864 /* 1865 * We may have seen a part of status data during `set_mouse_XXX()'. 1866 * they have been queued; flush it. 1867 */ 1868 empty_aux_buffer(sc->kbdc, 0); 1869 1870 /* restore ports and interrupt */ 1871 if (!set_controller_command_byte(sc->kbdc, 1872 kbdc_get_device_mask(sc->kbdc), 1873 c & (KBD_KBD_CONTROL_BITS | KBD_AUX_CONTROL_BITS))) { 1874 /* 1875 * CONTROLLER ERROR; this is serious, we may have 1876 * been left with the inaccessible keyboard and 1877 * the disabled mouse interrupt. 1878 */ 1879 error = EIO; 1880 } 1881 1882 kbdc_lock(sc->kbdc, FALSE); 1883 return (error); 1884 } 1885 1886 static int 1887 psmwrite(struct cdev *dev, struct uio *uio, int flag) 1888 { 1889 struct psm_softc *sc = dev->si_drv1; 1890 u_char buf[PSM_SMALLBUFSIZE]; 1891 int error = 0, i, l; 1892 1893 if ((sc->state & PSM_VALID) == 0) 1894 return (EIO); 1895 1896 if (sc->mode.level < PSM_LEVEL_NATIVE) 1897 return (ENODEV); 1898 1899 /* copy data from the user land */ 1900 while (uio->uio_resid > 0) { 1901 l = imin(PSM_SMALLBUFSIZE, uio->uio_resid); 1902 error = uiomove(buf, l, uio); 1903 if (error) 1904 break; 1905 for (i = 0; i < l; i++) { 1906 VLOG(4, (LOG_DEBUG, "psm: cmd 0x%x\n", buf[i])); 1907 if (!write_aux_command(sc->kbdc, buf[i])) { 1908 VLOG(2, (LOG_DEBUG, 1909 "psm: cmd 0x%x failed.\n", buf[i])); 1910 return (reinitialize(sc, FALSE)); 1911 } 1912 } 1913 } 1914 1915 return (error); 1916 } 1917 1918 static int 1919 psmioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, 1920 struct thread *td) 1921 { 1922 struct psm_softc *sc = dev->si_drv1; 1923 mousemode_t mode; 1924 mousestatus_t status; 1925 #if (defined(MOUSE_GETVARS)) 1926 mousevar_t *var; 1927 #endif 1928 mousedata_t *data; 1929 int stat[3]; 1930 int command_byte; 1931 int error = 0; 1932 int s; 1933 1934 /* Perform IOCTL command */ 1935 switch (cmd) { 1936 1937 case OLD_MOUSE_GETHWINFO: 1938 s = spltty(); 1939 ((old_mousehw_t *)addr)->buttons = sc->hw.buttons; 1940 ((old_mousehw_t *)addr)->iftype = sc->hw.iftype; 1941 ((old_mousehw_t *)addr)->type = sc->hw.type; 1942 ((old_mousehw_t *)addr)->hwid = sc->hw.hwid & 0x00ff; 1943 splx(s); 1944 break; 1945 1946 case MOUSE_GETHWINFO: 1947 s = spltty(); 1948 *(mousehw_t *)addr = sc->hw; 1949 if (sc->mode.level == PSM_LEVEL_BASE) 1950 ((mousehw_t *)addr)->model = MOUSE_MODEL_GENERIC; 1951 splx(s); 1952 break; 1953 1954 case MOUSE_SYN_GETHWINFO: 1955 s = spltty(); 1956 if (synaptics_support && sc->hw.model == MOUSE_MODEL_SYNAPTICS) 1957 *(synapticshw_t *)addr = sc->synhw; 1958 else 1959 error = EINVAL; 1960 splx(s); 1961 break; 1962 1963 case OLD_MOUSE_GETMODE: 1964 s = spltty(); 1965 switch (sc->mode.level) { 1966 case PSM_LEVEL_BASE: 1967 ((old_mousemode_t *)addr)->protocol = MOUSE_PROTO_PS2; 1968 break; 1969 case PSM_LEVEL_STANDARD: 1970 ((old_mousemode_t *)addr)->protocol = 1971 MOUSE_PROTO_SYSMOUSE; 1972 break; 1973 case PSM_LEVEL_NATIVE: 1974 ((old_mousemode_t *)addr)->protocol = MOUSE_PROTO_PS2; 1975 break; 1976 } 1977 ((old_mousemode_t *)addr)->rate = sc->mode.rate; 1978 ((old_mousemode_t *)addr)->resolution = sc->mode.resolution; 1979 ((old_mousemode_t *)addr)->accelfactor = sc->mode.accelfactor; 1980 splx(s); 1981 break; 1982 1983 case MOUSE_GETMODE: 1984 s = spltty(); 1985 *(mousemode_t *)addr = sc->mode; 1986 if ((sc->flags & PSM_NEED_SYNCBITS) != 0) { 1987 ((mousemode_t *)addr)->syncmask[0] = 0; 1988 ((mousemode_t *)addr)->syncmask[1] = 0; 1989 } 1990 ((mousemode_t *)addr)->resolution = 1991 MOUSE_RES_LOW - sc->mode.resolution; 1992 switch (sc->mode.level) { 1993 case PSM_LEVEL_BASE: 1994 ((mousemode_t *)addr)->protocol = MOUSE_PROTO_PS2; 1995 ((mousemode_t *)addr)->packetsize = 1996 MOUSE_PS2_PACKETSIZE; 1997 break; 1998 case PSM_LEVEL_STANDARD: 1999 ((mousemode_t *)addr)->protocol = MOUSE_PROTO_SYSMOUSE; 2000 ((mousemode_t *)addr)->packetsize = 2001 MOUSE_SYS_PACKETSIZE; 2002 ((mousemode_t *)addr)->syncmask[0] = MOUSE_SYS_SYNCMASK; 2003 ((mousemode_t *)addr)->syncmask[1] = MOUSE_SYS_SYNC; 2004 break; 2005 case PSM_LEVEL_NATIVE: 2006 /* FIXME: this isn't quite correct... XXX */ 2007 ((mousemode_t *)addr)->protocol = MOUSE_PROTO_PS2; 2008 break; 2009 } 2010 splx(s); 2011 break; 2012 2013 case OLD_MOUSE_SETMODE: 2014 case MOUSE_SETMODE: 2015 if (cmd == OLD_MOUSE_SETMODE) { 2016 mode.rate = ((old_mousemode_t *)addr)->rate; 2017 /* 2018 * resolution old I/F new I/F 2019 * default 0 0 2020 * low 1 -2 2021 * medium low 2 -3 2022 * medium high 3 -4 2023 * high 4 -5 2024 */ 2025 if (((old_mousemode_t *)addr)->resolution > 0) 2026 mode.resolution = 2027 -((old_mousemode_t *)addr)->resolution - 1; 2028 else 2029 mode.resolution = 0; 2030 mode.accelfactor = 2031 ((old_mousemode_t *)addr)->accelfactor; 2032 mode.level = -1; 2033 } else 2034 mode = *(mousemode_t *)addr; 2035 2036 /* adjust and validate parameters. */ 2037 if (mode.rate > UCHAR_MAX) 2038 return (EINVAL); 2039 if (mode.rate == 0) 2040 mode.rate = sc->dflt_mode.rate; 2041 else if (mode.rate == -1) 2042 /* don't change the current setting */ 2043 ; 2044 else if (mode.rate < 0) 2045 return (EINVAL); 2046 if (mode.resolution >= UCHAR_MAX) 2047 return (EINVAL); 2048 if (mode.resolution >= 200) 2049 mode.resolution = MOUSE_RES_HIGH; 2050 else if (mode.resolution >= 100) 2051 mode.resolution = MOUSE_RES_MEDIUMHIGH; 2052 else if (mode.resolution >= 50) 2053 mode.resolution = MOUSE_RES_MEDIUMLOW; 2054 else if (mode.resolution > 0) 2055 mode.resolution = MOUSE_RES_LOW; 2056 if (mode.resolution == MOUSE_RES_DEFAULT) 2057 mode.resolution = sc->dflt_mode.resolution; 2058 else if (mode.resolution == -1) 2059 /* don't change the current setting */ 2060 ; 2061 else if (mode.resolution < 0) /* MOUSE_RES_LOW/MEDIUM/HIGH */ 2062 mode.resolution = MOUSE_RES_LOW - mode.resolution; 2063 if (mode.level == -1) 2064 /* don't change the current setting */ 2065 mode.level = sc->mode.level; 2066 else if ((mode.level < PSM_LEVEL_MIN) || 2067 (mode.level > PSM_LEVEL_MAX)) 2068 return (EINVAL); 2069 if (mode.accelfactor == -1) 2070 /* don't change the current setting */ 2071 mode.accelfactor = sc->mode.accelfactor; 2072 else if (mode.accelfactor < 0) 2073 return (EINVAL); 2074 2075 /* don't allow anybody to poll the keyboard controller */ 2076 error = block_mouse_data(sc, &command_byte); 2077 if (error) 2078 return (error); 2079 2080 /* set mouse parameters */ 2081 if (mode.rate > 0) 2082 mode.rate = set_mouse_sampling_rate(sc->kbdc, 2083 mode.rate); 2084 if (mode.resolution >= 0) 2085 mode.resolution = 2086 set_mouse_resolution(sc->kbdc, mode.resolution); 2087 set_mouse_scaling(sc->kbdc, 1); 2088 get_mouse_status(sc->kbdc, stat, 0, 3); 2089 2090 s = spltty(); 2091 sc->mode.rate = mode.rate; 2092 sc->mode.resolution = mode.resolution; 2093 sc->mode.accelfactor = mode.accelfactor; 2094 sc->mode.level = mode.level; 2095 splx(s); 2096 2097 unblock_mouse_data(sc, command_byte); 2098 break; 2099 2100 case MOUSE_GETLEVEL: 2101 *(int *)addr = sc->mode.level; 2102 break; 2103 2104 case MOUSE_SETLEVEL: 2105 if ((*(int *)addr < PSM_LEVEL_MIN) || 2106 (*(int *)addr > PSM_LEVEL_MAX)) 2107 return (EINVAL); 2108 sc->mode.level = *(int *)addr; 2109 break; 2110 2111 case MOUSE_GETSTATUS: 2112 s = spltty(); 2113 status = sc->status; 2114 sc->status.flags = 0; 2115 sc->status.obutton = sc->status.button; 2116 sc->status.button = 0; 2117 sc->status.dx = 0; 2118 sc->status.dy = 0; 2119 sc->status.dz = 0; 2120 splx(s); 2121 *(mousestatus_t *)addr = status; 2122 break; 2123 2124 #if (defined(MOUSE_GETVARS)) 2125 case MOUSE_GETVARS: 2126 var = (mousevar_t *)addr; 2127 bzero(var, sizeof(*var)); 2128 s = spltty(); 2129 var->var[0] = MOUSE_VARS_PS2_SIG; 2130 var->var[1] = sc->config; 2131 var->var[2] = sc->flags; 2132 splx(s); 2133 break; 2134 2135 case MOUSE_SETVARS: 2136 return (ENODEV); 2137 #endif /* MOUSE_GETVARS */ 2138 2139 case MOUSE_READSTATE: 2140 case MOUSE_READDATA: 2141 data = (mousedata_t *)addr; 2142 if (data->len > sizeof(data->buf)/sizeof(data->buf[0])) 2143 return (EINVAL); 2144 2145 error = block_mouse_data(sc, &command_byte); 2146 if (error) 2147 return (error); 2148 if ((data->len = get_mouse_status(sc->kbdc, data->buf, 2149 (cmd == MOUSE_READDATA) ? 1 : 0, data->len)) <= 0) 2150 error = EIO; 2151 unblock_mouse_data(sc, command_byte); 2152 break; 2153 2154 #if (defined(MOUSE_SETRESOLUTION)) 2155 case MOUSE_SETRESOLUTION: 2156 mode.resolution = *(int *)addr; 2157 if (mode.resolution >= UCHAR_MAX) 2158 return (EINVAL); 2159 else if (mode.resolution >= 200) 2160 mode.resolution = MOUSE_RES_HIGH; 2161 else if (mode.resolution >= 100) 2162 mode.resolution = MOUSE_RES_MEDIUMHIGH; 2163 else if (mode.resolution >= 50) 2164 mode.resolution = MOUSE_RES_MEDIUMLOW; 2165 else if (mode.resolution > 0) 2166 mode.resolution = MOUSE_RES_LOW; 2167 if (mode.resolution == MOUSE_RES_DEFAULT) 2168 mode.resolution = sc->dflt_mode.resolution; 2169 else if (mode.resolution == -1) 2170 mode.resolution = sc->mode.resolution; 2171 else if (mode.resolution < 0) /* MOUSE_RES_LOW/MEDIUM/HIGH */ 2172 mode.resolution = MOUSE_RES_LOW - mode.resolution; 2173 2174 error = block_mouse_data(sc, &command_byte); 2175 if (error) 2176 return (error); 2177 sc->mode.resolution = 2178 set_mouse_resolution(sc->kbdc, mode.resolution); 2179 if (sc->mode.resolution != mode.resolution) 2180 error = EIO; 2181 unblock_mouse_data(sc, command_byte); 2182 break; 2183 #endif /* MOUSE_SETRESOLUTION */ 2184 2185 #if (defined(MOUSE_SETRATE)) 2186 case MOUSE_SETRATE: 2187 mode.rate = *(int *)addr; 2188 if (mode.rate > UCHAR_MAX) 2189 return (EINVAL); 2190 if (mode.rate == 0) 2191 mode.rate = sc->dflt_mode.rate; 2192 else if (mode.rate < 0) 2193 mode.rate = sc->mode.rate; 2194 2195 error = block_mouse_data(sc, &command_byte); 2196 if (error) 2197 return (error); 2198 sc->mode.rate = set_mouse_sampling_rate(sc->kbdc, mode.rate); 2199 if (sc->mode.rate != mode.rate) 2200 error = EIO; 2201 unblock_mouse_data(sc, command_byte); 2202 break; 2203 #endif /* MOUSE_SETRATE */ 2204 2205 #if (defined(MOUSE_SETSCALING)) 2206 case MOUSE_SETSCALING: 2207 if ((*(int *)addr <= 0) || (*(int *)addr > 2)) 2208 return (EINVAL); 2209 2210 error = block_mouse_data(sc, &command_byte); 2211 if (error) 2212 return (error); 2213 if (!set_mouse_scaling(sc->kbdc, *(int *)addr)) 2214 error = EIO; 2215 unblock_mouse_data(sc, command_byte); 2216 break; 2217 #endif /* MOUSE_SETSCALING */ 2218 2219 #if (defined(MOUSE_GETHWID)) 2220 case MOUSE_GETHWID: 2221 error = block_mouse_data(sc, &command_byte); 2222 if (error) 2223 return (error); 2224 sc->hw.hwid &= ~0x00ff; 2225 sc->hw.hwid |= get_aux_id(sc->kbdc); 2226 *(int *)addr = sc->hw.hwid & 0x00ff; 2227 unblock_mouse_data(sc, command_byte); 2228 break; 2229 #endif /* MOUSE_GETHWID */ 2230 2231 case FIONBIO: 2232 case FIOASYNC: 2233 break; 2234 case FIOSETOWN: 2235 error = fsetown(*(int *)addr, &sc->async); 2236 break; 2237 case FIOGETOWN: 2238 *(int *) addr = fgetown(&sc->async); 2239 break; 2240 default: 2241 return (ENOTTY); 2242 } 2243 2244 return (error); 2245 } 2246 2247 static void 2248 psmtimeout(void *arg) 2249 { 2250 struct psm_softc *sc; 2251 int s; 2252 2253 sc = (struct psm_softc *)arg; 2254 s = spltty(); 2255 if (sc->watchdog && kbdc_lock(sc->kbdc, TRUE)) { 2256 VLOG(4, (LOG_DEBUG, "psm%d: lost interrupt?\n", sc->unit)); 2257 psmintr(sc); 2258 kbdc_lock(sc->kbdc, FALSE); 2259 } 2260 sc->watchdog = TRUE; 2261 splx(s); 2262 sc->callout = timeout(psmtimeout, (void *)(uintptr_t)sc, hz); 2263 } 2264 2265 /* Add all sysctls under the debug.psm and hw.psm nodes */ 2266 SYSCTL_NODE(_debug, OID_AUTO, psm, CTLFLAG_RD, 0, "ps/2 mouse"); 2267 SYSCTL_NODE(_hw, OID_AUTO, psm, CTLFLAG_RD, 0, "ps/2 mouse"); 2268 2269 SYSCTL_INT(_debug_psm, OID_AUTO, loglevel, CTLFLAG_RW, &verbose, 0, 2270 "Verbosity level"); 2271 2272 static int psmhz = 20; 2273 SYSCTL_INT(_debug_psm, OID_AUTO, hz, CTLFLAG_RW, &psmhz, 0, 2274 "Frequency of the softcallout (in hz)"); 2275 static int psmerrsecs = 2; 2276 SYSCTL_INT(_debug_psm, OID_AUTO, errsecs, CTLFLAG_RW, &psmerrsecs, 0, 2277 "Number of seconds during which packets will dropped after a sync error"); 2278 static int psmerrusecs = 0; 2279 SYSCTL_INT(_debug_psm, OID_AUTO, errusecs, CTLFLAG_RW, &psmerrusecs, 0, 2280 "Microseconds to add to psmerrsecs"); 2281 static int psmsecs = 0; 2282 SYSCTL_INT(_debug_psm, OID_AUTO, secs, CTLFLAG_RW, &psmsecs, 0, 2283 "Max number of seconds between soft interrupts"); 2284 static int psmusecs = 500000; 2285 SYSCTL_INT(_debug_psm, OID_AUTO, usecs, CTLFLAG_RW, &psmusecs, 0, 2286 "Microseconds to add to psmsecs"); 2287 static int pkterrthresh = 2; 2288 SYSCTL_INT(_debug_psm, OID_AUTO, pkterrthresh, CTLFLAG_RW, &pkterrthresh, 0, 2289 "Number of error packets allowed before reinitializing the mouse"); 2290 2291 SYSCTL_INT(_hw_psm, OID_AUTO, tap_enabled, CTLFLAG_RW, &tap_enabled, 0, 2292 "Enable tap and drag gestures"); 2293 static int tap_threshold = PSM_TAP_THRESHOLD; 2294 SYSCTL_INT(_hw_psm, OID_AUTO, tap_threshold, CTLFLAG_RW, &tap_threshold, 0, 2295 "Button tap threshold"); 2296 static int tap_timeout = PSM_TAP_TIMEOUT; 2297 SYSCTL_INT(_hw_psm, OID_AUTO, tap_timeout, CTLFLAG_RW, &tap_timeout, 0, 2298 "Tap timeout for touchpads"); 2299 2300 static void 2301 psmintr(void *arg) 2302 { 2303 struct psm_softc *sc = arg; 2304 struct timeval now; 2305 int c; 2306 packetbuf_t *pb; 2307 2308 2309 /* read until there is nothing to read */ 2310 while((c = read_aux_data_no_wait(sc->kbdc)) != -1) { 2311 pb = &sc->pqueue[sc->pqueue_end]; 2312 2313 /* discard the byte if the device is not open */ 2314 if ((sc->state & PSM_OPEN) == 0) 2315 continue; 2316 2317 getmicrouptime(&now); 2318 if ((pb->inputbytes > 0) && 2319 timevalcmp(&now, &sc->inputtimeout, >)) { 2320 VLOG(3, (LOG_DEBUG, "psmintr: delay too long; " 2321 "resetting byte count\n")); 2322 pb->inputbytes = 0; 2323 sc->syncerrors = 0; 2324 sc->pkterrors = 0; 2325 } 2326 sc->inputtimeout.tv_sec = PSM_INPUT_TIMEOUT / 1000000; 2327 sc->inputtimeout.tv_usec = PSM_INPUT_TIMEOUT % 1000000; 2328 timevaladd(&sc->inputtimeout, &now); 2329 2330 pb->ipacket[pb->inputbytes++] = c; 2331 2332 if (sc->mode.level == PSM_LEVEL_NATIVE) { 2333 VLOG(4, (LOG_DEBUG, "psmintr: %02x\n", pb->ipacket[0])); 2334 sc->syncerrors = 0; 2335 sc->pkterrors = 0; 2336 goto next; 2337 } else { 2338 if (pb->inputbytes < sc->mode.packetsize) 2339 continue; 2340 2341 VLOG(4, (LOG_DEBUG, 2342 "psmintr: %02x %02x %02x %02x %02x %02x\n", 2343 pb->ipacket[0], pb->ipacket[1], pb->ipacket[2], 2344 pb->ipacket[3], pb->ipacket[4], pb->ipacket[5])); 2345 } 2346 2347 c = pb->ipacket[0]; 2348 2349 if ((sc->flags & PSM_NEED_SYNCBITS) != 0) { 2350 sc->mode.syncmask[1] = (c & sc->mode.syncmask[0]); 2351 sc->flags &= ~PSM_NEED_SYNCBITS; 2352 VLOG(2, (LOG_DEBUG, 2353 "psmintr: Sync bytes now %04x,%04x\n", 2354 sc->mode.syncmask[0], sc->mode.syncmask[0])); 2355 } else if ((c & sc->mode.syncmask[0]) != sc->mode.syncmask[1]) { 2356 VLOG(3, (LOG_DEBUG, "psmintr: out of sync " 2357 "(%04x != %04x) %d cmds since last error.\n", 2358 c & sc->mode.syncmask[0], sc->mode.syncmask[1], 2359 sc->cmdcount - sc->lasterr)); 2360 sc->lasterr = sc->cmdcount; 2361 /* 2362 * The sync byte test is a weak measure of packet 2363 * validity. Conservatively discard any input yet 2364 * to be seen by userland when we detect a sync 2365 * error since there is a good chance some of 2366 * the queued packets have undetected errors. 2367 */ 2368 dropqueue(sc); 2369 if (sc->syncerrors == 0) 2370 sc->pkterrors++; 2371 ++sc->syncerrors; 2372 sc->lastinputerr = now; 2373 if (sc->syncerrors >= sc->mode.packetsize * 2 || 2374 sc->pkterrors >= pkterrthresh) { 2375 /* 2376 * If we've failed to find a single sync byte 2377 * in 2 packets worth of data, or we've seen 2378 * persistent packet errors during the 2379 * validation period, reinitialize the mouse 2380 * in hopes of returning it to the expected 2381 * mode. 2382 */ 2383 VLOG(3, (LOG_DEBUG, 2384 "psmintr: reset the mouse.\n")); 2385 reinitialize(sc, TRUE); 2386 } else if (sc->syncerrors == sc->mode.packetsize) { 2387 /* 2388 * Try a soft reset after searching for a sync 2389 * byte through a packet length of bytes. 2390 */ 2391 VLOG(3, (LOG_DEBUG, 2392 "psmintr: re-enable the mouse.\n")); 2393 pb->inputbytes = 0; 2394 disable_aux_dev(sc->kbdc); 2395 enable_aux_dev(sc->kbdc); 2396 } else { 2397 VLOG(3, (LOG_DEBUG, 2398 "psmintr: discard a byte (%d)\n", 2399 sc->syncerrors)); 2400 pb->inputbytes--; 2401 bcopy(&pb->ipacket[1], &pb->ipacket[0], 2402 pb->inputbytes); 2403 } 2404 continue; 2405 } 2406 2407 /* 2408 * We have what appears to be a valid packet. 2409 * Reset the error counters. 2410 */ 2411 sc->syncerrors = 0; 2412 2413 /* 2414 * Drop even good packets if they occur within a timeout 2415 * period of a sync error. This allows the detection of 2416 * a change in the mouse's packet mode without exposing 2417 * erratic mouse behavior to the user. Some KVMs forget 2418 * enhanced mouse modes during switch events. 2419 */ 2420 if (!timeelapsed(&sc->lastinputerr, psmerrsecs, psmerrusecs, 2421 &now)) { 2422 pb->inputbytes = 0; 2423 continue; 2424 } 2425 2426 /* 2427 * Now that we're out of the validation period, reset 2428 * the packet error count. 2429 */ 2430 sc->pkterrors = 0; 2431 2432 sc->cmdcount++; 2433 next: 2434 if (++sc->pqueue_end >= PSM_PACKETQUEUE) 2435 sc->pqueue_end = 0; 2436 /* 2437 * If we've filled the queue then call the softintr ourselves, 2438 * otherwise schedule the interrupt for later. 2439 */ 2440 if (!timeelapsed(&sc->lastsoftintr, psmsecs, psmusecs, &now) || 2441 (sc->pqueue_end == sc->pqueue_start)) { 2442 if ((sc->state & PSM_SOFTARMED) != 0) { 2443 sc->state &= ~PSM_SOFTARMED; 2444 untimeout(psmsoftintr, arg, sc->softcallout); 2445 } 2446 psmsoftintr(arg); 2447 } else if ((sc->state & PSM_SOFTARMED) == 0) { 2448 sc->state |= PSM_SOFTARMED; 2449 sc->softcallout = timeout(psmsoftintr, arg, 2450 psmhz < 1 ? 1 : (hz/psmhz)); 2451 } 2452 } 2453 } 2454 2455 static void 2456 proc_mmanplus(struct psm_softc *sc, packetbuf_t *pb, mousestatus_t *ms, 2457 int *x, int *y, int *z) 2458 { 2459 2460 /* 2461 * PS2++ protocl packet 2462 * 2463 * b7 b6 b5 b4 b3 b2 b1 b0 2464 * byte 1: * 1 p3 p2 1 * * * 2465 * byte 2: c1 c2 p1 p0 d1 d0 1 0 2466 * 2467 * p3-p0: packet type 2468 * c1, c2: c1 & c2 == 1, if p2 == 0 2469 * c1 & c2 == 0, if p2 == 1 2470 * 2471 * packet type: 0 (device type) 2472 * See comments in enable_mmanplus() below. 2473 * 2474 * packet type: 1 (wheel data) 2475 * 2476 * b7 b6 b5 b4 b3 b2 b1 b0 2477 * byte 3: h * B5 B4 s d2 d1 d0 2478 * 2479 * h: 1, if horizontal roller data 2480 * 0, if vertical roller data 2481 * B4, B5: button 4 and 5 2482 * s: sign bit 2483 * d2-d0: roller data 2484 * 2485 * packet type: 2 (reserved) 2486 */ 2487 if (((pb->ipacket[0] & MOUSE_PS2PLUS_SYNCMASK) == MOUSE_PS2PLUS_SYNC) && 2488 (abs(*x) > 191) && MOUSE_PS2PLUS_CHECKBITS(pb->ipacket)) { 2489 /* 2490 * the extended data packet encodes button 2491 * and wheel events 2492 */ 2493 switch (MOUSE_PS2PLUS_PACKET_TYPE(pb->ipacket)) { 2494 case 1: 2495 /* wheel data packet */ 2496 *x = *y = 0; 2497 if (pb->ipacket[2] & 0x80) { 2498 /* XXX horizontal roller count - ignore it */ 2499 ; 2500 } else { 2501 /* vertical roller count */ 2502 *z = (pb->ipacket[2] & MOUSE_PS2PLUS_ZNEG) ? 2503 (pb->ipacket[2] & 0x0f) - 16 : 2504 (pb->ipacket[2] & 0x0f); 2505 } 2506 ms->button |= (pb->ipacket[2] & 2507 MOUSE_PS2PLUS_BUTTON4DOWN) ? 2508 MOUSE_BUTTON4DOWN : 0; 2509 ms->button |= (pb->ipacket[2] & 2510 MOUSE_PS2PLUS_BUTTON5DOWN) ? 2511 MOUSE_BUTTON5DOWN : 0; 2512 break; 2513 case 2: 2514 /* 2515 * this packet type is reserved by 2516 * Logitech... 2517 */ 2518 /* 2519 * IBM ScrollPoint Mouse uses this 2520 * packet type to encode both vertical 2521 * and horizontal scroll movement. 2522 */ 2523 *x = *y = 0; 2524 /* horizontal count */ 2525 if (pb->ipacket[2] & 0x0f) 2526 *z = (pb->ipacket[2] & MOUSE_SPOINT_WNEG) ? 2527 -2 : 2; 2528 /* vertical count */ 2529 if (pb->ipacket[2] & 0xf0) 2530 *z = (pb->ipacket[2] & MOUSE_SPOINT_ZNEG) ? 2531 -1 : 1; 2532 break; 2533 case 0: 2534 /* device type packet - shouldn't happen */ 2535 /* FALLTHROUGH */ 2536 default: 2537 *x = *y = 0; 2538 ms->button = ms->obutton; 2539 VLOG(1, (LOG_DEBUG, "psmintr: unknown PS2++ packet " 2540 "type %d: 0x%02x 0x%02x 0x%02x\n", 2541 MOUSE_PS2PLUS_PACKET_TYPE(pb->ipacket), 2542 pb->ipacket[0], pb->ipacket[1], pb->ipacket[2])); 2543 break; 2544 } 2545 } else { 2546 /* preserve button states */ 2547 ms->button |= ms->obutton & MOUSE_EXTBUTTONS; 2548 } 2549 } 2550 2551 static int 2552 proc_synaptics(struct psm_softc *sc, packetbuf_t *pb, mousestatus_t *ms, 2553 int *x, int *y, int *z) 2554 { 2555 static int touchpad_buttons; 2556 static int guest_buttons; 2557 int w, x0, y0; 2558 2559 /* TouchPad PS/2 absolute mode message format 2560 * 2561 * Bits: 7 6 5 4 3 2 1 0 (LSB) 2562 * ------------------------------------------------ 2563 * ipacket[0]: 1 0 W3 W2 0 W1 R L 2564 * ipacket[1]: Yb Ya Y9 Y8 Xb Xa X9 X8 2565 * ipacket[2]: Z7 Z6 Z5 Z4 Z3 Z2 Z1 Z0 2566 * ipacket[3]: 1 1 Yc Xc 0 W0 D U 2567 * ipacket[4]: X7 X6 X5 X4 X3 X2 X1 X0 2568 * ipacket[5]: Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 2569 * 2570 * Legend: 2571 * L: left physical mouse button 2572 * R: right physical mouse button 2573 * D: down button 2574 * U: up button 2575 * W: "wrist" value 2576 * X: x position 2577 * Y: y position 2578 * Z: pressure 2579 * 2580 * Absolute reportable limits: 0 - 6143. 2581 * Typical bezel limits: 1472 - 5472. 2582 * Typical edge marings: 1632 - 5312. 2583 * 2584 * w = 3 Passthrough Packet 2585 * 2586 * Byte 2,5,6 == Byte 1,2,3 of "Guest" 2587 */ 2588 2589 if (!synaptics_support) 2590 return (0); 2591 2592 /* Sanity check for out of sync packets. */ 2593 if ((pb->ipacket[0] & 0xc8) != 0x80 || 2594 (pb->ipacket[3] & 0xc8) != 0xc0) 2595 return (-1); 2596 2597 *x = *y = 0; 2598 2599 /* 2600 * Pressure value. 2601 * Interpretation: 2602 * z = 0 No finger contact 2603 * z = 10 Finger hovering near the pad 2604 * z = 30 Very light finger contact 2605 * z = 80 Normal finger contact 2606 * z = 110 Very heavy finger contact 2607 * z = 200 Finger lying flat on pad surface 2608 * z = 255 Maximum reportable Z 2609 */ 2610 *z = pb->ipacket[2]; 2611 2612 /* 2613 * Finger width value 2614 * Interpretation: 2615 * w = 0 Two finger on the pad (capMultiFinger needed) 2616 * w = 1 Three or more fingers (capMultiFinger needed) 2617 * w = 2 Pen (instead of finger) (capPen needed) 2618 * w = 3 Reserved (passthrough?) 2619 * w = 4-7 Finger of normal width (capPalmDetect needed) 2620 * w = 8-14 Very wide finger or palm (capPalmDetect needed) 2621 * w = 15 Maximum reportable width (capPalmDetect needed) 2622 */ 2623 /* XXX Is checking capExtended enough? */ 2624 if (sc->synhw.capExtended) 2625 w = ((pb->ipacket[0] & 0x30) >> 2) | 2626 ((pb->ipacket[0] & 0x04) >> 1) | 2627 ((pb->ipacket[3] & 0x04) >> 2); 2628 else { 2629 /* Assume a finger of regular width. */ 2630 w = 4; 2631 } 2632 2633 /* Handle packets from the guest device */ 2634 /* XXX Documentation? */ 2635 if (w == 3 && sc->synhw.capPassthrough) { 2636 *x = ((pb->ipacket[1] & 0x10) ? 2637 pb->ipacket[4] - 256 : pb->ipacket[4]); 2638 *y = ((pb->ipacket[1] & 0x20) ? 2639 pb->ipacket[5] - 256 : pb->ipacket[5]); 2640 *z = 0; 2641 2642 guest_buttons = 0; 2643 if (pb->ipacket[1] & 0x01) 2644 guest_buttons |= MOUSE_BUTTON1DOWN; 2645 if (pb->ipacket[1] & 0x04) 2646 guest_buttons |= MOUSE_BUTTON2DOWN; 2647 if (pb->ipacket[1] & 0x02) 2648 guest_buttons |= MOUSE_BUTTON3DOWN; 2649 2650 ms->button = touchpad_buttons | guest_buttons; 2651 goto SYNAPTICS_END; 2652 } 2653 2654 /* Button presses */ 2655 touchpad_buttons = 0; 2656 if (pb->ipacket[0] & 0x01) 2657 touchpad_buttons |= MOUSE_BUTTON1DOWN; 2658 if (pb->ipacket[0] & 0x02) 2659 touchpad_buttons |= MOUSE_BUTTON3DOWN; 2660 2661 if (sc->synhw.capExtended && sc->synhw.capFourButtons) { 2662 if ((pb->ipacket[3] & 0x01) && (pb->ipacket[0] & 0x01) == 0) 2663 touchpad_buttons |= MOUSE_BUTTON4DOWN; 2664 if ((pb->ipacket[3] & 0x02) && (pb->ipacket[0] & 0x02) == 0) 2665 touchpad_buttons |= MOUSE_BUTTON5DOWN; 2666 } 2667 2668 /* 2669 * In newer pads - bit 0x02 in the third byte of 2670 * the packet indicates that we have an extended 2671 * button press. 2672 */ 2673 /* XXX Documentation? */ 2674 if (pb->ipacket[3] & 0x02) { 2675 /* 2676 * if directional_scrolls is not 1, we treat any of 2677 * the scrolling directions as middle-click. 2678 */ 2679 if (sc->syninfo.directional_scrolls) { 2680 if (pb->ipacket[4] & 0x01) 2681 touchpad_buttons |= MOUSE_BUTTON4DOWN; 2682 if (pb->ipacket[5] & 0x01) 2683 touchpad_buttons |= MOUSE_BUTTON5DOWN; 2684 if (pb->ipacket[4] & 0x02) 2685 touchpad_buttons |= MOUSE_BUTTON6DOWN; 2686 if (pb->ipacket[5] & 0x02) 2687 touchpad_buttons |= MOUSE_BUTTON7DOWN; 2688 } else { 2689 if ((pb->ipacket[4] & 0x0F) || 2690 (pb->ipacket[5] & 0x0F)) 2691 touchpad_buttons |= MOUSE_BUTTON2DOWN; 2692 } 2693 } 2694 2695 ms->button = touchpad_buttons | guest_buttons; 2696 2697 /* Check pressure to detect a real wanted action on the 2698 * touchpad. */ 2699 if (*z >= sc->syninfo.min_pressure) { 2700 synapticsaction_t *synaction; 2701 int cursor, peer, window; 2702 int dx, dy, dxp, dyp; 2703 int max_width, max_pressure; 2704 int margin_top, margin_right, margin_bottom, margin_left; 2705 int na_top, na_right, na_bottom, na_left; 2706 int window_min, window_max; 2707 int multiplicator; 2708 int weight_current, weight_previous, weight_len_squared; 2709 int div_min, div_max, div_len; 2710 int vscroll_hor_area, vscroll_ver_area; 2711 2712 int len, weight_prev_x, weight_prev_y; 2713 int div_max_x, div_max_y, div_x, div_y; 2714 2715 /* Read sysctl. */ 2716 /* XXX Verify values? */ 2717 max_width = sc->syninfo.max_width; 2718 max_pressure = sc->syninfo.max_pressure; 2719 margin_top = sc->syninfo.margin_top; 2720 margin_right = sc->syninfo.margin_right; 2721 margin_bottom = sc->syninfo.margin_bottom; 2722 margin_left = sc->syninfo.margin_left; 2723 na_top = sc->syninfo.na_top; 2724 na_right = sc->syninfo.na_right; 2725 na_bottom = sc->syninfo.na_bottom; 2726 na_left = sc->syninfo.na_left; 2727 window_min = sc->syninfo.window_min; 2728 window_max = sc->syninfo.window_max; 2729 multiplicator = sc->syninfo.multiplicator; 2730 weight_current = sc->syninfo.weight_current; 2731 weight_previous = sc->syninfo.weight_previous; 2732 weight_len_squared = sc->syninfo.weight_len_squared; 2733 div_min = sc->syninfo.div_min; 2734 div_max = sc->syninfo.div_max; 2735 div_len = sc->syninfo.div_len; 2736 vscroll_hor_area = sc->syninfo.vscroll_hor_area; 2737 vscroll_ver_area = sc->syninfo.vscroll_ver_area; 2738 2739 /* Palm detection. */ 2740 if (!( 2741 (sc->synhw.capMultiFinger && (w == 0 || w == 1)) || 2742 (sc->synhw.capPalmDetect && w >= 4 && w <= max_width) || 2743 (!sc->synhw.capPalmDetect && *z <= max_pressure) || 2744 (sc->synhw.capPen && w == 2))) { 2745 /* 2746 * We consider the packet irrelevant for the current 2747 * action when: 2748 * - the width isn't comprised in: 2749 * [4; max_width] 2750 * - the pressure isn't comprised in: 2751 * [min_pressure; max_pressure] 2752 * - pen aren't supported but w is 2 2753 * 2754 * Note that this doesn't terminate the current action. 2755 */ 2756 VLOG(2, (LOG_DEBUG, 2757 "synaptics: palm detected! (%d)\n", w)); 2758 goto SYNAPTICS_END; 2759 } 2760 2761 /* Read current absolute position. */ 2762 x0 = ((pb->ipacket[3] & 0x10) << 8) | 2763 ((pb->ipacket[1] & 0x0f) << 8) | 2764 pb->ipacket[4]; 2765 y0 = ((pb->ipacket[3] & 0x20) << 7) | 2766 ((pb->ipacket[1] & 0xf0) << 4) | 2767 pb->ipacket[5]; 2768 2769 synaction = &(sc->synaction); 2770 2771 /* 2772 * If the action is just beginning, init the structure and 2773 * compute tap timeout. 2774 */ 2775 if (!(sc->flags & PSM_FLAGS_FINGERDOWN)) { 2776 VLOG(3, (LOG_DEBUG, "synaptics: ----\n")); 2777 2778 /* Store the first point of this action. */ 2779 synaction->start_x = x0; 2780 synaction->start_y = y0; 2781 dx = dy = 0; 2782 2783 /* Initialize queue. */ 2784 synaction->queue_cursor = SYNAPTICS_PACKETQUEUE; 2785 synaction->queue_len = 0; 2786 synaction->window_min = window_min; 2787 2788 /* Reset average. */ 2789 synaction->avg_dx = 0; 2790 synaction->avg_dy = 0; 2791 2792 /* Reset squelch. */ 2793 synaction->squelch_x = 0; 2794 synaction->squelch_y = 0; 2795 2796 /* Reset pressure peak. */ 2797 sc->zmax = 0; 2798 2799 /* Reset fingers count. */ 2800 synaction->fingers_nb = 0; 2801 2802 /* Reset virtual scrolling state. */ 2803 synaction->in_vscroll = 0; 2804 2805 /* Compute tap timeout. */ 2806 sc->taptimeout.tv_sec = tap_timeout / 1000000; 2807 sc->taptimeout.tv_usec = tap_timeout % 1000000; 2808 timevaladd(&sc->taptimeout, &sc->lastsoftintr); 2809 2810 sc->flags |= PSM_FLAGS_FINGERDOWN; 2811 } else { 2812 /* Calculate the current delta. */ 2813 cursor = synaction->queue_cursor; 2814 dx = x0 - synaction->queue[cursor].x; 2815 dy = y0 - synaction->queue[cursor].y; 2816 } 2817 2818 /* If in tap-hold, add the recorded button. */ 2819 if (synaction->in_taphold) 2820 ms->button |= synaction->tap_button; 2821 2822 /* 2823 * From now on, we can use the SYNAPTICS_END label to skip 2824 * the current packet. 2825 */ 2826 2827 /* 2828 * Limit the coordinates to the specified margins because 2829 * this area isn't very reliable. 2830 */ 2831 if (x0 <= margin_left) 2832 x0 = margin_left; 2833 else if (x0 >= 6143 - margin_right) 2834 x0 = 6143 - margin_right; 2835 if (y0 <= margin_bottom) 2836 y0 = margin_bottom; 2837 else if (y0 >= 6143 - margin_top) 2838 y0 = 6143 - margin_top; 2839 2840 VLOG(3, (LOG_DEBUG, "synaptics: ipacket: [%d, %d], %d, %d\n", 2841 x0, y0, *z, w)); 2842 2843 /* Queue this new packet. */ 2844 cursor = SYNAPTICS_QUEUE_CURSOR(synaction->queue_cursor - 1); 2845 synaction->queue[cursor].x = x0; 2846 synaction->queue[cursor].y = y0; 2847 synaction->queue_cursor = cursor; 2848 if (synaction->queue_len < SYNAPTICS_PACKETQUEUE) 2849 synaction->queue_len++; 2850 VLOG(5, (LOG_DEBUG, 2851 "synaptics: cursor[%d]: x=%d, y=%d, dx=%d, dy=%d\n", 2852 cursor, x0, y0, dx, dy)); 2853 2854 /* 2855 * For tap, we keep the maximum number of fingers and the 2856 * pressure peak. Also with multiple fingers, we increase 2857 * the minimum window. 2858 */ 2859 switch (w) { 2860 case 1: /* Three or more fingers. */ 2861 synaction->fingers_nb = imax(3, synaction->fingers_nb); 2862 synaction->window_min = window_max; 2863 break; 2864 case 0: /* Two fingers. */ 2865 synaction->fingers_nb = imax(2, synaction->fingers_nb); 2866 synaction->window_min = window_max; 2867 break; 2868 default: /* One finger or undetectable. */ 2869 synaction->fingers_nb = imax(1, synaction->fingers_nb); 2870 } 2871 sc->zmax = imax(*z, sc->zmax); 2872 2873 /* Do we have enough packets to consider this a movement? */ 2874 if (synaction->queue_len < synaction->window_min) 2875 goto SYNAPTICS_END; 2876 2877 /* Is a scrolling action occuring? */ 2878 if (!synaction->in_taphold && !synaction->in_vscroll) { 2879 /* 2880 * A scrolling action must not conflict with a tap 2881 * action. Here are the conditions to consider a 2882 * scrolling action: 2883 * - the action in a configurable area 2884 * - one of the following: 2885 * . the distance between the last packet and the 2886 * first should be above a configurable minimum 2887 * . tap timed out 2888 */ 2889 dxp = abs(synaction->queue[synaction->queue_cursor].x - 2890 synaction->start_x); 2891 dyp = abs(synaction->queue[synaction->queue_cursor].y - 2892 synaction->start_y); 2893 2894 if (timevalcmp(&sc->lastsoftintr, &sc->taptimeout, >) || 2895 dxp >= sc->syninfo.vscroll_min_delta || 2896 dyp >= sc->syninfo.vscroll_min_delta) { 2897 /* Check for horizontal scrolling. */ 2898 if ((vscroll_hor_area > 0 && 2899 synaction->start_y <= vscroll_hor_area) || 2900 (vscroll_hor_area < 0 && 2901 synaction->start_y >= 2902 6143 + vscroll_hor_area)) 2903 synaction->in_vscroll += 2; 2904 2905 /* Check for vertical scrolling. */ 2906 if ((vscroll_ver_area > 0 && 2907 synaction->start_x <= vscroll_ver_area) || 2908 (vscroll_ver_area < 0 && 2909 synaction->start_x >= 2910 6143 + vscroll_ver_area)) 2911 synaction->in_vscroll += 1; 2912 2913 /* Avoid conflicts if area overlaps. */ 2914 if (synaction->in_vscroll == 3) 2915 synaction->in_vscroll = 2916 (dxp > dyp) ? 2 : 1; 2917 } 2918 VLOG(5, (LOG_DEBUG, 2919 "synaptics: virtual scrolling: %s " 2920 "(direction=%d, dxp=%d, dyp=%d)\n", 2921 synaction->in_vscroll ? "YES" : "NO", 2922 synaction->in_vscroll, dxp, dyp)); 2923 } 2924 2925 weight_prev_x = weight_prev_y = weight_previous; 2926 div_max_x = div_max_y = div_max; 2927 2928 if (synaction->in_vscroll) { 2929 /* Dividers are different with virtual scrolling. */ 2930 div_min = sc->syninfo.vscroll_div_min; 2931 div_max_x = div_max_y = sc->syninfo.vscroll_div_max; 2932 } else { 2933 /* 2934 * There's a lot of noise in coordinates when 2935 * the finger is on the touchpad's borders. When 2936 * using this area, we apply a special weight and 2937 * div. 2938 */ 2939 if (x0 <= na_left || x0 >= 6143 - na_right) { 2940 weight_prev_x = sc->syninfo.weight_previous_na; 2941 div_max_x = sc->syninfo.div_max_na; 2942 } 2943 2944 if (y0 <= na_bottom || y0 >= 6143 - na_top) { 2945 weight_prev_y = sc->syninfo.weight_previous_na; 2946 div_max_y = sc->syninfo.div_max_na; 2947 } 2948 } 2949 2950 /* 2951 * Calculate weights for the average operands and 2952 * the divisor. Both depend on the distance between 2953 * the current packet and a previous one (based on the 2954 * window width). 2955 */ 2956 window = imin(synaction->queue_len, window_max); 2957 peer = SYNAPTICS_QUEUE_CURSOR(cursor + window - 1); 2958 dxp = abs(x0 - synaction->queue[peer].x) + 1; 2959 dyp = abs(y0 - synaction->queue[peer].y) + 1; 2960 len = (dxp * dxp) + (dyp * dyp); 2961 weight_prev_x = imin(weight_prev_x, 2962 weight_len_squared * weight_prev_x / len); 2963 weight_prev_y = imin(weight_prev_y, 2964 weight_len_squared * weight_prev_y / len); 2965 2966 len = (dxp + dyp) / 2; 2967 div_x = div_len * div_max_x / len; 2968 div_x = imin(div_max_x, div_x); 2969 div_x = imax(div_min, div_x); 2970 div_y = div_len * div_max_y / len; 2971 div_y = imin(div_max_y, div_y); 2972 div_y = imax(div_min, div_y); 2973 2974 VLOG(3, (LOG_DEBUG, 2975 "synaptics: peer=%d, len=%d, weight=%d/%d, div=%d/%d\n", 2976 peer, len, weight_prev_x, weight_prev_y, div_x, div_y)); 2977 2978 /* Compute averages. */ 2979 synaction->avg_dx = 2980 (weight_current * dx * multiplicator + 2981 weight_prev_x * synaction->avg_dx) / 2982 (weight_current + weight_prev_x); 2983 2984 synaction->avg_dy = 2985 (weight_current * dy * multiplicator + 2986 weight_prev_y * synaction->avg_dy) / 2987 (weight_current + weight_prev_y); 2988 2989 VLOG(5, (LOG_DEBUG, 2990 "synaptics: avg_dx~=%d, avg_dy~=%d\n", 2991 synaction->avg_dx / multiplicator, 2992 synaction->avg_dy / multiplicator)); 2993 2994 /* Use these averages to calculate x & y. */ 2995 synaction->squelch_x += synaction->avg_dx; 2996 *x = synaction->squelch_x / (div_x * multiplicator); 2997 synaction->squelch_x = synaction->squelch_x % 2998 (div_x * multiplicator); 2999 3000 synaction->squelch_y += synaction->avg_dy; 3001 *y = synaction->squelch_y / (div_y * multiplicator); 3002 synaction->squelch_y = synaction->squelch_y % 3003 (div_y * multiplicator); 3004 3005 if (synaction->in_vscroll) { 3006 switch(synaction->in_vscroll) { 3007 case 1: /* Vertical scrolling. */ 3008 if (*y != 0) 3009 ms->button |= (*y > 0) ? 3010 MOUSE_BUTTON4DOWN : 3011 MOUSE_BUTTON5DOWN; 3012 break; 3013 case 2: /* Horizontal scrolling. */ 3014 if (*x != 0) 3015 ms->button |= (*x > 0) ? 3016 MOUSE_BUTTON7DOWN : 3017 MOUSE_BUTTON6DOWN; 3018 break; 3019 } 3020 3021 /* The pointer is not moved. */ 3022 *x = *y = 0; 3023 } else { 3024 VLOG(3, (LOG_DEBUG, "synaptics: [%d, %d] -> [%d, %d]\n", 3025 dx, dy, *x, *y)); 3026 } 3027 } else if (sc->flags & PSM_FLAGS_FINGERDOWN) { 3028 /* 3029 * An action is currently taking place but the pressure 3030 * dropped under the minimum, putting an end to it. 3031 */ 3032 synapticsaction_t *synaction; 3033 int taphold_timeout, dx, dy, tap_max_delta; 3034 3035 synaction = &(sc->synaction); 3036 dx = abs(synaction->queue[synaction->queue_cursor].x - 3037 synaction->start_x); 3038 dy = abs(synaction->queue[synaction->queue_cursor].y - 3039 synaction->start_y); 3040 3041 /* Max delta is disabled for multi-fingers tap. */ 3042 if (synaction->fingers_nb > 1) 3043 tap_max_delta = imax(dx, dy); 3044 else 3045 tap_max_delta = sc->syninfo.tap_max_delta; 3046 3047 sc->flags &= ~PSM_FLAGS_FINGERDOWN; 3048 3049 /* Check for tap. */ 3050 VLOG(3, (LOG_DEBUG, 3051 "synaptics: zmax=%d, dx=%d, dy=%d, " 3052 "delta=%d, fingers=%d, queue=%d\n", 3053 sc->zmax, dx, dy, tap_max_delta, synaction->fingers_nb, 3054 synaction->queue_len)); 3055 if (!synaction->in_vscroll && sc->zmax >= tap_threshold && 3056 timevalcmp(&sc->lastsoftintr, &sc->taptimeout, <=) && 3057 dx <= tap_max_delta && dy <= tap_max_delta && 3058 synaction->queue_len >= sc->syninfo.tap_min_queue) { 3059 /* 3060 * We have a tap if: 3061 * - the maximum pressure went over tap_threshold 3062 * - the action ended before tap_timeout 3063 * 3064 * To handle tap-hold, we must delay any button push to 3065 * the next action. 3066 */ 3067 if (synaction->in_taphold) { 3068 /* 3069 * This is the second and last tap of a 3070 * double tap action, not a tap-hold. 3071 */ 3072 synaction->in_taphold = 0; 3073 3074 /* 3075 * For double-tap to work: 3076 * - no button press is emitted (to 3077 * simulate a button release) 3078 * - PSM_FLAGS_FINGERDOWN is set to 3079 * force the next packet to emit a 3080 * button press) 3081 */ 3082 VLOG(2, (LOG_DEBUG, 3083 "synaptics: button RELEASE: %d\n", 3084 synaction->tap_button)); 3085 sc->flags |= PSM_FLAGS_FINGERDOWN; 3086 } else { 3087 /* 3088 * This is the first tap: we set the 3089 * tap-hold state and notify the button 3090 * down event. 3091 */ 3092 synaction->in_taphold = 1; 3093 taphold_timeout = sc->syninfo.taphold_timeout; 3094 sc->taptimeout.tv_sec = taphold_timeout / 3095 1000000; 3096 sc->taptimeout.tv_usec = taphold_timeout % 3097 1000000; 3098 timevaladd(&sc->taptimeout, &sc->lastsoftintr); 3099 3100 switch (synaction->fingers_nb) { 3101 case 3: 3102 synaction->tap_button = 3103 MOUSE_BUTTON2DOWN; 3104 break; 3105 case 2: 3106 synaction->tap_button = 3107 MOUSE_BUTTON3DOWN; 3108 break; 3109 default: 3110 synaction->tap_button = 3111 MOUSE_BUTTON1DOWN; 3112 } 3113 VLOG(2, (LOG_DEBUG, 3114 "synaptics: button PRESS: %d\n", 3115 synaction->tap_button)); 3116 ms->button |= synaction->tap_button; 3117 } 3118 } else { 3119 /* 3120 * Not enough pressure or timeout: reset 3121 * tap-hold state. 3122 */ 3123 if (synaction->in_taphold) { 3124 VLOG(2, (LOG_DEBUG, 3125 "synaptics: button RELEASE: %d\n", 3126 synaction->tap_button)); 3127 synaction->in_taphold = 0; 3128 } else { 3129 VLOG(2, (LOG_DEBUG, 3130 "synaptics: not a tap-hold\n")); 3131 } 3132 } 3133 } else if (!(sc->flags & PSM_FLAGS_FINGERDOWN) && 3134 sc->synaction.in_taphold) { 3135 /* 3136 * For a tap-hold to work, the button must remain down at 3137 * least until timeout (where the in_taphold flags will be 3138 * cleared) or during the next action. 3139 */ 3140 if (timevalcmp(&sc->lastsoftintr, &sc->taptimeout, <=)) { 3141 ms->button |= sc->synaction.tap_button; 3142 } else { 3143 VLOG(2, (LOG_DEBUG, 3144 "synaptics: button RELEASE: %d\n", 3145 sc->synaction.tap_button)); 3146 sc->synaction.in_taphold = 0; 3147 } 3148 } 3149 3150 SYNAPTICS_END: 3151 /* 3152 * Use the extra buttons as a scrollwheel 3153 * 3154 * XXX X.Org uses the Z axis for vertical wheel only, 3155 * whereas moused(8) understands special values to differ 3156 * vertical and horizontal wheels. 3157 * 3158 * xf86-input-mouse needs therefore a small patch to 3159 * understand these special values. Without it, the 3160 * horizontal wheel acts as a vertical wheel in X.Org. 3161 * 3162 * That's why the horizontal wheel is disabled by 3163 * default for now. 3164 */ 3165 if (ms->button & MOUSE_BUTTON4DOWN) { 3166 *z = -1; 3167 ms->button &= ~MOUSE_BUTTON4DOWN; 3168 } else if (ms->button & MOUSE_BUTTON5DOWN) { 3169 *z = 1; 3170 ms->button &= ~MOUSE_BUTTON5DOWN; 3171 } else if (ms->button & MOUSE_BUTTON6DOWN) { 3172 *z = -2; 3173 ms->button &= ~MOUSE_BUTTON6DOWN; 3174 } else if (ms->button & MOUSE_BUTTON7DOWN) { 3175 *z = 2; 3176 ms->button &= ~MOUSE_BUTTON7DOWN; 3177 } else 3178 *z = 0; 3179 3180 return (0); 3181 } 3182 3183 static void 3184 proc_versapad(struct psm_softc *sc, packetbuf_t *pb, mousestatus_t *ms, 3185 int *x, int *y, int *z) 3186 { 3187 static int butmap_versapad[8] = { 3188 0, 3189 MOUSE_BUTTON3DOWN, 3190 0, 3191 MOUSE_BUTTON3DOWN, 3192 MOUSE_BUTTON1DOWN, 3193 MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN, 3194 MOUSE_BUTTON1DOWN, 3195 MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN 3196 }; 3197 int c, x0, y0; 3198 3199 /* VersaPad PS/2 absolute mode message format 3200 * 3201 * [packet1] 7 6 5 4 3 2 1 0(LSB) 3202 * ipacket[0]: 1 1 0 A 1 L T R 3203 * ipacket[1]: H7 H6 H5 H4 H3 H2 H1 H0 3204 * ipacket[2]: V7 V6 V5 V4 V3 V2 V1 V0 3205 * ipacket[3]: 1 1 1 A 1 L T R 3206 * ipacket[4]:V11 V10 V9 V8 H11 H10 H9 H8 3207 * ipacket[5]: 0 P6 P5 P4 P3 P2 P1 P0 3208 * 3209 * [note] 3210 * R: right physical mouse button (1=on) 3211 * T: touch pad virtual button (1=tapping) 3212 * L: left physical mouse button (1=on) 3213 * A: position data is valid (1=valid) 3214 * H: horizontal data (12bit signed integer. H11 is sign bit.) 3215 * V: vertical data (12bit signed integer. V11 is sign bit.) 3216 * P: pressure data 3217 * 3218 * Tapping is mapped to MOUSE_BUTTON4. 3219 */ 3220 c = pb->ipacket[0]; 3221 *x = *y = 0; 3222 ms->button = butmap_versapad[c & MOUSE_PS2VERSA_BUTTONS]; 3223 ms->button |= (c & MOUSE_PS2VERSA_TAP) ? MOUSE_BUTTON4DOWN : 0; 3224 if (c & MOUSE_PS2VERSA_IN_USE) { 3225 x0 = pb->ipacket[1] | (((pb->ipacket[4]) & 0x0f) << 8); 3226 y0 = pb->ipacket[2] | (((pb->ipacket[4]) & 0xf0) << 4); 3227 if (x0 & 0x800) 3228 x0 -= 0x1000; 3229 if (y0 & 0x800) 3230 y0 -= 0x1000; 3231 if (sc->flags & PSM_FLAGS_FINGERDOWN) { 3232 *x = sc->xold - x0; 3233 *y = y0 - sc->yold; 3234 if (*x < 0) /* XXX */ 3235 ++*x; 3236 else if (*x) 3237 --*x; 3238 if (*y < 0) 3239 ++*y; 3240 else if (*y) 3241 --*y; 3242 } else 3243 sc->flags |= PSM_FLAGS_FINGERDOWN; 3244 sc->xold = x0; 3245 sc->yold = y0; 3246 } else 3247 sc->flags &= ~PSM_FLAGS_FINGERDOWN; 3248 } 3249 3250 static void 3251 psmsoftintr(void *arg) 3252 { 3253 /* 3254 * the table to turn PS/2 mouse button bits (MOUSE_PS2_BUTTON?DOWN) 3255 * into `mousestatus' button bits (MOUSE_BUTTON?DOWN). 3256 */ 3257 static int butmap[8] = { 3258 0, 3259 MOUSE_BUTTON1DOWN, 3260 MOUSE_BUTTON3DOWN, 3261 MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN, 3262 MOUSE_BUTTON2DOWN, 3263 MOUSE_BUTTON1DOWN | MOUSE_BUTTON2DOWN, 3264 MOUSE_BUTTON2DOWN | MOUSE_BUTTON3DOWN, 3265 MOUSE_BUTTON1DOWN | MOUSE_BUTTON2DOWN | MOUSE_BUTTON3DOWN 3266 }; 3267 struct psm_softc *sc = arg; 3268 mousestatus_t ms; 3269 packetbuf_t *pb; 3270 int x, y, z, c, l, s; 3271 3272 getmicrouptime(&sc->lastsoftintr); 3273 3274 s = spltty(); 3275 3276 do { 3277 pb = &sc->pqueue[sc->pqueue_start]; 3278 3279 if (sc->mode.level == PSM_LEVEL_NATIVE) 3280 goto next_native; 3281 3282 c = pb->ipacket[0]; 3283 /* 3284 * A kludge for Kensington device! 3285 * The MSB of the horizontal count appears to be stored in 3286 * a strange place. 3287 */ 3288 if (sc->hw.model == MOUSE_MODEL_THINK) 3289 pb->ipacket[1] |= (c & MOUSE_PS2_XOVERFLOW) ? 0x80 : 0; 3290 3291 /* ignore the overflow bits... */ 3292 x = (c & MOUSE_PS2_XNEG) ? 3293 pb->ipacket[1] - 256 : pb->ipacket[1]; 3294 y = (c & MOUSE_PS2_YNEG) ? 3295 pb->ipacket[2] - 256 : pb->ipacket[2]; 3296 z = 0; 3297 ms.obutton = sc->button; /* previous button state */ 3298 ms.button = butmap[c & MOUSE_PS2_BUTTONS]; 3299 /* `tapping' action */ 3300 if (sc->config & PSM_CONFIG_FORCETAP) 3301 ms.button |= ((c & MOUSE_PS2_TAP)) ? 3302 0 : MOUSE_BUTTON4DOWN; 3303 3304 switch (sc->hw.model) { 3305 3306 case MOUSE_MODEL_EXPLORER: 3307 /* 3308 * b7 b6 b5 b4 b3 b2 b1 b0 3309 * byte 1: oy ox sy sx 1 M R L 3310 * byte 2: x x x x x x x x 3311 * byte 3: y y y y y y y y 3312 * byte 4: * * S2 S1 s d2 d1 d0 3313 * 3314 * L, M, R, S1, S2: left, middle, right and side buttons 3315 * s: wheel data sign bit 3316 * d2-d0: wheel data 3317 */ 3318 z = (pb->ipacket[3] & MOUSE_EXPLORER_ZNEG) ? 3319 (pb->ipacket[3] & 0x0f) - 16 : 3320 (pb->ipacket[3] & 0x0f); 3321 ms.button |= 3322 (pb->ipacket[3] & MOUSE_EXPLORER_BUTTON4DOWN) ? 3323 MOUSE_BUTTON4DOWN : 0; 3324 ms.button |= 3325 (pb->ipacket[3] & MOUSE_EXPLORER_BUTTON5DOWN) ? 3326 MOUSE_BUTTON5DOWN : 0; 3327 break; 3328 3329 case MOUSE_MODEL_INTELLI: 3330 case MOUSE_MODEL_NET: 3331 /* wheel data is in the fourth byte */ 3332 z = (char)pb->ipacket[3]; 3333 /* 3334 * XXX some mice may send 7 when there is no Z movement? */ 3335 if ((z >= 7) || (z <= -7)) 3336 z = 0; 3337 /* some compatible mice have additional buttons */ 3338 ms.button |= (c & MOUSE_PS2INTELLI_BUTTON4DOWN) ? 3339 MOUSE_BUTTON4DOWN : 0; 3340 ms.button |= (c & MOUSE_PS2INTELLI_BUTTON5DOWN) ? 3341 MOUSE_BUTTON5DOWN : 0; 3342 break; 3343 3344 case MOUSE_MODEL_MOUSEMANPLUS: 3345 proc_mmanplus(sc, pb, &ms, &x, &y, &z); 3346 break; 3347 3348 case MOUSE_MODEL_GLIDEPOINT: 3349 /* `tapping' action */ 3350 ms.button |= ((c & MOUSE_PS2_TAP)) ? 0 : 3351 MOUSE_BUTTON4DOWN; 3352 break; 3353 3354 case MOUSE_MODEL_NETSCROLL: 3355 /* 3356 * three addtional bytes encode buttons and 3357 * wheel events 3358 */ 3359 ms.button |= (pb->ipacket[3] & MOUSE_PS2_BUTTON3DOWN) ? 3360 MOUSE_BUTTON4DOWN : 0; 3361 ms.button |= (pb->ipacket[3] & MOUSE_PS2_BUTTON1DOWN) ? 3362 MOUSE_BUTTON5DOWN : 0; 3363 z = (pb->ipacket[3] & MOUSE_PS2_XNEG) ? 3364 pb->ipacket[4] - 256 : pb->ipacket[4]; 3365 break; 3366 3367 case MOUSE_MODEL_THINK: 3368 /* the fourth button state in the first byte */ 3369 ms.button |= (c & MOUSE_PS2_TAP) ? 3370 MOUSE_BUTTON4DOWN : 0; 3371 break; 3372 3373 case MOUSE_MODEL_VERSAPAD: 3374 proc_versapad(sc, pb, &ms, &x, &y, &z); 3375 c = ((x < 0) ? MOUSE_PS2_XNEG : 0) | 3376 ((y < 0) ? MOUSE_PS2_YNEG : 0); 3377 break; 3378 3379 case MOUSE_MODEL_4D: 3380 /* 3381 * b7 b6 b5 b4 b3 b2 b1 b0 3382 * byte 1: s2 d2 s1 d1 1 M R L 3383 * byte 2: sx x x x x x x x 3384 * byte 3: sy y y y y y y y 3385 * 3386 * s1: wheel 1 direction 3387 * d1: wheel 1 data 3388 * s2: wheel 2 direction 3389 * d2: wheel 2 data 3390 */ 3391 x = (pb->ipacket[1] & 0x80) ? 3392 pb->ipacket[1] - 256 : pb->ipacket[1]; 3393 y = (pb->ipacket[2] & 0x80) ? 3394 pb->ipacket[2] - 256 : pb->ipacket[2]; 3395 switch (c & MOUSE_4D_WHEELBITS) { 3396 case 0x10: 3397 z = 1; 3398 break; 3399 case 0x30: 3400 z = -1; 3401 break; 3402 case 0x40: /* XXX 2nd wheel turning right */ 3403 z = 2; 3404 break; 3405 case 0xc0: /* XXX 2nd wheel turning left */ 3406 z = -2; 3407 break; 3408 } 3409 break; 3410 3411 case MOUSE_MODEL_4DPLUS: 3412 if ((x < 16 - 256) && (y < 16 - 256)) { 3413 /* 3414 * b7 b6 b5 b4 b3 b2 b1 b0 3415 * byte 1: 0 0 1 1 1 M R L 3416 * byte 2: 0 0 0 0 1 0 0 0 3417 * byte 3: 0 0 0 0 S s d1 d0 3418 * 3419 * L, M, R, S: left, middle, right, 3420 * and side buttons 3421 * s: wheel data sign bit 3422 * d1-d0: wheel data 3423 */ 3424 x = y = 0; 3425 if (pb->ipacket[2] & MOUSE_4DPLUS_BUTTON4DOWN) 3426 ms.button |= MOUSE_BUTTON4DOWN; 3427 z = (pb->ipacket[2] & MOUSE_4DPLUS_ZNEG) ? 3428 ((pb->ipacket[2] & 0x07) - 8) : 3429 (pb->ipacket[2] & 0x07) ; 3430 } else { 3431 /* preserve previous button states */ 3432 ms.button |= ms.obutton & MOUSE_EXTBUTTONS; 3433 } 3434 break; 3435 3436 case MOUSE_MODEL_SYNAPTICS: 3437 if (proc_synaptics(sc, pb, &ms, &x, &y, &z) != 0) 3438 goto next; 3439 break; 3440 3441 case MOUSE_MODEL_GENERIC: 3442 default: 3443 break; 3444 } 3445 3446 /* scale values */ 3447 if (sc->mode.accelfactor >= 1) { 3448 if (x != 0) { 3449 x = x * x / sc->mode.accelfactor; 3450 if (x == 0) 3451 x = 1; 3452 if (c & MOUSE_PS2_XNEG) 3453 x = -x; 3454 } 3455 if (y != 0) { 3456 y = y * y / sc->mode.accelfactor; 3457 if (y == 0) 3458 y = 1; 3459 if (c & MOUSE_PS2_YNEG) 3460 y = -y; 3461 } 3462 } 3463 3464 ms.dx = x; 3465 ms.dy = y; 3466 ms.dz = z; 3467 ms.flags = ((x || y || z) ? MOUSE_POSCHANGED : 0) | 3468 (ms.obutton ^ ms.button); 3469 3470 pb->inputbytes = tame_mouse(sc, pb, &ms, pb->ipacket); 3471 3472 sc->status.flags |= ms.flags; 3473 sc->status.dx += ms.dx; 3474 sc->status.dy += ms.dy; 3475 sc->status.dz += ms.dz; 3476 sc->status.button = ms.button; 3477 sc->button = ms.button; 3478 3479 next_native: 3480 sc->watchdog = FALSE; 3481 3482 /* queue data */ 3483 if (sc->queue.count + pb->inputbytes < sizeof(sc->queue.buf)) { 3484 l = imin(pb->inputbytes, 3485 sizeof(sc->queue.buf) - sc->queue.tail); 3486 bcopy(&pb->ipacket[0], &sc->queue.buf[sc->queue.tail], l); 3487 if (pb->inputbytes > l) 3488 bcopy(&pb->ipacket[l], &sc->queue.buf[0], 3489 pb->inputbytes - l); 3490 sc->queue.tail = (sc->queue.tail + pb->inputbytes) % 3491 sizeof(sc->queue.buf); 3492 sc->queue.count += pb->inputbytes; 3493 } 3494 pb->inputbytes = 0; 3495 3496 next: 3497 if (++sc->pqueue_start >= PSM_PACKETQUEUE) 3498 sc->pqueue_start = 0; 3499 } while (sc->pqueue_start != sc->pqueue_end); 3500 3501 if (sc->state & PSM_ASLP) { 3502 sc->state &= ~PSM_ASLP; 3503 wakeup(sc); 3504 } 3505 selwakeuppri(&sc->rsel, PZERO); 3506 if (sc->async != NULL) { 3507 pgsigio(&sc->async, SIGIO, 0); 3508 } 3509 sc->state &= ~PSM_SOFTARMED; 3510 splx(s); 3511 } 3512 3513 static int 3514 psmpoll(struct cdev *dev, int events, struct thread *td) 3515 { 3516 struct psm_softc *sc = dev->si_drv1; 3517 int s; 3518 int revents = 0; 3519 3520 /* Return true if a mouse event available */ 3521 s = spltty(); 3522 if (events & (POLLIN | POLLRDNORM)) { 3523 if (sc->queue.count > 0) 3524 revents |= events & (POLLIN | POLLRDNORM); 3525 else 3526 selrecord(td, &sc->rsel); 3527 } 3528 splx(s); 3529 3530 return (revents); 3531 } 3532 3533 /* vendor/model specific routines */ 3534 3535 static int mouse_id_proc1(KBDC kbdc, int res, int scale, int *status) 3536 { 3537 if (set_mouse_resolution(kbdc, res) != res) 3538 return (FALSE); 3539 if (set_mouse_scaling(kbdc, scale) && 3540 set_mouse_scaling(kbdc, scale) && 3541 set_mouse_scaling(kbdc, scale) && 3542 (get_mouse_status(kbdc, status, 0, 3) >= 3)) 3543 return (TRUE); 3544 return (FALSE); 3545 } 3546 3547 static int 3548 mouse_ext_command(KBDC kbdc, int command) 3549 { 3550 int c; 3551 3552 c = (command >> 6) & 0x03; 3553 if (set_mouse_resolution(kbdc, c) != c) 3554 return (FALSE); 3555 c = (command >> 4) & 0x03; 3556 if (set_mouse_resolution(kbdc, c) != c) 3557 return (FALSE); 3558 c = (command >> 2) & 0x03; 3559 if (set_mouse_resolution(kbdc, c) != c) 3560 return (FALSE); 3561 c = (command >> 0) & 0x03; 3562 if (set_mouse_resolution(kbdc, c) != c) 3563 return (FALSE); 3564 return (TRUE); 3565 } 3566 3567 #ifdef notyet 3568 /* Logitech MouseMan Cordless II */ 3569 static int 3570 enable_lcordless(struct psm_softc *sc) 3571 { 3572 int status[3]; 3573 int ch; 3574 3575 if (!mouse_id_proc1(sc->kbdc, PSMD_RES_HIGH, 2, status)) 3576 return (FALSE); 3577 if (status[1] == PSMD_RES_HIGH) 3578 return (FALSE); 3579 ch = (status[0] & 0x07) - 1; /* channel # */ 3580 if ((ch <= 0) || (ch > 4)) 3581 return (FALSE); 3582 /* 3583 * status[1]: always one? 3584 * status[2]: battery status? (0-100) 3585 */ 3586 return (TRUE); 3587 } 3588 #endif /* notyet */ 3589 3590 /* Genius NetScroll Mouse, MouseSystems SmartScroll Mouse */ 3591 static int 3592 enable_groller(struct psm_softc *sc) 3593 { 3594 int status[3]; 3595 3596 /* 3597 * The special sequence to enable the fourth button and the 3598 * roller. Immediately after this sequence check status bytes. 3599 * if the mouse is NetScroll, the second and the third bytes are 3600 * '3' and 'D'. 3601 */ 3602 3603 /* 3604 * If the mouse is an ordinary PS/2 mouse, the status bytes should 3605 * look like the following. 3606 * 3607 * byte 1 bit 7 always 0 3608 * bit 6 stream mode (0) 3609 * bit 5 disabled (0) 3610 * bit 4 1:1 scaling (0) 3611 * bit 3 always 0 3612 * bit 0-2 button status 3613 * byte 2 resolution (PSMD_RES_HIGH) 3614 * byte 3 report rate (?) 3615 */ 3616 3617 if (!mouse_id_proc1(sc->kbdc, PSMD_RES_HIGH, 1, status)) 3618 return (FALSE); 3619 if ((status[1] != '3') || (status[2] != 'D')) 3620 return (FALSE); 3621 /* FIXME: SmartScroll Mouse has 5 buttons! XXX */ 3622 sc->hw.buttons = 4; 3623 return (TRUE); 3624 } 3625 3626 /* Genius NetMouse/NetMouse Pro, ASCII Mie Mouse, NetScroll Optical */ 3627 static int 3628 enable_gmouse(struct psm_softc *sc) 3629 { 3630 int status[3]; 3631 3632 /* 3633 * The special sequence to enable the middle, "rubber" button. 3634 * Immediately after this sequence check status bytes. 3635 * if the mouse is NetMouse, NetMouse Pro, or ASCII MIE Mouse, 3636 * the second and the third bytes are '3' and 'U'. 3637 * NOTE: NetMouse reports that it has three buttons although it has 3638 * two buttons and a rubber button. NetMouse Pro and MIE Mouse 3639 * say they have three buttons too and they do have a button on the 3640 * side... 3641 */ 3642 if (!mouse_id_proc1(sc->kbdc, PSMD_RES_HIGH, 1, status)) 3643 return (FALSE); 3644 if ((status[1] != '3') || (status[2] != 'U')) 3645 return (FALSE); 3646 return (TRUE); 3647 } 3648 3649 /* ALPS GlidePoint */ 3650 static int 3651 enable_aglide(struct psm_softc *sc) 3652 { 3653 int status[3]; 3654 3655 /* 3656 * The special sequence to obtain ALPS GlidePoint specific 3657 * information. Immediately after this sequence, status bytes will 3658 * contain something interesting. 3659 * NOTE: ALPS produces several models of GlidePoint. Some of those 3660 * do not respond to this sequence, thus, cannot be detected this way. 3661 */ 3662 if (set_mouse_sampling_rate(sc->kbdc, 100) != 100) 3663 return (FALSE); 3664 if (!mouse_id_proc1(sc->kbdc, PSMD_RES_LOW, 2, status)) 3665 return (FALSE); 3666 if ((status[1] == PSMD_RES_LOW) || (status[2] == 100)) 3667 return (FALSE); 3668 return (TRUE); 3669 } 3670 3671 /* Kensington ThinkingMouse/Trackball */ 3672 static int 3673 enable_kmouse(struct psm_softc *sc) 3674 { 3675 static u_char rate[] = { 20, 60, 40, 20, 20, 60, 40, 20, 20 }; 3676 KBDC kbdc = sc->kbdc; 3677 int status[3]; 3678 int id1; 3679 int id2; 3680 int i; 3681 3682 id1 = get_aux_id(kbdc); 3683 if (set_mouse_sampling_rate(kbdc, 10) != 10) 3684 return (FALSE); 3685 /* 3686 * The device is now in the native mode? It returns a different 3687 * ID value... 3688 */ 3689 id2 = get_aux_id(kbdc); 3690 if ((id1 == id2) || (id2 != 2)) 3691 return (FALSE); 3692 3693 if (set_mouse_resolution(kbdc, PSMD_RES_LOW) != PSMD_RES_LOW) 3694 return (FALSE); 3695 #if PSM_DEBUG >= 2 3696 /* at this point, resolution is LOW, sampling rate is 10/sec */ 3697 if (get_mouse_status(kbdc, status, 0, 3) < 3) 3698 return (FALSE); 3699 #endif 3700 3701 /* 3702 * The special sequence to enable the third and fourth buttons. 3703 * Otherwise they behave like the first and second buttons. 3704 */ 3705 for (i = 0; i < sizeof(rate)/sizeof(rate[0]); ++i) 3706 if (set_mouse_sampling_rate(kbdc, rate[i]) != rate[i]) 3707 return (FALSE); 3708 3709 /* 3710 * At this point, the device is using default resolution and 3711 * sampling rate for the native mode. 3712 */ 3713 if (get_mouse_status(kbdc, status, 0, 3) < 3) 3714 return (FALSE); 3715 if ((status[1] == PSMD_RES_LOW) || (status[2] == rate[i - 1])) 3716 return (FALSE); 3717 3718 /* the device appears be enabled by this sequence, diable it for now */ 3719 disable_aux_dev(kbdc); 3720 empty_aux_buffer(kbdc, 5); 3721 3722 return (TRUE); 3723 } 3724 3725 /* Logitech MouseMan+/FirstMouse+, IBM ScrollPoint Mouse */ 3726 static int 3727 enable_mmanplus(struct psm_softc *sc) 3728 { 3729 KBDC kbdc = sc->kbdc; 3730 int data[3]; 3731 3732 /* the special sequence to enable the fourth button and the roller. */ 3733 /* 3734 * NOTE: for ScrollPoint to respond correctly, the SET_RESOLUTION 3735 * must be called exactly three times since the last RESET command 3736 * before this sequence. XXX 3737 */ 3738 if (!set_mouse_scaling(kbdc, 1)) 3739 return (FALSE); 3740 if (!mouse_ext_command(kbdc, 0x39) || !mouse_ext_command(kbdc, 0xdb)) 3741 return (FALSE); 3742 if (get_mouse_status(kbdc, data, 1, 3) < 3) 3743 return (FALSE); 3744 3745 /* 3746 * PS2++ protocl, packet type 0 3747 * 3748 * b7 b6 b5 b4 b3 b2 b1 b0 3749 * byte 1: * 1 p3 p2 1 * * * 3750 * byte 2: 1 1 p1 p0 m1 m0 1 0 3751 * byte 3: m7 m6 m5 m4 m3 m2 m1 m0 3752 * 3753 * p3-p0: packet type: 0 3754 * m7-m0: model ID: MouseMan+:0x50, 3755 * FirstMouse+:0x51, 3756 * ScrollPoint:0x58... 3757 */ 3758 /* check constant bits */ 3759 if ((data[0] & MOUSE_PS2PLUS_SYNCMASK) != MOUSE_PS2PLUS_SYNC) 3760 return (FALSE); 3761 if ((data[1] & 0xc3) != 0xc2) 3762 return (FALSE); 3763 /* check d3-d0 in byte 2 */ 3764 if (!MOUSE_PS2PLUS_CHECKBITS(data)) 3765 return (FALSE); 3766 /* check p3-p0 */ 3767 if (MOUSE_PS2PLUS_PACKET_TYPE(data) != 0) 3768 return (FALSE); 3769 3770 sc->hw.hwid &= 0x00ff; 3771 sc->hw.hwid |= data[2] << 8; /* save model ID */ 3772 3773 /* 3774 * MouseMan+ (or FirstMouse+) is now in its native mode, in which 3775 * the wheel and the fourth button events are encoded in the 3776 * special data packet. The mouse may be put in the IntelliMouse mode 3777 * if it is initialized by the IntelliMouse's method. 3778 */ 3779 return (TRUE); 3780 } 3781 3782 /* MS IntelliMouse Explorer */ 3783 static int 3784 enable_msexplorer(struct psm_softc *sc) 3785 { 3786 static u_char rate0[] = { 200, 100, 80, }; 3787 static u_char rate1[] = { 200, 200, 80, }; 3788 KBDC kbdc = sc->kbdc; 3789 int id; 3790 int i; 3791 3792 /* 3793 * This is needed for at least A4Tech X-7xx mice - they do not go 3794 * straight to Explorer mode, but need to be set to Intelli mode 3795 * first. 3796 */ 3797 enable_msintelli(sc); 3798 3799 /* the special sequence to enable the extra buttons and the roller. */ 3800 for (i = 0; i < sizeof(rate1)/sizeof(rate1[0]); ++i) 3801 if (set_mouse_sampling_rate(kbdc, rate1[i]) != rate1[i]) 3802 return (FALSE); 3803 /* the device will give the genuine ID only after the above sequence */ 3804 id = get_aux_id(kbdc); 3805 if (id != PSM_EXPLORER_ID) 3806 return (FALSE); 3807 3808 sc->hw.hwid = id; 3809 sc->hw.buttons = 5; /* IntelliMouse Explorer XXX */ 3810 3811 /* 3812 * XXX: this is a kludge to fool some KVM switch products 3813 * which think they are clever enough to know the 4-byte IntelliMouse 3814 * protocol, and assume any other protocols use 3-byte packets. 3815 * They don't convey 4-byte data packets from the IntelliMouse Explorer 3816 * correctly to the host computer because of this! 3817 * The following sequence is actually IntelliMouse's "wake up" 3818 * sequence; it will make the KVM think the mouse is IntelliMouse 3819 * when it is in fact IntelliMouse Explorer. 3820 */ 3821 for (i = 0; i < sizeof(rate0)/sizeof(rate0[0]); ++i) 3822 if (set_mouse_sampling_rate(kbdc, rate0[i]) != rate0[i]) 3823 break; 3824 id = get_aux_id(kbdc); 3825 3826 return (TRUE); 3827 } 3828 3829 /* MS IntelliMouse */ 3830 static int 3831 enable_msintelli(struct psm_softc *sc) 3832 { 3833 /* 3834 * Logitech MouseMan+ and FirstMouse+ will also respond to this 3835 * probe routine and act like IntelliMouse. 3836 */ 3837 3838 static u_char rate[] = { 200, 100, 80, }; 3839 KBDC kbdc = sc->kbdc; 3840 int id; 3841 int i; 3842 3843 /* the special sequence to enable the third button and the roller. */ 3844 for (i = 0; i < sizeof(rate)/sizeof(rate[0]); ++i) 3845 if (set_mouse_sampling_rate(kbdc, rate[i]) != rate[i]) 3846 return (FALSE); 3847 /* the device will give the genuine ID only after the above sequence */ 3848 id = get_aux_id(kbdc); 3849 if (id != PSM_INTELLI_ID) 3850 return (FALSE); 3851 3852 sc->hw.hwid = id; 3853 sc->hw.buttons = 3; 3854 3855 return (TRUE); 3856 } 3857 3858 /* A4 Tech 4D Mouse */ 3859 static int 3860 enable_4dmouse(struct psm_softc *sc) 3861 { 3862 /* 3863 * Newer wheel mice from A4 Tech may use the 4D+ protocol. 3864 */ 3865 3866 static u_char rate[] = { 200, 100, 80, 60, 40, 20 }; 3867 KBDC kbdc = sc->kbdc; 3868 int id; 3869 int i; 3870 3871 for (i = 0; i < sizeof(rate)/sizeof(rate[0]); ++i) 3872 if (set_mouse_sampling_rate(kbdc, rate[i]) != rate[i]) 3873 return (FALSE); 3874 id = get_aux_id(kbdc); 3875 /* 3876 * WinEasy 4D, 4 Way Scroll 4D: 6 3877 * Cable-Free 4D: 8 (4DPLUS) 3878 * WinBest 4D+, 4 Way Scroll 4D+: 8 (4DPLUS) 3879 */ 3880 if (id != PSM_4DMOUSE_ID) 3881 return (FALSE); 3882 3883 sc->hw.hwid = id; 3884 sc->hw.buttons = 3; /* XXX some 4D mice have 4? */ 3885 3886 return (TRUE); 3887 } 3888 3889 /* A4 Tech 4D+ Mouse */ 3890 static int 3891 enable_4dplus(struct psm_softc *sc) 3892 { 3893 /* 3894 * Newer wheel mice from A4 Tech seem to use this protocol. 3895 * Older models are recognized as either 4D Mouse or IntelliMouse. 3896 */ 3897 KBDC kbdc = sc->kbdc; 3898 int id; 3899 3900 /* 3901 * enable_4dmouse() already issued the following ID sequence... 3902 static u_char rate[] = { 200, 100, 80, 60, 40, 20 }; 3903 int i; 3904 3905 for (i = 0; i < sizeof(rate)/sizeof(rate[0]); ++i) 3906 if (set_mouse_sampling_rate(kbdc, rate[i]) != rate[i]) 3907 return (FALSE); 3908 */ 3909 3910 id = get_aux_id(kbdc); 3911 switch (id) { 3912 case PSM_4DPLUS_ID: 3913 sc->hw.buttons = 4; 3914 break; 3915 case PSM_4DPLUS_RFSW35_ID: 3916 sc->hw.buttons = 3; 3917 break; 3918 default: 3919 return (FALSE); 3920 } 3921 3922 sc->hw.hwid = id; 3923 3924 return (TRUE); 3925 } 3926 3927 /* Synaptics Touchpad */ 3928 static int 3929 synaptics_sysctl(SYSCTL_HANDLER_ARGS) 3930 { 3931 int error, arg; 3932 3933 /* Read the current value. */ 3934 arg = *(int *)oidp->oid_arg1; 3935 error = sysctl_handle_int(oidp, &arg, 0, req); 3936 3937 /* Sanity check. */ 3938 if (error || !req->newptr) 3939 return (error); 3940 3941 /* 3942 * Check that the new value is in the concerned node's range 3943 * of values. 3944 */ 3945 switch (oidp->oid_arg2) { 3946 case SYNAPTICS_SYSCTL_MIN_PRESSURE: 3947 case SYNAPTICS_SYSCTL_MAX_PRESSURE: 3948 if (arg < 0 || arg > 255) 3949 return (EINVAL); 3950 break; 3951 case SYNAPTICS_SYSCTL_MAX_WIDTH: 3952 if (arg < 4 || arg > 15) 3953 return (EINVAL); 3954 break; 3955 case SYNAPTICS_SYSCTL_MARGIN_TOP: 3956 case SYNAPTICS_SYSCTL_MARGIN_RIGHT: 3957 case SYNAPTICS_SYSCTL_MARGIN_BOTTOM: 3958 case SYNAPTICS_SYSCTL_MARGIN_LEFT: 3959 case SYNAPTICS_SYSCTL_NA_TOP: 3960 case SYNAPTICS_SYSCTL_NA_RIGHT: 3961 case SYNAPTICS_SYSCTL_NA_BOTTOM: 3962 case SYNAPTICS_SYSCTL_NA_LEFT: 3963 if (arg < 0 || arg > 6143) 3964 return (EINVAL); 3965 break; 3966 case SYNAPTICS_SYSCTL_WINDOW_MIN: 3967 case SYNAPTICS_SYSCTL_WINDOW_MAX: 3968 case SYNAPTICS_SYSCTL_TAP_MIN_QUEUE: 3969 if (arg < 1 || arg > SYNAPTICS_PACKETQUEUE) 3970 return (EINVAL); 3971 break; 3972 case SYNAPTICS_SYSCTL_MULTIPLICATOR: 3973 case SYNAPTICS_SYSCTL_WEIGHT_CURRENT: 3974 case SYNAPTICS_SYSCTL_WEIGHT_PREVIOUS: 3975 case SYNAPTICS_SYSCTL_WEIGHT_PREVIOUS_NA: 3976 case SYNAPTICS_SYSCTL_WEIGHT_LEN_SQUARED: 3977 case SYNAPTICS_SYSCTL_DIV_MIN: 3978 case SYNAPTICS_SYSCTL_DIV_MAX: 3979 case SYNAPTICS_SYSCTL_DIV_MAX_NA: 3980 case SYNAPTICS_SYSCTL_DIV_LEN: 3981 case SYNAPTICS_SYSCTL_VSCROLL_DIV_MIN: 3982 case SYNAPTICS_SYSCTL_VSCROLL_DIV_MAX: 3983 if (arg < 1) 3984 return (EINVAL); 3985 break; 3986 case SYNAPTICS_SYSCTL_TAP_MAX_DELTA: 3987 case SYNAPTICS_SYSCTL_TAPHOLD_TIMEOUT: 3988 case SYNAPTICS_SYSCTL_VSCROLL_MIN_DELTA: 3989 if (arg < 0) 3990 return (EINVAL); 3991 break; 3992 case SYNAPTICS_SYSCTL_VSCROLL_HOR_AREA: 3993 case SYNAPTICS_SYSCTL_VSCROLL_VER_AREA: 3994 if (arg < -6143 || arg > 6143) 3995 return (EINVAL); 3996 break; 3997 default: 3998 return (EINVAL); 3999 } 4000 4001 /* Update. */ 4002 *(int *)oidp->oid_arg1 = arg; 4003 4004 return (error); 4005 } 4006 4007 static void 4008 synaptics_sysctl_create_tree(struct psm_softc *sc) 4009 { 4010 4011 if (sc->syninfo.sysctl_tree != NULL) 4012 return; 4013 4014 /* Attach extra synaptics sysctl nodes under hw.psm.synaptics */ 4015 sysctl_ctx_init(&sc->syninfo.sysctl_ctx); 4016 sc->syninfo.sysctl_tree = SYSCTL_ADD_NODE(&sc->syninfo.sysctl_ctx, 4017 SYSCTL_STATIC_CHILDREN(_hw_psm), OID_AUTO, "synaptics", CTLFLAG_RD, 4018 0, "Synaptics TouchPad"); 4019 4020 /* hw.psm.synaptics.directional_scrolls. */ 4021 sc->syninfo.directional_scrolls = 1; 4022 SYSCTL_ADD_INT(&sc->syninfo.sysctl_ctx, 4023 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4024 "directional_scrolls", CTLFLAG_RW|CTLFLAG_ANYBODY, 4025 &sc->syninfo.directional_scrolls, 0, 4026 "Enable hardware scrolling pad (if non-zero) or register it as " 4027 "a middle-click (if 0)"); 4028 4029 /* hw.psm.synaptics.min_pressure. */ 4030 sc->syninfo.min_pressure = 16; 4031 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4032 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4033 "min_pressure", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4034 &sc->syninfo.min_pressure, SYNAPTICS_SYSCTL_MIN_PRESSURE, 4035 synaptics_sysctl, "I", 4036 "Minimum pressure required to start an action"); 4037 4038 /* hw.psm.synaptics.max_pressure. */ 4039 sc->syninfo.max_pressure = 220; 4040 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4041 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4042 "max_pressure", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4043 &sc->syninfo.max_pressure, SYNAPTICS_SYSCTL_MAX_PRESSURE, 4044 synaptics_sysctl, "I", 4045 "Maximum pressure to detect palm"); 4046 4047 /* hw.psm.synaptics.max_width. */ 4048 sc->syninfo.max_width = 10; 4049 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4050 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4051 "max_width", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4052 &sc->syninfo.max_width, SYNAPTICS_SYSCTL_MAX_WIDTH, 4053 synaptics_sysctl, "I", 4054 "Maximum finger width to detect palm"); 4055 4056 /* hw.psm.synaptics.top_margin. */ 4057 sc->syninfo.margin_top = 200; 4058 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4059 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4060 "margin_top", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4061 &sc->syninfo.margin_top, SYNAPTICS_SYSCTL_MARGIN_TOP, 4062 synaptics_sysctl, "I", 4063 "Top margin"); 4064 4065 /* hw.psm.synaptics.right_margin. */ 4066 sc->syninfo.margin_right = 200; 4067 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4068 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4069 "margin_right", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4070 &sc->syninfo.margin_right, SYNAPTICS_SYSCTL_MARGIN_RIGHT, 4071 synaptics_sysctl, "I", 4072 "Right margin"); 4073 4074 /* hw.psm.synaptics.bottom_margin. */ 4075 sc->syninfo.margin_bottom = 200; 4076 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4077 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4078 "margin_bottom", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4079 &sc->syninfo.margin_bottom, SYNAPTICS_SYSCTL_MARGIN_BOTTOM, 4080 synaptics_sysctl, "I", 4081 "Bottom margin"); 4082 4083 /* hw.psm.synaptics.left_margin. */ 4084 sc->syninfo.margin_left = 200; 4085 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4086 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4087 "margin_left", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4088 &sc->syninfo.margin_left, SYNAPTICS_SYSCTL_MARGIN_LEFT, 4089 synaptics_sysctl, "I", 4090 "Left margin"); 4091 4092 /* hw.psm.synaptics.na_top. */ 4093 sc->syninfo.na_top = 1783; 4094 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4095 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4096 "na_top", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4097 &sc->syninfo.na_top, SYNAPTICS_SYSCTL_NA_TOP, 4098 synaptics_sysctl, "I", 4099 "Top noisy area, where weight_previous_na is used instead " 4100 "of weight_previous"); 4101 4102 /* hw.psm.synaptics.na_right. */ 4103 sc->syninfo.na_right = 563; 4104 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4105 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4106 "na_right", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4107 &sc->syninfo.na_right, SYNAPTICS_SYSCTL_NA_RIGHT, 4108 synaptics_sysctl, "I", 4109 "Right noisy area, where weight_previous_na is used instead " 4110 "of weight_previous"); 4111 4112 /* hw.psm.synaptics.na_bottom. */ 4113 sc->syninfo.na_bottom = 1408; 4114 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4115 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4116 "na_bottom", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4117 &sc->syninfo.na_bottom, SYNAPTICS_SYSCTL_NA_BOTTOM, 4118 synaptics_sysctl, "I", 4119 "Bottom noisy area, where weight_previous_na is used instead " 4120 "of weight_previous"); 4121 4122 /* hw.psm.synaptics.na_left. */ 4123 sc->syninfo.na_left = 1600; 4124 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4125 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4126 "na_left", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4127 &sc->syninfo.na_left, SYNAPTICS_SYSCTL_NA_LEFT, 4128 synaptics_sysctl, "I", 4129 "Left noisy area, where weight_previous_na is used instead " 4130 "of weight_previous"); 4131 4132 /* hw.psm.synaptics.window_min. */ 4133 sc->syninfo.window_min = 4; 4134 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4135 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4136 "window_min", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4137 &sc->syninfo.window_min, SYNAPTICS_SYSCTL_WINDOW_MIN, 4138 synaptics_sysctl, "I", 4139 "Minimum window size to start an action"); 4140 4141 /* hw.psm.synaptics.window_max. */ 4142 sc->syninfo.window_max = 10; 4143 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4144 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4145 "window_max", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4146 &sc->syninfo.window_max, SYNAPTICS_SYSCTL_WINDOW_MAX, 4147 synaptics_sysctl, "I", 4148 "Maximum window size"); 4149 4150 /* hw.psm.synaptics.multiplicator. */ 4151 sc->syninfo.multiplicator = 10000; 4152 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4153 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4154 "multiplicator", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4155 &sc->syninfo.multiplicator, SYNAPTICS_SYSCTL_MULTIPLICATOR, 4156 synaptics_sysctl, "I", 4157 "Multiplicator to increase precision in averages and divisions"); 4158 4159 /* hw.psm.synaptics.weight_current. */ 4160 sc->syninfo.weight_current = 3; 4161 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4162 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4163 "weight_current", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4164 &sc->syninfo.weight_current, SYNAPTICS_SYSCTL_WEIGHT_CURRENT, 4165 synaptics_sysctl, "I", 4166 "Weight of the current movement in the new average"); 4167 4168 /* hw.psm.synaptics.weight_previous. */ 4169 sc->syninfo.weight_previous = 6; 4170 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4171 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4172 "weight_previous", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4173 &sc->syninfo.weight_previous, SYNAPTICS_SYSCTL_WEIGHT_PREVIOUS, 4174 synaptics_sysctl, "I", 4175 "Weight of the previous average"); 4176 4177 /* hw.psm.synaptics.weight_previous_na. */ 4178 sc->syninfo.weight_previous_na = 20; 4179 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4180 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4181 "weight_previous_na", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4182 &sc->syninfo.weight_previous_na, 4183 SYNAPTICS_SYSCTL_WEIGHT_PREVIOUS_NA, 4184 synaptics_sysctl, "I", 4185 "Weight of the previous average (inside the noisy area)"); 4186 4187 /* hw.psm.synaptics.weight_len_squared. */ 4188 sc->syninfo.weight_len_squared = 2000; 4189 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4190 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4191 "weight_len_squared", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4192 &sc->syninfo.weight_len_squared, 4193 SYNAPTICS_SYSCTL_WEIGHT_LEN_SQUARED, 4194 synaptics_sysctl, "I", 4195 "Length (squared) of segments where weight_previous " 4196 "starts to decrease"); 4197 4198 /* hw.psm.synaptics.div_min. */ 4199 sc->syninfo.div_min = 9; 4200 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4201 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4202 "div_min", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4203 &sc->syninfo.div_min, SYNAPTICS_SYSCTL_DIV_MIN, 4204 synaptics_sysctl, "I", 4205 "Divisor for fast movements"); 4206 4207 /* hw.psm.synaptics.div_max. */ 4208 sc->syninfo.div_max = 17; 4209 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4210 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4211 "div_max", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4212 &sc->syninfo.div_max, SYNAPTICS_SYSCTL_DIV_MAX, 4213 synaptics_sysctl, "I", 4214 "Divisor for slow movements"); 4215 4216 /* hw.psm.synaptics.div_max_na. */ 4217 sc->syninfo.div_max_na = 30; 4218 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4219 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4220 "div_max_na", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4221 &sc->syninfo.div_max_na, SYNAPTICS_SYSCTL_DIV_MAX_NA, 4222 synaptics_sysctl, "I", 4223 "Divisor with slow movements (inside the noisy area)"); 4224 4225 /* hw.psm.synaptics.div_len. */ 4226 sc->syninfo.div_len = 100; 4227 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4228 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4229 "div_len", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4230 &sc->syninfo.div_len, SYNAPTICS_SYSCTL_DIV_LEN, 4231 synaptics_sysctl, "I", 4232 "Length of segments where div_max starts to decrease"); 4233 4234 /* hw.psm.synaptics.tap_max_delta. */ 4235 sc->syninfo.tap_max_delta = 80; 4236 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4237 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4238 "tap_max_delta", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4239 &sc->syninfo.tap_max_delta, SYNAPTICS_SYSCTL_TAP_MAX_DELTA, 4240 synaptics_sysctl, "I", 4241 "Length of segments above which a tap is ignored"); 4242 4243 /* hw.psm.synaptics.tap_min_queue. */ 4244 sc->syninfo.tap_min_queue = 2; 4245 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4246 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4247 "tap_min_queue", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4248 &sc->syninfo.tap_min_queue, SYNAPTICS_SYSCTL_TAP_MIN_QUEUE, 4249 synaptics_sysctl, "I", 4250 "Number of packets required to consider a tap"); 4251 4252 /* hw.psm.synaptics.taphold_timeout. */ 4253 sc->synaction.in_taphold = 0; 4254 sc->syninfo.taphold_timeout = tap_timeout; 4255 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4256 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4257 "taphold_timeout", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4258 &sc->syninfo.taphold_timeout, SYNAPTICS_SYSCTL_TAPHOLD_TIMEOUT, 4259 synaptics_sysctl, "I", 4260 "Maximum elapsed time between two taps to consider a tap-hold " 4261 "action"); 4262 4263 /* hw.psm.synaptics.vscroll_hor_area. */ 4264 sc->syninfo.vscroll_hor_area = 0; /* 1300 */ 4265 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4266 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4267 "vscroll_hor_area", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4268 &sc->syninfo.vscroll_hor_area, SYNAPTICS_SYSCTL_VSCROLL_HOR_AREA, 4269 synaptics_sysctl, "I", 4270 "Area reserved for horizontal virtual scrolling"); 4271 4272 /* hw.psm.synaptics.vscroll_ver_area. */ 4273 sc->syninfo.vscroll_ver_area = -600; 4274 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4275 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4276 "vscroll_ver_area", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4277 &sc->syninfo.vscroll_ver_area, SYNAPTICS_SYSCTL_VSCROLL_VER_AREA, 4278 synaptics_sysctl, "I", 4279 "Area reserved for vertical virtual scrolling"); 4280 4281 /* hw.psm.synaptics.vscroll_min_delta. */ 4282 sc->syninfo.vscroll_min_delta = 50; 4283 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4284 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4285 "vscroll_min_delta", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4286 &sc->syninfo.vscroll_min_delta, 4287 SYNAPTICS_SYSCTL_VSCROLL_MIN_DELTA, 4288 synaptics_sysctl, "I", 4289 "Minimum movement to consider virtual scrolling"); 4290 4291 /* hw.psm.synaptics.vscroll_div_min. */ 4292 sc->syninfo.vscroll_div_min = 100; 4293 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4294 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4295 "vscroll_div_min", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4296 &sc->syninfo.vscroll_div_min, SYNAPTICS_SYSCTL_VSCROLL_DIV_MIN, 4297 synaptics_sysctl, "I", 4298 "Divisor for fast scrolling"); 4299 4300 /* hw.psm.synaptics.vscroll_div_min. */ 4301 sc->syninfo.vscroll_div_max = 150; 4302 SYSCTL_ADD_PROC(&sc->syninfo.sysctl_ctx, 4303 SYSCTL_CHILDREN(sc->syninfo.sysctl_tree), OID_AUTO, 4304 "vscroll_div_max", CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_ANYBODY, 4305 &sc->syninfo.vscroll_div_max, SYNAPTICS_SYSCTL_VSCROLL_DIV_MAX, 4306 synaptics_sysctl, "I", 4307 "Divisor for slow scrolling"); 4308 } 4309 4310 static int 4311 enable_synaptics(struct psm_softc *sc) 4312 { 4313 int status[3]; 4314 KBDC kbdc; 4315 4316 if (!synaptics_support) 4317 return (FALSE); 4318 4319 kbdc = sc->kbdc; 4320 VLOG(3, (LOG_DEBUG, "synaptics: BEGIN init\n")); 4321 sc->hw.buttons = 3; 4322 sc->squelch = 0; 4323 4324 /* 4325 * Just to be on the safe side: this avoids troubles with 4326 * following mouse_ext_command() when the previous command 4327 * was PSMC_SET_RESOLUTION. Set Scaling has no effect on 4328 * Synaptics Touchpad behaviour. 4329 */ 4330 set_mouse_scaling(kbdc, 1); 4331 4332 /* Identify the Touchpad version. */ 4333 if (mouse_ext_command(kbdc, 0) == 0) 4334 return (FALSE); 4335 if (get_mouse_status(kbdc, status, 0, 3) != 3) 4336 return (FALSE); 4337 if (status[1] != 0x47) 4338 return (FALSE); 4339 4340 sc->synhw.infoMinor = status[0]; 4341 sc->synhw.infoMajor = status[2] & 0x0f; 4342 4343 if (verbose >= 2) 4344 printf("Synaptics Touchpad v%d.%d\n", sc->synhw.infoMajor, 4345 sc->synhw.infoMinor); 4346 4347 if (sc->synhw.infoMajor < 4) { 4348 printf(" Unsupported (pre-v4) Touchpad detected\n"); 4349 return (FALSE); 4350 } 4351 4352 /* Get the Touchpad model information. */ 4353 if (mouse_ext_command(kbdc, 3) == 0) 4354 return (FALSE); 4355 if (get_mouse_status(kbdc, status, 0, 3) != 3) 4356 return (FALSE); 4357 if ((status[1] & 0x01) != 0) { 4358 printf(" Failed to read model information\n"); 4359 return (FALSE); 4360 } 4361 4362 sc->synhw.infoRot180 = (status[0] & 0x80) >> 7; 4363 sc->synhw.infoPortrait = (status[0] & 0x40) >> 6; 4364 sc->synhw.infoSensor = status[0] & 0x3f; 4365 sc->synhw.infoHardware = (status[1] & 0xfe) >> 1; 4366 sc->synhw.infoNewAbs = (status[2] & 0x80) >> 7; 4367 sc->synhw.capPen = (status[2] & 0x40) >> 6; 4368 sc->synhw.infoSimplC = (status[2] & 0x20) >> 5; 4369 sc->synhw.infoGeometry = status[2] & 0x0f; 4370 4371 if (verbose >= 2) { 4372 printf(" Model information:\n"); 4373 printf(" infoRot180: %d\n", sc->synhw.infoRot180); 4374 printf(" infoPortrait: %d\n", sc->synhw.infoPortrait); 4375 printf(" infoSensor: %d\n", sc->synhw.infoSensor); 4376 printf(" infoHardware: %d\n", sc->synhw.infoHardware); 4377 printf(" infoNewAbs: %d\n", sc->synhw.infoNewAbs); 4378 printf(" capPen: %d\n", sc->synhw.capPen); 4379 printf(" infoSimplC: %d\n", sc->synhw.infoSimplC); 4380 printf(" infoGeometry: %d\n", sc->synhw.infoGeometry); 4381 } 4382 4383 /* Read the extended capability bits. */ 4384 if (mouse_ext_command(kbdc, 2) == 0) 4385 return (FALSE); 4386 if (get_mouse_status(kbdc, status, 0, 3) != 3) 4387 return (FALSE); 4388 if (status[1] != 0x47) { 4389 printf(" Failed to read extended capability bits\n"); 4390 return (FALSE); 4391 } 4392 4393 /* Set the different capabilities when they exist. */ 4394 if ((status[0] & 0x80) >> 7) { 4395 sc->synhw.capExtended = (status[0] & 0x80) >> 7; 4396 sc->synhw.capPassthrough = (status[2] & 0x80) >> 7; 4397 sc->synhw.capSleep = (status[2] & 0x10) >> 4; 4398 sc->synhw.capFourButtons = (status[2] & 0x08) >> 3; 4399 sc->synhw.capMultiFinger = (status[2] & 0x02) >> 1; 4400 sc->synhw.capPalmDetect = (status[2] & 0x01); 4401 4402 if (verbose >= 2) { 4403 printf(" Extended capabilities:\n"); 4404 printf(" capExtended: %d\n", sc->synhw.capExtended); 4405 printf(" capPassthrough: %d\n", 4406 sc->synhw.capPassthrough); 4407 printf(" capSleep: %d\n", sc->synhw.capSleep); 4408 printf(" capFourButtons: %d\n", 4409 sc->synhw.capFourButtons); 4410 printf(" capMultiFinger: %d\n", 4411 sc->synhw.capMultiFinger); 4412 printf(" capPalmDetect: %d\n", 4413 sc->synhw.capPalmDetect); 4414 } 4415 4416 /* 4417 * If we have bits set in status[0] & 0x70, then we can load 4418 * more information about buttons using query 0x09. 4419 */ 4420 if (status[0] & 0x70) { 4421 if (mouse_ext_command(kbdc, 0x09) == 0) 4422 return (FALSE); 4423 if (get_mouse_status(kbdc, status, 0, 3) != 3) 4424 return (FALSE); 4425 sc->hw.buttons = ((status[1] & 0xf0) >> 4) + 3; 4426 if (verbose >= 2) 4427 printf(" Additional Buttons: %d\n", 4428 sc->hw.buttons -3); 4429 } 4430 } else { 4431 sc->synhw.capExtended = 0; 4432 4433 if (verbose >= 2) 4434 printf(" No extended capabilities\n"); 4435 } 4436 4437 /* 4438 * Read the mode byte. 4439 * 4440 * XXX: Note the Synaptics documentation also defines the first 4441 * byte of the response to this query to be a constant 0x3b, this 4442 * does not appear to be true for Touchpads with guest devices. 4443 */ 4444 if (mouse_ext_command(kbdc, 1) == 0) 4445 return (FALSE); 4446 if (get_mouse_status(kbdc, status, 0, 3) != 3) 4447 return (FALSE); 4448 if (status[1] != 0x47) { 4449 printf(" Failed to read mode byte\n"); 4450 return (FALSE); 4451 } 4452 4453 /* Set the mode byte; request wmode where available. */ 4454 if (sc->synhw.capExtended) 4455 mouse_ext_command(kbdc, 0xc1); 4456 else 4457 mouse_ext_command(kbdc, 0xc0); 4458 4459 /* "Commit" the Set Mode Byte command sent above. */ 4460 set_mouse_sampling_rate(kbdc, 20); 4461 4462 /* 4463 * Report the correct number of buttons 4464 * 4465 * XXX: I'm not sure this is used anywhere. 4466 */ 4467 if (sc->synhw.capExtended && sc->synhw.capFourButtons) 4468 sc->hw.buttons = 4; 4469 4470 VLOG(3, (LOG_DEBUG, "synaptics: END init (%d buttons)\n", 4471 sc->hw.buttons)); 4472 4473 /* Create sysctl tree. */ 4474 synaptics_sysctl_create_tree(sc); 4475 4476 /* 4477 * The touchpad will have to be reinitialized after 4478 * suspend/resume. 4479 */ 4480 sc->config |= PSM_CONFIG_HOOKRESUME | PSM_CONFIG_INITAFTERSUSPEND; 4481 4482 return (TRUE); 4483 } 4484 4485 /* Interlink electronics VersaPad */ 4486 static int 4487 enable_versapad(struct psm_softc *sc) 4488 { 4489 KBDC kbdc = sc->kbdc; 4490 int data[3]; 4491 4492 set_mouse_resolution(kbdc, PSMD_RES_MEDIUM_HIGH); /* set res. 2 */ 4493 set_mouse_sampling_rate(kbdc, 100); /* set rate 100 */ 4494 set_mouse_scaling(kbdc, 1); /* set scale 1:1 */ 4495 set_mouse_scaling(kbdc, 1); /* set scale 1:1 */ 4496 set_mouse_scaling(kbdc, 1); /* set scale 1:1 */ 4497 set_mouse_scaling(kbdc, 1); /* set scale 1:1 */ 4498 if (get_mouse_status(kbdc, data, 0, 3) < 3) /* get status */ 4499 return (FALSE); 4500 if (data[2] != 0xa || data[1] != 0 ) /* rate == 0xa && res. == 0 */ 4501 return (FALSE); 4502 set_mouse_scaling(kbdc, 1); /* set scale 1:1 */ 4503 4504 sc->config |= PSM_CONFIG_HOOKRESUME | PSM_CONFIG_INITAFTERSUSPEND; 4505 4506 return (TRUE); /* PS/2 absolute mode */ 4507 } 4508 4509 /* 4510 * Return true if 'now' is earlier than (start + (secs.usecs)). 4511 * Now may be NULL and the function will fetch the current time from 4512 * getmicrouptime(), or a cached 'now' can be passed in. 4513 * All values should be numbers derived from getmicrouptime(). 4514 */ 4515 static int 4516 timeelapsed(start, secs, usecs, now) 4517 const struct timeval *start, *now; 4518 int secs, usecs; 4519 { 4520 struct timeval snow, tv; 4521 4522 /* if there is no 'now' passed in, the get it as a convience. */ 4523 if (now == NULL) { 4524 getmicrouptime(&snow); 4525 now = &snow; 4526 } 4527 4528 tv.tv_sec = secs; 4529 tv.tv_usec = usecs; 4530 timevaladd(&tv, start); 4531 return (timevalcmp(&tv, now, <)); 4532 } 4533 4534 static int 4535 psmresume(device_t dev) 4536 { 4537 struct psm_softc *sc = device_get_softc(dev); 4538 int unit = device_get_unit(dev); 4539 int err; 4540 4541 VLOG(2, (LOG_NOTICE, "psm%d: system resume hook called.\n", unit)); 4542 4543 if (!(sc->config & PSM_CONFIG_HOOKRESUME)) 4544 return (0); 4545 4546 err = reinitialize(sc, sc->config & PSM_CONFIG_INITAFTERSUSPEND); 4547 4548 if ((sc->state & PSM_ASLP) && !(sc->state & PSM_VALID)) { 4549 /* 4550 * Release the blocked process; it must be notified that 4551 * the device cannot be accessed anymore. 4552 */ 4553 sc->state &= ~PSM_ASLP; 4554 wakeup(sc); 4555 } 4556 4557 VLOG(2, (LOG_DEBUG, "psm%d: system resume hook exiting.\n", unit)); 4558 4559 return (err); 4560 } 4561 4562 DRIVER_MODULE(psm, atkbdc, psm_driver, psm_devclass, 0, 0); 4563 4564 #ifdef DEV_ISA 4565 4566 /* 4567 * This sucks up assignments from PNPBIOS and ACPI. 4568 */ 4569 4570 /* 4571 * When the PS/2 mouse device is reported by ACPI or PnP BIOS, it may 4572 * appear BEFORE the AT keyboard controller. As the PS/2 mouse device 4573 * can be probed and attached only after the AT keyboard controller is 4574 * attached, we shall quietly reserve the IRQ resource for later use. 4575 * If the PS/2 mouse device is reported to us AFTER the keyboard controller, 4576 * copy the IRQ resource to the PS/2 mouse device instance hanging 4577 * under the keyboard controller, then probe and attach it. 4578 */ 4579 4580 static devclass_t psmcpnp_devclass; 4581 4582 static device_probe_t psmcpnp_probe; 4583 static device_attach_t psmcpnp_attach; 4584 4585 static device_method_t psmcpnp_methods[] = { 4586 DEVMETHOD(device_probe, psmcpnp_probe), 4587 DEVMETHOD(device_attach, psmcpnp_attach), 4588 4589 { 0, 0 } 4590 }; 4591 4592 static driver_t psmcpnp_driver = { 4593 PSMCPNP_DRIVER_NAME, 4594 psmcpnp_methods, 4595 1, /* no softc */ 4596 }; 4597 4598 static struct isa_pnp_id psmcpnp_ids[] = { 4599 { 0x030fd041, "PS/2 mouse port" }, /* PNP0F03 */ 4600 { 0x0e0fd041, "PS/2 mouse port" }, /* PNP0F0E */ 4601 { 0x120fd041, "PS/2 mouse port" }, /* PNP0F12 */ 4602 { 0x130fd041, "PS/2 mouse port" }, /* PNP0F13 */ 4603 { 0x1303d041, "PS/2 port" }, /* PNP0313, XXX */ 4604 { 0x02002e4f, "Dell PS/2 mouse port" }, /* Lat. X200, Dell */ 4605 { 0x0002a906, "ALPS Glide Point" }, /* ALPS Glide Point */ 4606 { 0x80374d24, "IBM PS/2 mouse port" }, /* IBM3780, ThinkPad */ 4607 { 0x81374d24, "IBM PS/2 mouse port" }, /* IBM3781, ThinkPad */ 4608 { 0x0190d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9001, Vaio */ 4609 { 0x0290d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9002, Vaio */ 4610 { 0x0390d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9003, Vaio */ 4611 { 0x0490d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9004, Vaio */ 4612 { 0 } 4613 }; 4614 4615 static int 4616 create_a_copy(device_t atkbdc, device_t me) 4617 { 4618 device_t psm; 4619 u_long irq; 4620 4621 /* find the PS/2 mouse device instance under the keyboard controller */ 4622 psm = device_find_child(atkbdc, PSM_DRIVER_NAME, 4623 device_get_unit(atkbdc)); 4624 if (psm == NULL) 4625 return (ENXIO); 4626 if (device_get_state(psm) != DS_NOTPRESENT) 4627 return (0); 4628 4629 /* move our resource to the found device */ 4630 irq = bus_get_resource_start(me, SYS_RES_IRQ, 0); 4631 bus_set_resource(psm, SYS_RES_IRQ, KBDC_RID_AUX, irq, 1); 4632 4633 /* ...then probe and attach it */ 4634 return (device_probe_and_attach(psm)); 4635 } 4636 4637 static int 4638 psmcpnp_probe(device_t dev) 4639 { 4640 struct resource *res; 4641 u_long irq; 4642 int rid; 4643 4644 if (ISA_PNP_PROBE(device_get_parent(dev), dev, psmcpnp_ids)) 4645 return (ENXIO); 4646 4647 /* 4648 * The PnP BIOS and ACPI are supposed to assign an IRQ (12) 4649 * to the PS/2 mouse device node. But, some buggy PnP BIOS 4650 * declares the PS/2 mouse device node without an IRQ resource! 4651 * If this happens, we shall refer to device hints. 4652 * If we still don't find it there, use a hardcoded value... XXX 4653 */ 4654 rid = 0; 4655 irq = bus_get_resource_start(dev, SYS_RES_IRQ, rid); 4656 if (irq <= 0) { 4657 if (resource_long_value(PSM_DRIVER_NAME, 4658 device_get_unit(dev),"irq", &irq) != 0) 4659 irq = 12; /* XXX */ 4660 device_printf(dev, "irq resource info is missing; " 4661 "assuming irq %ld\n", irq); 4662 bus_set_resource(dev, SYS_RES_IRQ, rid, irq, 1); 4663 } 4664 res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_SHAREABLE); 4665 bus_release_resource(dev, SYS_RES_IRQ, rid, res); 4666 4667 /* keep quiet */ 4668 if (!bootverbose) 4669 device_quiet(dev); 4670 4671 return ((res == NULL) ? ENXIO : 0); 4672 } 4673 4674 static int 4675 psmcpnp_attach(device_t dev) 4676 { 4677 device_t atkbdc; 4678 int rid; 4679 4680 /* find the keyboard controller, which may be on acpi* or isa* bus */ 4681 atkbdc = devclass_get_device(devclass_find(ATKBDC_DRIVER_NAME), 4682 device_get_unit(dev)); 4683 if ((atkbdc != NULL) && (device_get_state(atkbdc) == DS_ATTACHED)) 4684 create_a_copy(atkbdc, dev); 4685 else { 4686 /* 4687 * If we don't have the AT keyboard controller yet, 4688 * just reserve the IRQ for later use... 4689 * (See psmidentify() above.) 4690 */ 4691 rid = 0; 4692 bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_SHAREABLE); 4693 } 4694 4695 return (0); 4696 } 4697 4698 DRIVER_MODULE(psmcpnp, isa, psmcpnp_driver, psmcpnp_devclass, 0, 0); 4699 DRIVER_MODULE(psmcpnp, acpi, psmcpnp_driver, psmcpnp_devclass, 0, 0); 4700 4701 #endif /* DEV_ISA */ 4702