diff options
author | Reza Arbab <arbab@linux.ibm.com> | 2019-02-13 15:42:35 -0600 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2019-02-18 22:12:37 -0600 |
commit | eecd9083f1bdc4902e3622761d2da65641d3dd44 (patch) | |
tree | 41938fa005e6e4c0244048d1cc0a00ac26ce3753 | |
parent | 85c4c823ab11cda2a47255add27ee3a24d62f74b (diff) | |
download | talos-skiboot-eecd9083f1bdc4902e3622761d2da65641d3dd44.tar.gz talos-skiboot-eecd9083f1bdc4902e3622761d2da65641d3dd44.zip |
devicetree: Add nx node to power9-phb4.dts
A (non-qemu) p9 without an nx node will assert in p9_darn_init():
dt_for_each_compatible(dt_root, nx, "ibm,power9-nx")
break;
if (!nx) {
if (!dt_node_is_compatible(dt_root, "qemu,powernv"))
assert(nx);
return;
}
Since NX is this essential, add it to the device tree.
Signed-off-by: Reza Arbab <arbab@linux.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r-- | doc/device-tree/examples/power9-phb4.dts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/device-tree/examples/power9-phb4.dts b/doc/device-tree/examples/power9-phb4.dts index daf71fca..a6acd533 100644 --- a/doc/device-tree/examples/power9-phb4.dts +++ b/doc/device-tree/examples/power9-phb4.dts @@ -166,6 +166,11 @@ #address-cells = <0>; #interrupt-map-mask = < 0xff >; }; + + nx@2010000 { + reg = <0x2010000 0x4000>; + compatible = "ibm,power9-nx"; + }; }; lpcm-opb@6030000000000 { |