/netbsd-src/sys/arch/epoc32/stand/e32boot/exe/ |
H A D | e32boot.cpp | 46 struct memmap { struct 50 struct memmap series5_4m[] = {{ 0xc0000000, 512 }, { 0xc0100000, 512 }, argument 54 struct memmap series5_8m[] = {{ 0xc0000000, 512 }, { 0xc0100000, 512 }, 62 struct memmap revo[] = {{ 0xc0000000, 4096 }, { 0xc0800000, 4096 }}; 63 struct memmap revopuls[] = {{ 0xc0000000, 4096 }, { 0xc0800000, 4096 }, 65 struct memmap series5mx_16m[] = {{ 0xc0000000, 8192 }, { 0xc1000000, 8192 }}; 66 struct memmap series5mxpro_24m[] = {{ 0xc0000000, 8192 }, { 0xc1000000, 8192 }, 68 struct memmap series5mxpro_32m[] = {{ 0xc0000000, 8192 }, { 0xc1000000, 8192 }, 70 struct memmap series7_16m[] = {{ 0xc0000000, 16384 }}; 71 struct memmap series7_32m[] = {{ 0xc0000000, 16384 }, { 0xc8000000, 16384 }}; [all …]
|
/netbsd-src/sys/arch/i386/stand/efiboot/ |
H A D | efimemory.c | 204 struct bi_memmap_entry *memmap; in efi_memory_get_memmap() local 215 memmap = alloc(sizeof(*memmap) * NoEntries); in efi_memory_get_memmap() 218 memmap[i].addr = md->PhysicalStart; in efi_memory_get_memmap() 219 memmap[i].size = md->NumberOfPages * EFI_PAGE_SIZE; in efi_memory_get_memmap() 220 memmap[i].type = getmemtype(md); in efi_memory_get_memmap() 225 *memmapp = memmap; in efi_memory_get_memmap()
|
H A D | efiboot.h | 95 int efi_memory_get_memmap(struct bi_memmap_entry **memmap, size_t *num);
|
H A D | efiboot.c | 145 memcpy(btinfo_efimemmap->memmap, desc, NoEntries * DescriptorSize); in efi_cleanup()
|
/netbsd-src/sys/arch/pmax/pmax/ |
H A D | machdep.h | 36 struct memmap; 45 int prom_getbitmap(struct memmap *);
|
H A D | machdep.c | 519 memmap *prom_memmap = (memmap *)first; in memsize_bitmap()
|
H A D | promcall.c | 235 prom_getbitmap(struct memmap *map) in prom_getbitmap()
|
/netbsd-src/sys/arch/hppa/stand/common/ |
H A D | pdc.c | 299 struct pdc_memmap memmap; in pdc_findev() local 309 if ((pdc)(PDC_MEMMAP, PDC_MEMMAP_HPA, &memmap, in pdc_findev() 316 memmap.hpa, memmap.morepages); in pdc_findev() 318 io = (struct iomod *) memmap.hpa; in pdc_findev()
|
/netbsd-src/sys/stand/efiboot/ |
H A D | efiboot.c | 122 EFI_MEMORY_DESCRIPTOR *memmap; in efi_cleanup() local 126 memmap = LibMemoryMap(&nentries, &mapkey, &descsize, &descver); in efi_cleanup() 135 efi_fdt_set_virtual_address_map(memmap, nentries, mapkey, descsize, descver); in efi_cleanup()
|
H A D | efifdt.c | 257 EFI_MEMORY_DESCRIPTOR *md, *memmap; in efi_fdt_memory_map() local 273 memmap = LibMemoryMap(&nentries, &mapkey, &descsize, &descver); in efi_fdt_memory_map() 274 for (n = 0, md = memmap; n < nentries; n++, md = NextMemoryDescriptor(md, descsize)) { in efi_fdt_memory_map() 280 fdt_appendprop_u32(fdt_data, chosen, "netbsd,uefi-memmap", md->Type); in efi_fdt_memory_map() 281 fdt_appendprop_u64(fdt_data, chosen, "netbsd,uefi-memmap", md->PhysicalStart); in efi_fdt_memory_map() 282 fdt_appendprop_u64(fdt_data, chosen, "netbsd,uefi-memmap", md->NumberOfPages); in efi_fdt_memory_map() 283 fdt_appendprop_u64(fdt_data, chosen, "netbsd,uefi-memmap", md->Attribute); in efi_fdt_memory_map() 748 efi_fdt_set_virtual_address_map(EFI_MEMORY_DESCRIPTOR *memmap, UINTN nentries, in arch_set_virtual_address_map() 762 for (n = 0, nrt = 0, vmd = vmemmap, md = memmap; in arch_set_virtual_address_map() 738 arch_set_virtual_address_map(EFI_MEMORY_DESCRIPTOR * memmap,UINTN nentries,UINTN mapkey,UINTN descsize,UINT32 descver) arch_set_virtual_address_map() argument
|
H A D | boot.c | 352 EFI_MEMORY_DESCRIPTOR *md, *memmap; in command_mem() local 359 memmap = LibMemoryMap(&nentries, &mapkey, &descsize, &descver); in command_mem() 360 for (n = 0, md = memmap; n < nentries; n++, md = NextMemoryDescriptor(md, descsize)) { in command_mem()
|
/netbsd-src/sys/arch/i386/stand/lib/ |
H A D | exec_multiboot2.c | 231 struct multiboot_tag_mmap *memmap; in multiboot2_info_dump() local 237 memmap = (struct multiboot_tag_mmap *)mbt; in multiboot2_info_dump() 238 entry_size = memmap->entry_size; in multiboot2_info_dump() 239 entry_version = memmap->entry_version; in multiboot2_info_dump() 587 struct bi_memmap_entry *memmap; in mbi_mmap() local 596 memmap = btinfo_memmap->entry; in mbi_mmap() 599 if (efi_memory_get_memmap(&memmap, &num) != 0) in mbi_mmap() 616 mbte[i].addr = memmap[i].addr; in mbi_mmap() 617 mbte[i].len = memmap[i].size; in mbi_mmap() 618 switch(memmap[i].type) { in mbi_mmap() [all …]
|
/netbsd-src/sys/arch/pmax/include/ |
H A D | dec_prom.h | 76 typedef struct memmap { struct 79 } memmap; argument 129 int (*_getbitmap)(memmap *); /* 84 */
|
/netbsd-src/sys/arch/ia64/stand/ia64/ski/ |
H A D | efi_stub.c | 184 struct efi_md *memmap) in SetVirtualAddressMap() argument 188 delta = memmap->md_virt - memmap->md_phys; in SetVirtualAddressMap()
|
/netbsd-src/sys/arch/x86/x86/ |
H A D | multiboot2.c | 644 memcpy(bie->memmap, mbt + 1, mbt->size - sizeof(*mbt)); in mbi_efi_mmap() 883 struct multiboot_tag_mmap *memmap; in multiboot2_print_info() local 888 memmap = (struct multiboot_tag_mmap *)mbt; in multiboot2_print_info() 889 entry_size = memmap->entry_size; in multiboot2_print_info() 890 entry_version = memmap->entry_version; in multiboot2_print_info()
|
H A D | x86_machdep.c | 882 struct xen_memory_map memmap; in x86_add_xen_clusters() local 889 memmap.nr_entries = 128; in x86_add_xen_clusters() 890 set_xen_guest_handle(memmap.buffer, &xen_mmap.bim.entry[0]); in x86_add_xen_clusters() 891 if ((err = HYPERVISOR_memory_op(XENMEM_memory_map, &memmap)) in x86_add_xen_clusters() 894 xen_mmap.bim.num = memmap.nr_entries; in x86_add_xen_clusters()
|
H A D | efi_machdep.c | 529 md = (struct efi_md *)(efimm->memmap + efimm->size * i); in efi_get_e820memmap() 642 struct efi_md *md = (void *)(efimm->memmap + efimm->size * i); in efi_runtime_init()
|
/netbsd-src/sys/arch/x86/include/ |
H A D | bootinfo.h | 250 uint8_t memmap[1]; /* whole memory descriptors */ member
|
/netbsd-src/sys/arch/ia64/stand/ia64/efi/ |
H A D | main.c | 195 COMMAND_SET(memmap, "memmap", "print memory map", command_memmap);
|
/netbsd-src/distrib/acorn32/stand/BtNetBSD/!BtNetBSD/ |
H A D | BtNetBSD | 620 REM map 1Mb from top of memory to bottom 1Mb of virt. memmap
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
H A D | msguniq-a.inp | 266 !\ -t\ tmpdir\ \ \ -\ temporary\ directory\ for\ memmap\n=
|
H A D | msguniq-a.out | 421 msgid " -t tmpdir - temporary directory for memmap\n"
|
H A D | msguniq-a.in | 425 msgid " -t tmpdir - temporary directory for memmap\n"
|
/netbsd-src/external/bsd/unbound/dist/doc/ |
H A D | Changelog | 4578 to make the struct easier to memmap by other applications,
|