When pins are cleared from either ISR or IRR as part of the
initialization sequence forward the clearing of those pins to the dpci
EOI handler, as it is equivalent to an EOI. Not doing so can bring the
interrupt controller state out of sync with the dpci handling logic,
that expects a notification when a pin has been EOI'ed.
Fixes: 7b3cb5e5416 ('IRQ injection changes for HVM PCI passthru.')
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
{
if ( val & 0x10 )
{
+ unsigned int pending = vpic->isr | (vpic->irr & ~vpic->elcr);
+
/* ICW1 */
/* Clear edge-sensing logic. */
vpic->irr &= vpic->elcr;
}
vpic->init_state = ((val & 3) << 2) | 1;
+ vpic_update_int_output(vpic);
+ vpic_unlock(vpic);
+
+ /*
+ * Forward the EOI of any pending or in service interrupt that has
+ * been cleared from IRR or ISR, or else the dpci logic will get
+ * out of sync with the state of the interrupt controller.
+ */
+ while ( pending )
+ {
+ unsigned int pin = __scanbit(pending, 8);
+
+ ASSERT(pin < 8);
+ hvm_dpci_eoi(current->domain,
+ hvm_isa_irq_to_gsi((addr >> 7) ? (pin | 8) : pin));
+ __clear_bit(pin, &pending);
+ }
+ return;
}
else if ( val & 0x08 )
{