Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) #ifndef __Q6DSP_ERR_NO_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) #define __Q6DSP_ERR_NO_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) #include <linux/kernel.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) /* Success. The operation completed with no errors. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define ADSP_EOK          0x00000000
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) /* General failure. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #define ADSP_EFAILED      0x00000001
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) /* Bad operation parameter. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #define ADSP_EBADPARAM    0x00000002
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) /* Unsupported routine or operation. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #define ADSP_EUNSUPPORTED 0x00000003
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) /* Unsupported version. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #define ADSP_EVERSION     0x00000004
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) /* Unexpected problem encountered. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) #define ADSP_EUNEXPECTED  0x00000005
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) /* Unhandled problem occurred. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #define ADSP_EPANIC       0x00000006
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) /* Unable to allocate resource. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #define ADSP_ENORESOURCE  0x00000007
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) /* Invalid handle. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) #define ADSP_EHANDLE      0x00000008
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) /* Operation is already processed. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) #define ADSP_EALREADY     0x00000009
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) /* Operation is not ready to be processed. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) #define ADSP_ENOTREADY    0x0000000A
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) /* Operation is pending completion. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) #define ADSP_EPENDING     0x0000000B
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) /* Operation could not be accepted or processed. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) #define ADSP_EBUSY        0x0000000C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) /* Operation aborted due to an error. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) #define ADSP_EABORTED     0x0000000D
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) /* Operation preempted by a higher priority. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) #define ADSP_EPREEMPTED   0x0000000E
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) /* Operation requests intervention to complete. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) #define ADSP_ECONTINUE    0x0000000F
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) /* Operation requests immediate intervention to complete. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) #define ADSP_EIMMEDIATE   0x00000010
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41) /* Operation is not implemented. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) #define ADSP_ENOTIMPL     0x00000011
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) /* Operation needs more data or resources. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) #define ADSP_ENEEDMORE    0x00000012
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45) /* Operation does not have memory. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46) #define ADSP_ENOMEMORY    0x00000014
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 47) /* Item does not exist. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 48) #define ADSP_ENOTEXIST    0x00000015
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 49) /* Max count for adsp error code sent to HLOS*/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 50) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 51) #endif /*__Q6DSP_ERR_NO_H__ */