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
2856
XHCI_MAX_DEVS / 2) {
usr/src/cmd/bhyve/common/pci_xhci.c
2858
"reached, max %d", XHCI_MAX_DEVS / 2));
usr/src/cmd/bhyve/common/pci_xhci.c
2865
XHCI_MAX_DEVS / 2) {
usr/src/cmd/bhyve/common/pci_xhci.c
2867
"reached, max %d", XHCI_MAX_DEVS / 2));
usr/src/cmd/bhyve/common/pci_xhci.c
2889
sc->portregs = calloc(XHCI_MAX_DEVS, sizeof(struct pci_xhci_portregs));
usr/src/cmd/bhyve/common/pci_xhci.c
2892
for (i = 1; i <= XHCI_MAX_DEVS; i++) {
usr/src/cmd/bhyve/common/pci_xhci.c
2901
for (i = 1; i <= XHCI_MAX_DEVS; i++) {
usr/src/cmd/bhyve/common/pci_xhci.c
2932
sc->usb2_port_start = (XHCI_MAX_DEVS/2) + 1;
usr/src/cmd/bhyve/common/pci_xhci.c
2944
sc->hcsparams1 = XHCI_SET_HCSP1_MAXPORTS(XHCI_MAX_DEVS) |
usr/src/cmd/bhyve/common/pci_xhci.c
2957
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) {