2020-01-14 11:02:42 +00:00
|
|
|
// Copyright © 2019 Intel Corporation
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 AND BSD-3-Clause
|
|
|
|
//
|
|
|
|
|
2020-05-25 08:27:08 +00:00
|
|
|
use devices::interrupt_controller::InterruptController;
|
2020-06-02 02:29:54 +00:00
|
|
|
|
2020-01-14 14:31:36 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::io;
|
|
|
|
use std::mem::size_of;
|
2020-02-20 13:32:29 +00:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
2020-01-14 14:31:36 +00:00
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
use vm_allocator::SystemAllocator;
|
2020-01-14 11:02:42 +00:00
|
|
|
use vm_device::interrupt::{
|
2020-02-04 11:04:10 +00:00
|
|
|
InterruptIndex, InterruptManager, InterruptSourceConfig, InterruptSourceGroup,
|
|
|
|
LegacyIrqGroupConfig, MsiIrqGroupConfig,
|
2020-01-14 11:02:42 +00:00
|
|
|
};
|
2020-01-14 14:31:36 +00:00
|
|
|
use vmm_sys_util::eventfd::EventFd;
|
2020-01-14 11:02:42 +00:00
|
|
|
|
|
|
|
/// Reuse std::io::Result to simplify interoperability among crates.
|
|
|
|
pub type Result<T> = std::io::Result<T>;
|
|
|
|
|
2020-01-14 14:31:36 +00:00
|
|
|
// Returns a `Vec<T>` with a size in bytes at least as large as `size_in_bytes`.
|
|
|
|
fn vec_with_size_in_bytes<T: Default>(size_in_bytes: usize) -> Vec<T> {
|
|
|
|
let rounded_size = (size_in_bytes + size_of::<T>() - 1) / size_of::<T>();
|
|
|
|
let mut v = Vec::with_capacity(rounded_size);
|
|
|
|
v.resize_with(rounded_size, T::default);
|
|
|
|
v
|
|
|
|
}
|
|
|
|
|
|
|
|
// The kvm API has many structs that resemble the following `Foo` structure:
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// #[repr(C)]
|
|
|
|
// struct Foo {
|
|
|
|
// some_data: u32
|
|
|
|
// entries: __IncompleteArrayField<__u32>,
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// In order to allocate such a structure, `size_of::<Foo>()` would be too small because it would not
|
|
|
|
// include any space for `entries`. To make the allocation large enough while still being aligned
|
|
|
|
// for `Foo`, a `Vec<Foo>` is created. Only the first element of `Vec<Foo>` would actually be used
|
|
|
|
// as a `Foo`. The remaining memory in the `Vec<Foo>` is for `entries`, which must be contiguous
|
|
|
|
// with `Foo`. This function is used to make the `Vec<Foo>` with enough space for `count` entries.
|
2020-06-23 19:50:58 +00:00
|
|
|
fn vec_with_array_field<T: Default, F>(count: usize) -> Vec<T> {
|
2020-01-14 14:31:36 +00:00
|
|
|
let element_space = count * size_of::<F>();
|
|
|
|
let vec_size_bytes = size_of::<T>() + element_space;
|
|
|
|
vec_with_size_in_bytes(vec_size_bytes)
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:50:58 +00:00
|
|
|
struct InterruptRoute {
|
2020-01-14 14:31:36 +00:00
|
|
|
pub gsi: u32,
|
|
|
|
pub irq_fd: EventFd,
|
2020-02-20 13:32:29 +00:00
|
|
|
registered: AtomicBool,
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl InterruptRoute {
|
|
|
|
pub fn new(allocator: &mut SystemAllocator) -> Result<Self> {
|
|
|
|
let irq_fd = EventFd::new(libc::EFD_NONBLOCK)?;
|
|
|
|
let gsi = allocator
|
|
|
|
.allocate_gsi()
|
|
|
|
.ok_or_else(|| io::Error::new(io::ErrorKind::Other, "Failed allocating new GSI"))?;
|
|
|
|
|
2020-02-20 13:32:29 +00:00
|
|
|
Ok(InterruptRoute {
|
|
|
|
gsi,
|
|
|
|
irq_fd,
|
|
|
|
registered: AtomicBool::new(false),
|
|
|
|
})
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 02:29:54 +00:00
|
|
|
pub fn enable(&self, vm: &Arc<dyn hypervisor::Vm>) -> Result<()> {
|
2020-02-20 13:32:29 +00:00
|
|
|
if !self.registered.load(Ordering::SeqCst) {
|
|
|
|
vm.register_irqfd(&self.irq_fd, self.gsi).map_err(|e| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("Failed registering irq_fd: {}", e),
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
|
|
|
|
// Update internals to track the irq_fd as "registered".
|
|
|
|
self.registered.store(true, Ordering::SeqCst);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 02:29:54 +00:00
|
|
|
pub fn disable(&self, vm: &Arc<dyn hypervisor::Vm>) -> Result<()> {
|
2020-02-20 13:32:29 +00:00
|
|
|
if self.registered.load(Ordering::SeqCst) {
|
|
|
|
vm.unregister_irqfd(&self.irq_fd, self.gsi).map_err(|e| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("Failed unregistering irq_fd: {}", e),
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
|
|
|
|
// Update internals to track the irq_fd as "unregistered".
|
|
|
|
self.registered.store(false, Ordering::SeqCst);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-27 16:27:36 +00:00
|
|
|
pub struct RoutingEntry<E> {
|
2020-06-27 15:22:24 +00:00
|
|
|
route: E,
|
2020-01-14 14:31:36 +00:00
|
|
|
masked: bool,
|
|
|
|
}
|
|
|
|
|
2020-06-27 16:27:36 +00:00
|
|
|
pub struct MsiInterruptGroup<E> {
|
2020-07-03 09:20:45 +00:00
|
|
|
vm: Arc<dyn hypervisor::Vm>,
|
2020-06-27 15:22:24 +00:00
|
|
|
gsi_msi_routes: Arc<Mutex<HashMap<u32, RoutingEntry<E>>>>,
|
2020-01-14 14:31:36 +00:00
|
|
|
irq_routes: HashMap<InterruptIndex, InterruptRoute>,
|
|
|
|
}
|
2020-01-14 11:02:42 +00:00
|
|
|
|
2020-06-27 16:27:36 +00:00
|
|
|
pub trait MsiInterruptGroupOps {
|
2020-06-27 16:08:03 +00:00
|
|
|
fn set_gsi_routes(&self) -> Result<()>;
|
|
|
|
}
|
|
|
|
|
2020-06-27 16:27:36 +00:00
|
|
|
pub trait RoutingEntryExt {
|
2020-06-27 15:56:43 +00:00
|
|
|
fn make_entry(gsi: u32, config: &InterruptSourceConfig) -> Result<Box<Self>>;
|
|
|
|
}
|
|
|
|
|
2020-06-27 15:22:24 +00:00
|
|
|
impl<E> MsiInterruptGroup<E> {
|
2020-01-14 14:31:36 +00:00
|
|
|
fn new(
|
2020-07-03 09:20:45 +00:00
|
|
|
vm: Arc<dyn hypervisor::Vm>,
|
2020-06-27 15:22:24 +00:00
|
|
|
gsi_msi_routes: Arc<Mutex<HashMap<u32, RoutingEntry<E>>>>,
|
2020-01-14 14:31:36 +00:00
|
|
|
irq_routes: HashMap<InterruptIndex, InterruptRoute>,
|
|
|
|
) -> Self {
|
2020-06-27 15:22:24 +00:00
|
|
|
MsiInterruptGroup {
|
2020-07-03 09:20:45 +00:00
|
|
|
vm,
|
2020-01-14 14:31:36 +00:00
|
|
|
gsi_msi_routes,
|
|
|
|
irq_routes,
|
|
|
|
}
|
|
|
|
}
|
2020-06-27 15:22:24 +00:00
|
|
|
}
|
2020-01-14 14:31:36 +00:00
|
|
|
|
2020-06-27 16:15:08 +00:00
|
|
|
impl<E> InterruptSourceGroup for MsiInterruptGroup<E>
|
|
|
|
where
|
|
|
|
E: Send + Sync,
|
|
|
|
RoutingEntry<E>: RoutingEntryExt,
|
|
|
|
MsiInterruptGroup<E>: MsiInterruptGroupOps,
|
|
|
|
{
|
2020-01-14 14:31:36 +00:00
|
|
|
fn enable(&self) -> Result<()> {
|
|
|
|
for (_, route) in self.irq_routes.iter() {
|
2020-07-03 09:20:45 +00:00
|
|
|
route.enable(&self.vm)?;
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 11:02:42 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-14 14:31:36 +00:00
|
|
|
fn disable(&self) -> Result<()> {
|
|
|
|
for (_, route) in self.irq_routes.iter() {
|
2020-07-03 09:20:45 +00:00
|
|
|
route.disable(&self.vm)?;
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 11:02:42 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-01-14 14:31:36 +00:00
|
|
|
|
|
|
|
fn trigger(&self, index: InterruptIndex) -> Result<()> {
|
|
|
|
if let Some(route) = self.irq_routes.get(&index) {
|
|
|
|
return route.irq_fd.write(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("trigger: Invalid interrupt index {}", index),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn notifier(&self, index: InterruptIndex) -> Option<&EventFd> {
|
|
|
|
if let Some(route) = self.irq_routes.get(&index) {
|
|
|
|
return Some(&route.irq_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(&self, index: InterruptIndex, config: InterruptSourceConfig) -> Result<()> {
|
|
|
|
if let Some(route) = self.irq_routes.get(&index) {
|
2020-06-27 16:15:08 +00:00
|
|
|
let entry = RoutingEntry::<_>::make_entry(route.gsi, &config)?;
|
2020-06-27 15:56:43 +00:00
|
|
|
self.gsi_msi_routes
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(route.gsi, *entry);
|
2020-01-14 14:31:36 +00:00
|
|
|
|
2020-06-27 15:38:28 +00:00
|
|
|
return self.set_gsi_routes();
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("update: Invalid interrupt index {}", index),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mask(&self, index: InterruptIndex) -> Result<()> {
|
2020-02-20 13:32:29 +00:00
|
|
|
if let Some(route) = self.irq_routes.get(&index) {
|
2020-06-27 15:36:23 +00:00
|
|
|
let mut gsi_msi_routes = self.gsi_msi_routes.lock().unwrap();
|
|
|
|
if let Some(entry) = gsi_msi_routes.get_mut(&route.gsi) {
|
|
|
|
entry.masked = true;
|
|
|
|
} else {
|
|
|
|
return Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("mask: No existing route for interrupt index {}", index),
|
|
|
|
));
|
|
|
|
}
|
2020-06-27 15:38:28 +00:00
|
|
|
// Drop the guard because set_gsi_routes will try to take the lock again.
|
2020-06-27 15:36:23 +00:00
|
|
|
drop(gsi_msi_routes);
|
2020-06-27 15:38:28 +00:00
|
|
|
self.set_gsi_routes()?;
|
2020-07-03 09:20:45 +00:00
|
|
|
return route.disable(&self.vm);
|
2020-02-20 13:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("mask: Invalid interrupt index {}", index),
|
|
|
|
))
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn unmask(&self, index: InterruptIndex) -> Result<()> {
|
2020-02-20 13:32:29 +00:00
|
|
|
if let Some(route) = self.irq_routes.get(&index) {
|
2020-06-27 15:36:23 +00:00
|
|
|
let mut gsi_msi_routes = self.gsi_msi_routes.lock().unwrap();
|
|
|
|
if let Some(entry) = gsi_msi_routes.get_mut(&route.gsi) {
|
|
|
|
entry.masked = false;
|
|
|
|
} else {
|
|
|
|
return Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("mask: No existing route for interrupt index {}", index),
|
|
|
|
));
|
|
|
|
}
|
2020-06-27 15:38:28 +00:00
|
|
|
// Drop the guard because set_gsi_routes will try to take the lock again.
|
2020-06-27 15:36:23 +00:00
|
|
|
drop(gsi_msi_routes);
|
2020-06-27 15:38:28 +00:00
|
|
|
self.set_gsi_routes()?;
|
2020-07-03 09:20:45 +00:00
|
|
|
return route.enable(&self.vm);
|
2020-02-20 13:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("unmask: Invalid interrupt index {}", index),
|
|
|
|
))
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
2020-01-14 11:02:42 +00:00
|
|
|
}
|
|
|
|
|
2020-01-20 10:27:58 +00:00
|
|
|
pub struct LegacyUserspaceInterruptGroup {
|
2020-05-25 08:27:08 +00:00
|
|
|
ioapic: Arc<Mutex<dyn InterruptController>>,
|
2020-01-20 10:27:58 +00:00
|
|
|
irq: u32,
|
|
|
|
}
|
2020-01-17 13:23:11 +00:00
|
|
|
|
|
|
|
impl LegacyUserspaceInterruptGroup {
|
2020-05-25 08:27:08 +00:00
|
|
|
fn new(ioapic: Arc<Mutex<dyn InterruptController>>, irq: u32) -> Self {
|
2020-01-20 10:27:58 +00:00
|
|
|
LegacyUserspaceInterruptGroup { ioapic, irq }
|
2020-01-17 13:23:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl InterruptSourceGroup for LegacyUserspaceInterruptGroup {
|
|
|
|
fn trigger(&self, _index: InterruptIndex) -> Result<()> {
|
2020-01-20 10:27:58 +00:00
|
|
|
self.ioapic
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.service_irq(self.irq as usize)
|
|
|
|
.map_err(|e| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("failed to inject IRQ #{}: {:?}", self.irq, e),
|
|
|
|
)
|
|
|
|
})
|
2020-01-17 13:23:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn update(&self, _index: InterruptIndex, _config: InterruptSourceConfig) -> Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 14:56:49 +00:00
|
|
|
pub struct LegacyUserspaceInterruptManager {
|
2020-05-25 08:27:08 +00:00
|
|
|
ioapic: Arc<Mutex<dyn InterruptController>>,
|
2020-02-04 09:59:53 +00:00
|
|
|
}
|
|
|
|
|
2020-06-27 15:28:53 +00:00
|
|
|
pub struct MsiInterruptManager<E> {
|
2020-01-14 14:31:36 +00:00
|
|
|
allocator: Arc<Mutex<SystemAllocator>>,
|
2020-07-03 09:20:45 +00:00
|
|
|
vm: Arc<dyn hypervisor::Vm>,
|
2020-06-27 15:28:53 +00:00
|
|
|
gsi_msi_routes: Arc<Mutex<HashMap<u32, RoutingEntry<E>>>>,
|
2020-01-14 14:31:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 14:56:49 +00:00
|
|
|
impl LegacyUserspaceInterruptManager {
|
2020-05-25 08:27:08 +00:00
|
|
|
pub fn new(ioapic: Arc<Mutex<dyn InterruptController>>) -> Self {
|
2020-06-25 14:56:49 +00:00
|
|
|
LegacyUserspaceInterruptManager { ioapic }
|
2020-02-04 09:59:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-27 15:28:53 +00:00
|
|
|
impl<E> MsiInterruptManager<E> {
|
2020-07-03 09:20:45 +00:00
|
|
|
pub fn new(allocator: Arc<Mutex<SystemAllocator>>, vm: Arc<dyn hypervisor::Vm>) -> Self {
|
2020-06-25 14:49:40 +00:00
|
|
|
// Create a shared list of GSI that can be shared through all PCI
|
|
|
|
// devices. This way, we can maintain the full list of used GSI,
|
|
|
|
// preventing one device from overriding interrupts setting from
|
|
|
|
// another one.
|
|
|
|
let gsi_msi_routes = Arc::new(Mutex::new(HashMap::new()));
|
|
|
|
|
2020-06-27 15:28:53 +00:00
|
|
|
MsiInterruptManager {
|
2020-01-14 14:31:36 +00:00
|
|
|
allocator,
|
2020-07-03 09:20:45 +00:00
|
|
|
vm,
|
2020-01-14 14:31:36 +00:00
|
|
|
gsi_msi_routes,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-14 11:02:42 +00:00
|
|
|
|
2020-06-25 14:56:49 +00:00
|
|
|
impl InterruptManager for LegacyUserspaceInterruptManager {
|
2020-02-04 11:04:10 +00:00
|
|
|
type GroupConfig = LegacyIrqGroupConfig;
|
|
|
|
|
2020-01-14 11:02:42 +00:00
|
|
|
fn create_group(
|
|
|
|
&self,
|
2020-02-04 11:04:10 +00:00
|
|
|
config: Self::GroupConfig,
|
2020-01-14 11:02:42 +00:00
|
|
|
) -> Result<Arc<Box<dyn InterruptSourceGroup>>> {
|
2020-02-04 11:04:10 +00:00
|
|
|
Ok(Arc::new(Box::new(LegacyUserspaceInterruptGroup::new(
|
|
|
|
self.ioapic.clone(),
|
|
|
|
config.irq as u32,
|
|
|
|
))))
|
2020-02-04 09:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn destroy_group(&self, _group: Arc<Box<dyn InterruptSourceGroup>>) -> Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-27 16:27:36 +00:00
|
|
|
impl<E> InterruptManager for MsiInterruptManager<E>
|
|
|
|
where
|
|
|
|
E: Send + Sync + 'static,
|
|
|
|
RoutingEntry<E>: RoutingEntryExt,
|
|
|
|
MsiInterruptGroup<E>: MsiInterruptGroupOps,
|
|
|
|
{
|
2020-02-04 11:04:10 +00:00
|
|
|
type GroupConfig = MsiIrqGroupConfig;
|
|
|
|
|
2020-02-04 09:59:53 +00:00
|
|
|
fn create_group(
|
|
|
|
&self,
|
2020-02-04 11:04:10 +00:00
|
|
|
config: Self::GroupConfig,
|
2020-02-04 09:59:53 +00:00
|
|
|
) -> Result<Arc<Box<dyn InterruptSourceGroup>>> {
|
2020-02-04 11:04:10 +00:00
|
|
|
let mut allocator = self.allocator.lock().unwrap();
|
|
|
|
let mut irq_routes: HashMap<InterruptIndex, InterruptRoute> =
|
|
|
|
HashMap::with_capacity(config.count as usize);
|
|
|
|
for i in config.base..config.base + config.count {
|
|
|
|
irq_routes.insert(i, InterruptRoute::new(&mut allocator)?);
|
|
|
|
}
|
2020-01-14 14:31:36 +00:00
|
|
|
|
2020-06-27 16:27:36 +00:00
|
|
|
Ok(Arc::new(Box::new(MsiInterruptGroup::new(
|
2020-07-03 09:20:45 +00:00
|
|
|
self.vm.clone(),
|
2020-02-04 11:04:10 +00:00
|
|
|
self.gsi_msi_routes.clone(),
|
|
|
|
irq_routes,
|
|
|
|
))))
|
2020-01-14 11:02:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn destroy_group(&self, _group: Arc<Box<dyn InterruptSourceGroup>>) -> Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2020-06-27 16:32:51 +00:00
|
|
|
|
|
|
|
pub mod kvm {
|
|
|
|
use super::*;
|
|
|
|
use hypervisor::kvm::{kvm_irq_routing, kvm_irq_routing_entry, KVM_IRQ_ROUTING_MSI};
|
|
|
|
|
|
|
|
type KvmMsiInterruptGroup = MsiInterruptGroup<kvm_irq_routing_entry>;
|
|
|
|
type KvmRoutingEntry = RoutingEntry<kvm_irq_routing_entry>;
|
|
|
|
pub type KvmMsiInterruptManager = MsiInterruptManager<kvm_irq_routing_entry>;
|
|
|
|
|
|
|
|
impl RoutingEntryExt for KvmRoutingEntry {
|
|
|
|
fn make_entry(gsi: u32, config: &InterruptSourceConfig) -> Result<Box<Self>> {
|
|
|
|
if let InterruptSourceConfig::MsiIrq(cfg) = &config {
|
|
|
|
let mut kvm_route = kvm_irq_routing_entry {
|
|
|
|
gsi,
|
|
|
|
type_: KVM_IRQ_ROUTING_MSI,
|
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
|
|
|
|
kvm_route.u.msi.address_lo = cfg.low_addr;
|
|
|
|
kvm_route.u.msi.address_hi = cfg.high_addr;
|
|
|
|
kvm_route.u.msi.data = cfg.data;
|
|
|
|
|
|
|
|
let kvm_entry = KvmRoutingEntry {
|
|
|
|
route: kvm_route,
|
|
|
|
masked: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
return Ok(Box::new(kvm_entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
"Interrupt config type not supported",
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MsiInterruptGroupOps for KvmMsiInterruptGroup {
|
|
|
|
fn set_gsi_routes(&self) -> Result<()> {
|
|
|
|
let gsi_msi_routes = self.gsi_msi_routes.lock().unwrap();
|
|
|
|
let mut entry_vec: Vec<kvm_irq_routing_entry> = Vec::new();
|
|
|
|
for (_, entry) in gsi_msi_routes.iter() {
|
|
|
|
if entry.masked {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry_vec.push(entry.route);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut irq_routing =
|
|
|
|
vec_with_array_field::<kvm_irq_routing, kvm_irq_routing_entry>(entry_vec.len());
|
|
|
|
irq_routing[0].nr = entry_vec.len() as u32;
|
|
|
|
irq_routing[0].flags = 0;
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let entries: &mut [kvm_irq_routing_entry] =
|
|
|
|
irq_routing[0].entries.as_mut_slice(entry_vec.len());
|
|
|
|
entries.copy_from_slice(&entry_vec);
|
|
|
|
}
|
|
|
|
|
2020-07-03 09:20:45 +00:00
|
|
|
self.vm.set_gsi_routing(&irq_routing[0]).map_err(|e| {
|
2020-06-27 16:32:51 +00:00
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("Failed setting GSI routing: {}", e),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|