summaryrefslogtreecommitdiffstats
path: root/arch/arm/mm/map.h
blob: 1d071748df89f5914d7b52dd14c43dee6f5b4654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 *  linux/arch/arm/mm/map.h
 *
 *  Copyright (C) 1999 Russell King
 *
 *  Page table mapping constructs and function prototypes
 */
struct map_desc {
	unsigned long virtual;
	unsigned long physical;
	unsigned long length;
	int domain:4,
	    prot_read:1,
	    prot_write:1,
	    cacheable:1,
	    bufferable:1;
};

extern struct map_desc	io_desc[];
extern unsigned int	io_desc_size;

struct meminfo;

extern void create_memmap_holes(struct meminfo *);
extern void pagetable_init(struct meminfo *);