Searched refs:port_stat (Results 1 – 2 of 2) sorted by relevance
827 static inline void mtip_process_legacy(struct driver_data *dd, u32 port_stat) in mtip_process_legacy() argument847 static inline void mtip_process_errors(struct driver_data *dd, u32 port_stat) in mtip_process_errors() argument850 if (unlikely(port_stat & PORT_IRQ_CONNECT)) { in mtip_process_errors()856 if (unlikely(port_stat & PORT_IRQ_PHYRDY)) { in mtip_process_errors()862 if (unlikely(port_stat & ~PORT_IRQ_HANDLED)) { in mtip_process_errors()865 (port_stat & ~PORT_IRQ_HANDLED)); in mtip_process_errors()869 if (likely(port_stat & (PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR))) { in mtip_process_errors()879 u32 hba_stat, port_stat; in mtip_handle_irq() local889 port_stat = readl(port->mmio + PORT_IRQ_STAT); in mtip_handle_irq()890 if (unlikely(port_stat == 0xFFFFFFFF)) { in mtip_handle_irq()[all …]
99 u32 port_stat; /* USB_PORT_STAT_xxx */ member153 #define usbhsh_port_stat_init(h) ((h)->port_stat = 0)154 #define usbhsh_port_stat_set(h, s) ((h)->port_stat |= (s))155 #define usbhsh_port_stat_clear(h, s) ((h)->port_stat &= ~(s))156 #define usbhsh_port_stat_get(h) ((h)->port_stat)