[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 7/7] msi: Move PCI_MSI_PENDING_32/64 into pci_regs.h
From: |
Jan Kiszka |
Subject: |
[Qemu-devel] [PATCH 7/7] msi: Move PCI_MSI_PENDING_32/64 into pci_regs.h |
Date: |
Wed, 8 Jun 2011 12:26:45 +0200 |
Signed-off-by: Jan Kiszka <address@hidden>
---
hw/msi.c | 4 ----
hw/pci_regs.h | 2 ++
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/hw/msi.c b/hw/msi.c
index 09bcdd1..edd3e5b 100644
--- a/hw/msi.c
+++ b/hw/msi.c
@@ -21,10 +21,6 @@
#include "msi.h"
#include "range.h"
-/* Eventually those constants should go to Linux pci_regs.h */
-#define PCI_MSI_PENDING_32 0x10
-#define PCI_MSI_PENDING_64 0x14
-
/* PCI_MSI_ADDRESS_LO */
#define PCI_MSI_ADDRESS_LO_MASK (~0x3)
diff --git a/hw/pci_regs.h b/hw/pci_regs.h
index c17c22f..002ed2e 100644
--- a/hw/pci_regs.h
+++ b/hw/pci_regs.h
@@ -297,8 +297,10 @@
#define PCI_MSI_ADDRESS_HI 8 /* Upper 32 bits (if
PCI_MSI_FLAGS_64BIT set) */
#define PCI_MSI_DATA_32 8 /* 16 bits of data for 32-bit
devices */
#define PCI_MSI_MASK_32 12 /* Mask bits register for
32-bit devices */
+#define PCI_MSI_PENDING_32 16 /* Pending bits register for 32-bit
devices */
#define PCI_MSI_DATA_64 12 /* 16 bits of data for 64-bit
devices */
#define PCI_MSI_MASK_64 16 /* Mask bits register for
64-bit devices */
+#define PCI_MSI_PENDING_64 20 /* Pending bits register for 64-bit
devices */
/* MSI-X registers */
#define PCI_MSIX_CTRL 2 /* Message control */
--
1.7.1
[Qemu-devel] [PATCH 1/7] msi: Fix copy&paste mistake in msi_uninit, Jan Kiszka, 2011/06/08
[Qemu-devel] [PATCH 4/7] msi: Use msi/msix_present more consistently, Jan Kiszka, 2011/06/08