pub trait ControlGic: Send + Sync {
// Required method
fn set_spi_irq(&self, irq_id: u32, high: bool);
}
Expand description
Trait for controlling interrupt states on a GICv3 interrupt controller.
Required Methods§
Sourcefn set_spi_irq(&self, irq_id: u32, high: bool)
fn set_spi_irq(&self, irq_id: u32, high: bool)
Sets the assertion state of a GICv3 SPI.