Lines Matching refs:mask
47 u32 mask; in mask_gt641xx_irq() local
50 mask = GT_READ(GT_INTRMASK_OFS); in mask_gt641xx_irq()
51 mask &= ~GT641XX_IRQ_TO_BIT(d->irq); in mask_gt641xx_irq()
52 GT_WRITE(GT_INTRMASK_OFS, mask); in mask_gt641xx_irq()
59 u32 cause, mask; in mask_ack_gt641xx_irq() local
62 mask = GT_READ(GT_INTRMASK_OFS); in mask_ack_gt641xx_irq()
63 mask &= ~GT641XX_IRQ_TO_BIT(d->irq); in mask_ack_gt641xx_irq()
64 GT_WRITE(GT_INTRMASK_OFS, mask); in mask_ack_gt641xx_irq()
75 u32 mask; in unmask_gt641xx_irq() local
78 mask = GT_READ(GT_INTRMASK_OFS); in unmask_gt641xx_irq()
79 mask |= GT641XX_IRQ_TO_BIT(d->irq); in unmask_gt641xx_irq()
80 GT_WRITE(GT_INTRMASK_OFS, mask); in unmask_gt641xx_irq()
94 u32 cause, mask; in gt641xx_irq_dispatch() local
98 mask = GT_READ(GT_INTRMASK_OFS); in gt641xx_irq_dispatch()
99 cause &= mask; in gt641xx_irq_dispatch()