* [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs
@ 2023-05-15 16:01 Nicholas Piggin
2023-05-16 8:43 ` Harsh Prateek Bora
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Nicholas Piggin @ 2023-05-15 16:01 UTC (permalink / raw)
To: qemu-ppc; +Cc: Nicholas Piggin, qemu-devel, Harsh Prateek Bora
QEMU's PVR value for POWER9 DD2.0 has chip type 1, which is the SMT4
"small core" type that OpenPOWER processors use. QEMU's PVR for all
other POWER9/10 have chip type 0, which "enterprise" systems use.
The difference does not really matter to QEMU (because it does not care
about SMT mode in the target), but for consistency all PVRs should use
the same chip type. We'll go with the SMT4 OpenPOWER type.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
This is a replacement for
https://lists.gnu.org/archive/html/qemu-ppc/2022-03/msg00227.html
But the chip type is changed to 1 instead of 0, because that's the
more familiar SM4 / small core CPU.
Thanks,
Nick
target/ppc/cpu-models.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/target/ppc/cpu-models.h b/target/ppc/cpu-models.h
index 1326493a9a..a77e036b3a 100644
--- a/target/ppc/cpu-models.h
+++ b/target/ppc/cpu-models.h
@@ -348,11 +348,11 @@ enum {
CPU_POWERPC_POWER8NVL_BASE = 0x004C0000,
CPU_POWERPC_POWER8NVL_v10 = 0x004C0100,
CPU_POWERPC_POWER9_BASE = 0x004E0000,
- CPU_POWERPC_POWER9_DD1 = 0x004E0100,
+ CPU_POWERPC_POWER9_DD1 = 0x004E1100,
CPU_POWERPC_POWER9_DD20 = 0x004E1200,
CPU_POWERPC_POWER10_BASE = 0x00800000,
- CPU_POWERPC_POWER10_DD1 = 0x00800100,
- CPU_POWERPC_POWER10_DD20 = 0x00800200,
+ CPU_POWERPC_POWER10_DD1 = 0x00801100,
+ CPU_POWERPC_POWER10_DD20 = 0x00801200,
CPU_POWERPC_970_v22 = 0x00390202,
CPU_POWERPC_970FX_v10 = 0x00391100,
CPU_POWERPC_970FX_v20 = 0x003C0200,
--
2.40.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs
2023-05-15 16:01 [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs Nicholas Piggin
@ 2023-05-16 8:43 ` Harsh Prateek Bora
2023-05-16 9:42 ` Nicholas Piggin
2023-05-16 8:44 ` Cédric Le Goater
2023-05-27 18:03 ` Daniel Henrique Barboza
2 siblings, 1 reply; 6+ messages in thread
From: Harsh Prateek Bora @ 2023-05-16 8:43 UTC (permalink / raw)
To: Nicholas Piggin, qemu-ppc; +Cc: qemu-devel, Harsh Prateek Bora
<correcting my email id in CC>
On 5/15/23 21:31, Nicholas Piggin wrote:
> QEMU's PVR value for POWER9 DD2.0 has chip type 1, which is the SMT4
> "small core" type that OpenPOWER processors use. QEMU's PVR for all
> other POWER9/10 have chip type 0, which "enterprise" systems use.
>
> The difference does not really matter to QEMU (because it does not care
> about SMT mode in the target), but for consistency all PVRs should use
> the same chip type. We'll go with the SMT4 OpenPOWER type.
>
> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
> ---
> This is a replacement for
>
> https://lists.gnu.org/archive/html/qemu-ppc/2022-03/msg00227.html
>
> But the chip type is changed to 1 instead of 0, because that's the
> more familiar SM4 / small core CPU.
>
> Thanks,
> Nick
>
> target/ppc/cpu-models.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/target/ppc/cpu-models.h b/target/ppc/cpu-models.h
> index 1326493a9a..a77e036b3a 100644
> --- a/target/ppc/cpu-models.h
> +++ b/target/ppc/cpu-models.h
> @@ -348,11 +348,11 @@ enum {
> CPU_POWERPC_POWER8NVL_BASE = 0x004C0000,
> CPU_POWERPC_POWER8NVL_v10 = 0x004C0100,
> CPU_POWERPC_POWER9_BASE = 0x004E0000,
> - CPU_POWERPC_POWER9_DD1 = 0x004E0100,
> + CPU_POWERPC_POWER9_DD1 = 0x004E1100,
Could you please point me to the doc location you are referring here?
The P9 UM document that I have access to mentions this bit (0/1) for
12/24 cores. Not sure if this change is intended here.
regards,
Harsh
> CPU_POWERPC_POWER9_DD20 = 0x004E1200,
> CPU_POWERPC_POWER10_BASE = 0x00800000,
> - CPU_POWERPC_POWER10_DD1 = 0x00800100,
> - CPU_POWERPC_POWER10_DD20 = 0x00800200,
> + CPU_POWERPC_POWER10_DD1 = 0x00801100,
> + CPU_POWERPC_POWER10_DD20 = 0x00801200,
> CPU_POWERPC_970_v22 = 0x00390202,
> CPU_POWERPC_970FX_v10 = 0x00391100,
> CPU_POWERPC_970FX_v20 = 0x003C0200,
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs
2023-05-15 16:01 [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs Nicholas Piggin
2023-05-16 8:43 ` Harsh Prateek Bora
@ 2023-05-16 8:44 ` Cédric Le Goater
2023-05-16 10:05 ` Nicholas Piggin
2023-05-27 18:03 ` Daniel Henrique Barboza
2 siblings, 1 reply; 6+ messages in thread
From: Cédric Le Goater @ 2023-05-16 8:44 UTC (permalink / raw)
To: Nicholas Piggin, qemu-ppc; +Cc: qemu-devel, Harsh Prateek Bora
On 5/15/23 18:01, Nicholas Piggin wrote:
> QEMU's PVR value for POWER9 DD2.0 has chip type 1, which is the SMT4
> "small core" type that OpenPOWER processors use. QEMU's PVR for all
> other POWER9/10 have chip type 0, which "enterprise" systems use.
>
> The difference does not really matter to QEMU (because it does not care
> about SMT mode in the target), but for consistency all PVRs should use
> the same chip type. We'll go with the SMT4 OpenPOWER type.
>
> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
> ---
> This is a replacement for
>
> https://lists.gnu.org/archive/html/qemu-ppc/2022-03/msg00227.html
>
> But the chip type is changed to 1 instead of 0, because that's the
> more familiar SM4 / small core CPU.
Will small cores POWER10 CPU be available ?
Thanks,
C.
>
> Thanks,
> Nick
>
> target/ppc/cpu-models.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/target/ppc/cpu-models.h b/target/ppc/cpu-models.h
> index 1326493a9a..a77e036b3a 100644
> --- a/target/ppc/cpu-models.h
> +++ b/target/ppc/cpu-models.h
> @@ -348,11 +348,11 @@ enum {
> CPU_POWERPC_POWER8NVL_BASE = 0x004C0000,
> CPU_POWERPC_POWER8NVL_v10 = 0x004C0100,
> CPU_POWERPC_POWER9_BASE = 0x004E0000,
> - CPU_POWERPC_POWER9_DD1 = 0x004E0100,
> + CPU_POWERPC_POWER9_DD1 = 0x004E1100,
> CPU_POWERPC_POWER9_DD20 = 0x004E1200,
> CPU_POWERPC_POWER10_BASE = 0x00800000,
> - CPU_POWERPC_POWER10_DD1 = 0x00800100,
> - CPU_POWERPC_POWER10_DD20 = 0x00800200,
> + CPU_POWERPC_POWER10_DD1 = 0x00801100,
> + CPU_POWERPC_POWER10_DD20 = 0x00801200,
> CPU_POWERPC_970_v22 = 0x00390202,
> CPU_POWERPC_970FX_v10 = 0x00391100,
> CPU_POWERPC_970FX_v20 = 0x003C0200,
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs
2023-05-16 8:43 ` Harsh Prateek Bora
@ 2023-05-16 9:42 ` Nicholas Piggin
0 siblings, 0 replies; 6+ messages in thread
From: Nicholas Piggin @ 2023-05-16 9:42 UTC (permalink / raw)
To: Harsh Prateek Bora, qemu-ppc; +Cc: qemu-devel
On Tue May 16, 2023 at 6:43 PM AEST, Harsh Prateek Bora wrote:
> <correcting my email id in CC>
>
> On 5/15/23 21:31, Nicholas Piggin wrote:
> > QEMU's PVR value for POWER9 DD2.0 has chip type 1, which is the SMT4
> > "small core" type that OpenPOWER processors use. QEMU's PVR for all
> > other POWER9/10 have chip type 0, which "enterprise" systems use.
> >
> > The difference does not really matter to QEMU (because it does not care
> > about SMT mode in the target), but for consistency all PVRs should use
> > the same chip type. We'll go with the SMT4 OpenPOWER type.
> >
> > Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
> > ---
> > This is a replacement for
> >
> > https://lists.gnu.org/archive/html/qemu-ppc/2022-03/msg00227.html
> >
> > But the chip type is changed to 1 instead of 0, because that's the
> > more familiar SM4 / small core CPU.
> >
> > Thanks,
> > Nick
> >
> > target/ppc/cpu-models.h | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/target/ppc/cpu-models.h b/target/ppc/cpu-models.h
> > index 1326493a9a..a77e036b3a 100644
> > --- a/target/ppc/cpu-models.h
> > +++ b/target/ppc/cpu-models.h
> > @@ -348,11 +348,11 @@ enum {
> > CPU_POWERPC_POWER8NVL_BASE = 0x004C0000,
> > CPU_POWERPC_POWER8NVL_v10 = 0x004C0100,
> > CPU_POWERPC_POWER9_BASE = 0x004E0000,
> > - CPU_POWERPC_POWER9_DD1 = 0x004E0100,
> > + CPU_POWERPC_POWER9_DD1 = 0x004E1100,
>
> Could you please point me to the doc location you are referring here?
> The P9 UM document that I have access to mentions this bit (0/1) for
> 12/24 cores. Not sure if this change is intended here.
Yes that's the one, OpenPOWER POWER9 User Manual lists it in PVR.
POWER10 is the same.
Thanks,
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs
2023-05-16 8:44 ` Cédric Le Goater
@ 2023-05-16 10:05 ` Nicholas Piggin
0 siblings, 0 replies; 6+ messages in thread
From: Nicholas Piggin @ 2023-05-16 10:05 UTC (permalink / raw)
To: Cédric Le Goater, qemu-ppc; +Cc: qemu-devel, Harsh Prateek Bora
On Tue May 16, 2023 at 6:44 PM AEST, Cédric Le Goater wrote:
> On 5/15/23 18:01, Nicholas Piggin wrote:
> > QEMU's PVR value for POWER9 DD2.0 has chip type 1, which is the SMT4
> > "small core" type that OpenPOWER processors use. QEMU's PVR for all
> > other POWER9/10 have chip type 0, which "enterprise" systems use.
> >
> > The difference does not really matter to QEMU (because it does not care
> > about SMT mode in the target), but for consistency all PVRs should use
> > the same chip type. We'll go with the SMT4 OpenPOWER type.
> >
> > Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
> > ---
> > This is a replacement for
> >
> > https://lists.gnu.org/archive/html/qemu-ppc/2022-03/msg00227.html
> >
> > But the chip type is changed to 1 instead of 0, because that's the
> > more familiar SM4 / small core CPU.
>
> Will small cores POWER10 CPU be available ?
I don't know the answer to that, but even big core POWER10s need
non-standard OPAL firmware to use bare metal...
Small core is nicer for Linux to use and matches POWER9 so I did
that. In practice I don't think it will actually matter anywhere
because we don't do SMT.
Thanks,
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs
2023-05-15 16:01 [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs Nicholas Piggin
2023-05-16 8:43 ` Harsh Prateek Bora
2023-05-16 8:44 ` Cédric Le Goater
@ 2023-05-27 18:03 ` Daniel Henrique Barboza
2 siblings, 0 replies; 6+ messages in thread
From: Daniel Henrique Barboza @ 2023-05-27 18:03 UTC (permalink / raw)
To: Nicholas Piggin, qemu-ppc; +Cc: qemu-devel, Harsh Prateek Bora
On 5/15/23 13:01, Nicholas Piggin wrote:
> QEMU's PVR value for POWER9 DD2.0 has chip type 1, which is the SMT4
> "small core" type that OpenPOWER processors use. QEMU's PVR for all
> other POWER9/10 have chip type 0, which "enterprise" systems use.
>
> The difference does not really matter to QEMU (because it does not care
> about SMT mode in the target), but for consistency all PVRs should use
> the same chip type. We'll go with the SMT4 OpenPOWER type.
>
> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
> ---
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
And queued. Thanks,
Daniel
> This is a replacement for
>
> https://lists.gnu.org/archive/html/qemu-ppc/2022-03/msg00227.html
>
> But the chip type is changed to 1 instead of 0, because that's the
> more familiar SM4 / small core CPU.
>
> Thanks,
> Nick
>
> target/ppc/cpu-models.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/target/ppc/cpu-models.h b/target/ppc/cpu-models.h
> index 1326493a9a..a77e036b3a 100644
> --- a/target/ppc/cpu-models.h
> +++ b/target/ppc/cpu-models.h
> @@ -348,11 +348,11 @@ enum {
> CPU_POWERPC_POWER8NVL_BASE = 0x004C0000,
> CPU_POWERPC_POWER8NVL_v10 = 0x004C0100,
> CPU_POWERPC_POWER9_BASE = 0x004E0000,
> - CPU_POWERPC_POWER9_DD1 = 0x004E0100,
> + CPU_POWERPC_POWER9_DD1 = 0x004E1100,
> CPU_POWERPC_POWER9_DD20 = 0x004E1200,
> CPU_POWERPC_POWER10_BASE = 0x00800000,
> - CPU_POWERPC_POWER10_DD1 = 0x00800100,
> - CPU_POWERPC_POWER10_DD20 = 0x00800200,
> + CPU_POWERPC_POWER10_DD1 = 0x00801100,
> + CPU_POWERPC_POWER10_DD20 = 0x00801200,
> CPU_POWERPC_970_v22 = 0x00390202,
> CPU_POWERPC_970FX_v10 = 0x00391100,
> CPU_POWERPC_970FX_v20 = 0x003C0200,
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-05-27 18:04 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-15 16:01 [PATCH] target/ppc: Use SMT4 small core chip type in POWER9/10 PVRs Nicholas Piggin
2023-05-16 8:43 ` Harsh Prateek Bora
2023-05-16 9:42 ` Nicholas Piggin
2023-05-16 8:44 ` Cédric Le Goater
2023-05-16 10:05 ` Nicholas Piggin
2023-05-27 18:03 ` Daniel Henrique Barboza
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).