hibernate_64.c 5.6 KB
Newer Older
1 2 3 4 5 6
/*
 * Hibernation support for x86-64
 *
 * Distribute under GPLv2
 *
 * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
P
Pavel Machek 已提交
7
 * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
8 9 10
 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
 */

11
#include <linux/gfp.h>
12 13
#include <linux/smp.h>
#include <linux/suspend.h>
14 15

#include <asm/init.h>
16 17 18 19
#include <asm/proto.h>
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/mtrr.h>
20
#include <asm/sections.h>
21
#include <asm/suspend.h>
22
#include <asm/tlbflush.h>
23

24
/* Defined in hibernate_asm_64.S */
25
extern asmlinkage __visible int restore_image(void);
26 27 28 29 30

/*
 * Address to jump to in the last phase of restore in order to get to the image
 * kernel's text (this value is passed in the image header).
 */
31
unsigned long restore_jump_address __visible;
32
unsigned long jump_address_phys;
33 34 35 36 37

/*
 * Value of the cr3 register from before the hibernation (this value is passed
 * in the image header).
 */
38
unsigned long restore_cr3 __visible;
39

40
unsigned long temp_level4_pgt __visible;
41

42 43
unsigned long relocated_restore_code __visible;

44
static int set_up_temporary_text_mapping(pgd_t *pgd)
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
{
	pmd_t *pmd;
	pud_t *pud;

	/*
	 * The new mapping only has to cover the page containing the image
	 * kernel's entry point (jump_address_phys), because the switch over to
	 * it is carried out by relocated code running from a page allocated
	 * specifically for this purpose and covered by the identity mapping, so
	 * the temporary kernel text mapping is only needed for the final jump.
	 * Moreover, in that mapping the virtual address of the image kernel's
	 * entry point must be the same as its virtual address in the image
	 * kernel (restore_jump_address), so the image kernel's
	 * restore_registers() code doesn't find itself in a different area of
	 * the virtual address space after switching over to the original page
	 * tables used by the image kernel.
	 */
	pud = (pud_t *)get_safe_page(GFP_ATOMIC);
	if (!pud)
		return -ENOMEM;

	pmd = (pmd_t *)get_safe_page(GFP_ATOMIC);
	if (!pmd)
		return -ENOMEM;

	set_pmd(pmd + pmd_index(restore_jump_address),
		__pmd((jump_address_phys & PMD_MASK) | __PAGE_KERNEL_LARGE_EXEC));
	set_pud(pud + pud_index(restore_jump_address),
		__pud(__pa(pmd) | _KERNPG_TABLE));
74
	set_pgd(pgd + pgd_index(restore_jump_address),
75 76 77 78
		__pgd(__pa(pud) | _KERNPG_TABLE));

	return 0;
}
79

80
static void *alloc_pgt_page(void *context)
81
{
82
	return (void *)get_safe_page(GFP_ATOMIC);
83 84 85 86
}

static int set_up_temporary_mappings(void)
{
87 88 89 90 91 92
	struct x86_mapping_info info = {
		.alloc_pgt_page	= alloc_pgt_page,
		.pmd_flag	= __PAGE_KERNEL_LARGE_EXEC,
		.kernel_mapping = true,
	};
	unsigned long mstart, mend;
93
	pgd_t *pgd;
94 95
	int result;
	int i;
96

97 98
	pgd = (pgd_t *)get_safe_page(GFP_ATOMIC);
	if (!pgd)
99 100
		return -ENOMEM;

101
	/* Prepare a temporary mapping for the kernel text */
102
	result = set_up_temporary_text_mapping(pgd);
103 104
	if (result)
		return result;
105 106

	/* Set up the direct mapping from scratch */
107 108 109 110
	for (i = 0; i < nr_pfn_mapped; i++) {
		mstart = pfn_mapped[i].start << PAGE_SHIFT;
		mend   = pfn_mapped[i].end << PAGE_SHIFT;

111
		result = kernel_ident_mapping_init(&info, pgd, mstart, mend);
112 113
		if (result)
			return result;
114
	}
115

116
	temp_level4_pgt = (unsigned long)pgd - __PAGE_OFFSET;
117 118 119
	return 0;
}

120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static int relocate_restore_code(void)
{
	pgd_t *pgd;
	pud_t *pud;

	relocated_restore_code = get_safe_page(GFP_ATOMIC);
	if (!relocated_restore_code)
		return -ENOMEM;

	memcpy((void *)relocated_restore_code, &core_restore_code, PAGE_SIZE);

	/* Make the page containing the relocated code executable */
	pgd = (pgd_t *)__va(read_cr3()) + pgd_index(relocated_restore_code);
	pud = pud_offset(pgd, relocated_restore_code);
	if (pud_large(*pud)) {
		set_pud(pud, __pud(pud_val(*pud) & ~_PAGE_NX));
	} else {
		pmd_t *pmd = pmd_offset(pud, relocated_restore_code);

		if (pmd_large(*pmd)) {
			set_pmd(pmd, __pmd(pmd_val(*pmd) & ~_PAGE_NX));
		} else {
			pte_t *pte = pte_offset_kernel(pmd, relocated_restore_code);

			set_pte(pte, __pte(pte_val(*pte) & ~_PAGE_NX));
		}
	}
	__flush_tlb_all();

	return 0;
}

152 153 154 155 156
int swsusp_arch_resume(void)
{
	int error;

	/* We have got enough memory and from now on we cannot recover */
157 158
	error = set_up_temporary_mappings();
	if (error)
159 160
		return error;

161 162 163
	error = relocate_restore_code();
	if (error)
		return error;
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

	restore_image();
	return 0;
}

/*
 *	pfn_is_nosave - check if given pfn is in the 'nosave' section
 */

int pfn_is_nosave(unsigned long pfn)
{
	unsigned long nosave_begin_pfn = __pa_symbol(&__nosave_begin) >> PAGE_SHIFT;
	unsigned long nosave_end_pfn = PAGE_ALIGN(__pa_symbol(&__nosave_end)) >> PAGE_SHIFT;
	return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
}

struct restore_data_record {
	unsigned long jump_address;
182
	unsigned long jump_address_phys;
183 184 185 186
	unsigned long cr3;
	unsigned long magic;
};

187
#define RESTORE_MAGIC	0x123456789ABCDEF0UL
188 189 190 191 192 193 194 195 196 197 198 199

/**
 *	arch_hibernation_header_save - populate the architecture specific part
 *		of a hibernation image header
 *	@addr: address to save the data at
 */
int arch_hibernation_header_save(void *addr, unsigned int max_size)
{
	struct restore_data_record *rdr = addr;

	if (max_size < sizeof(struct restore_data_record))
		return -EOVERFLOW;
200 201
	rdr->jump_address = (unsigned long)&restore_registers;
	rdr->jump_address_phys = __pa_symbol(&restore_registers);
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
	rdr->cr3 = restore_cr3;
	rdr->magic = RESTORE_MAGIC;
	return 0;
}

/**
 *	arch_hibernation_header_restore - read the architecture specific data
 *		from the hibernation image header
 *	@addr: address to read the data from
 */
int arch_hibernation_header_restore(void *addr)
{
	struct restore_data_record *rdr = addr;

	restore_jump_address = rdr->jump_address;
217
	jump_address_phys = rdr->jump_address_phys;
218 219 220
	restore_cr3 = rdr->cr3;
	return (rdr->magic == RESTORE_MAGIC) ? 0 : -EINVAL;
}