Merge tag 'v3.10.107' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / s390 / mm / pgtable.c
CommitLineData
3610cce8 1/*
a53c8fab 2 * Copyright IBM Corp. 2007, 2011
3610cce8
MS
3 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
4 */
5
6#include <linux/sched.h>
7#include <linux/kernel.h>
8#include <linux/errno.h>
5a0e3ad6 9#include <linux/gfp.h>
3610cce8
MS
10#include <linux/mm.h>
11#include <linux/swap.h>
12#include <linux/smp.h>
13#include <linux/highmem.h>
3610cce8
MS
14#include <linux/pagemap.h>
15#include <linux/spinlock.h>
16#include <linux/module.h>
17#include <linux/quicklist.h>
80217147 18#include <linux/rcupdate.h>
e5992f2e 19#include <linux/slab.h>
3610cce8 20
3610cce8
MS
21#include <asm/pgtable.h>
22#include <asm/pgalloc.h>
23#include <asm/tlb.h>
24#include <asm/tlbflush.h>
6252d702 25#include <asm/mmu_context.h>
3610cce8
MS
26
27#ifndef CONFIG_64BIT
28#define ALLOC_ORDER 1
36409f63 29#define FRAG_MASK 0x0f
3610cce8
MS
30#else
31#define ALLOC_ORDER 2
36409f63 32#define FRAG_MASK 0x03
3610cce8
MS
33#endif
34
239a6425 35
043d0708 36unsigned long *crst_table_alloc(struct mm_struct *mm)
3610cce8
MS
37{
38 struct page *page = alloc_pages(GFP_KERNEL, ALLOC_ORDER);
39
40 if (!page)
41 return NULL;
3610cce8
MS
42 return (unsigned long *) page_to_phys(page);
43}
44
80217147
MS
45void crst_table_free(struct mm_struct *mm, unsigned long *table)
46{
043d0708 47 free_pages((unsigned long) table, ALLOC_ORDER);
80217147
MS
48}
49
6252d702
MS
50#ifdef CONFIG_64BIT
51int crst_table_upgrade(struct mm_struct *mm, unsigned long limit)
52{
53 unsigned long *table, *pgd;
54 unsigned long entry;
55
56 BUG_ON(limit > (1UL << 53));
57repeat:
043d0708 58 table = crst_table_alloc(mm);
6252d702
MS
59 if (!table)
60 return -ENOMEM;
80217147 61 spin_lock_bh(&mm->page_table_lock);
6252d702
MS
62 if (mm->context.asce_limit < limit) {
63 pgd = (unsigned long *) mm->pgd;
64 if (mm->context.asce_limit <= (1UL << 31)) {
65 entry = _REGION3_ENTRY_EMPTY;
66 mm->context.asce_limit = 1UL << 42;
67 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
68 _ASCE_USER_BITS |
69 _ASCE_TYPE_REGION3;
70 } else {
71 entry = _REGION2_ENTRY_EMPTY;
72 mm->context.asce_limit = 1UL << 53;
73 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
74 _ASCE_USER_BITS |
75 _ASCE_TYPE_REGION2;
76 }
77 crst_table_init(table, entry);
78 pgd_populate(mm, (pgd_t *) table, (pud_t *) pgd);
79 mm->pgd = (pgd_t *) table;
f481bfaf 80 mm->task_size = mm->context.asce_limit;
6252d702
MS
81 table = NULL;
82 }
80217147 83 spin_unlock_bh(&mm->page_table_lock);
6252d702
MS
84 if (table)
85 crst_table_free(mm, table);
86 if (mm->context.asce_limit < limit)
87 goto repeat;
6252d702
MS
88 return 0;
89}
90
91void crst_table_downgrade(struct mm_struct *mm, unsigned long limit)
92{
93 pgd_t *pgd;
94
6252d702
MS
95 while (mm->context.asce_limit > limit) {
96 pgd = mm->pgd;
97 switch (pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) {
98 case _REGION_ENTRY_TYPE_R2:
99 mm->context.asce_limit = 1UL << 42;
100 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
101 _ASCE_USER_BITS |
102 _ASCE_TYPE_REGION3;
103 break;
104 case _REGION_ENTRY_TYPE_R3:
105 mm->context.asce_limit = 1UL << 31;
106 mm->context.asce_bits = _ASCE_TABLE_LENGTH |
107 _ASCE_USER_BITS |
108 _ASCE_TYPE_SEGMENT;
109 break;
110 default:
111 BUG();
112 }
113 mm->pgd = (pgd_t *) (pgd_val(*pgd) & _REGION_ENTRY_ORIGIN);
f481bfaf 114 mm->task_size = mm->context.asce_limit;
6252d702
MS
115 crst_table_free(mm, (unsigned long *) pgd);
116 }
6252d702
MS
117}
118#endif
119
e5992f2e
MS
120#ifdef CONFIG_PGSTE
121
122/**
123 * gmap_alloc - allocate a guest address space
124 * @mm: pointer to the parent mm_struct
125 *
126 * Returns a guest address space structure.
127 */
128struct gmap *gmap_alloc(struct mm_struct *mm)
36409f63 129{
e5992f2e
MS
130 struct gmap *gmap;
131 struct page *page;
132 unsigned long *table;
36409f63 133
e5992f2e
MS
134 gmap = kzalloc(sizeof(struct gmap), GFP_KERNEL);
135 if (!gmap)
136 goto out;
137 INIT_LIST_HEAD(&gmap->crst_list);
138 gmap->mm = mm;
139 page = alloc_pages(GFP_KERNEL, ALLOC_ORDER);
140 if (!page)
141 goto out_free;
142 list_add(&page->lru, &gmap->crst_list);
143 table = (unsigned long *) page_to_phys(page);
144 crst_table_init(table, _REGION1_ENTRY_EMPTY);
145 gmap->table = table;
480e5926
CB
146 gmap->asce = _ASCE_TYPE_REGION1 | _ASCE_TABLE_LENGTH |
147 _ASCE_USER_BITS | __pa(table);
e5992f2e
MS
148 list_add(&gmap->list, &mm->context.gmap_list);
149 return gmap;
150
151out_free:
152 kfree(gmap);
153out:
154 return NULL;
36409f63 155}
e5992f2e 156EXPORT_SYMBOL_GPL(gmap_alloc);
36409f63 157
e5992f2e
MS
158static int gmap_unlink_segment(struct gmap *gmap, unsigned long *table)
159{
160 struct gmap_pgtable *mp;
161 struct gmap_rmap *rmap;
162 struct page *page;
163
164 if (*table & _SEGMENT_ENTRY_INV)
165 return 0;
166 page = pfn_to_page(*table >> PAGE_SHIFT);
167 mp = (struct gmap_pgtable *) page->index;
168 list_for_each_entry(rmap, &mp->mapper, list) {
169 if (rmap->entry != table)
170 continue;
171 list_del(&rmap->list);
172 kfree(rmap);
173 break;
174 }
175 *table = _SEGMENT_ENTRY_INV | _SEGMENT_ENTRY_RO | mp->vmaddr;
176 return 1;
177}
178
179static void gmap_flush_tlb(struct gmap *gmap)
180{
181 if (MACHINE_HAS_IDTE)
182 __tlb_flush_idte((unsigned long) gmap->table |
183 _ASCE_TYPE_REGION1);
184 else
185 __tlb_flush_global();
186}
187
188/**
189 * gmap_free - free a guest address space
190 * @gmap: pointer to the guest address space structure
3610cce8 191 */
e5992f2e
MS
192void gmap_free(struct gmap *gmap)
193{
194 struct page *page, *next;
195 unsigned long *table;
196 int i;
197
198
199 /* Flush tlb. */
200 if (MACHINE_HAS_IDTE)
201 __tlb_flush_idte((unsigned long) gmap->table |
202 _ASCE_TYPE_REGION1);
203 else
204 __tlb_flush_global();
205
206 /* Free all segment & region tables. */
207 down_read(&gmap->mm->mmap_sem);
cc772456 208 spin_lock(&gmap->mm->page_table_lock);
e5992f2e
MS
209 list_for_each_entry_safe(page, next, &gmap->crst_list, lru) {
210 table = (unsigned long *) page_to_phys(page);
211 if ((*table & _REGION_ENTRY_TYPE_MASK) == 0)
212 /* Remove gmap rmap structures for segment table. */
213 for (i = 0; i < PTRS_PER_PMD; i++, table++)
214 gmap_unlink_segment(gmap, table);
215 __free_pages(page, ALLOC_ORDER);
216 }
cc772456 217 spin_unlock(&gmap->mm->page_table_lock);
e5992f2e
MS
218 up_read(&gmap->mm->mmap_sem);
219 list_del(&gmap->list);
220 kfree(gmap);
221}
222EXPORT_SYMBOL_GPL(gmap_free);
223
224/**
225 * gmap_enable - switch primary space to the guest address space
226 * @gmap: pointer to the guest address space structure
227 */
228void gmap_enable(struct gmap *gmap)
229{
e5992f2e
MS
230 S390_lowcore.gmap = (unsigned long) gmap;
231}
232EXPORT_SYMBOL_GPL(gmap_enable);
233
234/**
235 * gmap_disable - switch back to the standard primary address space
236 * @gmap: pointer to the guest address space structure
237 */
238void gmap_disable(struct gmap *gmap)
239{
e5992f2e
MS
240 S390_lowcore.gmap = 0UL;
241}
242EXPORT_SYMBOL_GPL(gmap_disable);
243
a9162f23
CO
244/*
245 * gmap_alloc_table is assumed to be called with mmap_sem held
246 */
e5992f2e
MS
247static int gmap_alloc_table(struct gmap *gmap,
248 unsigned long *table, unsigned long init)
249{
250 struct page *page;
251 unsigned long *new;
252
c86cce2a
CB
253 /* since we dont free the gmap table until gmap_free we can unlock */
254 spin_unlock(&gmap->mm->page_table_lock);
e5992f2e 255 page = alloc_pages(GFP_KERNEL, ALLOC_ORDER);
c86cce2a 256 spin_lock(&gmap->mm->page_table_lock);
e5992f2e
MS
257 if (!page)
258 return -ENOMEM;
259 new = (unsigned long *) page_to_phys(page);
260 crst_table_init(new, init);
e5992f2e
MS
261 if (*table & _REGION_ENTRY_INV) {
262 list_add(&page->lru, &gmap->crst_list);
263 *table = (unsigned long) new | _REGION_ENTRY_LENGTH |
264 (*table & _REGION_ENTRY_TYPE_MASK);
265 } else
266 __free_pages(page, ALLOC_ORDER);
e5992f2e
MS
267 return 0;
268}
269
270/**
271 * gmap_unmap_segment - unmap segment from the guest address space
272 * @gmap: pointer to the guest address space structure
273 * @addr: address in the guest address space
274 * @len: length of the memory area to unmap
275 *
276 * Returns 0 if the unmap succeded, -EINVAL if not.
277 */
278int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len)
279{
280 unsigned long *table;
281 unsigned long off;
282 int flush;
283
284 if ((to | len) & (PMD_SIZE - 1))
285 return -EINVAL;
286 if (len == 0 || to + len < to)
287 return -EINVAL;
288
289 flush = 0;
290 down_read(&gmap->mm->mmap_sem);
cc772456 291 spin_lock(&gmap->mm->page_table_lock);
e5992f2e
MS
292 for (off = 0; off < len; off += PMD_SIZE) {
293 /* Walk the guest addr space page table */
294 table = gmap->table + (((to + off) >> 53) & 0x7ff);
295 if (*table & _REGION_ENTRY_INV)
05873df9 296 goto out;
e5992f2e
MS
297 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
298 table = table + (((to + off) >> 42) & 0x7ff);
299 if (*table & _REGION_ENTRY_INV)
05873df9 300 goto out;
e5992f2e
MS
301 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
302 table = table + (((to + off) >> 31) & 0x7ff);
303 if (*table & _REGION_ENTRY_INV)
05873df9 304 goto out;
e5992f2e
MS
305 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
306 table = table + (((to + off) >> 20) & 0x7ff);
307
308 /* Clear segment table entry in guest address space. */
309 flush |= gmap_unlink_segment(gmap, table);
310 *table = _SEGMENT_ENTRY_INV;
311 }
05873df9 312out:
cc772456 313 spin_unlock(&gmap->mm->page_table_lock);
e5992f2e
MS
314 up_read(&gmap->mm->mmap_sem);
315 if (flush)
316 gmap_flush_tlb(gmap);
317 return 0;
318}
319EXPORT_SYMBOL_GPL(gmap_unmap_segment);
320
321/**
322 * gmap_mmap_segment - map a segment to the guest address space
323 * @gmap: pointer to the guest address space structure
324 * @from: source address in the parent address space
325 * @to: target address in the guest address space
326 *
327 * Returns 0 if the mmap succeded, -EINVAL or -ENOMEM if not.
328 */
329int gmap_map_segment(struct gmap *gmap, unsigned long from,
330 unsigned long to, unsigned long len)
331{
332 unsigned long *table;
333 unsigned long off;
334 int flush;
335
336 if ((from | to | len) & (PMD_SIZE - 1))
337 return -EINVAL;
f7bbcabc 338 if (len == 0 || from + len > TASK_MAX_SIZE ||
e5992f2e
MS
339 from + len < from || to + len < to)
340 return -EINVAL;
341
342 flush = 0;
343 down_read(&gmap->mm->mmap_sem);
cc772456 344 spin_lock(&gmap->mm->page_table_lock);
e5992f2e
MS
345 for (off = 0; off < len; off += PMD_SIZE) {
346 /* Walk the gmap address space page table */
347 table = gmap->table + (((to + off) >> 53) & 0x7ff);
348 if ((*table & _REGION_ENTRY_INV) &&
349 gmap_alloc_table(gmap, table, _REGION2_ENTRY_EMPTY))
350 goto out_unmap;
351 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
352 table = table + (((to + off) >> 42) & 0x7ff);
353 if ((*table & _REGION_ENTRY_INV) &&
354 gmap_alloc_table(gmap, table, _REGION3_ENTRY_EMPTY))
355 goto out_unmap;
356 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
357 table = table + (((to + off) >> 31) & 0x7ff);
358 if ((*table & _REGION_ENTRY_INV) &&
359 gmap_alloc_table(gmap, table, _SEGMENT_ENTRY_EMPTY))
360 goto out_unmap;
361 table = (unsigned long *) (*table & _REGION_ENTRY_ORIGIN);
362 table = table + (((to + off) >> 20) & 0x7ff);
363
364 /* Store 'from' address in an invalid segment table entry. */
365 flush |= gmap_unlink_segment(gmap, table);
366 *table = _SEGMENT_ENTRY_INV | _SEGMENT_ENTRY_RO | (from + off);
367 }
cc772456 368 spin_unlock(&gmap->mm->page_table_lock);
e5992f2e
MS
369 up_read(&gmap->mm->mmap_sem);
370 if (flush)
371 gmap_flush_tlb(gmap);
372 return 0;
373
374out_unmap:
cc772456 375 spin_unlock(&gmap->mm->page_table_lock);
e5992f2e
MS
376 up_read(&gmap->mm->mmap_sem);
377 gmap_unmap_segment(gmap, to, len);
378 return -ENOMEM;
379}
380EXPORT_SYMBOL_GPL(gmap_map_segment);
381
c5034945
HC
382static unsigned long *gmap_table_walk(unsigned long address, struct gmap *gmap)
383{
384 unsigned long *table;
385
386 table = gmap->table + ((address >> 53) & 0x7ff);
387 if (unlikely(*table & _REGION_ENTRY_INV))
388 return ERR_PTR(-EFAULT);
389 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
390 table = table + ((address >> 42) & 0x7ff);
391 if (unlikely(*table & _REGION_ENTRY_INV))
392 return ERR_PTR(-EFAULT);
393 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
394 table = table + ((address >> 31) & 0x7ff);
395 if (unlikely(*table & _REGION_ENTRY_INV))
396 return ERR_PTR(-EFAULT);
397 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
398 table = table + ((address >> 20) & 0x7ff);
399 return table;
400}
401
402/**
403 * __gmap_translate - translate a guest address to a user space address
404 * @address: guest address
405 * @gmap: pointer to guest mapping meta data structure
406 *
407 * Returns user space address which corresponds to the guest address or
408 * -EFAULT if no such mapping exists.
409 * This function does not establish potentially missing page table entries.
410 * The mmap_sem of the mm that belongs to the address space must be held
411 * when this function gets called.
412 */
413unsigned long __gmap_translate(unsigned long address, struct gmap *gmap)
414{
415 unsigned long *segment_ptr, vmaddr, segment;
416 struct gmap_pgtable *mp;
417 struct page *page;
418
419 current->thread.gmap_addr = address;
420 segment_ptr = gmap_table_walk(address, gmap);
421 if (IS_ERR(segment_ptr))
422 return PTR_ERR(segment_ptr);
423 /* Convert the gmap address to an mm address. */
424 segment = *segment_ptr;
425 if (!(segment & _SEGMENT_ENTRY_INV)) {
426 page = pfn_to_page(segment >> PAGE_SHIFT);
427 mp = (struct gmap_pgtable *) page->index;
428 return mp->vmaddr | (address & ~PMD_MASK);
429 } else if (segment & _SEGMENT_ENTRY_RO) {
430 vmaddr = segment & _SEGMENT_ENTRY_ORIGIN;
431 return vmaddr | (address & ~PMD_MASK);
432 }
433 return -EFAULT;
434}
435EXPORT_SYMBOL_GPL(__gmap_translate);
436
437/**
438 * gmap_translate - translate a guest address to a user space address
439 * @address: guest address
440 * @gmap: pointer to guest mapping meta data structure
441 *
442 * Returns user space address which corresponds to the guest address or
443 * -EFAULT if no such mapping exists.
444 * This function does not establish potentially missing page table entries.
445 */
446unsigned long gmap_translate(unsigned long address, struct gmap *gmap)
447{
448 unsigned long rc;
449
450 down_read(&gmap->mm->mmap_sem);
451 rc = __gmap_translate(address, gmap);
452 up_read(&gmap->mm->mmap_sem);
453 return rc;
454}
455EXPORT_SYMBOL_GPL(gmap_translate);
456
d3383632
MS
457static int gmap_connect_pgtable(unsigned long address, unsigned long segment,
458 unsigned long *segment_ptr, struct gmap *gmap)
e5992f2e 459{
ab8e5235 460 unsigned long vmaddr;
c5034945 461 struct vm_area_struct *vma;
e5992f2e
MS
462 struct gmap_pgtable *mp;
463 struct gmap_rmap *rmap;
c5034945 464 struct mm_struct *mm;
e5992f2e
MS
465 struct page *page;
466 pgd_t *pgd;
467 pud_t *pud;
468 pmd_t *pmd;
469
ab8e5235
MS
470 mm = gmap->mm;
471 vmaddr = segment & _SEGMENT_ENTRY_ORIGIN;
472 vma = find_vma(mm, vmaddr);
473 if (!vma || vma->vm_start > vmaddr)
474 return -EFAULT;
475 /* Walk the parent mm page table */
476 pgd = pgd_offset(mm, vmaddr);
477 pud = pud_alloc(mm, pgd, vmaddr);
478 if (!pud)
479 return -ENOMEM;
480 pmd = pmd_alloc(mm, pud, vmaddr);
481 if (!pmd)
482 return -ENOMEM;
483 if (!pmd_present(*pmd) &&
484 __pte_alloc(mm, vma, pmd, vmaddr))
485 return -ENOMEM;
486 /* pmd now points to a valid segment table entry. */
487 rmap = kmalloc(sizeof(*rmap), GFP_KERNEL|__GFP_REPEAT);
488 if (!rmap)
489 return -ENOMEM;
490 /* Link gmap segment table entry location to page table. */
491 page = pmd_page(*pmd);
492 mp = (struct gmap_pgtable *) page->index;
d3383632 493 rmap->gmap = gmap;
ab8e5235 494 rmap->entry = segment_ptr;
e86cbd87 495 rmap->vmaddr = address & PMD_MASK;
ab8e5235
MS
496 spin_lock(&mm->page_table_lock);
497 if (*segment_ptr == segment) {
498 list_add(&rmap->list, &mp->mapper);
499 /* Set gmap segment table entry to page table. */
500 *segment_ptr = pmd_val(*pmd) & PAGE_MASK;
501 rmap = NULL;
502 }
503 spin_unlock(&mm->page_table_lock);
504 kfree(rmap);
505 return 0;
506}
507
508static void gmap_disconnect_pgtable(struct mm_struct *mm, unsigned long *table)
509{
510 struct gmap_rmap *rmap, *next;
511 struct gmap_pgtable *mp;
512 struct page *page;
513 int flush;
514
515 flush = 0;
516 spin_lock(&mm->page_table_lock);
517 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
518 mp = (struct gmap_pgtable *) page->index;
519 list_for_each_entry_safe(rmap, next, &mp->mapper, list) {
520 *rmap->entry =
521 _SEGMENT_ENTRY_INV | _SEGMENT_ENTRY_RO | mp->vmaddr;
522 list_del(&rmap->list);
523 kfree(rmap);
524 flush = 1;
525 }
526 spin_unlock(&mm->page_table_lock);
527 if (flush)
528 __tlb_flush_global();
529}
530
531/*
532 * this function is assumed to be called with mmap_sem held
533 */
534unsigned long __gmap_fault(unsigned long address, struct gmap *gmap)
535{
536 unsigned long *segment_ptr, segment;
537 struct gmap_pgtable *mp;
538 struct page *page;
539 int rc;
540
e5992f2e 541 current->thread.gmap_addr = address;
c5034945
HC
542 segment_ptr = gmap_table_walk(address, gmap);
543 if (IS_ERR(segment_ptr))
e5992f2e 544 return -EFAULT;
e5992f2e 545 /* Convert the gmap address to an mm address. */
ab8e5235
MS
546 while (1) {
547 segment = *segment_ptr;
548 if (!(segment & _SEGMENT_ENTRY_INV)) {
549 /* Page table is present */
550 page = pfn_to_page(segment >> PAGE_SHIFT);
551 mp = (struct gmap_pgtable *) page->index;
552 return mp->vmaddr | (address & ~PMD_MASK);
553 }
554 if (!(segment & _SEGMENT_ENTRY_RO))
555 /* Nothing mapped in the gmap address space. */
556 break;
d3383632 557 rc = gmap_connect_pgtable(address, segment, segment_ptr, gmap);
ab8e5235
MS
558 if (rc)
559 return rc;
e5992f2e
MS
560 }
561 return -EFAULT;
499069e1
CO
562}
563
564unsigned long gmap_fault(unsigned long address, struct gmap *gmap)
565{
566 unsigned long rc;
567
568 down_read(&gmap->mm->mmap_sem);
569 rc = __gmap_fault(address, gmap);
570 up_read(&gmap->mm->mmap_sem);
e5992f2e 571
499069e1 572 return rc;
e5992f2e
MS
573}
574EXPORT_SYMBOL_GPL(gmap_fault);
575
388186bc
CB
576void gmap_discard(unsigned long from, unsigned long to, struct gmap *gmap)
577{
578
579 unsigned long *table, address, size;
580 struct vm_area_struct *vma;
581 struct gmap_pgtable *mp;
582 struct page *page;
583
584 down_read(&gmap->mm->mmap_sem);
585 address = from;
586 while (address < to) {
587 /* Walk the gmap address space page table */
588 table = gmap->table + ((address >> 53) & 0x7ff);
589 if (unlikely(*table & _REGION_ENTRY_INV)) {
590 address = (address + PMD_SIZE) & PMD_MASK;
591 continue;
592 }
593 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
594 table = table + ((address >> 42) & 0x7ff);
595 if (unlikely(*table & _REGION_ENTRY_INV)) {
596 address = (address + PMD_SIZE) & PMD_MASK;
597 continue;
598 }
599 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
600 table = table + ((address >> 31) & 0x7ff);
601 if (unlikely(*table & _REGION_ENTRY_INV)) {
602 address = (address + PMD_SIZE) & PMD_MASK;
603 continue;
604 }
605 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN);
606 table = table + ((address >> 20) & 0x7ff);
607 if (unlikely(*table & _SEGMENT_ENTRY_INV)) {
608 address = (address + PMD_SIZE) & PMD_MASK;
609 continue;
610 }
611 page = pfn_to_page(*table >> PAGE_SHIFT);
612 mp = (struct gmap_pgtable *) page->index;
613 vma = find_vma(gmap->mm, mp->vmaddr);
614 size = min(to - address, PMD_SIZE - (address & ~PMD_MASK));
615 zap_page_range(vma, mp->vmaddr | (address & ~PMD_MASK),
616 size, NULL);
617 address = (address + PMD_SIZE) & PMD_MASK;
618 }
619 up_read(&gmap->mm->mmap_sem);
620}
621EXPORT_SYMBOL_GPL(gmap_discard);
622
d3383632
MS
623static LIST_HEAD(gmap_notifier_list);
624static DEFINE_SPINLOCK(gmap_notifier_lock);
625
626/**
627 * gmap_register_ipte_notifier - register a pte invalidation callback
628 * @nb: pointer to the gmap notifier block
629 */
630void gmap_register_ipte_notifier(struct gmap_notifier *nb)
631{
632 spin_lock(&gmap_notifier_lock);
633 list_add(&nb->list, &gmap_notifier_list);
634 spin_unlock(&gmap_notifier_lock);
635}
636EXPORT_SYMBOL_GPL(gmap_register_ipte_notifier);
637
638/**
639 * gmap_unregister_ipte_notifier - remove a pte invalidation callback
640 * @nb: pointer to the gmap notifier block
641 */
642void gmap_unregister_ipte_notifier(struct gmap_notifier *nb)
643{
644 spin_lock(&gmap_notifier_lock);
645 list_del_init(&nb->list);
646 spin_unlock(&gmap_notifier_lock);
647}
648EXPORT_SYMBOL_GPL(gmap_unregister_ipte_notifier);
649
650/**
651 * gmap_ipte_notify - mark a range of ptes for invalidation notification
652 * @gmap: pointer to guest mapping meta data structure
653 * @address: virtual address in the guest address space
654 * @len: size of area
655 *
656 * Returns 0 if for each page in the given range a gmap mapping exists and
657 * the invalidation notification could be set. If the gmap mapping is missing
658 * for one or more pages -EFAULT is returned. If no memory could be allocated
659 * -ENOMEM is returned. This function establishes missing page table entries.
660 */
661int gmap_ipte_notify(struct gmap *gmap, unsigned long start, unsigned long len)
662{
663 unsigned long addr;
664 spinlock_t *ptl;
665 pte_t *ptep, entry;
666 pgste_t pgste;
667 int rc = 0;
668
669 if ((start & ~PAGE_MASK) || (len & ~PAGE_MASK))
670 return -EINVAL;
671 down_read(&gmap->mm->mmap_sem);
672 while (len) {
673 /* Convert gmap address and connect the page tables */
674 addr = __gmap_fault(start, gmap);
675 if (IS_ERR_VALUE(addr)) {
676 rc = addr;
677 break;
678 }
679 /* Get the page mapped */
bb4b42ce 680 if (fixup_user_fault(current, gmap->mm, addr, FAULT_FLAG_WRITE)) {
d3383632
MS
681 rc = -EFAULT;
682 break;
683 }
684 /* Walk the process page table, lock and get pte pointer */
685 ptep = get_locked_pte(gmap->mm, addr, &ptl);
686 if (unlikely(!ptep))
687 continue;
688 /* Set notification bit in the pgste of the pte */
689 entry = *ptep;
690 if ((pte_val(entry) & (_PAGE_INVALID | _PAGE_RO)) == 0) {
691 pgste = pgste_get_lock(ptep);
692 pgste_val(pgste) |= RCP_IN_BIT;
693 pgste_set_unlock(ptep, pgste);
694 start += PAGE_SIZE;
695 len -= PAGE_SIZE;
696 }
697 spin_unlock(ptl);
698 }
699 up_read(&gmap->mm->mmap_sem);
700 return rc;
701}
702EXPORT_SYMBOL_GPL(gmap_ipte_notify);
703
704/**
705 * gmap_do_ipte_notify - call all invalidation callbacks for a specific pte.
706 * @mm: pointer to the process mm_struct
707 * @addr: virtual address in the process address space
708 * @pte: pointer to the page table entry
709 *
710 * This function is assumed to be called with the page table lock held
711 * for the pte to notify.
712 */
713void gmap_do_ipte_notify(struct mm_struct *mm, unsigned long addr, pte_t *pte)
714{
715 unsigned long segment_offset;
716 struct gmap_notifier *nb;
717 struct gmap_pgtable *mp;
718 struct gmap_rmap *rmap;
719 struct page *page;
720
721 segment_offset = ((unsigned long) pte) & (255 * sizeof(pte_t));
722 segment_offset = segment_offset * (4096 / sizeof(pte_t));
723 page = pfn_to_page(__pa(pte) >> PAGE_SHIFT);
724 mp = (struct gmap_pgtable *) page->index;
725 spin_lock(&gmap_notifier_lock);
726 list_for_each_entry(rmap, &mp->mapper, list) {
727 list_for_each_entry(nb, &gmap_notifier_list, list)
728 nb->notifier_call(rmap->gmap,
729 rmap->vmaddr + segment_offset);
730 }
731 spin_unlock(&gmap_notifier_lock);
732}
733
e5992f2e
MS
734static inline unsigned long *page_table_alloc_pgste(struct mm_struct *mm,
735 unsigned long vmaddr)
36409f63
MS
736{
737 struct page *page;
738 unsigned long *table;
e5992f2e 739 struct gmap_pgtable *mp;
36409f63
MS
740
741 page = alloc_page(GFP_KERNEL|__GFP_REPEAT);
742 if (!page)
743 return NULL;
e5992f2e
MS
744 mp = kmalloc(sizeof(*mp), GFP_KERNEL|__GFP_REPEAT);
745 if (!mp) {
746 __free_page(page);
747 return NULL;
748 }
36409f63 749 pgtable_page_ctor(page);
e5992f2e
MS
750 mp->vmaddr = vmaddr & PMD_MASK;
751 INIT_LIST_HEAD(&mp->mapper);
752 page->index = (unsigned long) mp;
36409f63
MS
753 atomic_set(&page->_mapcount, 3);
754 table = (unsigned long *) page_to_phys(page);
755 clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE/2);
756 clear_table(table + PTRS_PER_PTE, 0, PAGE_SIZE/2);
757 return table;
758}
759
760static inline void page_table_free_pgste(unsigned long *table)
761{
762 struct page *page;
e5992f2e 763 struct gmap_pgtable *mp;
36409f63
MS
764
765 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
e5992f2e
MS
766 mp = (struct gmap_pgtable *) page->index;
767 BUG_ON(!list_empty(&mp->mapper));
2320c579 768 pgtable_page_dtor(page);
36409f63 769 atomic_set(&page->_mapcount, -1);
e5992f2e 770 kfree(mp);
36409f63
MS
771 __free_page(page);
772}
36409f63 773
e5992f2e
MS
774#else /* CONFIG_PGSTE */
775
776static inline unsigned long *page_table_alloc_pgste(struct mm_struct *mm,
777 unsigned long vmaddr)
778{
944291de 779 return NULL;
e5992f2e
MS
780}
781
782static inline void page_table_free_pgste(unsigned long *table)
783{
784}
785
ab8e5235
MS
786static inline void gmap_disconnect_pgtable(struct mm_struct *mm,
787 unsigned long *table)
e5992f2e
MS
788{
789}
790
791#endif /* CONFIG_PGSTE */
792
793static inline unsigned int atomic_xor_bits(atomic_t *v, unsigned int bits)
794{
795 unsigned int old, new;
796
797 do {
798 old = atomic_read(v);
799 new = old ^ bits;
800 } while (atomic_cmpxchg(v, old, new) != old);
801 return new;
802}
803
804/*
805 * page table entry allocation/free routines.
806 */
807unsigned long *page_table_alloc(struct mm_struct *mm, unsigned long vmaddr)
3610cce8 808{
41459d36
HC
809 unsigned long *uninitialized_var(table);
810 struct page *uninitialized_var(page);
36409f63 811 unsigned int mask, bit;
3610cce8 812
36409f63 813 if (mm_has_pgste(mm))
e5992f2e 814 return page_table_alloc_pgste(mm, vmaddr);
36409f63 815 /* Allocate fragments of a 4K page as 1K/2K page table */
80217147 816 spin_lock_bh(&mm->context.list_lock);
36409f63 817 mask = FRAG_MASK;
146e4b3c
MS
818 if (!list_empty(&mm->context.pgtable_list)) {
819 page = list_first_entry(&mm->context.pgtable_list,
820 struct page, lru);
36409f63
MS
821 table = (unsigned long *) page_to_phys(page);
822 mask = atomic_read(&page->_mapcount);
823 mask = mask | (mask >> 4);
146e4b3c 824 }
36409f63 825 if ((mask & FRAG_MASK) == FRAG_MASK) {
80217147 826 spin_unlock_bh(&mm->context.list_lock);
146e4b3c
MS
827 page = alloc_page(GFP_KERNEL|__GFP_REPEAT);
828 if (!page)
3610cce8 829 return NULL;
146e4b3c 830 pgtable_page_ctor(page);
36409f63 831 atomic_set(&page->_mapcount, 1);
146e4b3c 832 table = (unsigned long *) page_to_phys(page);
36409f63 833 clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE);
80217147 834 spin_lock_bh(&mm->context.list_lock);
146e4b3c 835 list_add(&page->lru, &mm->context.pgtable_list);
36409f63
MS
836 } else {
837 for (bit = 1; mask & bit; bit <<= 1)
838 table += PTRS_PER_PTE;
839 mask = atomic_xor_bits(&page->_mapcount, bit);
840 if ((mask & FRAG_MASK) == FRAG_MASK)
841 list_del(&page->lru);
3610cce8 842 }
80217147 843 spin_unlock_bh(&mm->context.list_lock);
3610cce8
MS
844 return table;
845}
846
36409f63 847void page_table_free(struct mm_struct *mm, unsigned long *table)
80217147
MS
848{
849 struct page *page;
36409f63 850 unsigned int bit, mask;
80217147 851
e5992f2e 852 if (mm_has_pgste(mm)) {
ab8e5235 853 gmap_disconnect_pgtable(mm, table);
36409f63 854 return page_table_free_pgste(table);
e5992f2e 855 }
36409f63 856 /* Free 1K/2K page table fragment of a 4K page */
80217147 857 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
36409f63
MS
858 bit = 1 << ((__pa(table) & ~PAGE_MASK)/(PTRS_PER_PTE*sizeof(pte_t)));
859 spin_lock_bh(&mm->context.list_lock);
860 if ((atomic_read(&page->_mapcount) & FRAG_MASK) != FRAG_MASK)
861 list_del(&page->lru);
862 mask = atomic_xor_bits(&page->_mapcount, bit);
863 if (mask & FRAG_MASK)
864 list_add(&page->lru, &mm->context.pgtable_list);
865 spin_unlock_bh(&mm->context.list_lock);
866 if (mask == 0) {
80217147 867 pgtable_page_dtor(page);
36409f63 868 atomic_set(&page->_mapcount, -1);
80217147
MS
869 __free_page(page);
870 }
871}
872
36409f63 873static void __page_table_free_rcu(void *table, unsigned bit)
3610cce8 874{
146e4b3c 875 struct page *page;
3610cce8 876
36409f63
MS
877 if (bit == FRAG_MASK)
878 return page_table_free_pgste(table);
36409f63 879 /* Free 1K/2K page table fragment of a 4K page */
146e4b3c 880 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
36409f63 881 if (atomic_xor_bits(&page->_mapcount, bit) == 0) {
146e4b3c 882 pgtable_page_dtor(page);
36409f63 883 atomic_set(&page->_mapcount, -1);
146e4b3c
MS
884 __free_page(page);
885 }
886}
3610cce8 887
36409f63 888void page_table_free_rcu(struct mmu_gather *tlb, unsigned long *table)
80217147 889{
36409f63 890 struct mm_struct *mm;
80217147 891 struct page *page;
36409f63 892 unsigned int bit, mask;
80217147 893
36409f63 894 mm = tlb->mm;
36409f63 895 if (mm_has_pgste(mm)) {
ab8e5235 896 gmap_disconnect_pgtable(mm, table);
36409f63
MS
897 table = (unsigned long *) (__pa(table) | FRAG_MASK);
898 tlb_remove_table(tlb, table);
899 return;
80217147 900 }
36409f63 901 bit = 1 << ((__pa(table) & ~PAGE_MASK) / (PTRS_PER_PTE*sizeof(pte_t)));
80217147
MS
902 page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
903 spin_lock_bh(&mm->context.list_lock);
36409f63
MS
904 if ((atomic_read(&page->_mapcount) & FRAG_MASK) != FRAG_MASK)
905 list_del(&page->lru);
906 mask = atomic_xor_bits(&page->_mapcount, bit | (bit << 4));
907 if (mask & FRAG_MASK)
908 list_add_tail(&page->lru, &mm->context.pgtable_list);
80217147 909 spin_unlock_bh(&mm->context.list_lock);
36409f63
MS
910 table = (unsigned long *) (__pa(table) | (bit << 4));
911 tlb_remove_table(tlb, table);
912}
913
914void __tlb_remove_table(void *_table)
915{
e73b7fff
MS
916 const unsigned long mask = (FRAG_MASK << 4) | FRAG_MASK;
917 void *table = (void *)((unsigned long) _table & ~mask);
918 unsigned type = (unsigned long) _table & mask;
36409f63
MS
919
920 if (type)
921 __page_table_free_rcu(table, type);
922 else
923 free_pages((unsigned long) table, ALLOC_ORDER);
80217147
MS
924}
925
cd94154c
MS
926static void tlb_remove_table_smp_sync(void *arg)
927{
928 /* Simply deliver the interrupt */
929}
930
931static void tlb_remove_table_one(void *table)
932{
933 /*
934 * This isn't an RCU grace period and hence the page-tables cannot be
935 * assumed to be actually RCU-freed.
936 *
937 * It is however sufficient for software page-table walkers that rely
938 * on IRQ disabling. See the comment near struct mmu_table_batch.
939 */
940 smp_call_function(tlb_remove_table_smp_sync, NULL, 1);
941 __tlb_remove_table(table);
942}
943
944static void tlb_remove_table_rcu(struct rcu_head *head)
945{
946 struct mmu_table_batch *batch;
947 int i;
948
949 batch = container_of(head, struct mmu_table_batch, rcu);
950
951 for (i = 0; i < batch->nr; i++)
952 __tlb_remove_table(batch->tables[i]);
953
954 free_page((unsigned long)batch);
955}
956
957void tlb_table_flush(struct mmu_gather *tlb)
958{
959 struct mmu_table_batch **batch = &tlb->batch;
960
961 if (*batch) {
962 __tlb_flush_mm(tlb->mm);
963 call_rcu_sched(&(*batch)->rcu, tlb_remove_table_rcu);
964 *batch = NULL;
965 }
966}
967
968void tlb_remove_table(struct mmu_gather *tlb, void *table)
969{
970 struct mmu_table_batch **batch = &tlb->batch;
971
972 if (*batch == NULL) {
973 *batch = (struct mmu_table_batch *)
974 __get_free_page(GFP_NOWAIT | __GFP_NOWARN);
975 if (*batch == NULL) {
976 __tlb_flush_mm(tlb->mm);
977 tlb_remove_table_one(table);
978 return;
979 }
980 (*batch)->nr = 0;
981 }
982 (*batch)->tables[(*batch)->nr++] = table;
983 if ((*batch)->nr == MAX_TABLE_BATCH)
984 tlb_table_flush(tlb);
985}
36409f63 986
274023da
GS
987#ifdef CONFIG_TRANSPARENT_HUGEPAGE
988void thp_split_vma(struct vm_area_struct *vma)
989{
990 unsigned long addr;
991 struct page *page;
992
993 for (addr = vma->vm_start; addr < vma->vm_end; addr += PAGE_SIZE) {
994 page = follow_page(vma, addr, FOLL_SPLIT);
995 }
996}
997
998void thp_split_mm(struct mm_struct *mm)
999{
1000 struct vm_area_struct *vma = mm->mmap;
1001
1002 while (vma != NULL) {
1003 thp_split_vma(vma);
1004 vma->vm_flags &= ~VM_HUGEPAGE;
1005 vma->vm_flags |= VM_NOHUGEPAGE;
1006 vma = vma->vm_next;
1007 }
1008}
1009#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1010
402b0862
CO
1011/*
1012 * switch on pgstes for its userspace process (for kvm)
1013 */
1014int s390_enable_sie(void)
1015{
1016 struct task_struct *tsk = current;
74b6b522 1017 struct mm_struct *mm, *old_mm;
402b0862 1018
702d9e58 1019 /* Do we have switched amode? If no, we cannot do sie */
d1b0d842 1020 if (s390_user_mode == HOME_SPACE_MODE)
702d9e58
CO
1021 return -EINVAL;
1022
74b6b522 1023 /* Do we have pgstes? if yes, we are done */
36409f63 1024 if (mm_has_pgste(tsk->mm))
74b6b522 1025 return 0;
402b0862 1026
74b6b522
CB
1027 /* lets check if we are allowed to replace the mm */
1028 task_lock(tsk);
402b0862 1029 if (!tsk->mm || atomic_read(&tsk->mm->mm_users) > 1 ||
52a21f2c
MS
1030#ifdef CONFIG_AIO
1031 !hlist_empty(&tsk->mm->ioctx_list) ||
1032#endif
1033 tsk->mm != tsk->active_mm) {
74b6b522
CB
1034 task_unlock(tsk);
1035 return -EINVAL;
1036 }
1037 task_unlock(tsk);
402b0862 1038
250cf776
CB
1039 /* we copy the mm and let dup_mm create the page tables with_pgstes */
1040 tsk->mm->context.alloc_pgste = 1;
2739b6d1
CB
1041 /* make sure that both mms have a correct rss state */
1042 sync_mm_rss(tsk->mm);
402b0862 1043 mm = dup_mm(tsk);
250cf776 1044 tsk->mm->context.alloc_pgste = 0;
402b0862 1045 if (!mm)
74b6b522
CB
1046 return -ENOMEM;
1047
274023da
GS
1048#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1049 /* split thp mappings and disable thp for future mappings */
1050 thp_split_mm(mm);
1051 mm->def_flags |= VM_NOHUGEPAGE;
1052#endif
1053
250cf776 1054 /* Now lets check again if something happened */
74b6b522
CB
1055 task_lock(tsk);
1056 if (!tsk->mm || atomic_read(&tsk->mm->mm_users) > 1 ||
52a21f2c
MS
1057#ifdef CONFIG_AIO
1058 !hlist_empty(&tsk->mm->ioctx_list) ||
1059#endif
1060 tsk->mm != tsk->active_mm) {
74b6b522
CB
1061 mmput(mm);
1062 task_unlock(tsk);
1063 return -EINVAL;
1064 }
1065
1066 /* ok, we are alone. No ptrace, no threads, etc. */
1067 old_mm = tsk->mm;
402b0862
CO
1068 tsk->mm = tsk->active_mm = mm;
1069 preempt_disable();
1070 update_mm(mm, tsk);
e05ef9bd
CB
1071 atomic_inc(&mm->context.attach_count);
1072 atomic_dec(&old_mm->context.attach_count);
005f8eee 1073 cpumask_set_cpu(smp_processor_id(), mm_cpumask(mm));
402b0862 1074 preempt_enable();
402b0862 1075 task_unlock(tsk);
74b6b522
CB
1076 mmput(old_mm);
1077 return 0;
402b0862
CO
1078}
1079EXPORT_SYMBOL_GPL(s390_enable_sie);
7db11a36 1080
75077afb 1081#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1ae1c1d0
GS
1082int pmdp_clear_flush_young(struct vm_area_struct *vma, unsigned long address,
1083 pmd_t *pmdp)
1084{
1085 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1086 /* No need to flush TLB
1087 * On s390 reference bits are in storage key and never in TLB */
1088 return pmdp_test_and_clear_young(vma, address, pmdp);
1089}
1090
1091int pmdp_set_access_flags(struct vm_area_struct *vma,
1092 unsigned long address, pmd_t *pmdp,
1093 pmd_t entry, int dirty)
1094{
1095 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1096
1097 if (pmd_same(*pmdp, entry))
1098 return 0;
1099 pmdp_invalidate(vma, address, pmdp);
1100 set_pmd_at(vma->vm_mm, address, pmdp, entry);
1101 return 1;
1102}
1103
75077afb
GS
1104static void pmdp_splitting_flush_sync(void *arg)
1105{
1106 /* Simply deliver the interrupt */
1107}
1108
1109void pmdp_splitting_flush(struct vm_area_struct *vma, unsigned long address,
1110 pmd_t *pmdp)
1111{
1112 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1113 if (!test_and_set_bit(_SEGMENT_ENTRY_SPLIT_BIT,
1114 (unsigned long *) pmdp)) {
1115 /* need to serialize against gup-fast (IRQ disabled) */
1116 smp_call_function(pmdp_splitting_flush_sync, NULL, 1);
1117 }
1118}
9501d09f
GS
1119
1120void pgtable_trans_huge_deposit(struct mm_struct *mm, pgtable_t pgtable)
1121{
1122 struct list_head *lh = (struct list_head *) pgtable;
1123
1124 assert_spin_locked(&mm->page_table_lock);
1125
1126 /* FIFO */
1127 if (!mm->pmd_huge_pte)
1128 INIT_LIST_HEAD(lh);
1129 else
1130 list_add(lh, (struct list_head *) mm->pmd_huge_pte);
1131 mm->pmd_huge_pte = pgtable;
1132}
1133
1134pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm)
1135{
1136 struct list_head *lh;
1137 pgtable_t pgtable;
1138 pte_t *ptep;
1139
1140 assert_spin_locked(&mm->page_table_lock);
1141
1142 /* FIFO */
1143 pgtable = mm->pmd_huge_pte;
1144 lh = (struct list_head *) pgtable;
1145 if (list_empty(lh))
1146 mm->pmd_huge_pte = NULL;
1147 else {
1148 mm->pmd_huge_pte = (pgtable_t) lh->next;
1149 list_del(lh);
1150 }
1151 ptep = (pte_t *) pgtable;
1152 pte_val(*ptep) = _PAGE_TYPE_EMPTY;
1153 ptep++;
1154 pte_val(*ptep) = _PAGE_TYPE_EMPTY;
1155 return pgtable;
1156}
75077afb 1157#endif /* CONFIG_TRANSPARENT_HUGEPAGE */