From: Amit Singh Tomar Date: Sun, 19 Apr 2020 13:58:29 +0000 (+0530) Subject: arm: dts: actions: s900: add u-boot specific dtsi file X-Git-Tag: v2020.07-rc1~14^2~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5bc4c0bccc360692b5d140b1da5235d7ea56325f;p=oweals%2Fu-boot.git arm: dts: actions: s900: add u-boot specific dtsi file Devices like uart and clk are needed to be enabled before relocation. This patch adds u-boot.dtsi file that mark these device as dm-pre-reloc. Reviewed-by: Manivannan Sadhasivam Reviewed-by: Andre Przywara Signed-off-by: Amit Singh Tomar --- diff --git a/arch/arm/dts/s900-u-boot.dtsi b/arch/arm/dts/s900-u-boot.dtsi new file mode 100644 index 0000000000..a95f2cc628 --- /dev/null +++ b/arch/arm/dts/s900-u-boot.dtsi @@ -0,0 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + */ + +/{ + soc { + u-boot,dm-pre-reloc; + }; +}; + +&uart5 { + u-boot,dm-pre-reloc; +}; + +&cmu { + u-boot,dm-pre-reloc; +};