Skip to content

Commit b8ab62f

Browse files
MrVanShawn Guo
authored andcommitted
ARM: dts: imx7ulp: fix reg of cpu node
According to arm cpus binding doc, " On 32-bit ARM v7 or later systems this property is required and matches the CPU MPIDR[23:0] register bits. Bits [23:0] in the reg cell must be set to bits [23:0] in MPIDR. All other bits in the reg cell must be set to 0. " In i.MX7ULP, the MPIDR[23:0] is 0xf00, not 0, so fix it. Otherwise there will be warning: "DT missing boot CPU MPIDR[23:0], fall back to default cpu_logical_map" Fixes: 20434dc ("ARM: dts: imx: add common imx7ulp dtsi support") Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
1 parent 24a572b commit b8ab62f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/arm/boot/dts/imx7ulp.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
#address-cells = <1>;
3838
#size-cells = <0>;
3939

40-
cpu0: cpu@0 {
40+
cpu0: cpu@f00 {
4141
compatible = "arm,cortex-a7";
4242
device_type = "cpu";
43-
reg = <0>;
43+
reg = <0xf00>;
4444
};
4545
};
4646

0 commit comments

Comments
 (0)