2009-08-20 15:22:19 +02:00
|
|
|
#ifndef HW_IDE_H
|
|
|
|
#define HW_IDE_H
|
|
|
|
|
2010-06-24 19:59:29 +02:00
|
|
|
#include "isa.h"
|
|
|
|
#include "pci.h"
|
2009-08-20 15:22:19 +02:00
|
|
|
|
2011-01-28 11:21:40 +01:00
|
|
|
#define MAX_IDE_DEVS 2
|
|
|
|
|
2009-08-20 15:22:19 +02:00
|
|
|
/* ide-isa.c */
|
2010-06-24 19:59:29 +02:00
|
|
|
ISADevice *isa_ide_init(int iobase, int iobase2, int isairq,
|
|
|
|
DriveInfo *hd0, DriveInfo *hd1);
|
2009-08-20 15:22:19 +02:00
|
|
|
|
2009-08-20 15:22:20 +02:00
|
|
|
/* ide-pci.c */
|
2009-08-28 15:47:03 +02:00
|
|
|
void pci_cmd646_ide_init(PCIBus *bus, DriveInfo **hd_table,
|
2009-08-20 15:22:20 +02:00
|
|
|
int secondary_ide_enabled);
|
2010-06-24 19:59:29 +02:00
|
|
|
PCIDevice *pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn);
|
|
|
|
PCIDevice *pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn);
|
2010-06-29 04:49:50 +02:00
|
|
|
void vt82c686b_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn);
|
2009-08-20 15:22:20 +02:00
|
|
|
|
2009-08-20 15:22:21 +02:00
|
|
|
/* ide-macio.c */
|
2009-08-28 15:47:03 +02:00
|
|
|
int pmac_ide_init (DriveInfo **hd_table, qemu_irq irq,
|
2009-08-20 15:22:21 +02:00
|
|
|
void *dbdma, int channel, qemu_irq dma_irq);
|
|
|
|
|
2009-08-20 15:22:22 +02:00
|
|
|
/* ide-mmio.c */
|
2009-10-01 23:12:16 +02:00
|
|
|
void mmio_ide_init (target_phys_addr_t membase, target_phys_addr_t membase2,
|
2009-08-20 15:22:22 +02:00
|
|
|
qemu_irq irq, int shift,
|
2009-08-28 15:47:03 +02:00
|
|
|
DriveInfo *hd0, DriveInfo *hd1);
|
2009-08-20 15:22:22 +02:00
|
|
|
|
2010-06-24 19:58:20 +02:00
|
|
|
void ide_get_bs(BlockDriverState *bs[], BusState *qbus);
|
|
|
|
|
2009-08-20 15:22:19 +02:00
|
|
|
#endif /* HW_IDE_H */
|