blob: 6549ed75e0a72f9364f9fc3dce94cb6c07405c5e [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>
Catalin Marinas43b3a0c2010-11-11 14:05:10 -08008#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#include <asm/cacheflush.h>
11
James Bottomley03beb072006-03-26 01:36:57 -080012#ifndef ARCH_HAS_FLUSH_ANON_PAGE
Russell Kinga6f36be2006-12-30 22:24:19 +000013static inline void flush_anon_page(struct vm_area_struct *vma, struct page *page, unsigned long vmaddr)
James Bottomley03beb072006-03-26 01:36:57 -080014{
15}
16#endif
17
James Bottomley5a3a5a92006-03-26 01:36:59 -080018#ifndef ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
19static inline void flush_kernel_dcache_page(struct page *page)
20{
21}
James Bottomley9df5f7412010-01-25 11:42:20 -060022static inline void flush_kernel_vmap_range(void *vaddr, int size)
23{
24}
25static inline void invalidate_kernel_vmap_range(void *vaddr, int size)
26{
27}
James Bottomley5a3a5a92006-03-26 01:36:59 -080028#endif
29
Kumar Gala3688e072009-04-01 23:38:49 -050030#include <asm/kmap_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Kumar Gala3688e072009-04-01 23:38:49 -050032#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/highmem.h>
34
35/* declarations for linux/mm/highmem.c */
36unsigned int nr_free_highpages(void);
Christoph Lameterc1f60a52006-09-25 23:31:11 -070037extern unsigned long totalhigh_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020039void kmap_flush_unused(void);
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#else /* CONFIG_HIGHMEM */
42
43static inline unsigned int nr_free_highpages(void) { return 0; }
44
Andreas Fenkart4b529402010-01-08 14:42:31 -080045#define totalhigh_pages 0UL
Christoph Lameterc1f60a52006-09-25 23:31:11 -070046
James Bottomleya6ca1b92006-09-25 23:30:55 -070047#ifndef ARCH_HAS_KMAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static inline void *kmap(struct page *page)
49{
50 might_sleep();
51 return page_address(page);
52}
53
Matthew Wilcox31c91132009-06-16 15:32:45 -070054static inline void kunmap(struct page *page)
55{
56}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Cong Wanga24401b2011-11-26 10:53:39 +080058static inline void *kmap_atomic(struct page *page)
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020059{
60 pagefault_disable();
61 return page_address(page);
62}
Cong Wanga24401b2011-11-26 10:53:39 +080063#define kmap_atomic_prot(page, prot) kmap_atomic(page)
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020064
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070065static inline void __kunmap_atomic(void *addr)
Andi Kleen4e60c862010-08-09 17:19:03 -070066{
67 pagefault_enable();
68}
69
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070070#define kmap_atomic_pfn(pfn) kmap_atomic(pfn_to_page(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define kmap_atomic_to_page(ptr) virt_to_page(ptr)
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020072
73#define kmap_flush_unused() do {} while(0)
James Bottomleya6ca1b92006-09-25 23:30:55 -070074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#endif /* CONFIG_HIGHMEM */
77
Peter Zijlstraa8e23a22010-10-27 15:32:57 -070078#if defined(CONFIG_HIGHMEM) || defined(CONFIG_X86_32)
79
80DECLARE_PER_CPU(int, __kmap_atomic_idx);
81
82static inline int kmap_atomic_idx_push(void)
83{
Christoph Lametercfb82432010-12-06 11:40:03 -060084 int idx = __this_cpu_inc_return(__kmap_atomic_idx) - 1;
85
Peter Zijlstraa8e23a22010-10-27 15:32:57 -070086#ifdef CONFIG_DEBUG_HIGHMEM
87 WARN_ON_ONCE(in_irq() && !irqs_disabled());
88 BUG_ON(idx > KM_TYPE_NR);
89#endif
90 return idx;
91}
92
Peter Zijlstra20273942010-10-27 15:32:58 -070093static inline int kmap_atomic_idx(void)
94{
Christoph Lametercfb82432010-12-06 11:40:03 -060095 return __this_cpu_read(__kmap_atomic_idx) - 1;
Peter Zijlstra20273942010-10-27 15:32:58 -070096}
97
Christoph Lametercfb82432010-12-06 11:40:03 -060098static inline void kmap_atomic_idx_pop(void)
Peter Zijlstraa8e23a22010-10-27 15:32:57 -070099{
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700100#ifdef CONFIG_DEBUG_HIGHMEM
Christoph Lametercfb82432010-12-06 11:40:03 -0600101 int idx = __this_cpu_dec_return(__kmap_atomic_idx);
102
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700103 BUG_ON(idx < 0);
Christoph Lametercfb82432010-12-06 11:40:03 -0600104#else
105 __this_cpu_dec(__kmap_atomic_idx);
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700106#endif
Peter Zijlstraa8e23a22010-10-27 15:32:57 -0700107}
108
109#endif
110
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700111/*
Cong Wang980c19e2011-11-25 22:08:45 +0800112 * NOTE:
113 * kmap_atomic() and kunmap_atomic() with two arguments are deprecated.
114 * We only keep them for backward compatibility, any usage of them
115 * are now warned.
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700116 */
Cong Wang980c19e2011-11-25 22:08:45 +0800117
118#define PASTE(a, b) a ## b
119#define PASTE2(a, b) PASTE(a, b)
120
121#define NARG_(_2, _1, n, ...) n
122#define NARG(...) NARG_(__VA_ARGS__, 2, 1, :)
123
Cong Wang980c19e2011-11-25 22:08:45 +0800124static inline void __deprecated *kmap_atomic_deprecated(struct page *page,
125 enum km_type km)
126{
Cong Wanga24401b2011-11-26 10:53:39 +0800127 return kmap_atomic(page);
Cong Wang980c19e2011-11-25 22:08:45 +0800128}
129
130#define kmap_atomic1(...) kmap_atomic(__VA_ARGS__)
131#define kmap_atomic2(...) kmap_atomic_deprecated(__VA_ARGS__)
132#define kmap_atomic(...) PASTE2(kmap_atomic, NARG(__VA_ARGS__)(__VA_ARGS__))
133
134static inline void __deprecated __kunmap_atomic_deprecated(void *addr,
135 enum km_type km)
136{
137 __kunmap_atomic(addr);
138}
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700139
140/*
141 * Prevent people trying to call kunmap_atomic() as if it were kunmap()
142 * kunmap_atomic() should get the return value of kmap_atomic, not the page.
143 */
Cong Wang980c19e2011-11-25 22:08:45 +0800144#define kunmap_atomic_deprecated(addr, km) \
145do { \
146 BUILD_BUG_ON(__same_type((addr), struct page *)); \
147 __kunmap_atomic_deprecated(addr, km); \
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700148} while (0)
Cesar Eduardo Barros597781f2010-08-09 17:18:32 -0700149
Cong Wang980c19e2011-11-25 22:08:45 +0800150#define kunmap_atomic_withcheck(addr) \
151do { \
152 BUILD_BUG_ON(__same_type((addr), struct page *)); \
153 __kunmap_atomic(addr); \
154} while (0)
155
156#define kunmap_atomic1(...) kunmap_atomic_withcheck(__VA_ARGS__)
157#define kunmap_atomic2(...) kunmap_atomic_deprecated(__VA_ARGS__)
158#define kunmap_atomic(...) PASTE2(kunmap_atomic, NARG(__VA_ARGS__)(__VA_ARGS__))
159/**** End of C pre-processor tricks for deprecated macros ****/
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */
Russell King487ff322008-11-27 11:13:58 +0000162#ifndef clear_user_highpage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static inline void clear_user_highpage(struct page *page, unsigned long vaddr)
164{
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800165 void *addr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 clear_user_page(addr, vaddr, page);
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800167 kunmap_atomic(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
Russell King487ff322008-11-27 11:13:58 +0000169#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171#ifndef __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
Mel Gorman769848c2007-07-17 04:03:05 -0700172/**
173 * __alloc_zeroed_user_highpage - Allocate a zeroed HIGHMEM page for a VMA with caller-specified movable GFP flags
174 * @movableflags: The GFP flags related to the pages future ability to move like __GFP_MOVABLE
175 * @vma: The VMA the page is to be allocated for
176 * @vaddr: The virtual address the page will be inserted into
177 *
178 * This function will allocate a page for a VMA but the caller is expected
179 * to specify via movableflags whether the page will be movable in the
180 * future or not
181 *
182 * An architecture may override this function by defining
183 * __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE and providing their own
184 * implementation.
185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static inline struct page *
Mel Gorman769848c2007-07-17 04:03:05 -0700187__alloc_zeroed_user_highpage(gfp_t movableflags,
188 struct vm_area_struct *vma,
189 unsigned long vaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Mel Gorman769848c2007-07-17 04:03:05 -0700191 struct page *page = alloc_page_vma(GFP_HIGHUSER | movableflags,
192 vma, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (page)
195 clear_user_highpage(page, vaddr);
196
197 return page;
198}
199#endif
200
Mel Gorman769848c2007-07-17 04:03:05 -0700201/**
Mel Gorman769848c2007-07-17 04:03:05 -0700202 * alloc_zeroed_user_highpage_movable - Allocate a zeroed HIGHMEM page for a VMA that the caller knows can move
203 * @vma: The VMA the page is to be allocated for
204 * @vaddr: The virtual address the page will be inserted into
205 *
206 * This function will allocate a page for a VMA that the caller knows will
207 * be able to migrate in the future using move_pages() or reclaimed
208 */
209static inline struct page *
210alloc_zeroed_user_highpage_movable(struct vm_area_struct *vma,
211 unsigned long vaddr)
212{
213 return __alloc_zeroed_user_highpage(__GFP_MOVABLE, vma, vaddr);
214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static inline void clear_highpage(struct page *page)
217{
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800218 void *kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 clear_page(kaddr);
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800220 kunmap_atomic(kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800223static inline void zero_user_segments(struct page *page,
224 unsigned start1, unsigned end1,
225 unsigned start2, unsigned end2)
226{
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800227 void *kaddr = kmap_atomic(page);
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800228
229 BUG_ON(end1 > PAGE_SIZE || end2 > PAGE_SIZE);
230
231 if (end1 > start1)
232 memset(kaddr + start1, 0, end1 - start1);
233
234 if (end2 > start2)
235 memset(kaddr + start2, 0, end2 - start2);
236
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800237 kunmap_atomic(kaddr);
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800238 flush_dcache_page(page);
239}
240
241static inline void zero_user_segment(struct page *page,
242 unsigned start, unsigned end)
243{
244 zero_user_segments(page, start, end, 0, 0);
245}
246
247static inline void zero_user(struct page *page,
248 unsigned start, unsigned size)
249{
250 zero_user_segments(page, start, start + size, 0, 0);
251}
Nate Diller01f27052007-05-09 02:35:07 -0700252
Nate Dillerf37bc272007-05-09 02:35:09 -0700253static inline void __deprecated memclear_highpage_flush(struct page *page,
Nate Diller01f27052007-05-09 02:35:07 -0700254 unsigned int offset, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800256 zero_user(page, offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000259#ifndef __HAVE_ARCH_COPY_USER_HIGHPAGE
260
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000261static inline void copy_user_highpage(struct page *to, struct page *from,
262 unsigned long vaddr, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 char *vfrom, *vto;
265
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800266 vfrom = kmap_atomic(from);
267 vto = kmap_atomic(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 copy_user_page(vto, vfrom, vaddr, to);
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800269 kunmap_atomic(vto);
270 kunmap_atomic(vfrom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000273#endif
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static inline void copy_highpage(struct page *to, struct page *from)
276{
277 char *vfrom, *vto;
278
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800279 vfrom = kmap_atomic(from);
280 vto = kmap_atomic(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 copy_page(vto, vfrom);
Cong Wang1ec9c5d2011-11-25 23:14:14 +0800282 kunmap_atomic(vto);
283 kunmap_atomic(vfrom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286#endif /* _LINUX_HIGHMEM_H */