mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
ea6314a797
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>
18 lines
216 B
Text
18 lines
216 B
Text
// 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;
|
|
};
|