123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- use alloc::vec::Vec;
- #[derive(Debug)]
- pub struct IoApic {
- pub id: u8,
- pub address: u32,
- pub global_system_interrupt_base: u32,
- }
- #[derive(Debug)]
- pub struct NmiLine {
- pub processor: NmiProcessor,
- pub line: LocalInterruptLine,
- }
- #[derive(Debug)]
- pub enum LocalInterruptLine {
- Lint0,
- Lint1,
- }
- #[derive(Debug)]
- pub enum NmiProcessor {
- All,
- /// Refers to a processor with the given UID. This is stored as a `u32`, but should be casted to `u8` when the
- /// DSDT uses the deprecated `DefProcessor` operator to define processor UIDs.
- ProcessorUid(u32),
- }
- #[derive(Debug)]
- pub enum Polarity {
- SameAsBus,
- ActiveHigh,
- ActiveLow,
- }
- #[derive(Debug)]
- pub enum TriggerMode {
- SameAsBus,
- Edge,
- Level,
- }
- /// Describes a difference in the mapping of an ISA interrupt to how it's mapped in other interrupt
- /// models. For example, if a device is connected to ISA IRQ 0 and IOAPIC input 2, an override will
- /// appear mapping source 0 to GSI 2. Currently these will only be created for ISA interrupt
- /// sources.
- #[derive(Debug)]
- pub struct InterruptSourceOverride {
- pub isa_source: u8,
- pub global_system_interrupt: u32,
- pub polarity: Polarity,
- pub trigger_mode: TriggerMode,
- }
- /// Describes a Global System Interrupt that should be enabled as non-maskable. Any source that is
- /// non-maskable can not be used by devices.
- #[derive(Debug)]
- pub struct NmiSource {
- pub global_system_interrupt: u32,
- pub polarity: Polarity,
- pub trigger_mode: TriggerMode,
- }
- #[derive(Debug)]
- pub struct Apic {
- pub local_apic_address: u64,
- pub io_apics: Vec<IoApic>,
- pub local_apic_nmi_lines: Vec<NmiLine>,
- pub interrupt_source_overrides: Vec<InterruptSourceOverride>,
- pub nmi_sources: Vec<NmiSource>,
- /// If this field is set, you must remap and mask all the lines of the legacy PIC, even if
- /// you choose to use the APIC. It's recommended that you do this even if ACPI does not
- /// require you to.
- pub also_has_legacy_pics: bool,
- }
- #[derive(Debug)]
- #[non_exhaustive]
- pub enum InterruptModel {
- /// This model is only chosen when the MADT does not describe another interrupt model. On `x86_64` platforms,
- /// this probably means only the legacy i8259 PIC is present.
- Unknown,
- /// Describes an interrupt controller based around the Advanced Programmable Interrupt
- /// Controllers. These are likely to be found on x86 and x86_64 systems and are made up of a
- /// Local APIC for each core and one or more I/O APICs to handle external interrupts.
- Apic(Apic),
- }
|