mirror of
https://github.com/qemu/qemu.git
synced 2025-07-31 01:18:30 +00:00

create ide-pci.c and place pci bus support there. only build ide-pci support for platforms using it. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Fix build (merge with isa mmio split)
19 lines
586 B
C
19 lines
586 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);
|
|
|
|
#endif /* HW_IDE_H */
|