Lines Matching refs:boot_params
377 setup_efi_pci32(struct boot_params *params, void **pci_handle, in setup_efi_pci32()
484 setup_efi_pci64(struct boot_params *params, void **pci_handle, in setup_efi_pci64()
537 static void setup_efi_pci(struct boot_params *params) in setup_efi_pci()
1004 void setup_graphics(struct boot_params *boot_params) in setup_graphics() argument
1014 si = &boot_params->screen_info; in setup_graphics()
1042 struct boot_params *make_boot_params(struct efi_config *c) in make_boot_params()
1044 struct boot_params *boot_params; in make_boot_params() local
1082 (unsigned long *)&boot_params); in make_boot_params()
1088 memset(boot_params, 0x0, 0x4000); in make_boot_params()
1090 hdr = &boot_params->hdr; in make_boot_params()
1091 efi = &boot_params->efi_info; in make_boot_params()
1092 bi = &boot_params->apm_bios_info; in make_boot_params()
1093 sdt = &boot_params->sys_desc_table; in make_boot_params()
1114 boot_params->ext_cmd_line_ptr = (u64)(unsigned long)cmdline_ptr >> 32; in make_boot_params()
1146 boot_params->ext_ramdisk_image = (u64)ramdisk_addr >> 32; in make_boot_params()
1147 boot_params->ext_ramdisk_size = (u64)ramdisk_size >> 32; in make_boot_params()
1149 return boot_params; in make_boot_params()
1153 efi_free(sys_table, 0x4000, (unsigned long)boot_params); in make_boot_params()
1157 static void add_e820ext(struct boot_params *params, in add_e820ext()
1179 static efi_status_t setup_e820(struct boot_params *params, in setup_e820()
1296 static efi_status_t exit_boot(struct boot_params *boot_params, in exit_boot() argument
1299 struct efi_info *efi = &boot_params->efi_info; in exit_boot()
1326 nr_desc > ARRAY_SIZE(boot_params->e820_map)) { in exit_boot()
1327 u32 nr_e820ext = nr_desc - ARRAY_SIZE(boot_params->e820_map); in exit_boot()
1370 boot_params->alt_mem_k = 32 * 1024; in exit_boot()
1372 status = setup_e820(boot_params, e820ext, e820ext_size); in exit_boot()
1387 struct boot_params *efi_main(struct efi_config *c, in efi_main()
1388 struct boot_params *boot_params) in efi_main() argument
1392 struct setup_header *hdr = &boot_params->hdr; in efi_main()
1416 setup_graphics(boot_params); in efi_main()
1418 setup_efi_pci(boot_params); in efi_main()
1454 status = exit_boot(boot_params, handle, is64); in efi_main()
1516 return boot_params; in efi_main()