mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00

The U-Boot build system can automatically paste -u-boot.dtsi at the end of matching .dts during build. Stop emulating this behavior and rename the -u-boot.dts files to -u-boot.dtsi, drop "#include...dts" from those new u-boot.dtsi files, and update board configuration accordingly. The rename, '#include...dts` scrubbing and configuration update has been done using the following script: ``` $ find . -name r[78]\*-u-boot.dts | sort -u | while read line ; do \ git mv ${line%-u-boot.dts}-u-boot.dts ${line%-u-boot.dts}-u-boot.dtsi ; \ done $ sed -i '/^#include.*dts"/ d' `find . -name r[78]\*-u-boot.dtsi` $ sed -i 's@-u-boot@@g' `git grep -li renesas configs` ``` The Salvator-X and ULCB board files have been updated manually. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Acked-by: Adam Ford <aford173@gmail.com>
59 lines
875 B
Text
59 lines
875 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Device Tree Source extras for U-Boot for the Salvator-X board
|
|
*
|
|
* Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
|
|
*/
|
|
|
|
#include "r8a77960-u-boot.dtsi"
|
|
|
|
/ {
|
|
sysinfo {
|
|
compatible = "renesas,rcar-sysinfo";
|
|
i2c-eeprom = <&sysinfo_eeprom>;
|
|
bootph-all;
|
|
};
|
|
};
|
|
|
|
&i2c_dvfs {
|
|
bootph-all;
|
|
|
|
sysinfo_eeprom: eeprom@50 {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
&rpc {
|
|
reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0x04000000>;
|
|
status = "disabled";
|
|
};
|
|
|
|
&sdhi0 {
|
|
sd-uhs-sdr12;
|
|
sd-uhs-sdr25;
|
|
sd-uhs-sdr104;
|
|
max-frequency = <208000000>;
|
|
};
|
|
|
|
&sdhi2 {
|
|
mmc-ddr-1_8v;
|
|
mmc-hs200-1_8v;
|
|
mmc-hs400-1_8v;
|
|
max-frequency = <200000000>;
|
|
};
|
|
|
|
&sdhi3 {
|
|
sd-uhs-sdr12;
|
|
sd-uhs-sdr25;
|
|
sd-uhs-sdr104;
|
|
max-frequency = <208000000>;
|
|
};
|
|
|
|
&vcc_sdhi0 {
|
|
u-boot,off-on-delay-us = <20000>;
|
|
};
|
|
|
|
&vcc_sdhi3 {
|
|
u-boot,off-on-delay-us = <20000>;
|
|
};
|