blob: 9e52b686a8fa436674f8b19b277c7f98074520a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pSeries_lpar.c
3 * Copyright (C) 2001 Todd Inglett, IBM Corporation
4 *
5 * pSeries LPAR support.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Michael Ellermanf7ebf352008-04-24 15:13:19 +100022/* Enables debugging of low-level hash table routines - careful! */
23#undef DEBUG
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +053024#define pr_fmt(fmt) "lpar: " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <linux/dma-mapping.h>
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +110028#include <linux/console.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040029#include <linux/export.h>
Anton Blanchard58995a92015-04-09 13:51:32 +100030#include <linux/jump_label.h>
David Gibsondbcf9292016-12-09 11:07:36 +110031#include <linux/delay.h>
32#include <linux/stop_machine.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/processor.h>
34#include <asm/mmu.h>
35#include <asm/page.h>
36#include <asm/pgtable.h>
37#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/tlb.h>
41#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/cputable.h>
David Gibsondcad47f2005-11-07 09:49:43 +110043#include <asm/udbg.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110044#include <asm/smp.h>
Anton Blanchardc8cd0932009-10-26 18:50:29 +000045#include <asm/trace.h>
Stephen Rothwellf5339272012-03-15 18:18:00 +000046#include <asm/firmware.h>
Deepthi Dharwar212bebb2013-08-22 15:23:52 +053047#include <asm/plpar_wrappers.h>
Hari Bathinic1caae32014-12-18 23:36:55 +053048#include <asm/kexec.h>
Hari Bathini408cddd2014-10-01 12:32:30 +053049#include <asm/fadump.h>
Daniel Axtens42f5b4c2016-05-18 11:16:50 +100050#include <asm/asm-prototypes.h>
Michael Ellermana1218722005-11-03 15:33:31 +110051
Michael Ellerman21cf9132008-04-16 13:51:48 +100052#include "pseries.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +053054/* Flag bits for H_BULK_REMOVE */
55#define HBR_REQUEST 0x4000000000000000UL
56#define HBR_RESPONSE 0x8000000000000000UL
57#define HBR_END 0xc000000000000000UL
58#define HBR_AVPN 0x0200000000000000UL
59#define HBR_ANDCOND 0x0100000000000000UL
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Anton Blanchardb9377ff2006-07-19 08:01:28 +100062/* in hvCall.S */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063EXPORT_SYMBOL(plpar_hcall);
Anton Blanchardb9377ff2006-07-19 08:01:28 +100064EXPORT_SYMBOL(plpar_hcall9);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065EXPORT_SYMBOL(plpar_hcall_norets);
Anton Blanchardb9377ff2006-07-19 08:01:28 +100066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067void vpa_init(int cpu)
68{
69 int hwcpu = get_hard_smp_processor_id(cpu);
Michael Neuling2f6093c2006-08-07 16:19:19 +100070 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 long ret;
Paul Mackerrascf9efce2010-08-26 19:56:43 +000072 struct paca_struct *pp;
73 struct dtl_entry *dtl;
Olof Johansson233ccd02005-09-03 15:55:59 -070074
Michael Ellermanb89bdfb2013-08-15 15:22:15 +100075 /*
76 * The spec says it "may be problematic" if CPU x registers the VPA of
77 * CPU y. We should never do that, but wail if we ever do.
78 */
79 WARN_ON(cpu != smp_processor_id());
80
Olof Johansson233ccd02005-09-03 15:55:59 -070081 if (cpu_has_feature(CPU_FTR_ALTIVEC))
Paul Mackerras8154c5d2010-08-12 20:18:15 +000082 lppaca_of(cpu).vmxregs_in_use = 1;
Olof Johansson233ccd02005-09-03 15:55:59 -070083
Michael Ellerman6e0b8bc92013-06-28 18:15:18 +100084 if (cpu_has_feature(CPU_FTR_ARCH_207S))
85 lppaca_of(cpu).ebb_regs_in_use = 1;
86
Paul Mackerras8154c5d2010-08-12 20:18:15 +000087 addr = __pa(&lppaca_of(cpu));
Michael Neuling2f6093c2006-08-07 16:19:19 +100088 ret = register_vpa(hwcpu, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Michael Neuling2f6093c2006-08-07 16:19:19 +100090 if (ret) {
Anton Blanchard711ef842011-07-25 01:46:33 +000091 pr_err("WARNING: VPA registration for cpu %d (hw %d) of area "
92 "%lx failed with %ld\n", cpu, hwcpu, addr, ret);
Michael Neuling2f6093c2006-08-07 16:19:19 +100093 return;
94 }
Aneesh Kumar K.Vd8c476e2016-04-29 23:26:08 +100095
Michael Ellerman4e003742017-10-19 15:08:43 +110096#ifdef CONFIG_PPC_BOOK3S_64
Michael Neuling2f6093c2006-08-07 16:19:19 +100097 /*
98 * PAPR says this feature is SLB-Buffer but firmware never
99 * reports that. All SPLPAR support SLB shadow buffer.
100 */
Aneesh Kumar K.Vd8c476e2016-04-29 23:26:08 +1000101 if (!radix_enabled() && firmware_has_feature(FW_FEATURE_SPLPAR)) {
Nicholas Piggind2e60072018-02-14 01:08:12 +1000102 addr = __pa(paca_ptrs[cpu]->slb_shadow_ptr);
Michael Neuling2f6093c2006-08-07 16:19:19 +1000103 ret = register_slb_shadow(hwcpu, addr);
104 if (ret)
Anton Blanchard711ef842011-07-25 01:46:33 +0000105 pr_err("WARNING: SLB shadow buffer registration for "
106 "cpu %d (hw %d) of area %lx failed with %ld\n",
107 cpu, hwcpu, addr, ret);
Michael Neuling2f6093c2006-08-07 16:19:19 +1000108 }
Michael Ellerman4e003742017-10-19 15:08:43 +1100109#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000110
111 /*
112 * Register dispatch trace log, if one has been allocated.
113 */
Nicholas Piggind2e60072018-02-14 01:08:12 +1000114 pp = paca_ptrs[cpu];
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000115 dtl = pp->dispatch_log;
116 if (dtl) {
117 pp->dtl_ridx = 0;
118 pp->dtl_curr = dtl;
119 lppaca_of(cpu).dtl_idx = 0;
120
121 /* hypervisor reads buffer length from this field */
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000122 dtl->enqueue_to_dispatch_time = cpu_to_be32(DISPATCH_LOG_BYTES);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000123 ret = register_dtl(hwcpu, __pa(dtl));
124 if (ret)
Anton Blanchard711ef842011-07-25 01:46:33 +0000125 pr_err("WARNING: DTL registration of cpu %d (hw %d) "
126 "failed with %ld\n", smp_processor_id(),
127 hwcpu, ret);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000128 lppaca_of(cpu).dtl_enable_mask = 2;
129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Michael Ellerman4e003742017-10-19 15:08:43 +1100132#ifdef CONFIG_PPC_BOOK3S_64
Aneesh Kumar K.Vd8c476e2016-04-29 23:26:08 +1000133
Geoff Levand035223f2006-10-05 11:35:10 -0700134static long pSeries_lpar_hpte_insert(unsigned long hpte_group,
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000135 unsigned long vpn, unsigned long pa,
136 unsigned long rflags, unsigned long vflags,
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000137 int psize, int apsize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 unsigned long lpar_rc;
140 unsigned long flags;
141 unsigned long slot;
David Gibson96e28442005-07-13 01:11:42 -0700142 unsigned long hpte_v, hpte_r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100144 if (!(vflags & HPTE_V_BOLTED))
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000145 pr_devel("hpte_insert(group=%lx, vpn=%016lx, "
146 "pa=%016lx, rflags=%lx, vflags=%lx, psize=%d)\n",
147 hpte_group, vpn, pa, rflags, vflags, psize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Aneesh Kumar K.Vb1022fb2013-04-28 09:37:35 +0000149 hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID;
Paul Mackerras6b243fc2016-11-11 16:55:03 +1100150 hpte_r = hpte_encode_r(pa, psize, apsize) | rflags;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100151
152 if (!(vflags & HPTE_V_BOLTED))
Michael Ellerman551a2322009-06-17 18:13:50 +0000153 pr_devel(" hpte_v=%016lx, hpte_r=%016lx\n", hpte_v, hpte_r);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* Now fill in the actual HPTE */
156 /* Set CEC cookie to 0 */
157 /* Zero page = 0 */
158 /* I-cache Invalidate = 0 */
159 /* I-cache synchronize = 0 */
160 /* Exact = 0 */
161 flags = 0;
162
Brian King9ee820f2011-05-04 16:01:20 +1000163 if (firmware_has_feature(FW_FEATURE_XCMO) && !(hpte_r & HPTE_R_N))
164 flags |= H_COALESCE_CAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Anton Blanchardb9377ff2006-07-19 08:01:28 +1000166 lpar_rc = plpar_pte_enter(flags, hpte_group, hpte_v, hpte_r, &slot);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200167 if (unlikely(lpar_rc == H_PTEG_FULL)) {
Aneesh Kumar K.Vca42d8d22018-06-29 14:09:04 +0530168 pr_devel("Hash table group is full\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return -1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /*
173 * Since we try and ioremap PHBs we don't own, the pte insert
174 * will fail. However we must catch the failure in hash_page
175 * or we will loop forever, so return -2 in this case.
176 */
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200177 if (unlikely(lpar_rc != H_SUCCESS)) {
Aneesh Kumar K.Vca42d8d22018-06-29 14:09:04 +0530178 pr_err("Failed hash pte insert with error %ld\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return -2;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100180 }
181 if (!(vflags & HPTE_V_BOLTED))
Michael Ellerman551a2322009-06-17 18:13:50 +0000182 pr_devel(" -> slot: %lu\n", slot & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 /* Because of iSeries, we have to pass down the secondary
185 * bucket bit here as well
186 */
David Gibson96e28442005-07-13 01:11:42 -0700187 return (slot & 7) | (!!(vflags & HPTE_V_SECONDARY) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190static DEFINE_SPINLOCK(pSeries_lpar_tlbie_lock);
191
192static long pSeries_lpar_hpte_remove(unsigned long hpte_group)
193{
194 unsigned long slot_offset;
195 unsigned long lpar_rc;
196 int i;
197 unsigned long dummy1, dummy2;
198
199 /* pick a random slot to start at */
200 slot_offset = mftb() & 0x7;
201
202 for (i = 0; i < HPTES_PER_GROUP; i++) {
203
204 /* don't remove a bolted entry */
205 lpar_rc = plpar_pte_remove(H_ANDCOND, hpte_group + slot_offset,
206 (0x1UL << 4), &dummy1, &dummy2);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200207 if (lpar_rc == H_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return i;
Michael Wolf9fb26402013-04-05 10:41:40 +0000209
210 /*
211 * The test for adjunct partition is performed before the
212 * ANDCOND test. H_RESOURCE may be returned, so we need to
213 * check for that as well.
214 */
215 BUG_ON(lpar_rc != H_NOT_FOUND && lpar_rc != H_RESOURCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 slot_offset++;
218 slot_offset &= 0x7;
219 }
220
221 return -1;
222}
223
Anton Blanchard5246ade2016-10-01 20:41:56 +1000224static void manual_hpte_clear_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 unsigned long size_bytes = 1UL << ppc64_pft_size;
227 unsigned long hpte_count = size_bytes >> 4;
Michael Neulingd504bed2010-05-10 20:28:26 +0000228 struct {
229 unsigned long pteh;
230 unsigned long ptel;
231 } ptes[4];
Sachin P. Santb7abc5c2007-06-14 15:31:34 +1000232 long lpar_rc;
Anton Blanchardbed9a312011-07-26 18:15:03 +0000233 unsigned long i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Michael Neulingd504bed2010-05-10 20:28:26 +0000235 /* Read in batches of 4,
236 * invalidate only valid entries not in the VRMA
237 * hpte_count will be a multiple of 4
238 */
239 for (i = 0; i < hpte_count; i += 4) {
240 lpar_rc = plpar_pte_read_4_raw(0, i, (void *)ptes);
Aneesh Kumar K.Vca42d8d22018-06-29 14:09:04 +0530241 if (lpar_rc != H_SUCCESS) {
242 pr_info("Failed to read hash page table at %ld err %ld\n",
243 i, lpar_rc);
Michael Neulingd504bed2010-05-10 20:28:26 +0000244 continue;
Aneesh Kumar K.Vca42d8d22018-06-29 14:09:04 +0530245 }
Michael Neulingd504bed2010-05-10 20:28:26 +0000246 for (j = 0; j < 4; j++){
247 if ((ptes[j].pteh & HPTE_V_VRMA_MASK) ==
248 HPTE_V_VRMA_MASK)
249 continue;
250 if (ptes[j].pteh & HPTE_V_VALID)
251 plpar_pte_remove_raw(0, i + j, 0,
252 &(ptes[j].pteh), &(ptes[j].ptel));
Sachin P. Santb7abc5c2007-06-14 15:31:34 +1000253 }
254 }
Anton Blanchard5246ade2016-10-01 20:41:56 +1000255}
256
257static int hcall_hpte_clear_all(void)
258{
259 int rc;
260
261 do {
262 rc = plpar_hcall_norets(H_CLEAR_HPT);
263 } while (rc == H_CONTINUE);
264
265 return rc;
266}
267
268static void pseries_hpte_clear_all(void)
269{
270 int rc;
271
272 rc = hcall_hpte_clear_all();
273 if (rc != H_SUCCESS)
274 manual_hpte_clear_all();
Anton Blancharde844b1e2013-11-20 22:14:59 +1100275
276#ifdef __LITTLE_ENDIAN__
Hari Bathini408cddd2014-10-01 12:32:30 +0530277 /*
278 * Reset exceptions to big endian.
279 *
280 * FIXME this is a hack for kexec, we need to reset the exception
281 * endian before starting the new kernel and this is a convenient place
282 * to do it.
283 *
284 * This is also called on boot when a fadump happens. In that case we
285 * must not change the exception endian mode.
286 */
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +1000287 if (firmware_has_feature(FW_FEATURE_SET_MODE) && !is_fadump_active())
288 pseries_big_endian_exceptions();
Anton Blancharde844b1e2013-11-20 22:14:59 +1100289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292/*
293 * NOTE: for updatepp ops we are fortunate that the linux "newpp" bits and
294 * the low 3 bits of flags happen to line up. So no transform is needed.
295 * We can probably optimize here and assume the high bits of newpp are
296 * already zero. For now I am paranoid.
297 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100298static long pSeries_lpar_hpte_updatepp(unsigned long slot,
299 unsigned long newpp,
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000300 unsigned long vpn,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530301 int psize, int apsize,
Aneesh Kumar K.Vaefa5682014-12-04 11:00:14 +0530302 int ssize, unsigned long inv_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 unsigned long lpar_rc;
Balbir Singhe71ff982017-06-29 03:04:07 +1000305 unsigned long flags;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100306 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000308 want_v = hpte_encode_avpn(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Balbir Singhe71ff982017-06-29 03:04:07 +1000310 flags = (newpp & 7) | H_AVPN;
311 if (mmu_has_feature(MMU_FTR_KERNEL_RO))
312 /* Move pp0 into bit 8 (IBM 55) */
313 flags |= (newpp & HPTE_R_PP0) >> 55;
314
Alexey Kardashevskiya8c0bf32018-01-09 16:52:14 +1100315 pr_devel(" update: avpnv=%016lx, hash=%016lx, f=%lx, psize: %d ...",
316 want_v, slot, flags, psize);
317
Paul Mackerras1189be62007-10-11 20:37:10 +1000318 lpar_rc = plpar_pte_protect(flags, slot, want_v);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100319
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200320 if (lpar_rc == H_NOT_FOUND) {
Michael Ellerman551a2322009-06-17 18:13:50 +0000321 pr_devel("not found !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return -1;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100323 }
324
Michael Ellerman551a2322009-06-17 18:13:50 +0000325 pr_devel("ok\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200327 BUG_ON(lpar_rc != H_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 return 0;
330}
331
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530332static long __pSeries_lpar_hpte_find(unsigned long want_v, unsigned long hpte_group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530334 long lpar_rc;
335 unsigned long i, j;
336 struct {
337 unsigned long pteh;
338 unsigned long ptel;
339 } ptes[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530341 for (i = 0; i < HPTES_PER_GROUP; i += 4, hpte_group += 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530343 lpar_rc = plpar_pte_read_4(0, hpte_group, (void *)ptes);
Aneesh Kumar K.Vca42d8d22018-06-29 14:09:04 +0530344 if (lpar_rc != H_SUCCESS) {
345 pr_info("Failed to read hash page table at %ld err %ld\n",
346 hpte_group, lpar_rc);
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530347 continue;
Aneesh Kumar K.Vca42d8d22018-06-29 14:09:04 +0530348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530350 for (j = 0; j < 4; j++) {
351 if (HPTE_V_COMPARE(ptes[j].pteh, want_v) &&
352 (ptes[j].pteh & HPTE_V_VALID))
353 return i + j;
354 }
355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530357 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000360static long pSeries_lpar_hpte_find(unsigned long vpn, int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 long slot;
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530363 unsigned long hash;
364 unsigned long want_v;
365 unsigned long hpte_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000367 hash = hpt_hash(vpn, mmu_psize_defs[psize].shift, ssize);
368 want_v = hpte_encode_avpn(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Paul Mackerras1189be62007-10-11 20:37:10 +1000370 /* Bolted entries are always in the primary group */
Aneesh Kumar K.V4ad90c82015-12-01 09:06:59 +0530371 hpte_group = (hash & htab_hash_mask) * HPTES_PER_GROUP;
372 slot = __pSeries_lpar_hpte_find(want_v, hpte_group);
373 if (slot < 0)
374 return -1;
375 return hpte_group + slot;
376}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378static void pSeries_lpar_hpte_updateboltedpp(unsigned long newpp,
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100379 unsigned long ea,
Paul Mackerras1189be62007-10-11 20:37:10 +1000380 int psize, int ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000382 unsigned long vpn;
383 unsigned long lpar_rc, slot, vsid, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Paul Mackerras1189be62007-10-11 20:37:10 +1000385 vsid = get_kernel_vsid(ea, ssize);
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000386 vpn = hpt_vpn(ea, vsid, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000388 slot = pSeries_lpar_hpte_find(vpn, psize, ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 BUG_ON(slot == -1);
390
391 flags = newpp & 7;
Balbir Singhe71ff982017-06-29 03:04:07 +1000392 if (mmu_has_feature(MMU_FTR_KERNEL_RO))
393 /* Move pp0 into bit 8 (IBM 55) */
394 flags |= (newpp & HPTE_R_PP0) >> 55;
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 lpar_rc = plpar_pte_protect(flags, slot, 0);
397
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200398 BUG_ON(lpar_rc != H_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000401static void pSeries_lpar_hpte_invalidate(unsigned long slot, unsigned long vpn,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530402 int psize, int apsize,
403 int ssize, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100405 unsigned long want_v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 unsigned long lpar_rc;
407 unsigned long dummy1, dummy2;
408
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000409 pr_devel(" inval : slot=%lx, vpn=%016lx, psize: %d, local: %d\n",
410 slot, vpn, psize, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000412 want_v = hpte_encode_avpn(vpn, psize, ssize);
Paul Mackerras1189be62007-10-11 20:37:10 +1000413 lpar_rc = plpar_pte_remove(H_AVPN, slot, want_v, &dummy1, &dummy2);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200414 if (lpar_rc == H_NOT_FOUND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return;
416
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200417 BUG_ON(lpar_rc != H_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Aneesh Kumar K.Ve34aa032015-12-01 09:06:53 +0530420#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530421/*
422 * Limit iterations holding pSeries_lpar_tlbie_lock to 3. We also need
423 * to make sure that we avoid bouncing the hypervisor tlbie lock.
424 */
425#define PPC64_HUGE_HPTE_BATCH 12
426
427static void __pSeries_lpar_hugepage_invalidate(unsigned long *slot,
428 unsigned long *vpn, int count,
429 int psize, int ssize)
430{
Laurent Dufour05af40e2016-10-06 15:33:21 +0200431 unsigned long param[PLPAR_HCALL9_BUFSIZE];
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530432 int i = 0, pix = 0, rc;
433 unsigned long flags = 0;
434 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
435
436 if (lock_tlbie)
437 spin_lock_irqsave(&pSeries_lpar_tlbie_lock, flags);
438
439 for (i = 0; i < count; i++) {
440
441 if (!firmware_has_feature(FW_FEATURE_BULK_REMOVE)) {
442 pSeries_lpar_hpte_invalidate(slot[i], vpn[i], psize, 0,
443 ssize, 0);
444 } else {
445 param[pix] = HBR_REQUEST | HBR_AVPN | slot[i];
446 param[pix+1] = hpte_encode_avpn(vpn[i], psize, ssize);
447 pix += 2;
448 if (pix == 8) {
449 rc = plpar_hcall9(H_BULK_REMOVE, param,
450 param[0], param[1], param[2],
451 param[3], param[4], param[5],
452 param[6], param[7]);
453 BUG_ON(rc != H_SUCCESS);
454 pix = 0;
455 }
456 }
457 }
458 if (pix) {
459 param[pix] = HBR_END;
460 rc = plpar_hcall9(H_BULK_REMOVE, param, param[0], param[1],
461 param[2], param[3], param[4], param[5],
462 param[6], param[7]);
463 BUG_ON(rc != H_SUCCESS);
464 }
465
466 if (lock_tlbie)
467 spin_unlock_irqrestore(&pSeries_lpar_tlbie_lock, flags);
468}
469
Aneesh Kumar K.Vfa1f8ae2014-08-13 12:31:58 +0530470static void pSeries_lpar_hugepage_invalidate(unsigned long vsid,
471 unsigned long addr,
472 unsigned char *hpte_slot_array,
Aneesh Kumar K.Vd557b092014-11-02 21:15:28 +0530473 int psize, int ssize, int local)
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530474{
Aneesh Kumar K.Vfa1f8ae2014-08-13 12:31:58 +0530475 int i, index = 0;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530476 unsigned long s_addr = addr;
477 unsigned int max_hpte_count, valid;
478 unsigned long vpn_array[PPC64_HUGE_HPTE_BATCH];
479 unsigned long slot_array[PPC64_HUGE_HPTE_BATCH];
Aneesh Kumar K.Vfa1f8ae2014-08-13 12:31:58 +0530480 unsigned long shift, hidx, vpn = 0, hash, slot;
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530481
482 shift = mmu_psize_defs[psize].shift;
483 max_hpte_count = 1U << (PMD_SHIFT - shift);
484
485 for (i = 0; i < max_hpte_count; i++) {
486 valid = hpte_valid(hpte_slot_array, i);
487 if (!valid)
488 continue;
489 hidx = hpte_hash_index(hpte_slot_array, i);
490
491 /* get the vpn */
492 addr = s_addr + (i * (1ul << shift));
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530493 vpn = hpt_vpn(addr, vsid, ssize);
494 hash = hpt_hash(vpn, shift, ssize);
495 if (hidx & _PTEIDX_SECONDARY)
496 hash = ~hash;
497
498 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
499 slot += hidx & _PTEIDX_GROUP_IX;
500
501 slot_array[index] = slot;
502 vpn_array[index] = vpn;
503 if (index == PPC64_HUGE_HPTE_BATCH - 1) {
504 /*
505 * Now do a bluk invalidate
506 */
507 __pSeries_lpar_hugepage_invalidate(slot_array,
508 vpn_array,
509 PPC64_HUGE_HPTE_BATCH,
510 psize, ssize);
511 index = 0;
512 } else
513 index++;
514 }
515 if (index)
516 __pSeries_lpar_hugepage_invalidate(slot_array, vpn_array,
517 index, psize, ssize);
518}
Aneesh Kumar K.Ve34aa032015-12-01 09:06:53 +0530519#else
520static void pSeries_lpar_hugepage_invalidate(unsigned long vsid,
521 unsigned long addr,
522 unsigned char *hpte_slot_array,
523 int psize, int ssize, int local)
524{
525 WARN(1, "%s called without THP support\n", __func__);
526}
527#endif
Aneesh Kumar K.V1a527282013-06-20 14:30:27 +0530528
David Gibson27828f92016-02-09 13:32:41 +1000529static int pSeries_lpar_hpte_removebolted(unsigned long ea,
530 int psize, int ssize)
Badari Pulavartyf8c88032008-01-29 09:19:24 +1100531{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000532 unsigned long vpn;
533 unsigned long slot, vsid;
Badari Pulavartyf8c88032008-01-29 09:19:24 +1100534
535 vsid = get_kernel_vsid(ea, ssize);
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000536 vpn = hpt_vpn(ea, vsid, ssize);
Badari Pulavartyf8c88032008-01-29 09:19:24 +1100537
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000538 slot = pSeries_lpar_hpte_find(vpn, psize, ssize);
David Gibson27828f92016-02-09 13:32:41 +1000539 if (slot == -1)
540 return -ENOENT;
541
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530542 /*
543 * lpar doesn't use the passed actual page size
544 */
545 pSeries_lpar_hpte_invalidate(slot, vpn, psize, 0, ssize, 0);
David Gibson27828f92016-02-09 13:32:41 +1000546 return 0;
Badari Pulavartyf8c88032008-01-29 09:19:24 +1100547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*
550 * Take a spinlock around flushes to avoid bouncing the hypervisor tlbie
551 * lock.
552 */
Geoff Levand035223f2006-10-05 11:35:10 -0700553static void pSeries_lpar_flush_hash_range(unsigned long number, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000555 unsigned long vpn;
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100556 unsigned long i, pix, rc;
Paul Mackerras12e86f92007-02-08 15:02:35 +1100557 unsigned long flags = 0;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500558 struct ppc64_tlb_batch *batch = this_cpu_ptr(&ppc64_tlb_batch);
Matt Evans44ae3ab2011-04-06 19:48:50 +0000559 int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE);
Laurent Dufour05af40e2016-10-06 15:33:21 +0200560 unsigned long param[PLPAR_HCALL9_BUFSIZE];
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100561 unsigned long hash, index, shift, hidx, slot;
562 real_pte_t pte;
Paul Mackerras1189be62007-10-11 20:37:10 +1000563 int psize, ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (lock_tlbie)
566 spin_lock_irqsave(&pSeries_lpar_tlbie_lock, flags);
567
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100568 psize = batch->psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000569 ssize = batch->ssize;
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100570 pix = 0;
571 for (i = 0; i < number; i++) {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000572 vpn = batch->vpn[i];
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100573 pte = batch->pte[i];
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000574 pte_iterate_hashed_subpages(pte, psize, vpn, index, shift) {
575 hash = hpt_hash(vpn, shift, ssize);
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100576 hidx = __rpte_to_hidx(pte, index);
577 if (hidx & _PTEIDX_SECONDARY)
578 hash = ~hash;
579 slot = (hash & htab_hash_mask) * HPTES_PER_GROUP;
580 slot += hidx & _PTEIDX_GROUP_IX;
Paul Mackerras12e86f92007-02-08 15:02:35 +1100581 if (!firmware_has_feature(FW_FEATURE_BULK_REMOVE)) {
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530582 /*
583 * lpar doesn't use the passed actual page size
584 */
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000585 pSeries_lpar_hpte_invalidate(slot, vpn, psize,
Aneesh Kumar K.Vdb3d8532013-06-20 14:30:13 +0530586 0, ssize, local);
Paul Mackerras12e86f92007-02-08 15:02:35 +1100587 } else {
588 param[pix] = HBR_REQUEST | HBR_AVPN | slot;
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000589 param[pix+1] = hpte_encode_avpn(vpn, psize,
Paul Mackerras1189be62007-10-11 20:37:10 +1000590 ssize);
Paul Mackerras12e86f92007-02-08 15:02:35 +1100591 pix += 2;
592 if (pix == 8) {
593 rc = plpar_hcall9(H_BULK_REMOVE, param,
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100594 param[0], param[1], param[2],
595 param[3], param[4], param[5],
596 param[6], param[7]);
Paul Mackerras12e86f92007-02-08 15:02:35 +1100597 BUG_ON(rc != H_SUCCESS);
598 pix = 0;
599 }
Paul Mackerrasf03e64f2007-02-06 21:10:31 +1100600 }
601 } pte_iterate_hashed_end();
602 }
603 if (pix) {
604 param[pix] = HBR_END;
605 rc = plpar_hcall9(H_BULK_REMOVE, param, param[0], param[1],
606 param[2], param[3], param[4], param[5],
607 param[6], param[7]);
608 BUG_ON(rc != H_SUCCESS);
609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 if (lock_tlbie)
612 spin_unlock_irqrestore(&pSeries_lpar_tlbie_lock, flags);
613}
614
Will Schmidt4e89a2d2010-09-28 15:33:12 +0000615static int __init disable_bulk_remove(char *str)
616{
617 if (strcmp(str, "off") == 0 &&
618 firmware_has_feature(FW_FEATURE_BULK_REMOVE)) {
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530619 pr_info("Disabling BULK_REMOVE firmware feature");
620 powerpc_firmware_features &= ~FW_FEATURE_BULK_REMOVE;
Will Schmidt4e89a2d2010-09-28 15:33:12 +0000621 }
622 return 1;
623}
624
625__setup("bulk_remove=", disable_bulk_remove);
626
David Gibsondbcf9292016-12-09 11:07:36 +1100627#define HPT_RESIZE_TIMEOUT 10000 /* ms */
628
629struct hpt_resize_state {
630 unsigned long shift;
631 int commit_rc;
632};
633
634static int pseries_lpar_resize_hpt_commit(void *data)
635{
636 struct hpt_resize_state *state = data;
637
638 state->commit_rc = plpar_resize_hpt_commit(0, state->shift);
639 if (state->commit_rc != H_SUCCESS)
640 return -EIO;
641
642 /* Hypervisor has transitioned the HTAB, update our globals */
643 ppc64_pft_size = state->shift;
644 htab_size_bytes = 1UL << ppc64_pft_size;
645 htab_hash_mask = (htab_size_bytes >> 7) - 1;
646
647 return 0;
648}
649
650/* Must be called in user context */
651static int pseries_lpar_resize_hpt(unsigned long shift)
652{
653 struct hpt_resize_state state = {
654 .shift = shift,
655 .commit_rc = H_FUNCTION,
656 };
657 unsigned int delay, total_delay = 0;
658 int rc;
659 ktime_t t0, t1, t2;
660
661 might_sleep();
662
663 if (!firmware_has_feature(FW_FEATURE_HPT_RESIZE))
664 return -ENODEV;
665
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530666 pr_info("Attempting to resize HPT to shift %lu\n", shift);
David Gibsondbcf9292016-12-09 11:07:36 +1100667
668 t0 = ktime_get();
669
670 rc = plpar_resize_hpt_prepare(0, shift);
671 while (H_IS_LONG_BUSY(rc)) {
672 delay = get_longbusy_msecs(rc);
673 total_delay += delay;
674 if (total_delay > HPT_RESIZE_TIMEOUT) {
675 /* prepare with shift==0 cancels an in-progress resize */
676 rc = plpar_resize_hpt_prepare(0, 0);
677 if (rc != H_SUCCESS)
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530678 pr_warn("Unexpected error %d cancelling timed out HPT resize\n",
David Gibsondbcf9292016-12-09 11:07:36 +1100679 rc);
680 return -ETIMEDOUT;
681 }
682 msleep(delay);
683 rc = plpar_resize_hpt_prepare(0, shift);
684 };
685
686 switch (rc) {
687 case H_SUCCESS:
688 /* Continue on */
689 break;
690
691 case H_PARAMETER:
692 return -EINVAL;
693 case H_RESOURCE:
694 return -EPERM;
695 default:
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530696 pr_warn("Unexpected error %d from H_RESIZE_HPT_PREPARE\n", rc);
David Gibsondbcf9292016-12-09 11:07:36 +1100697 return -EIO;
698 }
699
700 t1 = ktime_get();
701
702 rc = stop_machine(pseries_lpar_resize_hpt_commit, &state, NULL);
703
704 t2 = ktime_get();
705
706 if (rc != 0) {
707 switch (state.commit_rc) {
708 case H_PTEG_FULL:
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530709 pr_warn("Hash collision while resizing HPT\n");
David Gibsondbcf9292016-12-09 11:07:36 +1100710 return -ENOSPC;
711
712 default:
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530713 pr_warn("Unexpected error %d from H_RESIZE_HPT_COMMIT\n",
714 state.commit_rc);
David Gibsondbcf9292016-12-09 11:07:36 +1100715 return -EIO;
716 };
717 }
718
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530719 pr_info("HPT resize to shift %lu complete (%lld ms / %lld ms)\n",
720 shift, (long long) ktime_ms_delta(t1, t0),
721 (long long) ktime_ms_delta(t2, t1));
David Gibsondbcf9292016-12-09 11:07:36 +1100722
723 return 0;
724}
725
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100726static int pseries_lpar_register_process_table(unsigned long base,
727 unsigned long page_size, unsigned long table_size)
728{
729 long rc;
Paul Mackerrasdbfcf3c2017-02-16 16:03:39 +1100730 unsigned long flags = 0;
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100731
Paul Mackerrasdbfcf3c2017-02-16 16:03:39 +1100732 if (table_size)
733 flags |= PROC_TABLE_NEW;
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100734 if (radix_enabled())
735 flags |= PROC_TABLE_RADIX | PROC_TABLE_GTSE;
Paul Mackerrasdbfcf3c2017-02-16 16:03:39 +1100736 else
737 flags |= PROC_TABLE_HPT_SLB;
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100738 for (;;) {
739 rc = plpar_hcall_norets(H_REGISTER_PROC_TBL, flags, base,
740 page_size, table_size);
741 if (!H_IS_LONG_BUSY(rc))
742 break;
743 mdelay(get_longbusy_msecs(rc));
744 }
745 if (rc != H_SUCCESS) {
746 pr_err("Failed to register process table (rc=%ld)\n", rc);
747 BUG();
748 }
749 return rc;
750}
751
Michael Ellerman6364e842016-07-26 10:33:03 +1000752void __init hpte_init_pseries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Benjamin Herrenschmidt70257762016-07-05 15:03:58 +1000754 mmu_hash_ops.hpte_invalidate = pSeries_lpar_hpte_invalidate;
755 mmu_hash_ops.hpte_updatepp = pSeries_lpar_hpte_updatepp;
756 mmu_hash_ops.hpte_updateboltedpp = pSeries_lpar_hpte_updateboltedpp;
757 mmu_hash_ops.hpte_insert = pSeries_lpar_hpte_insert;
758 mmu_hash_ops.hpte_remove = pSeries_lpar_hpte_remove;
759 mmu_hash_ops.hpte_removebolted = pSeries_lpar_hpte_removebolted;
760 mmu_hash_ops.flush_hash_range = pSeries_lpar_flush_hash_range;
Anton Blanchard5246ade2016-10-01 20:41:56 +1000761 mmu_hash_ops.hpte_clear_all = pseries_hpte_clear_all;
Benjamin Herrenschmidt70257762016-07-05 15:03:58 +1000762 mmu_hash_ops.hugepage_invalidate = pSeries_lpar_hugepage_invalidate;
Paul Mackerrasdbfcf3c2017-02-16 16:03:39 +1100763 register_process_table = pseries_lpar_register_process_table;
Michael Ellerman8971e1c2017-03-17 16:02:35 +1100764
765 if (firmware_has_feature(FW_FEATURE_HPT_RESIZE))
766 mmu_hash_ops.resize_hpt = pseries_lpar_resize_hpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
Robert Jennings14f966e2009-04-15 05:55:32 +0000768
Paul Mackerrascc3d2942017-01-30 21:21:36 +1100769void radix_init_pseries(void)
770{
771 pr_info("Using radix MMU under hypervisor\n");
772 register_process_table = pseries_lpar_register_process_table;
773}
774
Robert Jennings14f966e2009-04-15 05:55:32 +0000775#ifdef CONFIG_PPC_SMLPAR
776#define CMO_FREE_HINT_DEFAULT 1
777static int cmo_free_hint_flag = CMO_FREE_HINT_DEFAULT;
778
779static int __init cmo_free_hint(char *str)
780{
781 char *parm;
782 parm = strstrip(str);
783
784 if (strcasecmp(parm, "no") == 0 || strcasecmp(parm, "off") == 0) {
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530785 pr_info("%s: CMO free page hinting is not active.\n", __func__);
Robert Jennings14f966e2009-04-15 05:55:32 +0000786 cmo_free_hint_flag = 0;
787 return 1;
788 }
789
790 cmo_free_hint_flag = 1;
Aneesh Kumar K.V65471d72018-06-29 14:09:04 +0530791 pr_info("%s: CMO free page hinting is active.\n", __func__);
Robert Jennings14f966e2009-04-15 05:55:32 +0000792
793 if (strcasecmp(parm, "yes") == 0 || strcasecmp(parm, "on") == 0)
794 return 1;
795
796 return 0;
797}
798
799__setup("cmo_free_hint=", cmo_free_hint);
800
801static void pSeries_set_page_state(struct page *page, int order,
802 unsigned long state)
803{
804 int i, j;
805 unsigned long cmo_page_sz, addr;
806
807 cmo_page_sz = cmo_get_page_size();
808 addr = __pa((unsigned long)page_address(page));
809
810 for (i = 0; i < (1 << order); i++, addr += PAGE_SIZE) {
811 for (j = 0; j < PAGE_SIZE; j += cmo_page_sz)
812 plpar_hcall_norets(H_PAGE_INIT, state, addr + j, 0);
813 }
814}
815
816void arch_free_page(struct page *page, int order)
817{
Aneesh Kumar K.Vd8c476e2016-04-29 23:26:08 +1000818 if (radix_enabled())
819 return;
Robert Jennings14f966e2009-04-15 05:55:32 +0000820 if (!cmo_free_hint_flag || !firmware_has_feature(FW_FEATURE_CMO))
821 return;
822
823 pSeries_set_page_state(page, order, H_PAGE_SET_UNUSED);
824}
825EXPORT_SYMBOL(arch_free_page);
826
Aneesh Kumar K.Vd8c476e2016-04-29 23:26:08 +1000827#endif /* CONFIG_PPC_SMLPAR */
Michael Ellerman4e003742017-10-19 15:08:43 +1100828#endif /* CONFIG_PPC_BOOK3S_64 */
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000829
830#ifdef CONFIG_TRACEPOINTS
Masahiro Yamada0276ebf2018-12-31 00:14:15 +0900831#ifdef CONFIG_JUMP_LABEL
Anton Blanchardcc1adb52014-07-03 15:52:03 +1000832struct static_key hcall_tracepoint_key = STATIC_KEY_INIT;
833
Steven Rostedt (Red Hat)8cf868a2016-11-28 13:03:21 -0500834int hcall_tracepoint_regfunc(void)
Anton Blanchardcc1adb52014-07-03 15:52:03 +1000835{
836 static_key_slow_inc(&hcall_tracepoint_key);
Steven Rostedt (Red Hat)8cf868a2016-11-28 13:03:21 -0500837 return 0;
Anton Blanchardcc1adb52014-07-03 15:52:03 +1000838}
839
840void hcall_tracepoint_unregfunc(void)
841{
842 static_key_slow_dec(&hcall_tracepoint_key);
843}
844#else
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000845/*
846 * We optimise our hcall path by placing hcall_tracepoint_refcount
847 * directly in the TOC so we can check if the hcall tracepoints are
848 * enabled via a single load.
849 */
850
851/* NB: reg/unreg are called while guarded with the tracepoints_mutex */
852extern long hcall_tracepoint_refcount;
853
Steven Rostedt (Red Hat)8cf868a2016-11-28 13:03:21 -0500854int hcall_tracepoint_regfunc(void)
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000855{
856 hcall_tracepoint_refcount++;
Steven Rostedt (Red Hat)8cf868a2016-11-28 13:03:21 -0500857 return 0;
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000858}
859
860void hcall_tracepoint_unregfunc(void)
861{
862 hcall_tracepoint_refcount--;
863}
Anton Blanchardcc1adb52014-07-03 15:52:03 +1000864#endif
865
866/*
867 * Since the tracing code might execute hcalls we need to guard against
868 * recursion. One example of this are spinlocks calling H_YIELD on
869 * shared processor partitions.
870 */
871static DEFINE_PER_CPU(unsigned int, hcall_trace_depth);
872
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000873
Anton Blanchard6f263532009-10-26 18:51:09 +0000874void __trace_hcall_entry(unsigned long opcode, unsigned long *args)
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000875{
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000876 unsigned long flags;
877 unsigned int *depth;
878
Anton Blancharda5ccfee2012-01-09 14:29:15 +0000879 /*
880 * We cannot call tracepoints inside RCU idle regions which
881 * means we must not trace H_CEDE.
882 */
883 if (opcode == H_CEDE)
884 return;
885
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000886 local_irq_save(flags);
887
Christoph Lameter69111ba2014-10-21 15:23:25 -0500888 depth = this_cpu_ptr(&hcall_trace_depth);
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000889
890 if (*depth)
891 goto out;
892
893 (*depth)++;
Li Zhonge4f387d2011-12-18 16:03:04 +0000894 preempt_disable();
Anton Blanchard6f263532009-10-26 18:51:09 +0000895 trace_hcall_entry(opcode, args);
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000896 (*depth)--;
897
898out:
899 local_irq_restore(flags);
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000900}
901
Michael Ellerman8f2133c2018-05-07 23:03:55 +1000902void __trace_hcall_exit(long opcode, long retval, unsigned long *retbuf)
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000903{
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000904 unsigned long flags;
905 unsigned int *depth;
906
Anton Blancharda5ccfee2012-01-09 14:29:15 +0000907 if (opcode == H_CEDE)
908 return;
909
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000910 local_irq_save(flags);
911
Christoph Lameter69111ba2014-10-21 15:23:25 -0500912 depth = this_cpu_ptr(&hcall_trace_depth);
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000913
914 if (*depth)
915 goto out;
916
917 (*depth)++;
Anton Blanchard6f263532009-10-26 18:51:09 +0000918 trace_hcall_exit(opcode, retval, retbuf);
Li Zhonge4f387d2011-12-18 16:03:04 +0000919 preempt_enable();
Anton Blanchard57cdfdf2010-10-21 00:52:12 +0000920 (*depth)--;
921
922out:
923 local_irq_restore(flags);
Anton Blanchardc8cd0932009-10-26 18:50:29 +0000924}
925#endif
Brian King9ee820f2011-05-04 16:01:20 +1000926
927/**
928 * h_get_mpp
929 * H_GET_MPP hcall returns info in 7 parms
930 */
931int h_get_mpp(struct hvcall_mpp_data *mpp_data)
932{
933 int rc;
934 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
935
936 rc = plpar_hcall9(H_GET_MPP, retbuf);
937
938 mpp_data->entitled_mem = retbuf[0];
939 mpp_data->mapped_mem = retbuf[1];
940
941 mpp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
942 mpp_data->pool_num = retbuf[2] & 0xffff;
943
944 mpp_data->mem_weight = (retbuf[3] >> 7 * 8) & 0xff;
945 mpp_data->unallocated_mem_weight = (retbuf[3] >> 6 * 8) & 0xff;
Anton Blanchardb0d436c2013-08-07 02:01:24 +1000946 mpp_data->unallocated_entitlement = retbuf[3] & 0xffffffffffffUL;
Brian King9ee820f2011-05-04 16:01:20 +1000947
948 mpp_data->pool_size = retbuf[4];
949 mpp_data->loan_request = retbuf[5];
950 mpp_data->backing_mem = retbuf[6];
951
952 return rc;
953}
954EXPORT_SYMBOL(h_get_mpp);
955
956int h_get_mpp_x(struct hvcall_mpp_x_data *mpp_x_data)
957{
958 int rc;
959 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE] = { 0 };
960
961 rc = plpar_hcall9(H_GET_MPP_X, retbuf);
962
963 mpp_x_data->coalesced_bytes = retbuf[0];
964 mpp_x_data->pool_coalesced_bytes = retbuf[1];
965 mpp_x_data->pool_purr_cycles = retbuf[2];
966 mpp_x_data->pool_spurr_cycles = retbuf[3];
967
968 return rc;
969}
Aneesh Kumar K.V82228e32017-03-22 09:07:00 +0530970
971static unsigned long vsid_unscramble(unsigned long vsid, int ssize)
972{
973 unsigned long protovsid;
974 unsigned long va_bits = VA_BITS;
975 unsigned long modinv, vsid_modulus;
976 unsigned long max_mod_inv, tmp_modinv;
977
978 if (!mmu_has_feature(MMU_FTR_68_BIT_VA))
979 va_bits = 65;
980
981 if (ssize == MMU_SEGSIZE_256M) {
982 modinv = VSID_MULINV_256M;
983 vsid_modulus = ((1UL << (va_bits - SID_SHIFT)) - 1);
984 } else {
985 modinv = VSID_MULINV_1T;
986 vsid_modulus = ((1UL << (va_bits - SID_SHIFT_1T)) - 1);
987 }
988
989 /*
990 * vsid outside our range.
991 */
992 if (vsid >= vsid_modulus)
993 return 0;
994
995 /*
996 * If modinv is the modular multiplicate inverse of (x % vsid_modulus)
997 * and vsid = (protovsid * x) % vsid_modulus, then we say:
998 * protovsid = (vsid * modinv) % vsid_modulus
999 */
1000
1001 /* Check if (vsid * modinv) overflow (63 bits) */
1002 max_mod_inv = 0x7fffffffffffffffull / vsid;
1003 if (modinv < max_mod_inv)
1004 return (vsid * modinv) % vsid_modulus;
1005
1006 tmp_modinv = modinv/max_mod_inv;
1007 modinv %= max_mod_inv;
1008
1009 protovsid = (((vsid * max_mod_inv) % vsid_modulus) * tmp_modinv) % vsid_modulus;
1010 protovsid = (protovsid + vsid * modinv) % vsid_modulus;
1011
1012 return protovsid;
1013}
1014
1015static int __init reserve_vrma_context_id(void)
1016{
1017 unsigned long protovsid;
1018
1019 /*
1020 * Reserve context ids which map to reserved virtual addresses. For now
1021 * we only reserve the context id which maps to the VRMA VSID. We ignore
1022 * the addresses in "ibm,adjunct-virtual-addresses" because we don't
1023 * enable adjunct support via the "ibm,client-architecture-support"
1024 * interface.
1025 */
1026 protovsid = vsid_unscramble(VRMA_VSID, MMU_SEGSIZE_1T);
1027 hash__reserve_context_id(protovsid >> ESID_BITS_1T);
1028 return 0;
1029}
1030machine_device_initcall(pseries, reserve_vrma_context_id);