diff options
author | Eric Auger <eric.auger@linaro.org> | 2015-06-02 14:56:23 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-06-02 14:56:25 +0100 |
commit | 1850b6b7d027bb4b45010a7d1da919267fff2cd4 (patch) | |
tree | 3b09b37bef4e6553dca6c55a1d01f603c1058f35 /target-s390x/kvm.c | |
parent | 0b2ff2ceb8a45cbe51ca13a1a32fc5bdeec71815 (diff) | |
download | hqemu-1850b6b7d027bb4b45010a7d1da919267fff2cd4.zip hqemu-1850b6b7d027bb4b45010a7d1da919267fff2cd4.tar.gz |
kvm: introduce kvm_arch_msi_data_to_gsi
On ARM the MSI data corresponds to the shared peripheral interrupt (SPI)
ID. This latter equals to the SPI index + 32. to retrieve the SPI index,
matching the gsi, an architecture specific function is introduced.
Signed-off-by: Eric Auger <eric.auger@linaro.org>
Acked-by: Christoffer Dall <christoffer.dall@linaro.org>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-s390x/kvm.c')
-rw-r--r-- | target-s390x/kvm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index 6de7759..2740ec4 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -2216,3 +2216,8 @@ int kvm_arch_fixup_msi_route(struct kvm_irq_routing_entry *route, route->u.adapter.adapter_id = pbdev->routes.adapter.adapter_id; return 0; } + +int kvm_arch_msi_data_to_gsi(uint32_t data) +{ + abort(); +} |