boards: arm: qemu_cortex_a9: specify CPU cores at board level

Move the declaration of the available CPU core to the device
tree of the target board, in accordance with the modifications
of the SoC-level device tree.

Signed-off-by: Immo Birnbaum <Immo.Birnbaum@Weidmueller.com>
This commit is contained in:
Immo Birnbaum 2021-11-16 11:23:16 +01:00 committed by Anas Nashif
commit d81485ecb7

View file

@ -13,6 +13,17 @@
compatible = "xlnx,zynq7000s"; compatible = "xlnx,zynq7000s";
interrupt-parent = <&gic>; interrupt-parent = <&gic>;
cpus {
#address-cells = <1>;
#size-cells = <0>;
cpu@0 {
device_type = "cpu";
compatible = "arm,cortex-a9";
reg = <0>;
};
};
sram0: memory@100000 { sram0: memory@100000 {
compatible = "mmio-sram"; compatible = "mmio-sram";
reg = <0x00100000 DT_SIZE_M(512)>; reg = <0x00100000 DT_SIZE_M(512)>;