diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2012-09-12 16:57:13 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-10-04 15:54:17 +0200 |
commit | 4dd96f244f62d5e4b493c1f4071c0d4a4a57474d (patch) | |
tree | 298d5a3118ab3e6c1cb80a7e1f61046d0527672e /hw/spapr_vio.c | |
parent | 7f763a5d994bbddb50705d2e50decdf52937521f (diff) | |
download | qemu-4dd96f244f62d5e4b493c1f4071c0d4a4a57474d.tar.gz qemu-4dd96f244f62d5e4b493c1f4071c0d4a4a57474d.tar.bz2 qemu-4dd96f244f62d5e4b493c1f4071c0d4a4a57474d.zip |
pseries: Clear TCE and signal state when resetting PAPR VIO devices
When we reset the system, the reset method for VIO bus devices resets
the state of their request queue (if present) as it should. However
it was not resetting the state of their TCE table (DMA translation) if
present. It was also not resetting the state of the per-device signal
mask set with H_VIO_SIGNAL. This patch corrects both bugs, and also
removes some small code duplication in the reset paths.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/spapr_vio.c')
-rw-r--r-- | hw/spapr_vio.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/hw/spapr_vio.c b/hw/spapr_vio.c index 7ca445216d..752836e76c 100644 --- a/hw/spapr_vio.c +++ b/hw/spapr_vio.c @@ -324,9 +324,7 @@ static void spapr_vio_quiesce_one(VIOsPAPRDevice *dev) } dev->dma = spapr_tce_new_dma_context(liobn, pc->rtce_window_size); - dev->crq.qladdr = 0; - dev->crq.qsize = 0; - dev->crq.qnext = 0; + free_crq(dev); } static void rtas_set_tce_bypass(sPAPREnvironment *spapr, uint32_t token, @@ -409,9 +407,10 @@ static void spapr_vio_busdev_reset(DeviceState *qdev) VIOsPAPRDevice *dev = DO_UPCAST(VIOsPAPRDevice, qdev, qdev); VIOsPAPRDeviceClass *pc = VIO_SPAPR_DEVICE_GET_CLASS(dev); - if (dev->crq.qsize) { - free_crq(dev); - } + /* Shut down the request queue and TCEs if necessary */ + spapr_vio_quiesce_one(dev); + + dev->signal_state = 0; if (pc->reset) { pc->reset(dev); |