diff options
author | Michael Neuling <mikey@neuling.org> | 2016-07-26 11:52:31 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-07-28 13:45:36 +1000 |
commit | a7f9956cff9336a636317f6118691b75bdeba95b (patch) | |
tree | cfa540fffaf37d644f65ccc5ec43851d49306709 /external | |
parent | 72c551ff9d163a65087ca0865e736456f291995a (diff) | |
download | skiboot-a7f9956cff9336a636317f6118691b75bdeba95b.zip skiboot-a7f9956cff9336a636317f6118691b75bdeba95b.tar.gz skiboot-a7f9956cff9336a636317f6118691b75bdeba95b.tar.bz2 |
mambo: Update Radix Tree Size as per ISA 3.0
Fix Radix Tree Size (RTS) encoding as per ISA 3.0. This is controlled via a
SIM_CTRL1 bit in mambo.
In Linux we recently changed to this encoding, so we no longer boot.
The associated Linux commit is:
commit b23d9c5b9c83c05e013aa52460f12a8365062cf4
Author: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Date: Fri Jun 17 11:40:36 2016 +0530
powerpc/mm/radix: Update Radix tree size as per ISA 3.0
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.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/mambo/skiboot.tcl b/external/mambo/skiboot.tcl index ea60761..526f9b2 100644 --- a/external/mambo/skiboot.tcl +++ b/external/mambo/skiboot.tcl @@ -84,7 +84,7 @@ if { $default_config == "PEGASUS" } { } if { $default_config == "P9" } { # make sure we look like a POWER9 - myconf config processor/initial/SIM_CTRL1 0xc228000000000000 + myconf config processor/initial/SIM_CTRL1 0xc228000400000000 } if { [info exists env(SKIBOOT_SIMCONF)] } { source $env(SKIBOOT_SIMCONF) |