/src/sys/arch/macppc/dev/ |
com_mainbus.c | 87 int interrupts[8]; local in function:com_mainbus_attach 96 (void)OF_getprop(serial, "interrupts", interrupts, sizeof(interrupts)); 111 intr_establish_xname(interrupts[0], IST_LEVEL, IPL_SERIAL, comintr, sc,
|
/src/sys/arch/arm/sunxi/ |
sunxi_nmi.c | 373 const u_int *interrupts; local in function:sunxi_nmi_attach 393 interrupts = fdtbus_get_prop(phandle, "interrupts", &len); 394 if (interrupts == NULL || len != 12 || 395 be32toh(interrupts[0]) != 0 /* GIC_SPI */ || 396 be32toh(interrupts[2]) != 4 /* IRQ_TYPE_LEVEL_HIGH */) { 400 sc->sc_intr_nmi = be32toh(interrupts[1]);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/ |
intel_guc.h | 42 } interrupts; member in struct:intel_guc 69 /* register used to send interrupts to the GuC FW */
|
/src/sys/arch/sparc64/dev/ |
pci_machdep.c | 407 * XXX: how does this deal with multiple interrupts for a device? 413 int interrupts[4], *intp, int_used; local in function:pci_intr_map 417 intp = &interrupts[0]; 418 len = prom_getproplen(node, "interrupts"); 419 if (len > sizeof(interrupts)) { 421 ("pci_intr_map: too many available interrupts\n")); 424 if (prom_getprop(node, "interrupts", len, 427 ("pci_intr_map: could not read interrupts\n")); 432 int_used = interrupts[0]; 466 /* panic("can't disestablish PCI interrupts yet"); * [all...] |
/src/sys/arch/arm/s3c2xx0/ |
s3c2800_pci.c | 642 /* clear all interrupts */ 686 uint32_t interrupts, errors; local in function:sspci_intr 688 interrupts = bus_space_read_4(iot, ioh, PCICTL_PCIINTST); 690 if (interrupts & PCIINT_INA) { 704 interrupts &= ~PCIINT_INA; 707 errors = interrupts & (PCIINT_SER | PCIINT_TPE | PCIINT_MPE | 721 /* acknowledge interrupts */ 722 bus_space_write_4(iot, ioh, PCICTL_PCIINTST, interrupts);
|
/src/sys/dev/ic/ |
smc91cxx.c | 533 /* Disable all interrupts. */ 581 /* Now, enable interrupts. */ 752 * Enable transmit interrupts and let the chip go. Set a watchdog 862 uint8_t mask, interrupts, status; local in function:smc91cxx_intr 880 interrupts = v & 0xff; 882 status = interrupts & mask; 888 /* It's ours; disable all interrupts while we process them. */ 891 /* Receive overrun interrupts. */ 897 /* Receive interrupts. */ 902 /* Memory allocation interrupts. * [all...] |