[PATCH 0/2] dts: imx8mp-rsb3720: modify configrations to load fip into memory

From: "Ying-Chun Liu (PaulLiu)" paul.liu@linaro.org
The changes of commit 6a21c695213b ("arm: dts: imx8mp: add of-list support to common imx8mp-u-boot.dtsi") breaks the loading of the fip. This commit fixes the break by modify the configuration properly.
Ying-Chun Liu (PaulLiu) (2): dts: imx8mp: assign binman_configuration node name to config-SEQ dts: imx8mp-rsb3720: modify configrations to load fip into memory
arch/arm/dts/imx8mp-rsb3720-a1-u-boot.dtsi | 10 ++++------ arch/arm/dts/imx8mp-u-boot.dtsi | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-)

From: "Ying-Chun Liu (PaulLiu)" paul.liu@linaro.org
assign a node name for config-SEQ so that the board dts can modify the configuration more easily.
Signed-off-by: Ying-Chun Liu (PaulLiu) paul.liu@linaro.org Cc: Stefano Babic sbabic@denx.de Cc: Fabio Estevam festevam@gmail.com Cc: NXP i.MX U-Boot Team uboot-imx@nxp.com --- arch/arm/dts/imx8mp-u-boot.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/dts/imx8mp-u-boot.dtsi b/arch/arm/dts/imx8mp-u-boot.dtsi index 20edd90cfa..2f9fb1aba4 100644 --- a/arch/arm/dts/imx8mp-u-boot.dtsi +++ b/arch/arm/dts/imx8mp-u-boot.dtsi @@ -144,7 +144,7 @@ configurations { default = "@config-DEFAULT-SEQ";
- @config-SEQ { + binman_configuration: @config-SEQ { description = "NAME"; fdt = "fdt-SEQ"; firmware = "uboot";

From: "Ying-Chun Liu (PaulLiu)" paul.liu@linaro.org
The changes of commit 6a21c695213b ("arm: dts: imx8mp: add of-list support to common imx8mp-u-boot.dtsi") breaks the loading of the fip. This commit fixes the break by modify the configuration properly.
Signed-off-by: Ying-Chun Liu (PaulLiu) paul.liu@linaro.org Cc: Stefano Babic sbabic@denx.de Cc: Fabio Estevam festevam@gmail.com Cc: NXP i.MX U-Boot Team uboot-imx@nxp.com --- arch/arm/dts/imx8mp-rsb3720-a1-u-boot.dtsi | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/arch/arm/dts/imx8mp-rsb3720-a1-u-boot.dtsi b/arch/arm/dts/imx8mp-rsb3720-a1-u-boot.dtsi index 2848b24f65..9b650ef77e 100644 --- a/arch/arm/dts/imx8mp-rsb3720-a1-u-boot.dtsi +++ b/arch/arm/dts/imx8mp-rsb3720-a1-u-boot.dtsi @@ -150,12 +150,10 @@ }; }; }; - - configurations { - conf { - loadables = "atf", "fip"; - }; - }; }; }; }; + +&binman_configuration { + loadables = "atf", "fip"; +};
participants (1)
-
Ying-Chun Liu