qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] intel-iommu: fix Read DMAR IQA REG DW
@ 2024-07-04  3:53 YeeLi
  2024-07-04  6:54 ` Yee Li
  2024-07-20 18:29 ` Michael S. Tsirkin
  0 siblings, 2 replies; 8+ messages in thread
From: YeeLi @ 2024-07-04  3:53 UTC (permalink / raw)
  To: mst, jasowang; +Cc: pbonzini, richard.henderson, eduardo, qemu-devel, yeeli

From: yeeli <seven.yi.lee@gmail.com>

When dmar_readq or devmem2 read the DW of IQA always 0UL because
"& VTD_IQA_QS". So, try to fix it.

case:
after vtd_mem_write
IQA val: 0x100206801

after vtd_mem_read
IQA val: 0x100206001

Signed-off-by: yeeli <seven.yi.lee@gmail.com>
---
 hw/i386/intel_iommu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hw/i386/intel_iommu.c b/hw/i386/intel_iommu.c
index 37c21a0aec..e230a45940 100644
--- a/hw/i386/intel_iommu.c
+++ b/hw/i386/intel_iommu.c
@@ -2938,7 +2938,8 @@ static uint64_t vtd_mem_read(void *opaque, hwaddr addr, unsigned size)
 
     /* Invalidation Queue Address Register, 64-bit */
     case DMAR_IQA_REG:
-        val = s->iq | (vtd_get_quad(s, DMAR_IQA_REG) & VTD_IQA_QS);
+        val = s->iq | (vtd_get_quad(s, DMAR_IQA_REG) & VTD_IQA_QS
+                | VTD_IQA_DW_MASK);
         if (size == 4) {
             val = val & ((1ULL << 32) - 1);
         }
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-07-24  6:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-04  3:53 [PATCH] intel-iommu: fix Read DMAR IQA REG DW YeeLi
2024-07-04  6:54 ` Yee Li
2024-07-20 18:28   ` Michael S. Tsirkin
2024-07-20 18:29 ` Michael S. Tsirkin
2024-07-23  2:40   ` Yee Li
2024-07-23  3:02     ` Yee Li
2024-07-23  8:05     ` Yi Liu
2024-07-24  6:34       ` Yee Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).