[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 5/6] pci: teach pci devices that have reset callback
From: |
Isaku Yamahata |
Subject: |
[Qemu-devel] [PATCH 5/6] pci: teach pci devices that have reset callback how to reset common registers. |
Date: |
Thu, 2 Sep 2010 18:25:08 +0900 |
teach pci devices that have reset callback how to reset common registers.
Signed-off-by: Isaku Yamahata <address@hidden>
---
hw/e1000.c | 1 +
hw/lsi53c895a.c | 2 ++
hw/pci.c | 6 ------
hw/pcnet.c | 1 +
hw/rtl8139.c | 2 ++
hw/virtio-pci.c | 1 +
6 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/hw/e1000.c b/hw/e1000.c
index 9972b48..1987ef6 100644
--- a/hw/e1000.c
+++ b/hw/e1000.c
@@ -1077,6 +1077,7 @@ static void e1000_reset(void *opaque)
memmove(d->mac_reg, mac_reg_init, sizeof mac_reg_init);
d->rxbuf_min_shift = 1;
memset(&d->tx, 0, sizeof d->tx);
+ pci_device_reset_default(&d->dev);
}
static NetClientInfo net_e1000_info = {
diff --git a/hw/lsi53c895a.c b/hw/lsi53c895a.c
index ecff004..c1a920b 100644
--- a/hw/lsi53c895a.c
+++ b/hw/lsi53c895a.c
@@ -358,6 +358,8 @@ static void lsi_soft_reset(LSIState *s)
qemu_free(s->current);
s->current = NULL;
}
+
+ pci_device_reset_default(&s->dev);
}
static int lsi_dma_40bit(LSIState *s)
diff --git a/hw/pci.c b/hw/pci.c
index 4c99390..e23ac1b 100644
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -190,13 +190,7 @@ static void pci_device_reset(PCIDevice *dev)
TODO: remove this when all pci devices are qdev'fied. */
pci_device_reset_default(dev);
} else {
- /*
- * TODO:
- * each device should know what to do on RST#.
- * move pci_device_reset_default() into each callback.
- */
qdev_reset_all(&dev->qdev);
- pci_device_reset_default(dev);
}
}
diff --git a/hw/pcnet.c b/hw/pcnet.c
index c8291bb..2910221 100644
--- a/hw/pcnet.c
+++ b/hw/pcnet.c
@@ -2025,6 +2025,7 @@ static void pci_reset(DeviceState *dev)
PCIPCNetState *d = DO_UPCAST(PCIPCNetState, pci_dev.qdev, dev);
pcnet_h_reset(&d->state);
+ pci_device_reset_default(&d->pci_dev);
}
static PCIDeviceInfo pcnet_info = {
diff --git a/hw/rtl8139.c b/hw/rtl8139.c
index 690d07b..a26a33a 100644
--- a/hw/rtl8139.c
+++ b/hw/rtl8139.c
@@ -1261,6 +1261,8 @@ static void rtl8139_reset(DeviceState *d)
/* reset tally counters */
RTL8139TallyCounters_clear(&s->tally_counters);
+
+ pci_device_reset_default(&s->dev);
}
static void RTL8139TallyCounters_clear(RTL8139TallyCounters* counters)
diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c
index 8fe6b3b..5a170a1 100644
--- a/hw/virtio-pci.c
+++ b/hw/virtio-pci.c
@@ -186,6 +186,7 @@ static void virtio_pci_reset(DeviceState *d)
virtio_reset(proxy->vdev);
msix_reset(&proxy->pci_dev);
proxy->bugs = 0;
+ pci_device_reset_default(&proxy->pci_dev);
}
static void virtio_ioport_write(void *opaque, uint32_t addr, uint32_t val)
--
1.7.1.1
- [Qemu-devel] [PATCH 0/6 v3] introduce qbus reset callback and pci bus reset clean up, Isaku Yamahata, 2010/09/02
- [Qemu-devel] [PATCH 6/6] pci bridge: implement secondary bus reset., Isaku Yamahata, 2010/09/02
- [Qemu-devel] [PATCH 5/6] pci: teach pci devices that have reset callback how to reset common registers.,
Isaku Yamahata <=
- [Qemu-devel] [PATCH 3/6] qdev: introduce a helper function which triggers reset from a given device., Isaku Yamahata, 2010/09/02
- [Qemu-devel] [PATCH 2/6] qdev: introduce reset call back for qbus level., Isaku Yamahata, 2010/09/02
- [Qemu-devel] [PATCH 4/6] pci: make pci reset use qdev reset frame work., Isaku Yamahata, 2010/09/02
- [Qemu-devel] [PATCH 1/6] qdev: Make qbus_walk_children() call busfn for root bus., Isaku Yamahata, 2010/09/02
- [Qemu-devel] Re: [PATCH 0/6 v3] introduce qbus reset callback and pci bus reset clean up, Anthony Liguori, 2010/09/02