Searched refs:mem_rman (Results 1 – 10 of 10) sorted by relevance
| /f-stack/freebsd/arm/arm/ |
| H A D | nexus.c | 81 static struct rman mem_rman; variable 169 mem_rman.rm_start = 0; in nexus_attach() 170 mem_rman.rm_end = BUS_SPACE_MAXADDR; in nexus_attach() 171 mem_rman.rm_type = RMAN_ARRAY; in nexus_attach() 172 mem_rman.rm_descr = "I/O memory addresses"; in nexus_attach() 173 if (rman_init(&mem_rman) || in nexus_attach() 174 rman_manage_region(&mem_rman, 0, BUS_SPACE_MAXADDR)) in nexus_attach() 234 rm = &mem_rman; in nexus_alloc_resource()
|
| /f-stack/freebsd/x86/x86/ |
| H A D | nexus.c | 93 struct rman irq_rman, drq_rman, port_rman, mem_rman; variable 274 mem_rman.rm_start = 0; in nexus_init_resources() 275 mem_rman.rm_end = cpu_getmaxphyaddr(); in nexus_init_resources() 276 mem_rman.rm_type = RMAN_ARRAY; in nexus_init_resources() 277 mem_rman.rm_descr = "I/O memory addresses"; in nexus_init_resources() 278 if (rman_init(&mem_rman) in nexus_init_resources() 279 || rman_manage_region(&mem_rman, 0, mem_rman.rm_end)) in nexus_init_resources() 362 return (&mem_rman); in nexus_rman() 810 if (smap->base > mem_rman.rm_end) in ram_attach() 840 if (p[0] > mem_rman.rm_end) in ram_attach() [all …]
|
| /f-stack/freebsd/mips/nlm/ |
| H A D | xlp_simplebus.c | 104 static struct rman irq_rman, port_rman, mem_rman, pci_ecfg_rman, gbu_rman; variable 123 mem_rman.rm_type = RMAN_ARRAY; in xlp_simplebus_init_resources() 124 mem_rman.rm_descr = "I/O memory"; in xlp_simplebus_init_resources() 125 if (rman_init(&mem_rman) in xlp_simplebus_init_resources() 126 || rman_manage_region(&mem_rman, PCIE_MEM_BASE, PCIE_MEM_LIMIT)) in xlp_simplebus_init_resources() 233 rm = &mem_rman; in xlp_simplebus_alloc_resource()
|
| /f-stack/freebsd/arm64/arm64/ |
| H A D | nexus.c | 89 static struct rman mem_rman; variable 162 mem_rman.rm_start = 0; in nexus_attach() 163 mem_rman.rm_end = BUS_SPACE_MAXADDR; in nexus_attach() 164 mem_rman.rm_type = RMAN_ARRAY; in nexus_attach() 165 mem_rman.rm_descr = "I/O memory addresses"; in nexus_attach() 166 if (rman_init(&mem_rman) || in nexus_attach() 167 rman_manage_region(&mem_rman, 0, BUS_SPACE_MAXADDR)) in nexus_attach() 251 rm = &mem_rman; in nexus_alloc_resource()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | nexus.c | 94 static struct rman mem_rman; variable 191 mem_rman.rm_start = 0; in nexus_probe() 192 mem_rman.rm_end = BUS_SPACE_MAXADDR; in nexus_probe() 193 mem_rman.rm_type = RMAN_ARRAY; in nexus_probe() 194 mem_rman.rm_descr = "Memory addresses"; in nexus_probe() 195 if (rman_init(&mem_rman) != 0 || in nexus_probe() 196 rman_manage_region(&mem_rman, 0, BUS_SPACE_MAXADDR) != 0) { in nexus_probe() 320 rm = &mem_rman; in nexus_alloc_resource()
|
| /f-stack/freebsd/arm/versatile/ |
| H A D | versatile_pci.c | 129 struct rman mem_rman; member 223 sc->mem_rman.rm_type = RMAN_ARRAY; in versatile_pci_attach() 224 sc->mem_rman.rm_descr = "versatile PCI memory window"; in versatile_pci_attach() 225 if (rman_init(&sc->mem_rman) != 0 || in versatile_pci_attach() 226 rman_manage_region(&sc->mem_rman, PCI_NPREFETCH_WINDOW, in versatile_pci_attach() 327 rm = &sc->mem_rman; in versatile_pci_alloc_resource()
|
| /f-stack/freebsd/amd64/include/ |
| H A D | nexusvar.h | 41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
|
| /f-stack/freebsd/i386/include/ |
| H A D | nexusvar.h | 41 extern struct rman irq_rman, drq_rman, port_rman, mem_rman;
|
| /f-stack/freebsd/arm64/cavium/ |
| H A D | thunder_pcie_pem.c | 721 return (&sc->mem_rman); in thunder_pem_rman() 816 sc->mem_rman.rm_type = RMAN_ARRAY; in thunder_pem_attach() 817 sc->mem_rman.rm_descr = "PEM PCIe Memory"; in thunder_pem_attach() 818 error = rman_init(&sc->mem_rman); in thunder_pem_attach() 869 rman_fini(&sc->mem_rman); in thunder_pem_attach() 894 rman_fini(&sc->mem_rman); in thunder_pem_attach() 908 rman_fini(&sc->mem_rman); in thunder_pem_release_all()
|
| H A D | thunder_pcie_pem.h | 44 struct rman mem_rman; member
|