aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen/p2m.h
blob: ad8aee24ab72891d3c499b441ea0d1053dbd65b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _XEN_P2M_H
#define _XEN_P2M_H

#define P2M_PER_PAGE        (PAGE_SIZE / sizeof(unsigned long))
#define P2M_MID_PER_PAGE    (PAGE_SIZE / sizeof(unsigned long *))
#define P2M_TOP_PER_PAGE    (PAGE_SIZE / sizeof(unsigned long **))

#define MAX_P2M_PFN         (P2M_TOP_PER_PAGE * P2M_MID_PER_PAGE * P2M_PER_PAGE)

#define MAX_REMAP_RANGES    10

extern unsigned long __init set_phys_range_identity(unsigned long pfn_s,
                                      unsigned long pfn_e);

#endif  /* _XEN_P2M_H */