efi_64.c 2.0 KB
Newer Older
H
Huang, Ying 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/*
 * x86_64 specific EFI support functions
 * Based on Extensible Firmware Interface Specification version 1.0
 *
 * Copyright (C) 2005-2008 Intel Co.
 *	Fenghua Yu <fenghua.yu@intel.com>
 *	Bibo Mao <bibo.mao@intel.com>
 *	Chandramouli Narayanan <mouli@linux.intel.com>
 *	Huang Ying <ying.huang@intel.com>
 *
 * Code to convert EFI to E820 map has been implemented in elilo bootloader
 * based on a EFI patch by Edgar Hucek. Based on the E820 map, the page table
 * is setup appropriately for EFI runtime code.
 * - mouli 06/14/2007.
 *
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/mm.h>
#include <linux/types.h>
#include <linux/spinlock.h>
#include <linux/bootmem.h>
#include <linux/ioport.h>
#include <linux/module.h>
#include <linux/efi.h>
#include <linux/uaccess.h>
#include <linux/io.h>
#include <linux/reboot.h>

#include <asm/setup.h>
#include <asm/page.h>
#include <asm/e820.h>
#include <asm/pgtable.h>
#include <asm/tlbflush.h>
#include <asm/proto.h>
#include <asm/efi.h>
38
#include <asm/cacheflush.h>
39
#include <asm/fixmap.h>
H
Huang, Ying 已提交
40 41 42 43

static pgd_t save_pgd __initdata;
static unsigned long efi_flags __initdata;

44
static void __init early_code_mapping_set_exec(int executable)
H
Huang, Ying 已提交
45 46 47 48
{
	efi_memory_desc_t *md;
	void *p;

49 50 51
	if (!(__supported_pte_mask & _PAGE_NX))
		return;

52
	/* Make EFI service code area executable */
H
Huang, Ying 已提交
53 54
	for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
		md = p;
55 56
		if (md->type == EFI_RUNTIME_SERVICES_CODE ||
		    md->type == EFI_BOOT_SERVICES_CODE)
57
			efi_set_executable(md, executable);
H
Huang, Ying 已提交
58 59 60 61 62 63 64
	}
}

void __init efi_call_phys_prelog(void)
{
	unsigned long vaddress;

65
	early_code_mapping_set_exec(1);
66
	local_irq_save(efi_flags);
H
Huang, Ying 已提交
67
	vaddress = (unsigned long)__va(0x0UL);
68
	save_pgd = *pgd_offset_k(0x0UL);
H
Huang, Ying 已提交
69 70 71 72 73 74 75 76 77 78 79 80
	set_pgd(pgd_offset_k(0x0UL), *pgd_offset_k(vaddress));
	__flush_tlb_all();
}

void __init efi_call_phys_epilog(void)
{
	/*
	 * After the lock is released, the original page table is restored.
	 */
	set_pgd(pgd_offset_k(0x0UL), save_pgd);
	__flush_tlb_all();
	local_irq_restore(efi_flags);
81
	early_code_mapping_set_exec(0);
H
Huang, Ying 已提交
82
}