2009-10-07 14:56:22 +00:00
|
|
|
#ifndef HW_IDE_PCI_H
|
|
|
|
#define HW_IDE_PCI_H
|
|
|
|
|
|
|
|
#include <hw/ide/internal.h>
|
|
|
|
|
|
|
|
typedef struct PCIIDEState {
|
|
|
|
PCIDevice dev;
|
|
|
|
IDEBus bus[2];
|
|
|
|
BMDMAState bmdma[2];
|
2009-10-07 14:56:26 +00:00
|
|
|
uint32_t secondary; /* used only for cmd646 */
|
2009-10-07 14:56:22 +00:00
|
|
|
} PCIIDEState;
|
|
|
|
|
2009-10-07 14:56:23 +00:00
|
|
|
void bmdma_cmd_writeb(void *opaque, uint32_t addr, uint32_t val);
|
2010-11-21 16:29:52 +00:00
|
|
|
extern const IORangeOps bmdma_addr_ioport_ops;
|
2009-10-07 14:56:23 +00:00
|
|
|
void pci_ide_create_devs(PCIDevice *dev, DriveInfo **hd_table);
|
2009-10-07 18:55:32 +00:00
|
|
|
|
|
|
|
extern const VMStateDescription vmstate_ide_pci;
|
2009-10-07 14:56:22 +00:00
|
|
|
#endif
|