Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Jun 2021 19:28:21 GMT
From:      Leandro Lupori <luporl@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 4a66b8083cc6 - main - powerpc: fix boot on pseries without hugepages
Message-ID:  <202106021928.152JSLJP083191@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by luporl:

URL: https://cgit.FreeBSD.org/src/commit/?id=4a66b8083cc61e89ffdddaae876d882950d6aade

commit 4a66b8083cc61e89ffdddaae876d882950d6aade
Author:     Leandro Lupori <luporl@FreeBSD.org>
AuthorDate: 2021-06-02 19:10:57 +0000
Commit:     Leandro Lupori <luporl@FreeBSD.org>
CommitDate: 2021-06-02 19:27:36 +0000

    powerpc: fix boot on pseries without hugepages
    
    Commit 49c894ddced5 introduced an issue that prevented pseries boot,
    when hugepages were not available to the guest. Now large page
    info must be available before moea64_install is called, so this change
    moves the code that scans large page sizes before the call.
    
    Reviewed by:    jhibbits (IRC)
    Sponsored by:   Instituto de Pesquisas Eldorado (eldorado.org.br)
---
 sys/powerpc/pseries/mmu_phyp.c | 83 +++++++++++++++++++++---------------------
 1 file changed, 42 insertions(+), 41 deletions(-)

diff --git a/sys/powerpc/pseries/mmu_phyp.c b/sys/powerpc/pseries/mmu_phyp.c
index d94fb2aa5ae1..5769f0db5572 100644
--- a/sys/powerpc/pseries/mmu_phyp.c
+++ b/sys/powerpc/pseries/mmu_phyp.c
@@ -106,6 +106,7 @@ static struct moea64_funcs mmu_phyp_funcs = {
 MMU_DEF_INHERIT(pseries_mmu, "mmu_phyp", mphyp_methods, oea64_mmu);
 
 static int brokenkvm = 0;
+static uint64_t final_pteg_count = 0;
 
 static void
 print_kvm_bug_warning(void *data)
@@ -125,48 +126,32 @@ SYSINIT(kvmbugwarn2, SI_SUB_LAST, SI_ORDER_THIRD + 1, print_kvm_bug_warning,
 static void
 mphyp_install()
 {
-
-	moea64_ops = &mmu_phyp_funcs;
-
-	moea64_install();
-}
-
-static void
-mphyp_bootstrap(vm_offset_t kernelstart, vm_offset_t kernelend)
-{
-	uint64_t final_pteg_count = 0;
 	char buf[8];
 	uint32_t prop[2];
 	uint32_t nptlp, shift = 0, slb_encoding = 0;
 	uint32_t lp_size, lp_encoding;
-	struct lpte old;
-	uint64_t vsid;
 	phandle_t dev, node, root;
 	int idx, len, res;
 	bool has_lp;
 
-	rm_init(&mphyp_eviction_lock, "pte eviction");
-
-	moea64_early_bootstrap(kernelstart, kernelend);
-
 	root = OF_peer(0);
 
-        dev = OF_child(root);
+	dev = OF_child(root);
 	while (dev != 0) {
-                res = OF_getprop(dev, "name", buf, sizeof(buf));
-                if (res > 0 && strcmp(buf, "cpus") == 0)
-                        break;
-                dev = OF_peer(dev);
-        }
+		res = OF_getprop(dev, "name", buf, sizeof(buf));
+		if (res > 0 && strcmp(buf, "cpus") == 0)
+			break;
+		dev = OF_peer(dev);
+	}
 
 	node = OF_child(dev);
 
 	while (node != 0) {
-                res = OF_getprop(node, "device_type", buf, sizeof(buf));
-                if (res > 0 && strcmp(buf, "cpu") == 0)
-                        break;
-                node = OF_peer(node);
-        }
+		res = OF_getprop(node, "device_type", buf, sizeof(buf));
+		if (res > 0 && strcmp(buf, "cpu") == 0)
+			break;
+		node = OF_peer(node);
+	}
 
 	res = OF_getencprop(node, "ibm,pft-size", prop, sizeof(prop));
 	if (res <= 0)
@@ -177,20 +162,6 @@ mphyp_bootstrap(vm_offset_t kernelstart, vm_offset_t kernelend)
 		n_slbs = prop[0];
 	dprintf0("slb-size=%i\n", n_slbs);
 
-	moea64_pteg_count = final_pteg_count / sizeof(struct lpteg);
-
-	/* Clear any old page table entries */
-	for (idx = 0; idx < moea64_pteg_count*8; idx++) {
-		phyp_pft_hcall(H_READ, 0, idx, 0, 0, &old.pte_hi,
-		    &old.pte_lo, &old.pte_lo);
-		vsid = (old.pte_hi << (ADDR_API_SHFT64 - ADDR_PIDX_SHFT)) >> 28;
-		if (vsid == VSID_VRMA || vsid == 0 /* Older VRMA */)
-			continue;
-		
-		if (old.pte_hi & LPTE_VALID)
-			phyp_hcall(H_REMOVE, 0, idx, 0);
-	}
-
 	/*
 	 * Scan the large page size property for PAPR compatible machines.
 	 * See PAPR D.5 Changes to Section 5.1.4, 'CPU Node Properties'
@@ -264,6 +235,36 @@ mphyp_bootstrap(vm_offset_t kernelstart, vm_offset_t kernelend)
 		}
 	}
 
+	moea64_ops = &mmu_phyp_funcs;
+
+	moea64_install();
+}
+
+static void
+mphyp_bootstrap(vm_offset_t kernelstart, vm_offset_t kernelend)
+{
+	struct lpte old;
+	uint64_t vsid;
+	int idx;
+
+	rm_init(&mphyp_eviction_lock, "pte eviction");
+
+	moea64_early_bootstrap(kernelstart, kernelend);
+
+	moea64_pteg_count = final_pteg_count / sizeof(struct lpteg);
+
+	/* Clear any old page table entries */
+	for (idx = 0; idx < moea64_pteg_count*8; idx++) {
+		phyp_pft_hcall(H_READ, 0, idx, 0, 0, &old.pte_hi,
+		    &old.pte_lo, &old.pte_lo);
+		vsid = (old.pte_hi << (ADDR_API_SHFT64 - ADDR_PIDX_SHFT)) >> 28;
+		if (vsid == VSID_VRMA || vsid == 0 /* Older VRMA */)
+			continue;
+
+		if (old.pte_hi & LPTE_VALID)
+			phyp_hcall(H_REMOVE, 0, idx, 0);
+	}
+
 	moea64_mid_bootstrap(kernelstart, kernelend);
 	moea64_late_bootstrap(kernelstart, kernelend);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106021928.152JSLJP083191>