Loading hw/sd/sdhci.c +22 −0 Original line number Diff line number Diff line Loading @@ -32,6 +32,7 @@ #include "qemu/bitops.h" #include "hw/sd/sdhci.h" #include "sdhci-internal.h" #include "qapi/error.h" #include "qemu/log.h" /* host controller debug messages */ Loading Loading @@ -1223,6 +1224,17 @@ static void sdhci_common_realize(SDHCIState *s, Error **errp) SDHC_REGISTERS_MAP_SIZE); } static void sdhci_common_unrealize(SDHCIState *s, Error **errp) { /* This function is expected to be called only once for each class: * - SysBus: via DeviceClass->unrealize(), * - PCI: via PCIDeviceClass->exit(). * However to avoid double-free and/or use-after-free we still nullify * this variable (better safe than sorry!). */ g_free(s->fifo_buffer); s->fifo_buffer = NULL; } static bool sdhci_pending_insert_vmstate_needed(void *opaque) { SDHCIState *s = opaque; Loading Loading @@ -1317,6 +1329,8 @@ static void sdhci_pci_realize(PCIDevice *dev, Error **errp) static void sdhci_pci_exit(PCIDevice *dev) { SDHCIState *s = PCI_SDHCI(dev); sdhci_common_unrealize(s, &error_abort); sdhci_uninitfn(s); } Loading Loading @@ -1382,12 +1396,20 @@ static void sdhci_sysbus_realize(DeviceState *dev, Error ** errp) sysbus_init_mmio(sbd, &s->iomem); } static void sdhci_sysbus_unrealize(DeviceState *dev, Error **errp) { SDHCIState *s = SYSBUS_SDHCI(dev); sdhci_common_unrealize(s, &error_abort); } static void sdhci_sysbus_class_init(ObjectClass *klass, void *data) { DeviceClass *dc = DEVICE_CLASS(klass); dc->props = sdhci_sysbus_properties; dc->realize = sdhci_sysbus_realize; dc->unrealize = sdhci_sysbus_unrealize; sdhci_common_class_init(klass, data); } Loading Loading
hw/sd/sdhci.c +22 −0 Original line number Diff line number Diff line Loading @@ -32,6 +32,7 @@ #include "qemu/bitops.h" #include "hw/sd/sdhci.h" #include "sdhci-internal.h" #include "qapi/error.h" #include "qemu/log.h" /* host controller debug messages */ Loading Loading @@ -1223,6 +1224,17 @@ static void sdhci_common_realize(SDHCIState *s, Error **errp) SDHC_REGISTERS_MAP_SIZE); } static void sdhci_common_unrealize(SDHCIState *s, Error **errp) { /* This function is expected to be called only once for each class: * - SysBus: via DeviceClass->unrealize(), * - PCI: via PCIDeviceClass->exit(). * However to avoid double-free and/or use-after-free we still nullify * this variable (better safe than sorry!). */ g_free(s->fifo_buffer); s->fifo_buffer = NULL; } static bool sdhci_pending_insert_vmstate_needed(void *opaque) { SDHCIState *s = opaque; Loading Loading @@ -1317,6 +1329,8 @@ static void sdhci_pci_realize(PCIDevice *dev, Error **errp) static void sdhci_pci_exit(PCIDevice *dev) { SDHCIState *s = PCI_SDHCI(dev); sdhci_common_unrealize(s, &error_abort); sdhci_uninitfn(s); } Loading Loading @@ -1382,12 +1396,20 @@ static void sdhci_sysbus_realize(DeviceState *dev, Error ** errp) sysbus_init_mmio(sbd, &s->iomem); } static void sdhci_sysbus_unrealize(DeviceState *dev, Error **errp) { SDHCIState *s = SYSBUS_SDHCI(dev); sdhci_common_unrealize(s, &error_abort); } static void sdhci_sysbus_class_init(ObjectClass *klass, void *data) { DeviceClass *dc = DEVICE_CLASS(klass); dc->props = sdhci_sysbus_properties; dc->realize = sdhci_sysbus_realize; dc->unrealize = sdhci_sysbus_unrealize; sdhci_common_class_init(klass, data); } Loading