Searched refs:irq_rman (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/sys/i386/include/
H A Dnexusvar.h41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
/freebsd-13-stable/sys/amd64/include/
H A Dnexusvar.h41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
/freebsd-13-stable/sys/dev/bhnd/cores/usb/
H A Dbhnd_usbvar.h47 struct rman irq_rman; member in struct:bhnd_usb_softc
/freebsd-13-stable/sys/mips/nlm/
H A Dxlp_simplebus.c104 static struct rman irq_rman, port_rman, mem_rman, pci_ecfg_rman, gbu_rman; variable in typeref:struct:rman
109 irq_rman.rm_start = 0;
110 irq_rman.rm_end = 255;
111 irq_rman.rm_type = RMAN_ARRAY;
112 irq_rman.rm_descr = "PCI Mapped Interrupts";
113 if (rman_init(&irq_rman)
114 || rman_manage_region(&irq_rman, 0, 255))
115 panic("xlp_simplebus_init_resources irq_rman");
219 rm = &irq_rman;
/freebsd-13-stable/sys/riscv/riscv/
H A Dnexus.c76 static struct rman irq_rman; variable in typeref:struct:rman
148 irq_rman.rm_start = 0;
149 irq_rman.rm_end = ~0;
150 irq_rman.rm_type = RMAN_ARRAY;
151 irq_rman.rm_descr = "Interrupts";
152 if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0))
153 panic("nexus_attach irq_rman");
229 rm = &irq_rman;
/freebsd-13-stable/sys/arm64/arm64/
H A Dnexus.c90 static struct rman irq_rman; variable in typeref:struct:rman
172 irq_rman.rm_start = 0;
173 irq_rman.rm_end = ~0;
174 irq_rman.rm_type = RMAN_ARRAY;
175 irq_rman.rm_descr = "Interrupts";
176 if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0))
177 panic("nexus_attach irq_rman");
249 rm = &irq_rman;
/freebsd-13-stable/sys/mips/cavium/
H A Dciu.c67 struct rman irq_rman; member in struct:ciu_softc
144 sc->irq_rman.rm_type = RMAN_ARRAY;
145 sc->irq_rman.rm_descr = "CIU IRQ";
147 error = rman_init(&sc->irq_rman);
154 error = rman_manage_region(&sc->irq_rman, CIU_IRQ_EN0_BEGIN,
198 res = rman_reserve_resource(&sc->irq_rman, start, end, count, flags,
H A Docteon_pmc.c53 struct rman irq_rman; member in struct:octeon_pmc_softc
/freebsd-13-stable/sys/mips/mips/
H A Dnexus.c93 static struct rman irq_rman; variable in typeref:struct:rman
182 irq_rman.rm_start = 0;
183 irq_rman.rm_end = NUM_MIPS_IRQS - 1;
184 irq_rman.rm_type = RMAN_ARRAY;
185 irq_rman.rm_descr = "Hardware IRQs";
186 if (rman_init(&irq_rman) != 0 ||
187 rman_manage_region(&irq_rman, 0, NUM_MIPS_IRQS - 1) != 0) {
188 panic("%s: irq_rman", __func__);
317 rm = &irq_rman;
/freebsd-13-stable/sys/arm/versatile/
H A Dversatile_pci.c128 struct rman irq_rman; member in struct:versatile_pci_softc
240 sc->irq_rman.rm_type = RMAN_ARRAY;
241 sc->irq_rman.rm_descr = "versatile PCI IRQs";
242 if (rman_init(&sc->irq_rman) != 0 ||
243 rman_manage_region(&sc->irq_rman, VERSATILE_PCI_IRQ_START,
/freebsd-13-stable/sys/x86/x86/
H A Dnexus.c93 struct rman irq_rman, drq_rman, port_rman, mem_rman; variable in typeref:struct:rman
230 irq_rman.rm_start = 0;
231 irq_rman.rm_type = RMAN_ARRAY;
232 irq_rman.rm_descr = "Interrupt request lines";
233 irq_rman.rm_end = num_io_irqs - 1;
234 if (rman_init(&irq_rman))
235 panic("nexus_init_resources irq_rman");
243 if (rman_manage_region(&irq_rman, irq, irq) != 0)
244 panic("nexus_init_resources irq_rman add");
356 return (&irq_rman);
[all...]

Completed in 97 milliseconds