Struct kernel::acpi::tables::facp::Facp

source ·
#[repr(C, packed(1))]
pub struct Facp {
Show 55 fields firmware_control: u32, pub dsdt: u32, reserved: u8, preferred_pm_profile: u8, sci_interrupt: u16, smi_command_port: u32, acpi_enable: u8, acpi_disable: u8, s4bios_req: u8, pstate_control: u8, pm1a_event_block: u32, pm1b_event_block: u32, pm1a_control_block: u32, pm1b_control_block: u32, pm2_control_block: u32, pm_timer_block: u32, gpe0_block: u32, gpe1_block: u32, pm1_event_length: u8, pm1_control_length: u8, pm2_control_length: u8, pm_timer_length: u8, gpe0_block_length: u8, gpe1_block_length: u8, gpe1_base: u8, cstate_control: u8, p_level2_latency: u16, p_level3_latency: u16, flush_size: u16, flush_stride: u16, duty_offset: u8, duty_width: u8, day_alarm: u8, month_alarm: u8, pub century: u8, iapc_boot_arch: u16, reserved2: u8, flags: u32, reset_reg: ApicGenericAddress, reset_value: u8, arm_boot_arch: u16, fadt_minor_version: u8, x_firmware_control: u64, x_dsdt: u64, x_pm1a_event_block: ApicGenericAddress, x_pm1b_event_block: ApicGenericAddress, x_pm1a_control_block: ApicGenericAddress, x_pm1b_control_block: ApicGenericAddress, x_pm2_control_block: ApicGenericAddress, x_pm_timer_block: ApicGenericAddress, x_gpe0_block: ApicGenericAddress, x_gpe1_block: ApicGenericAddress, sleep_control_reg: ApicGenericAddress, sleep_status_reg: ApicGenericAddress, hypervisor_vendor_id: u64,
}

Fields§

§firmware_control: u32§dsdt: u32§reserved: u8§preferred_pm_profile: u8§sci_interrupt: u16§smi_command_port: u32§acpi_enable: u8§acpi_disable: u8§s4bios_req: u8§pstate_control: u8§pm1a_event_block: u32§pm1b_event_block: u32§pm1a_control_block: u32§pm1b_control_block: u32§pm2_control_block: u32§pm_timer_block: u32§gpe0_block: u32§gpe1_block: u32§pm1_event_length: u8§pm1_control_length: u8§pm2_control_length: u8§pm_timer_length: u8§gpe0_block_length: u8§gpe1_block_length: u8§gpe1_base: u8§cstate_control: u8§p_level2_latency: u16§p_level3_latency: u16§flush_size: u16§flush_stride: u16§duty_offset: u8§duty_width: u8§day_alarm: u8§month_alarm: u8§century: u8§iapc_boot_arch: u16§reserved2: u8§flags: u32§reset_reg: ApicGenericAddress§reset_value: u8§arm_boot_arch: u16§fadt_minor_version: u8§x_firmware_control: u64§x_dsdt: u64§x_pm1a_event_block: ApicGenericAddress§x_pm1b_event_block: ApicGenericAddress§x_pm1a_control_block: ApicGenericAddress§x_pm1b_control_block: ApicGenericAddress§x_pm2_control_block: ApicGenericAddress§x_pm_timer_block: ApicGenericAddress§x_gpe0_block: ApicGenericAddress§x_gpe1_block: ApicGenericAddress§sleep_control_reg: ApicGenericAddress§sleep_status_reg: ApicGenericAddress§hypervisor_vendor_id: u64

Implementations§

source§

impl Facp

source

pub fn sci_interrupt(&self) -> u8

source

fn smi_command_port(&self) -> u16

source

pub fn is_acpi_enabled(&self) -> bool

source

pub fn enable_acpi(&self)

source

fn access_io_write( &self, register: u32, alt_register: Option<u32>, length: u8, value: u32 )

source

fn access_io_read(&self, register: u32, length: u8) -> u32

source

pub fn write_pm1_status(&self, value: u16)

source

pub fn read_pm1_status(&self) -> u16

source

pub fn write_pm1_enable(&self, value: u16)

source

pub fn read_pm1_enable(&self) -> u16

source

pub fn write_pm1_control(&self, value: u16)

source

pub fn read_pm1_control(&self) -> u16

source

pub fn read_pm1_control_a(&self) -> u16

source

pub fn read_pm1_control_b(&self) -> Option<u16>

source

pub fn write_pm1_control_a(&self, value: u16)

source

pub fn write_pm1_control_b(&self, value: u16)

source

pub fn read_pm_timer(&self) -> Option<u32>

source

pub fn write_pm2_control(&self, value: u16) -> Option<()>

source

pub fn read_pm2_control(&self) -> Option<u16>

source

fn gpe_reg_write(register: u32, length: u8, value: u32)

source

fn gpe_reg_read(register: u32, length: u8) -> u32

source

pub fn write_gpe_0_event_status(&self, value: u32) -> Option<()>

source

pub fn read_gpe_0_event_status(&self) -> Option<u32>

source

pub fn write_gpe_0_event_enable(&self, value: u16) -> Option<()>

source

pub fn read_gpe_0_event_enable(&self) -> Option<u32>

Trait Implementations§

source§

impl Clone for Facp

source§

fn clone(&self) -> Facp

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Facp

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Facp

§

impl Send for Facp

§

impl Sync for Facp

§

impl Unpin for Facp

§

impl UnwindSafe for Facp

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.