From: Alexander Graf <agraf@suse.de>
To: peter.maydell@linaro.org
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 4/8] PPC: Fix booke206 TLB with phys addrs > 32bit
Date: Tue, 8 Jul 2014 12:20:14 +0200 [thread overview]
Message-ID: <1404814818-15101-5-git-send-email-agraf@suse.de> (raw)
In-Reply-To: <1404814818-15101-1-git-send-email-agraf@suse.de>
We were truncating physical addresses to 32bit when using qemu-system-ppc
with a booke206 TLB implementation. This patch fixes that and makes the full
address space available.
Signed-off-by: Alexander Graf <agraf@suse.de>
---
target-ppc/mmu_helper.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/target-ppc/mmu_helper.c b/target-ppc/mmu_helper.c
index 4d6b1e2..4a34a73 100644
--- a/target-ppc/mmu_helper.c
+++ b/target-ppc/mmu_helper.c
@@ -897,10 +897,10 @@ static hwaddr booke206_tlb_to_page_size(CPUPPCState *env,
/* TLB check function for MAS based SoftTLBs */
static int ppcmas_tlb_check(CPUPPCState *env, ppcmas_tlb_t *tlb,
- hwaddr *raddrp,
- target_ulong address, uint32_t pid)
+ hwaddr *raddrp, target_ulong address,
+ uint32_t pid)
{
- target_ulong mask;
+ hwaddr mask;
uint32_t tlb_pid;
if (!msr_cm) {
--
1.8.1.4
next prev parent reply other threads:[~2014-07-08 10:20 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-08 10:20 [Qemu-devel] [PULL 2.1 0/8] ppc patch queue 2014-07-08 Alexander Graf
2014-07-08 10:20 ` [Qemu-devel] [PULL 1/8] target-ppc: KVMPPC_H_CAS fix cpu-version endianess Alexander Graf
2014-07-08 10:20 ` [Qemu-devel] [PULL 2/8] target-ppc: Change default cpu for ppc64le-linux-user Alexander Graf
2014-07-08 10:20 ` [Qemu-devel] [PULL 3/8] target-ppc: Fix gdbstub " Alexander Graf
2014-07-08 10:20 ` Alexander Graf [this message]
2014-07-08 10:20 ` [Qemu-devel] [PULL 5/8] pseries: Update SLOF firmware image to qemu-slof-20140630 Alexander Graf
2014-07-08 10:20 ` [Qemu-devel] [PULL 6/8] target-ppc: Add pvr_match() callback Alexander Graf
2014-07-08 10:20 ` [Qemu-devel] [PULL 7/8] target-ppc: Remove POWER7+ and POWER8E families Alexander Graf
2014-07-08 10:20 ` [Qemu-devel] [PULL 8/8] PPC: e500: Actually install u-boot.e500 Alexander Graf
2014-07-08 11:31 ` [Qemu-devel] [PULL 2.1 0/8] ppc patch queue 2014-07-08 Peter Maydell
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=1404814818-15101-5-git-send-email-agraf@suse.de \
--to=agraf@suse.de \
--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 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).