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