From: Michael Srba <[email protected]> The board .dtsi just includes the SoC-specific .dtsi, which adds bootph-all markings to upstream dts nodes which are needed in SPL.
Signed-off-by: Michael Srba <[email protected]> Reviewed-by: Simon Glass <[email protected]> --- arch/arm/dts/sdm845-shift-axolotl-u-boot.dtsi | 2 ++ arch/arm/dts/sdm845-u-boot.dtsi | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/arch/arm/dts/sdm845-shift-axolotl-u-boot.dtsi b/arch/arm/dts/sdm845-shift-axolotl-u-boot.dtsi new file mode 100644 index 00000000000..d41210ab23a --- /dev/null +++ b/arch/arm/dts/sdm845-shift-axolotl-u-boot.dtsi @@ -0,0 +1,2 @@ +// SPDX-License-Identifier: GPL-2.0 +#include "sdm845-u-boot.dtsi" diff --git a/arch/arm/dts/sdm845-u-boot.dtsi b/arch/arm/dts/sdm845-u-boot.dtsi new file mode 100644 index 00000000000..b029264555b --- /dev/null +++ b/arch/arm/dts/sdm845-u-boot.dtsi @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0 +&gcc { + bootph-all; +}; + +&usb_1_hsphy { + bootph-all; +}; + +&usb_1_dwc3 { + bootph-all; +}; + +&rpmhcc { + bootph-all; +}; -- 2.53.0

