blob: 9f18e221c355d74342c43ef05e30e32a2dc60786 [file] [log] [blame]
Manish V Badarkhe7ef036f2021-06-20 20:35:25 +01001/*
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
12void fwu_init(void);
13bool fwu_is_trial_run_state(void);
Sughosh Ganua79559f2021-12-01 11:50:22 +053014const struct fwu_metadata *fwu_get_metadata(void);
Manish V Badarkhe7ef036f2021-06-20 20:35:25 +010015
16#endif /* FWU_H */