e29f237996
Now that we properly refactored the piix4_create() function, let's move it to hw/isa/piix4.c where it belongs, so it can be reused on other places. Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
27 lines
706 B
C
27 lines
706 B
C
/*
|
|
* QEMU PIIX South Bridge Emulation
|
|
*
|
|
* Copyright (c) 2006 Fabrice Bellard
|
|
* Copyright (c) 2018 Hervé Poussineau
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef HW_SOUTHBRIDGE_PIIX_H
|
|
#define HW_SOUTHBRIDGE_PIIX_H
|
|
|
|
#define TYPE_PIIX4_PM "PIIX4_PM"
|
|
|
|
I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
|
|
qemu_irq sci_irq, qemu_irq smi_irq,
|
|
int smm_enabled, DeviceState **piix4_pm);
|
|
|
|
extern PCIDevice *piix4_dev;
|
|
|
|
DeviceState *piix4_create(PCIBus *pci_bus, ISABus **isa_bus,
|
|
I2CBus **smbus, size_t ide_buses);
|
|
|
|
#endif
|