Searched refs:port_rman (Results 1 - 6 of 6) 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/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:
117 port_rman.rm_type = RMAN_ARRAY;
118 port_rman.rm_descr = "I/O ports";
119 if (rman_init(&port_rman)
120 || rman_manage_region(&port_rman, PCIE_IO_BASE, PCIE_IO_LIMIT))
121 panic("xlp_simplebus_init_resources port_rman");
222 rm = &port_rman;
/freebsd-11-stable/sys/mips/sibyte/
H A Dsb_zbpci.c75 static struct rman port_rman; variable in typeref:struct:rman
103 port_rman.rm_start = 0;
104 port_rman.rm_end = PCI_IOSPACE_SIZE - 1;
105 port_rman.rm_type = RMAN_ARRAY;
106 port_rman.rm_descr = "PCI I/O ports";
107 if (rman_init(&port_rman) != 0 ||
108 rman_manage_region(&port_rman, 0, PCI_IOSPACE_SIZE - 1) != 0)
109 panic("%s: port_rman", __func__);
180 res = rman_reserve_resource(&port_rman, start, end, count,
/freebsd-11-stable/sys/mips/rmi/
H A Dxlr_pci.c114 static struct rman irq_rman, port_rman, mem_rman; variable in typeref:struct:
128 port_rman.rm_type = RMAN_ARRAY;
129 port_rman.rm_descr = "I/O ports";
130 if (rman_init(&port_rman)
131 || rman_manage_region(&port_rman, 0x10000000, 0x1fffffff))
132 panic("pci_init_resources port_rman");
528 rm = &port_rman;
/freebsd-11-stable/sys/x86/x86/
H A Dnexus.c92 struct rman irq_rman, drq_rman, port_rman, mem_rman; variable in typeref:struct:
266 port_rman.rm_start = 0;
267 port_rman.rm_end = 0xffff;
268 port_rman.rm_type = RMAN_ARRAY;
269 port_rman.rm_descr = "I/O ports";
270 if (rman_init(&port_rman)
271 || rman_manage_region(&port_rman, 0, 0xffff))
272 panic("nexus_init_resources port_rman");
364 return (&port_rman);

Completed in 172 milliseconds