mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
dd72cbd9e9
Add u-boot,dm-pre-reloc for sysmgr and clkmgr nodes to use it in SPL. In preparation to get base address from DT. Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
27 lines
285 B
Text
27 lines
285 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* U-Boot additions
|
|
*
|
|
* Copyright (c) 2019 Simon Goldschmidt
|
|
*/
|
|
/{
|
|
soc {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
|
|
&clkmgr {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&rst {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&sdr {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&sysmgr {
|
|
u-boot,dm-pre-reloc;
|
|
};
|