Lines Matching refs:mask
34 u32 mask; in mask_gt641xx_irq() local
37 mask = GT_READ(GT_INTRMASK_OFS); in mask_gt641xx_irq()
38 mask &= ~GT641XX_IRQ_TO_BIT(d->irq); in mask_gt641xx_irq()
39 GT_WRITE(GT_INTRMASK_OFS, mask); in mask_gt641xx_irq()
46 u32 cause, mask; in mask_ack_gt641xx_irq() local
49 mask = GT_READ(GT_INTRMASK_OFS); in mask_ack_gt641xx_irq()
50 mask &= ~GT641XX_IRQ_TO_BIT(d->irq); in mask_ack_gt641xx_irq()
51 GT_WRITE(GT_INTRMASK_OFS, mask); in mask_ack_gt641xx_irq()
62 u32 mask; in unmask_gt641xx_irq() local
65 mask = GT_READ(GT_INTRMASK_OFS); in unmask_gt641xx_irq()
66 mask |= GT641XX_IRQ_TO_BIT(d->irq); in unmask_gt641xx_irq()
67 GT_WRITE(GT_INTRMASK_OFS, mask); in unmask_gt641xx_irq()
81 u32 cause, mask; in gt641xx_irq_dispatch() local
85 mask = GT_READ(GT_INTRMASK_OFS); in gt641xx_irq_dispatch()
86 cause &= mask; in gt641xx_irq_dispatch()