Home
last modified time | relevance | path

Searched refs:e820_type (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/arch/x86/include/asm/e820/
H A Dapi.h13 extern bool e820__mapped_raw_any(u64 start, u64 end, enum e820_type type);
14 extern bool e820__mapped_any(u64 start, u64 end, enum e820_type type);
15 extern bool e820__mapped_all(u64 start, u64 end, enum e820_type type);
17 extern void e820__range_add (u64 start, u64 size, enum e820_type type);
18 extern u64 e820__range_update(u64 start, u64 size, enum e820_type old_type, enum e820_type new_typ…
19 extern u64 e820__range_remove(u64 start, u64 size, enum e820_type old_type, bool check_type);
H A Dtypes.h10 enum e820_type { enum
58 enum e820_type type;
/openbmc/u-boot/arch/x86/cpu/efi/
H A Dpayload.c183 __u32 e820_type; in install_e820_map() local
205 e820_type = E820_RAM; in install_e820_map()
214 e820_type = E820_RESERVED; in install_e820_map()
218 e820_type = E820_ACPI; in install_e820_map()
222 e820_type = E820_NVS; in install_e820_map()
226 e820_type = E820_UNUSABLE; in install_e820_map()
235 if (last_entry != NULL && last_entry->type == e820_type && in install_e820_map()
246 entries[num_entries].type = e820_type; in install_e820_map()
/openbmc/linux/arch/x86/kernel/
H A De820.c78 u64 start, u64 end, enum e820_type type) in _e820__mapped_any()
94 bool e820__mapped_raw_any(u64 start, u64 end, enum e820_type type) in e820__mapped_raw_any()
100 bool e820__mapped_any(u64 start, u64 end, enum e820_type type) in e820__mapped_any()
113 enum e820_type type) in __e820__mapped_all()
187 static void __init e820_print_type(enum e820_type type) in e820_print_type()
308 static bool e820_nomerge(enum e820_type type) in e820_nomerge()
326 enum e820_type current_type, last_type; in e820__update_table()
463 …update(struct e820_table *table, u64 start, u64 size, enum e820_type old_type, enum e820_type new_… in __e820__range_update()
530 u64 __init e820__range_update(u64 start, u64 size, enum e820_type old_type, enum e820_type new_type) in e820__range_update()
535 … __init e820__range_update_kexec(u64 start, u64 size, enum e820_type old_type, enum e820_type new… in e820__range_update_kexec()
[all …]
/openbmc/linux/arch/x86/platform/efi/
H A Defi.c131 int e820_type; in do_add_efi_memmap() local
141 e820_type = E820_TYPE_SOFT_RESERVED; in do_add_efi_memmap()
143 e820_type = E820_TYPE_RAM; in do_add_efi_memmap()
145 e820_type = E820_TYPE_RESERVED; in do_add_efi_memmap()
148 e820_type = E820_TYPE_ACPI; in do_add_efi_memmap()
151 e820_type = E820_TYPE_NVS; in do_add_efi_memmap()
154 e820_type = E820_TYPE_UNUSABLE; in do_add_efi_memmap()
157 e820_type = E820_TYPE_PMEM; in do_add_efi_memmap()
165 e820_type = E820_TYPE_RESERVED; in do_add_efi_memmap()
169 e820__range_add(start, size, e820_type); in do_add_efi_memmap()
/openbmc/linux/drivers/firmware/efi/libstub/
H A Dx86-stub.c551 unsigned int e820_type = 0; in setup_e820() local
566 e820_type = E820_TYPE_RESERVED; in setup_e820()
570 e820_type = E820_TYPE_UNUSABLE; in setup_e820()
574 e820_type = E820_TYPE_ACPI; in setup_e820()
584 e820_type = E820_TYPE_SOFT_RESERVED; in setup_e820()
586 e820_type = E820_TYPE_RAM; in setup_e820()
590 e820_type = E820_TYPE_NVS; in setup_e820()
594 e820_type = E820_TYPE_PMEM; in setup_e820()
600 e820_type = E820_TYPE_RAM; in setup_e820()
609 if (prev && prev->type == e820_type && in setup_e820()
[all …]
/openbmc/linux/arch/x86/pci/
H A Dmmconfig-shared.c429 static bool is_acpi_reserved(u64 start, u64 end, enum e820_type not_used) in is_acpi_reserved()
446 static bool is_efi_mmio(u64 start, u64 end, enum e820_type not_used) in is_efi_mmio()
472 typedef bool (*check_reserved_t)(u64 start, u64 end, enum e820_type type);