diff options
author | Suraj Jitindar Singh <sjitindarsingh@gmail.com> | 2016-08-31 16:01:25 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-09-02 15:33:54 +1000 |
commit | 763b065762663a2bfd133f7daca27d829248a0bb (patch) | |
tree | ea00ed8c4ec877df2703bfb3b2e43cba994eaae1 /external/mambo | |
parent | 0736df56df7c457f4cdfe3e4ad85180877d00569 (diff) | |
download | skiboot-763b065762663a2bfd133f7daca27d829248a0bb.zip skiboot-763b065762663a2bfd133f7daca27d829248a0bb.tar.gz skiboot-763b065762663a2bfd133f7daca27d829248a0bb.tar.bz2 |
external/mambo: Update skiboot.tcl to add page-sizes nodes to device tree
Currently skiboot.tcl doesn't add device tree nodes
ibm,processor-page-sizes or ibm,segment-page-sizes. This results in failure
when trying to boot a P8 guest using kvm in mambo.
Update skiboot.tcl in order to have it add these device tree nodes.
The values for these properties were taken from those hard-coded into
skiboot in hdata/cpu-common.c:78; the format was preserved for
readability and to make it obvious where these values came from.
With this change it is possible to boot a P8 kvm guest in mambo.
Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
Acked-By: Michael Neuling <mikey@neuling.org>
Reviewed-by: Balbir Singh <bsingharora@gmail.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'external/mambo')
-rw-r--r-- | external/mambo/skiboot.tcl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/external/mambo/skiboot.tcl b/external/mambo/skiboot.tcl index 526f9b2..b8e68c9 100644 --- a/external/mambo/skiboot.tcl +++ b/external/mambo/skiboot.tcl @@ -191,6 +191,20 @@ for { set c 0 } { $c < $mconf(cpus) } { incr c } { mysim of addprop $cpu_node array64 "ibm,processor-segment-sizes" reg set reg {} + lappend reg 0x0000000c 0x00000010 0x00000018 0x00000022 + mysim of addprop $cpu_node array "ibm,processor-page-sizes" reg + + set reg {} + lappend reg 0x0c 0x000 3 0x0c 0x0000 ;# 4K seg 4k pages + lappend reg 0x10 0x0007 ;# 4K seg 64k pages + lappend reg 0x18 0x0038 ;# 4K seg 16M pages + lappend reg 0x10 0x110 2 0x10 0x0001 ;# 64K seg 64k pages + lappend reg 0x18 0x0008 ;# 64K seg 16M pages + lappend reg 0x18 0x100 1 0x18 0x0000 ;# 16M seg 16M pages + lappend reg 0x22 0x120 1 0x22 0x0003 ;# 16G seg 16G pages + mysim of addprop $cpu_node array "ibm,segment-page-sizes" reg + + set reg {} if { $default_config == "P9" } { # POWER9 PAPR defines upto bytes 62-63 # header + bytes 0-5 |