From: ehrhardt@linux.vnet.ibm.com
To: kvm-ppc@vger.kernel.org
Subject: [kvm-ppc-devel] [PATCH] [4/4] Add userpace tlb access (userspace)
Date: Thu, 31 Jan 2008 14:56:36 +0000 [thread overview]
Message-ID: <12017914001463-git-send-email-ehrhardt@linux.vnet.ibm.com> (raw)
In-Reply-To: <1201696321567-git-send-email-ehrhardt@linux.vnet.ibm.com>
From: Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
This adds userspace tlb access transporting a single tlb entry to/from
userspace. It has an index variable passed with the call to specify the tlb
entry to get/set. For the guest tlb get&set is supported while the shadow
tlb can only be read from userspace.
Signed-off-by: Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
---
libkvm/libkvm-powerpc.c | 84 ++++++++++++++++++++++++++++++++++++++++++++++--
libkvm/libkvm.h | 7 ++++
qemu/hw/ppc440_bamboo.c | 4 +-
qemu/qemu-kvm-powerpc.c | 20 +++++++++++
qemu/qemu-kvm.h | 1
5 files changed, 113 insertions(+), 3 deletions(-)
diff --git a/libkvm/libkvm-powerpc.c b/libkvm/libkvm-powerpc.c
--- a/libkvm/libkvm-powerpc.c
+++ b/libkvm/libkvm-powerpc.c
@@ -137,3 +137,77 @@ int kvm_arch_run(struct kvm_run *run, kv
}
return ret;
}
+
+int kvm_get_guest_tlb(kvm_context_t kvm, int vcpu, struct kvm_tlbe *tlbe)
+{
+ int r = 0;
+
+ r = ioctl(kvm->vcpu_fd[vcpu], KVM_GET_GUEST_TLB, tlbe);
+ if (r)
+ fprintf(stderr, "%s failed (r='%d')\n", __func__, r);
+
+ return r;
+}
+
+int kvm_get_shadow_tlb(kvm_context_t kvm, int vcpu, struct kvm_tlbe *tlbe)
+{
+ int r = 0;
+
+ r = ioctl(kvm->vcpu_fd[vcpu], KVM_GET_SHADOW_TLB, tlbe);
+ if (r)
+ fprintf(stderr, "%s failed (r='%d')\n", __func__, r);
+
+ return r;
+}
+
+int kvm_set_guest_tlb(kvm_context_t kvm, int vcpu, struct kvm_tlbe *tlbe)
+{
+ int r = 0;
+
+ r = ioctl(kvm->vcpu_fd[vcpu], KVM_SET_GUEST_TLB, tlbe);
+ if (r)
+ fprintf(stderr, "%s - failed (r='%d')\n", __func__, r);
+
+ return r;
+}
+
+void kvm_dump_tlb(kvm_context_t kvm, int vcpu)
+{
+ int pvr = kvm_get_guest_pvr(kvm, vcpu);
+
+ switch (pvr) {
+ case KVM_PPC_PVR_PPC440EP: {
+ struct kvm_tlbe tlbe;
+ struct tlbe *tlbe_ppc440 = &(tlbe.tlbe_ppc440);
+
+ fprintf(stderr, "vcpu %d TLB dump:\n", vcpu);
+ fprintf(stderr, "| %2s | %8s | %8s | %8s | %8s |\n",
+ "nr", " tid ", "word0", "word1", "word2");
+ for (tlbe.index = 0; tlbe.index < PPC44x_TLB_SIZE;
+ tlbe.index++) {
+ kvm_get_guest_tlb(kvm, vcpu, &tlbe);
+ if (tlbe_ppc440->word0 & PPC44x_TLB_VALID)
+ fprintf(stderr,
+ "G%2lld | %08X | %08X | %08X | %08X |\n",
+ tlbe.index, tlbe_ppc440->tid,
+ tlbe_ppc440->word0, tlbe_ppc440->word1,
+ tlbe_ppc440->word2);
+ }
+ for (tlbe.index = 0; tlbe.index < PPC44x_TLB_SIZE;
+ tlbe.index++) {
+ kvm_get_shadow_tlb(kvm, vcpu, &tlbe);
+ if (tlbe_ppc440->word0 & PPC44x_TLB_VALID)
+ fprintf(stderr,
+ "S%2lld | %08X | %08X | %08X | %08X |\n",
+ tlbe.index, tlbe_ppc440->tid,
+ tlbe_ppc440->word0, tlbe_ppc440->word1,
+ tlbe_ppc440->word2);
+ }
+ fflush(stdout);
+ break;
+ }
+ default: {
+ printf("%s unsupported pvr '%X'", __func__, pvr);
+ }
+ }
+}
diff --git a/libkvm/libkvm.h b/libkvm/libkvm.h
--- a/libkvm/libkvm.h
+++ b/libkvm/libkvm.h
@@ -560,4 +560,11 @@ void kvm_set_guest_pvr(kvm_context_t kvm
void kvm_set_guest_pvr(kvm_context_t kvm, uint32_t guest_pvr, int vcpu);
#endif
+#if defined(__powerpc__)
+int kvm_get_guest_tlb(kvm_context_t kvm, int vcpu, struct kvm_tlbe *tlbe);
+int kvm_set_guest_tlb(kvm_context_t kvm, int vcpu, struct kvm_tlbe *tlbe);
+int kvm_get_shadow_tlb(kvm_context_t kvm, int vcpu, struct kvm_tlbe *tlbe);
+void kvm_dump_tlb(kvm_context_t kvm, int vcpu);
#endif
+
+#endif
diff --git a/qemu/hw/ppc440_bamboo.c b/qemu/hw/ppc440_bamboo.c
--- a/qemu/hw/ppc440_bamboo.c
+++ b/qemu/hw/ppc440_bamboo.c
@@ -103,7 +103,9 @@ void bamboo_init(ram_addr_t ram_size, in
#if USE_KVM
set_guest_pvr(KVM_PPC_PVR_PPC440EP, env);
- /* XXX insert TLB entries */
+ /* insert initial TLB entry state */
+ kvm_ppc440_tlb_init(env);
+ /* set up initial stack pointer */
env->gpr[1] = (16<<20) - 8;
env->gpr[4] = initrd_base;
env->gpr[5] = initrd_size;
diff --git a/qemu/qemu-kvm-powerpc.c b/qemu/qemu-kvm-powerpc.c
--- a/qemu/qemu-kvm-powerpc.c
+++ b/qemu/qemu-kvm-powerpc.c
@@ -199,4 +199,24 @@ void set_guest_pvr(uint32_t guest_pvr, C
kvm_set_guest_pvr(kvm_context, guest_pvr, env->cpu_index);
}
+void kvm_ppc440_tlb_init(CPUState *env)
+{
+ static struct kvm_tlbe tlbe;
+ struct tlbe *gtlbe = &(tlbe.tlbe_ppc440);
+ tlbe.index = 0;
+ gtlbe->tid = 0;
+ gtlbe->word0 = PPC44x_TLB_16M | PPC44x_TLB_VALID;
+ gtlbe->word1 = 0;
+ gtlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR;
+ kvm_set_guest_tlb(kvm_context, env->cpu_index, &tlbe);
+
+ tlbe.index++;
+ gtlbe->tid = 0;
+ gtlbe->word0 = 0xef600000 | PPC44x_TLB_4K | PPC44x_TLB_VALID;
+ gtlbe->word1 = 0xef600000;
+ gtlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR
+ | PPC44x_TLB_I | PPC44x_TLB_G;
+ kvm_set_guest_tlb(kvm_context, env->cpu_index, &tlbe);
+}
+
#endif
diff --git a/qemu/qemu-kvm.h b/qemu/qemu-kvm.h
--- a/qemu/qemu-kvm.h
+++ b/qemu/qemu-kvm.h
@@ -58,6 +58,7 @@ int handle_powerpc_dcr_read(int vcpu, ui
int handle_powerpc_dcr_read(int vcpu, uint32_t dcrn, uint32_t *data);
int handle_powerpc_dcr_write(int vcpu,uint32_t dcrn, uint32_t data);
void set_guest_pvr(uint32_t guest_pvr, CPUState *env);
+void kvm_ppc440_tlb_init(CPUState *env);
#endif
#define ALIGN(x, y) (((x)+(y)-1) & ~((y)-1))
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
kvm-ppc-devel mailing list
kvm-ppc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-ppc-devel
prev parent reply other threads:[~2008-01-31 14:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-30 12:31 [kvm-ppc-devel] [PATCH] [4/4] Add userpace tlb access (userspace) ehrhardt
2008-01-31 14:56 ` ehrhardt [this message]
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=12017914001463-git-send-email-ehrhardt@linux.vnet.ibm.com \
--to=ehrhardt@linux.vnet.ibm.com \
--cc=kvm-ppc@vger.kernel.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.