/* SPDX-License-Identifier: GPL-2.0 */12#ifndef __Q6DSP_ERR_NO_H__3#define __Q6DSP_ERR_NO_H__4#include <linux/kernel.h>56/* Success. The operation completed with no errors. */7#define ADSP_EOK 0x000000008/* General failure. */9#define ADSP_EFAILED 0x0000000110/* Bad operation parameter. */11#define ADSP_EBADPARAM 0x0000000212/* Unsupported routine or operation. */13#define ADSP_EUNSUPPORTED 0x0000000314/* Unsupported version. */15#define ADSP_EVERSION 0x0000000416/* Unexpected problem encountered. */17#define ADSP_EUNEXPECTED 0x0000000518/* Unhandled problem occurred. */19#define ADSP_EPANIC 0x0000000620/* Unable to allocate resource. */21#define ADSP_ENORESOURCE 0x0000000722/* Invalid handle. */23#define ADSP_EHANDLE 0x0000000824/* Operation is already processed. */25#define ADSP_EALREADY 0x0000000926/* Operation is not ready to be processed. */27#define ADSP_ENOTREADY 0x0000000A28/* Operation is pending completion. */29#define ADSP_EPENDING 0x0000000B30/* Operation could not be accepted or processed. */31#define ADSP_EBUSY 0x0000000C32/* Operation aborted due to an error. */33#define ADSP_EABORTED 0x0000000D34/* Operation preempted by a higher priority. */35#define ADSP_EPREEMPTED 0x0000000E36/* Operation requests intervention to complete. */37#define ADSP_ECONTINUE 0x0000000F38/* Operation requests immediate intervention to complete. */39#define ADSP_EIMMEDIATE 0x0000001040/* Operation is not implemented. */41#define ADSP_ENOTIMPL 0x0000001142/* Operation needs more data or resources. */43#define ADSP_ENEEDMORE 0x0000001244/* Operation does not have memory. */45#define ADSP_ENOMEMORY 0x0000001446/* Item does not exist. */47#define ADSP_ENOTEXIST 0x0000001548/* Max count for adsp error code sent to HLOS*/4950#endif /*__Q6DSP_ERR_NO_H__ */515253