Home
last modified time | relevance | path

Searched refs:gicd_nsacr (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/hw/intc/
H A Darm_gicv3_dist.c37 uint64_t raw_nsacr = s->gicd_nsacr[irq / 16 + 1]; in mask_nsacr_ge1()
39 raw_nsacr = raw_nsacr << 32 | s->gicd_nsacr[irq / 16]; in mask_nsacr_ge1()
47 uint64_t raw_nsacr = s->gicd_nsacr[irq / 16 + 1]; in mask_nsacr_ge2()
49 raw_nsacr = raw_nsacr << 32 | s->gicd_nsacr[irq / 16]; in mask_nsacr_ge2()
89 return extract32(s->gicd_nsacr[irq / 16], (irq % 16) * 2, 2); in gicd_ns_access()
563 *data = s->gicd_nsacr[irq / 16]; in gicd_readl()
774 s->gicd_nsacr[irq / 16] = value; in gicd_writel()
H A Darm_gicv3_common.c298 VMSTATE_UINT32_ARRAY(gicd_nsacr, GICv3State,
569 memset(s->gicd_nsacr, 0, sizeof(s->gicd_nsacr)); in arm_gicv3_common_reset_hold()
/openbmc/qemu/include/hw/intc/
H A Darm_gicv3_common.h268 uint32_t gicd_nsacr[DIV_ROUND_UP(GICV3_MAXIRQ, 16)]; member