5efdfe759a
Based on 1 normalized pattern(s): licensed under the gplv2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 6 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Armijn Hemel <armijn@tjaldur.nl> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190530000433.961827334@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
43 lines
869 B
C
43 lines
869 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Suspend support specific for mips.
|
|
*
|
|
* Copyright (C) 2009 Lemote Inc.
|
|
* Author: Hu Hongbing <huhb@lemote.com>
|
|
* Wu Zhangjin <wuzhangjin@gmail.com>
|
|
*/
|
|
#include <asm/sections.h>
|
|
#include <asm/fpu.h>
|
|
#include <asm/dsp.h>
|
|
|
|
static u32 saved_status;
|
|
struct pt_regs saved_regs;
|
|
|
|
void save_processor_state(void)
|
|
{
|
|
saved_status = read_c0_status();
|
|
|
|
if (is_fpu_owner())
|
|
save_fp(current);
|
|
if (cpu_has_dsp)
|
|
save_dsp(current);
|
|
}
|
|
|
|
void restore_processor_state(void)
|
|
{
|
|
write_c0_status(saved_status);
|
|
|
|
if (is_fpu_owner())
|
|
restore_fp(current);
|
|
if (cpu_has_dsp)
|
|
restore_dsp(current);
|
|
}
|
|
|
|
int pfn_is_nosave(unsigned long pfn)
|
|
{
|
|
unsigned long nosave_begin_pfn = PFN_DOWN(__pa(&__nosave_begin));
|
|
unsigned long nosave_end_pfn = PFN_UP(__pa(&__nosave_end));
|
|
|
|
return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
|
|
}
|