Merge tag 'drm-intel-fixes-2016-05-02' of git://anongit.freedesktop.org/drm-intel...
[deliverable/linux.git] / include / linux / vmalloc.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_VMALLOC_H
2#define _LINUX_VMALLOC_H
3
4#include <linux/spinlock.h>
db64fe02 5#include <linux/init.h>
13ba3fcb 6#include <linux/list.h>
1da177e4 7#include <asm/page.h> /* pgprot_t */
13ba3fcb 8#include <linux/rbtree.h>
1da177e4 9
605d9288 10struct vm_area_struct; /* vma defining user mapping in mm_types.h */
83342314 11
605d9288 12/* bits in flags of vmalloc's vm_struct below */
20fc02b4
ZY
13#define VM_IOREMAP 0x00000001 /* ioremap() and friends */
14#define VM_ALLOC 0x00000002 /* vmalloc() */
15#define VM_MAP 0x00000004 /* vmap()ed pages */
16#define VM_USERMAP 0x00000008 /* suitable for remap_vmalloc_range */
20fc02b4 17#define VM_UNINITIALIZED 0x00000020 /* vm_struct is not fully initialized */
71394fe5 18#define VM_NO_GUARD 0x00000040 /* don't add guard page */
a5af5aa8 19#define VM_KASAN 0x00000080 /* has allocated kasan shadow memory */
1da177e4
LT
20/* bits [20..32] reserved for arch specific ioremap internals */
21
fd195c49
DS
22/*
23 * Maximum alignment for ioremap() regions.
24 * Can be overriden by arch-specific value.
25 */
26#ifndef IOREMAP_MAX_ORDER
27#define IOREMAP_MAX_ORDER (7 + PAGE_SHIFT) /* 128 pages */
28#endif
29
1da177e4 30struct vm_struct {
2b4ac44e 31 struct vm_struct *next;
1da177e4
LT
32 void *addr;
33 unsigned long size;
34 unsigned long flags;
35 struct page **pages;
36 unsigned int nr_pages;
ffa71f33 37 phys_addr_t phys_addr;
5e6cafc8 38 const void *caller;
1da177e4
LT
39};
40
13ba3fcb
AK
41struct vmap_area {
42 unsigned long va_start;
43 unsigned long va_end;
44 unsigned long flags;
45 struct rb_node rb_node; /* address sorted rbtree */
46 struct list_head list; /* address sorted list */
47 struct list_head purge_list; /* "lazy purge" list */
48 struct vm_struct *vm;
49 struct rcu_head rcu_head;
50};
51
1da177e4
LT
52/*
53 * Highlevel APIs for driver use
54 */
db64fe02
NP
55extern void vm_unmap_ram(const void *mem, unsigned int count);
56extern void *vm_map_ram(struct page **pages, unsigned int count,
57 int node, pgprot_t prot);
58extern void vm_unmap_aliases(void);
59
60#ifdef CONFIG_MMU
61extern void __init vmalloc_init(void);
62#else
63static inline void vmalloc_init(void)
64{
65}
66#endif
67
1da177e4 68extern void *vmalloc(unsigned long size);
e1ca7788 69extern void *vzalloc(unsigned long size);
83342314 70extern void *vmalloc_user(unsigned long size);
930fc45a 71extern void *vmalloc_node(unsigned long size, int node);
e1ca7788 72extern void *vzalloc_node(unsigned long size, int node);
1da177e4
LT
73extern void *vmalloc_exec(unsigned long size);
74extern void *vmalloc_32(unsigned long size);
83342314 75extern void *vmalloc_32_user(unsigned long size);
dd0fc66f 76extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot);
d0a21265
DR
77extern void *__vmalloc_node_range(unsigned long size, unsigned long align,
78 unsigned long start, unsigned long end, gfp_t gfp_mask,
cb9e3c29
AR
79 pgprot_t prot, unsigned long vm_flags, int node,
80 const void *caller);
81
b3bdda02 82extern void vfree(const void *addr);
1da177e4
LT
83
84extern void *vmap(struct page **pages, unsigned int count,
85 unsigned long flags, pgprot_t prot);
b3bdda02 86extern void vunmap(const void *addr);
83342314 87
e69e9d4a
HD
88extern int remap_vmalloc_range_partial(struct vm_area_struct *vma,
89 unsigned long uaddr, void *kaddr,
90 unsigned long size);
91
83342314
NP
92extern int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
93 unsigned long pgoff);
1eeb66a1 94void vmalloc_sync_all(void);
1da177e4
LT
95
96/*
97 * Lowlevel-APIs (not for driver use!)
98 */
9585116b
JF
99
100static inline size_t get_vm_area_size(const struct vm_struct *area)
101{
71394fe5
AR
102 if (!(area->flags & VM_NO_GUARD))
103 /* return actual size without guard page */
104 return area->size - PAGE_SIZE;
105 else
106 return area->size;
107
9585116b
JF
108}
109
1da177e4 110extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags);
23016969 111extern struct vm_struct *get_vm_area_caller(unsigned long size,
5e6cafc8 112 unsigned long flags, const void *caller);
1da177e4
LT
113extern struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
114 unsigned long start, unsigned long end);
c2968612
BH
115extern struct vm_struct *__get_vm_area_caller(unsigned long size,
116 unsigned long flags,
117 unsigned long start, unsigned long end,
5e6cafc8 118 const void *caller);
b3bdda02 119extern struct vm_struct *remove_vm_area(const void *addr);
e9da6e99 120extern struct vm_struct *find_vm_area(const void *addr);
c19c03fc 121
1da177e4 122extern int map_vm_area(struct vm_struct *area, pgprot_t prot,
f6f8ed47 123 struct page **pages);
b554cb42 124#ifdef CONFIG_MMU
8fc48985
TH
125extern int map_kernel_range_noflush(unsigned long start, unsigned long size,
126 pgprot_t prot, struct page **pages);
127extern void unmap_kernel_range_noflush(unsigned long addr, unsigned long size);
c19c03fc 128extern void unmap_kernel_range(unsigned long addr, unsigned long size);
b554cb42
GY
129#else
130static inline int
131map_kernel_range_noflush(unsigned long start, unsigned long size,
132 pgprot_t prot, struct page **pages)
133{
134 return size >> PAGE_SHIFT;
135}
136static inline void
137unmap_kernel_range_noflush(unsigned long addr, unsigned long size)
138{
139}
140static inline void
141unmap_kernel_range(unsigned long addr, unsigned long size)
142{
143}
144#endif
1da177e4 145
5f4352fb 146/* Allocate/destroy a 'vmalloc' VM area. */
cd12909c 147extern struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes);
5f4352fb
JF
148extern void free_vm_area(struct vm_struct *area);
149
69beeb1d
KM
150/* for /dev/kmem */
151extern long vread(char *buf, char *addr, unsigned long count);
152extern long vwrite(char *buf, char *addr, unsigned long count);
153
1da177e4
LT
154/*
155 * Internals. Dont't use..
156 */
f1c4069e 157extern struct list_head vmap_area_list;
be9b7335 158extern __init void vm_area_add_early(struct vm_struct *vm);
c0c0a293 159extern __init void vm_area_register_early(struct vm_struct *vm, size_t align);
1da177e4 160
4f8b02b4 161#ifdef CONFIG_SMP
b554cb42 162# ifdef CONFIG_MMU
ca23e405
TH
163struct vm_struct **pcpu_get_vm_areas(const unsigned long *offsets,
164 const size_t *sizes, int nr_vms,
ec3f64fc 165 size_t align);
ca23e405
TH
166
167void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms);
b554cb42
GY
168# else
169static inline struct vm_struct **
170pcpu_get_vm_areas(const unsigned long *offsets,
171 const size_t *sizes, int nr_vms,
172 size_t align)
173{
174 return NULL;
175}
176
177static inline void
178pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms)
179{
180}
181# endif
4f8b02b4 182#endif
ca23e405 183
db3808c1
JK
184#ifdef CONFIG_MMU
185#define VMALLOC_TOTAL (VMALLOC_END - VMALLOC_START)
db3808c1 186#else
db3808c1 187#define VMALLOC_TOTAL 0UL
db3808c1
JK
188#endif
189
1da177e4 190#endif /* _LINUX_VMALLOC_H */
This page took 1.642647 seconds and 5 git commands to generate.