aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2017-06-14 17:34:11 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-06-19 14:49:29 +1000
commitcbfdc385ec93be8741f2af13cee03fac2dc1d236 (patch)
tree35b8ac50a367da63a71749c669e74a61a89f7a12 /external
parent805373b35234f6c0acec86c9c354e37a56cb105e (diff)
downloadskiboot-cbfdc385ec93be8741f2af13cee03fac2dc1d236.zip
skiboot-cbfdc385ec93be8741f2af13cee03fac2dc1d236.tar.gz
skiboot-cbfdc385ec93be8741f2af13cee03fac2dc1d236.tar.bz2
mambo: Update P9 PVR to reflect Scale out 24 core chips
The P9 PVR bits 48:51 don't indicate a revision but instead different configurations. From BookIV we have: Bits: Configuration 0: Scale out 12 cores 1: Scale out 24 cores 2: Scale up 12 cores 3: Scale up 24 cores Skiboot will mostly the use "Scale out 24 core" configuration (ie. SMT4 not SMT8) so reflect this in mambo. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'external')
-rw-r--r--external/mambo/skiboot.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/external/mambo/skiboot.tcl b/external/mambo/skiboot.tcl
index cc5f25e..46d8569 100644
--- a/external/mambo/skiboot.tcl
+++ b/external/mambo/skiboot.tcl
@@ -82,8 +82,8 @@ if { $default_config == "PEGASUS" } {
myconf config processor/initial/PVR 0x4b0201
}
if { $default_config == "P9" } {
- # make sure we look like a POWER9 DD2
- myconf config processor/initial/PVR 0x4e0200
+ # PVR configured for POWER9 DD2.0 Scale out 24 Core (ie SMT4)
+ myconf config processor/initial/PVR 0x4e1200
myconf config processor/initial/SIM_CTRL1 0xc228000400000000
}
if { [info exists env(SKIBOOT_SIMCONF)] } {