Symbol: XHCI_MAX_DEVS
usr/src/cmd/bhyve/common/pci_xhci.c
2204
if (port > XHCI_MAX_DEVS) {
usr/src/cmd/bhyve/common/pci_xhci.c
2518
value = ((XHCI_MAX_DEVS/2) << 8) | sc->usb2_port_start;
usr/src/cmd/bhyve/common/pci_xhci.c
2532
value = ((XHCI_MAX_DEVS/2) << 8) | sc->usb3_port_start;
usr/src/cmd/bhyve/common/pci_xhci.c
2599
assert(portn <= XHCI_MAX_DEVS);
usr/src/cmd/bhyve/common/pci_xhci.c
2794
sc->devices = calloc(XHCI_MAX_DEVS, sizeof(struct pci_xhci_dev_emu *));
usr/src/cmd/bhyve/common/pci_xhci.c
2805
if (usb2_port == ((sc->usb2_port_start) + XHCI_MAX_DEVS / 2) ||
usr/src/cmd/bhyve/common/pci_xhci.c
2806
usb3_port == ((sc->usb3_port_start) + XHCI_MAX_DEVS / 2)) {
usr/src/cmd/bhyve/common/pci_xhci.c
2808
"devices reached, max %d", XHCI_MAX_DEVS / 2));
usr/src/cmd/bhyve/common/pci_xhci.c
2868
XHCI_MAX_DEVS / 2) {
usr/src/cmd/bhyve/common/pci_xhci.c
2870
"reached, max %d", XHCI_MAX_DEVS / 2));
usr/src/cmd/bhyve/common/pci_xhci.c
2879
XHCI_MAX_DEVS / 2) {
usr/src/cmd/bhyve/common/pci_xhci.c
2881
"reached, max %d", XHCI_MAX_DEVS / 2));
usr/src/cmd/bhyve/common/pci_xhci.c
2904
sc->portregs = calloc(XHCI_MAX_DEVS, sizeof(struct pci_xhci_portregs));
usr/src/cmd/bhyve/common/pci_xhci.c
2907
for (i = 1; i <= XHCI_MAX_DEVS; i++) {
usr/src/cmd/bhyve/common/pci_xhci.c
2916
for (i = 1; i <= XHCI_MAX_DEVS; i++) {
usr/src/cmd/bhyve/common/pci_xhci.c
2949
sc->usb2_port_start = (XHCI_MAX_DEVS/2) + 1;
usr/src/cmd/bhyve/common/pci_xhci.c
2961
sc->hcsparams1 = XHCI_SET_HCSP1_MAXPORTS(XHCI_MAX_DEVS) |
usr/src/cmd/bhyve/common/pci_xhci.c
2974
XHCI_MAX_DEVS * sizeof(struct pci_xhci_portregs));
usr/src/cmd/bhyve/common/pci_xhci.c
388
for (i = 1; i <= XHCI_MAX_DEVS; i++) {
usr/src/cmd/bhyve/common/pci_xhci.c
462
if (port > XHCI_MAX_DEVS) {