aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2019-06-26 10:06:20 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-06-27 11:35:22 +1000
commit4025c84b4582d7194ffa93cbcd27bf84140d3337 (patch)
tree8df8e50c29307b15fe563dd7a1a2663a11b129d7
parent46a5902e7b6304654933c4e413ec42ee98250392 (diff)
downloadskiboot-4025c84b4582d7194ffa93cbcd27bf84140d3337.zip
skiboot-4025c84b4582d7194ffa93cbcd27bf84140d3337.tar.gz
skiboot-4025c84b4582d7194ffa93cbcd27bf84140d3337.tar.bz2
external/mambo: Bump default POWER9 to Nimbus DD2.3
Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r--external/mambo/skiboot.tcl4
-rw-r--r--hw/xscom.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/external/mambo/skiboot.tcl b/external/mambo/skiboot.tcl
index 292c8c4..60a0f30 100644
--- a/external/mambo/skiboot.tcl
+++ b/external/mambo/skiboot.tcl
@@ -111,8 +111,8 @@ if { $default_config == "PEGASUS" } {
}
if { $default_config == "P9" } {
- # PVR configured for POWER9 DD2.0 Scale out 24 Core (ie SMT4)
- myconf config processor/initial/PVR 0x4e1200
+ # PVR configured for POWER9 DD2.3 Scale out 24 Core (ie SMT4)
+ myconf config processor/initial/PVR 0x4e1203
myconf config processor/initial/SIM_CTRL1 0xc228100400000000
if { $mconf(numa) } {
diff --git a/hw/xscom.c b/hw/xscom.c
index bfe51c2..dd73185 100644
--- a/hw/xscom.c
+++ b/hw/xscom.c
@@ -729,7 +729,7 @@ int64_t xscom_read_cfam_chipid(uint32_t partid, uint32_t *chip_id)
*/
if (chip_quirk(QUIRK_NO_F000F)) {
if (proc_gen == proc_gen_p9)
- val = 0x200D104980000000UL; /* P9 Nimbus DD2.0 */
+ val = 0x203D104980000000UL; /* P9 Nimbus DD2.3 */
else
val = 0x221EF04980000000UL; /* P8 Murano DD2.1 */
} else