mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 20:03:37 +08:00
b884220990
create ide-macio.c and place macio support there. only build ide-macio support for platforms using it. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
23 lines
717 B
C
23 lines
717 B
C
#ifndef HW_IDE_H
|
|
#define HW_IDE_H
|
|
|
|
#include "qdev.h"
|
|
|
|
/* ide-isa.c */
|
|
void isa_ide_init(int iobase, int iobase2, qemu_irq irq,
|
|
BlockDriverState *hd0, BlockDriverState *hd1);
|
|
|
|
/* ide-pci.c */
|
|
void pci_cmd646_ide_init(PCIBus *bus, BlockDriverState **hd_table,
|
|
int secondary_ide_enabled);
|
|
void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
|
|
qemu_irq *pic);
|
|
void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
|
|
qemu_irq *pic);
|
|
|
|
/* ide-macio.c */
|
|
int pmac_ide_init (BlockDriverState **hd_table, qemu_irq irq,
|
|
void *dbdma, int channel, qemu_irq dma_irq);
|
|
|
|
#endif /* HW_IDE_H */
|