blob: 6ede661e5b8ebc201983bcc90ea53c2f4d71ffb6 [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>
Paul Gortmaker187f1882011-11-23 20:12:59 -05006#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/mm.h>
Peter Zijlstraad76fb62006-12-06 20:32:21 -08008#include <linux/uaccess.h>
Catalin Marinas43b3a0c2010-11-11 14:05:10 -08009#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <asm/cacheflush.h>
12
James Bottomley03beb072006-03-26 01:36:57 -080013#ifndef ARCH_HAS_FLUSH_ANON_PAGE
Russell Kinga6f36be2006-12-30 22:24:19 +000014static inline void flush_anon_page(struct vm_area_struct *vma, struct page *page, unsigned long vmaddr)
James Bottomley03beb072006-03-26 01:36:57 -080015{
16}
17#endif
18
James Bottomley5a3a5a92006-03-26 01:36:59 -080019#ifndef ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
20static inline void flush_kernel_dcache_page(struct page *page)
21{
22}
James Bottomley9df5f7412010-01-25 11:42:20 -060023static inline void flush_kernel_vmap_range(void *vaddr, int size)
24{
25}
26static inline void invalidate_kernel_vmap_range(void *vaddr, int size)
27{
28}
James Bottomley5a3a5a92006-03-26 01:36:59 -080029#endif
30
Kumar Gala3688e072009-04-01 23:38:49 -050031#include <asm/kmap_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Kumar Gala3688e072009-04-01 23:38:49 -050033#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/highmem.h>
35
36/* declarations for linux/mm/highmem.c */
37unsigned int nr_free_highpages(void);
Christoph Lameterc1f60a52006-09-25 23:31:11 -070038extern unsigned long totalhigh_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020040void kmap_flush_unused(void);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#else /* CONFIG_HIGHMEM */
43
44static inline unsigned int nr_free_highpages(void) { return 0; }
45
Andreas Fenkart4b529402010-01-08 14:42:31 -080046#define totalhigh_pages 0UL
Christoph Lameterc1f60a52006-09-25 23:31:11 -070047
James Bottomleya6ca1b92006-09-25 23:30:55 -070048#ifndef ARCH_HAS_KMAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static inline void *kmap(struct page *page)
50{
51 might_sleep();
52 return page_address(page);
53}
54
Matthew Wilcox31c91132009-06-16 15:32:45 -070055static inline void kunmap(struct page *page)
56{
57}
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070059static inline void *__kmap_atomic(struct page *page)
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020060{
61 pagefault_disable();
62 return page_address(page);
63}
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070064#define kmap_atomic_prot(page, prot) __kmap_atomic(page)
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020065
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070066static inline void __kunmap_atomic(void *addr)
Andi Kleen4e60c862010-08-09 17:19:03 -070067{
68 pagefault_enable();
69}
70
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070071#define kmap_atomic_pfn(pfn) kmap_atomic(pfn_to_page(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define kmap_atomic_to_page(ptr) virt_to_page(ptr)
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020073
74#define kmap_flush_unused() do {} while(0)
James Bottomleya6ca1b92006-09-25 23:30:55 -070075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#endif /* CONFIG_HIGHMEM */
78
Peter Zijlstraa8e23a22010-10-27 15:32:57 -070079#if defined(CONFIG_HIGHMEM) || defined(CONFIG_X86_32)
80
81DECLARE_PER_CPU(int, __kmap_atomic_idx);
82
83static inline int kmap_atomic_idx_push(void)
84{
Christoph Lametercfb82432010-12-06 11:40:03 -060085 int idx = __this_cpu_inc_return(__kmap_atomic_idx) - 1;
86
Peter Zijlstraa8e23a22010-10-27 15:32:57 -070087#ifdef CONFIG_DEBUG_HIGHMEM
88 WARN_ON_ONCE(in_irq() && !irqs_disabled());
89 BUG_ON(idx > KM_TYPE_NR);
90#endif
91 return idx;
92}
93
Peter Zijlstra20273942010-10-27 15:32:58 -070094static inline int kmap_atomic_idx(void)
95{
Christoph Lametercfb82432010-12-06 11:40:03 -060096 return __this_cpu_read(__kmap_atomic_idx) - 1;
Peter Zijlstra20273942010-10-27 15:32:58 -070097}
98
Christoph Lametercfb82432010-12-06 11:40:03 -060099static inline void kmap_atomic_idx_pop(void)
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700100{
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700101#ifdef CONFIG_DEBUG_HIGHMEM
Christoph Lametercfb82432010-12-06 11:40:03 -0600102 int idx = __this_cpu_dec_return(__kmap_atomic_idx);
103
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700104 BUG_ON(idx < 0);
Christoph Lametercfb82432010-12-06 11:40:03 -0600105#else
106 __this_cpu_dec(__kmap_atomic_idx);
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700107#endif
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700108}
109
110#endif
111
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700112/*
113 * Make both: kmap_atomic(page, idx) and kmap_atomic(page) work.
114 */
115#define kmap_atomic(page, args...) __kmap_atomic(page)
116
117/*
118 * Prevent people trying to call kunmap_atomic() as if it were kunmap()
119 * kunmap_atomic() should get the return value of kmap_atomic, not the page.
120 */
121#define kunmap_atomic(addr, args...) \
122do { \
123 BUILD_BUG_ON(__same_type((addr), struct page *)); \
124 __kunmap_atomic(addr); \
125} while (0)
Cesar Eduardo Barros597781f2010-08-09 17:18:32 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */
Russell King487ff322008-11-27 11:13:58 +0000128#ifndef clear_user_highpage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static inline void clear_user_highpage(struct page *page, unsigned long vaddr)
130{
131 void *addr = kmap_atomic(page, KM_USER0);
132 clear_user_page(addr, vaddr, page);
133 kunmap_atomic(addr, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
Russell King487ff322008-11-27 11:13:58 +0000135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137#ifndef __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
Mel Gorman769848c2007-07-17 04:03:05 -0700138/**
139 * __alloc_zeroed_user_highpage - Allocate a zeroed HIGHMEM page for a VMA with caller-specified movable GFP flags
140 * @movableflags: The GFP flags related to the pages future ability to move like __GFP_MOVABLE
141 * @vma: The VMA the page is to be allocated for
142 * @vaddr: The virtual address the page will be inserted into
143 *
144 * This function will allocate a page for a VMA but the caller is expected
145 * to specify via movableflags whether the page will be movable in the
146 * future or not
147 *
148 * An architecture may override this function by defining
149 * __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE and providing their own
150 * implementation.
151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static inline struct page *
Mel Gorman769848c2007-07-17 04:03:05 -0700153__alloc_zeroed_user_highpage(gfp_t movableflags,
154 struct vm_area_struct *vma,
155 unsigned long vaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Mel Gorman769848c2007-07-17 04:03:05 -0700157 struct page *page = alloc_page_vma(GFP_HIGHUSER | movableflags,
158 vma, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if (page)
161 clear_user_highpage(page, vaddr);
162
163 return page;
164}
165#endif
166
Mel Gorman769848c2007-07-17 04:03:05 -0700167/**
Mel Gorman769848c2007-07-17 04:03:05 -0700168 * alloc_zeroed_user_highpage_movable - Allocate a zeroed HIGHMEM page for a VMA that the caller knows can move
169 * @vma: The VMA the page is to be allocated for
170 * @vaddr: The virtual address the page will be inserted into
171 *
172 * This function will allocate a page for a VMA that the caller knows will
173 * be able to migrate in the future using move_pages() or reclaimed
174 */
175static inline struct page *
176alloc_zeroed_user_highpage_movable(struct vm_area_struct *vma,
177 unsigned long vaddr)
178{
179 return __alloc_zeroed_user_highpage(__GFP_MOVABLE, vma, vaddr);
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static inline void clear_highpage(struct page *page)
183{
184 void *kaddr = kmap_atomic(page, KM_USER0);
185 clear_page(kaddr);
186 kunmap_atomic(kaddr, KM_USER0);
187}
188
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800189static inline void zero_user_segments(struct page *page,
190 unsigned start1, unsigned end1,
191 unsigned start2, unsigned end2)
192{
193 void *kaddr = kmap_atomic(page, KM_USER0);
194
195 BUG_ON(end1 > PAGE_SIZE || end2 > PAGE_SIZE);
196
197 if (end1 > start1)
198 memset(kaddr + start1, 0, end1 - start1);
199
200 if (end2 > start2)
201 memset(kaddr + start2, 0, end2 - start2);
202
203 kunmap_atomic(kaddr, KM_USER0);
204 flush_dcache_page(page);
205}
206
207static inline void zero_user_segment(struct page *page,
208 unsigned start, unsigned end)
209{
210 zero_user_segments(page, start, end, 0, 0);
211}
212
213static inline void zero_user(struct page *page,
214 unsigned start, unsigned size)
215{
216 zero_user_segments(page, start, start + size, 0, 0);
217}
Nate Diller01f27052007-05-09 02:35:07 -0700218
Nate Dillerf37bc272007-05-09 02:35:09 -0700219static inline void __deprecated memclear_highpage_flush(struct page *page,
Nate Diller01f27052007-05-09 02:35:07 -0700220 unsigned int offset, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800222 zero_user(page, offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000225#ifndef __HAVE_ARCH_COPY_USER_HIGHPAGE
226
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000227static inline void copy_user_highpage(struct page *to, struct page *from,
228 unsigned long vaddr, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 char *vfrom, *vto;
231
232 vfrom = kmap_atomic(from, KM_USER0);
233 vto = kmap_atomic(to, KM_USER1);
234 copy_user_page(vto, vfrom, vaddr, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 kunmap_atomic(vto, KM_USER1);
Peter Zijlstra61ecdb802010-10-26 14:21:47 -0700236 kunmap_atomic(vfrom, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000239#endif
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static inline void copy_highpage(struct page *to, struct page *from)
242{
243 char *vfrom, *vto;
244
245 vfrom = kmap_atomic(from, KM_USER0);
246 vto = kmap_atomic(to, KM_USER1);
247 copy_page(vto, vfrom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 kunmap_atomic(vto, KM_USER1);
Peter Zijlstra61ecdb802010-10-26 14:21:47 -0700249 kunmap_atomic(vfrom, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#endif /* _LINUX_HIGHMEM_H */