aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeandro Lupori <luporl@FreeBSD.org>2021-06-02 19:10:57 +0000
committerLeandro Lupori <luporl@FreeBSD.org>2021-06-02 19:27:36 +0000
commit4a66b8083cc61e89ffdddaae876d882950d6aade (patch)
treeb10bd0b69df4467552233885027e836de56abf17
parent9f3d1a98dd17b9f02912aecab328fd0315d8ef35 (diff)
downloadsrc-4a66b8083cc61e89ffdddaae876d882950d6aade.tar.gz
src-4a66b8083cc61e89ffdddaae876d882950d6aade.zip
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)
-rw-r--r--sys/powerpc/pseries/mmu_phyp.c83
1 files 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);