From: Alexander Graf <agraf@suse.de>
To: qemu-devel Developers <qemu-devel@nongnu.org>
Cc: blauwirbel@gmail.com
Subject: [Qemu-devel] [PATCH 07/16] s390x: update R and C bits in storage key
Date: Fri, 11 Nov 2011 18:49:14 +0100 [thread overview]
Message-ID: <1321033763-19881-8-git-send-email-agraf@suse.de> (raw)
In-Reply-To: <1321033763-19881-1-git-send-email-agraf@suse.de>
When the s390x maps a page or writes happen to a page, the R and C
bits get updated. The easiest way to implement this in qemu is to
simply update them whenever we map a TLB translation and act according
to the permissions.
Signed-off-by: Alexander Graf <agraf@suse.de>
---
target-s390x/cpu.h | 4 ++++
target-s390x/helper.c | 12 ++++++++++++
target-s390x/op_helper.c | 1 -
3 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/target-s390x/cpu.h b/target-s390x/cpu.h
index e192b50..95abe59 100644
--- a/target-s390x/cpu.h
+++ b/target-s390x/cpu.h
@@ -819,6 +819,10 @@ struct sysib_322 {
#define _PAGE_RO 0x200 /* HW read-only bit */
#define _PAGE_INVALID 0x400 /* HW invalid bit */
+#define SK_C (0x1 << 1)
+#define SK_R (0x1 << 2)
+#define SK_F (0x1 << 3)
+#define SK_ACC_MASK (0xf << 4)
/* EBCDIC handling */
diff --git a/target-s390x/helper.c b/target-s390x/helper.c
index 96dd867..4145104 100644
--- a/target-s390x/helper.c
+++ b/target-s390x/helper.c
@@ -348,6 +348,7 @@ int mmu_translate(CPUState *env, target_ulong vaddr, int rw, uint64_t asc,
target_ulong *raddr, int *flags)
{
int r = -1;
+ uint8_t *sk;
*flags = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
vaddr &= TARGET_PAGE_MASK;
@@ -390,6 +391,17 @@ out:
*raddr = *raddr + env->psa;
}
+ if (*raddr <= ram_size) {
+ sk = &env->storage_keys[*raddr / TARGET_PAGE_SIZE];
+ if (*flags & PAGE_READ) {
+ *sk |= SK_R;
+ }
+
+ if (*flags & PAGE_WRITE) {
+ *sk |= SK_C;
+ }
+ }
+
return r;
}
diff --git a/target-s390x/op_helper.c b/target-s390x/op_helper.c
index 2f46bdd..440e871 100644
--- a/target-s390x/op_helper.c
+++ b/target-s390x/op_helper.c
@@ -2761,7 +2761,6 @@ uint64_t HELPER(iske)(uint64_t r2)
return 0;
}
- /* XXX maybe use qemu's internal keys? */
return env->storage_keys[addr / TARGET_PAGE_SIZE];
}
--
1.6.0.2
next prev parent reply other threads:[~2011-11-11 17:49 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-11 17:49 [Qemu-devel] [PULL 00/16] s390 patch queue 2011-11-11 for 1.0 Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 01/16] [S390] Add hotplug support Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 02/16] Compile device-hotplug on all targets Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 03/16] Add generic drive hotplugging Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 04/16] Expose drive_add on all architectures Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 05/16] s390x: add ldeb instruction Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 06/16] s390x: make ipte 31-bit aware Alexander Graf
2011-11-11 17:49 ` Alexander Graf [this message]
2011-11-11 17:49 ` [Qemu-devel] [PATCH 08/16] s390x: implement rrbe instruction properly Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 09/16] s390x: implement SIGP restart and shutdown Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 10/16] s390: fix reset hypercall to reset the status Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 11/16] s390: fix short kernel command lines Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 12/16] s390: Fix cpu shutdown for KVM Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 13/16] s390x: Add shutdown for TCG s390-virtio machine Alexander Graf
2011-11-11 17:49 ` [Qemu-devel] [PATCH 14/16] tcg: Standardize on TCGReg as the enum for hard registers Alexander Graf
2011-11-11 23:27 ` Andreas Färber
2011-11-11 17:49 ` [Qemu-devel] [PATCH 15/16] tcg: Use TCGReg for standard tcg-target entry points Alexander Graf
2011-11-11 23:29 ` Andreas Färber
2011-11-11 17:49 ` [Qemu-devel] [PATCH 16/16] s390x: initialize virtio dev region Alexander Graf
2011-11-11 18:08 ` Peter Maydell
2011-11-13 10:09 ` [Qemu-devel] [PULL 00/16] s390 patch queue 2011-11-11 for 1.0 Blue Swirl
2011-11-13 13:51 ` Anthony Liguori
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=1321033763-19881-8-git-send-email-agraf@suse.de \
--to=agraf@suse.de \
--cc=blauwirbel@gmail.com \
--cc=qemu-devel@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).