2006-03-27 09:16:04 +00:00
|
|
|
#ifndef _LINUX_PFN_H_
|
|
|
|
#define _LINUX_PFN_H_
|
|
|
|
|
2008-09-11 08:31:48 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <linux/types.h>
|
2016-01-16 00:56:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* pfn_t: encapsulates a page-frame number that is optionally backed
|
|
|
|
* by memmap (struct page). Whether a pfn_t has a 'struct page'
|
|
|
|
* backing is indicated by flags in the high bits of the value.
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2016-02-12 00:13:17 +00:00
|
|
|
u64 val;
|
2016-01-16 00:56:14 +00:00
|
|
|
} pfn_t;
|
2008-09-11 08:31:48 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-27 09:16:04 +00:00
|
|
|
#define PFN_ALIGN(x) (((unsigned long)(x) + (PAGE_SIZE - 1)) & PAGE_MASK)
|
|
|
|
#define PFN_UP(x) (((x) + PAGE_SIZE-1) >> PAGE_SHIFT)
|
|
|
|
#define PFN_DOWN(x) ((x) >> PAGE_SHIFT)
|
2008-09-11 08:31:48 +00:00
|
|
|
#define PFN_PHYS(x) ((phys_addr_t)(x) << PAGE_SHIFT)
|
2016-01-14 23:18:33 +00:00
|
|
|
#define PHYS_PFN(x) ((unsigned long)((x) >> PAGE_SHIFT))
|
2006-03-27 09:16:04 +00:00
|
|
|
|
|
|
|
#endif
|