Lines Matching refs:boot_params

376 setup_efi_pci32(struct boot_params *params, void **pci_handle,  in setup_efi_pci32()
483 setup_efi_pci64(struct boot_params *params, void **pci_handle, in setup_efi_pci64()
536 static void setup_efi_pci(struct boot_params *params) in setup_efi_pci()
1007 void setup_graphics(struct boot_params *boot_params) in setup_graphics() argument
1017 si = &boot_params->screen_info; in setup_graphics()
1045 struct boot_params *make_boot_params(struct efi_config *c) in make_boot_params()
1047 struct boot_params *boot_params; in make_boot_params() local
1085 (unsigned long *)&boot_params); in make_boot_params()
1091 memset(boot_params, 0x0, 0x4000); in make_boot_params()
1093 hdr = &boot_params->hdr; in make_boot_params()
1094 efi = &boot_params->efi_info; in make_boot_params()
1095 bi = &boot_params->apm_bios_info; in make_boot_params()
1096 sdt = &boot_params->sys_desc_table; in make_boot_params()
1117 boot_params->ext_cmd_line_ptr = (u64)(unsigned long)cmdline_ptr >> 32; in make_boot_params()
1149 boot_params->ext_ramdisk_image = (u64)ramdisk_addr >> 32; in make_boot_params()
1150 boot_params->ext_ramdisk_size = (u64)ramdisk_size >> 32; in make_boot_params()
1152 return boot_params; in make_boot_params()
1156 efi_free(sys_table, 0x4000, (unsigned long)boot_params); in make_boot_params()
1160 static void add_e820ext(struct boot_params *params, in add_e820ext()
1182 static efi_status_t setup_e820(struct boot_params *params, in setup_e820()
1299 static efi_status_t exit_boot(struct boot_params *boot_params, in exit_boot() argument
1302 struct efi_info *efi = &boot_params->efi_info; in exit_boot()
1329 nr_desc > ARRAY_SIZE(boot_params->e820_map)) { in exit_boot()
1330 u32 nr_e820ext = nr_desc - ARRAY_SIZE(boot_params->e820_map); in exit_boot()
1373 boot_params->alt_mem_k = 32 * 1024; in exit_boot()
1375 status = setup_e820(boot_params, e820ext, e820ext_size); in exit_boot()
1390 struct boot_params *efi_main(struct efi_config *c, in efi_main()
1391 struct boot_params *boot_params) in efi_main() argument
1395 struct setup_header *hdr = &boot_params->hdr; in efi_main()
1419 setup_graphics(boot_params); in efi_main()
1421 setup_efi_pci(boot_params); in efi_main()
1457 status = exit_boot(boot_params, handle, is64); in efi_main()
1519 return boot_params; in efi_main()