From: Michael Mueller <mimu@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org, kvm@vger.kernel.org,
linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Eduardo Habkost <ehabkost@redhat.com>,
Gleb Natapov <gleb@kernel.org>, Alexander Graf <agraf@suse.de>,
Christian Borntraeger <borntraeger@de.ibm.com>,
Daniel Hansel <daniel.hansel@linux.vnet.ibm.com>,
"Jason J. Herne" <jjherne@linux.vnet.ibm.com>,
Cornelia Huck <cornelia.huck@de.ibm.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Richard Henderson <rth@twiddle.net>,
Andreas Faerber <afaerber@suse.de>,
Michael Mueller <mimu@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH v5 06/17] target-s390x: Introduce S390 CPU facilities
Date: Mon, 13 Apr 2015 15:56:25 +0200 [thread overview]
Message-ID: <1428933396-37887-7-git-send-email-mimu@linux.vnet.ibm.com> (raw)
In-Reply-To: <1428933396-37887-1-git-send-email-mimu@linux.vnet.ibm.com>
The patch introduces S390 CPU facility bit numbers and names
as well as the architectural facility size limit in bytes.
Signed-off-by: Michael Mueller <mimu@linux.vnet.ibm.com>
---
target-s390x/cpu-facilities.h | 86 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 86 insertions(+)
create mode 100644 target-s390x/cpu-facilities.h
diff --git a/target-s390x/cpu-facilities.h b/target-s390x/cpu-facilities.h
new file mode 100644
index 0000000..db1f064
--- /dev/null
+++ b/target-s390x/cpu-facilities.h
@@ -0,0 +1,86 @@
+/*
+ * CPU facilities for s390
+ *
+ * Copyright 2015 IBM Corp.
+ *
+ * Author(s): Michael Mueller <mimu@linux.vnet.ibm.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or (at
+ * your option) any later version. See the COPYING file in the top-level
+ * directory.
+ */
+
+#ifndef TARGET_S390X_CPU_FACILITIES_H
+#define TARGET_S390X_CPU_FACILITIES_H
+
+/* architectural size of facilities is 2KB */
+#define FAC_LIST_ARCH_S390_SIZE_UINT8 (1<<11)
+
+/* CPU facility bits */
+typedef enum {
+ FAC_N3 = 0,
+ FAC_ZARCH = 1,
+ FAC_ZARCH_ACTIVE = 2,
+ FAC_DAT_ENH = 3,
+ FAC_ASN_LX_REUSE = 6,
+ FAC_STFLE = 7,
+ FAC_ENHANCED_DAT_1 = 8,
+ FAC_SENSE_RUNNING_STATUS = 9,
+ FAC_CONDITIONAL_SSKE = 10,
+ FAC_CONFIGURATION_TOPOLOGY = 11,
+ FAC_IPTE_RANGE = 13,
+ FAC_NONQ_KEY_SETTING = 14,
+ FAC_EXTENDED_TRANSLATION_2 = 16,
+ FAC_MESSAGE_SECURITY_ASSIST = 17,
+ FAC_LONG_DISPLACEMENT = 18,
+ FAC_LONG_DISPLACEMENT_FAST = 19,
+ FAC_HFP_MADDSUB = 20,
+ FAC_EXTENDED_IMMEDIATE = 21,
+ FAC_EXTENDED_TRANSLATION_3 = 22,
+ FAC_HFP_UNNORMALIZED_EXT = 23,
+ FAC_ETF2_ENH = 24,
+ FAC_STORE_CLOCK_FAST = 25,
+ FAC_PARSING_ENH = 26,
+ FAC_MOVE_WITH_OPTIONAL_SPEC = 27,
+ FAC_TOD_CLOCK_STEERING = 28,
+ FAC_ETF3_ENH = 30,
+ FAC_EXTRACT_CPU_TIME = 31,
+ FAC_COMPARE_AND_SWAP_AND_STORE = 32,
+ FAC_COMPARE_AND_SWAP_AND_STORE_2 = 33,
+ FAC_GENERAL_INSTRUCTIONS_EXT = 34,
+ FAC_EXECUTE_EXT = 35,
+ FAC_ENHANCED_MONITOR = 36,
+ FAC_FLOATING_POINT_EXT = 37,
+ FAC_LOAD_PROGRAM_PARAMETERS = 40,
+ FAC_FLOATING_POINT_SUPPPORT_ENH = 41,
+ FAC_DFP = 42,
+ FAC_DFP_FAST = 43,
+ FAC_PFPO = 44,
+ FAC_MULTI_45 = 45,
+ FAC_CMPSC_ENH = 47,
+ FAC_DFP_ZONED_CONVERSION = 48,
+ FAC_MULTI_49 = 49,
+ FAC_CONSTRAINT_TRANSACTIONAL_EXE = 50,
+ FAC_LOCAL_TLB_CLEARING = 51,
+ FAC_INTERLOCKED_ACCESS_2 = 52,
+ FAC_LOAD_STORE_ON_COND_2 = 53,
+ FAC_MESSAGE_SECURITY_ASSIST_5 = 57,
+ FAC_RESET_REFERENCE_BITS_MULTIPLE = 66,
+ FAC_CPU_MEASUREMENT_COUNTER = 67,
+ FAC_CPU_MEASUREMENT_SAMPLING = 68,
+ FAC_TRANSACTIONAL_EXE = 73,
+ /*
+ * The store-hypervisor-information facility #74 is
+ * z/VM related and when added to be handled by QEMU
+ * when hosted on LPAR. (see: SC24-6179-05 page 953)
+ */
+ FAC_ACCESS_EXCEPTION_FS_INDICATION = 75,
+ FAC_MESSAGE_SECURITY_ASSIST_3 = 76,
+ FAC_MESSAGE_SECURITY_ASSIST_4 = 77,
+ FAC_ENHANCED_DAT_2 = 78,
+ FAC_DFP_PACKED_CONVERSION = 80,
+ FAC_VECTOR = 129,
+ FAC_STORE_CPU_COUNTER_MULTI = 142,
+} S390Facility;
+
+#endif
--
1.8.3.1
next prev parent reply other threads:[~2015-04-13 13:57 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-13 13:56 [Qemu-devel] [PATCH v5 00/17] s390x cpu model implementation Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 01/17] Introduce stub routine cpu_desc_avail Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 02/17] Add accelerator id and model name to CPUState Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 03/17] Extend QMP command query-cpus to return accelerator id and model name Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 04/17] Extend HMP command info cpus to display " Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 05/17] Add optional parameters to QMP command query-cpu-definitions Michael Mueller
2015-04-13 13:56 ` Michael Mueller [this message]
2015-04-27 8:11 ` [Qemu-devel] [PATCH v5 06/17] target-s390x: Introduce S390 CPU facilities Christian Borntraeger
2015-04-27 8:55 ` Michael Mueller
2015-04-27 10:14 ` Christian Borntraeger
2015-04-27 10:32 ` Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 07/17] target-s390x: Generate facility defines per S390 CPU model Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 08/17] target-s390x: Introduce S390 CPU models Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 09/17] target-s390x: Define S390 CPU model specific facility lists Michael Mueller
2015-04-27 8:11 ` Christian Borntraeger
2015-04-27 8:59 ` Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 10/17] target-s390x: Add S390 CPU model alias definition routines Michael Mueller
2015-04-27 8:11 ` Christian Borntraeger
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 11/17] target-s390x: Add KVM VM attribute interface for S390 CPU models Michael Mueller
2015-04-27 8:15 ` Christian Borntraeger
2015-04-27 9:43 ` Michael Mueller
2015-04-27 10:52 ` Christian Borntraeger
2015-04-27 11:07 ` Michael Mueller
2015-04-27 12:19 ` Cornelia Huck
2015-04-27 13:01 ` Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 12/17] target-s390x: Add S390 CPU class initialization routines Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 13/17] target-s390x: Prepare accelerator during S390 CPU object realization Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 14/17] target-s390x: Initialize S390 CPU model name in CPUState Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 15/17] target-s390x: Extend arch specific QMP command query-cpu-definitions Michael Mueller
2015-04-27 8:11 ` Christian Borntraeger
2015-04-27 10:29 ` Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 16/17] target-s390x: Introduce S390 CPU facility test routine Michael Mueller
2015-04-13 13:56 ` [Qemu-devel] [PATCH v5 17/17] target-s390x: Enable S390 CPU model usage Michael Mueller
2015-04-27 8:11 ` [Qemu-devel] [PATCH v5 00/17] s390x cpu model implementation Christian Borntraeger
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=1428933396-37887-7-git-send-email-mimu@linux.vnet.ibm.com \
--to=mimu@linux.vnet.ibm.com \
--cc=afaerber@suse.de \
--cc=agraf@suse.de \
--cc=borntraeger@de.ibm.com \
--cc=cornelia.huck@de.ibm.com \
--cc=daniel.hansel@linux.vnet.ibm.com \
--cc=ehabkost@redhat.com \
--cc=gleb@kernel.org \
--cc=jjherne@linux.vnet.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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).