📄 efi_32.c
字号:
*/ num_config_tables = efi.systab->nr_tables; config_tables = (efi_config_table_t *)efi.systab->tables; runtime = efi.systab->runtime; /* * Show what we know for posterity */ c16 = (efi_char16_t *) boot_ioremap(efi.systab->fw_vendor, 2); if (c16) { for (i = 0; i < (sizeof(vendor) - 1) && *c16; ++i) vendor[i] = *c16++; vendor[i] = '\0'; } else printk(KERN_ERR PFX "Could not map the firmware vendor!\n"); printk(KERN_INFO PFX "EFI v%u.%.02u by %s \n", efi.systab->hdr.revision >> 16, efi.systab->hdr.revision & 0xffff, vendor); /* * Let's see what config tables the firmware passed to us. */ config_tables = (efi_config_table_t *) boot_ioremap((unsigned long) config_tables, num_config_tables * sizeof(efi_config_table_t)); if (config_tables == NULL) printk(KERN_ERR PFX "Could not map EFI Configuration Table!\n"); efi.mps = EFI_INVALID_TABLE_ADDR; efi.acpi = EFI_INVALID_TABLE_ADDR; efi.acpi20 = EFI_INVALID_TABLE_ADDR; efi.smbios = EFI_INVALID_TABLE_ADDR; efi.sal_systab = EFI_INVALID_TABLE_ADDR; efi.boot_info = EFI_INVALID_TABLE_ADDR; efi.hcdp = EFI_INVALID_TABLE_ADDR; efi.uga = EFI_INVALID_TABLE_ADDR; for (i = 0; i < num_config_tables; i++) { if (efi_guidcmp(config_tables[i].guid, MPS_TABLE_GUID) == 0) { efi.mps = config_tables[i].table; printk(KERN_INFO " MPS=0x%lx ", config_tables[i].table); } else if (efi_guidcmp(config_tables[i].guid, ACPI_20_TABLE_GUID) == 0) { efi.acpi20 = config_tables[i].table; printk(KERN_INFO " ACPI 2.0=0x%lx ", config_tables[i].table); } else if (efi_guidcmp(config_tables[i].guid, ACPI_TABLE_GUID) == 0) { efi.acpi = config_tables[i].table; printk(KERN_INFO " ACPI=0x%lx ", config_tables[i].table); } else if (efi_guidcmp(config_tables[i].guid, SMBIOS_TABLE_GUID) == 0) { efi.smbios = config_tables[i].table; printk(KERN_INFO " SMBIOS=0x%lx ", config_tables[i].table); } else if (efi_guidcmp(config_tables[i].guid, HCDP_TABLE_GUID) == 0) { efi.hcdp = config_tables[i].table; printk(KERN_INFO " HCDP=0x%lx ", config_tables[i].table); } else if (efi_guidcmp(config_tables[i].guid, UGA_IO_PROTOCOL_GUID) == 0) { efi.uga = config_tables[i].table; printk(KERN_INFO " UGA=0x%lx ", config_tables[i].table); } } printk("\n"); /* * Check out the runtime services table. We need to map * the runtime services table so that we can grab the physical * address of several of the EFI runtime functions, needed to * set the firmware into virtual mode. */ runtime = (efi_runtime_services_t *) boot_ioremap((unsigned long) runtime, sizeof(efi_runtime_services_t)); if (runtime != NULL) { /* * We will only need *early* access to the following * two EFI runtime services before set_virtual_address_map * is invoked. */ efi_phys.get_time = (efi_get_time_t *) runtime->get_time; efi_phys.set_virtual_address_map = (efi_set_virtual_address_map_t *) runtime->set_virtual_address_map; } else printk(KERN_ERR PFX "Could not map the runtime service table!\n"); /* Map the EFI memory map for use until paging_init() */ memmap.map = boot_ioremap(boot_params.efi_info.efi_memmap, boot_params.efi_info.efi_memmap_size); if (memmap.map == NULL) printk(KERN_ERR PFX "Could not map the EFI memory map!\n"); memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);#if EFI_DEBUG print_efi_memmap();#endif}static inline void __init check_range_for_systab(efi_memory_desc_t *md){ if (((unsigned long)md->phys_addr <= (unsigned long)efi_phys.systab) && ((unsigned long)efi_phys.systab < md->phys_addr + ((unsigned long)md->num_pages << EFI_PAGE_SHIFT))) { unsigned long addr; addr = md->virt_addr - md->phys_addr + (unsigned long)efi_phys.systab; efi.systab = (efi_system_table_t *)addr; }}/* * Wrap all the virtual calls in a way that forces the parameters on the stack. */#define efi_call_virt(f, args...) \ ((efi_##f##_t __attribute__((regparm(0)))*)efi.systab->runtime->f)(args)static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc){ return efi_call_virt(get_time, tm, tc);}static efi_status_t virt_efi_set_time (efi_time_t *tm){ return efi_call_virt(set_time, tm);}static efi_status_t virt_efi_get_wakeup_time (efi_bool_t *enabled, efi_bool_t *pending, efi_time_t *tm){ return efi_call_virt(get_wakeup_time, enabled, pending, tm);}static efi_status_t virt_efi_set_wakeup_time (efi_bool_t enabled, efi_time_t *tm){ return efi_call_virt(set_wakeup_time, enabled, tm);}static efi_status_t virt_efi_get_variable (efi_char16_t *name, efi_guid_t *vendor, u32 *attr, unsigned long *data_size, void *data){ return efi_call_virt(get_variable, name, vendor, attr, data_size, data);}static efi_status_t virt_efi_get_next_variable (unsigned long *name_size, efi_char16_t *name, efi_guid_t *vendor){ return efi_call_virt(get_next_variable, name_size, name, vendor);}static efi_status_t virt_efi_set_variable (efi_char16_t *name, efi_guid_t *vendor, unsigned long attr, unsigned long data_size, void *data){ return efi_call_virt(set_variable, name, vendor, attr, data_size, data);}static efi_status_t virt_efi_get_next_high_mono_count (u32 *count){ return efi_call_virt(get_next_high_mono_count, count);}static void virt_efi_reset_system (int reset_type, efi_status_t status, unsigned long data_size, efi_char16_t *data){ efi_call_virt(reset_system, reset_type, status, data_size, data);}/* * This function will switch the EFI runtime services to virtual mode. * Essentially, look through the EFI memmap and map every region that * has the runtime attribute bit set in its memory descriptor and update * that memory descriptor with the virtual address obtained from ioremap(). * This enables the runtime services to be called without having to * thunk back into physical mode for every invocation. */void __init efi_enter_virtual_mode(void){ efi_memory_desc_t *md; efi_status_t status; void *p; efi.systab = NULL; for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { md = p; if (!(md->attribute & EFI_MEMORY_RUNTIME)) continue; md->virt_addr = (unsigned long)ioremap(md->phys_addr, md->num_pages << EFI_PAGE_SHIFT); if (!(unsigned long)md->virt_addr) { printk(KERN_ERR PFX "ioremap of 0x%lX failed\n", (unsigned long)md->phys_addr); } /* update the virtual address of the EFI system table */ check_range_for_systab(md); } BUG_ON(!efi.systab); status = phys_efi_set_virtual_address_map( memmap.desc_size * memmap.nr_map, memmap.desc_size, memmap.desc_version, memmap.phys_map); if (status != EFI_SUCCESS) { printk (KERN_ALERT "You are screwed! " "Unable to switch EFI into virtual mode " "(status=%lx)\n", status); panic("EFI call to SetVirtualAddressMap() failed!"); } /* * Now that EFI is in virtual mode, update the function * pointers in the runtime service table to the new virtual addresses. */ efi.get_time = virt_efi_get_time; efi.set_time = virt_efi_set_time; efi.get_wakeup_time = virt_efi_get_wakeup_time; efi.set_wakeup_time = virt_efi_set_wakeup_time; efi.get_variable = virt_efi_get_variable; efi.get_next_variable = virt_efi_get_next_variable; efi.set_variable = virt_efi_set_variable; efi.get_next_high_mono_count = virt_efi_get_next_high_mono_count; efi.reset_system = virt_efi_reset_system;}void __initefi_initialize_iomem_resources(struct resource *code_resource, struct resource *data_resource, struct resource *bss_resource){ struct resource *res; efi_memory_desc_t *md; void *p; for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { md = p; if ((md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT)) > 0x100000000ULL) continue; res = kzalloc(sizeof(struct resource), GFP_ATOMIC); switch (md->type) { case EFI_RESERVED_TYPE: res->name = "Reserved Memory"; break; case EFI_LOADER_CODE: res->name = "Loader Code"; break; case EFI_LOADER_DATA: res->name = "Loader Data"; break; case EFI_BOOT_SERVICES_DATA: res->name = "BootServices Data"; break; case EFI_BOOT_SERVICES_CODE: res->name = "BootServices Code"; break; case EFI_RUNTIME_SERVICES_CODE: res->name = "Runtime Service Code"; break; case EFI_RUNTIME_SERVICES_DATA: res->name = "Runtime Service Data"; break; case EFI_CONVENTIONAL_MEMORY: res->name = "Conventional Memory"; break; case EFI_UNUSABLE_MEMORY: res->name = "Unusable Memory"; break; case EFI_ACPI_RECLAIM_MEMORY: res->name = "ACPI Reclaim"; break; case EFI_ACPI_MEMORY_NVS: res->name = "ACPI NVS"; break; case EFI_MEMORY_MAPPED_IO: res->name = "Memory Mapped IO"; break; case EFI_MEMORY_MAPPED_IO_PORT_SPACE: res->name = "Memory Mapped IO Port Space"; break; default: res->name = "Reserved"; break; } res->start = md->phys_addr; res->end = res->start + ((md->num_pages << EFI_PAGE_SHIFT) - 1); res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; if (request_resource(&iomem_resource, res) < 0) printk(KERN_ERR PFX "Failed to allocate res %s : " "0x%llx-0x%llx\n", res->name, (unsigned long long)res->start, (unsigned long long)res->end); /* * We don't know which region contains kernel data so we try * it repeatedly and let the resource manager test it. */ if (md->type == EFI_CONVENTIONAL_MEMORY) { request_resource(res, code_resource); request_resource(res, data_resource); request_resource(res, bss_resource);#ifdef CONFIG_KEXEC request_resource(res, &crashk_res);#endif } }}/* * Convenience functions to obtain memory types and attributes */u32 efi_mem_type(unsigned long phys_addr){ efi_memory_desc_t *md; void *p; for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { md = p; if ((md->phys_addr <= phys_addr) && (phys_addr < (md->phys_addr + (md-> num_pages << EFI_PAGE_SHIFT)) )) return md->type; } return 0;}u64 efi_mem_attributes(unsigned long phys_addr){ efi_memory_desc_t *md; void *p; for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { md = p; if ((md->phys_addr <= phys_addr) && (phys_addr < (md->phys_addr + (md-> num_pages << EFI_PAGE_SHIFT)) )) return md->attribute; } return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -