plat_warm_rst.h 433 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright 2021 NXP
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#ifndef PLAT_WARM_RST_H
#define PLAT_WARM_RST_H

#ifndef NXP_COINED_BB
#define ERLY_WRM_RST_FLG_FLSH_UPDT	0
#endif

#ifndef __ASSEMBLER__

#if defined(IMAGE_BL2)
uint32_t is_warm_boot(void);
#endif

#if defined(IMAGE_BL31)
int prep_n_execute_warm_reset(void);
int _soc_sys_warm_reset(void);
#endif

#endif	/* __ASSEMBLER__ */

#endif	/* PLAT_WARM_RST_H */