x86: Update device tree for Chromium OS verified boot
authorSimon Glass <sjg@chromium.org>
Thu, 2 May 2019 16:52:20 +0000 (10:52 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Wed, 8 May 2019 05:02:17 +0000 (13:02 +0800)
The standard image generated by U-Boot on x86 is u-boot.rom. Add a
separate image called image.bin for verified boot. This supports
verification in TPL of which SPL/U-Boot to start, then jumping to the
correct one, with SPL setting up the SDRAM and U-Boot proper providing
the user interface if needed.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/x86/dts/u-boot.dtsi

index 9cf733806a5204cc42edf0edb8d5ab633e92e68e..6b176339aedf4c949f51366051c154cffdf1d4fb 100644 (file)
@@ -6,9 +6,23 @@
 
 #include <config.h>
 
-#ifdef CONFIG_ROM_SIZE
+#ifdef CONFIG_CHROMEOS
 / {
        binman {
+               multiple-images;
+               rom: rom {
+               };
+       };
+};
+#else
+/ {
+       rom: binman {
+       };
+};
+#endif
+
+#ifdef CONFIG_ROM_SIZE
+&rom {
                filename = "u-boot.rom";
                end-at-4gb;
                sort-by-offset;
                        offset = <CONFIG_SYS_X86_START16>;
                };
 #endif
-       };
 };
 #endif