blob: 98e2cce996a4c1867543ffa03d83c66c3c8846de [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>
5#include <linux/mm.h>
Peter Zijlstraad76fb62006-12-06 20:32:21 -08006#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#include <asm/cacheflush.h>
9
James Bottomley03beb072006-03-26 01:36:57 -080010#ifndef ARCH_HAS_FLUSH_ANON_PAGE
Russell Kinga6f36be2006-12-30 22:24:19 +000011static inline void flush_anon_page(struct vm_area_struct *vma, struct page *page, unsigned long vmaddr)
James Bottomley03beb072006-03-26 01:36:57 -080012{
13}
14#endif
15
James Bottomley5a3a5a92006-03-26 01:36:59 -080016#ifndef ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
17static inline void flush_kernel_dcache_page(struct page *page)
18{
19}
20#endif
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#ifdef CONFIG_HIGHMEM
23
24#include <asm/highmem.h>
25
26/* declarations for linux/mm/highmem.c */
27unsigned int nr_free_highpages(void);
Christoph Lameterc1f60a52006-09-25 23:31:11 -070028extern unsigned long totalhigh_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020030void kmap_flush_unused(void);
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#else /* CONFIG_HIGHMEM */
33
34static inline unsigned int nr_free_highpages(void) { return 0; }
35
Christoph Lameterc1f60a52006-09-25 23:31:11 -070036#define totalhigh_pages 0
37
James Bottomleya6ca1b92006-09-25 23:30:55 -070038#ifndef ARCH_HAS_KMAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static inline void *kmap(struct page *page)
40{
41 might_sleep();
42 return page_address(page);
43}
44
45#define kunmap(page) do { (void) (page); } while (0)
46
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020047#include <asm/kmap_types.h>
48
49static inline void *kmap_atomic(struct page *page, enum km_type idx)
50{
51 pagefault_disable();
52 return page_address(page);
53}
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020054#define kmap_atomic_prot(page, idx, prot) kmap_atomic(page, idx)
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020055
Peter Zijlstraad76fb62006-12-06 20:32:21 -080056#define kunmap_atomic(addr, idx) do { pagefault_enable(); } while (0)
57#define kmap_atomic_pfn(pfn, idx) kmap_atomic(pfn_to_page(pfn), (idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define kmap_atomic_to_page(ptr) virt_to_page(ptr)
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020059
60#define kmap_flush_unused() do {} while(0)
James Bottomleya6ca1b92006-09-25 23:30:55 -070061#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#endif /* CONFIG_HIGHMEM */
64
65/* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */
66static inline void clear_user_highpage(struct page *page, unsigned long vaddr)
67{
68 void *addr = kmap_atomic(page, KM_USER0);
69 clear_user_page(addr, vaddr, page);
70 kunmap_atomic(addr, KM_USER0);
71 /* Make sure this page is cleared on other CPU's too before using it */
72 smp_wmb();
73}
74
75#ifndef __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
76static inline struct page *
77alloc_zeroed_user_highpage(struct vm_area_struct *vma, unsigned long vaddr)
78{
79 struct page *page = alloc_page_vma(GFP_HIGHUSER, vma, vaddr);
80
81 if (page)
82 clear_user_highpage(page, vaddr);
83
84 return page;
85}
86#endif
87
88static inline void clear_highpage(struct page *page)
89{
90 void *kaddr = kmap_atomic(page, KM_USER0);
91 clear_page(kaddr);
92 kunmap_atomic(kaddr, KM_USER0);
93}
94
95/*
96 * Same but also flushes aliased cache contents to RAM.
Nate Diller01f27052007-05-09 02:35:07 -070097 *
98 * This must be a macro because KM_USER0 and friends aren't defined if
99 * !CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
Nate Diller01f27052007-05-09 02:35:07 -0700101#define zero_user_page(page, offset, size, km_type) \
102 do { \
103 void *kaddr; \
104 \
105 BUG_ON((offset) + (size) > PAGE_SIZE); \
106 \
107 kaddr = kmap_atomic(page, km_type); \
108 memset((char *)kaddr + (offset), 0, (size)); \
109 flush_dcache_page(page); \
110 kunmap_atomic(kaddr, (km_type)); \
111 } while (0)
112
Nate Dillerf37bc272007-05-09 02:35:09 -0700113static inline void __deprecated memclear_highpage_flush(struct page *page,
Nate Diller01f27052007-05-09 02:35:07 -0700114 unsigned int offset, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Nate Diller01f27052007-05-09 02:35:07 -0700116 zero_user_page(page, offset, size, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000119#ifndef __HAVE_ARCH_COPY_USER_HIGHPAGE
120
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000121static inline void copy_user_highpage(struct page *to, struct page *from,
122 unsigned long vaddr, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 char *vfrom, *vto;
125
126 vfrom = kmap_atomic(from, KM_USER0);
127 vto = kmap_atomic(to, KM_USER1);
128 copy_user_page(vto, vfrom, vaddr, to);
129 kunmap_atomic(vfrom, KM_USER0);
130 kunmap_atomic(vto, KM_USER1);
131 /* Make sure this page is cleared on other CPU's too before using it */
132 smp_wmb();
133}
134
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000135#endif
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static inline void copy_highpage(struct page *to, struct page *from)
138{
139 char *vfrom, *vto;
140
141 vfrom = kmap_atomic(from, KM_USER0);
142 vto = kmap_atomic(to, KM_USER1);
143 copy_page(vto, vfrom);
144 kunmap_atomic(vfrom, KM_USER0);
145 kunmap_atomic(vto, KM_USER1);
146}
147
148#endif /* _LINUX_HIGHMEM_H */