diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2019-03-11 23:11:42 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2019-05-10 16:53:44 -0700 |
commit | 944bb3320aeea6285d495b645f4700c3a20668e8 (patch) | |
tree | 4a60e88eb671883a44315b31718e8751491c7fc9 /target/xtensa/cpu.h | |
parent | 5f7f36d07e0e3178987d6d7711e36f532380b38e (diff) | |
download | qemu-944bb3320aeea6285d495b645f4700c3a20668e8.zip qemu-944bb3320aeea6285d495b645f4700c3a20668e8.tar.gz qemu-944bb3320aeea6285d495b645f4700c3a20668e8.tar.bz2 |
target/xtensa: define IDMA and gather/scatter IRQ types
IDMA and scatter/gather features introduced new IRQ types that
overlay_tool.h need to initialize Xtensa configuration.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'target/xtensa/cpu.h')
-rw-r--r-- | target/xtensa/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/xtensa/cpu.h b/target/xtensa/cpu.h index 502d416..d4258fc 100644 --- a/target/xtensa/cpu.h +++ b/target/xtensa/cpu.h @@ -298,6 +298,9 @@ typedef enum { INTTYPE_DEBUG, INTTYPE_WRITE_ERR, INTTYPE_PROFILING, + INTTYPE_IDMA_DONE, + INTTYPE_IDMA_ERR, + INTTYPE_GS_ERR, INTTYPE_MAX } interrupt_type; |