Searched refs:boot_params_ptr (Results 1 – 10 of 10) sorted by relevance
/linux-6.12.1/arch/x86/boot/compressed/ |
D | misc.c | 49 struct boot_params *boot_params_ptr; variable 136 x = boot_params_ptr->screen_info.orig_x; in __putstr() 137 y = boot_params_ptr->screen_info.orig_y; in __putstr() 158 boot_params_ptr->screen_info.orig_x = x; in __putstr() 159 boot_params_ptr->screen_info.orig_y = y; in __putstr() 413 boot_params_ptr = rmode; in extract_kernel() 416 boot_params_ptr->hdr.loadflags &= ~KASLR_FLAG; in extract_kernel() 418 parse_mem_encrypt(&boot_params_ptr->hdr); in extract_kernel() 420 sanitize_boot_params(boot_params_ptr); in extract_kernel() 422 if (boot_params_ptr->screen_info.orig_video_mode == 7) { in extract_kernel() [all …]
|
D | acpi.c | 35 rsdp_addr = efi_find_vendor_table(boot_params_ptr, cfg_tbl_pa, cfg_tbl_len, in __efi_get_rsdp_addr() 41 rsdp_addr = efi_find_vendor_table(boot_params_ptr, cfg_tbl_pa, cfg_tbl_len, in __efi_get_rsdp_addr() 61 et = efi_get_type(boot_params_ptr); in efi_get_rsdp_addr() 65 systab_pa = efi_get_system_table(boot_params_ptr); in efi_get_rsdp_addr() 69 ret = efi_get_conf_table(boot_params_ptr, &cfg_tbl_pa, &cfg_tbl_len); in efi_get_rsdp_addr() 161 pa = boot_params_ptr->acpi_rsdp_addr; in get_rsdp_addr() 215 boot_params_ptr->acpi_rsdp_addr; in get_acpi_srat_table()
|
D | kaslr.c | 66 hash = rotate_xor(hash, boot_params_ptr, sizeof(*boot_params_ptr)); in get_boot_seed() 361 unsigned long init_size = boot_params_ptr->hdr.init_size; in mem_avoid_init() 373 initrd_start = (u64)boot_params_ptr->ext_ramdisk_image << 32; in mem_avoid_init() 374 initrd_start |= boot_params_ptr->hdr.ramdisk_image; in mem_avoid_init() 375 initrd_size = (u64)boot_params_ptr->ext_ramdisk_size << 32; in mem_avoid_init() 376 initrd_size |= boot_params_ptr->hdr.ramdisk_size; in mem_avoid_init() 391 mem_avoid[MEM_AVOID_BOOTPARAMS].start = (unsigned long)boot_params_ptr; in mem_avoid_init() 392 mem_avoid[MEM_AVOID_BOOTPARAMS].size = sizeof(*boot_params_ptr); in mem_avoid_init() 425 ptr = (struct setup_data *)(unsigned long)boot_params_ptr->hdr.setup_data; in mem_avoid_overlap() 684 struct efi_info *e = &boot_params_ptr->efi_info; in process_efi_entries() [all …]
|
D | pgtable_64.c | 52 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() 110 boot_params_ptr = bp; in configure_5level_paging()
|
D | mem.c | 57 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()
|
D | cmdline.c | 19 unsigned long cmd_line_ptr = boot_params_ptr->hdr.cmd_line_ptr; in get_cmd_line_ptr() 21 cmd_line_ptr |= (u64)boot_params_ptr->ext_cmd_line_ptr << 32; in get_cmd_line_ptr()
|
D | ident_map_64.c | 162 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()
|
D | sev.c | 673 unsigned long cc_info_pa = boot_params_ptr->cc_blob_address; in sev_prep_identity_maps()
|
/linux-6.12.1/arch/x86/include/asm/ |
D | boot.h | 85 extern struct boot_params *boot_params_ptr;
|
/linux-6.12.1/drivers/firmware/efi/libstub/ |
D | x86-stub.c | 905 boot_params_ptr->hdr.loadflags |= KASLR_FLAG; in efi_decompress_kernel() 950 boot_params_ptr = boot_params; in efi_stub_entry()
|