Home
last modified time | relevance | path

Searched refs:gpu_irq_enable (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/hw/intc/
H A Dbcm2835_ic.c52 set = (s->gpu_irq_level & s->gpu_irq_enable) in bcm2835_ic_update()
83 uint64_t gpu_pending = s->gpu_irq_level & s->gpu_irq_enable; in bcm2835_ic_read()
110 res = s->gpu_irq_enable; in bcm2835_ic_read()
113 res = s->gpu_irq_enable >> 32; in bcm2835_ic_read()
119 res = ~s->gpu_irq_enable; in bcm2835_ic_read()
122 res = ~s->gpu_irq_enable >> 32; in bcm2835_ic_read()
147 s->gpu_irq_enable |= val; in bcm2835_ic_write()
150 s->gpu_irq_enable |= val << 32; in bcm2835_ic_write()
156 s->gpu_irq_enable &= ~val; in bcm2835_ic_write()
159 s->gpu_irq_enable &= ~(val << 32); in bcm2835_ic_write()
[all …]
/openbmc/qemu/include/hw/intc/
H A Dbcm2835_ic.h30 uint64_t gpu_irq_level, gpu_irq_enable; member