Home
last modified time | relevance | path

Searched refs:boot_params_ptr (Results 1 – 11 of 11) sorted by relevance

/openbmc/linux/arch/x86/boot/compressed/
H A Dmisc.c49 struct boot_params *boot_params_ptr; variable
135 x = boot_params_ptr->screen_info.orig_x; in __putstr()
136 y = boot_params_ptr->screen_info.orig_y; in __putstr()
157 boot_params_ptr->screen_info.orig_x = x; in __putstr()
158 boot_params_ptr->screen_info.orig_y = y; in __putstr()
399 boot_params_ptr = rmode; in extract_kernel()
402 boot_params_ptr->hdr.loadflags &= ~KASLR_FLAG; in extract_kernel()
404 parse_mem_encrypt(&boot_params_ptr->hdr); in extract_kernel()
406 sanitize_boot_params(boot_params_ptr); in extract_kernel()
408 if (boot_params_ptr->screen_info.orig_video_mode == 7) { in extract_kernel()
[all …]
H A Dacpi.c33 rsdp_addr = efi_find_vendor_table(boot_params_ptr, cfg_tbl_pa, cfg_tbl_len, in __efi_get_rsdp_addr()
39 rsdp_addr = efi_find_vendor_table(boot_params_ptr, cfg_tbl_pa, cfg_tbl_len, in __efi_get_rsdp_addr()
59 et = efi_get_type(boot_params_ptr); in efi_get_rsdp_addr()
63 systab_pa = efi_get_system_table(boot_params_ptr); in efi_get_rsdp_addr()
67 ret = efi_get_conf_table(boot_params_ptr, &cfg_tbl_pa, &cfg_tbl_len); in efi_get_rsdp_addr()
159 pa = boot_params_ptr->acpi_rsdp_addr; in get_rsdp_addr()
213 boot_params_ptr->acpi_rsdp_addr; in get_acpi_srat_table()
H A Dkaslr.c66 hash = rotate_xor(hash, boot_params_ptr, sizeof(*boot_params_ptr)); in get_boot_seed()
386 unsigned long init_size = boot_params_ptr->hdr.init_size; in mem_avoid_init()
398 initrd_start = (u64)boot_params_ptr->ext_ramdisk_image << 32; in mem_avoid_init()
399 initrd_start |= boot_params_ptr->hdr.ramdisk_image; in mem_avoid_init()
400 initrd_size = (u64)boot_params_ptr->ext_ramdisk_size << 32; in mem_avoid_init()
401 initrd_size |= boot_params_ptr->hdr.ramdisk_size; in mem_avoid_init()
416 mem_avoid[MEM_AVOID_BOOTPARAMS].start = (unsigned long)boot_params_ptr; in mem_avoid_init()
417 mem_avoid[MEM_AVOID_BOOTPARAMS].size = sizeof(*boot_params_ptr); in mem_avoid_init()
450 ptr = (struct setup_data *)(unsigned long)boot_params_ptr->hdr.setup_data; in mem_avoid_overlap()
709 struct efi_info *e = &boot_params_ptr->efi_info; in process_efi_entries()
[all …]
H A Dpgtable_64.c52 signature = (char *)&boot_params_ptr->efi_info.efi_loader_signature; in find_trampoline_placement()
68 for (i = boot_params_ptr->e820_entries - 1; i >= 0; i--) { in find_trampoline_placement()
71 entry = &boot_params_ptr->e820_table[i]; in find_trampoline_placement()
111 boot_params_ptr = bp; in configure_5level_paging()
H A Dmem.c57 et = efi_get_type(boot_params_ptr); in init_unaccepted_memory()
61 ret = efi_get_conf_table(boot_params_ptr, &cfg_table_pa, &cfg_table_len); in init_unaccepted_memory()
67 table = (void *)efi_find_vendor_table(boot_params_ptr, cfg_table_pa, in init_unaccepted_memory()
H A Dcmdline.c17 unsigned long cmd_line_ptr = boot_params_ptr->hdr.cmd_line_ptr; in get_cmd_line_ptr()
19 cmd_line_ptr |= (u64)boot_params_ptr->ext_cmd_line_ptr << 32; in get_cmd_line_ptr()
H A Dident_map_64.c162 boot_params_ptr = rmode; in initialize_identity_maps()
163 kernel_add_identity_map((unsigned long)boot_params_ptr, in initialize_identity_maps()
164 (unsigned long)(boot_params_ptr + 1)); in initialize_identity_maps()
172 sd = (struct setup_data *)boot_params_ptr->hdr.setup_data; in initialize_identity_maps()
H A Dsev.c621 unsigned long cc_info_pa = boot_params_ptr->cc_blob_address; in sev_prep_identity_maps()
/openbmc/linux/arch/x86/include/asm/
H A Dboot.h90 extern struct boot_params *boot_params_ptr;
/openbmc/u-boot/common/spl/
H A Dspl.c41 u32 *boot_params_ptr = NULL; variable
/openbmc/linux/drivers/firmware/efi/libstub/
H A Dx86-stub.c886 boot_params_ptr = boot_params; in efi_stub_entry()