Searched refs:port_rman (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/sys/amd64/include/
H A Dnexusvar.h41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
/freebsd-9.3-release/sys/i386/include/
H A Dnexusvar.h41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
/freebsd-9.3-release/sys/mips/mips/
H A Dmainbus.c65 static struct rman irq_rman, port_rman, mem_rman; variable in typeref:struct:
141 port_rman.rm_start = 0;
142 port_rman.rm_end = 0xffff;
143 port_rman.rm_type = RMAN_ARRAY;
144 port_rman.rm_descr = "I/O ports";
145 if (rman_init(&port_rman) || rman_manage_region(&port_rman, 0, 0xffff))
146 panic("mainbus_probe port_rman");
210 rm = &port_rman;
/freebsd-9.3-release/sys/ia64/ia64/
H A Dnexus.c80 static struct rman irq_rman, port_rman, mem_rman; variable in typeref:struct:
171 port_rman.rm_start = 0;
172 port_rman.rm_end = 0xffff;
173 port_rman.rm_type = RMAN_ARRAY;
174 port_rman.rm_descr = "I/O ports";
175 if (rman_init(&port_rman)
176 || rman_manage_region(&port_rman, 0, 0xffff))
177 panic("nexus_probe port_rman");
251 return (&port_rman);
/freebsd-9.3-release/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_start = 0;
129 port_rman.rm_end = ~0ul;
130 port_rman.rm_type = RMAN_ARRAY;
131 port_rman.rm_descr = "I/O ports";
132 if (rman_init(&port_rman)
133 || rman_manage_region(&port_rman, 0x10000000, 0x1fffffff))
134 panic("pci_init_resources port_rman");
532 rm = &port_rman;
/freebsd-9.3-release/sys/mips/sibyte/
H A Dsb_zbpci.c76 static struct rman port_rman; variable in typeref:struct:rman
104 port_rman.rm_start = 0;
105 port_rman.rm_end = PCI_IOSPACE_SIZE - 1;
106 port_rman.rm_type = RMAN_ARRAY;
107 port_rman.rm_descr = "PCI I/O ports";
108 if (rman_init(&port_rman) != 0 ||
109 rman_manage_region(&port_rman, 0, PCI_IOSPACE_SIZE - 1) != 0)
110 panic("%s: port_rman", __func__);
181 res = rman_reserve_resource(&port_rman, start, end, count,
/freebsd-9.3-release/sys/mips/nlm/
H A Dxlp_pci.c75 static struct rman irq_rman, port_rman, mem_rman, emul_rman; variable in typeref:struct:
89 port_rman.rm_start = 0;
90 port_rman.rm_end = ~0ul;
91 port_rman.rm_type = RMAN_ARRAY;
92 port_rman.rm_descr = "I/O ports";
93 if (rman_init(&port_rman)
94 || rman_manage_region(&port_rman, 0x14000000UL, 0x15ffffffUL))
95 panic("pci_init_resources port_rman");
537 rm = &port_rman;
/freebsd-9.3-release/sys/x86/x86/
H A Dnexus.c93 struct rman irq_rman, drq_rman, port_rman, mem_rman; variable in typeref:struct:
253 port_rman.rm_start = 0;
254 port_rman.rm_end = 0xffff;
255 port_rman.rm_type = RMAN_ARRAY;
256 port_rman.rm_descr = "I/O ports";
257 if (rman_init(&port_rman)
258 || rman_manage_region(&port_rman, 0, 0xffff))
259 panic("nexus_init_resources port_rman");
347 return (&port_rman);

Completed in 95 milliseconds