blob: e099077da295fec5c0c33d52d85cd9aa9820c2d7 [file] [log] [blame]
Edison Ai9b628982020-07-02 18:53:36 +08001/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef __TFM_HAL_DEFS_H__
9#define __TFM_HAL_DEFS_H__
10
11#include <limits.h>
12#include <stdint.h>
13
14enum tfm_hal_status_t {
15 TFM_HAL_ERROR_MEM_FAULT = CHAR_MIN,
16 TFM_HAL_ERROR_MAX_VALUE,
17 TFM_HAL_ERROR_BAD_STATE,
18 TFM_HAL_ERROR_NOT_SUPPORTED,
19 TFM_HAL_ERROR_INVALID_INPUT,
20 TFM_HAL_ERROR_NOT_INIT,
21 TFM_HAL_ERROR_GENERIC,
22 TFM_HAL_SUCCESS = 0
23};
24
25#endif /* __TFM_HAL_DEFS_H__ */