Searched refs:irq_rman (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/arm/arm/ |
H A D | nexus.c | 77 static struct rman irq_rman; variable 174 irq_rman.rm_start = 0; in nexus_attach() 175 irq_rman.rm_end = ~0; in nexus_attach() 176 irq_rman.rm_type = RMAN_ARRAY; in nexus_attach() 177 irq_rman.rm_descr = "Interrupts"; in nexus_attach() 178 if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0)) in nexus_attach() 227 return (&irq_rman); in nexus_get_rman()
|
/freebsd/sys/riscv/riscv/ |
H A D | nexus.c | 74 static struct rman irq_rman; variable 159 irq_rman.rm_start = 0; in nexus_attach() 160 irq_rman.rm_end = ~0; in nexus_attach() 161 irq_rman.rm_type = RMAN_ARRAY; in nexus_attach() 162 irq_rman.rm_descr = "Interrupts"; in nexus_attach() 163 if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0)) in nexus_attach() 215 return (&irq_rman); in nexus_get_rman()
|
/freebsd/sys/arm64/arm64/ |
H A D | nexus.c | 90 static struct rman irq_rman; variable 173 irq_rman.rm_start = 0; in nexus_attach() 174 irq_rman.rm_end = ~0; in nexus_attach() 175 irq_rman.rm_type = RMAN_ARRAY; in nexus_attach() 176 irq_rman.rm_descr = "Interrupts"; in nexus_attach() 177 if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0)) in nexus_attach() 222 return (&irq_rman); in nexus_get_rman()
|
/freebsd/sys/x86/x86/ |
H A D | nexus.c | 88 struct rman irq_rman, drq_rman, port_rman, mem_rman; variable 205 irq_rman.rm_start = 0; in nexus_init_resources() 206 irq_rman.rm_type = RMAN_ARRAY; in nexus_init_resources() 207 irq_rman.rm_descr = "Interrupt request lines"; in nexus_init_resources() 208 irq_rman.rm_end = num_io_irqs - 1; in nexus_init_resources() 209 if (rman_init(&irq_rman)) in nexus_init_resources() 218 if (rman_manage_region(&irq_rman, irq, irq) != 0) in nexus_init_resources() 331 return (&irq_rman); in nexus_get_rman() 580 if (rman_manage_region(&irq_rman, irq, irq) != 0) in nexus_add_irq()
|
/freebsd/sys/amd64/include/ |
H A D | nexusvar.h | 39 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
|
/freebsd/sys/i386/include/ |
H A D | nexusvar.h | 39 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
|