blob: 67460f0102245ed147fad98def1ba6d78ab98f1a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_HIGHMEM_H
2#define _LINUX_HIGHMEM_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/fs.h>
Cesar Eduardo Barros597781f2010-08-09 17:18:32 -07005#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/mm.h>
Peter Zijlstraad76fb62006-12-06 20:32:21 -08007#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9#include <asm/cacheflush.h>
10
James Bottomley03beb072006-03-26 01:36:57 -080011#ifndef ARCH_HAS_FLUSH_ANON_PAGE
Russell Kinga6f36be2006-12-30 22:24:19 +000012static inline void flush_anon_page(struct vm_area_struct *vma, struct page *page, unsigned long vmaddr)
James Bottomley03beb072006-03-26 01:36:57 -080013{
14}
15#endif
16
James Bottomley5a3a5a92006-03-26 01:36:59 -080017#ifndef ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
18static inline void flush_kernel_dcache_page(struct page *page)
19{
20}
James Bottomley9df5f7412010-01-25 11:42:20 -060021static inline void flush_kernel_vmap_range(void *vaddr, int size)
22{
23}
24static inline void invalidate_kernel_vmap_range(void *vaddr, int size)
25{
26}
James Bottomley5a3a5a92006-03-26 01:36:59 -080027#endif
28
Kumar Gala3688e072009-04-01 23:38:49 -050029#include <asm/kmap_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Akinobu Mitaff3d58c2010-05-24 14:32:46 -070031#ifdef CONFIG_DEBUG_HIGHMEM
Kumar Gala3688e072009-04-01 23:38:49 -050032
33void debug_kmap_atomic(enum km_type type);
34
35#else
36
37static inline void debug_kmap_atomic(enum km_type type)
38{
39}
40
41#endif
42
43#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/highmem.h>
45
46/* declarations for linux/mm/highmem.c */
47unsigned int nr_free_highpages(void);
Christoph Lameterc1f60a52006-09-25 23:31:11 -070048extern unsigned long totalhigh_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020050void kmap_flush_unused(void);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#else /* CONFIG_HIGHMEM */
53
54static inline unsigned int nr_free_highpages(void) { return 0; }
55
Andreas Fenkart4b529402010-01-08 14:42:31 -080056#define totalhigh_pages 0UL
Christoph Lameterc1f60a52006-09-25 23:31:11 -070057
James Bottomleya6ca1b92006-09-25 23:30:55 -070058#ifndef ARCH_HAS_KMAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static inline void *kmap(struct page *page)
60{
61 might_sleep();
62 return page_address(page);
63}
64
Matthew Wilcox31c91132009-06-16 15:32:45 -070065static inline void kunmap(struct page *page)
66{
67}
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020069static inline void *kmap_atomic(struct page *page, enum km_type idx)
70{
71 pagefault_disable();
72 return page_address(page);
73}
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020074#define kmap_atomic_prot(page, idx, prot) kmap_atomic(page, idx)
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020075
Cesar Eduardo Barros597781f2010-08-09 17:18:32 -070076#define kunmap_atomic_notypecheck(addr, idx) do { pagefault_enable(); } while (0)
Peter Zijlstraad76fb62006-12-06 20:32:21 -080077#define kmap_atomic_pfn(pfn, idx) kmap_atomic(pfn_to_page(pfn), (idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define kmap_atomic_to_page(ptr) virt_to_page(ptr)
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020079
80#define kmap_flush_unused() do {} while(0)
James Bottomleya6ca1b92006-09-25 23:30:55 -070081#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#endif /* CONFIG_HIGHMEM */
84
Cesar Eduardo Barros597781f2010-08-09 17:18:32 -070085/* Prevent people trying to call kunmap_atomic() as if it were kunmap() */
86/* kunmap_atomic() should get the return value of kmap_atomic, not the page. */
87#define kunmap_atomic(addr, idx) do { \
88 BUILD_BUG_ON(__same_type((addr), struct page *)); \
89 kunmap_atomic_notypecheck((addr), (idx)); \
90 } while (0)
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */
Russell King487ff322008-11-27 11:13:58 +000093#ifndef clear_user_highpage
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static inline void clear_user_highpage(struct page *page, unsigned long vaddr)
95{
96 void *addr = kmap_atomic(page, KM_USER0);
97 clear_user_page(addr, vaddr, page);
98 kunmap_atomic(addr, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
Russell King487ff322008-11-27 11:13:58 +0000100#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#ifndef __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
Mel Gorman769848c2007-07-17 04:03:05 -0700103/**
104 * __alloc_zeroed_user_highpage - Allocate a zeroed HIGHMEM page for a VMA with caller-specified movable GFP flags
105 * @movableflags: The GFP flags related to the pages future ability to move like __GFP_MOVABLE
106 * @vma: The VMA the page is to be allocated for
107 * @vaddr: The virtual address the page will be inserted into
108 *
109 * This function will allocate a page for a VMA but the caller is expected
110 * to specify via movableflags whether the page will be movable in the
111 * future or not
112 *
113 * An architecture may override this function by defining
114 * __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE and providing their own
115 * implementation.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static inline struct page *
Mel Gorman769848c2007-07-17 04:03:05 -0700118__alloc_zeroed_user_highpage(gfp_t movableflags,
119 struct vm_area_struct *vma,
120 unsigned long vaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Mel Gorman769848c2007-07-17 04:03:05 -0700122 struct page *page = alloc_page_vma(GFP_HIGHUSER | movableflags,
123 vma, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (page)
126 clear_user_highpage(page, vaddr);
127
128 return page;
129}
130#endif
131
Mel Gorman769848c2007-07-17 04:03:05 -0700132/**
Mel Gorman769848c2007-07-17 04:03:05 -0700133 * alloc_zeroed_user_highpage_movable - Allocate a zeroed HIGHMEM page for a VMA that the caller knows can move
134 * @vma: The VMA the page is to be allocated for
135 * @vaddr: The virtual address the page will be inserted into
136 *
137 * This function will allocate a page for a VMA that the caller knows will
138 * be able to migrate in the future using move_pages() or reclaimed
139 */
140static inline struct page *
141alloc_zeroed_user_highpage_movable(struct vm_area_struct *vma,
142 unsigned long vaddr)
143{
144 return __alloc_zeroed_user_highpage(__GFP_MOVABLE, vma, vaddr);
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static inline void clear_highpage(struct page *page)
148{
149 void *kaddr = kmap_atomic(page, KM_USER0);
150 clear_page(kaddr);
151 kunmap_atomic(kaddr, KM_USER0);
152}
153
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800154static inline void zero_user_segments(struct page *page,
155 unsigned start1, unsigned end1,
156 unsigned start2, unsigned end2)
157{
158 void *kaddr = kmap_atomic(page, KM_USER0);
159
160 BUG_ON(end1 > PAGE_SIZE || end2 > PAGE_SIZE);
161
162 if (end1 > start1)
163 memset(kaddr + start1, 0, end1 - start1);
164
165 if (end2 > start2)
166 memset(kaddr + start2, 0, end2 - start2);
167
168 kunmap_atomic(kaddr, KM_USER0);
169 flush_dcache_page(page);
170}
171
172static inline void zero_user_segment(struct page *page,
173 unsigned start, unsigned end)
174{
175 zero_user_segments(page, start, end, 0, 0);
176}
177
178static inline void zero_user(struct page *page,
179 unsigned start, unsigned size)
180{
181 zero_user_segments(page, start, start + size, 0, 0);
182}
Nate Diller01f27052007-05-09 02:35:07 -0700183
Nate Dillerf37bc272007-05-09 02:35:09 -0700184static inline void __deprecated memclear_highpage_flush(struct page *page,
Nate Diller01f27052007-05-09 02:35:07 -0700185 unsigned int offset, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800187 zero_user(page, offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000190#ifndef __HAVE_ARCH_COPY_USER_HIGHPAGE
191
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000192static inline void copy_user_highpage(struct page *to, struct page *from,
193 unsigned long vaddr, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 char *vfrom, *vto;
196
197 vfrom = kmap_atomic(from, KM_USER0);
198 vto = kmap_atomic(to, KM_USER1);
199 copy_user_page(vto, vfrom, vaddr, to);
200 kunmap_atomic(vfrom, KM_USER0);
201 kunmap_atomic(vto, KM_USER1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000204#endif
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static inline void copy_highpage(struct page *to, struct page *from)
207{
208 char *vfrom, *vto;
209
210 vfrom = kmap_atomic(from, KM_USER0);
211 vto = kmap_atomic(to, KM_USER1);
212 copy_page(vto, vfrom);
213 kunmap_atomic(vfrom, KM_USER0);
214 kunmap_atomic(vto, KM_USER1);
215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#endif /* _LINUX_HIGHMEM_H */