2019-05-27 08:55:01 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2007-04-30 21:37:15 +10:00
|
|
|
/*
|
|
|
|
* Common powerpc suspend code for 32 and 64 bits
|
|
|
|
*
|
|
|
|
* Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/sched.h>
|
2017-03-06 19:25:31 +11:00
|
|
|
#include <linux/suspend.h>
|
2007-04-30 21:37:15 +10:00
|
|
|
#include <asm/current.h>
|
|
|
|
#include <asm/mmu_context.h>
|
2012-03-28 18:30:02 +01:00
|
|
|
#include <asm/switch_to.h>
|
2007-04-30 21:37:15 +10:00
|
|
|
|
|
|
|
void save_processor_state(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* flush out all the special registers so we don't need
|
|
|
|
* to save them in the snapshot
|
|
|
|
*/
|
2015-10-29 11:44:09 +11:00
|
|
|
flush_all_to_thread(current);
|
2007-05-03 22:31:38 +10:00
|
|
|
|
|
|
|
#ifdef CONFIG_PPC64
|
|
|
|
hard_irq_disable();
|
|
|
|
#endif
|
|
|
|
|
2007-04-30 21:37:15 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void restore_processor_state(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_PPC32
|
2016-04-29 23:26:01 +10:00
|
|
|
switch_mmu_context(current->active_mm, current->active_mm, NULL);
|
2007-04-30 21:37:15 +10:00
|
|
|
#endif
|
|
|
|
}
|