Hi,
I test ram under u-boot, and there is no errors.
=> mtest 0x80000000 0x9fffffff 0x5a5a5a5a 2
Testing 80000000 ... 9fffffff:
Pattern A5A5A5A5 Writing... Reading...Tested 2 iteration(s) with 0 errors.
I also check the device tree, I found I modified nothing about CPU, just the same as nxp provided.
dts in u-boot:
cpus {
#address-cells = <1>;
#size-cells = <0>;
cpu@f00 {
compatible = "arm,cortex-a7";
device_type = "cpu";
reg = <0xf00>;
clocks = <&cluster1_clk>;
};
cpu@f01 {
compatible = "arm,cortex-a7";
device_type = "cpu";
reg = <0xf01>;
clocks = <&cluster1_clk>;
};
};
dts in kernel:
cpus {
#address-cells = <1>;
#size-cells = <0>;
cpu0: cpu@f00 {
compatible = "arm,cortex-a7";
device_type = "cpu";
reg = <0xf00>;
clocks = <&cluster1_clk>;
#cooling-cells = <2>;
};
cpu1: cpu@f01 {
compatible = "arm,cortex-a7";
device_type = "cpu";
reg = <0xf01>;
clocks = <&cluster1_clk>;
};
};