1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2016 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6
7#include <u-boot.dtsi>
8
9#ifdef CONFIG_ROM_SIZE
10/ {
11	binman {
12#ifdef CONFIG_SPL
13		u-boot-spl-with-ucode-ptr {
14			optional-ucode;
15		};
16#else
17		u-boot-with-ucode-ptr {
18			optional-ucode;
19		};
20#endif
21	};
22};
23#endif
24