mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
Hibernation: Pass CR3 in the image header on x86_64
Since we already pass the address of restore_registers() in the image header, we can also pass the value of the CR3 register from before the hibernation in the same way. This will allow us to avoid using init_level4_pgt page tables during the restore. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> Cc: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d158cbdf39
commit
c30bb68c26
2 changed files with 17 additions and 7 deletions
|
@ -156,6 +156,12 @@ extern int restore_image(void);
|
||||||
*/
|
*/
|
||||||
unsigned long restore_jump_address;
|
unsigned long restore_jump_address;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Value of the cr3 register from before the hibernation (this value is passed
|
||||||
|
* in the image header).
|
||||||
|
*/
|
||||||
|
unsigned long restore_cr3;
|
||||||
|
|
||||||
pgd_t *temp_level4_pgt;
|
pgd_t *temp_level4_pgt;
|
||||||
|
|
||||||
void *relocated_restore_code;
|
void *relocated_restore_code;
|
||||||
|
@ -254,7 +260,8 @@ int pfn_is_nosave(unsigned long pfn)
|
||||||
|
|
||||||
struct restore_data_record {
|
struct restore_data_record {
|
||||||
unsigned long jump_address;
|
unsigned long jump_address;
|
||||||
unsigned long control;
|
unsigned long cr3;
|
||||||
|
unsigned long magic;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define RESTORE_MAGIC 0x0123456789ABCDEFUL
|
#define RESTORE_MAGIC 0x0123456789ABCDEFUL
|
||||||
|
@ -271,7 +278,8 @@ int arch_hibernation_header_save(void *addr, unsigned int max_size)
|
||||||
if (max_size < sizeof(struct restore_data_record))
|
if (max_size < sizeof(struct restore_data_record))
|
||||||
return -EOVERFLOW;
|
return -EOVERFLOW;
|
||||||
rdr->jump_address = restore_jump_address;
|
rdr->jump_address = restore_jump_address;
|
||||||
rdr->control = (restore_jump_address ^ RESTORE_MAGIC);
|
rdr->cr3 = restore_cr3;
|
||||||
|
rdr->magic = RESTORE_MAGIC;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -285,7 +293,7 @@ int arch_hibernation_header_restore(void *addr)
|
||||||
struct restore_data_record *rdr = addr;
|
struct restore_data_record *rdr = addr;
|
||||||
|
|
||||||
restore_jump_address = rdr->jump_address;
|
restore_jump_address = rdr->jump_address;
|
||||||
return (rdr->control == (restore_jump_address ^ RESTORE_MAGIC)) ?
|
restore_cr3 = rdr->cr3;
|
||||||
0 : -EINVAL;
|
return (rdr->magic == RESTORE_MAGIC) ? 0 : -EINVAL;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_HIBERNATION */
|
#endif /* CONFIG_HIBERNATION */
|
||||||
|
|
|
@ -39,6 +39,9 @@ ENTRY(swsusp_arch_suspend)
|
||||||
/* save the address of restore_registers */
|
/* save the address of restore_registers */
|
||||||
movq $restore_registers, %rax
|
movq $restore_registers, %rax
|
||||||
movq %rax, restore_jump_address(%rip)
|
movq %rax, restore_jump_address(%rip)
|
||||||
|
/* save cr3 */
|
||||||
|
movq %cr3, %rax
|
||||||
|
movq %rax, restore_cr3(%rip)
|
||||||
|
|
||||||
call swsusp_save
|
call swsusp_save
|
||||||
ret
|
ret
|
||||||
|
@ -60,6 +63,7 @@ ENTRY(restore_image)
|
||||||
|
|
||||||
/* prepare to jump to the image kernel */
|
/* prepare to jump to the image kernel */
|
||||||
movq restore_jump_address(%rip), %rax
|
movq restore_jump_address(%rip), %rax
|
||||||
|
movq restore_cr3(%rip), %rbx
|
||||||
|
|
||||||
/* prepare to copy image data to their original locations */
|
/* prepare to copy image data to their original locations */
|
||||||
movq restore_pblist(%rip), %rdx
|
movq restore_pblist(%rip), %rdx
|
||||||
|
@ -98,9 +102,7 @@ done:
|
||||||
|
|
||||||
ENTRY(restore_registers)
|
ENTRY(restore_registers)
|
||||||
/* go back to the original page tables */
|
/* go back to the original page tables */
|
||||||
movq $(init_level4_pgt - __START_KERNEL_map), %rax
|
movq %rbx, %cr3
|
||||||
addq phys_base(%rip), %rax
|
|
||||||
movq %rax, %cr3
|
|
||||||
|
|
||||||
/* Flush TLB, including "global" things (vmalloc) */
|
/* Flush TLB, including "global" things (vmalloc) */
|
||||||
movq mmu_cr4_features(%rip), %rax
|
movq mmu_cr4_features(%rip), %rax
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue