blob: 9661f4dc88d3ced93bd35a250262275f63f7ca0b [file] [log] [blame]
Jagdish Gediya3a2f59e2018-09-03 21:35:11 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2018 NXP
4 */
5
6#include <config.h>
7
8/ {
9 binman {
10 filename = "u-boot-with-dtb.bin";
11 skip-at-start = <CONFIG_SYS_TEXT_BASE>;
12 sort-by-offset;
13 pad-byte = <0xff>;
14 size = <CONFIG_SYS_MONITOR_LEN>;
15
16 u-boot-with-ucode-ptr {
17 offset = <CONFIG_SYS_TEXT_BASE>;
18 optional-ucode;
19 };
20
21 u-boot-dtb-with-ucode {
22#ifdef CONFIG_MPC85xx
23 align = <256>;
24#endif
25 };
26#ifdef CONFIG_MPC85XX_HAVE_RESET_VECTOR
Hou Zhiqiang10336062019-08-20 09:35:34 +000027#ifndef CONFIG_RESET_VECTOR_ADDRESS
28#define CONFIG_RESET_VECTOR_ADDRESS 0xfffffffc
29#endif
Jagdish Gediya3a2f59e2018-09-03 21:35:11 +053030 powerpc-mpc85xx-bootpg-resetvec {
31 offset = <(CONFIG_RESET_VECTOR_ADDRESS - 0xffc)>;
32 };
33#endif
34 };
35};