xref: /rk3399_ARM-atf/include/drivers/fwu/fwu.h (revision 9335c28a019ee2d9ab7a0f9276b91415f3c9f1bc)
1 /*
2  * Copyright (c) 2021, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef FWU_H
8 #define FWU_H
9 
10 #include <stdbool.h>
11 
12 void fwu_init(void);
13 bool fwu_is_trial_run_state(void);
14 const struct fwu_metadata *fwu_get_metadata(void);
15 
16 #endif /* FWU_H */
17