2018-09-03 16:05:11 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright 2018 NXP
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2022-08-03 11:24:42 +00:00
|
|
|
#if defined(CONFIG_MPC85XX_HAVE_RESET_VECTOR) && defined(CONFIG_OF_SEPARATE)
|
|
|
|
|
2018-09-03 16:05:11 +00:00
|
|
|
/ {
|
|
|
|
binman {
|
2023-01-24 17:06:50 +00:00
|
|
|
filename = "u-boot-dtb.bin";
|
2022-10-21 00:22:39 +00:00
|
|
|
skip-at-start = <CONFIG_TEXT_BASE>;
|
2018-09-03 16:05:11 +00:00
|
|
|
sort-by-offset;
|
|
|
|
pad-byte = <0xff>;
|
|
|
|
size = <CONFIG_SYS_MONITOR_LEN>;
|
|
|
|
|
|
|
|
u-boot-with-ucode-ptr {
|
2022-10-21 00:22:39 +00:00
|
|
|
offset = <CONFIG_TEXT_BASE>;
|
2018-09-03 16:05:11 +00:00
|
|
|
optional-ucode;
|
|
|
|
};
|
|
|
|
|
|
|
|
u-boot-dtb-with-ucode {
|
2022-05-02 16:36:38 +00:00
|
|
|
align = <4>;
|
2018-09-03 16:05:11 +00:00
|
|
|
};
|
2022-12-04 15:13:40 +00:00
|
|
|
#ifndef CFG_RESET_VECTOR_ADDRESS
|
|
|
|
#define CFG_RESET_VECTOR_ADDRESS 0xfffffffc
|
2019-08-20 09:35:34 +00:00
|
|
|
#endif
|
2018-09-03 16:05:11 +00:00
|
|
|
powerpc-mpc85xx-bootpg-resetvec {
|
2022-12-04 15:13:40 +00:00
|
|
|
offset = <(CFG_RESET_VECTOR_ADDRESS - 0xffc)>;
|
2018-09-03 16:05:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-08-03 11:24:42 +00:00
|
|
|
|
|
|
|
#endif
|