mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-09 11:48:53 +00:00
a4ed4c8a51
According to the TRMs of K3 platform of devices, the ROM boot image format specifies a "Core Options Field" that provides the capability to set the boot core in lockstep when set to 0 or to split mode when set to 2. Add support for providing the same from the binman DTS. Also modify existing test case for ensuring future coverage. Signed-off-by: Neha Malcom Francis <n-francis@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
18 lines
258 B
Text
18 lines
258 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
ti-secure-rom {
|
|
content = <&unsecure_binary>;
|
|
core-opts = <2>;
|
|
};
|
|
unsecure_binary: blob-ext {
|
|
filename = "ti_unsecure.bin";
|
|
};
|
|
};
|
|
};
|