Lines Matching refs:portsc
2552 static inline const char *xhci_portsc_link_state_string(u32 portsc)
2554 switch (portsc & PORT_PLS_MASK) {
2587 static inline const char *xhci_decode_portsc(char *str, u32 portsc)
2592 portsc & PORT_POWER ? "Powered" : "Powered-off",
2593 portsc & PORT_CONNECT ? "Connected" : "Not-connected",
2594 portsc & PORT_PE ? "Enabled" : "Disabled",
2595 xhci_portsc_link_state_string(portsc),
2596 DEV_PORT_SPEED(portsc));
2598 if (portsc & PORT_OC)
2600 if (portsc & PORT_RESET)
2604 if (portsc & PORT_CSC)
2606 if (portsc & PORT_PEC)
2608 if (portsc & PORT_WRC)
2610 if (portsc & PORT_OCC)
2612 if (portsc & PORT_RC)
2614 if (portsc & PORT_PLC)
2616 if (portsc & PORT_CEC)
2618 if (portsc & PORT_CAS)
2622 if (portsc & PORT_WKCONN_E)
2624 if (portsc & PORT_WKDISC_E)
2626 if (portsc & PORT_WKOC_E)