blob: b84992c10854d778b1c7987b4278cef13820abbf [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Suspend support specific for power.
4 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005 * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
6 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
7 */
8
9#include <linux/mm.h>
David Brazdil0f672f62019-12-10 10:32:29 +000010#include <linux/suspend.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000011#include <asm/page.h>
12#include <asm/sections.h>
13
14/*
15 * pfn_is_nosave - check if given pfn is in the 'nosave' section
16 */
17
18int pfn_is_nosave(unsigned long pfn)
19{
20 unsigned long nosave_begin_pfn = __pa(&__nosave_begin) >> PAGE_SHIFT;
21 unsigned long nosave_end_pfn = PAGE_ALIGN(__pa(&__nosave_end)) >> PAGE_SHIFT;
22 return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
23}