Re: [PATCH v2 7/7] KVM: arm: implement kvm_set_msi by gsi direct mapping

2015-08-03 Thread Eric Auger
On 08/02/2015 10:23 PM, Andre Przywara wrote: > On 31/07/15 13:59, Eric Auger wrote: >> Hi Andre, >> On 07/11/2015 01:17 AM, Andre Przywara wrote: >>> On 09/07/15 09:22, Eric Auger wrote: If the ITS modality is not available, let's simply support MSI injection by transforming the MSI.data

Re: [PATCH v2 7/7] KVM: arm: implement kvm_set_msi by gsi direct mapping

2015-08-02 Thread Andre Przywara
On 31/07/15 13:59, Eric Auger wrote: > Hi Andre, > On 07/11/2015 01:17 AM, Andre Przywara wrote: >> On 09/07/15 09:22, Eric Auger wrote: >>> If the ITS modality is not available, let's simply support MSI >>> injection by transforming the MSI.data into an SPI ID. >>> >>> This becomes possible to use

Re: [PATCH v2 7/7] KVM: arm: implement kvm_set_msi by gsi direct mapping

2015-07-31 Thread Eric Auger
Hi Andre, On 07/11/2015 01:17 AM, Andre Przywara wrote: > On 09/07/15 09:22, Eric Auger wrote: >> If the ITS modality is not available, let's simply support MSI >> injection by transforming the MSI.data into an SPI ID. >> >> This becomes possible to use KVM_SIGNAL_MSI ioctl for arm too. >> >> Signe

Re: [PATCH v2 7/7] KVM: arm: implement kvm_set_msi by gsi direct mapping

2015-07-10 Thread Andre Przywara
On 09/07/15 09:22, Eric Auger wrote: > If the ITS modality is not available, let's simply support MSI > injection by transforming the MSI.data into an SPI ID. > > This becomes possible to use KVM_SIGNAL_MSI ioctl for arm too. > > Signed-off-by: Eric Auger > > --- > > v1 -> v2: > - introduce vg

[PATCH v2 7/7] KVM: arm: implement kvm_set_msi by gsi direct mapping

2015-07-09 Thread Eric Auger
If the ITS modality is not available, let's simply support MSI injection by transforming the MSI.data into an SPI ID. This becomes possible to use KVM_SIGNAL_MSI ioctl for arm too. Signed-off-by: Eric Auger --- v1 -> v2: - introduce vgic_v2m_inject_msi in vgic-v2-emul.c following Andre's adv