mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 17:41:08 +00:00
8a8d300005
Those two nodes are needed to configure pinmux before relocation and to configure clock before relocation, since CPG/MSSR needs access to RST node. This is not noticable on Gen3, but on Gen2 this causes problems in SPL if they are not available early. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33 lines
373 B
Text
33 lines
373 B
Text
/*
|
|
* Device Tree Source extras for U-Boot on RCar Gen3
|
|
*
|
|
* Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
/ {
|
|
soc {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
|
|
&cpg {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&extal_clk {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&pfc {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&prr {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&rst {
|
|
u-boot,dm-pre-reloc;
|
|
};
|