OpenCores
URL https://opencores.org/ocsvn/or1k_soc_on_altera_embedded_dev_kit/or1k_soc_on_altera_embedded_dev_kit/trunk

Subversion Repositories or1k_soc_on_altera_embedded_dev_kit

[/] [or1k_soc_on_altera_embedded_dev_kit/] [trunk/] [linux-2.6/] [linux-2.6.24/] [arch/] [powerpc/] [kernel/] [suspend.c] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 xianfeng
/*
2
 * Suspend support specific for power.
3
 *
4
 * Distribute under GPLv2
5
 *
6
 * Copyright (c) 2002 Pavel Machek <pavel@suse.cz>
7
 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
8
 */
9
 
10
#include <asm/page.h>
11
 
12
/* References to section boundaries */
13
extern const void __nosave_begin, __nosave_end;
14
 
15
/*
16
 *      pfn_is_nosave - check if given pfn is in the 'nosave' section
17
 */
18
 
19
int pfn_is_nosave(unsigned long pfn)
20
{
21
        unsigned long nosave_begin_pfn = __pa(&__nosave_begin) >> PAGE_SHIFT;
22
        unsigned long nosave_end_pfn = PAGE_ALIGN(__pa(&__nosave_end)) >> PAGE_SHIFT;
23
        return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
24
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.