blob: 523fd5b37df96fa3404808727ed4c21ae6e857c2 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/highmem.h>
7#include <linux/module.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01008#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/slab.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010010#include <linux/mm.h>
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/processor.h>
13#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080014#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010015#include <asm/uaccess.h>
16#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18static DEFINE_SPINLOCK(cpa_lock);
19static struct list_head df_list = LIST_HEAD_INIT(df_list);
20
Ingo Molnarf0646e42008-01-30 13:33:43 +010021pte_t *lookup_address(unsigned long address, int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010022{
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 pgd_t *pgd = pgd_offset_k(address);
24 pud_t *pud;
25 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 if (pgd_none(*pgd))
28 return NULL;
29 pud = pud_offset(pgd, address);
30 if (pud_none(*pud))
31 return NULL;
32 pmd = pmd_offset(pud, address);
33 if (pmd_none(*pmd))
34 return NULL;
Ingo Molnarf0646e42008-01-30 13:33:43 +010035 *level = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 if (pmd_large(*pmd))
37 return (pte_t *)pmd;
Ingo Molnarf0646e42008-01-30 13:33:43 +010038 *level = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Ingo Molnar9f4c8152008-01-30 13:33:41 +010040 return pte_offset_kernel(pmd, address);
41}
42
43static struct page *
44split_large_page(unsigned long address, pgprot_t prot, pgprot_t ref_prot)
45{
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 unsigned long addr;
47 struct page *base;
48 pte_t *pbase;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010049 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 spin_unlock_irq(&cpa_lock);
52 base = alloc_pages(GFP_KERNEL, 0);
53 spin_lock_irq(&cpa_lock);
Ingo Molnar9f4c8152008-01-30 13:33:41 +010054 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return NULL;
56
Nick Piggin84d1c052006-03-22 00:08:31 -080057 /*
58 * page_private is used to track the number of entries in
59 * the page table page that have non standard attributes.
60 */
61 SetPagePrivate(base);
62 page_private(base) = 0;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 address = __pa(address);
Ingo Molnar9f4c8152008-01-30 13:33:41 +010065 addr = address & LARGE_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 pbase = (pte_t *)page_address(base);
Jeremy Fitzhardingefdb4c332007-07-17 18:37:03 -070067 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
Ingo Molnar9f4c8152008-01-30 13:33:41 +010068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE) {
Ingo Molnar9f4c8152008-01-30 13:33:41 +010070 set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT,
71 addr == address ? prot : ref_prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73 return base;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010074}
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Andi Kleen018d2ad2007-06-20 12:23:36 +020076static void cache_flush_page(struct page *p)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010077{
78 void *addr = page_address(p);
Andi Kleen018d2ad2007-06-20 12:23:36 +020079 int i;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010080
Andi Kleen018d2ad2007-06-20 12:23:36 +020081 for (i = 0; i < PAGE_SIZE; i += boot_cpu_data.x86_clflush_size)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010082 clflush(addr + i);
Andi Kleen018d2ad2007-06-20 12:23:36 +020083}
Andi Kleen3760dd62006-12-07 02:14:05 +010084
Andi Kleen018d2ad2007-06-20 12:23:36 +020085static void flush_kernel_map(void *arg)
86{
87 struct list_head *lh = (struct list_head *)arg;
88 struct page *p;
89
90 /* High level code is not ready for clflush yet */
Andi Kleend3f3c932007-08-10 22:31:02 +020091 if (0 && cpu_has_clflush) {
Ingo Molnar9f4c8152008-01-30 13:33:41 +010092 list_for_each_entry(p, lh, lru)
Andi Kleen018d2ad2007-06-20 12:23:36 +020093 cache_flush_page(p);
Ingo Molnar9f4c8152008-01-30 13:33:41 +010094 } else {
95 if (boot_cpu_data.x86_model >= 4)
96 wbinvd();
97 }
Andi Kleen3760dd62006-12-07 02:14:05 +010098
Ingo Molnar9f4c8152008-01-30 13:33:41 +010099 /*
100 * Flush all to work around Errata in early athlons regarding
101 * large page flushing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100103 __flush_tlb_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100106static void set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
107{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned long flags;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100109 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100111 /* change init_mm */
112 set_pte_atomic(kpte, pte);
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +0200113 if (SHARED_KERNEL_PMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return;
115
116 spin_lock_irqsave(&pgd_lock, flags);
117 for (page = pgd_list; page; page = (struct page *)page->index) {
118 pgd_t *pgd;
119 pud_t *pud;
120 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 pgd = (pgd_t *)page_address(page) + pgd_index(address);
123 pud = pud_offset(pgd, address);
124 pmd = pmd_offset(pud, address);
125 set_pte_atomic((pte_t *)pmd, pte);
126 }
127 spin_unlock_irqrestore(&pgd_lock, flags);
128}
129
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100130/*
131 * No more special protections in this 2/4MB area - revert to a large
132 * page again.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
134static inline void revert_page(struct page *kpte_page, unsigned long address)
135{
Dave Jonesf8af0952006-01-06 00:12:10 -0800136 pgprot_t ref_prot;
137 pte_t *linear;
138
139 ref_prot =
140 ((address & LARGE_PAGE_MASK) < (unsigned long)&_etext)
141 ? PAGE_KERNEL_LARGE_EXEC : PAGE_KERNEL_LARGE;
142
143 linear = (pte_t *)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 pmd_offset(pud_offset(pgd_offset_k(address), address), address);
145 set_pmd_pte(linear, address,
146 pfn_pte((__pa(address) & LARGE_PAGE_MASK) >> PAGE_SHIFT,
Dave Jonesf8af0952006-01-06 00:12:10 -0800147 ref_prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200150static inline void save_page(struct page *kpte_page)
151{
152 if (!test_and_set_bit(PG_arch_1, &kpte_page->flags))
153 list_add(&kpte_page->lru, &df_list);
154}
155
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100156static int __change_page_attr(struct page *page, pgprot_t prot)
157{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct page *kpte_page;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100159 unsigned long address;
160 pte_t *kpte;
Ingo Molnarf0646e42008-01-30 13:33:43 +0100161 int level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 BUG_ON(PageHighMem(page));
164 address = (unsigned long)page_address(page);
165
Ingo Molnarf0646e42008-01-30 13:33:43 +0100166 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!kpte)
168 return -EINVAL;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 kpte_page = virt_to_page(kpte);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200171 BUG_ON(PageLRU(kpte_page));
172 BUG_ON(PageCompound(kpte_page));
173
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100174 if (pgprot_val(prot) != pgprot_val(PAGE_KERNEL)) {
Jan Beulichd01ad8d2007-05-02 19:27:10 +0200175 if (!pte_huge(*kpte)) {
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100176 set_pte_atomic(kpte, mk_pte(page, prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 } else {
Dave Jonesf8af0952006-01-06 00:12:10 -0800178 struct page *split;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100179 pgprot_t ref_prot;
Dave Jonesf8af0952006-01-06 00:12:10 -0800180
181 ref_prot =
182 ((address & LARGE_PAGE_MASK) < (unsigned long)&_etext)
183 ? PAGE_KERNEL_EXEC : PAGE_KERNEL;
184 split = split_large_page(address, prot, ref_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (!split)
186 return -ENOMEM;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100187
188 set_pmd_pte(kpte, address, mk_pte(split, ref_prot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 kpte_page = split;
Nick Piggin84d1c052006-03-22 00:08:31 -0800190 }
191 page_private(kpte_page)++;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100192 } else {
193 if (!pte_huge(*kpte)) {
194 set_pte_atomic(kpte, mk_pte(page, PAGE_KERNEL));
195 BUG_ON(page_private(kpte_page) == 0);
196 page_private(kpte_page)--;
197 } else
198 BUG();
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /*
202 * If the pte was reserved, it means it was created at boot
203 * time (not via split_large_page) and in turn we must not
204 * replace it with a largepage.
205 */
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200206
207 save_page(kpte_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (!PageReserved(kpte_page)) {
Nick Piggin84d1c052006-03-22 00:08:31 -0800209 if (cpu_has_pse && (page_private(kpte_page) == 0)) {
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100210 paravirt_release_pt(page_to_pfn(kpte_page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 revert_page(kpte_page, address);
212 }
213 }
214 return 0;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100215}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Andi Kleen018d2ad2007-06-20 12:23:36 +0200217static inline void flush_map(struct list_head *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Andi Kleen018d2ad2007-06-20 12:23:36 +0200219 on_each_cpu(flush_kernel_map, l, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
222/*
223 * Change the page attributes of an page in the linear mapping.
224 *
225 * This should be used when a page is mapped with a different caching policy
226 * than write-back somewhere - some CPUs do not like it when mappings with
227 * different caching policies exist. This changes the page attributes of the
228 * in kernel linear mapping too.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100229 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * The caller needs to ensure that there are no conflicting mappings elsewhere.
231 * This function only deals with the kernel linear map.
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100232 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * Caller must call global_flush_tlb() after this.
234 */
235int change_page_attr(struct page *page, int numpages, pgprot_t prot)
236{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 unsigned long flags;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100238 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 spin_lock_irqsave(&cpa_lock, flags);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100241 for (i = 0; i < numpages; i++, page++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 err = __change_page_attr(page, prot);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100243 if (err)
244 break;
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 spin_unlock_irqrestore(&cpa_lock, flags);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return err;
249}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100250EXPORT_SYMBOL(change_page_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252void global_flush_tlb(void)
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700253{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct page *pg, *next;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100255 struct list_head l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 BUG_ON(irqs_disabled());
258
259 spin_lock_irq(&cpa_lock);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700260 list_replace_init(&df_list, &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spin_unlock_irq(&cpa_lock);
Andi Kleen018d2ad2007-06-20 12:23:36 +0200262 flush_map(&l);
Andi Kleen3760dd62006-12-07 02:14:05 +0100263 list_for_each_entry_safe(pg, next, &l, lru) {
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200264 list_del(&pg->lru);
265 clear_bit(PG_arch_1, &pg->flags);
266 if (PageReserved(pg) || !cpu_has_pse || page_private(pg) != 0)
267 continue;
268 ClearPagePrivate(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 __free_page(pg);
Andi Kleen3760dd62006-12-07 02:14:05 +0100270 }
Oleg Nesterov626ab0e2006-06-23 02:05:55 -0700271}
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100272EXPORT_SYMBOL(global_flush_tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274#ifdef CONFIG_DEBUG_PAGEALLOC
275void kernel_map_pages(struct page *page, int numpages, int enable)
276{
277 if (PageHighMem(page))
278 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100279 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700280 debug_check_no_locks_freed(page_address(page),
281 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100282 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800283
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100284 /*
285 * the return value is ignored - the calls cannot fail,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * large pages are disabled at boot time.
287 */
288 change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100289
290 /*
291 * we should perform an IPI and flush all tlbs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 * but that can deadlock->flush only current cpu.
293 */
294 __flush_tlb_all();
295}
296#endif