aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorFrederic Barrat <fbarrat@linux.ibm.com>2020-01-22 16:03:35 +0100
committerOliver O'Halloran <oohall@gmail.com>2020-01-29 13:51:35 +1100
commitbbb4777f682dab0f1411a493861af9e340e81229 (patch)
tree0a12906250c7baed218a7a2467b0f8e35c3323e4 /hw
parent57d43efd6bbb052b467df3a19ca84feccdd0649b (diff)
downloadskiboot-bbb4777f682dab0f1411a493861af9e340e81229.zip
skiboot-bbb4777f682dab0f1411a493861af9e340e81229.tar.gz
skiboot-bbb4777f682dab0f1411a493861af9e340e81229.tar.bz2
npu2, npu3: Remove ibm, phb-index property from the NPU dt node
The 'ibm,phb-index' property of the NPU node is now useless, as we can have multiple PHBs associated to the same NPU on P9. Let's remove it to avoid confusion. Reviewed-by: Reza Arbab <arbab@linux.ibm.com> Reviewed-by: Andrew Donnellan <ajd@linux.ibm.com> Signed-off-by: Frederic Barrat <fbarrat@linux.ibm.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/npu3.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/npu3.c b/hw/npu3.c
index 4d396b0..65f505a 100644
--- a/hw/npu3.c
+++ b/hw/npu3.c
@@ -101,7 +101,6 @@ static void npu3_dt_create_npu(struct dt_node *xscom, uint32_t npu_index)
dt_add_property_cells(npu, "reg", npu_base[npu_index], 0x2c);
dt_add_property_string(npu, "compatible", "ibm,power9-npu3");
dt_add_property_cells(npu, "ibm,npu-index", npu_index);
- dt_add_property_cells(npu, "ibm,phb-index", 7 + npu_index);
for (uint32_t i = 0; i < NPU3_LINKS_PER_NPU; i++)
npu3_dt_create_link(npu, npu_index, i);