Message ID | 1587304717-13322-6-git-send-email-amittomer25@gmail.com |
---|---|
State | Superseded |
Headers | show |
Series | Actions S700 SoC support | expand |
On Sun, Apr 19, 2020 at 07:28:29PM +0530, Amit Singh Tomar wrote: > 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 at linaro.org> > Reviewed-by: Andre Przywara <andre.przywara at arm.com> > Signed-off-by: Amit Singh Tomar <amittomer25 at gmail.com> Applied to u-boot/master, thanks!
diff --git a/arch/arm/dts/s900-u-boot.dtsi b/arch/arm/dts/s900-u-boot.dtsi new file mode 100644 index 0000000..a95f2cc --- /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; +};