xref: /rk3399_ARM-atf/plat/brcm/board/common/sbl_util.h (revision 050a99a62f1df4de589be077b5b5fffe3c93afc7)
1 /*
2  * Copyright (c) 2015 - 2020, Broadcom
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef SBL_UTIL_H
8 #define SBL_UTIL_H
9 
10 #include <stdint.h>
11 
12 #include <sotp.h>
13 
14 #define SBL_DISABLED 0
15 #define SBL_ENABLED 1
16 
17 int sbl_status(void);
18 
19 #endif /* #ifdef SBL_UTIL_H */
20