HomeSort by: relevance | last modified time | path
    Searched defs:hubd (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/dev/usb/
vhci.c 478 usb_hub_descriptor_t hubd; local in function:vhci_roothub_ctrl
553 totlen = uimin(buflen, sizeof(hubd));
554 memcpy(&hubd, buf, totlen);
555 hubd.bNbrPorts = sc->sc_nports - 1;
556 hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE;
557 totlen = uimin(totlen, hubd.bDescLength);
558 memcpy(buf, &hubd, totlen);
ohci.c 2544 usb_hub_descriptor_t hubd; local in function:ohci_roothub_ctrl
2546 totlen = uimin(buflen, sizeof(hubd));
2547 memcpy(&hubd, buf, totlen);
2550 hubd.bNbrPorts = sc->sc_noport;
2551 USETW(hubd.wHubCharacteristics,
2556 hubd.bPwrOn2PwrGood = OHCI_RHD_GET_POTPGT(v);
2559 hubd.DeviceRemovable[i++] = (uint8_t)v;
2560 hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE + i;
2561 totlen = uimin(totlen, hubd.bDescLength);
2562 memcpy(buf, &hubd, totlen)
    [all...]
uhci.c 3682 usb_hub_descriptor_t hubd; local in function:uhci_roothub_ctrl
3684 totlen = uimin(buflen, sizeof(hubd));
3685 memcpy(&hubd, buf, totlen);
3686 hubd.bNbrPorts = 2;
3687 memcpy(buf, &hubd, totlen);
xhci.c 4175 usb_hub_descriptor_t hubd; local in function:xhci_roothub_ctrl_locked
4177 totlen = uimin(buflen, sizeof(hubd));
4178 memcpy(&hubd, buf, totlen);
4179 hubd.bNbrPorts = sc->sc_rhportcount[bn];
4180 USETW(hubd.wHubCharacteristics, UHD_PWR_NO_SWITCH);
4181 hubd.bPwrOn2PwrGood = 200;
4184 hubd.DeviceRemovable[i++] = 0;
4186 hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE + i;
4187 totlen = uimin(totlen, hubd.bDescLength);
4188 memcpy(buf, &hubd, totlen)
    [all...]
ehci.c 2423 usb_hub_descriptor_t hubd; local in function:ehci_roothub_ctrl_locked
2541 totlen = uimin(buflen, sizeof(hubd));
2542 memcpy(&hubd, buf, totlen);
2543 hubd.bNbrPorts = sc->sc_noport;
2545 USETW(hubd.wHubCharacteristics,
2548 hubd.bPwrOn2PwrGood = 200; /* XXX can't find out? */
2550 hubd.DeviceRemovable[i++] = 0; /* XXX can't find out? */
2551 hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE + i;
2552 totlen = uimin(totlen, hubd.bDescLength);
2553 memcpy(buf, &hubd, totlen)
    [all...]
  /src/sys/arch/mips/adm5120/dev/
ahci.c 653 usb_hub_descriptor_t hubd; local in function:ahci_roothub_ctrl
655 totlen = uimin(buflen, sizeof(hubd));
656 memcpy(&hubd, buf, totlen);
657 hubd.bNbrPorts = 2;
658 USETW(hubd.wHubCharacteristics, 0);
659 hubd.bPwrOn2PwrGood = 0;
660 memcpy(buf, &hubd, totlen);
  /src/sys/dev/ic/
sl811hs.c 3325 usb_hub_descriptor_t hubd; local in function:slhci_roothub_ctrl
3327 actlen = uimin(buflen, sizeof(hubd));
3328 memcpy(&hubd, buf, actlen);
3329 hubd.bHubContrCurrent =
3331 memcpy(buf, &hubd, actlen);

Completed in 27 milliseconds