#[repr(u64)]
pub enum Value {
    Bits_32,
    Bits_36,
    Bits_40,
    Bits_42,
    Bits_44,
    Bits_48,
    Bits_52,
}
Expand description

Physical Address Size.

000 32 bits, 4GiB. 001 36 bits, 64GiB. 010 40 bits, 1TiB. 011 42 bits, 4TiB. 100 44 bits, 16TiB. 101 48 bits, 256TiB. 110 52 bits, 4PB

Other values are reserved.

The reserved values behave in the same way as the 101 or 110 encoding, but software must not rely on this property as the behavior of the reserved values might change in a future revision of the architecture.

The value 110 is permitted only if ARMv8.2-LPA is implemented and the translation granule size is 64KiB.

In an implementation that supports 52-bit PAs, if the value of this field is not 110 , then bits[51:48] of every translation table base address for the stage of translation controlled by TCR_EL2 are 0000.

Variants

Bits_32

Bits_36

Bits_40

Bits_42

Bits_44

Bits_48

Bits_52

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

Returns the argument unchanged.

Calls U::from(self).

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

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.