#[doc = "Register `CTL` reader"]
pub struct R(crate::R<CTL_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<CTL_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<CTL_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<CTL_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `CTL` writer"]
pub struct W(crate::W<CTL_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<CTL_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<CTL_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<CTL_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `PWR_MODE` reader - Power mode. PWR_DONE flag indicates that the programmed PWR_MODE has been reached. Do not change PWR_MODE if PWR_DONE==0."]
pub type PWR_MODE_R = crate::FieldReader<u8, PWR_MODE_A>;
#[doc = "Power mode. PWR_DONE flag indicates that the programmed PWR_MODE has been reached. Do not change PWR_MODE if PWR_DONE==0.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum PWR_MODE_A {
#[doc = "0: Power domain is switched off."]
OFF = 0,
#[doc = "1: Power domain is in reset."]
RESET = 1,
#[doc = "2: Power domain is switched off, but specified state is retained. This choice behaves like OFF for domains that do not support retained state at all (RETENTION_PRESENT=0)."]
RETAINED = 2,
#[doc = "3: Power domain is switched on."]
ENABLED = 3,
}
impl From<PWR_MODE_A> for u8 {
#[inline(always)]
fn from(variant: PWR_MODE_A) -> Self {
variant as _
}
}
impl PWR_MODE_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> PWR_MODE_A {
match self.bits {
0 => PWR_MODE_A::OFF,
1 => PWR_MODE_A::RESET,
2 => PWR_MODE_A::RETAINED,
3 => PWR_MODE_A::ENABLED,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `OFF`"]
#[inline(always)]
pub fn is_off(&self) -> bool {
*self == PWR_MODE_A::OFF
}
#[doc = "Checks if the value of the field is `RESET`"]
#[inline(always)]
pub fn is_reset(&self) -> bool {
*self == PWR_MODE_A::RESET
}
#[doc = "Checks if the value of the field is `RETAINED`"]
#[inline(always)]
pub fn is_retained(&self) -> bool {
*self == PWR_MODE_A::RETAINED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == PWR_MODE_A::ENABLED
}
}
#[doc = "Field `PWR_MODE` writer - Power mode. PWR_DONE flag indicates that the programmed PWR_MODE has been reached. Do not change PWR_MODE if PWR_DONE==0."]
pub type PWR_MODE_W<'a, const O: u8> =
crate::FieldWriterSafe<'a, u32, CTL_SPEC, u8, PWR_MODE_A, 2, O>;
impl<'a, const O: u8> PWR_MODE_W<'a, O> {
#[doc = "Power domain is switched off."]
#[inline(always)]
pub fn off(self) -> &'a mut W {
self.variant(PWR_MODE_A::OFF)
}
#[doc = "Power domain is in reset."]
#[inline(always)]
pub fn reset(self) -> &'a mut W {
self.variant(PWR_MODE_A::RESET)
}
#[doc = "Power domain is switched off, but specified state is retained. This choice behaves like OFF for domains that do not support retained state at all (RETENTION_PRESENT=0)."]
#[inline(always)]
pub fn retained(self) -> &'a mut W {
self.variant(PWR_MODE_A::RETAINED)
}
#[doc = "Power domain is switched on."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(PWR_MODE_A::ENABLED)
}
}
impl R {
#[doc = "Bits 0:1 - Power mode. PWR_DONE flag indicates that the programmed PWR_MODE has been reached. Do not change PWR_MODE if PWR_DONE==0."]
#[inline(always)]
pub fn pwr_mode(&self) -> PWR_MODE_R {
PWR_MODE_R::new((self.bits & 3) as u8)
}
}
impl W {
#[doc = "Bits 0:1 - Power mode. PWR_DONE flag indicates that the programmed PWR_MODE has been reached. Do not change PWR_MODE if PWR_DONE==0."]
#[inline(always)]
#[must_use]
pub fn pwr_mode(&mut self) -> PWR_MODE_W<0> {
PWR_MODE_W::new(self)
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "Power Domain Control\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [ctl](index.html) module"]
pub struct CTL_SPEC;
impl crate::RegisterSpec for CTL_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [ctl::R](R) reader structure"]
impl crate::Readable for CTL_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [ctl::W](W) writer structure"]
impl crate::Writable for CTL_SPEC {
type Writer = W;
const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets CTL to value 0"]
impl crate::Resettable for CTL_SPEC {
const RESET_VALUE: Self::Ux = 0;
}