[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 3/9] target/xtensa: define IDMA and gather/scatter I
From: |
Max Filippov |
Subject: |
[Qemu-devel] [PATCH 3/9] target/xtensa: define IDMA and gather/scatter IRQ types |
Date: |
Tue, 14 May 2019 13:44:41 -0700 |
IDMA and scatter/gather features introduced new IRQ types that
overlay_tool.h need to initialize Xtensa configuration.
Signed-off-by: Max Filippov <address@hidden>
---
target/xtensa/cpu.h | 3 +++
target/xtensa/overlay_tool.h | 3 +++
2 files changed, 6 insertions(+)
diff --git a/target/xtensa/cpu.h b/target/xtensa/cpu.h
index 502d41688365..d4258fcc6199 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;
diff --git a/target/xtensa/overlay_tool.h b/target/xtensa/overlay_tool.h
index ea07576bc921..8b380ce5e329 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) { \
--
2.11.0
- [Qemu-devel] [PATCH 0/9] target/xtensa: implement options for modern cores, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 3/9] target/xtensa: define IDMA and gather/scatter IRQ types,
Max Filippov <=
- [Qemu-devel] [PATCH 8/9] target/xtensa: update list of exception causes, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 7/9] target/xtensa: implement block prefetch option opcodes, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 9/9] target/xtensa: implement exclusive access option, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 6/9] target/xtensa: implement DIWBUI.P opcode, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 4/9] target/xtensa: add parity/ECC option SRs, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 5/9] target/xtensa: implement MPU option, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 2/9] target/xtensa: make internal MMU functions static, Max Filippov, 2019/05/14
- [Qemu-devel] [PATCH 1/9] target/xtensa: get rid of centralized SR properties, Max Filippov, 2019/05/14