diff options
author | Jagan Teki <jagan@edgeble.ai> | 2023-01-27 12:51:33 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-30 15:33:36 -0500 |
commit | 1a45a031d75d8c1e4b63ff72ef5222e491f6481f (patch) | |
tree | fe2607af12a5e812915452e11fe60ec5089171fc /arch | |
parent | f147aa80f52989c7455022ca1ab959e8545feccc (diff) |
Revert "rockchip: Only call binman when TPL available"
This reverts commit f5315dd6290a588434e4f79bfd2886bb7df9210d.
[why]
TPL is not mandatory for not all Rockchip SoCs, some SoCs like
RK356x, and RK3588 still use mainline u-boot without TPL as
their ddr init programs are accessed via binaries provided by
Rockchip instead of ddr source code.
Marking TPL build makes it not able to build u-boot.itb on
RK356x targets so revert this so that it can build an SPL build
that would support all across Rockchip platforms.
Suggested-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Signed-off-by: Jagan Teki <jagan@edgeble.ai>
Tested-by: Anand Moon <linux.amoon@gmail.com> # CM3
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/rockchip-u-boot.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/rockchip-u-boot.dtsi b/arch/arm/dts/rockchip-u-boot.dtsi index f147dc2066a..6c662a72d4f 100644 --- a/arch/arm/dts/rockchip-u-boot.dtsi +++ b/arch/arm/dts/rockchip-u-boot.dtsi @@ -11,7 +11,7 @@ }; }; -#ifdef CONFIG_TPL +#ifdef CONFIG_SPL &binman { simple-bin { filename = "u-boot-rockchip.bin"; |