Lines Matching refs:portsc
2584 static inline const char *xhci_portsc_link_state_string(u32 portsc)
2586 switch (portsc & PORT_PLS_MASK) {
2619 static inline const char *xhci_decode_portsc(char *str, u32 portsc)
2624 portsc & PORT_POWER ? "Powered" : "Powered-off",
2625 portsc & PORT_CONNECT ? "Connected" : "Not-connected",
2626 portsc & PORT_PE ? "Enabled" : "Disabled",
2627 xhci_portsc_link_state_string(portsc),
2628 DEV_PORT_SPEED(portsc));
2630 if (portsc & PORT_OC)
2632 if (portsc & PORT_RESET)
2636 if (portsc & PORT_CSC)
2638 if (portsc & PORT_PEC)
2640 if (portsc & PORT_WRC)
2642 if (portsc & PORT_OCC)
2644 if (portsc & PORT_RC)
2646 if (portsc & PORT_PLC)
2648 if (portsc & PORT_CEC)
2650 if (portsc & PORT_CAS)
2654 if (portsc & PORT_WKCONN_E)
2656 if (portsc & PORT_WKDISC_E)
2658 if (portsc & PORT_WKOC_E)