| /freebsd-13-stable/sys/powerpc/aim/ |
| HD | mp_cpudep.c | 210 register_t hid; in mpc74xx_l1d_enable() local 212 hid = mfspr(SPR_HID0); in mpc74xx_l1d_enable() 213 if (hid & HID0_DCE) in mpc74xx_l1d_enable() 214 return (hid); in mpc74xx_l1d_enable() 217 hid |= HID0_DCE; in mpc74xx_l1d_enable() 219 mtspr(SPR_HID0, hid | HID0_DCFI); in mpc74xx_l1d_enable() 222 return (hid); in mpc74xx_l1d_enable() 228 register_t hid; in mpc74xx_l1i_enable() local 230 hid = mfspr(SPR_HID0); in mpc74xx_l1i_enable() 231 if (hid & HID0_ICE) in mpc74xx_l1i_enable() [all …]
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/input/ |
| HD | hid-over-i2c.txt | 10 If this binding is used, the kernel module i2c-hid will handle the communication 11 with the device and the generic hid core layer will handle the protocol. 14 - compatible: must be "hid-over-i2c" 16 - hid-descr-addr: HID descriptor address 24 "hid-over-i2c" string. 38 i2c-hid-dev@2c { 39 compatible = "hid-over-i2c"; 41 hid-descr-addr = <0x0020>;
|
| /freebsd-13-stable/sys/contrib/device-tree/src/arm64/mediatek/ |
| HD | mt8173-elm-hana.dtsi | 22 * Gen (MTK) are using synaptics touchscreen (hid-over-i2c driver) as a 26 compatible = "hid-over-i2c"; 28 hid-descr-addr = <0x0020>; 37 * Gen (MTK) are using synaptics trackpad (hid-over-i2c driver) as a 41 compatible = "hid-over-i2c"; 45 hid-descr-addr = <0x0020>;
|
| /freebsd-13-stable/sys/contrib/device-tree/src/arm64/qcom/ |
| HD | sdm850-lenovo-yoga-c630.dts | 267 hid@15 { 268 compatible = "hid-over-i2c"; 270 hid-descr-addr = <0x1>; 275 hid@2c { 276 compatible = "hid-over-i2c"; 278 hid-descr-addr = <0x20>; 291 hid@10 { 292 compatible = "hid-over-i2c"; 294 hid-descr-addr = <0x1>; 307 hid@5c { [all …]
|
| HD | msm8998-asus-novago-tp370ql.dts | 17 compatible = "hid-over-i2c"; 21 hid-descr-addr = <0x0001>; 28 compatible = "hid-over-i2c"; 32 hid-descr-addr = <0x0001>;
|
| HD | msm8998-hp-envy-x2.dts | 17 compatible = "hid-over-i2c"; 21 hid-descr-addr = <0x0001>;
|
| HD | msm8998-lenovo-miix-630.dts | 17 compatible = "hid-over-i2c"; 21 hid-descr-addr = <0x0001>;
|
| /freebsd-13-stable/sys/dev/usb/ |
| HD | usb_hid.c | 117 struct usb_hid_descriptor *hid; in usbd_req_get_hid_desc() local 123 hid = hid_get_descriptor_from_usb in usbd_req_get_hid_desc() 126 if (hid == NULL) { in usbd_req_get_hid_desc() 129 *sizep = UGETW(hid->descrs[0].wDescriptorLength); in usbd_req_get_hid_desc()
|
| /freebsd-13-stable/sys/modules/hid/hid/ |
| HD | Makefile | 2 .PATH: ${SRCTOP}/sys/dev/hid 4 KMOD= hid 5 SRCS= hid.c hid_if.c
|
| /freebsd-13-stable/usr.sbin/bhyve/ |
| HD | usb_mouse.c | 248 } hid; member 305 sc->hid.protocol = 1; /* REPORT protocol */ in umouse_init() 525 if (sc->hid.feature == UF_DEVICE_REMOTE_WAKEUP) in umouse_request() 564 sc->hid.feature = 0; in umouse_request() 570 sc->hid.feature = UF_DEVICE_REMOTE_WAKEUP; in umouse_request() 625 *udata = sc->hid.idle; in umouse_request() 634 *udata = sc->hid.protocol; in umouse_request() 646 sc->hid.idle = UGETW(xfer->ureq->wValue) >> 8; in umouse_request() 648 sc->hid.idle)); in umouse_request() 652 sc->hid.protocol = UGETW(xfer->ureq->wValue) >> 8; in umouse_request() [all …]
|
| /freebsd-13-stable/sys/opencrypto/ |
| HD | crypto.c | 614 crypto_checkdriver(uint32_t hid) in crypto_checkdriver() argument 617 return (hid >= crypto_drivers_size ? NULL : crypto_drivers[hid]); in crypto_checkdriver() 628 int best_match, error, hid; in crypto_select_driver() local 633 for (hid = 0; hid < crypto_drivers_size; hid++) { in crypto_select_driver() 639 cap = crypto_drivers[hid]; in crypto_select_driver() 1134 crypto_find_device_byhid(int hid) in crypto_find_device_byhid() argument 1141 cap = crypto_checkdriver(hid); in crypto_find_device_byhid() 1152 crypto_getcaps(int hid) in crypto_getcaps() argument 1159 cap = crypto_checkdriver(hid); in crypto_getcaps() 1576 int match, hid; in crypto_select_kdriver() local [all …]
|
| /freebsd-13-stable/sys/dev/sdhci/ |
| HD | sdhci_acpi.c | 56 const char* hid; member 216 if (strcmp(acpi_dev->hid, "AMDI0040") == 0 && acpi_dev->uid == 0) { in sdhci_acpi_set_uhs_timing() 242 char *hid; in sdhci_acpi_find_device() local 248 rv = ACPI_ID_PROBE(device_get_parent(dev), dev, sdhci_ids, &hid); in sdhci_acpi_find_device() 257 for (i = 0; sdhci_acpi_devices[i].hid != NULL; i++) { in sdhci_acpi_find_device() 258 if (strcmp(sdhci_acpi_devices[i].hid, hid) != 0) in sdhci_acpi_find_device() 321 if (strcmp(acpi_dev->hid, "80860F14") == 0 && acpi_dev->uid == 1 && in sdhci_acpi_attach()
|
| /freebsd-13-stable/sys/dev/ahci/ |
| HD | ahci_generic.c | 89 const char* hid; member 117 for (i = 0; ahci_acpi_quirks[i].hid != NULL; i++) { in ahci_acpi_probe() 118 if (acpi_MatchHid(h, ahci_acpi_quirks[i].hid) != ACPI_MATCHHID_NOMATCH) { in ahci_acpi_probe()
|
| /freebsd-13-stable/lib/libbluetooth/ |
| HD | protocols | 15 hid-control 17 HID-Control # Human Interface Device (control) 16 hid-interrupt 19 HID-Interrupt # Human Interface Device (interrupt)
|
| /freebsd-13-stable/sys/dev/hyperv/pcib/ |
| HD | vmbus_pcib.c | 532 hv_int_desc_free(struct hv_pci_dev *hpdev, struct hv_irq_desc *hid) in hv_int_desc_free() argument 544 int_pkt->int_desc = hid->desc; in hv_int_desc_free() 549 free(hid, M_DEVBUF); in hv_int_desc_free() 556 struct hv_irq_desc *hid, *tmp_hid; in hv_pci_delete_device() local 575 TAILQ_FOREACH_SAFE(hid, &hpdev->irq_desc_list, link, tmp_hid) in hv_pci_delete_device() 576 hv_int_desc_free(hpdev, hid); in hv_pci_delete_device() 1776 struct hv_irq_desc *hid, *tmp_hid; in vmbus_pcib_map_msi() local 1800 TAILQ_FOREACH_SAFE(hid, &hpdev->irq_desc_list, link, tmp_hid) { in vmbus_pcib_map_msi() 1801 if (hid->irq == irq) { in vmbus_pcib_map_msi() 1802 TAILQ_REMOVE(&hpdev->irq_desc_list, hid, link); in vmbus_pcib_map_msi() [all …]
|
| /freebsd-13-stable/lib/libkvm/ |
| HD | kvm_minidump_powerpc64_hpt.c | 324 pte_search(kvm_t *kd, ppc64_slb_entry_t *slb, uint64_t hid, kvaddr_t ea, in pte_search() argument 348 __func__, (uintmax_t)hid, (uintmax_t)ea, b, in pte_search() 358 if (hid) in pte_search() 386 if ((pte.pte_hi & LPTEH_HID) != hid || in pte_search() 419 if (hid == 0) in pte_search()
|
| /freebsd-13-stable/contrib/libfido2/src/ |
| HD | CMakeLists.txt | 26 hid.c 84 message(FATAL_ERROR "please define a hid backend for your platform") 106 list(APPEND BASE_LIBRARIES wsock32 ws2_32 bcrypt setupapi hid)
|
| /freebsd-13-stable/sys/modules/hyperv/ |
| HD | Makefile | 2 SUBDIR = vmbus netvsc storvsc utilities hvsock hid
|
| /freebsd-13-stable/include/ |
| HD | Makefile | 159 .PATH: ${SRCTOP}/sys/dev/hid 160 HID= hid.h \ 162 HIDDIR= ${INCLUDEDIR}/dev/hid 352 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/evdev:Ndev/hid:Ndev/hyperv:Ndev/pci:Ndev/ve… 388 .for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/evdev:Ndev/hid:Ndev/hyperv:Ndev/pci:Ndev/veriexec} 401 $$(printf '../../../../sys/dev/hid/%s ' hid.h hidraw.h) \ 402 ${SDESTDIR}${INCLUDEDIR}/dev/hid; \
|
| /freebsd-13-stable/sys/modules/hid/hcons/ |
| HD | Makefile | 2 .PATH: ${SRCTOP}/sys/dev/hid
|
| /freebsd-13-stable/sys/modules/hid/hgame/ |
| HD | Makefile | 2 .PATH: ${SRCTOP}/sys/dev/hid
|
| /freebsd-13-stable/sys/modules/hid/hsctrl/ |
| HD | Makefile | 2 .PATH: ${SRCTOP}/sys/dev/hid
|
| /freebsd-13-stable/sys/modules/hid/hidraw/ |
| HD | Makefile | 2 .PATH: ${SRCTOP}/sys/dev/hid
|
| /freebsd-13-stable/sys/modules/hid/hidquirk/ |
| HD | Makefile | 27 .PATH: ${SRCTOP}/sys/dev/hid
|
| /freebsd-13-stable/sys/modules/hid/xb360gp/ |
| HD | Makefile | 2 .PATH: ${SRCTOP}/sys/dev/hid
|