Struct acpi::fadt::Fadt[][src]

#[repr(C, packed)]
pub struct Fadt {
Show 21 fields pub sci_interrupt: u16, pub smi_cmd_port: u32, pub acpi_enable: u8, pub acpi_disable: u8, pub s4bios_req: u8, pub pstate_control: u8, pub gpe1_base: u8, pub c_state_control: u8, pub worst_c2_latency: u16, pub worst_c3_latency: u16, pub flush_size: u16, pub flush_stride: u16, pub duty_offset: u8, pub duty_width: u8, pub day_alarm: u8, pub month_alarm: u8, pub century: u8, pub iapc_boot_arch: IaPcBootArchFlags, pub flags: FixedFeatureFlags, pub reset_value: u8, pub arm_boot_arch: ArmBootArchFlags, // some fields omitted
}
Expand description

Represents the Fixed ACPI Description Table (FADT). This table contains various fixed hardware details, such as the addresses of the hardware register blocks. It also contains a pointer to the Differentiated Definition Block (DSDT).

In cases where the FADT contains both a 32-bit and 64-bit field for the same address, we should always prefer the 64-bit one. Only if it’s zero or the CPU will not allow us to access that address should the 32-bit one be used.

Fields

sci_interrupt: u16

On systems with an i8259 PIC, this is the vector the System Control Interrupt (SCI) is wired to. On other systems, this is the Global System Interrupt (GSI) number of the SCI.

The SCI should be treated as a sharable, level, active-low interrupt.

smi_cmd_port: u32

The system port address of the SMI Command Port. This port should only be accessed from the boot processor. A value of 0 indicates that System Management Mode is not supported.

  • Writing the value in acpi_enable to this port will transfer control of the ACPI hardware registers from the firmware to the OS. You must synchronously wait for the transfer to complete, indicated by the setting of SCI_EN.
  • Writing the value in acpi_disable will relinquish ownership of the hardware registers to the firmware. This should only be done if you’ve previously acquired ownership. Before writing this value, the OS should mask all SCI interrupts and clear the SCI_EN bit.
  • Writing the value in s4bios_req requests that the firmware enter the S4 state through the S4BIOS feature. This is only supported if the S4BIOS_F flag in the FACS is set.
  • Writing the value in pstate_control yields control of the processor performance state to the OS. If this field is 0, this feature is not supported.
  • Writing the value in c_state_control tells the firmware that the OS supports _CST AML objects and notifications of C State changes.
acpi_enable: u8acpi_disable: u8s4bios_req: u8pstate_control: u8gpe1_base: u8c_state_control: u8worst_c2_latency: u16

The worst-case latency to enter and exit the C2 state, in microseconds. A value >100 indicates that the system does not support the C2 state.

worst_c3_latency: u16

The worst-case latency to enter and exit the C3 state, in microseconds. A value >1000 indicates that the system does not support the C3 state.

flush_size: u16flush_stride: u16duty_offset: u8duty_width: u8day_alarm: u8month_alarm: u8century: u8iapc_boot_arch: IaPcBootArchFlagsflags: FixedFeatureFlagsreset_value: u8arm_boot_arch: ArmBootArchFlags

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.