Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 2 | /* |
| 3 | * PPC64 Huge TLB Page Support for hash based MMUs (POWER4 and later) |
| 4 | * |
| 5 | * Copyright (C) 2003 David Gibson, IBM Corporation. |
| 6 | * |
| 7 | * Based on the IA-32 version: |
| 8 | * Copyright (C) 2002, Rohit Seth <rohit.seth@intel.com> |
| 9 | */ |
| 10 | |
| 11 | #include <linux/mm.h> |
| 12 | #include <linux/hugetlb.h> |
| 13 | #include <asm/pgtable.h> |
| 14 | #include <asm/pgalloc.h> |
| 15 | #include <asm/cacheflush.h> |
| 16 | #include <asm/machdep.h> |
| 17 | |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 18 | extern long hpte_insert_repeating(unsigned long hash, unsigned long vpn, |
| 19 | unsigned long pa, unsigned long rlags, |
| 20 | unsigned long vflags, int psize, int ssize); |
| 21 | |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 22 | int __hash_page_huge(unsigned long ea, unsigned long access, unsigned long vsid, |
Aneesh Kumar K.V | aefa568 | 2014-12-04 11:00:14 +0530 | [diff] [blame] | 23 | pte_t *ptep, unsigned long trap, unsigned long flags, |
| 24 | int ssize, unsigned int shift, unsigned int mmu_psize) |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 25 | { |
Ram Pai | bf9a95f | 2017-11-06 00:50:48 -0800 | [diff] [blame] | 26 | real_pte_t rpte; |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 27 | unsigned long vpn; |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 28 | unsigned long old_pte, new_pte; |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 29 | unsigned long rflags, pa, sz; |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 30 | long slot; |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 31 | |
| 32 | BUG_ON(shift != mmu_psize_defs[mmu_psize].shift); |
| 33 | |
| 34 | /* Search the Linux page table for a match with va */ |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 35 | vpn = hpt_vpn(ea, vsid, ssize); |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 36 | |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 37 | /* At this point, we have a pte (old_pte) which can be used to build |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 38 | * or update an HPTE. There are 2 cases: |
| 39 | * |
| 40 | * 1. There is a valid (present) pte with no associated HPTE (this is |
| 41 | * the most common case) |
| 42 | * 2. There is a valid (present) pte with an associated HPTE. The |
| 43 | * current values of the pp bits in the HPTE prevent access |
| 44 | * because we are doing software DIRTY bit management and the |
| 45 | * page is currently not DIRTY. |
| 46 | */ |
| 47 | |
| 48 | |
| 49 | do { |
| 50 | old_pte = pte_val(*ptep); |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 51 | /* If PTE busy, retry the access */ |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 52 | if (unlikely(old_pte & H_PAGE_BUSY)) |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 53 | return 0; |
| 54 | /* If PTE permissions don't match, take page fault */ |
Aneesh Kumar K.V | ac29c64 | 2016-04-29 23:25:34 +1000 | [diff] [blame] | 55 | if (unlikely(!check_pte_access(access, old_pte))) |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 56 | return 1; |
Aneesh Kumar K.V | ac29c64 | 2016-04-29 23:25:34 +1000 | [diff] [blame] | 57 | |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 58 | /* Try to lock the PTE, add ACCESSED and DIRTY if it was |
| 59 | * a write access */ |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 60 | new_pte = old_pte | H_PAGE_BUSY | _PAGE_ACCESSED; |
Aneesh Kumar K.V | c7d5484 | 2016-04-29 23:25:30 +1000 | [diff] [blame] | 61 | if (access & _PAGE_WRITE) |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 62 | new_pte |= _PAGE_DIRTY; |
Michael Ellerman | 3910a7f | 2016-04-29 23:25:27 +1000 | [diff] [blame] | 63 | } while(!pte_xchg(ptep, __pte(old_pte), __pte(new_pte))); |
| 64 | |
Aneesh Kumar K.V | c6a3c49 | 2015-12-01 09:06:50 +0530 | [diff] [blame] | 65 | rflags = htab_convert_pte_flags(new_pte); |
Ram Pai | bf9a95f | 2017-11-06 00:50:48 -0800 | [diff] [blame] | 66 | rpte = __real_pte(__pte(old_pte), ptep); |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 67 | |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 68 | sz = ((1UL) << shift); |
| 69 | if (!cpu_has_feature(CPU_FTR_COHERENT_ICACHE)) |
| 70 | /* No CPU has hugepages but lacks no execute, so we |
| 71 | * don't need to worry about that case */ |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 72 | rflags = hash_page_do_lazy_icache(rflags, __pte(old_pte), trap); |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 73 | |
| 74 | /* Check if pte already has an hpte (case 2) */ |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 75 | if (unlikely(old_pte & H_PAGE_HASHPTE)) { |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 76 | /* There MIGHT be an HPTE for this pte */ |
Ram Pai | bf9a95f | 2017-11-06 00:50:48 -0800 | [diff] [blame] | 77 | unsigned long gslot; |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 78 | |
Ram Pai | bf9a95f | 2017-11-06 00:50:48 -0800 | [diff] [blame] | 79 | gslot = pte_get_hash_gslot(vpn, shift, ssize, rpte, 0); |
| 80 | if (mmu_hash_ops.hpte_updatepp(gslot, rflags, vpn, mmu_psize, |
Benjamin Herrenschmidt | 7025776 | 2016-07-05 15:03:58 +1000 | [diff] [blame] | 81 | mmu_psize, ssize, flags) == -1) |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 82 | old_pte &= ~_PAGE_HPTEFLAGS; |
| 83 | } |
| 84 | |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 85 | if (likely(!(old_pte & H_PAGE_HASHPTE))) { |
Aneesh Kumar K.V | 5524a27 | 2012-09-10 02:52:50 +0000 | [diff] [blame] | 86 | unsigned long hash = hpt_hash(vpn, shift, ssize); |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 87 | |
| 88 | pa = pte_pfn(__pte(old_pte)) << PAGE_SHIFT; |
| 89 | |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 90 | /* clear HPTE slot informations in new PTE */ |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 91 | new_pte = (new_pte & ~_PAGE_HPTEFLAGS) | H_PAGE_HASHPTE; |
Aneesh Kumar K.V | bf680d5 | 2015-12-01 09:06:45 +0530 | [diff] [blame] | 92 | |
Li Zhong | b170bd3 | 2013-04-15 16:53:19 +0000 | [diff] [blame] | 93 | slot = hpte_insert_repeating(hash, vpn, pa, rflags, 0, |
| 94 | mmu_psize, ssize); |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 95 | |
Anton Blanchard | b1623e7 | 2010-07-14 19:31:48 +0000 | [diff] [blame] | 96 | /* |
| 97 | * Hypervisor failure. Restore old pte and return -1 |
| 98 | * similar to __hash_page_* |
| 99 | */ |
| 100 | if (unlikely(slot == -2)) { |
| 101 | *ptep = __pte(old_pte); |
Benjamin Herrenschmidt | 4b8692c | 2010-07-23 10:31:13 +1000 | [diff] [blame] | 102 | hash_failure_debug(ea, access, vsid, trap, ssize, |
Aneesh Kumar K.V | d8139eb | 2013-04-28 09:37:37 +0000 | [diff] [blame] | 103 | mmu_psize, mmu_psize, old_pte); |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 104 | return -1; |
Anton Blanchard | b1623e7 | 2010-07-14 19:31:48 +0000 | [diff] [blame] | 105 | } |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 106 | |
Ram Pai | bf9a95f | 2017-11-06 00:50:48 -0800 | [diff] [blame] | 107 | new_pte |= pte_set_hidx(ptep, rpte, 0, slot); |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | /* |
| 111 | * No need to use ldarx/stdcx here |
| 112 | */ |
Aneesh Kumar K.V | 945537d | 2016-04-29 23:25:45 +1000 | [diff] [blame] | 113 | *ptep = __pte(new_pte & ~H_PAGE_BUSY); |
Benjamin Herrenschmidt | 171aa2c | 2010-07-23 09:02:27 +1000 | [diff] [blame] | 114 | return 0; |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 115 | } |