提交 b1d03c1d 编写于 作者: D Dmitry Safonov 提交者: Joerg Roedel

iommu/vt-d: Clean/document fault status flags

So one could decode them without opening the specification.
Signed-off-by: NDmitry Safonov <dima@arista.com>
Signed-off-by: NJoerg Roedel <jroedel@suse.de>
上级 d15a339e
...@@ -209,12 +209,12 @@ ...@@ -209,12 +209,12 @@
#define DMA_FECTL_IM (((u32)1) << 31) #define DMA_FECTL_IM (((u32)1) << 31)
/* FSTS_REG */ /* FSTS_REG */
#define DMA_FSTS_PPF ((u32)2) #define DMA_FSTS_PFO (1 << 0) /* Primary Fault Overflow */
#define DMA_FSTS_PFO ((u32)1) #define DMA_FSTS_PPF (1 << 1) /* Primary Pending Fault */
#define DMA_FSTS_IQE (1 << 4) #define DMA_FSTS_IQE (1 << 4) /* Invalidation Queue Error */
#define DMA_FSTS_ICE (1 << 5) #define DMA_FSTS_ICE (1 << 5) /* Invalidation Completion Error */
#define DMA_FSTS_ITE (1 << 6) #define DMA_FSTS_ITE (1 << 6) /* Invalidation Time-out Error */
#define DMA_FSTS_PRO (1 << 7) #define DMA_FSTS_PRO (1 << 7) /* Page Request Overflow */
#define dma_fsts_fault_record_index(s) (((s) >> 8) & 0xff) #define dma_fsts_fault_record_index(s) (((s) >> 8) & 0xff)
/* FRCD_REG, 32 bits access */ /* FRCD_REG, 32 bits access */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册