Lines Matching defs:word
80 unsigned int word)
82 return (0 * intc->n_words + word) * sizeof(u32);
86 unsigned int word)
88 return (1 * intc->n_words + word) * sizeof(u32);
92 unsigned int word)
94 return (2 * intc->n_words + word) * sizeof(u32);
98 unsigned int word)
100 return (3 * intc->n_words + word) * sizeof(u32);
154 u32 word = d->hwirq / IRQS_PER_WORD;
157 intc->cpus[cpu_idx]->mask_cache[word] &= ~mask;
159 reg_mask_clr(intc, word));
165 u32 word = d->hwirq / IRQS_PER_WORD;
168 intc->cpus[cpu_idx]->mask_cache[word] |= mask;
170 reg_mask_set(intc, word));
201 u32 word = hw / IRQS_PER_WORD;
208 was_disabled = !!(intc->cpus[intc->affinity[hw]]->mask_cache[word] &
298 int boot_cpu, word;
309 for (word = 0; word < intc->n_words; word++) {
310 val = intc->wake_mask[word] | intc->irq_fwd_mask[word];
312 intc->cpus[boot_cpu]->map_base + reg_mask_set(intc, word));
314 intc->cpus[boot_cpu]->map_base + reg_mask_clr(intc, word));
324 int boot_cpu, word;
333 for (word = 0; word < intc->n_words; word++) {
334 l1_writel(intc->cpus[boot_cpu]->mask_cache[word],
335 intc->cpus[boot_cpu]->map_base + reg_mask_set(intc, word));
336 l1_writel(~intc->cpus[boot_cpu]->mask_cache[word],
337 intc->cpus[boot_cpu]->map_base + reg_mask_clr(intc, word));
351 u32 word = d->hwirq / IRQS_PER_WORD;
356 intc->wake_mask[word] |= mask;
358 intc->wake_mask[word] &= ~mask;
382 u32 word = hw_irq / IRQS_PER_WORD;
384 if (intc->irq_fwd_mask[word] & mask)