18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* Copyright(c) 2013 - 2018 Intel Corporation. */ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#ifndef _IAVF_STATUS_H_ 58c2ecf20Sopenharmony_ci#define _IAVF_STATUS_H_ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci/* Error Codes */ 88c2ecf20Sopenharmony_cienum iavf_status { 98c2ecf20Sopenharmony_ci IAVF_SUCCESS = 0, 108c2ecf20Sopenharmony_ci IAVF_ERR_NVM = -1, 118c2ecf20Sopenharmony_ci IAVF_ERR_NVM_CHECKSUM = -2, 128c2ecf20Sopenharmony_ci IAVF_ERR_PHY = -3, 138c2ecf20Sopenharmony_ci IAVF_ERR_CONFIG = -4, 148c2ecf20Sopenharmony_ci IAVF_ERR_PARAM = -5, 158c2ecf20Sopenharmony_ci IAVF_ERR_MAC_TYPE = -6, 168c2ecf20Sopenharmony_ci IAVF_ERR_UNKNOWN_PHY = -7, 178c2ecf20Sopenharmony_ci IAVF_ERR_LINK_SETUP = -8, 188c2ecf20Sopenharmony_ci IAVF_ERR_ADAPTER_STOPPED = -9, 198c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_MAC_ADDR = -10, 208c2ecf20Sopenharmony_ci IAVF_ERR_DEVICE_NOT_SUPPORTED = -11, 218c2ecf20Sopenharmony_ci IAVF_ERR_MASTER_REQUESTS_PENDING = -12, 228c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_LINK_SETTINGS = -13, 238c2ecf20Sopenharmony_ci IAVF_ERR_AUTONEG_NOT_COMPLETE = -14, 248c2ecf20Sopenharmony_ci IAVF_ERR_RESET_FAILED = -15, 258c2ecf20Sopenharmony_ci IAVF_ERR_SWFW_SYNC = -16, 268c2ecf20Sopenharmony_ci IAVF_ERR_NO_AVAILABLE_VSI = -17, 278c2ecf20Sopenharmony_ci IAVF_ERR_NO_MEMORY = -18, 288c2ecf20Sopenharmony_ci IAVF_ERR_BAD_PTR = -19, 298c2ecf20Sopenharmony_ci IAVF_ERR_RING_FULL = -20, 308c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_PD_ID = -21, 318c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_QP_ID = -22, 328c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_CQ_ID = -23, 338c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_CEQ_ID = -24, 348c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_AEQ_ID = -25, 358c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_SIZE = -26, 368c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_ARP_INDEX = -27, 378c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_FPM_FUNC_ID = -28, 388c2ecf20Sopenharmony_ci IAVF_ERR_QP_INVALID_MSG_SIZE = -29, 398c2ecf20Sopenharmony_ci IAVF_ERR_QP_TOOMANY_WRS_POSTED = -30, 408c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_FRAG_COUNT = -31, 418c2ecf20Sopenharmony_ci IAVF_ERR_QUEUE_EMPTY = -32, 428c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_ALIGNMENT = -33, 438c2ecf20Sopenharmony_ci IAVF_ERR_FLUSHED_QUEUE = -34, 448c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_PUSH_PAGE_INDEX = -35, 458c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_IMM_DATA_SIZE = -36, 468c2ecf20Sopenharmony_ci IAVF_ERR_TIMEOUT = -37, 478c2ecf20Sopenharmony_ci IAVF_ERR_OPCODE_MISMATCH = -38, 488c2ecf20Sopenharmony_ci IAVF_ERR_CQP_COMPL_ERROR = -39, 498c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_VF_ID = -40, 508c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_HMCFN_ID = -41, 518c2ecf20Sopenharmony_ci IAVF_ERR_BACKING_PAGE_ERROR = -42, 528c2ecf20Sopenharmony_ci IAVF_ERR_NO_PBLCHUNKS_AVAILABLE = -43, 538c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_PBLE_INDEX = -44, 548c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_SD_INDEX = -45, 558c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_PAGE_DESC_INDEX = -46, 568c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_SD_TYPE = -47, 578c2ecf20Sopenharmony_ci IAVF_ERR_MEMCPY_FAILED = -48, 588c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_HMC_OBJ_INDEX = -49, 598c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_HMC_OBJ_COUNT = -50, 608c2ecf20Sopenharmony_ci IAVF_ERR_INVALID_SRQ_ARM_LIMIT = -51, 618c2ecf20Sopenharmony_ci IAVF_ERR_SRQ_ENABLED = -52, 628c2ecf20Sopenharmony_ci IAVF_ERR_ADMIN_QUEUE_ERROR = -53, 638c2ecf20Sopenharmony_ci IAVF_ERR_ADMIN_QUEUE_TIMEOUT = -54, 648c2ecf20Sopenharmony_ci IAVF_ERR_BUF_TOO_SHORT = -55, 658c2ecf20Sopenharmony_ci IAVF_ERR_ADMIN_QUEUE_FULL = -56, 668c2ecf20Sopenharmony_ci IAVF_ERR_ADMIN_QUEUE_NO_WORK = -57, 678c2ecf20Sopenharmony_ci IAVF_ERR_BAD_IWARP_CQE = -58, 688c2ecf20Sopenharmony_ci IAVF_ERR_NVM_BLANK_MODE = -59, 698c2ecf20Sopenharmony_ci IAVF_ERR_NOT_IMPLEMENTED = -60, 708c2ecf20Sopenharmony_ci IAVF_ERR_PE_DOORBELL_NOT_ENABLED = -61, 718c2ecf20Sopenharmony_ci IAVF_ERR_DIAG_TEST_FAILED = -62, 728c2ecf20Sopenharmony_ci IAVF_ERR_NOT_READY = -63, 738c2ecf20Sopenharmony_ci IAVF_NOT_SUPPORTED = -64, 748c2ecf20Sopenharmony_ci IAVF_ERR_FIRMWARE_API_VERSION = -65, 758c2ecf20Sopenharmony_ci IAVF_ERR_ADMIN_QUEUE_CRITICAL_ERROR = -66, 768c2ecf20Sopenharmony_ci}; 778c2ecf20Sopenharmony_ci 788c2ecf20Sopenharmony_ci#endif /* _IAVF_STATUS_H_ */ 79