Home
last modified time | relevance | path

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

/src/sys/amd64/vmm/io/
H A Dvhpet.c400 uint32_t allowed_irqs; in vhpet_timer_update_config() local
427 allowed_irqs = vhpet->timer[n].cap_config >> 32; in vhpet_timer_update_config()
429 if (new_pin != 0 && (allowed_irqs & (1 << new_pin)) == 0) { in vhpet_timer_update_config()
431 "allowed_irqs 0x%08x", n, new_pin, allowed_irqs); in vhpet_timer_update_config()
708 uint64_t allowed_irqs; in vhpet_init() local
721 allowed_irqs = 0xff000000; /* irqs 24-31 */ in vhpet_init()
723 allowed_irqs = 0xf << (pincount - 4); /* 4 upper irqs */ in vhpet_init()
725 allowed_irqs = 0; in vhpet_init()
731 vhpet->timer[i].cap_config = allowed_irqs << 32; in vhpet_init()
/src/sys/dev/acpica/
H A Dacpi_hpet.c82 uint32_t allowed_irqs; member
617 sc->allowed_irqs = 0xffff0000; in hpet_attach()
627 sc->allowed_irqs = 0x00000000; in hpet_attach()
633 sc->allowed_irqs = 0x00000000; in hpet_attach()
640 sc->allowed_irqs = 0x00000000; in hpet_attach()
647 sc->allowed_irqs = 0x00000000; in hpet_attach()
650 "allowed_irqs", &sc->allowed_irqs); in hpet_attach()
660 cvectors = sc->allowed_irqs & 0xffff0000; in hpet_attach()
661 dvectors = sc->allowed_irqs & 0x0000ffff; in hpet_attach()