mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-26 00:41:19 +02:00
Implemented FWU metadata load and verification APIs. Also, exported below APIs to the platform: 1. fwu_init - Load FWU metadata in a structure. Also, set the addresses of updated components in I/O policy 2. fwu_is_trial_run_state - To detect trial run or regular run state Change-Id: I67eeabb52d9275ac83be635306997b7c353727cd Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
16 lines
236 B
C
16 lines
236 B
C
/*
|
|
* Copyright (c) 2021, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef FWU_H
|
|
#define FWU_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
void fwu_init(void);
|
|
bool fwu_is_trial_run_state(void);
|
|
|
|
#endif /* FWU_H */
|