boot_params        68 arch/mips/loongson64/common/env.c 	struct boot_params *boot_p;
boot_params        75 arch/mips/loongson64/common/env.c 	boot_p = (struct boot_params *)fw_arg2;
boot_params        45 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg        = oreg.ax;
boot_params        46 arch/x86/boot/apm.c 	boot_params.apm_bios_info.offset      = oreg.ebx;
boot_params        47 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg_16     = oreg.cx;
boot_params        48 arch/x86/boot/apm.c 	boot_params.apm_bios_info.dseg        = oreg.dx;
boot_params        49 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg_len    = oreg.si;
boot_params        50 arch/x86/boot/apm.c 	boot_params.apm_bios_info.cseg_16_len = oreg.hsi;
boot_params        51 arch/x86/boot/apm.c 	boot_params.apm_bios_info.dseg_len    = oreg.di;
boot_params        69 arch/x86/boot/apm.c 	boot_params.apm_bios_info.version = oreg.ax;
boot_params        70 arch/x86/boot/apm.c 	boot_params.apm_bios_info.flags   = oreg.cx;
boot_params        34 arch/x86/boot/boot.h extern struct boot_params boot_params;
boot_params       274 arch/x86/boot/boot.h 	unsigned long cmd_line_ptr = boot_params.hdr.cmd_line_ptr;
boot_params       284 arch/x86/boot/boot.h 	unsigned long cmd_line_ptr = boot_params.hdr.cmd_line_ptr;
boot_params        74 arch/x86/boot/compressed/acpi.c 	pa_data = boot_params->hdr.setup_data;
boot_params       101 arch/x86/boot/compressed/acpi.c 	ei = &boot_params->efi_info;
boot_params       128 arch/x86/boot/compressed/acpi.c 	ei = &boot_params->efi_info;
boot_params       257 arch/x86/boot/compressed/acpi.c 	pa = boot_params->acpi_rsdp_addr;
boot_params       320 arch/x86/boot/compressed/acpi.c 			boot_params->acpi_rsdp_addr;
boot_params        17 arch/x86/boot/compressed/cmdline.c 	unsigned long cmd_line_ptr = boot_params->hdr.cmd_line_ptr;
boot_params        19 arch/x86/boot/compressed/cmdline.c 	cmd_line_ptr |= (u64)boot_params->ext_cmd_line_ptr << 32;
boot_params       130 arch/x86/boot/compressed/eboot.c static void setup_efi_pci(struct boot_params *params)
boot_params       195 arch/x86/boot/compressed/eboot.c static void retrieve_apple_device_properties(struct boot_params *boot_params)
boot_params       235 arch/x86/boot/compressed/eboot.c 	data = (struct setup_data *)(unsigned long)boot_params->hdr.setup_data;
boot_params       237 arch/x86/boot/compressed/eboot.c 		boot_params->hdr.setup_data = (unsigned long)new;
boot_params       247 arch/x86/boot/compressed/eboot.c static void setup_quirks(struct boot_params *boot_params)
boot_params       254 arch/x86/boot/compressed/eboot.c 			retrieve_apple_device_properties(boot_params);
boot_params       344 arch/x86/boot/compressed/eboot.c void setup_graphics(struct boot_params *boot_params)
boot_params       354 arch/x86/boot/compressed/eboot.c 	si = &boot_params->screen_info;
boot_params       382 arch/x86/boot/compressed/eboot.c struct boot_params *make_boot_params(struct efi_config *c)
boot_params       384 arch/x86/boot/compressed/eboot.c 	struct boot_params *boot_params;
boot_params       417 arch/x86/boot/compressed/eboot.c 			       (unsigned long *)&boot_params);
boot_params       423 arch/x86/boot/compressed/eboot.c 	memset(boot_params, 0x0, 0x4000);
boot_params       425 arch/x86/boot/compressed/eboot.c 	hdr = &boot_params->hdr;
boot_params       426 arch/x86/boot/compressed/eboot.c 	bi = &boot_params->apm_bios_info;
boot_params       448 arch/x86/boot/compressed/eboot.c 	boot_params->ext_cmd_line_ptr = (u64)(unsigned long)cmdline_ptr >> 32;
boot_params       478 arch/x86/boot/compressed/eboot.c 	boot_params->ext_ramdisk_image = (u64)ramdisk_addr >> 32;
boot_params       479 arch/x86/boot/compressed/eboot.c 	boot_params->ext_ramdisk_size  = (u64)ramdisk_size >> 32;
boot_params       481 arch/x86/boot/compressed/eboot.c 	return boot_params;
boot_params       486 arch/x86/boot/compressed/eboot.c 	efi_free(sys_table, 0x4000, (unsigned long)boot_params);
boot_params       491 arch/x86/boot/compressed/eboot.c static void add_e820ext(struct boot_params *params,
boot_params       512 arch/x86/boot/compressed/eboot.c setup_e820(struct boot_params *params, struct setup_data *e820ext, u32 e820ext_size)
boot_params       632 arch/x86/boot/compressed/eboot.c static efi_status_t allocate_e820(struct boot_params *params,
boot_params       667 arch/x86/boot/compressed/eboot.c 	struct boot_params	*boot_params;
boot_params       696 arch/x86/boot/compressed/eboot.c static efi_status_t exit_boot(struct boot_params *boot_params, void *handle)
boot_params       713 arch/x86/boot/compressed/eboot.c 	priv.boot_params	= boot_params;
boot_params       714 arch/x86/boot/compressed/eboot.c 	priv.efi		= &boot_params->efi_info;
boot_params       716 arch/x86/boot/compressed/eboot.c 	status = allocate_e820(boot_params, &e820ext, &e820ext_size);
boot_params       727 arch/x86/boot/compressed/eboot.c 	boot_params->alt_mem_k	= 32 * 1024;
boot_params       729 arch/x86/boot/compressed/eboot.c 	status = setup_e820(boot_params, e820ext, e820ext_size);
boot_params       740 arch/x86/boot/compressed/eboot.c struct boot_params *
boot_params       741 arch/x86/boot/compressed/eboot.c efi_main(struct efi_config *c, struct boot_params *boot_params)
boot_params       744 arch/x86/boot/compressed/eboot.c 	struct setup_header *hdr = &boot_params->hdr;
boot_params       773 arch/x86/boot/compressed/eboot.c 			 ((u64)boot_params->ext_cmd_line_ptr << 32));
boot_params       780 arch/x86/boot/compressed/eboot.c 	if (boot_params->secure_boot == efi_secureboot_mode_unset)
boot_params       781 arch/x86/boot/compressed/eboot.c 		boot_params->secure_boot = efi_get_secureboot(sys_table);
boot_params       787 arch/x86/boot/compressed/eboot.c 	setup_graphics(boot_params);
boot_params       789 arch/x86/boot/compressed/eboot.c 	setup_efi_pci(boot_params);
boot_params       791 arch/x86/boot/compressed/eboot.c 	setup_quirks(boot_params);
boot_params       828 arch/x86/boot/compressed/eboot.c 	status = exit_boot(boot_params, handle);
boot_params       921 arch/x86/boot/compressed/eboot.c 	return boot_params;
boot_params        82 arch/x86/boot/compressed/kaslr.c 	hash = rotate_xor(hash, boot_params, sizeof(*boot_params));
boot_params       372 arch/x86/boot/compressed/kaslr.c 	unsigned long init_size = boot_params->hdr.init_size;
boot_params       387 arch/x86/boot/compressed/kaslr.c 	initrd_start  = (u64)boot_params->ext_ramdisk_image << 32;
boot_params       388 arch/x86/boot/compressed/kaslr.c 	initrd_start |= boot_params->hdr.ramdisk_image;
boot_params       389 arch/x86/boot/compressed/kaslr.c 	initrd_size  = (u64)boot_params->ext_ramdisk_size << 32;
boot_params       390 arch/x86/boot/compressed/kaslr.c 	initrd_size |= boot_params->hdr.ramdisk_size;
boot_params       396 arch/x86/boot/compressed/kaslr.c 	cmd_line  = (u64)boot_params->ext_cmd_line_ptr << 32;
boot_params       397 arch/x86/boot/compressed/kaslr.c 	cmd_line |= boot_params->hdr.cmd_line_ptr;
boot_params       408 arch/x86/boot/compressed/kaslr.c 	mem_avoid[MEM_AVOID_BOOTPARAMS].start = (unsigned long)boot_params;
boot_params       409 arch/x86/boot/compressed/kaslr.c 	mem_avoid[MEM_AVOID_BOOTPARAMS].size = sizeof(*boot_params);
boot_params       449 arch/x86/boot/compressed/kaslr.c 	ptr = (struct setup_data *)(unsigned long)boot_params->hdr.setup_data;
boot_params       712 arch/x86/boot/compressed/kaslr.c 	struct efi_info *e = &boot_params->efi_info;
boot_params       790 arch/x86/boot/compressed/kaslr.c 	for (i = 0; i < boot_params->e820_entries; i++) {
boot_params       791 arch/x86/boot/compressed/kaslr.c 		entry = &boot_params->e820_table[i];
boot_params       869 arch/x86/boot/compressed/kaslr.c 	boot_params->hdr.loadflags |= KASLR_FLAG;
boot_params        48 arch/x86/boot/compressed/misc.c struct boot_params *boot_params;
boot_params       125 arch/x86/boot/compressed/misc.c 	x = boot_params->screen_info.orig_x;
boot_params       126 arch/x86/boot/compressed/misc.c 	y = boot_params->screen_info.orig_y;
boot_params       147 arch/x86/boot/compressed/misc.c 	boot_params->screen_info.orig_x = x;
boot_params       148 arch/x86/boot/compressed/misc.c 	boot_params->screen_info.orig_y = y;
boot_params       351 arch/x86/boot/compressed/misc.c 	boot_params = rmode;
boot_params       354 arch/x86/boot/compressed/misc.c 	boot_params->hdr.loadflags &= ~KASLR_FLAG;
boot_params       356 arch/x86/boot/compressed/misc.c 	sanitize_boot_params(boot_params);
boot_params       358 arch/x86/boot/compressed/misc.c 	if (boot_params->screen_info.orig_video_mode == 7) {
boot_params       366 arch/x86/boot/compressed/misc.c 	lines = boot_params->screen_info.orig_video_lines;
boot_params       367 arch/x86/boot/compressed/misc.c 	cols = boot_params->screen_info.orig_video_cols;
boot_params       376 arch/x86/boot/compressed/misc.c 	boot_params->acpi_rsdp_addr = get_rsdp_addr();
boot_params        42 arch/x86/boot/compressed/misc.h extern struct boot_params *boot_params;
boot_params        37 arch/x86/boot/compressed/pgtable_64.c extern struct boot_params *boot_params;
boot_params        58 arch/x86/boot/compressed/pgtable_64.c 	signature = (char *)&boot_params->efi_info.efi_loader_signature;
boot_params        74 arch/x86/boot/compressed/pgtable_64.c 	for (i = boot_params->e820_entries - 1; i >= 0; i--) {
boot_params        77 arch/x86/boot/compressed/pgtable_64.c 		entry = &boot_params->e820_table[i];
boot_params       115 arch/x86/boot/compressed/pgtable_64.c 	boot_params = rmode;
boot_params        57 arch/x86/boot/edd.c 	if (!(boot_params.hdr.loadflags & CAN_USE_HEAP))
boot_params        59 arch/x86/boot/edd.c 	if (mbrbuf_end > (char *)(size_t)boot_params.hdr.heap_end_ptr)
boot_params       147 arch/x86/boot/edd.c 	edp    = boot_params.eddbuf;
boot_params       148 arch/x86/boot/edd.c 	mbrptr = boot_params.edd_mbr_sig_buffer;
boot_params       166 arch/x86/boot/edd.c 		    && boot_params.eddbuf_entries < EDDMAXNR) {
boot_params       169 arch/x86/boot/edd.c 			boot_params.eddbuf_entries++;
boot_params       173 arch/x86/boot/edd.c 			boot_params.edd_mbr_sig_buf_entries = devno-0x80+1;
boot_params        18 arch/x86/boot/main.c struct boot_params boot_params __attribute__((aligned(16)));
boot_params        38 arch/x86/boot/main.c 	BUILD_BUG_ON(sizeof(boot_params) != 4096);
boot_params        39 arch/x86/boot/main.c 	memcpy(&boot_params.hdr, &hdr, sizeof(hdr));
boot_params        41 arch/x86/boot/main.c 	if (!boot_params.hdr.cmd_line_ptr &&
boot_params        49 arch/x86/boot/main.c 		if (oldcmd->cl_offset < boot_params.hdr.setup_move_size)
boot_params        54 arch/x86/boot/main.c 		boot_params.hdr.cmd_line_ptr =
boot_params        71 arch/x86/boot/main.c 	boot_params.kbd_status = oreg.al;
boot_params        94 arch/x86/boot/main.c 	boot_params.ist_info.signature  = oreg.eax;
boot_params        95 arch/x86/boot/main.c 	boot_params.ist_info.command    = oreg.ebx;
boot_params        96 arch/x86/boot/main.c 	boot_params.ist_info.event      = oreg.ecx;
boot_params        97 arch/x86/boot/main.c 	boot_params.ist_info.perf_level = oreg.edx;
boot_params       119 arch/x86/boot/main.c 	if (boot_params.hdr.loadflags & CAN_USE_HEAP) {
boot_params       124 arch/x86/boot/main.c 			((size_t)boot_params.hdr.heap_end_ptr + 0x200);
boot_params        22 arch/x86/boot/memory.c 	struct boot_e820_entry *desc = boot_params.e820_table;
boot_params        67 arch/x86/boot/memory.c 	} while (ireg.ebx && count < ARRAY_SIZE(boot_params.e820_table));
boot_params        69 arch/x86/boot/memory.c 	boot_params.e820_entries = count;
boot_params        92 arch/x86/boot/memory.c 		boot_params.alt_mem_k = (oreg.bx << 6) + oreg.ax;
boot_params       101 arch/x86/boot/memory.c 		boot_params.alt_mem_k = oreg.ax;
boot_params       113 arch/x86/boot/memory.c 	boot_params.screen_info.ext_mem_k = oreg.ax;
boot_params        22 arch/x86/boot/pm.c 	if (boot_params.hdr.realmode_swtch) {
boot_params        24 arch/x86/boot/pm.c 			     : : "m" (boot_params.hdr.realmode_swtch)
boot_params       122 arch/x86/boot/pm.c 	protected_mode_jump(boot_params.hdr.code32_start,
boot_params       123 arch/x86/boot/pm.c 			    (u32)&boot_params + (ds() << 4));
boot_params        50 arch/x86/boot/video-bios.c 	if (new_mode != boot_params.screen_info.orig_video_mode) {
boot_params        54 arch/x86/boot/video-bios.c 		ireg.ax = boot_params.screen_info.orig_video_mode;
boot_params        67 arch/x86/boot/video-bios.c 	u8 saved_mode = boot_params.screen_info.orig_video_mode;
boot_params       168 arch/x86/boot/video-mode.c 	boot_params.hdr.vid_mode = real_mode;
boot_params       177 arch/x86/boot/video-vesa.c 	boot_params.screen_info.red_size   = dac_size;
boot_params       178 arch/x86/boot/video-vesa.c 	boot_params.screen_info.green_size = dac_size;
boot_params       179 arch/x86/boot/video-vesa.c 	boot_params.screen_info.blue_size  = dac_size;
boot_params       180 arch/x86/boot/video-vesa.c 	boot_params.screen_info.rsvd_size  = dac_size;
boot_params       182 arch/x86/boot/video-vesa.c 	boot_params.screen_info.red_pos    = 0;
boot_params       183 arch/x86/boot/video-vesa.c 	boot_params.screen_info.green_pos  = 0;
boot_params       184 arch/x86/boot/video-vesa.c 	boot_params.screen_info.blue_pos   = 0;
boot_params       185 arch/x86/boot/video-vesa.c 	boot_params.screen_info.rsvd_pos   = 0;
boot_params       200 arch/x86/boot/video-vesa.c 	boot_params.screen_info.vesapm_seg = oreg.es;
boot_params       201 arch/x86/boot/video-vesa.c 	boot_params.screen_info.vesapm_off = oreg.di;
boot_params       210 arch/x86/boot/video-vesa.c 	boot_params.screen_info.orig_video_isVGA = VIDEO_TYPE_VLFB;
boot_params       213 arch/x86/boot/video-vesa.c 	boot_params.screen_info.vesa_attributes = vminfo.mode_attr;
boot_params       214 arch/x86/boot/video-vesa.c 	boot_params.screen_info.lfb_linelength = vminfo.logical_scan;
boot_params       215 arch/x86/boot/video-vesa.c 	boot_params.screen_info.lfb_width = vminfo.h_res;
boot_params       216 arch/x86/boot/video-vesa.c 	boot_params.screen_info.lfb_height = vminfo.v_res;
boot_params       217 arch/x86/boot/video-vesa.c 	boot_params.screen_info.lfb_depth = vminfo.bpp;
boot_params       218 arch/x86/boot/video-vesa.c 	boot_params.screen_info.pages = vminfo.image_planes;
boot_params       219 arch/x86/boot/video-vesa.c 	boot_params.screen_info.lfb_base = vminfo.lfb_ptr;
boot_params       220 arch/x86/boot/video-vesa.c 	memcpy(&boot_params.screen_info.red_size,
boot_params       224 arch/x86/boot/video-vesa.c 	boot_params.screen_info.lfb_size = vginfo.total_memory;
boot_params       242 arch/x86/boot/video-vesa.c 	memset(&boot_params.edid_info, 0x13, sizeof(boot_params.edid_info));
boot_params       265 arch/x86/boot/video-vesa.c 	ireg.di =(size_t)&boot_params.edid_info; /* (ES:)Pointer to block */
boot_params       256 arch/x86/boot/video-vga.c 	boot_params.screen_info.orig_video_ega_bx = oreg.bx;
boot_params       268 arch/x86/boot/video-vga.c 			boot_params.screen_info.orig_video_isVGA = 1;
boot_params        30 arch/x86/boot/video.c 	boot_params.screen_info.orig_x = oreg.dl;
boot_params        31 arch/x86/boot/video.c 	boot_params.screen_info.orig_y = oreg.dh;
boot_params        34 arch/x86/boot/video.c 		boot_params.screen_info.flags |= VIDEO_FLAGS_NOCURSOR;
boot_params        37 arch/x86/boot/video.c 		boot_params.screen_info.flags |= VIDEO_FLAGS_NOCURSOR;
boot_params        51 arch/x86/boot/video.c 	boot_params.screen_info.orig_video_mode = oreg.al & 0x7f;
boot_params        52 arch/x86/boot/video.c 	boot_params.screen_info.orig_video_page = oreg.bh;
boot_params        74 arch/x86/boot/video.c 	if (boot_params.screen_info.orig_video_mode == 0x07) {
boot_params        84 arch/x86/boot/video.c 	boot_params.screen_info.orig_video_points = font_size;
boot_params        94 arch/x86/boot/video.c 	boot_params.screen_info.orig_video_cols  = x;
boot_params        95 arch/x86/boot/video.c 	boot_params.screen_info.orig_video_lines = y;
boot_params       242 arch/x86/boot/video.c 	saved.x = boot_params.screen_info.orig_video_cols;
boot_params       243 arch/x86/boot/video.c 	saved.y = boot_params.screen_info.orig_video_lines;
boot_params       244 arch/x86/boot/video.c 	saved.curx = boot_params.screen_info.orig_x;
boot_params       245 arch/x86/boot/video.c 	saved.cury = boot_params.screen_info.orig_y;
boot_params       259 arch/x86/boot/video.c 	int xs = boot_params.screen_info.orig_video_cols;
boot_params       260 arch/x86/boot/video.c 	int ys = boot_params.screen_info.orig_video_lines;
boot_params       319 arch/x86/boot/video.c 	u16 mode = boot_params.hdr.vid_mode;
boot_params       337 arch/x86/boot/video.c 	boot_params.hdr.vid_mode = mode;
boot_params        26 arch/x86/include/asm/bootparam_utils.h 		.start = offsetof(struct boot_params, struct_member),	\
boot_params        27 arch/x86/include/asm/bootparam_utils.h 		.len   = sizeof_mbr(struct boot_params, struct_member),	\
boot_params        35 arch/x86/include/asm/bootparam_utils.h static void sanitize_boot_params(struct boot_params *boot_params)
boot_params        51 arch/x86/include/asm/bootparam_utils.h 	if (boot_params->sentinel) {
boot_params        52 arch/x86/include/asm/bootparam_utils.h 		static struct boot_params scratch;
boot_params        53 arch/x86/include/asm/bootparam_utils.h 		char *bp_base = (char *)boot_params;
boot_params        86 arch/x86/include/asm/bootparam_utils.h 		memcpy(boot_params, save_base, sizeof(*boot_params));
boot_params        10 arch/x86/include/asm/crash.h 		struct boot_params *params);
boot_params        15 arch/x86/include/asm/kbdleds.h 	return boot_params.kbd_status & 0x20 ? (1 << VC_NUMLOCK) : 0;
boot_params        40 arch/x86/include/asm/mem_encrypt.h void __init sme_encrypt_kernel(struct boot_params *bp);
boot_params        41 arch/x86/include/asm/mem_encrypt.h void __init sme_enable(struct boot_params *bp);
boot_params        69 arch/x86/include/asm/mem_encrypt.h static inline void __init sme_encrypt_kernel(struct boot_params *bp) { }
boot_params        70 arch/x86/include/asm/mem_encrypt.h static inline void __init sme_enable(struct boot_params *bp) { }
boot_params        49 arch/x86/include/asm/setup.h extern unsigned long __startup_64(unsigned long physaddr, struct boot_params *bp);
boot_params        73 arch/x86/include/asm/setup.h extern struct boot_params boot_params;
boot_params        78 arch/x86/include/asm/setup.h 	return !!(boot_params.hdr.loadflags & KASLR_FLAG);
boot_params      1765 arch/x86/kernel/acpi/boot.c 	boot_params.acpi_rsdp_addr = addr;
boot_params      1770 arch/x86/kernel/acpi/boot.c 	return boot_params.acpi_rsdp_addr;
boot_params        83 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_scratch, boot_params, scratch);
boot_params        84 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_secure_boot, boot_params, secure_boot);
boot_params        85 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_loadflags, boot_params, hdr.loadflags);
boot_params        86 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_hardware_subarch, boot_params, hdr.hardware_subarch);
boot_params        87 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_version, boot_params, hdr.version);
boot_params        88 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_kernel_alignment, boot_params, hdr.kernel_alignment);
boot_params        89 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_init_size, boot_params, hdr.init_size);
boot_params        90 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_pref_address, boot_params, hdr.pref_address);
boot_params        91 arch/x86/kernel/asm-offsets.c 	OFFSET(BP_code32_start, boot_params, hdr.code32_start);
boot_params       264 arch/x86/kernel/cpu/microcode/core.c 	struct boot_params *params;
boot_params       267 arch/x86/kernel/cpu/microcode/core.c 		params = (struct boot_params *)__pa_nodebug(&boot_params);
boot_params       269 arch/x86/kernel/cpu/microcode/core.c 		params = &boot_params;
boot_params       281 arch/x86/kernel/cpu/microcode/core.c 	size  = (unsigned long)boot_params.ext_ramdisk_size << 32;
boot_params       282 arch/x86/kernel/cpu/microcode/core.c 	size |= boot_params.hdr.ramdisk_size;
boot_params       285 arch/x86/kernel/cpu/microcode/core.c 		start  = (unsigned long)boot_params.ext_ramdisk_image << 32;
boot_params       286 arch/x86/kernel/cpu/microcode/core.c 		start |= boot_params.hdr.ramdisk_image;
boot_params        45 arch/x86/kernel/crash.c 	struct boot_params *params;
boot_params       291 arch/x86/kernel/crash.c static int add_e820_entry(struct boot_params *params, struct e820_entry *entry)
boot_params       308 arch/x86/kernel/crash.c 	struct boot_params *params = cmd->params;
boot_params       344 arch/x86/kernel/crash.c int crash_setup_memmap_entries(struct kimage *image, struct boot_params *params)
boot_params       994 arch/x86/kernel/e820.c 	pa_data = boot_params.hdr.setup_data;
boot_params      1221 arch/x86/kernel/e820.c 	if (append_e820_table(boot_params.e820_table, boot_params.e820_entries) < 0) {
boot_params      1225 arch/x86/kernel/e820.c 		if (boot_params.alt_mem_k < boot_params.screen_info.ext_mem_k) {
boot_params      1226 arch/x86/kernel/e820.c 			mem_size = boot_params.screen_info.ext_mem_k;
boot_params      1229 arch/x86/kernel/e820.c 			mem_size = boot_params.alt_mem_k;
boot_params       377 arch/x86/kernel/early_printk.c 		    boot_params.screen_info.orig_video_isVGA == 1) {
boot_params       378 arch/x86/kernel/early_printk.c 			max_xpos = boot_params.screen_info.orig_video_cols;
boot_params       379 arch/x86/kernel/early_printk.c 			max_ypos = boot_params.screen_info.orig_video_lines;
boot_params       380 arch/x86/kernel/early_printk.c 			current_ypos = boot_params.screen_info.orig_y;
boot_params        39 arch/x86/kernel/head32.c 	sanitize_boot_params(&boot_params);
boot_params        44 arch/x86/kernel/head32.c 	switch (boot_params.hdr.hardware_subarch) {
boot_params       114 arch/x86/kernel/head64.c 				  struct boot_params *bp)
boot_params       390 arch/x86/kernel/head64.c 	unsigned long cmd_line_ptr = boot_params.hdr.cmd_line_ptr;
boot_params       392 arch/x86/kernel/head64.c 	cmd_line_ptr |= (u64)boot_params.ext_cmd_line_ptr << 32;
boot_params       408 arch/x86/kernel/head64.c 	memcpy(&boot_params, real_mode_data, sizeof(boot_params));
boot_params       409 arch/x86/kernel/head64.c 	sanitize_boot_params(&boot_params);
boot_params       477 arch/x86/kernel/head64.c 	if (!boot_params.hdr.version)
boot_params       482 arch/x86/kernel/head64.c 	switch (boot_params.hdr.hardware_subarch) {
boot_params         9 arch/x86/kernel/ima_arch.c extern struct boot_params boot_params;
boot_params        60 arch/x86/kernel/ima_arch.c 		sb_mode = boot_params.secure_boot;
boot_params       141 arch/x86/kernel/jailhouse.c 	u64 pa_data = boot_params.hdr.setup_data;
boot_params        95 arch/x86/kernel/kdebugfs.c 	pa_data = boot_params.hdr.setup_data;
boot_params       129 arch/x86/kernel/kdebugfs.c 	.data		= &boot_params,
boot_params       130 arch/x86/kernel/kdebugfs.c 	.size		= sizeof(boot_params),
boot_params       140 arch/x86/kernel/kdebugfs.c 	debugfs_create_x16("version", S_IRUGO, dbp, &boot_params.hdr.version);
boot_params        55 arch/x86/kernel/kexec-bzimage64.c static int setup_initrd(struct boot_params *params,
boot_params        67 arch/x86/kernel/kexec-bzimage64.c static int setup_cmdline(struct kimage *image, struct boot_params *params,
boot_params        97 arch/x86/kernel/kexec-bzimage64.c static int setup_e820_entries(struct boot_params *params)
boot_params       114 arch/x86/kernel/kexec-bzimage64.c static int setup_efi_info_memmap(struct boot_params *params,
boot_params       136 arch/x86/kernel/kexec-bzimage64.c prepare_add_efi_setup_data(struct boot_params *params,
boot_params       161 arch/x86/kernel/kexec-bzimage64.c setup_efi_state(struct boot_params *params, unsigned long params_load_addr,
boot_params       165 arch/x86/kernel/kexec-bzimage64.c 	struct efi_info *current_ei = &boot_params.efi_info;
boot_params       183 arch/x86/kernel/kexec-bzimage64.c 	params->secure_boot = boot_params.secure_boot;
boot_params       200 arch/x86/kernel/kexec-bzimage64.c setup_boot_parameters(struct kimage *image, struct boot_params *params,
boot_params       210 arch/x86/kernel/kexec-bzimage64.c 	params->hdr.hardware_subarch = boot_params.hdr.hardware_subarch;
boot_params       213 arch/x86/kernel/kexec-bzimage64.c 	memcpy(&params->screen_info, &boot_params.screen_info,
boot_params       221 arch/x86/kernel/kexec-bzimage64.c 	params->acpi_rsdp_addr = boot_params.acpi_rsdp_addr;
boot_params       262 arch/x86/kernel/kexec-bzimage64.c 	memcpy(params->eddbuf, boot_params.eddbuf,
boot_params       264 arch/x86/kernel/kexec-bzimage64.c 	params->eddbuf_entries = boot_params.eddbuf_entries;
boot_params       266 arch/x86/kernel/kexec-bzimage64.c 	memcpy(params->edd_mbr_sig_buffer, boot_params.edd_mbr_sig_buffer,
boot_params       283 arch/x86/kernel/kexec-bzimage64.c 	header = (struct setup_header *)(buf + offsetof(struct boot_params, hdr));
boot_params       344 arch/x86/kernel/kexec-bzimage64.c 	struct boot_params *params;
boot_params       349 arch/x86/kernel/kexec-bzimage64.c 	unsigned int setup_hdr_offset = offsetof(struct boot_params, hdr);
boot_params       410 arch/x86/kernel/kexec-bzimage64.c 	params_cmdline_sz = sizeof(struct boot_params) + cmdline_len +
boot_params       474 arch/x86/kernel/kexec-bzimage64.c 		      sizeof(struct boot_params), cmdline, cmdline_len);
boot_params        25 arch/x86/kernel/ksysfs.c 	return sprintf(buf, "0x%04x\n", boot_params.hdr.version);
boot_params        34 arch/x86/kernel/ksysfs.c 	memcpy(buf, (void *)&boot_params + off, count);
boot_params        44 arch/x86/kernel/ksysfs.c 	.size = sizeof(boot_params),
boot_params        74 arch/x86/kernel/ksysfs.c 	u64 pa_data = boot_params.hdr.setup_data;
boot_params        96 arch/x86/kernel/ksysfs.c 	u64 pa_data = boot_params.hdr.setup_data;
boot_params       271 arch/x86/kernel/ksysfs.c 	pa_data = boot_params.hdr.setup_data;
boot_params        96 arch/x86/kernel/machine_kexec_64.c 	mstart = (boot_params.efi_info.efi_systab |
boot_params        97 arch/x86/kernel/machine_kexec_64.c 			((u64)boot_params.efi_info.efi_systab_hi<<32));
boot_params        16 arch/x86/kernel/platform-quirks.c 	switch (boot_params.hdr.hardware_subarch) {
boot_params       141 arch/x86/kernel/setup.c struct boot_params boot_params;
boot_params       242 arch/x86/kernel/setup.c      memcpy(edd.mbr_signature, boot_params.edd_mbr_sig_buffer,
boot_params       244 arch/x86/kernel/setup.c      memcpy(edd.edd_info, boot_params.eddbuf, sizeof(edd.edd_info));
boot_params       245 arch/x86/kernel/setup.c      edd.mbr_signature_nr = boot_params.edd_mbr_sig_buf_entries;
boot_params       246 arch/x86/kernel/setup.c      edd.edd_info_nr = boot_params.eddbuf_entries;
boot_params       296 arch/x86/kernel/setup.c 	u64 ramdisk_image = boot_params.hdr.ramdisk_image;
boot_params       298 arch/x86/kernel/setup.c 	ramdisk_image |= (u64)boot_params.ext_ramdisk_image << 32;
boot_params       304 arch/x86/kernel/setup.c 	u64 ramdisk_size = boot_params.hdr.ramdisk_size;
boot_params       306 arch/x86/kernel/setup.c 	ramdisk_size |= (u64)boot_params.ext_ramdisk_size << 32;
boot_params       349 arch/x86/kernel/setup.c 	if (!boot_params.hdr.type_of_loader ||
boot_params       363 arch/x86/kernel/setup.c 	if (!boot_params.hdr.type_of_loader ||
boot_params       405 arch/x86/kernel/setup.c 	pa_data = boot_params.hdr.setup_data;
boot_params       437 arch/x86/kernel/setup.c 	pa_data = boot_params.hdr.setup_data;
boot_params       903 arch/x86/kernel/setup.c 	ROOT_DEV = old_decode_dev(boot_params.hdr.root_dev);
boot_params       904 arch/x86/kernel/setup.c 	screen_info = boot_params.screen_info;
boot_params       905 arch/x86/kernel/setup.c 	edid_info = boot_params.edid_info;
boot_params       907 arch/x86/kernel/setup.c 	apm_info.bios = boot_params.apm_bios_info;
boot_params       908 arch/x86/kernel/setup.c 	ist_info = boot_params.ist_info;
boot_params       910 arch/x86/kernel/setup.c 	saved_video_mode = boot_params.hdr.vid_mode;
boot_params       911 arch/x86/kernel/setup.c 	bootloader_type = boot_params.hdr.type_of_loader;
boot_params       914 arch/x86/kernel/setup.c 		bootloader_type |= (boot_params.hdr.ext_loader_type+0x10) << 4;
boot_params       917 arch/x86/kernel/setup.c 	bootloader_version |= boot_params.hdr.ext_loader_ver << 4;
boot_params       920 arch/x86/kernel/setup.c 	rd_image_start = boot_params.hdr.ram_size & RAMDISK_IMAGE_START_MASK;
boot_params       921 arch/x86/kernel/setup.c 	rd_prompt = ((boot_params.hdr.ram_size & RAMDISK_PROMPT_FLAG) != 0);
boot_params       922 arch/x86/kernel/setup.c 	rd_doload = ((boot_params.hdr.ram_size & RAMDISK_LOAD_FLAG) != 0);
boot_params       925 arch/x86/kernel/setup.c 	if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
boot_params       928 arch/x86/kernel/setup.c 	} else if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
boot_params       943 arch/x86/kernel/setup.c 	if (!boot_params.hdr.root_flags)
boot_params      1183 arch/x86/kernel/setup.c 		switch (boot_params.secure_boot) {
boot_params        52 arch/x86/kernel/tboot.c 	if (!boot_params.tboot_addr)
boot_params        58 arch/x86/kernel/tboot.c 	if (!e820__mapped_any(boot_params.tboot_addr,
boot_params        59 arch/x86/kernel/tboot.c 			     boot_params.tboot_addr, E820_TYPE_RESERVED)) {
boot_params        65 arch/x86/kernel/tboot.c 	set_fixmap(FIX_TBOOT_BASE, boot_params.tboot_addr);
boot_params        69 arch/x86/kernel/tboot.c 			   boot_params.tboot_addr);
boot_params        80 arch/x86/kernel/tboot.c 		boot_params.tboot_addr);
boot_params       601 arch/x86/mm/ioremap.c 	paddr = boot_params.efi_info.efi_memmap_hi;
boot_params       603 arch/x86/mm/ioremap.c 	paddr |= boot_params.efi_info.efi_memmap;
boot_params       607 arch/x86/mm/ioremap.c 	paddr = boot_params.efi_info.efi_systab_hi;
boot_params       609 arch/x86/mm/ioremap.c 	paddr |= boot_params.efi_info.efi_systab;
boot_params       637 arch/x86/mm/ioremap.c 	paddr = boot_params.hdr.setup_data;
boot_params       671 arch/x86/mm/ioremap.c 	paddr = boot_params.hdr.setup_data;
boot_params       142 arch/x86/mm/mem_encrypt.c 	struct boot_params *boot_data;
boot_params       149 arch/x86/mm/mem_encrypt.c 	boot_data = (struct boot_params *)real_mode_data;
boot_params       152 arch/x86/mm/mem_encrypt.c 	__sme_early_map_unmap_mem(real_mode_data, sizeof(boot_params), false);
boot_params       162 arch/x86/mm/mem_encrypt.c 	struct boot_params *boot_data;
boot_params       168 arch/x86/mm/mem_encrypt.c 	__sme_early_map_unmap_mem(real_mode_data, sizeof(boot_params), true);
boot_params       171 arch/x86/mm/mem_encrypt.c 	boot_data = (struct boot_params *)real_mode_data;
boot_params       280 arch/x86/mm/mem_encrypt_identity.c void __init sme_encrypt_kernel(struct boot_params *bp)
boot_params       487 arch/x86/mm/mem_encrypt_identity.c void __init sme_enable(struct boot_params *bp)
boot_params       677 arch/x86/pci/common.c 	pa_data = boot_params.hdr.setup_data;
boot_params       202 arch/x86/platform/efi/efi.c 	struct efi_info *e = &boot_params.efi_info;
boot_params       511 arch/x86/platform/efi/efi.c 	if (boot_params.efi_info.efi_systab_hi ||
boot_params       512 arch/x86/platform/efi/efi.c 	    boot_params.efi_info.efi_memmap_hi) {
boot_params       516 arch/x86/platform/efi/efi.c 	efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab;
boot_params       519 arch/x86/platform/efi/efi.c 			  (boot_params.efi_info.efi_systab |
boot_params       520 arch/x86/platform/efi/efi.c 			  ((__u64)boot_params.efi_info.efi_systab_hi<<32));
boot_params        95 arch/x86/platform/olpc/olpc_ofw.c 	struct olpc_ofw_header *hdr = &boot_params.olpc_ofw_header;
boot_params        22 arch/x86/platform/pvh/enlighten.c struct boot_params pvh_bootparams __attribute__((section(".data")));
boot_params        39 arch/x86/platform/pvh/enlighten.c void __init __weak mem_map_via_hcall(struct boot_params *ptr __maybe_unused)
boot_params       104 arch/x86/platform/pvh/enlighten.c void __init __weak xen_pvh_init(struct boot_params *boot_params)
boot_params       149 arch/x86/xen/efi.c void __init xen_efi_init(struct boot_params *boot_params)
boot_params       158 arch/x86/xen/efi.c 	strncpy((char *)&boot_params->efi_info.efi_loader_signature, "Xen",
boot_params       159 arch/x86/xen/efi.c 			sizeof(boot_params->efi_info.efi_loader_signature));
boot_params       160 arch/x86/xen/efi.c 	boot_params->efi_info.efi_systab = (__u32)__pa(efi_systab_xen);
boot_params       161 arch/x86/xen/efi.c 	boot_params->efi_info.efi_systab_hi = (__u32)(__pa(efi_systab_xen) >> 32);
boot_params       163 arch/x86/xen/efi.c 	boot_params->secure_boot = xen_efi_get_secureboot();
boot_params      1124 arch/x86/xen/enlighten_pv.c 	edd_info = boot_params.eddbuf;
boot_params      1125 arch/x86/xen/enlighten_pv.c 	mbr_signature = boot_params.edd_mbr_sig_buffer;
boot_params      1150 arch/x86/xen/enlighten_pv.c 	boot_params.eddbuf_entries = nr;
boot_params      1160 arch/x86/xen/enlighten_pv.c 	boot_params.edd_mbr_sig_buf_entries = nr;
boot_params      1346 arch/x86/xen/enlighten_pv.c 	boot_params.hdr.type_of_loader = (9 << 4) | 0;
boot_params      1347 arch/x86/xen/enlighten_pv.c 	boot_params.hdr.ramdisk_image = initrd_start;
boot_params      1348 arch/x86/xen/enlighten_pv.c 	boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
boot_params      1349 arch/x86/xen/enlighten_pv.c 	boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
boot_params      1350 arch/x86/xen/enlighten_pv.c 	boot_params.hdr.hardware_subarch = X86_SUBARCH_XEN;
boot_params      1373 arch/x86/xen/enlighten_pv.c 			boot_params.kbd_status = op.u.firmware_info.u.kbd_shift_flags;
boot_params      1387 arch/x86/xen/enlighten_pv.c 	if (!boot_params.screen_info.orig_video_isVGA)
boot_params      1390 arch/x86/xen/enlighten_pv.c 	if (boot_params.screen_info.orig_video_isVGA)
boot_params      1402 arch/x86/xen/enlighten_pv.c 	xen_efi_init(&boot_params);
boot_params      1409 arch/x86/xen/enlighten_pv.c 	x86_64_start_reservations((char *)__pa_symbol(&boot_params));
boot_params        26 arch/x86/xen/enlighten_pvh.c void __init xen_pvh_init(struct boot_params *boot_params)
boot_params        39 arch/x86/xen/enlighten_pvh.c 	xen_efi_init(boot_params);
boot_params        42 arch/x86/xen/enlighten_pvh.c void __init mem_map_via_hcall(struct boot_params *boot_params_p)
boot_params       892 arch/x86/xen/setup.c 	if (xen_is_e820_reserved(boot_params.hdr.ramdisk_image,
boot_params       893 arch/x86/xen/setup.c 				 boot_params.hdr.ramdisk_size)) {
boot_params       896 arch/x86/xen/setup.c 		new_area = xen_find_free_area(boot_params.hdr.ramdisk_size);
boot_params       902 arch/x86/xen/setup.c 		start = boot_params.hdr.ramdisk_image;
boot_params       903 arch/x86/xen/setup.c 		size = boot_params.hdr.ramdisk_size;
boot_params       908 arch/x86/xen/setup.c 		boot_params.hdr.ramdisk_image = new_area;
boot_params       909 arch/x86/xen/setup.c 		boot_params.ext_ramdisk_image = new_area >> 32;
boot_params        14 arch/x86/xen/vga.c 	struct screen_info *screen_info = &boot_params.screen_info;
boot_params       125 arch/x86/xen/xen-ops.h extern void xen_efi_init(struct boot_params *boot_params);
boot_params       127 arch/x86/xen/xen-ops.h static inline void __init xen_efi_init(struct boot_params *boot_params)
boot_params       184 drivers/firmware/efi/apple-properties.c 	pa_data = boot_params.hdr.setup_data;
boot_params       374 drivers/misc/mic/host/mic_x100.c 	struct boot_params __iomem *bp = mdev->aper.va + mdev->bootaddr;
boot_params       911 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	struct rsi_boot_params *boot_params;
boot_params       922 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	boot_params = (struct rsi_boot_params *)skb->data;
boot_params       927 drivers/net/wireless/rsi/rsi_91x_mgmt.c 		memcpy(&boot_params->bootup_params,
boot_params       932 drivers/net/wireless/rsi/rsi_91x_mgmt.c 		boot_params->desc_word[7] = cpu_to_le16(UMAC_CLK_40BW);
boot_params       934 drivers/net/wireless/rsi/rsi_91x_mgmt.c 		memcpy(&boot_params->bootup_params,
boot_params       938 drivers/net/wireless/rsi/rsi_91x_mgmt.c 			boot_params->desc_word[7] = cpu_to_le16(UMAC_CLK_20BW);
boot_params       943 drivers/net/wireless/rsi/rsi_91x_mgmt.c 			boot_params->desc_word[7] = cpu_to_le16(UMAC_CLK_40MHZ);
boot_params       954 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	boot_params->desc_word[0] = cpu_to_le16(sizeof(struct bootup_params) |
boot_params       956 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	boot_params->desc_word[1] = cpu_to_le16(BOOTUP_PARAMS_REQUEST);
boot_params       966 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	struct rsi_boot_params_9116 *boot_params;
boot_params       974 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	boot_params = (struct rsi_boot_params_9116 *)skb->data;
boot_params       977 drivers/net/wireless/rsi/rsi_91x_mgmt.c 		memcpy(&boot_params->bootup_params,
boot_params       982 drivers/net/wireless/rsi/rsi_91x_mgmt.c 		boot_params->umac_clk = cpu_to_le16(UMAC_CLK_40BW);
boot_params       984 drivers/net/wireless/rsi/rsi_91x_mgmt.c 		memcpy(&boot_params->bootup_params,
boot_params       988 drivers/net/wireless/rsi/rsi_91x_mgmt.c 			boot_params->umac_clk = cpu_to_le16(UMAC_CLK_20BW);
boot_params       993 drivers/net/wireless/rsi/rsi_91x_mgmt.c 			boot_params->umac_clk = cpu_to_le16(UMAC_CLK_40MHZ);
boot_params       999 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	rsi_set_len_qno(&boot_params->desc_dword0.len_qno,
boot_params      1001 drivers/net/wireless/rsi/rsi_91x_mgmt.c 	boot_params->desc_dword0.frame_type = BOOTUP_PARAMS_REQUEST;