aboutsummaryrefslogtreecommitdiff
path: root/secure_fw/spm/include/tfm_platform_core_api.h
blob: de532549e821c37d1ac8c2d722d3133d838eb4f9 (plain)
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
/*
 * Copyright (c) 2018-2020, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#ifndef __TFM_PLATFORM_CORE_API_H__
#define __TFM_PLATFORM_CORE_API_H__

#include <stdbool.h>

/**
 * \brief Should be called in case of access violation.
 *
 * There might be platform specific means, by which it is possible on a
 * subsystem to detect access violation. For example a platform can have a
 * Peripheral Protection Controller, to detect unauthorised accesses to
 * peripheral registers. Setting up the protection, and handling the violation
 * is implemented in platform specific code. However TF-M should be able to
 * decide how to proceed if a violation happens. So to notify TF-M, platform
 * code have to call this function, if a violation happens.
 */
void tfm_access_violation_handler(void);

#endif /* __TFM_PLATFORM_CORE_API_H__ */