Searched refs:portsc (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/dev/usb/xhci/
H A Dxhci-root-hub.c124 static void print_portsc(int port, uint32_t portsc) { argument
126 if (portsc & PORTSC_CCS) zxlogf(SPEW, " CCS");
127 if (portsc & PORTSC_PED) zxlogf(SPEW, " PED");
128 if (portsc & PORTSC_OCA) zxlogf(SPEW, " OCA");
129 if (portsc & PORTSC_PR) zxlogf(SPEW, " PR");
130 uint32_t pls = (portsc >> PORTSC_PLS_START) & ((1 << PORTSC_PLS_BITS) - 1);
175 if (portsc & PORTSC_PP) zxlogf(SPEW, " PP");
176 uint32_t speed = (portsc >> PORTSC_SPEED_START) & ((1 << PORTSC_SPEED_BITS) - 1);
191 uint32_t pic = (portsc >> PORTSC_PIC_START) & ((1 << PORTSC_PIC_BITS) - 1);
193 if (portsc
211 volatile uint32_t* portsc = &xhci->op_regs->port_regs[rh_port_index].portsc; local
307 uint32_t portsc = XHCI_READ32(&port_regs[i].portsc); local
509 uint32_t portsc = XHCI_READ32(&port_regs[i].portsc); local
[all...]
H A Dxhci-hw.h46 uint32_t portsc; // Port Status and Control member in struct:__anon531

Completed in 30 milliseconds