1 /* 2 * QEMU AHCI Emulation (PCI devices) 3 * 4 * SPDX-License-Identifier: GPL-2.0-or-later 5 */ 6 #ifndef HW_IDE_AHCI_PCI_H 7 #define HW_IDE_AHCI_PCI_H 8 9 #include "qom/object.h" 10 #include "hw/ide/ahci.h" 11 #include "hw/pci/pci_device.h" 12 13 #define TYPE_ICH9_AHCI "ich9-ahci" 14 OBJECT_DECLARE_SIMPLE_TYPE(AHCIPCIState, ICH9_AHCI) 15 16 struct AHCIPCIState { 17 PCIDevice parent_obj; 18 19 AHCIState ahci; 20 }; 21 22 #endif 23