diff options
author | Max Filippov | 2019-03-12 07:11:42 +0100 |
---|---|---|
committer | Max Filippov | 2019-05-11 01:53:44 +0200 |
commit | 944bb3320aeea6285d495b645f4700c3a20668e8 (patch) | |
tree | 4a60e88eb671883a44315b31718e8751491c7fc9 /target/xtensa/overlay_tool.h | |
parent | target/xtensa: make internal MMU functions static (diff) | |
download | qemu-944bb3320aeea6285d495b645f4700c3a20668e8.tar.gz qemu-944bb3320aeea6285d495b645f4700c3a20668e8.tar.xz qemu-944bb3320aeea6285d495b645f4700c3a20668e8.zip |
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/overlay_tool.h')
-rw-r--r-- | target/xtensa/overlay_tool.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/xtensa/overlay_tool.h b/target/xtensa/overlay_tool.h index ea07576bc9..8b380ce5e3 100644 --- a/target/xtensa/overlay_tool.h +++ b/target/xtensa/overlay_tool.h @@ -200,6 +200,9 @@ #define XTHAL_INTTYPE_TBD2 INTTYPE_WRITE_ERR #define XTHAL_INTTYPE_WRITE_ERROR INTTYPE_WRITE_ERR #define XTHAL_INTTYPE_PROFILING INTTYPE_PROFILING +#define XTHAL_INTTYPE_IDMA_DONE INTTYPE_IDMA_DONE +#define XTHAL_INTTYPE_IDMA_ERR INTTYPE_IDMA_ERR +#define XTHAL_INTTYPE_GS_ERR INTTYPE_GS_ERR #define INTERRUPT(i) { \ |