diff options
| -rw-r--r-- | arch/x86/include/asm/efi.h | 28 | ||||
| -rw-r--r-- | arch/x86/kernel/tboot.c | 78 | ||||
| -rw-r--r-- | arch/x86/mm/pageattr.c | 10 | ||||
| -rw-r--r-- | arch/x86/platform/efi/efi.c | 30 | ||||
| -rw-r--r-- | arch/x86/platform/efi/efi_64.c | 15 | ||||
| -rw-r--r-- | include/linux/efi.h | 2 | ||||
| -rw-r--r-- | init/main.c | 8 |
7 files changed, 116 insertions, 55 deletions
diff --git a/arch/x86/include/asm/efi.h b/arch/x86/include/asm/efi.h index fd13815fe85c..6e8fdf5ad113 100644 --- a/arch/x86/include/asm/efi.h +++ b/arch/x86/include/asm/efi.h | |||
| @@ -69,37 +69,23 @@ extern u64 efi_call6(void *fp, u64 arg1, u64 arg2, u64 arg3, | |||
| 69 | efi_call6((void *)(f), (u64)(a1), (u64)(a2), (u64)(a3), \ | 69 | efi_call6((void *)(f), (u64)(a1), (u64)(a2), (u64)(a3), \ |
| 70 | (u64)(a4), (u64)(a5), (u64)(a6)) | 70 | (u64)(a4), (u64)(a5), (u64)(a6)) |
| 71 | 71 | ||
| 72 | extern unsigned long efi_call_virt_prelog(void); | ||
| 73 | extern void efi_call_virt_epilog(unsigned long); | ||
| 74 | |||
| 75 | #define efi_callx(x, func, ...) \ | ||
| 76 | ({ \ | ||
| 77 | efi_status_t __status; \ | ||
| 78 | unsigned long __pgd; \ | ||
| 79 | \ | ||
| 80 | __pgd = efi_call_virt_prelog(); \ | ||
| 81 | __status = efi_call##x(func, __VA_ARGS__); \ | ||
| 82 | efi_call_virt_epilog(__pgd); \ | ||
| 83 | __status; \ | ||
| 84 | }) | ||
| 85 | |||
| 86 | #define efi_call_virt0(f) \ | 72 | #define efi_call_virt0(f) \ |
| 87 | efi_callx(0, (void *)(efi.systab->runtime->f)) | 73 | efi_call0((void *)(efi.systab->runtime->f)) |
| 88 | #define efi_call_virt1(f, a1) \ | 74 | #define efi_call_virt1(f, a1) \ |
| 89 | efi_callx(1, (void *)(efi.systab->runtime->f), (u64)(a1)) | 75 | efi_call1((void *)(efi.systab->runtime->f), (u64)(a1)) |
| 90 | #define efi_call_virt2(f, a1, a2) \ | 76 | #define efi_call_virt2(f, a1, a2) \ |
| 91 | efi_callx(2, (void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2)) | 77 | efi_call2((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2)) |
| 92 | #define efi_call_virt3(f, a1, a2, a3) \ | 78 | #define efi_call_virt3(f, a1, a2, a3) \ |
| 93 | efi_callx(3, (void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ | 79 | efi_call3((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
| 94 | (u64)(a3)) | 80 | (u64)(a3)) |
| 95 | #define efi_call_virt4(f, a1, a2, a3, a4) \ | 81 | #define efi_call_virt4(f, a1, a2, a3, a4) \ |
| 96 | efi_callx(4, (void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ | 82 | efi_call4((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
| 97 | (u64)(a3), (u64)(a4)) | 83 | (u64)(a3), (u64)(a4)) |
| 98 | #define efi_call_virt5(f, a1, a2, a3, a4, a5) \ | 84 | #define efi_call_virt5(f, a1, a2, a3, a4, a5) \ |
| 99 | efi_callx(5, (void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ | 85 | efi_call5((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
| 100 | (u64)(a3), (u64)(a4), (u64)(a5)) | 86 | (u64)(a3), (u64)(a4), (u64)(a5)) |
| 101 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ | 87 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ |
| 102 | efi_callx(6, (void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ | 88 | efi_call6((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
| 103 | (u64)(a3), (u64)(a4), (u64)(a5), (u64)(a6)) | 89 | (u64)(a3), (u64)(a4), (u64)(a5), (u64)(a6)) |
| 104 | 90 | ||
| 105 | extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size, | 91 | extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size, |
diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c index d4f460f962ee..f84fe00fad48 100644 --- a/arch/x86/kernel/tboot.c +++ b/arch/x86/kernel/tboot.c | |||
| @@ -103,13 +103,71 @@ void __init tboot_probe(void) | |||
| 103 | pr_debug("tboot_size: 0x%x\n", tboot->tboot_size); | 103 | pr_debug("tboot_size: 0x%x\n", tboot->tboot_size); |
| 104 | } | 104 | } |
| 105 | 105 | ||
| 106 | static pgd_t *tboot_pg_dir; | ||
| 107 | static struct mm_struct tboot_mm = { | ||
| 108 | .mm_rb = RB_ROOT, | ||
| 109 | .pgd = swapper_pg_dir, | ||
| 110 | .mm_users = ATOMIC_INIT(2), | ||
| 111 | .mm_count = ATOMIC_INIT(1), | ||
| 112 | .mmap_sem = __RWSEM_INITIALIZER(init_mm.mmap_sem), | ||
| 113 | .page_table_lock = __SPIN_LOCK_UNLOCKED(init_mm.page_table_lock), | ||
| 114 | .mmlist = LIST_HEAD_INIT(init_mm.mmlist), | ||
| 115 | }; | ||
| 116 | |||
| 106 | static inline void switch_to_tboot_pt(void) | 117 | static inline void switch_to_tboot_pt(void) |
| 107 | { | 118 | { |
| 108 | #ifdef CONFIG_X86_32 | 119 | write_cr3(virt_to_phys(tboot_pg_dir)); |
| 109 | load_cr3(initial_page_table); | 120 | } |
| 110 | #else | 121 | |
| 111 | write_cr3(real_mode_header->trampoline_pgd); | 122 | static int map_tboot_page(unsigned long vaddr, unsigned long pfn, |
| 112 | #endif | 123 | pgprot_t prot) |
| 124 | { | ||
| 125 | pgd_t *pgd; | ||
| 126 | pud_t *pud; | ||
| 127 | pmd_t *pmd; | ||
| 128 | pte_t *pte; | ||
| 129 | |||
| 130 | pgd = pgd_offset(&tboot_mm, vaddr); | ||
| 131 | pud = pud_alloc(&tboot_mm, pgd, vaddr); | ||
| 132 | if (!pud) | ||
| 133 | return -1; | ||
| 134 | pmd = pmd_alloc(&tboot_mm, pud, vaddr); | ||
| 135 | if (!pmd) | ||
| 136 | return -1; | ||
| 137 | pte = pte_alloc_map(&tboot_mm, NULL, pmd, vaddr); | ||
| 138 | if (!pte) | ||
| 139 | return -1; | ||
| 140 | set_pte_at(&tboot_mm, vaddr, pte, pfn_pte(pfn, prot)); | ||
| 141 | pte_unmap(pte); | ||
| 142 | return 0; | ||
| 143 | } | ||
| 144 | |||
| 145 | static int map_tboot_pages(unsigned long vaddr, unsigned long start_pfn, | ||
| 146 | unsigned long nr) | ||
| 147 | { | ||
| 148 | /* Reuse the original kernel mapping */ | ||
| 149 | tboot_pg_dir = pgd_alloc(&tboot_mm); | ||
| 150 | if (!tboot_pg_dir) | ||
| 151 | return -1; | ||
| 152 | |||
| 153 | for (; nr > 0; nr--, vaddr += PAGE_SIZE, start_pfn++) { | ||
| 154 | if (map_tboot_page(vaddr, start_pfn, PAGE_KERNEL_EXEC)) | ||
| 155 | return -1; | ||
| 156 | } | ||
| 157 | |||
| 158 | return 0; | ||
| 159 | } | ||
| 160 | |||
| 161 | static void tboot_create_trampoline(void) | ||
| 162 | { | ||
| 163 | u32 map_base, map_size; | ||
| 164 | |||
| 165 | /* Create identity map for tboot shutdown code. */ | ||
| 166 | map_base = PFN_DOWN(tboot->tboot_base); | ||
| 167 | map_size = PFN_UP(tboot->tboot_size); | ||
| 168 | if (map_tboot_pages(map_base << PAGE_SHIFT, map_base, map_size)) | ||
| 169 | panic("tboot: Error mapping tboot pages (mfns) @ 0x%x, 0x%x\n", | ||
| 170 | map_base, map_size); | ||
| 113 | } | 171 | } |
| 114 | 172 | ||
| 115 | #ifdef CONFIG_ACPI_SLEEP | 173 | #ifdef CONFIG_ACPI_SLEEP |
| @@ -167,6 +225,14 @@ void tboot_shutdown(u32 shutdown_type) | |||
| 167 | if (!tboot_enabled()) | 225 | if (!tboot_enabled()) |
| 168 | return; | 226 | return; |
| 169 | 227 | ||
| 228 | /* | ||
| 229 | * if we're being called before the 1:1 mapping is set up then just | ||
| 230 | * return and let the normal shutdown happen; this should only be | ||
| 231 | * due to very early panic() | ||
| 232 | */ | ||
| 233 | if (!tboot_pg_dir) | ||
| 234 | return; | ||
| 235 | |||
| 170 | /* if this is S3 then set regions to MAC */ | 236 | /* if this is S3 then set regions to MAC */ |
| 171 | if (shutdown_type == TB_SHUTDOWN_S3) | 237 | if (shutdown_type == TB_SHUTDOWN_S3) |
| 172 | if (tboot_setup_sleep()) | 238 | if (tboot_setup_sleep()) |
| @@ -277,6 +343,8 @@ static __init int tboot_late_init(void) | |||
| 277 | if (!tboot_enabled()) | 343 | if (!tboot_enabled()) |
| 278 | return 0; | 344 | return 0; |
| 279 | 345 | ||
| 346 | tboot_create_trampoline(); | ||
| 347 | |||
| 280 | atomic_set(&ap_wfs_count, 0); | 348 | atomic_set(&ap_wfs_count, 0); |
| 281 | register_hotcpu_notifier(&tboot_cpu_notifier); | 349 | register_hotcpu_notifier(&tboot_cpu_notifier); |
| 282 | 350 | ||
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 931930a96160..a718e0d23503 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
| @@ -919,13 +919,11 @@ static int change_page_attr_set_clr(unsigned long *addr, int numpages, | |||
| 919 | 919 | ||
| 920 | /* | 920 | /* |
| 921 | * On success we use clflush, when the CPU supports it to | 921 | * On success we use clflush, when the CPU supports it to |
| 922 | * avoid the wbindv. If the CPU does not support it, in the | 922 | * avoid the wbindv. If the CPU does not support it and in the |
| 923 | * error case, and during early boot (for EFI) we fall back | 923 | * error case we fall back to cpa_flush_all (which uses |
| 924 | * to cpa_flush_all (which uses wbinvd): | 924 | * wbindv): |
| 925 | */ | 925 | */ |
| 926 | if (early_boot_irqs_disabled) | 926 | if (!ret && cpu_has_clflush) { |
| 927 | __cpa_flush_all((void *)(long)cache); | ||
| 928 | else if (!ret && cpu_has_clflush) { | ||
| 929 | if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) { | 927 | if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) { |
| 930 | cpa_flush_array(addr, numpages, cache, | 928 | cpa_flush_array(addr, numpages, cache, |
| 931 | cpa.flags, pages); | 929 | cpa.flags, pages); |
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c index 0a34d9e9c263..ad4439145f85 100644 --- a/arch/x86/platform/efi/efi.c +++ b/arch/x86/platform/efi/efi.c | |||
| @@ -239,7 +239,22 @@ static efi_status_t __init phys_efi_set_virtual_address_map( | |||
| 239 | return status; | 239 | return status; |
| 240 | } | 240 | } |
| 241 | 241 | ||
| 242 | static int efi_set_rtc_mmss(unsigned long nowtime) | 242 | static efi_status_t __init phys_efi_get_time(efi_time_t *tm, |
| 243 | efi_time_cap_t *tc) | ||
| 244 | { | ||
| 245 | unsigned long flags; | ||
| 246 | efi_status_t status; | ||
| 247 | |||
| 248 | spin_lock_irqsave(&rtc_lock, flags); | ||
| 249 | efi_call_phys_prelog(); | ||
| 250 | status = efi_call_phys2(efi_phys.get_time, virt_to_phys(tm), | ||
| 251 | virt_to_phys(tc)); | ||
| 252 | efi_call_phys_epilog(); | ||
| 253 | spin_unlock_irqrestore(&rtc_lock, flags); | ||
| 254 | return status; | ||
| 255 | } | ||
| 256 | |||
| 257 | int efi_set_rtc_mmss(unsigned long nowtime) | ||
| 243 | { | 258 | { |
| 244 | int real_seconds, real_minutes; | 259 | int real_seconds, real_minutes; |
| 245 | efi_status_t status; | 260 | efi_status_t status; |
| @@ -268,7 +283,7 @@ static int efi_set_rtc_mmss(unsigned long nowtime) | |||
| 268 | return 0; | 283 | return 0; |
| 269 | } | 284 | } |
| 270 | 285 | ||
| 271 | static unsigned long efi_get_time(void) | 286 | unsigned long efi_get_time(void) |
| 272 | { | 287 | { |
| 273 | efi_status_t status; | 288 | efi_status_t status; |
| 274 | efi_time_t eft; | 289 | efi_time_t eft; |
| @@ -624,13 +639,18 @@ static int __init efi_runtime_init(void) | |||
| 624 | } | 639 | } |
| 625 | /* | 640 | /* |
| 626 | * We will only need *early* access to the following | 641 | * We will only need *early* access to the following |
| 627 | * EFI runtime service before set_virtual_address_map | 642 | * two EFI runtime services before set_virtual_address_map |
| 628 | * is invoked. | 643 | * is invoked. |
| 629 | */ | 644 | */ |
| 645 | efi_phys.get_time = (efi_get_time_t *)runtime->get_time; | ||
| 630 | efi_phys.set_virtual_address_map = | 646 | efi_phys.set_virtual_address_map = |
| 631 | (efi_set_virtual_address_map_t *) | 647 | (efi_set_virtual_address_map_t *) |
| 632 | runtime->set_virtual_address_map; | 648 | runtime->set_virtual_address_map; |
| 633 | 649 | /* | |
| 650 | * Make efi_get_time can be called before entering | ||
| 651 | * virtual mode. | ||
| 652 | */ | ||
| 653 | efi.get_time = phys_efi_get_time; | ||
| 634 | early_iounmap(runtime, sizeof(efi_runtime_services_t)); | 654 | early_iounmap(runtime, sizeof(efi_runtime_services_t)); |
| 635 | 655 | ||
| 636 | return 0; | 656 | return 0; |
| @@ -716,10 +736,12 @@ void __init efi_init(void) | |||
| 716 | efi_enabled = 0; | 736 | efi_enabled = 0; |
| 717 | return; | 737 | return; |
| 718 | } | 738 | } |
| 739 | #ifdef CONFIG_X86_32 | ||
| 719 | if (efi_is_native()) { | 740 | if (efi_is_native()) { |
| 720 | x86_platform.get_wallclock = efi_get_time; | 741 | x86_platform.get_wallclock = efi_get_time; |
| 721 | x86_platform.set_wallclock = efi_set_rtc_mmss; | 742 | x86_platform.set_wallclock = efi_set_rtc_mmss; |
| 722 | } | 743 | } |
| 744 | #endif | ||
| 723 | 745 | ||
| 724 | #if EFI_DEBUG | 746 | #if EFI_DEBUG |
| 725 | print_efi_memmap(); | 747 | print_efi_memmap(); |
diff --git a/arch/x86/platform/efi/efi_64.c b/arch/x86/platform/efi/efi_64.c index 06c8b2e662ab..95fd505dfeb6 100644 --- a/arch/x86/platform/efi/efi_64.c +++ b/arch/x86/platform/efi/efi_64.c | |||
| @@ -58,21 +58,6 @@ static void __init early_code_mapping_set_exec(int executable) | |||
| 58 | } | 58 | } |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | unsigned long efi_call_virt_prelog(void) | ||
| 62 | { | ||
| 63 | unsigned long saved; | ||
| 64 | |||
| 65 | saved = read_cr3(); | ||
| 66 | write_cr3(real_mode_header->trampoline_pgd); | ||
| 67 | |||
| 68 | return saved; | ||
| 69 | } | ||
| 70 | |||
| 71 | void efi_call_virt_epilog(unsigned long saved) | ||
| 72 | { | ||
| 73 | write_cr3(saved); | ||
| 74 | } | ||
| 75 | |||
| 76 | void __init efi_call_phys_prelog(void) | 61 | void __init efi_call_phys_prelog(void) |
| 77 | { | 62 | { |
| 78 | unsigned long vaddress; | 63 | unsigned long vaddress; |
diff --git a/include/linux/efi.h b/include/linux/efi.h index 02a69418be18..8b84916dc671 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h | |||
| @@ -587,6 +587,8 @@ extern u64 efi_mem_attribute (unsigned long phys_addr, unsigned long size); | |||
| 587 | extern int __init efi_uart_console_only (void); | 587 | extern int __init efi_uart_console_only (void); |
| 588 | extern void efi_initialize_iomem_resources(struct resource *code_resource, | 588 | extern void efi_initialize_iomem_resources(struct resource *code_resource, |
| 589 | struct resource *data_resource, struct resource *bss_resource); | 589 | struct resource *data_resource, struct resource *bss_resource); |
| 590 | extern unsigned long efi_get_time(void); | ||
| 591 | extern int efi_set_rtc_mmss(unsigned long nowtime); | ||
| 590 | extern void efi_reserve_boot_services(void); | 592 | extern void efi_reserve_boot_services(void); |
| 591 | extern struct efi_memory_map memmap; | 593 | extern struct efi_memory_map memmap; |
| 592 | 594 | ||
diff --git a/init/main.c b/init/main.c index 6af5470b8067..63ae904a99a8 100644 --- a/init/main.c +++ b/init/main.c | |||
| @@ -463,10 +463,6 @@ static void __init mm_init(void) | |||
| 463 | percpu_init_late(); | 463 | percpu_init_late(); |
| 464 | pgtable_cache_init(); | 464 | pgtable_cache_init(); |
| 465 | vmalloc_init(); | 465 | vmalloc_init(); |
| 466 | #ifdef CONFIG_X86 | ||
| 467 | if (efi_enabled) | ||
| 468 | efi_enter_virtual_mode(); | ||
| 469 | #endif | ||
| 470 | } | 466 | } |
| 471 | 467 | ||
| 472 | asmlinkage void __init start_kernel(void) | 468 | asmlinkage void __init start_kernel(void) |
| @@ -607,6 +603,10 @@ asmlinkage void __init start_kernel(void) | |||
| 607 | calibrate_delay(); | 603 | calibrate_delay(); |
| 608 | pidmap_init(); | 604 | pidmap_init(); |
| 609 | anon_vma_init(); | 605 | anon_vma_init(); |
| 606 | #ifdef CONFIG_X86 | ||
| 607 | if (efi_enabled) | ||
| 608 | efi_enter_virtual_mode(); | ||
| 609 | #endif | ||
| 610 | thread_info_cache_init(); | 610 | thread_info_cache_init(); |
| 611 | cred_init(); | 611 | cred_init(); |
| 612 | fork_init(totalram_pages); | 612 | fork_init(totalram_pages); |
