2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-11-26 03:16:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Google, Inc
|
|
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <u-boot.dtsi>
|
|
|
|
|
|
|
|
#ifdef CONFIG_ROM_SIZE
|
2020-09-06 16:35:31 +00:00
|
|
|
&rom {
|
2017-01-18 11:32:58 +00:00
|
|
|
#ifdef CONFIG_SPL
|
2020-09-06 16:35:31 +00:00
|
|
|
u-boot-spl-with-ucode-ptr {
|
|
|
|
optional-ucode;
|
|
|
|
};
|
2017-01-18 11:32:58 +00:00
|
|
|
#else
|
2020-09-06 16:35:31 +00:00
|
|
|
u-boot-with-ucode-ptr {
|
|
|
|
optional-ucode;
|
2016-11-26 03:16:02 +00:00
|
|
|
};
|
2020-09-06 16:35:31 +00:00
|
|
|
#endif
|
2016-11-26 03:16:02 +00:00
|
|
|
};
|
|
|
|
#endif
|