blob: 4589a1382fa1cb14902ed4e6a8634648adac31cf [file] [log] [blame]
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Thanks to Ben LaHaise for precious feedback.
Ingo Molnar9f4c8152008-01-30 13:33:41 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/highmem.h>
6#include <linux/module.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01007#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/slab.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01009#include <linux/mm.h>
10
Ingo Molnar4554ab92008-01-30 13:34:03 +010011void clflush_cache_range(void *addr, int size)
12{
13 int i;
14
15 for (i = 0; i < size; i += boot_cpu_data.x86_clflush_size)
16 clflush(addr+i);
17}
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/processor.h>
20#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080021#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010022#include <asm/uaccess.h>
23#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ingo Molnarf0646e42008-01-30 13:33:43 +010025pte_t *lookup_address(unsigned long address, int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010026{
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 pgd_t *pgd = pgd_offset_k(address);
28 pud_t *pud;
29 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010030
Thomas Gleixner30551bb2008-01-30 13:34:04 +010031 *level = PG_LEVEL_NONE;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 if (pgd_none(*pgd))
34 return NULL;
35 pud = pud_offset(pgd, address);
36 if (pud_none(*pud))
37 return NULL;
38 pmd = pmd_offset(pud, address);
39 if (pmd_none(*pmd))
40 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +010041
42 *level = PG_LEVEL_2M;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (pmd_large(*pmd))
44 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Thomas Gleixner30551bb2008-01-30 13:34:04 +010046 *level = PG_LEVEL_4K;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010047 return pte_offset_kernel(pmd, address);
48}
49
Ingo Molnar9a3dc782008-01-30 13:33:57 +010050static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010051{
Ingo Molnar9f4c8152008-01-30 13:33:41 +010052 /* change init_mm */
53 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +010054#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +010055 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +010056 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Ingo Molnar44af6c42008-01-30 13:34:03 +010058 for (page = pgd_list; page; page = (struct page *)page->index) {
59 pgd_t *pgd;
60 pud_t *pud;
61 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010062
Ingo Molnar44af6c42008-01-30 13:34:03 +010063 pgd = (pgd_t *)page_address(page) + pgd_index(address);
64 pud = pud_offset(pgd, address);
65 pmd = pmd_offset(pud, address);
66 set_pte_atomic((pte_t *)pmd, pte);
67 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 }
Ingo Molnar44af6c42008-01-30 13:34:03 +010069#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Ingo Molnar7afe15b2008-01-30 13:33:57 +010072static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010073{
Ingo Molnar7afe15b2008-01-30 13:33:57 +010074 pgprot_t ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnar12d6f212008-01-30 13:33:58 +010075 gfp_t gfp_flags = GFP_KERNEL;
Ingo Molnar9a3dc782008-01-30 13:33:57 +010076 unsigned long flags;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010077 unsigned long addr;
78 pte_t *pbase, *tmp;
79 struct page *base;
Ingo Molnar7afe15b2008-01-30 13:33:57 +010080 int i, level;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010081
Ingo Molnar12d6f212008-01-30 13:33:58 +010082#ifdef CONFIG_DEBUG_PAGEALLOC
83 gfp_flags = GFP_ATOMIC;
84#endif
85 base = alloc_pages(gfp_flags, 0);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010086 if (!base)
87 return -ENOMEM;
88
Ingo Molnar9a3dc782008-01-30 13:33:57 +010089 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010090 /*
91 * Check for races, another CPU might have split this page
92 * up for us already:
93 */
94 tmp = lookup_address(address, &level);
Ingo Molnar5508a742008-01-30 13:33:56 +010095 if (tmp != kpte) {
96 WARN_ON_ONCE(1);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010097 goto out_unlock;
Ingo Molnar5508a742008-01-30 13:33:56 +010098 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +010099
100 address = __pa(address);
101 addr = address & LARGE_PAGE_MASK;
102 pbase = (pte_t *)page_address(base);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100103#ifdef CONFIG_X86_32
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100104 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
Ingo Molnar44af6c42008-01-30 13:34:03 +0100105#endif
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100106
107 for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE)
108 set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot));
109
110 /*
111 * Install the new, split up pagetable:
112 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100113 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100114 base = NULL;
115
116out_unlock:
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100117 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100118
119 if (base)
120 __free_pages(base, 0);
121
122 return 0;
123}
124
Ingo Molnar44af6c42008-01-30 13:34:03 +0100125static int
126__change_page_attr(unsigned long address, struct page *page, pgprot_t prot)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100127{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct page *kpte_page;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100129 int level, err = 0;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100130 pte_t *kpte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 BUG_ON(PageHighMem(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100134repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100135 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (!kpte)
137 return -EINVAL;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 kpte_page = virt_to_page(kpte);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200140 BUG_ON(PageLRU(kpte_page));
141 BUG_ON(PageCompound(kpte_page));
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /*
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100144 * Better fail early if someone sets the kernel text to NX.
145 * Does not cover __inittext
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100147 BUG_ON(address >= (unsigned long)&_text &&
148 address < (unsigned long)&_etext &&
149 (pgprot_val(prot) & _PAGE_NX));
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200150
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100151 if (level == PG_LEVEL_4K) {
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100152 set_pte_atomic(kpte, mk_pte(page, canon_pgprot(prot)));
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100153 } else {
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100154 err = split_large_page(kpte, address);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100155 if (!err)
156 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100158 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100159}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Ingo Molnar44af6c42008-01-30 13:34:03 +0100161/**
162 * change_page_attr_addr - Change page table attributes in linear mapping
163 * @address: Virtual address in linear mapping.
164 * @numpages: Number of pages to change
165 * @prot: New page table attribute (PAGE_*)
166 *
167 * Change page attributes of a page in the direct mapping. This is a variant
168 * of change_page_attr() that also works on memory holes that do not have
169 * mem_map entry (pfn_valid() is false).
170 *
171 * See change_page_attr() documentation for more details.
172 */
173
174int change_page_attr_addr(unsigned long address, int numpages, pgprot_t prot)
175{
176 int err = 0, kernel_map = 0, i;
177
178#ifdef CONFIG_X86_64
179 if (address >= __START_KERNEL_map &&
180 address < __START_KERNEL_map + KERNEL_TEXT_SIZE) {
181
182 address = (unsigned long)__va(__pa(address));
183 kernel_map = 1;
184 }
185#endif
186
187 for (i = 0; i < numpages; i++, address += PAGE_SIZE) {
188 unsigned long pfn = __pa(address) >> PAGE_SHIFT;
189
190 if (!kernel_map || pte_present(pfn_pte(0, prot))) {
191 err = __change_page_attr(address, pfn_to_page(pfn), prot);
192 if (err)
193 break;
194 }
195#ifdef CONFIG_X86_64
196 /*
197 * Handle kernel mapping too which aliases part of
198 * lowmem:
199 */
200 if (__pa(address) < KERNEL_TEXT_SIZE) {
201 unsigned long addr2;
202 pgprot_t prot2;
203
204 addr2 = __START_KERNEL_map + __pa(address);
205 /* Make sure the kernel mappings stay executable */
206 prot2 = pte_pgprot(pte_mkexec(pfn_pte(0, prot)));
207 err = __change_page_attr(addr2, pfn_to_page(pfn), prot2);
208 }
209#endif
210 }
211
212 return err;
213}
214
215/**
216 * change_page_attr - Change page table attributes in the linear mapping.
217 * @page: First page to change
218 * @numpages: Number of pages to change
219 * @prot: New protection/caching type (PAGE_*)
220 *
221 * Returns 0 on success, otherwise a negated errno.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
223 * This should be used when a page is mapped with a different caching policy
224 * than write-back somewhere - some CPUs do not like it when mappings with
225 * different caching policies exist. This changes the page attributes of the
226 * in kernel linear mapping too.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100227 *
Ingo Molnar44af6c42008-01-30 13:34:03 +0100228 * Caller must call global_flush_tlb() later to make the changes active.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100229 *
Ingo Molnar44af6c42008-01-30 13:34:03 +0100230 * The caller needs to ensure that there are no conflicting mappings elsewhere
231 * (e.g. in user space) * This function only deals with the kernel linear map.
232 *
233 * For MMIO areas without mem_map use change_page_attr_addr() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
235int change_page_attr(struct page *page, int numpages, pgprot_t prot)
236{
Ingo Molnar44af6c42008-01-30 13:34:03 +0100237 unsigned long addr = (unsigned long)page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Ingo Molnar44af6c42008-01-30 13:34:03 +0100239 return change_page_attr_addr(addr, numpages, prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100241EXPORT_SYMBOL(change_page_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100243static void flush_kernel_map(void *arg)
244{
245 /*
246 * Flush all to work around Errata in early athlons regarding
247 * large page flushing.
248 */
249 __flush_tlb_all();
250
251 if (boot_cpu_data.x86_model >= 4)
252 wbinvd();
253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255void global_flush_tlb(void)
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700256{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 BUG_ON(irqs_disabled());
258
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100259 on_each_cpu(flush_kernel_map, NULL, 1, 1);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700260}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100261EXPORT_SYMBOL(global_flush_tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263#ifdef CONFIG_DEBUG_PAGEALLOC
264void kernel_map_pages(struct page *page, int numpages, int enable)
265{
266 if (PageHighMem(page))
267 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100268 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700269 debug_check_no_locks_freed(page_address(page),
270 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100271 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800272
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100273 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +0100274 * If page allocator is not up yet then do not call c_p_a():
275 */
276 if (!debug_pagealloc_enabled)
277 return;
278
279 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100280 * The return value is ignored - the calls cannot fail,
281 * large pages are disabled at boot time:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
283 change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100284
285 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100286 * We should perform an IPI and flush all tlbs,
287 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289 __flush_tlb_all();
290}
291#endif