qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org
Cc: qemu-devel@nongnu.org, aik@ozlabs.ru, agraf@suse.de,
	mdroth@linux.vnet.ibm.com, alex.williamson@redhat.com,
	qemu-ppc@nongnu.org, David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 04/16] target-ppc: Add PVR for POWER8NVL processor
Date: Wed, 16 Mar 2016 16:06:56 +1100	[thread overview]
Message-ID: <1458104828-32541-5-git-send-email-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <1458104828-32541-1-git-send-email-david@gibson.dropbear.id.au>

From: Alexey Kardashevskiy <aik@ozlabs.ru>

This adds a new POWER8+NVLink CPU PVR which core is identical to POWER8
but has a different PVR. The only available machine now has PVR
pvr 004c 0100 so this defines "POWER8NVL" alias as v1.0.

The corresponding kernel commit is
https://github.com/torvalds/linux/commit/ddee09c099c3
"powerpc: Add PVR for POWER8NVL processor"

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
 target-ppc/cpu-models.c     | 3 +++
 target-ppc/cpu-models.h     | 2 ++
 target-ppc/translate_init.c | 3 +++
 3 files changed, 8 insertions(+)

diff --git a/target-ppc/cpu-models.c b/target-ppc/cpu-models.c
index ed005d7..5209e63 100644
--- a/target-ppc/cpu-models.c
+++ b/target-ppc/cpu-models.c
@@ -1143,6 +1143,8 @@
                 "POWER8E v2.1")
     POWERPC_DEF("POWER8_v2.0",   CPU_POWERPC_POWER8_v20,             POWER8,
                 "POWER8 v2.0")
+    POWERPC_DEF("POWER8NVL_v1.0",CPU_POWERPC_POWER8NVL_v10,          POWER8,
+                "POWER8NVL v1.0")
     POWERPC_DEF("970_v2.2",      CPU_POWERPC_970_v22,                970,
                 "PowerPC 970 v2.2")
     POWERPC_DEF("970fx_v1.0",    CPU_POWERPC_970FX_v10,              970,
@@ -1392,6 +1394,7 @@ PowerPCCPUAlias ppc_cpu_aliases[] = {
     { "POWER7+", "POWER7+_v2.1" },
     { "POWER8E", "POWER8E_v2.1" },
     { "POWER8", "POWER8_v2.0" },
+    { "POWER8NVL", "POWER8NVL_v1.0" },
     { "970", "970_v2.2" },
     { "970fx", "970fx_v3.1" },
     { "970mp", "970mp_v1.1" },
diff --git a/target-ppc/cpu-models.h b/target-ppc/cpu-models.h
index 2992427..f21a44c 100644
--- a/target-ppc/cpu-models.h
+++ b/target-ppc/cpu-models.h
@@ -560,6 +560,8 @@ enum {
     CPU_POWERPC_POWER8E_v21        = 0x004B0201,
     CPU_POWERPC_POWER8_BASE        = 0x004D0000,
     CPU_POWERPC_POWER8_v20         = 0x004D0200,
+    CPU_POWERPC_POWER8NVL_BASE     = 0x004C0000,
+    CPU_POWERPC_POWER8NVL_v10      = 0x004C0100,
     CPU_POWERPC_970_v22            = 0x00390202,
     CPU_POWERPC_970FX_v10          = 0x00391100,
     CPU_POWERPC_970FX_v20          = 0x003C0200,
diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c
index 06b008de..fb206af 100644
--- a/target-ppc/translate_init.c
+++ b/target-ppc/translate_init.c
@@ -8256,6 +8256,9 @@ static void init_proc_POWER8(CPUPPCState *env)
 
 static bool ppc_pvr_match_power8(PowerPCCPUClass *pcc, uint32_t pvr)
 {
+    if ((pvr & CPU_POWERPC_POWER_SERVER_MASK) == CPU_POWERPC_POWER8NVL_BASE) {
+        return true;
+    }
     if ((pvr & CPU_POWERPC_POWER_SERVER_MASK) == CPU_POWERPC_POWER8E_BASE) {
         return true;
     }
-- 
2.5.0

  parent reply	other threads:[~2016-03-16  5:06 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-16  5:06 [Qemu-devel] [PULL 00/16] ppc-for-2.6 queue 20160316 David Gibson
2016-03-16  5:06 ` [Qemu-devel] [PULL 01/16] ppc: Define the PSPB register on POWER8 David Gibson
2016-03-16  5:06 ` [Qemu-devel] [PULL 02/16] ppc: Fix migration of the TAR SPR David Gibson
2016-03-16  5:06 ` [Qemu-devel] [PULL 03/16] ppc: Add a few more P8 PMU SPRs David Gibson
2016-03-16  5:06 ` David Gibson [this message]
2016-03-16  5:06 ` [Qemu-devel] [PULL 05/16] spapr_pci: fix multifunction hotplug David Gibson
2016-03-16  5:06 ` [Qemu-devel] [PULL 06/16] target-ppc: Split out SREGS get/put functions David Gibson
2016-03-16  5:06 ` [Qemu-devel] [PULL 07/16] target-ppc: Add helpers for updating a CPU's SDR1 and external HPT David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 08/16] target-ppc: Eliminate kvmppc_kern_htab global David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 09/16] spapr_rng: fix race with main loop David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 10/16] vfio: Start improving VFIO/EEH interface David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 11/16] spapr_pci: Switch to vfio_eeh_as_op() interface David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 12/16] spapr_pci: Eliminate class callbacks David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 13/16] spapr_pci: Allow EEH on spapr-pci-host-bridge David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 14/16] spapr_pci: (Mostly) remove spapr-pci-vfio-host-bridge David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 15/16] spapr_pci: Remove finish_realize hook David Gibson
2016-03-16  5:07 ` [Qemu-devel] [PULL 16/16] vfio: Eliminate vfio_container_ioctl() David Gibson
2016-03-16 10:37 ` [Qemu-devel] [PULL 00/16] ppc-for-2.6 queue 20160316 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=1458104828-32541-5-git-send-email-david@gibson.dropbear.id.au \
    --to=david@gibson.dropbear.id.au \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=alex.williamson@redhat.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --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).