summary refs log tree commit diff stats
path: root/hw/ide/pci.h
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-10-07 16:56:22 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-12 09:42:30 -0500
commit65c0f1351fd64a2f7cf137af687b1b1cac98db7e (patch)
tree3839ad0b25fc9d5b2ddb2880701ed1939aa8d88b /hw/ide/pci.h
parent18c0fb307c40b6a47f6de7a7b4fb9a5e3cc0d8e3 (diff)
downloadfocaccia-qemu-65c0f1351fd64a2f7cf137af687b1b1cac98db7e.tar.gz
focaccia-qemu-65c0f1351fd64a2f7cf137af687b1b1cac98db7e.zip
ide: create ide/pci.h for common ide pci definitions
Patchworks-ID: 35299
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/ide/pci.h')
-rw-r--r--hw/ide/pci.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/hw/ide/pci.h b/hw/ide/pci.h
new file mode 100644
index 0000000000..7f3f297ffa
--- /dev/null
+++ b/hw/ide/pci.h
@@ -0,0 +1,18 @@
+#ifndef HW_IDE_PCI_H
+#define HW_IDE_PCI_H
+
+#include <hw/ide/internal.h>
+
+#define IDE_TYPE_PIIX3   0
+#define IDE_TYPE_CMD646  1
+#define IDE_TYPE_PIIX4   2
+
+typedef struct PCIIDEState {
+    PCIDevice dev;
+    IDEBus bus[2];
+    BMDMAState bmdma[2];
+    int type; /* see IDE_TYPE_xxx */
+    uint32_t secondary;
+} PCIIDEState;
+
+#endif