From: David Gibson <david@gibson.dropbear.id.au>
To: agraf@suse.de
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 3/3] monitor: add ability to dump SLB entries
Date: Mon, 31 Oct 2011 14:16:47 +1100 [thread overview]
Message-ID: <1320031007-25884-4-git-send-email-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <1320031007-25884-1-git-send-email-david@gibson.dropbear.id.au>
From: Nishanth Aravamudan <nacc@us.ibm.com>
When run with a PPC Book3S (server) CPU Currently 'info tlb' in the
qemu monitor reports "dump_mmu: unimplemented". However, during
bringup work, it can be quite handy to have the SLB entries, which are
available in the CPUPPCState. This patch adds an implementation of
info tlb for book3s, which dumps the SLB.
Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
target-ppc/helper.c | 32 +++++++++++++++++++++++++++-----
1 files changed, 27 insertions(+), 5 deletions(-)
diff --git a/target-ppc/helper.c b/target-ppc/helper.c
index 137a494..29c7050 100644
--- a/target-ppc/helper.c
+++ b/target-ppc/helper.c
@@ -1545,14 +1545,36 @@ static void mmubooke206_dump_mmu(FILE *f, fprintf_function cpu_fprintf,
}
}
+static void mmubooks_dump_mmu(FILE *f, fprintf_function cpu_fprintf,
+ CPUState *env)
+{
+ int i;
+ uint64_t slbe, slbv;
+
+ cpu_synchronize_state(env);
+
+ cpu_fprintf(f, "SLB\tESID\t\t\tVSID\n");
+ for (i = 0; i < env->slb_nr; i++) {
+ slbe = env->slb[i].esid;
+ slbv = env->slb[i].vsid;
+ if (slbe == 0 && slbv == 0) {
+ continue;
+ }
+ cpu_fprintf(f, "%d\t0x%016" PRIx64 "\t0x%016" PRIx64 "\n",
+ i, slbe, slbv);
+ }
+}
+
void dump_mmu(FILE *f, fprintf_function cpu_fprintf, CPUState *env)
{
- switch (env->mmu_model) {
- case POWERPC_MMU_BOOKE206:
+ if (env->mmu_model == POWERPC_MMU_BOOKE206) {
mmubooke206_dump_mmu(f, cpu_fprintf, env);
- break;
- default:
- cpu_fprintf(f, "%s: unimplemented\n", __func__);
+ } else {
+ if ((env->mmu_model & POWERPC_MMU_64B) != 0) {
+ mmubooks_dump_mmu(f, cpu_fprintf, env);
+ } else {
+ cpu_fprintf(f, "%s: unimplemented\n", __func__);
+ }
}
}
--
1.7.7
next prev parent reply other threads:[~2011-10-31 3:17 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-31 3:16 [Qemu-devel] [0/3] Further ppc & pseries updates David Gibson
2011-10-31 3:16 ` [Qemu-devel] [PATCH 1/3] ppc: Alter CPU state to mask out TCG unimplemented instructions as appropriate David Gibson
2011-10-31 3:51 ` Alexander Graf
2011-10-31 3:16 ` [Qemu-devel] [PATCH 2/3] pseries: Add partial support for PCI David Gibson
2011-10-31 3:55 ` Alexander Graf
2011-10-31 3:16 ` David Gibson [this message]
2011-10-31 3:35 ` [Qemu-devel] [PATCH 3/3] monitor: add ability to dump SLB entries Alexander Graf
2011-10-31 4:14 ` David Gibson
2011-10-31 22:53 ` Nishanth Aravamudan
2011-11-01 0:35 ` Alexander Graf
2011-11-01 1:18 ` Nishanth Aravamudan
2011-11-01 19:57 ` [Qemu-devel] [PATCH v2] " Nishanth Aravamudan
2011-11-10 17:11 ` Alexander Graf
2011-11-14 0:40 ` [Qemu-devel] [Qemu-ppc] " David Gibson
2011-11-14 6:25 ` Alexander Graf
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=1320031007-25884-4-git-send-email-david@gibson.dropbear.id.au \
--to=david@gibson.dropbear.id.au \
--cc=agraf@suse.de \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).