irqchip/gic-v3-its: Add VPE invalidation hook

When a guest issues a INVALL command targetting a collection, it must
be translated into a VINVALL for the VPE that has this collection.

This patch implements a hook that offers this functionallity to the
hypervisor.

Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>

+4
+4
drivers/irqchip/irq-gic-v3-its.c
··· 2232 2232 its_vpe_deschedule(vpe); 2233 2233 return 0; 2234 2234 2235 + case INVALL_VPE: 2236 + its_send_vinvall(vpe); 2237 + return 0; 2238 + 2235 2239 default: 2236 2240 return -EINVAL; 2237 2241 }