mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 23:41:23 +01:00

Add SBI_ERR_DENIED_LOCKED and set it as the SBI_LAST_ERR which was wrongly set to SBI_ERR_BAD_RANGE. Signed-off-by: Clément Léger <cleger@rivosinc.com> Reviewed-by: Anup Patel <anup@brainfault.org>
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
*/
|
|
|
|
#ifndef __SBI_ERROR_H__
|
|
#define __SBI_ERROR_H__
|
|
|
|
#include <sbi/sbi_ecall_interface.h>
|
|
|
|
/* clang-format off */
|
|
|
|
#define SBI_OK 0
|
|
#define SBI_EFAIL SBI_ERR_FAILED
|
|
#define SBI_ENOTSUPP SBI_ERR_NOT_SUPPORTED
|
|
#define SBI_EINVAL SBI_ERR_INVALID_PARAM
|
|
#define SBI_EDENIED SBI_ERR_DENIED
|
|
#define SBI_EINVALID_ADDR SBI_ERR_INVALID_ADDRESS
|
|
#define SBI_EALREADY SBI_ERR_ALREADY_AVAILABLE
|
|
#define SBI_EALREADY_STARTED SBI_ERR_ALREADY_STARTED
|
|
#define SBI_EALREADY_STOPPED SBI_ERR_ALREADY_STOPPED
|
|
#define SBI_ENO_SHMEM SBI_ERR_NO_SHMEM
|
|
#define SBI_EINVALID_STATE SBI_ERR_INVALID_STATE
|
|
#define SBI_EBAD_RANGE SBI_ERR_BAD_RANGE
|
|
#define SBI_ETIMEOUT SBI_ERR_TIMEOUT
|
|
#define SBI_ETIMEDOUT SBI_ERR_TIMEOUT
|
|
#define SBI_EIO SBI_ERR_IO
|
|
#define SBI_EDENIED_LOCKED SBI_ERR_DENIED_LOCKED
|
|
|
|
#define SBI_ENODEV -1000
|
|
#define SBI_ENOSYS -1001
|
|
#define SBI_EILL -1002
|
|
#define SBI_ENOSPC -1003
|
|
#define SBI_ENOMEM -1004
|
|
#define SBI_EUNKNOWN -1005
|
|
#define SBI_ENOENT -1006
|
|
|
|
/* clang-format on */
|
|
|
|
#endif
|