All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org, agraf@suse.de
Cc: aik@ozlabs.ru, mdroth@linux.vnet.ibm.com, qemu-devel@nongnu.org,
	qemu-ppc@nongnu.org, David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 37/39] target-ppc: Helper to determine page size information from hpte alone
Date: Fri, 29 Jan 2016 16:07:09 +1100	[thread overview]
Message-ID: <1454044031-5930-39-git-send-email-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <1454044031-5930-1-git-send-email-david@gibson.dropbear.id.au>

h_enter() in the spapr code needs to know the page size of the HPTE it's
about to insert.  Unlike other paths that do this, it doesn't have access
to the SLB, so at the moment it determines this with some open-coded
tests which assume POWER7 or POWER8 page size encodings.

To make this more flexible add ppc_hash64_hpte_page_shift_noslb() to
determine both the "base" page size per segment, and the individual
effective page size from an HPTE alone.

This means that the spapr code should now be able to handle any page size
listed in the env->sps table.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Reviewed-by: Alexander Graf <agraf@suse.de>
---
 hw/ppc/spapr_hcall.c    | 25 ++++++-------------------
 target-ppc/mmu-hash64.c | 35 +++++++++++++++++++++++++++++++++++
 target-ppc/mmu-hash64.h |  3 +++
 3 files changed, 44 insertions(+), 19 deletions(-)

diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c
index dedc7e0..a535c73 100644
--- a/hw/ppc/spapr_hcall.c
+++ b/hw/ppc/spapr_hcall.c
@@ -72,31 +72,18 @@ static target_ulong h_enter(PowerPCCPU *cpu, sPAPRMachineState *spapr,
     target_ulong pte_index = args[1];
     target_ulong pteh = args[2];
     target_ulong ptel = args[3];
-    target_ulong page_shift = 12;
+    unsigned apshift, spshift;
     target_ulong raddr;
     target_ulong index;
     uint64_t token;
 
-    /* only handle 4k and 16M pages for now */
-    if (pteh & HPTE64_V_LARGE) {
-#if 0 /* We don't support 64k pages yet */
-        if ((ptel & 0xf000) == 0x1000) {
-            /* 64k page */
-        } else
-#endif
-        if ((ptel & 0xff000) == 0) {
-            /* 16M page */
-            page_shift = 24;
-            /* lowest AVA bit must be 0 for 16M pages */
-            if (pteh & 0x80) {
-                return H_PARAMETER;
-            }
-        } else {
-            return H_PARAMETER;
-        }
+    apshift = ppc_hash64_hpte_page_shift_noslb(cpu, pteh, ptel, &spshift);
+    if (!apshift) {
+        /* Bad page size encoding */
+        return H_PARAMETER;
     }
 
-    raddr = (ptel & HPTE64_R_RPN) & ~((1ULL << page_shift) - 1);
+    raddr = (ptel & HPTE64_R_RPN) & ~((1ULL << apshift) - 1);
 
     if (is_ram_address(spapr, raddr)) {
         /* Regular RAM - should have WIMG=0010 */
diff --git a/target-ppc/mmu-hash64.c b/target-ppc/mmu-hash64.c
index 3284776..19ee942 100644
--- a/target-ppc/mmu-hash64.c
+++ b/target-ppc/mmu-hash64.c
@@ -512,6 +512,41 @@ static unsigned hpte_page_shift(const struct ppc_one_seg_page_size *sps,
     return 0; /* Bad page size encoding */
 }
 
+unsigned ppc_hash64_hpte_page_shift_noslb(PowerPCCPU *cpu,
+                                          uint64_t pte0, uint64_t pte1,
+                                          unsigned *seg_page_shift)
+{
+    CPUPPCState *env = &cpu->env;
+    int i;
+
+    if (!(pte0 & HPTE64_V_LARGE)) {
+        *seg_page_shift = 12;
+        return 12;
+    }
+
+    /*
+     * The encodings in env->sps need to be carefully chosen so that
+     * this gives an unambiguous result.
+     */
+    for (i = 0; i < PPC_PAGE_SIZES_MAX_SZ; i++) {
+        const struct ppc_one_seg_page_size *sps = &env->sps.sps[i];
+        unsigned shift;
+
+        if (!sps->page_shift) {
+            break;
+        }
+
+        shift = hpte_page_shift(sps, pte0, pte1);
+        if (shift) {
+            *seg_page_shift = sps->page_shift;
+            return shift;
+        }
+    }
+
+    *seg_page_shift = 0;
+    return 0;
+}
+
 int ppc_hash64_handle_mmu_fault(PowerPCCPU *cpu, target_ulong eaddr,
                                 int rwx, int mmu_idx)
 {
diff --git a/target-ppc/mmu-hash64.h b/target-ppc/mmu-hash64.h
index 293a951..34cf975 100644
--- a/target-ppc/mmu-hash64.h
+++ b/target-ppc/mmu-hash64.h
@@ -16,6 +16,9 @@ void ppc_hash64_store_hpte(PowerPCCPU *cpu, target_ulong index,
 void ppc_hash64_tlb_flush_hpte(PowerPCCPU *cpu,
                                target_ulong pte_index,
                                target_ulong pte0, target_ulong pte1);
+unsigned ppc_hash64_hpte_page_shift_noslb(PowerPCCPU *cpu,
+                                          uint64_t pte0, uint64_t pte1,
+                                          unsigned *seg_page_shift);
 #endif
 
 /*
-- 
2.5.0

  parent reply	other threads:[~2016-01-29  5:06 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-29  5:06 [Qemu-devel] [PULL 00/39] ppc-for-2.6 queue 20160129 David Gibson
2016-01-29  5:06 ` David Gibson
2016-01-29 14:48   ` Peter Maydell
2016-01-30 12:29     ` David Gibson
2016-01-31 23:57       ` David Gibson
2016-02-01 11:29         ` Peter Maydell
2016-01-29  5:06 ` [Qemu-devel] [PULL 01/39] target-ppc: Use sensible POWER8/POWER8E versions David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 02/39] target-ppc: use cpu_write_xer() helper in cpu_post_load David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 03/39] macio: use the existing IDEDMA aiocb to hold the active DMA aiocb David Gibson
2016-01-29  8:02   ` [Qemu-devel] [Qemu-ppc] " Aurelien Jarno
2016-01-30 12:36     ` David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 04/39] macio: add dma_active to VMStateDescription David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 05/39] mac_dbdma: add DBDMA controller state " David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 06/39] cuda: add missing fields " David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 07/39] spapr: Small fixes to rtas_ibm_get_system_parameter, remove rtas_st_buffer David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 08/39] spapr: Remove rtas_st_buffer_direct() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 09/39] spapr: Remove abuse of rtas_ld() in h_client_architecture_support David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 10/39] spapr: Don't create ibm, dynamic-reconfiguration-memory w/o DR LMBs David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 11/39] ppc: Clean up error handling in ppc_set_compat() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 12/39] pseries: Clean up error handling of spapr_cpu_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 13/39] pseries: Clean up error handling in spapr_validate_node_memory() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 14/39] pseries: Clean up error handling in spapr_vga_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 15/39] pseries: Clean up error handling in spapr_rtas_register() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 16/39] pseries: Clean up error handling in xics_system_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 17/39] pseries: Clean up error reporting in ppc_spapr_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 18/39] pseries: Clean up error reporting in htab migration functions David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 19/39] target-ppc: kvm: fix floating point registers sync on little-endian hosts David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 20/39] target-ppc: rename and export maybe_bswap_register() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 21/39] target-ppc: gdbstub: fix float registers for little-endian guests David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 22/39] target-ppc: gdbstub: introduce avr_need_swap() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 23/39] target-ppc: gdbstub: fix altivec registers for little-endian guests David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 24/39] target-ppc: gdbstub: fix spe " David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 25/39] target-ppc: gdbstub: Add VSX support David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 26/39] pseries: Allow TCG h_enter to work with hotplugged memory David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 27/39] cuda.c: return error for unknown commands David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 28/39] uninorth.c: add support for UniNorth kMacRISCPCIAddressSelect (0x48) register David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 29/39] target-ppc: Remove unused kvmppc_read_segment_page_sizes() stub David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 30/39] target-ppc: Convert mmu-hash{32, 64}.[ch] from CPUPPCState to PowerPCCPU David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 31/39] target-ppc: Rework ppc_store_slb David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 32/39] target-ppc: Rework SLB page size lookup David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 33/39] target-ppc: Use actual page size encodings from HPTE David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 34/39] target-ppc: Remove unused mmu models from ppc_tlb_invalidate_one David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 35/39] target-ppc: Split 44x tlbiva from ppc_tlb_invalidate_one() David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 36/39] target-ppc: Add new TLB invalidate by HPTE call for hash64 MMUs David Gibson
2016-01-29  5:07 ` David Gibson [this message]
2016-01-29  5:07 ` [Qemu-devel] [PULL 38/39] target-ppc: Allow more page sizes for POWER7 & POWER8 in TCG David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 39/39] target-ppc: Make every FPSCR_ macro have a corresponding FP_ macro David Gibson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1454044031-5930-39-git-send-email-david@gibson.dropbear.id.au \
    --to=david@gibson.dropbear.id.au \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.