fix(n1sdp): add numa node id for pcie controllers

If not mentioned explicitly, numa-node-id for pcie_ctlr
is assigned as unknown. With this patch pcie_ctlr and
ccix_pcie_ctlr are assigned numa-node-id=0 and
pcie_secondary_ctlr is assigned numa-node-id=1.

Signed-off-by: sahil <sahil@arm.com>
Change-Id: I533abdd6ea162df7b15ee04cbfc48ba7a544b91a
This commit is contained in:
sahil 2022-06-18 14:33:45 +05:30
parent e6ffafbeea
commit 2974d2f2d0

View file

@ -86,6 +86,7 @@
<0 0 0 4 &gic 0 0 0 652 IRQ_TYPE_LEVEL_HIGH>;
msi-map = <0 &its_secondary_pcie 0 0x10000>;
iommu-map = <0 &smmu_secondary_pcie 0 0x10000>;
numa-node-id = <1>;
status = "okay";
};
@ -111,3 +112,11 @@
reg = <0x400 0x300a0000 0x0 0x20000>;
};
};
&pcie_ctlr {
numa-node-id = <0>;
};
&ccix_pcie_ctlr {
numa-node-id = <0>;
};