mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
qemu: add pci_unregister_device (Marcelo Tosatti)
Unregister the pci device, unassign its IO and memory regions, and free associated data. Add a callback so drivers can free device state. Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6603 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
51bf9e7e18
commit
5851e08cb8
2 changed files with 45 additions and 5 deletions
3
hw/pci.h
3
hw/pci.h
|
@ -125,6 +125,7 @@ typedef uint32_t PCIConfigReadFunc(PCIDevice *pci_dev,
|
|||
uint32_t address, int len);
|
||||
typedef void PCIMapIORegionFunc(PCIDevice *pci_dev, int region_num,
|
||||
uint32_t addr, uint32_t size, int type);
|
||||
typedef int PCIUnregisterFunc(PCIDevice *pci_dev);
|
||||
|
||||
#define PCI_ADDRESS_SPACE_MEM 0x00
|
||||
#define PCI_ADDRESS_SPACE_IO 0x01
|
||||
|
@ -189,6 +190,7 @@ struct PCIDevice {
|
|||
/* do not access the following fields */
|
||||
PCIConfigReadFunc *config_read;
|
||||
PCIConfigWriteFunc *config_write;
|
||||
PCIUnregisterFunc *unregister;
|
||||
/* ??? This is a PC-specific hack, and should be removed. */
|
||||
int irq_index;
|
||||
|
||||
|
@ -203,6 +205,7 @@ PCIDevice *pci_register_device(PCIBus *bus, const char *name,
|
|||
int instance_size, int devfn,
|
||||
PCIConfigReadFunc *config_read,
|
||||
PCIConfigWriteFunc *config_write);
|
||||
int pci_unregister_device(PCIDevice *pci_dev);
|
||||
|
||||
void pci_register_io_region(PCIDevice *pci_dev, int region_num,
|
||||
uint32_t size, int type,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue