|
@@ -48,6 +48,20 @@ pub struct NmiSource {
|
|
|
pub trigger_mode: TriggerMode,
|
|
|
}
|
|
|
|
|
|
+#[derive(Debug)]
|
|
|
+pub struct Apic {
|
|
|
+ pub local_apic_address: u64,
|
|
|
+ pub io_apics: Vec<IoApic>,
|
|
|
+ pub local_apic_nmi_line: LocalInterruptLine,
|
|
|
+ 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)]
|
|
|
pub enum InterruptModel {
|
|
|
/// This model is only chosen when a newer one can not be found and the system supports the
|
|
@@ -57,16 +71,5 @@ pub enum InterruptModel {
|
|
|
/// 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 {
|
|
|
- local_apic_address: u64,
|
|
|
- io_apics: Vec<IoApic>,
|
|
|
- local_apic_nmi_line: LocalInterruptLine,
|
|
|
- interrupt_source_overrides: Vec<InterruptSourceOverride>,
|
|
|
- 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.
|
|
|
- also_has_legacy_pics: bool,
|
|
|
- },
|
|
|
+ Apic(Apic),
|
|
|
}
|