mirror of https://github.com/ARMmbed/mbed-os.git
57 lines
2.2 KiB
C
57 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2019 ARM Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the License); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/* psa/error.h
|
|
Standard error codes for the SPM and RoT Services
|
|
As defined in PSA Firmware Framework v1.0
|
|
*/
|
|
|
|
#ifndef __PSA_ERROR__
|
|
#define __PSA_ERROR__
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef int32_t psa_status_t;
|
|
|
|
#define PSA_SUCCESS ((psa_status_t)0)
|
|
|
|
#define PSA_ERROR_PROGRAMMER_ERROR ((psa_status_t)-129)
|
|
#define PSA_ERROR_CONNECTION_REFUSED ((psa_status_t)-130)
|
|
#define PSA_ERROR_CONNECTION_BUSY ((psa_status_t)-131)
|
|
#define PSA_ERROR_GENERIC_ERROR ((psa_status_t)-132)
|
|
#define PSA_ERROR_NOT_PERMITTED ((psa_status_t)-133)
|
|
#define PSA_ERROR_NOT_SUPPORTED ((psa_status_t)-134)
|
|
#define PSA_ERROR_INVALID_ARGUMENT ((psa_status_t)-135)
|
|
#define PSA_ERROR_INVALID_HANDLE ((psa_status_t)-136)
|
|
#define PSA_ERROR_BAD_STATE ((psa_status_t)-137)
|
|
#define PSA_ERROR_BUFFER_TOO_SMALL ((psa_status_t)-138)
|
|
#define PSA_ERROR_ALREADY_EXISTS ((psa_status_t)-139)
|
|
#define PSA_ERROR_DOES_NOT_EXIST ((psa_status_t)-140)
|
|
#define PSA_ERROR_INSUFFICIENT_MEMORY ((psa_status_t)-141)
|
|
#define PSA_ERROR_INSUFFICIENT_STORAGE ((psa_status_t)-142)
|
|
#define PSA_ERROR_INSUFFICIENT_DATA ((psa_status_t)-143)
|
|
#define PSA_ERROR_SERVICE_FAILURE ((psa_status_t)-144)
|
|
#define PSA_ERROR_COMMUNICATION_FAILURE ((psa_status_t)-145)
|
|
#define PSA_ERROR_STORAGE_FAILURE ((psa_status_t)-146)
|
|
#define PSA_ERROR_HARDWARE_FAILURE ((psa_status_t)-147)
|
|
#define PSA_ERROR_INVALID_SIGNATURE ((psa_status_t)-149)
|
|
#define PSA_ERROR_DATA_CORRUPT ((psa_status_t)-152)
|
|
|
|
#endif // __PSA_ERROR__
|