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

/freebsd-11-stable/sys/amd64/include/
H A Dnexusvar.h41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
/freebsd-11-stable/sys/i386/include/
H A Dnexusvar.h41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
/freebsd-11-stable/sys/riscv/riscv/
H A Dnexus.c79 static struct rman irq_rman; variable in typeref:struct:rman
152 irq_rman.rm_start = 0;
153 irq_rman.rm_end = ~0;
154 irq_rman.rm_type = RMAN_ARRAY;
155 irq_rman.rm_descr = "Interrupts";
156 if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0))
157 panic("nexus_attach irq_rman");
232 rm = &irq_rman;
/freebsd-11-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-11-stable/sys/mips/rmi/
H A Dxlr_pci.c114 static struct rman irq_rman, port_rman, mem_rman; variable in typeref:struct:rman
120 irq_rman.rm_start = 0;
121 irq_rman.rm_end = 255;
122 irq_rman.rm_type = RMAN_ARRAY;
123 irq_rman.rm_descr = "PCI Mapped Interrupts";
124 if (rman_init(&irq_rman)
125 || rman_manage_region(&irq_rman, 0, 255))
126 panic("pci_init_resources irq_rman");
524 rm = &irq_rman;
/freebsd-11-stable/sys/arm64/arm64/
H A Dnexus.c87 static struct rman irq_rman; variable in typeref:struct:rman
166 irq_rman.rm_start = 0;
167 irq_rman.rm_end = ~0;
168 irq_rman.rm_type = RMAN_ARRAY;
169 irq_rman.rm_descr = "Interrupts";
170 if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0))
171 panic("nexus_attach irq_rman");
244 rm = &irq_rman;
/freebsd-11-stable/sys/mips/cavium/
H A Dciu.c65 struct rman irq_rman; member in struct:ciu_softc
142 sc->irq_rman.rm_type = RMAN_ARRAY;
143 sc->irq_rman.rm_descr = "CIU IRQ";
145 error = rman_init(&sc->irq_rman);
152 error = rman_manage_region(&sc->irq_rman, CIU_IRQ_EN0_BEGIN,
196 res = rman_reserve_resource(&sc->irq_rman, start, end, count, flags,
H A Docteon_pmc.c51 struct rman irq_rman; member in struct:octeon_pmc_softc
/freebsd-11-stable/sys/mips/mips/
H A Dnexus.c89 static struct rman irq_rman; variable in typeref:struct:rman
179 irq_rman.rm_start = 0;
180 irq_rman.rm_end = NUM_MIPS_IRQS - 1;
181 irq_rman.rm_type = RMAN_ARRAY;
182 irq_rman.rm_descr = "Hardware IRQs";
183 if (rman_init(&irq_rman) != 0 ||
184 rman_manage_region(&irq_rman, 0, NUM_MIPS_IRQS - 1) != 0) {
185 panic("%s: irq_rman", __func__);
308 rm = &irq_rman;
/freebsd-11-stable/sys/arm/versatile/
H A Dversatile_pci.c127 struct rman irq_rman; member in struct:versatile_pci_softc
239 sc->irq_rman.rm_type = RMAN_ARRAY;
240 sc->irq_rman.rm_descr = "versatile PCI IRQs";
241 if (rman_init(&sc->irq_rman) != 0 ||
242 rman_manage_region(&sc->irq_rman, VERSATILE_PCI_IRQ_START,
/freebsd-11-stable/sys/x86/x86/
H A Dnexus.c92 struct rman irq_rman, drq_rman, port_rman, mem_rman; variable in typeref:struct:rman
226 irq_rman.rm_start = 0;
227 irq_rman.rm_type = RMAN_ARRAY;
228 irq_rman.rm_descr = "Interrupt request lines";
229 irq_rman.rm_end = num_io_irqs - 1;
230 if (rman_init(&irq_rman))
231 panic("nexus_init_resources irq_rman");
239 if (rman_manage_region(&irq_rman, irq, irq) != 0)
240 panic("nexus_init_resources irq_rman add");
360 return (&irq_rman);
[all...]

Completed in 95 milliseconds