Lines Matching refs:stat
95 static u32 tsi148_LM_irqhandler(struct tsi148_driver *bridge, u32 stat)
101 if (stat & TSI148_LCSR_INTS_LMS[i]) {
116 static u32 tsi148_MB_irqhandler(struct vme_bridge *tsi148_bridge, u32 stat)
126 if (stat & TSI148_LCSR_INTS_MBS[i]) {
215 u32 stat)
223 if (stat & (1 << i)) {
246 u32 stat, enable, serviced = 0;
256 stat = ioread32be(bridge->base + TSI148_LCSR_INTS);
259 stat &= enable;
261 if (unlikely(!stat))
266 if (stat & (TSI148_LCSR_INTS_DMA1S | TSI148_LCSR_INTS_DMA0S))
267 serviced |= tsi148_DMA_irqhandler(bridge, stat);
270 if (stat & (TSI148_LCSR_INTS_LM3S | TSI148_LCSR_INTS_LM2S |
272 serviced |= tsi148_LM_irqhandler(bridge, stat);
275 if (stat & (TSI148_LCSR_INTS_MB3S | TSI148_LCSR_INTS_MB2S |
277 serviced |= tsi148_MB_irqhandler(tsi148_bridge, stat);
280 if (stat & TSI148_LCSR_INTS_PERRS)
284 if (stat & TSI148_LCSR_INTS_VERRS)
288 if (stat & TSI148_LCSR_INTS_IACKS)
292 if (stat & (TSI148_LCSR_INTS_IRQ7S | TSI148_LCSR_INTS_IRQ6S |
296 serviced |= tsi148_VIRQ_irqhandler(tsi148_bridge, stat);