diff options
author | Amit Singh Tomar <amittomer25@gmail.com> | 2020-04-19 19:28:32 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-24 16:40:09 -0400 |
commit | ea6314a797935fe3ca60b111035dcd25aaf85b71 (patch) | |
tree | 65633ade83b5658b682b015e21d842bb7c5c53a5 /arch/arm/dts | |
parent | 1050eaa0821e16d622f4a91295a751c4b37e9032 (diff) |
arm: dts: actions: s700: 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 <manivannan.sadhasivam@linaro.org>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
Diffstat (limited to 'arch/arm/dts')
-rw-r--r-- | arch/arm/dts/s700-u-boot.dtsi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/dts/s700-u-boot.dtsi b/arch/arm/dts/s700-u-boot.dtsi new file mode 100644 index 0000000000..a527cccc75 --- /dev/null +++ b/arch/arm/dts/s700-u-boot.dtsi @@ -0,0 +1,18 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2020 Amit Singh Tomar <amittomer25@gmail.com> + */ + +/{ + soc { + u-boot,dm-pre-reloc; + }; +}; + +&uart3 { + u-boot,dm-pre-reloc; +}; + +&cmu { + u-boot,dm-pre-reloc; +}; |