Lines Matching full:ct
40 struct irq_chip_type *ct = irq_data_get_chip_type(d);
44 irq_reg_writel(gc, mask, ct->regs.disable);
45 *ct->mask_cache &= ~mask;
60 struct irq_chip_type *ct = irq_data_get_chip_type(d);
64 *ct->mask_cache |= mask;
65 irq_reg_writel(gc, *ct->mask_cache, ct->regs.mask);
80 struct irq_chip_type *ct = irq_data_get_chip_type(d);
84 *ct->mask_cache &= ~mask;
85 irq_reg_writel(gc, *ct->mask_cache, ct->regs.mask);
100 struct irq_chip_type *ct = irq_data_get_chip_type(d);
104 irq_reg_writel(gc, mask, ct->regs.enable);
105 *ct->mask_cache |= mask;
117 struct irq_chip_type *ct = irq_data_get_chip_type(d);
121 irq_reg_writel(gc, mask, ct->regs.ack);
133 struct irq_chip_type *ct = irq_data_get_chip_type(d);
137 irq_reg_writel(gc, mask, ct->regs.ack);
156 struct irq_chip_type *ct = irq_data_get_chip_type(d);
160 irq_reg_writel(gc, mask, ct->regs.disable);
161 *ct->mask_cache &= ~mask;
162 irq_reg_writel(gc, mask, ct->regs.ack);
174 struct irq_chip_type *ct = irq_data_get_chip_type(d);
178 irq_reg_writel(gc, mask, ct->regs.eoi);
223 struct irq_chip_type *ct = gc->chip_types;
231 ct[i].chip.name = name;
264 struct irq_chip_type *ct = gc->chip_types;
265 u32 *mskptr = &gc->mask_cache, mskreg = ct->regs.mask;
270 mskptr = &ct[i].mask_cache_priv;
271 mskreg = ct[i].regs.mask;
273 ct[i].mask_cache = mskptr;
460 struct irq_chip_type *ct;
477 ct = gc->chip_types;
478 chip = &ct->chip;
499 irq_domain_set_info(d, virq, hw_irq, chip, gc, ct->handler, NULL, NULL);
547 struct irq_chip_type *ct = gc->chip_types;
548 struct irq_chip *chip = &ct->chip;
573 irq_set_chip_and_handler(i, chip, ct->handler);
591 struct irq_chip_type *ct = gc->chip_types;
594 for (i = 0; i < gc->num_ct; i++, ct++) {
595 if (ct->type & type) {
596 d->chip = &ct->chip;
597 irq_data_to_desc(d)->handle_irq = ct->handler;
673 struct irq_chip_type *ct = gc->chip_types;
675 if (ct->chip.irq_suspend) {
679 ct->chip.irq_suspend(data);
693 struct irq_chip_type *ct = gc->chip_types;
698 if (ct->chip.irq_resume) {
702 ct->chip.irq_resume(data);
716 struct irq_chip_type *ct = gc->chip_types;
718 if (ct->chip.irq_pm_shutdown) {
722 ct->chip.irq_pm_shutdown(data);