1 /*- 2 * Copyright (c) 2018-2019 Marc Priggemeyer <marc.priggemeyer@gmail.com> 3 * Copyright (c) 2019-2020 Vladimir Kondratyev <wulf@FreeBSD.org> 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 /* 28 * I2C HID transport backend. 29 */ 30 31 #include <sys/cdefs.h> 32 #include "opt_hid.h" 33 34 #include <sys/param.h> 35 #include <sys/bus.h> 36 #include <sys/callout.h> 37 #include <sys/endian.h> 38 #include <sys/kernel.h> 39 #include <sys/lock.h> 40 #include <sys/malloc.h> 41 #include <sys/module.h> 42 #include <sys/rman.h> 43 #include <sys/sysctl.h> 44 #include <sys/systm.h> 45 #include <sys/taskqueue.h> 46 47 #include <machine/resource.h> 48 49 #include <contrib/dev/acpica/include/acpi.h> 50 #include <contrib/dev/acpica/include/accommon.h> 51 #include <dev/acpica/acpivar.h> 52 53 #include <dev/evdev/input.h> 54 55 #include <dev/hid/hid.h> 56 #include <dev/hid/hidquirk.h> 57 58 #include <dev/iicbus/iic.h> 59 #include <dev/iicbus/iicbus.h> 60 #include <dev/iicbus/iiconf.h> 61 62 #include "hid_if.h" 63 64 #ifdef IICHID_DEBUG 65 static int iichid_debug = 0; 66 67 static SYSCTL_NODE(_hw, OID_AUTO, iichid, CTLFLAG_RW, 0, "I2C HID"); 68 SYSCTL_INT(_hw_iichid, OID_AUTO, debug, CTLFLAG_RWTUN, 69 &iichid_debug, 1, "Debug level"); 70 71 #define DPRINTFN(sc, n, ...) do { \ 72 if (iichid_debug >= (n)) \ 73 device_printf((sc)->dev, __VA_ARGS__); \ 74 } while (0) 75 #define DPRINTF(sc, ...) DPRINTFN(sc, 1, __VA_ARGS__) 76 #else 77 #define DPRINTFN(...) do {} while (0) 78 #define DPRINTF(...) do {} while (0) 79 #endif 80 81 typedef hid_size_t iichid_size_t; 82 #define IICHID_SIZE_MAX (UINT16_MAX - 2) 83 84 /* 7.2 */ 85 enum { 86 I2C_HID_CMD_DESCR = 0x0, 87 I2C_HID_CMD_RESET = 0x1, 88 I2C_HID_CMD_GET_REPORT = 0x2, 89 I2C_HID_CMD_SET_REPORT = 0x3, 90 I2C_HID_CMD_GET_IDLE = 0x4, 91 I2C_HID_CMD_SET_IDLE = 0x5, 92 I2C_HID_CMD_GET_PROTO = 0x6, 93 I2C_HID_CMD_SET_PROTO = 0x7, 94 I2C_HID_CMD_SET_POWER = 0x8, 95 }; 96 97 #define I2C_HID_POWER_ON 0x0 98 #define I2C_HID_POWER_OFF 0x1 99 100 /* 101 * Since interrupt resource acquisition is not always possible (in case of GPIO 102 * interrupts) iichid now supports a sampling_mode. 103 * Set dev.iichid.<unit>.sampling_rate_slow to a value greater then 0 104 * to activate sampling. A value of 0 is possible but will not reset the 105 * callout and, thereby, disable further report requests. Do not set the 106 * sampling_rate_fast value too high as it may result in periodical lags of 107 * cursor motion. 108 */ 109 #define IICHID_SAMPLING_RATE_FAST 80 110 #define IICHID_SAMPLING_RATE_SLOW 10 111 #define IICHID_SAMPLING_HYSTERESIS 16 /* ~ 2x fast / slow */ 112 113 /* 5.1.1 - HID Descriptor Format */ 114 struct i2c_hid_desc { 115 uint16_t wHIDDescLength; 116 uint16_t bcdVersion; 117 uint16_t wReportDescLength; 118 uint16_t wReportDescRegister; 119 uint16_t wInputRegister; 120 uint16_t wMaxInputLength; 121 uint16_t wOutputRegister; 122 uint16_t wMaxOutputLength; 123 uint16_t wCommandRegister; 124 uint16_t wDataRegister; 125 uint16_t wVendorID; 126 uint16_t wProductID; 127 uint16_t wVersionID; 128 uint32_t reserved; 129 } __packed; 130 131 #define IICHID_REG_NONE -1 132 #define IICHID_REG_ACPI (UINT16_MAX + 1) 133 #define IICHID_REG_ELAN 0x0001 134 135 static const struct iichid_id { 136 char *id; 137 int reg; 138 } iichid_ids[] = { 139 { "ELAN0000", IICHID_REG_ELAN }, 140 { "PNP0C50", IICHID_REG_ACPI }, 141 { "ACPI0C50", IICHID_REG_ACPI }, 142 { NULL, 0 }, 143 }; 144 145 enum iichid_powerstate_how { 146 IICHID_PS_NULL, 147 IICHID_PS_ON, 148 IICHID_PS_OFF, 149 }; 150 151 /* 152 * Locking: no internal locks are used. To serialize access to shared members, 153 * external iicbus lock should be taken. That allows to make locking greatly 154 * simple at the cost of running front interrupt handlers with locked bus. 155 */ 156 struct iichid_softc { 157 device_t dev; 158 159 bool probe_done; 160 int probe_result; 161 162 struct hid_device_info hw; 163 uint16_t addr; /* Shifted left by 1 */ 164 struct i2c_hid_desc desc; 165 166 hid_intr_t *intr_handler; 167 void *intr_ctx; 168 uint8_t *intr_buf; 169 iichid_size_t intr_bufsize; 170 171 int irq_rid; 172 struct resource *irq_res; 173 void *irq_cookie; 174 175 #ifdef IICHID_SAMPLING 176 int sampling_rate_slow; /* iicbus lock */ 177 int sampling_rate_fast; 178 int sampling_hysteresis; 179 int missing_samples; /* iicbus lock */ 180 int dup_samples; /* iicbus lock */ 181 iichid_size_t dup_size; /* iicbus lock */ 182 bool callout_setup; /* iicbus lock */ 183 uint8_t *dup_buf; 184 struct taskqueue *taskqueue; 185 struct timeout_task periodic_task; /* iicbus lock */ 186 struct task event_task; 187 #endif 188 189 struct task suspend_task; 190 bool open; /* iicbus lock */ 191 bool suspend; /* iicbus lock */ 192 bool power_on; /* iicbus lock */ 193 }; 194 195 static device_probe_t iichid_probe; 196 static device_attach_t iichid_attach; 197 static device_detach_t iichid_detach; 198 static device_resume_t iichid_resume; 199 static device_suspend_t iichid_suspend; 200 201 static void iichid_suspend_task(void *, int); 202 203 #ifdef IICHID_SAMPLING 204 static int iichid_setup_callout(struct iichid_softc *); 205 static int iichid_reset_callout(struct iichid_softc *); 206 static void iichid_teardown_callout(struct iichid_softc *); 207 #endif 208 209 static inline int 210 acpi_is_iichid(ACPI_HANDLE handle) 211 { 212 const struct iichid_id *ids; 213 UINT32 sta; 214 int reg; 215 216 for (ids = iichid_ids; ids->id != NULL; ids++) { 217 if (acpi_MatchHid(handle, ids->id)) { 218 reg = ids->reg; 219 break; 220 } 221 } 222 if (ids->id == NULL) 223 return (IICHID_REG_NONE); 224 225 /* 226 * If no _STA method or if it failed, then assume that 227 * the device is present. 228 */ 229 if (ACPI_FAILURE(acpi_GetInteger(handle, "_STA", &sta)) || 230 ACPI_DEVICE_PRESENT(sta)) 231 return (reg); 232 233 return (IICHID_REG_NONE); 234 } 235 236 static ACPI_STATUS 237 iichid_get_config_reg(ACPI_HANDLE handle, uint16_t *config_reg) 238 { 239 ACPI_OBJECT *result; 240 ACPI_BUFFER acpi_buf; 241 ACPI_STATUS status; 242 243 /* 244 * function (_DSM) to be evaluated to retrieve the address of 245 * the configuration register of the HID device. 246 */ 247 /* 3cdff6f7-4267-4555-ad05-b30a3d8938de */ 248 static uint8_t dsm_guid[ACPI_UUID_LENGTH] = { 249 0xF7, 0xF6, 0xDF, 0x3C, 0x67, 0x42, 0x55, 0x45, 250 0xAD, 0x05, 0xB3, 0x0A, 0x3D, 0x89, 0x38, 0xDE, 251 }; 252 253 status = acpi_EvaluateDSMTyped(handle, dsm_guid, 1, 1, NULL, &acpi_buf, 254 ACPI_TYPE_INTEGER); 255 if (ACPI_FAILURE(status)) { 256 printf("%s: error evaluating _DSM\n", __func__); 257 return (status); 258 } 259 result = (ACPI_OBJECT *) acpi_buf.Pointer; 260 *config_reg = result->Integer.Value & 0xFFFF; 261 262 AcpiOsFree(result); 263 return (status); 264 } 265 266 static int 267 iichid_cmd_read(struct iichid_softc* sc, void *buf, iichid_size_t maxlen, 268 iichid_size_t *actual_len) 269 { 270 /* 271 * 6.1.3 - Retrieval of Input Reports 272 * DEVICE returns the length (2 Bytes) and the entire Input Report. 273 */ 274 uint8_t actbuf[2] = { 0, 0 }; 275 /* Read actual input report length. */ 276 struct iic_msg msgs[] = { 277 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, sizeof(actbuf), actbuf }, 278 }; 279 uint16_t actlen; 280 int error; 281 282 error = iicbus_transfer(sc->dev, msgs, nitems(msgs)); 283 if (error != 0) 284 return (error); 285 286 actlen = actbuf[0] | actbuf[1] << 8; 287 if (actlen <= 2 || actlen == 0xFFFF || maxlen == 0) { 288 /* Read and discard 1 byte to send I2C STOP condition. */ 289 msgs[0] = (struct iic_msg) 290 { sc->addr, IIC_M_RD | IIC_M_NOSTART, 1, actbuf }; 291 actlen = 0; 292 } else { 293 actlen -= 2; 294 if (actlen > maxlen) { 295 DPRINTF(sc, "input report too big. requested=%d " 296 "received=%d\n", maxlen, actlen); 297 actlen = maxlen; 298 } 299 /* Read input report itself. */ 300 msgs[0] = (struct iic_msg) 301 { sc->addr, IIC_M_RD | IIC_M_NOSTART, actlen, buf }; 302 } 303 304 error = iicbus_transfer(sc->dev, msgs, 1); 305 if (error == 0 && actual_len != NULL) 306 *actual_len = actlen; 307 308 DPRINTFN(sc, 5, 309 "%*D - %*D\n", 2, actbuf, " ", msgs[0].len, msgs[0].buf, " "); 310 311 return (error); 312 } 313 314 static int 315 iichid_cmd_write(struct iichid_softc *sc, const void *buf, iichid_size_t len) 316 { 317 /* 6.2.3 - Sending Output Reports. */ 318 uint8_t *cmdreg = (uint8_t *)&sc->desc.wOutputRegister; 319 uint16_t replen = 2 + len; 320 uint8_t cmd[4] = { cmdreg[0], cmdreg[1], replen & 0xFF, replen >> 8 }; 321 struct iic_msg msgs[] = { 322 {sc->addr, IIC_M_WR | IIC_M_NOSTOP, sizeof(cmd), cmd}, 323 {sc->addr, IIC_M_WR | IIC_M_NOSTART, len, __DECONST(void *, buf)}, 324 }; 325 326 if (le16toh(sc->desc.wMaxOutputLength) == 0) 327 return (IIC_ENOTSUPP); 328 if (len < 2) 329 return (IIC_ENOTSUPP); 330 331 DPRINTF(sc, "HID command I2C_HID_CMD_WRITE (len %d): " 332 "%*D\n", len, len, buf, " "); 333 334 return (iicbus_transfer(sc->dev, msgs, nitems(msgs))); 335 } 336 337 static int 338 iichid_cmd_get_hid_desc(struct iichid_softc *sc, uint16_t config_reg, 339 struct i2c_hid_desc *hid_desc) 340 { 341 /* 342 * 5.2.2 - HID Descriptor Retrieval 343 * register is passed from the controller. 344 */ 345 uint16_t cmd = htole16(config_reg); 346 struct iic_msg msgs[] = { 347 { sc->addr, IIC_M_WR | IIC_M_NOSTOP, 2, (uint8_t *)&cmd }, 348 { sc->addr, IIC_M_RD, sizeof(*hid_desc), (uint8_t *)hid_desc }, 349 }; 350 int error; 351 352 DPRINTF(sc, "HID command I2C_HID_CMD_DESCR at 0x%x\n", config_reg); 353 354 error = iicbus_transfer(sc->dev, msgs, nitems(msgs)); 355 if (error != 0) 356 return (error); 357 358 DPRINTF(sc, "HID descriptor: %*D\n", 359 (int)sizeof(struct i2c_hid_desc), hid_desc, " "); 360 361 return (0); 362 } 363 364 static int 365 iichid_set_power(struct iichid_softc *sc, uint8_t param) 366 { 367 uint8_t *cmdreg = (uint8_t *)&sc->desc.wCommandRegister; 368 uint8_t cmd[] = { cmdreg[0], cmdreg[1], param, I2C_HID_CMD_SET_POWER }; 369 struct iic_msg msgs[] = { 370 { sc->addr, IIC_M_WR, sizeof(cmd), cmd }, 371 }; 372 373 DPRINTF(sc, "HID command I2C_HID_CMD_SET_POWER(%d)\n", param); 374 375 return (iicbus_transfer(sc->dev, msgs, nitems(msgs))); 376 } 377 378 static int 379 iichid_reset(struct iichid_softc *sc) 380 { 381 uint8_t *cmdreg = (uint8_t *)&sc->desc.wCommandRegister; 382 uint8_t cmd[] = { cmdreg[0], cmdreg[1], 0, I2C_HID_CMD_RESET }; 383 struct iic_msg msgs[] = { 384 { sc->addr, IIC_M_WR, sizeof(cmd), cmd }, 385 }; 386 387 DPRINTF(sc, "HID command I2C_HID_CMD_RESET\n"); 388 389 return (iicbus_transfer(sc->dev, msgs, nitems(msgs))); 390 } 391 392 static int 393 iichid_cmd_get_report_desc(struct iichid_softc* sc, void *buf, 394 iichid_size_t len) 395 { 396 uint16_t cmd = sc->desc.wReportDescRegister; 397 struct iic_msg msgs[] = { 398 { sc->addr, IIC_M_WR | IIC_M_NOSTOP, 2, (uint8_t *)&cmd }, 399 { sc->addr, IIC_M_RD, len, buf }, 400 }; 401 int error; 402 403 DPRINTF(sc, "HID command I2C_HID_REPORT_DESCR at 0x%x with size %d\n", 404 le16toh(cmd), len); 405 406 error = iicbus_transfer(sc->dev, msgs, nitems(msgs)); 407 if (error != 0) 408 return (error); 409 410 DPRINTF(sc, "HID report descriptor: %*D\n", len, buf, " "); 411 412 return (0); 413 } 414 415 static int 416 iichid_cmd_get_report(struct iichid_softc* sc, void *buf, iichid_size_t maxlen, 417 iichid_size_t *actual_len, uint8_t type, uint8_t id) 418 { 419 /* 420 * 7.2.2.4 - "The protocol is optimized for Report < 15. If a 421 * report ID >= 15 is necessary, then the Report ID in the Low Byte 422 * must be set to 1111 and a Third Byte is appended to the protocol. 423 * This Third Byte contains the entire/actual report ID." 424 */ 425 uint8_t *dtareg = (uint8_t *)&sc->desc.wDataRegister; 426 uint8_t *cmdreg = (uint8_t *)&sc->desc.wCommandRegister; 427 uint8_t cmd[] = { /*________|______id>=15_____|______id<15______*/ 428 cmdreg[0] , 429 cmdreg[1] , 430 (id >= 15 ? 15 | (type << 4): id | (type << 4)), 431 I2C_HID_CMD_GET_REPORT , 432 (id >= 15 ? id : dtareg[0] ), 433 (id >= 15 ? dtareg[0] : dtareg[1] ), 434 (id >= 15 ? dtareg[1] : 0 ), 435 }; 436 int cmdlen = (id >= 15 ? 7 : 6 ); 437 uint8_t actbuf[2] = { 0, 0 }; 438 uint16_t actlen; 439 int d, error; 440 struct iic_msg msgs[] = { 441 { sc->addr, IIC_M_WR | IIC_M_NOSTOP, cmdlen, cmd }, 442 { sc->addr, IIC_M_RD | IIC_M_NOSTOP, 2, actbuf }, 443 { sc->addr, IIC_M_RD | IIC_M_NOSTART, maxlen, buf }, 444 }; 445 446 if (maxlen == 0) 447 return (EINVAL); 448 449 DPRINTF(sc, "HID command I2C_HID_CMD_GET_REPORT %d " 450 "(type %d, len %d)\n", id, type, maxlen); 451 452 /* 453 * 7.2.2.2 - Response will be a 2-byte length value, the report 454 * id (1 byte, if defined in Report Descriptor), and then the report. 455 */ 456 error = iicbus_transfer(sc->dev, msgs, nitems(msgs)); 457 if (error != 0) 458 return (error); 459 460 actlen = actbuf[0] | actbuf[1] << 8; 461 if (actlen != maxlen + 2) 462 DPRINTF(sc, "response size %d != expected length %d\n", 463 actlen, maxlen + 2); 464 465 if (actlen <= 2 || actlen == 0xFFFF) 466 return (ENOMSG); 467 468 d = id != 0 ? *(uint8_t *)buf : 0; 469 if (d != id) { 470 DPRINTF(sc, "response report id %d != %d\n", d, id); 471 return (EBADMSG); 472 } 473 474 actlen -= 2; 475 if (actlen > maxlen) 476 actlen = maxlen; 477 if (actual_len != NULL) 478 *actual_len = actlen; 479 480 DPRINTF(sc, "response: %*D %*D\n", 2, actbuf, " ", actlen, buf, " "); 481 482 return (0); 483 } 484 485 static int 486 iichid_cmd_set_report(struct iichid_softc* sc, const void *buf, 487 iichid_size_t len, uint8_t type, uint8_t id) 488 { 489 /* 490 * 7.2.2.4 - "The protocol is optimized for Report < 15. If a 491 * report ID >= 15 is necessary, then the Report ID in the Low Byte 492 * must be set to 1111 and a Third Byte is appended to the protocol. 493 * This Third Byte contains the entire/actual report ID." 494 */ 495 uint8_t *dtareg = (uint8_t *)&sc->desc.wDataRegister; 496 uint8_t *cmdreg = (uint8_t *)&sc->desc.wCommandRegister; 497 uint16_t replen = 2 + len; 498 uint8_t cmd[] = { /*________|______id>=15_____|______id<15______*/ 499 cmdreg[0] , 500 cmdreg[1] , 501 (id >= 15 ? 15 | (type << 4): id | (type << 4)), 502 I2C_HID_CMD_SET_REPORT , 503 (id >= 15 ? id : dtareg[0] ), 504 (id >= 15 ? dtareg[0] : dtareg[1] ), 505 (id >= 15 ? dtareg[1] : replen & 0xff ), 506 (id >= 15 ? replen & 0xff : replen >> 8 ), 507 (id >= 15 ? replen >> 8 : 0 ), 508 }; 509 int cmdlen = (id >= 15 ? 9 : 8 ); 510 struct iic_msg msgs[] = { 511 {sc->addr, IIC_M_WR | IIC_M_NOSTOP, cmdlen, cmd}, 512 {sc->addr, IIC_M_WR | IIC_M_NOSTART, len, __DECONST(void *, buf)}, 513 }; 514 515 DPRINTF(sc, "HID command I2C_HID_CMD_SET_REPORT %d (type %d, len %d): " 516 "%*D\n", id, type, len, len, buf, " "); 517 518 return (iicbus_transfer(sc->dev, msgs, nitems(msgs))); 519 } 520 521 #ifdef IICHID_SAMPLING 522 static void 523 iichid_event_task(void *context, int pending) 524 { 525 struct iichid_softc *sc; 526 device_t parent; 527 iichid_size_t actual; 528 bool bus_requested; 529 int error, rate; 530 531 sc = context; 532 parent = device_get_parent(sc->dev); 533 534 bus_requested = false; 535 if (iicbus_request_bus(parent, sc->dev, IIC_WAIT) != 0) 536 goto rearm; 537 bus_requested = true; 538 539 if (!sc->power_on) 540 goto out; 541 542 error = iichid_cmd_read(sc, sc->intr_buf, sc->intr_bufsize, &actual); 543 if (error == 0) { 544 if (actual > 0) { 545 sc->intr_handler(sc->intr_ctx, sc->intr_buf, actual); 546 sc->missing_samples = 0; 547 if (sc->dup_size != actual || 548 memcmp(sc->dup_buf, sc->intr_buf, actual) != 0) { 549 sc->dup_size = actual; 550 memcpy(sc->dup_buf, sc->intr_buf, actual); 551 sc->dup_samples = 0; 552 } else 553 ++sc->dup_samples; 554 } else { 555 if (++sc->missing_samples == 1) 556 sc->intr_handler(sc->intr_ctx, sc->intr_buf, 0); 557 sc->dup_samples = 0; 558 } 559 } else 560 DPRINTF(sc, "read error occurred: %d\n", error); 561 562 rearm: 563 if (sc->callout_setup && sc->sampling_rate_slow > 0) { 564 if (sc->missing_samples >= sc->sampling_hysteresis || 565 sc->dup_samples >= sc->sampling_hysteresis) 566 rate = sc->sampling_rate_slow; 567 else 568 rate = sc->sampling_rate_fast; 569 taskqueue_enqueue_timeout_sbt(sc->taskqueue, &sc->periodic_task, 570 SBT_1S / MAX(rate, 1), 0, C_PREL(2)); 571 } 572 out: 573 if (bus_requested) 574 iicbus_release_bus(parent, sc->dev); 575 } 576 #endif /* IICHID_SAMPLING */ 577 578 static void 579 iichid_intr(void *context) 580 { 581 struct iichid_softc *sc; 582 device_t parent; 583 iichid_size_t maxlen, actual; 584 int error; 585 586 sc = context; 587 parent = device_get_parent(sc->dev); 588 589 /* 590 * Designware(IG4) driver-specific hack. 591 * Requesting of an I2C bus with IIC_DONTWAIT parameter enables polled 592 * mode in the driver, making possible iicbus_transfer execution from 593 * interrupt handlers and callouts. 594 */ 595 if (iicbus_request_bus(parent, sc->dev, IIC_DONTWAIT) != 0) 596 return; 597 598 /* 599 * Reading of input reports of I2C devices residing in SLEEP state is 600 * not allowed and often returns a garbage. If a HOST needs to 601 * communicate with the DEVICE it MUST issue a SET POWER command 602 * (to ON) before any other command. As some hardware requires reads to 603 * acknowledge interrupts we fetch only length header and discard it. 604 */ 605 maxlen = sc->power_on ? sc->intr_bufsize : 0; 606 error = iichid_cmd_read(sc, sc->intr_buf, maxlen, &actual); 607 if (error == 0) { 608 if (sc->power_on) { 609 if (actual != 0) 610 sc->intr_handler(sc->intr_ctx, sc->intr_buf, 611 actual); 612 else 613 DPRINTF(sc, "no data received\n"); 614 } 615 } else 616 DPRINTF(sc, "read error occurred: %d\n", error); 617 618 iicbus_release_bus(parent, sc->dev); 619 } 620 621 static int 622 iichid_set_power_state(struct iichid_softc *sc, 623 enum iichid_powerstate_how how_open, 624 enum iichid_powerstate_how how_suspend) 625 { 626 device_t parent; 627 int error; 628 int how_request; 629 bool power_on; 630 631 /* 632 * Request iicbus early as sc->suspend and sc->power_on 633 * are protected by iicbus internal lock. 634 */ 635 parent = device_get_parent(sc->dev); 636 /* Allow to interrupt open()/close() handlers by SIGINT */ 637 how_request = how_open == IICHID_PS_NULL ? IIC_WAIT : IIC_INTRWAIT; 638 error = iicbus_request_bus(parent, sc->dev, how_request); 639 if (error != 0) 640 return (error); 641 642 switch (how_open) { 643 case IICHID_PS_ON: 644 sc->open = true; 645 break; 646 case IICHID_PS_OFF: 647 sc->open = false; 648 break; 649 case IICHID_PS_NULL: 650 default: 651 break; 652 } 653 654 switch (how_suspend) { 655 case IICHID_PS_ON: 656 sc->suspend = false; 657 break; 658 case IICHID_PS_OFF: 659 sc->suspend = true; 660 break; 661 case IICHID_PS_NULL: 662 default: 663 break; 664 } 665 666 power_on = sc->open & !sc->suspend; 667 668 if (power_on != sc->power_on) { 669 error = iichid_set_power(sc, 670 power_on ? I2C_HID_POWER_ON : I2C_HID_POWER_OFF); 671 672 sc->power_on = power_on; 673 #ifdef IICHID_SAMPLING 674 if (sc->sampling_rate_slow >= 0 && sc->intr_handler != NULL) { 675 if (power_on) { 676 iichid_setup_callout(sc); 677 iichid_reset_callout(sc); 678 } else 679 iichid_teardown_callout(sc); 680 } 681 #endif 682 } 683 684 iicbus_release_bus(parent, sc->dev); 685 686 return (error); 687 } 688 689 static int 690 iichid_setup_interrupt(struct iichid_softc *sc) 691 { 692 sc->irq_cookie = 0; 693 694 int error = bus_setup_intr(sc->dev, sc->irq_res, 695 INTR_TYPE_TTY|INTR_MPSAFE, NULL, iichid_intr, sc, &sc->irq_cookie); 696 if (error != 0) 697 DPRINTF(sc, "Could not setup interrupt handler\n"); 698 else 699 DPRINTF(sc, "successfully setup interrupt\n"); 700 701 return (error); 702 } 703 704 static void 705 iichid_teardown_interrupt(struct iichid_softc *sc) 706 { 707 if (sc->irq_cookie) 708 bus_teardown_intr(sc->dev, sc->irq_res, sc->irq_cookie); 709 710 sc->irq_cookie = 0; 711 } 712 713 #ifdef IICHID_SAMPLING 714 static int 715 iichid_setup_callout(struct iichid_softc *sc) 716 { 717 718 if (sc->sampling_rate_slow < 0) { 719 DPRINTF(sc, "sampling_rate is below 0, can't setup callout\n"); 720 return (EINVAL); 721 } 722 723 sc->callout_setup = true; 724 DPRINTF(sc, "successfully setup callout\n"); 725 return (0); 726 } 727 728 static int 729 iichid_reset_callout(struct iichid_softc *sc) 730 { 731 732 if (sc->sampling_rate_slow <= 0) { 733 DPRINTF(sc, "sampling_rate is below or equal to 0, " 734 "can't reset callout\n"); 735 return (EINVAL); 736 } 737 738 if (!sc->callout_setup) 739 return (EINVAL); 740 741 /* Start with slow sampling. */ 742 sc->missing_samples = sc->sampling_hysteresis; 743 sc->dup_samples = 0; 744 sc->dup_size = 0; 745 taskqueue_enqueue(sc->taskqueue, &sc->event_task); 746 747 return (0); 748 } 749 750 static void 751 iichid_teardown_callout(struct iichid_softc *sc) 752 { 753 754 sc->callout_setup = false; 755 taskqueue_cancel_timeout(sc->taskqueue, &sc->periodic_task, NULL); 756 DPRINTF(sc, "tore callout down\n"); 757 } 758 759 static int 760 iichid_sysctl_sampling_rate_handler(SYSCTL_HANDLER_ARGS) 761 { 762 struct iichid_softc *sc; 763 device_t parent; 764 int error, oldval, value; 765 766 sc = arg1; 767 768 value = sc->sampling_rate_slow; 769 error = sysctl_handle_int(oidp, &value, 0, req); 770 771 if (error != 0 || req->newptr == NULL || 772 value == sc->sampling_rate_slow) 773 return (error); 774 775 /* Can't switch to interrupt mode if it is not supported. */ 776 if (sc->irq_res == NULL && value < 0) 777 return (EINVAL); 778 779 parent = device_get_parent(sc->dev); 780 error = iicbus_request_bus(parent, sc->dev, IIC_WAIT); 781 if (error != 0) 782 return (iic2errno(error)); 783 784 oldval = sc->sampling_rate_slow; 785 sc->sampling_rate_slow = value; 786 787 if (oldval < 0 && value >= 0) { 788 iichid_teardown_interrupt(sc); 789 if (sc->power_on) 790 iichid_setup_callout(sc); 791 } else if (oldval >= 0 && value < 0) { 792 if (sc->power_on) 793 iichid_teardown_callout(sc); 794 iichid_setup_interrupt(sc); 795 } 796 797 if (sc->power_on && value > 0) 798 iichid_reset_callout(sc); 799 800 iicbus_release_bus(parent, sc->dev); 801 802 DPRINTF(sc, "new sampling_rate value: %d\n", value); 803 804 return (0); 805 } 806 #endif /* IICHID_SAMPLING */ 807 808 static void 809 iichid_intr_setup(device_t dev, device_t child __unused, hid_intr_t intr, 810 void *context, struct hid_rdesc_info *rdesc) 811 { 812 struct iichid_softc *sc; 813 814 if (intr == NULL) 815 return; 816 817 sc = device_get_softc(dev); 818 /* 819 * Do not rely on wMaxInputLength, as some devices may set it to 820 * a wrong length. Find the longest input report in report descriptor. 821 */ 822 rdesc->rdsize = rdesc->isize; 823 /* Write and get/set_report sizes are limited by I2C-HID protocol. */ 824 rdesc->grsize = rdesc->srsize = IICHID_SIZE_MAX; 825 rdesc->wrsize = IICHID_SIZE_MAX; 826 827 sc->intr_handler = intr; 828 sc->intr_ctx = context; 829 sc->intr_buf = malloc(rdesc->rdsize, M_DEVBUF, M_WAITOK | M_ZERO); 830 sc->intr_bufsize = rdesc->rdsize; 831 #ifdef IICHID_SAMPLING 832 sc->dup_buf = malloc(rdesc->rdsize, M_DEVBUF, M_WAITOK | M_ZERO); 833 taskqueue_start_threads(&sc->taskqueue, 1, PI_TTY, 834 "%s taskq", device_get_nameunit(sc->dev)); 835 #endif 836 } 837 838 static void 839 iichid_intr_unsetup(device_t dev, device_t child __unused) 840 { 841 struct iichid_softc *sc; 842 843 sc = device_get_softc(dev); 844 #ifdef IICHID_SAMPLING 845 taskqueue_drain_all(sc->taskqueue); 846 free(sc->dup_buf, M_DEVBUF); 847 #endif 848 free(sc->intr_buf, M_DEVBUF); 849 } 850 851 static int 852 iichid_intr_start(device_t dev, device_t child __unused) 853 { 854 struct iichid_softc *sc; 855 856 sc = device_get_softc(dev); 857 DPRINTF(sc, "iichid device open\n"); 858 iichid_set_power_state(sc, IICHID_PS_ON, IICHID_PS_NULL); 859 860 return (0); 861 } 862 863 static int 864 iichid_intr_stop(device_t dev, device_t child __unused) 865 { 866 struct iichid_softc *sc; 867 868 sc = device_get_softc(dev); 869 DPRINTF(sc, "iichid device close\n"); 870 /* 871 * 8.2 - The HOST determines that there are no active applications 872 * that are currently using the specific HID DEVICE. The HOST 873 * is recommended to issue a HIPO command to the DEVICE to force 874 * the DEVICE in to a lower power state. 875 */ 876 iichid_set_power_state(sc, IICHID_PS_OFF, IICHID_PS_NULL); 877 878 return (0); 879 } 880 881 static void 882 iichid_intr_poll(device_t dev, device_t child __unused) 883 { 884 struct iichid_softc *sc; 885 iichid_size_t actual; 886 int error; 887 888 sc = device_get_softc(dev); 889 error = iichid_cmd_read(sc, sc->intr_buf, sc->intr_bufsize, &actual); 890 if (error == 0 && actual != 0) 891 sc->intr_handler(sc->intr_ctx, sc->intr_buf, actual); 892 } 893 894 /* 895 * HID interface 896 */ 897 static int 898 iichid_get_rdesc(device_t dev, device_t child __unused, void *buf, 899 hid_size_t len) 900 { 901 struct iichid_softc *sc; 902 int error; 903 904 sc = device_get_softc(dev); 905 error = iichid_cmd_get_report_desc(sc, buf, len); 906 if (error) 907 DPRINTF(sc, "failed to fetch report descriptor: %d\n", error); 908 909 return (iic2errno(error)); 910 } 911 912 static int 913 iichid_read(device_t dev, device_t child __unused, void *buf, 914 hid_size_t maxlen, hid_size_t *actlen) 915 { 916 struct iichid_softc *sc; 917 device_t parent; 918 int error; 919 920 if (maxlen > IICHID_SIZE_MAX) 921 return (EMSGSIZE); 922 sc = device_get_softc(dev); 923 parent = device_get_parent(sc->dev); 924 error = iicbus_request_bus(parent, sc->dev, IIC_WAIT); 925 if (error == 0) { 926 error = iichid_cmd_read(sc, buf, maxlen, actlen); 927 iicbus_release_bus(parent, sc->dev); 928 } 929 return (iic2errno(error)); 930 } 931 932 static int 933 iichid_write(device_t dev, device_t child __unused, const void *buf, 934 hid_size_t len) 935 { 936 struct iichid_softc *sc; 937 938 if (len > IICHID_SIZE_MAX) 939 return (EMSGSIZE); 940 sc = device_get_softc(dev); 941 return (iic2errno(iichid_cmd_write(sc, buf, len))); 942 } 943 944 static int 945 iichid_get_report(device_t dev, device_t child __unused, void *buf, 946 hid_size_t maxlen, hid_size_t *actlen, uint8_t type, uint8_t id) 947 { 948 struct iichid_softc *sc; 949 950 if (maxlen > IICHID_SIZE_MAX) 951 return (EMSGSIZE); 952 sc = device_get_softc(dev); 953 return (iic2errno( 954 iichid_cmd_get_report(sc, buf, maxlen, actlen, type, id))); 955 } 956 957 static int 958 iichid_set_report(device_t dev, device_t child __unused, const void *buf, 959 hid_size_t len, uint8_t type, uint8_t id) 960 { 961 struct iichid_softc *sc; 962 963 if (len > IICHID_SIZE_MAX) 964 return (EMSGSIZE); 965 sc = device_get_softc(dev); 966 return (iic2errno(iichid_cmd_set_report(sc, buf, len, type, id))); 967 } 968 969 static int 970 iichid_set_idle(device_t dev, device_t child __unused, 971 uint16_t duration, uint8_t id) 972 { 973 return (ENOTSUP); 974 } 975 976 static int 977 iichid_set_protocol(device_t dev, device_t child __unused, uint16_t protocol) 978 { 979 return (ENOTSUP); 980 } 981 982 static int 983 iichid_ioctl(device_t dev, device_t child __unused, unsigned long cmd, 984 uintptr_t data) 985 { 986 int error; 987 988 switch (cmd) { 989 case I2CRDWR: 990 error = iic2errno(iicbus_transfer(dev, 991 ((struct iic_rdwr_data *)data)->msgs, 992 ((struct iic_rdwr_data *)data)->nmsgs)); 993 break; 994 default: 995 error = EINVAL; 996 } 997 998 return (error); 999 } 1000 1001 static int 1002 iichid_fill_device_info(struct i2c_hid_desc *desc, ACPI_HANDLE handle, 1003 struct hid_device_info *hw) 1004 { 1005 ACPI_DEVICE_INFO *device_info; 1006 1007 hw->idBus = BUS_I2C; 1008 hw->idVendor = le16toh(desc->wVendorID); 1009 hw->idProduct = le16toh(desc->wProductID); 1010 hw->idVersion = le16toh(desc->wVersionID); 1011 1012 /* get ACPI HID. It is a base part of the device name. */ 1013 if (ACPI_FAILURE(AcpiGetObjectInfo(handle, &device_info))) 1014 return (ENXIO); 1015 1016 if (device_info->Valid & ACPI_VALID_HID) 1017 strlcpy(hw->idPnP, device_info->HardwareId.String, 1018 HID_PNP_ID_SIZE); 1019 snprintf(hw->name, sizeof(hw->name), "%s:%02lX %04X:%04X", 1020 (device_info->Valid & ACPI_VALID_HID) ? 1021 device_info->HardwareId.String : "Unknown", 1022 (device_info->Valid & ACPI_VALID_UID) ? 1023 strtoul(device_info->UniqueId.String, NULL, 10) : 0UL, 1024 le16toh(desc->wVendorID), le16toh(desc->wProductID)); 1025 1026 AcpiOsFree(device_info); 1027 1028 strlcpy(hw->serial, "", sizeof(hw->serial)); 1029 hw->rdescsize = le16toh(desc->wReportDescLength); 1030 if (desc->wOutputRegister == 0 || desc->wMaxOutputLength == 0) 1031 hid_add_dynamic_quirk(hw, HQ_NOWRITE); 1032 1033 return (0); 1034 } 1035 1036 static int 1037 iichid_probe(device_t dev) 1038 { 1039 struct iichid_softc *sc; 1040 ACPI_HANDLE handle; 1041 char buf[80]; 1042 uint16_t config_reg; 1043 int error, reg; 1044 1045 sc = device_get_softc(dev); 1046 sc->dev = dev; 1047 if (sc->probe_done) 1048 goto done; 1049 1050 sc->probe_done = true; 1051 sc->probe_result = ENXIO; 1052 1053 if (acpi_disabled("iichid")) 1054 return (ENXIO); 1055 1056 sc->addr = iicbus_get_addr(dev) << 1; 1057 if (sc->addr == 0) 1058 return (ENXIO); 1059 1060 handle = acpi_get_handle(dev); 1061 if (handle == NULL) 1062 return (ENXIO); 1063 1064 reg = acpi_is_iichid(handle); 1065 if (reg == IICHID_REG_NONE) 1066 return (ENXIO); 1067 1068 if (reg == IICHID_REG_ACPI) { 1069 if (ACPI_FAILURE(iichid_get_config_reg(handle, &config_reg))) 1070 return (ENXIO); 1071 } else 1072 config_reg = (uint16_t)reg; 1073 1074 DPRINTF(sc, " IICbus addr : 0x%02X\n", sc->addr >> 1); 1075 DPRINTF(sc, " HID descriptor reg: 0x%02X\n", config_reg); 1076 1077 error = iichid_cmd_get_hid_desc(sc, config_reg, &sc->desc); 1078 if (error) { 1079 DPRINTF(sc, "could not retrieve HID descriptor from the " 1080 "device: %d\n", error); 1081 return (ENXIO); 1082 } 1083 1084 if (le16toh(sc->desc.wHIDDescLength) != 30 || 1085 le16toh(sc->desc.bcdVersion) != 0x100) { 1086 DPRINTF(sc, "HID descriptor is broken\n"); 1087 return (ENXIO); 1088 } 1089 1090 /* Setup hid_device_info so we can figure out quirks for the device. */ 1091 if (iichid_fill_device_info(&sc->desc, handle, &sc->hw) != 0) { 1092 DPRINTF(sc, "error evaluating AcpiGetObjectInfo\n"); 1093 return (ENXIO); 1094 } 1095 1096 if (hid_test_quirk(&sc->hw, HQ_HID_IGNORE)) 1097 return (ENXIO); 1098 1099 sc->probe_result = BUS_PROBE_DEFAULT; 1100 done: 1101 if (sc->probe_result <= BUS_PROBE_SPECIFIC) { 1102 snprintf(buf, sizeof(buf), "%s I2C HID device", sc->hw.name); 1103 device_set_desc_copy(dev, buf); 1104 } 1105 return (sc->probe_result); 1106 } 1107 1108 static int 1109 iichid_attach(device_t dev) 1110 { 1111 struct iichid_softc *sc; 1112 device_t child; 1113 int error; 1114 1115 sc = device_get_softc(dev); 1116 error = iichid_set_power(sc, I2C_HID_POWER_ON); 1117 if (error) { 1118 device_printf(dev, "failed to power on: %d\n", error); 1119 return (ENXIO); 1120 } 1121 /* 1122 * Windows driver sleeps for 1ms between the SET_POWER and RESET 1123 * commands. So we too as some devices may depend on this. 1124 */ 1125 pause("iichid", (hz + 999) / 1000); 1126 1127 error = iichid_reset(sc); 1128 if (error) { 1129 device_printf(dev, "failed to reset hardware: %d\n", error); 1130 error = ENXIO; 1131 goto done; 1132 } 1133 1134 sc->power_on = true; 1135 1136 TASK_INIT(&sc->suspend_task, 0, iichid_suspend_task, sc); 1137 #ifdef IICHID_SAMPLING 1138 TASK_INIT(&sc->event_task, 0, iichid_event_task, sc); 1139 /* taskqueue_create can't fail with M_WAITOK mflag passed. */ 1140 sc->taskqueue = taskqueue_create("iichid_tq", M_WAITOK | M_ZERO, 1141 taskqueue_thread_enqueue, &sc->taskqueue); 1142 TIMEOUT_TASK_INIT(sc->taskqueue, &sc->periodic_task, 0, 1143 iichid_event_task, sc); 1144 1145 sc->sampling_rate_slow = -1; 1146 sc->sampling_rate_fast = IICHID_SAMPLING_RATE_FAST; 1147 sc->sampling_hysteresis = IICHID_SAMPLING_HYSTERESIS; 1148 #endif 1149 1150 sc->irq_rid = 0; 1151 sc->irq_res = bus_alloc_resource_any(sc->dev, SYS_RES_IRQ, 1152 &sc->irq_rid, RF_ACTIVE); 1153 1154 if (sc->irq_res != NULL) { 1155 DPRINTF(sc, "allocated irq at %p and rid %d\n", 1156 sc->irq_res, sc->irq_rid); 1157 error = iichid_setup_interrupt(sc); 1158 } 1159 1160 if (sc->irq_res == NULL || error != 0) { 1161 #ifdef IICHID_SAMPLING 1162 device_printf(sc->dev, 1163 "Interrupt setup failed. Fallback to sampling\n"); 1164 sc->sampling_rate_slow = IICHID_SAMPLING_RATE_SLOW; 1165 #else 1166 device_printf(sc->dev, "Interrupt setup failed\n"); 1167 if (sc->irq_res != NULL) 1168 bus_release_resource(dev, SYS_RES_IRQ, sc->irq_rid, 1169 sc->irq_res); 1170 error = ENXIO; 1171 goto done; 1172 #endif 1173 } 1174 1175 #ifdef IICHID_SAMPLING 1176 SYSCTL_ADD_PROC(device_get_sysctl_ctx(sc->dev), 1177 SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev)), 1178 OID_AUTO, "sampling_rate_slow", CTLTYPE_INT | CTLFLAG_RWTUN, 1179 sc, 0, iichid_sysctl_sampling_rate_handler, "I", 1180 "idle sampling rate in num/second"); 1181 SYSCTL_ADD_INT(device_get_sysctl_ctx(sc->dev), 1182 SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev)), 1183 OID_AUTO, "sampling_rate_fast", CTLFLAG_RWTUN, 1184 &sc->sampling_rate_fast, 0, 1185 "active sampling rate in num/second"); 1186 SYSCTL_ADD_INT(device_get_sysctl_ctx(sc->dev), 1187 SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev)), 1188 OID_AUTO, "sampling_hysteresis", CTLFLAG_RWTUN, 1189 &sc->sampling_hysteresis, 0, 1190 "number of missing samples before enabling of slow mode"); 1191 hid_add_dynamic_quirk(&sc->hw, HQ_IICHID_SAMPLING); 1192 1193 if (sc->sampling_rate_slow >= 0) { 1194 pause("iichid", (hz + 999) / 1000); 1195 (void)iichid_cmd_read(sc, NULL, 0, NULL); 1196 } 1197 #endif /* IICHID_SAMPLING */ 1198 1199 child = device_add_child(dev, "hidbus", -1); 1200 if (child == NULL) { 1201 device_printf(sc->dev, "Could not add I2C device\n"); 1202 iichid_detach(dev); 1203 error = ENOMEM; 1204 goto done; 1205 } 1206 1207 device_set_ivars(child, &sc->hw); 1208 error = bus_generic_attach(dev); 1209 if (error) { 1210 device_printf(dev, "failed to attach child: error %d\n", error); 1211 iichid_detach(dev); 1212 } 1213 done: 1214 (void)iichid_set_power(sc, I2C_HID_POWER_OFF); 1215 sc->power_on = false; 1216 return (error); 1217 } 1218 1219 static int 1220 iichid_detach(device_t dev) 1221 { 1222 struct iichid_softc *sc; 1223 int error; 1224 1225 sc = device_get_softc(dev); 1226 error = device_delete_children(dev); 1227 if (error) 1228 return (error); 1229 iichid_teardown_interrupt(sc); 1230 if (sc->irq_res != NULL) 1231 bus_release_resource(dev, SYS_RES_IRQ, sc->irq_rid, 1232 sc->irq_res); 1233 #ifdef IICHID_SAMPLING 1234 if (sc->taskqueue != NULL) 1235 taskqueue_free(sc->taskqueue); 1236 sc->taskqueue = NULL; 1237 #endif 1238 return (0); 1239 } 1240 1241 static void 1242 iichid_suspend_task(void *context, int pending) 1243 { 1244 struct iichid_softc *sc = context; 1245 1246 iichid_teardown_interrupt(sc); 1247 } 1248 1249 static int 1250 iichid_suspend(device_t dev) 1251 { 1252 struct iichid_softc *sc; 1253 int error; 1254 1255 sc = device_get_softc(dev); 1256 (void)bus_generic_suspend(dev); 1257 /* 1258 * 8.2 - The HOST is going into a deep power optimized state and wishes 1259 * to put all the devices into a low power state also. The HOST 1260 * is recommended to issue a HIPO command to the DEVICE to force 1261 * the DEVICE in to a lower power state. 1262 */ 1263 DPRINTF(sc, "Suspend called, setting device to power_state 1\n"); 1264 error = iichid_set_power_state(sc, IICHID_PS_NULL, IICHID_PS_OFF); 1265 if (error != 0) 1266 DPRINTF(sc, "Could not set power_state, error: %d\n", error); 1267 else 1268 DPRINTF(sc, "Successfully set power_state\n"); 1269 1270 #ifdef IICHID_SAMPLING 1271 if (sc->sampling_rate_slow < 0) 1272 #endif 1273 { 1274 /* 1275 * bus_teardown_intr can not be executed right here as it wants 1276 * to run on certain CPU to interacts with LAPIC while suspend 1277 * thread is bound to CPU0. So run it from taskqueue context. 1278 */ 1279 #ifdef IICHID_SAMPLING 1280 #define suspend_thread sc->taskqueue 1281 #else 1282 #define suspend_thread taskqueue_thread 1283 #endif 1284 taskqueue_enqueue(suspend_thread, &sc->suspend_task); 1285 taskqueue_drain(suspend_thread, &sc->suspend_task); 1286 } 1287 1288 return (0); 1289 } 1290 1291 static int 1292 iichid_resume(device_t dev) 1293 { 1294 struct iichid_softc *sc; 1295 int error; 1296 1297 sc = device_get_softc(dev); 1298 #ifdef IICHID_SAMPLING 1299 if (sc->sampling_rate_slow < 0) 1300 #endif 1301 iichid_setup_interrupt(sc); 1302 1303 DPRINTF(sc, "Resume called, setting device to power_state 0\n"); 1304 error = iichid_set_power_state(sc, IICHID_PS_NULL, IICHID_PS_ON); 1305 if (error != 0) 1306 DPRINTF(sc, "Could not set power_state, error: %d\n", error); 1307 else 1308 DPRINTF(sc, "Successfully set power_state\n"); 1309 (void)bus_generic_resume(dev); 1310 1311 return (0); 1312 } 1313 1314 static device_method_t iichid_methods[] = { 1315 DEVMETHOD(device_probe, iichid_probe), 1316 DEVMETHOD(device_attach, iichid_attach), 1317 DEVMETHOD(device_detach, iichid_detach), 1318 DEVMETHOD(device_suspend, iichid_suspend), 1319 DEVMETHOD(device_resume, iichid_resume), 1320 1321 DEVMETHOD(hid_intr_setup, iichid_intr_setup), 1322 DEVMETHOD(hid_intr_unsetup, iichid_intr_unsetup), 1323 DEVMETHOD(hid_intr_start, iichid_intr_start), 1324 DEVMETHOD(hid_intr_stop, iichid_intr_stop), 1325 DEVMETHOD(hid_intr_poll, iichid_intr_poll), 1326 1327 /* HID interface */ 1328 DEVMETHOD(hid_get_rdesc, iichid_get_rdesc), 1329 DEVMETHOD(hid_read, iichid_read), 1330 DEVMETHOD(hid_write, iichid_write), 1331 DEVMETHOD(hid_get_report, iichid_get_report), 1332 DEVMETHOD(hid_set_report, iichid_set_report), 1333 DEVMETHOD(hid_set_idle, iichid_set_idle), 1334 DEVMETHOD(hid_set_protocol, iichid_set_protocol), 1335 DEVMETHOD(hid_ioctl, iichid_ioctl), 1336 1337 DEVMETHOD_END 1338 }; 1339 1340 static driver_t iichid_driver = { 1341 .name = "iichid", 1342 .methods = iichid_methods, 1343 .size = sizeof(struct iichid_softc), 1344 }; 1345 1346 DRIVER_MODULE(iichid, iicbus, iichid_driver, NULL, NULL); 1347 MODULE_DEPEND(iichid, iicbus, IICBUS_MINVER, IICBUS_PREFVER, IICBUS_MAXVER); 1348 MODULE_DEPEND(iichid, acpi, 1, 1, 1); 1349 MODULE_DEPEND(iichid, hid, 1, 1, 1); 1350 MODULE_DEPEND(iichid, hidbus, 1, 1, 1); 1351 MODULE_VERSION(iichid, 1); 1352 IICBUS_ACPI_PNP_INFO(iichid_ids); 1353