efi_32.c 2.3 KB
Newer Older
L
Linus Torvalds 已提交
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
/*
 * Extensible Firmware Interface
 *
 * Based on Extensible Firmware Interface Specification version 1.0
 *
 * Copyright (C) 1999 VA Linux Systems
 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
 * Copyright (C) 1999-2002 Hewlett-Packard Co.
 *	David Mosberger-Tang <davidm@hpl.hp.com>
 *	Stephane Eranian <eranian@hpl.hp.com>
 *
 * All EFI Runtime Services are not implemented yet as EFI only
 * supports physical mode addressing on SoftSDV. This is to be fixed
 * in a future version.  --drummond 1999-07-20
 *
 * Implemented EFI runtime services and virtual mode calls.  --davidm
 *
 * Goutham Rao: <goutham.rao@intel.com>
 *	Skip non-WB memory and ignore empty memory ranges.
 */

#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/ioport.h>
#include <linux/efi.h>

#include <asm/io.h>
28
#include <asm/desc.h>
L
Linus Torvalds 已提交
29 30 31
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/tlbflush.h>
H
Harvey Harrison 已提交
32
#include <asm/efi.h>
L
Linus Torvalds 已提交
33 34 35

/*
 * To make EFI call EFI runtime service in physical addressing mode we need
36
 * prolog/epilog before/after the invocation to disable interrupt, to
L
Linus Torvalds 已提交
37 38 39 40 41
 * claim EFI runtime service handler exclusively and to duplicate a memory in
 * low memory space say 0 - 3G.
 */
static unsigned long efi_rt_eflags;

42
void efi_sync_low_kernel_mappings(void) {}
43
void __init efi_dump_pagetable(void) {}
44
int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages)
45 46 47
{
	return 0;
}
48 49 50
void __init efi_cleanup_page_tables(unsigned long pa_memmap, unsigned num_pages)
{
}
51 52 53 54 55 56

void __init efi_map_region(efi_memory_desc_t *md)
{
	old_map_region(md);
}

57
void __init efi_map_region_fixed(efi_memory_desc_t *md) {}
58
void __init parse_efi_setup(u64 phys_addr, u32 data_len) {}
59

60
void __init efi_call_phys_prolog(void)
L
Linus Torvalds 已提交
61
{
62
	struct desc_ptr gdt_descr;
L
Linus Torvalds 已提交
63 64 65

	local_irq_save(efi_rt_eflags);

66
	load_cr3(initial_page_table);
67
	__flush_tlb_all();
L
Linus Torvalds 已提交
68

R
Rusty Russell 已提交
69 70 71
	gdt_descr.address = __pa(get_cpu_gdt_table(0));
	gdt_descr.size = GDT_SIZE - 1;
	load_gdt(&gdt_descr);
L
Linus Torvalds 已提交
72 73
}

74
void __init efi_call_phys_epilog(void)
L
Linus Torvalds 已提交
75
{
76
	struct desc_ptr gdt_descr;
L
Linus Torvalds 已提交
77

R
Rusty Russell 已提交
78 79 80
	gdt_descr.address = (unsigned long)get_cpu_gdt_table(0);
	gdt_descr.size = GDT_SIZE - 1;
	load_gdt(&gdt_descr);
81

82
	load_cr3(swapper_pg_dir);
83
	__flush_tlb_all();
L
Linus Torvalds 已提交
84 85 86

	local_irq_restore(efi_rt_eflags);
}
B
Borislav Petkov 已提交
87 88 89 90 91 92

void __init efi_runtime_mkexec(void)
{
	if (__supported_pte_mask & _PAGE_NX)
		runtime_code_page_mkexec();
}