use super::{TimerWakeupSource, WakeSource, WakeTriggers, WakeupLevel};
use crate::{
gpio::{RtcFunction, RtcPinWithResistors},
peripherals::{APB_CTRL, BB, EXTMEM, FE, FE2, GPIO, IO_MUX, LPWR, NRX, SPI0, SPI1, SYSTEM},
rtc_cntl::{Rtc, sleep::RtcioWakeupSource},
soc::regi2c,
};
pub const RTC_CNTL_DBIAS_0V90: u8 = 13;
pub const RTC_CNTL_DBIAS_0V95: u8 = 16;
pub const RTC_CNTL_DBIAS_1V00: u8 = 18;
pub const RTC_CNTL_DBIAS_1V05: u8 = 20;
pub const RTC_CNTL_DBIAS_1V10: u8 = 23;
pub const RTC_CNTL_DBIAS_1V15: u8 = 25;
pub const RTC_CNTL_DBIAS_1V20: u8 = 28;
pub const RTC_CNTL_DBIAS_1V25: u8 = 30;
pub const RTC_CNTL_DBIAS_1V30: u8 = 31;
pub const RTC_CNTL_DBG_ATTEN_LIGHTSLEEP_DEFAULT: u8 = 5;
pub const RTC_CNTL_DBG_ATTEN_LIGHTSLEEP_NODROP: u8 = 0;
pub const RTC_CNTL_DBG_ATTEN_DEEPSLEEP_DEFAULT: u8 = 15;
pub const RTC_CNTL_DBG_ATTEN_DEEPSLEEP_NODROP: u8 = 0;
pub const RTC_CNTL_BIASSLP_SLEEP_DEFAULT: u8 = 1;
pub const RTC_CNTL_BIASSLP_SLEEP_ON: u8 = 0;
pub const RTC_CNTL_PD_CUR_SLEEP_DEFAULT: u8 = 1;
pub const RTC_CNTL_PD_CUR_SLEEP_ON: u8 = 0;
pub const RTC_CNTL_DG_VDD_DRV_B_SLP_DEFAULT: u8 = 254;
pub const RTC_CNTL_DBG_ATTEN_MONITOR_DEFAULT: u8 = 0;
pub const RTC_CNTL_BIASSLP_MONITOR_DEFAULT: bool = false;
pub const RTC_CNTL_PD_CUR_MONITOR_DEFAULT: bool = false;
pub const RTC_CNTL_PLL_BUF_WAIT_DEFAULT: u8 = 20;
pub const RTC_CNTL_XTL_BUF_WAIT_DEFAULT: u8 = 100;
pub const RTC_CNTL_CK8M_WAIT_DEFAULT: u8 = 20;
pub const RTC_CK8M_ENABLE_WAIT_DEFAULT: u8 = 5;
pub const RTC_CNTL_MIN_SLP_VAL_MIN: u8 = 2;
pub const OTHER_BLOCKS_POWERUP: u8 = 1;
pub const OTHER_BLOCKS_WAIT: u16 = 1;
pub const GPIO_INTR_DISABLE: u8 = 0;
pub const GPIO_INTR_LOW_LEVEL: u8 = 4;
pub const GPIO_INTR_HIGH_LEVEL: u8 = 5;
pub const PIN_FUNC_GPIO: u8 = 1;
pub const SIG_GPIO_OUT_IDX: u32 = 128;
pub const GPIO_NUM_MAX: usize = 22;
impl WakeSource for TimerWakeupSource {
fn apply(
&self,
rtc: &Rtc<'_>,
triggers: &mut WakeTriggers,
_sleep_config: &mut RtcSleepConfig,
) {
triggers.set_timer(true);
let ticks = crate::clock::us_to_rtc_ticks(self.duration.as_micros() as u64);
let now = rtc.time_since_boot_raw();
let time_in_ticks = now + ticks;
unsafe {
LPWR::regs()
.slp_timer0()
.write(|w| w.slp_val_lo().bits((time_in_ticks & 0xffffffff) as u32));
LPWR::regs()
.int_clr()
.write(|w| w.main_timer().clear_bit_by_one());
LPWR::regs().slp_timer1().write(|w| {
w.slp_val_hi()
.bits(((time_in_ticks >> 32) & 0xffff) as u16)
.main_timer_alarm_en()
.set_bit()
});
}
}
}
impl RtcioWakeupSource<'_, '_> {
fn apply_pin(&self, pin: &mut dyn RtcPinWithResistors, level: WakeupLevel) {
let level = match level {
WakeupLevel::High => {
pin.rtcio_pullup(false);
pin.rtcio_pulldown(true);
GPIO_INTR_HIGH_LEVEL
}
WakeupLevel::Low => {
pin.rtcio_pullup(true);
pin.rtcio_pulldown(false);
GPIO_INTR_LOW_LEVEL
}
};
pin.rtcio_pad_hold(true);
unsafe {
pin.apply_wakeup(true, level);
}
}
}
fn isolate_digital_gpio() {
let rtc_cntl = LPWR::regs();
let io_mux = IO_MUX::regs();
let gpio = GPIO::regs();
let dig_iso = &rtc_cntl.dig_iso().read();
let deep_sleep_hold_is_en =
!dig_iso.dg_pad_force_unhold().bit() && dig_iso.dg_pad_autohold_en().bit();
if !deep_sleep_hold_is_en {
return;
}
for pin_num in 0..GPIO_NUM_MAX {
let pin_hold = rtc_cntl.dig_pad_hold().read().bits() & (1 << pin_num) != 0;
if !pin_hold {
io_mux.gpio(pin_num).modify(|_, w| w.fun_ie().clear_bit());
unsafe {
gpio.func_out_sel_cfg(pin_num)
.modify(|_, w| w.bits(SIG_GPIO_OUT_IDX));
}
io_mux.gpio(pin_num).modify(|_, w| w.fun_wpu().clear_bit());
io_mux.gpio(pin_num).modify(|_, w| w.fun_wpd().clear_bit());
io_mux
.gpio(pin_num)
.modify(|_, w| unsafe { w.mcu_sel().bits(RtcFunction::Digital as u8) });
}
}
}
impl WakeSource for RtcioWakeupSource<'_, '_> {
fn apply(
&self,
_rtc: &Rtc<'_>,
triggers: &mut WakeTriggers,
sleep_config: &mut RtcSleepConfig,
) {
let mut pins = self.pins.borrow_mut();
if pins.is_empty() {
return;
}
triggers.set_gpio(true);
LPWR::regs()
.gpio_wakeup()
.modify(|_, w| w.gpio_pin_clk_gate().set_bit());
LPWR::regs()
.ext_wakeup_conf()
.modify(|_, w| w.gpio_wakeup_filter().set_bit());
if sleep_config.deep_slp() {
for (pin, level) in pins.iter_mut() {
self.apply_pin(*pin, *level);
}
isolate_digital_gpio();
}
LPWR::regs()
.gpio_wakeup()
.modify(|_, w| w.gpio_wakeup_status_clr().set_bit());
LPWR::regs()
.gpio_wakeup()
.modify(|_, w| w.gpio_wakeup_status_clr().clear_bit());
}
}
bitfield::bitfield! {
#[derive(Clone, Copy)]
pub struct RtcConfig(u32);
impl Debug;
pub u8, ck8m_wait, set_ck8m_wait: 7, 0;
pub u8, xtal_wait, set_xtal_wait: 15, 8;
pub u8, pll_wait, set_pll_wait: 23, 16;
pub clkctl_init, set_clkctl_init: 24;
pub pwrctl_init, set_pwrctl_init: 25;
pub rtc_dboost_fpd, set_rtc_dboost_fpd: 26;
pub xtal_fpu, set_xtal_fpu: 27;
pub bbpll_fpu, set_bbpll_fpu: 28;
pub cpu_waiti_clk_gate, set_cpu_waiti_clk_gate: 29;
pub cali_ocode, set_cali_ocode: 30;
}
impl Default for RtcConfig {
fn default() -> Self {
let mut cfg = Self(Default::default());
cfg.set_ck8m_wait(RTC_CNTL_CK8M_WAIT_DEFAULT);
cfg.set_xtal_wait(RTC_CNTL_XTL_BUF_WAIT_DEFAULT);
cfg.set_pll_wait(RTC_CNTL_PLL_BUF_WAIT_DEFAULT);
cfg.set_clkctl_init(true);
cfg.set_pwrctl_init(true);
cfg.set_rtc_dboost_fpd(true);
cfg.set_cpu_waiti_clk_gate(true);
cfg
}
}
bitfield::bitfield! {
#[derive(Clone, Copy)]
pub struct RtcInitConfig(u128);
impl Debug;
pub u8, wifi_powerup_cycles, set_wifi_powerup_cycles: 6, 0;
pub u16, wifi_wait_cycles, set_wifi_wait_cycles: 15, 7;
pub u8, bt_powerup_cycles, set_bt_powerup_cycles: 22, 16;
pub u16, bt_wait_cycles, set_bt_wait_cycles: 31, 23;
pub u8, cpu_top_powerup_cycles, set_cpu_top_powerup_cycles: 38, 32;
pub u16, cpu_top_wait_cycles, set_cpu_top_wait_cycles: 47, 39;
pub u8, dg_wrap_powerup_cycles, set_dg_wrap_powerup_cycles: 54, 48;
pub u16, dg_wrap_wait_cycles, set_dg_wrap_wait_cycles: 63, 55;
pub u8, dg_peri_powerup_cycles, set_dg_peri_powerup_cycles: 70, 64;
pub u16, dg_peri_wait_cycles, set_dg_peri_wait_cycles: 79, 71;
}
impl Default for RtcInitConfig {
fn default() -> Self {
let mut cfg = Self(Default::default());
cfg.set_wifi_powerup_cycles(OTHER_BLOCKS_POWERUP);
cfg.set_bt_powerup_cycles(OTHER_BLOCKS_POWERUP);
cfg.set_cpu_top_powerup_cycles(OTHER_BLOCKS_POWERUP);
cfg.set_dg_wrap_powerup_cycles(OTHER_BLOCKS_POWERUP);
cfg.set_dg_peri_powerup_cycles(OTHER_BLOCKS_POWERUP);
cfg.set_wifi_wait_cycles(OTHER_BLOCKS_WAIT);
cfg.set_bt_wait_cycles(OTHER_BLOCKS_WAIT);
cfg.set_cpu_top_wait_cycles(OTHER_BLOCKS_WAIT);
cfg.set_dg_wrap_wait_cycles(OTHER_BLOCKS_WAIT);
cfg.set_dg_peri_wait_cycles(OTHER_BLOCKS_WAIT);
cfg
}
}
bitfield::bitfield! {
#[derive(Clone, Copy)]
pub struct RtcSleepConfig(u64);
impl Debug;
pub lslp_mem_inf_fpu, set_lslp_mem_inf_fpu: 0;
pub rtc_mem_inf_follow_cpu, set_rtc_mem_inf_follow_cpu: 1;
pub rtc_fastmem_pd_en, set_rtc_fastmem_pd_en: 2;
pub rtc_slowmem_pd_en, set_rtc_slowmem_pd_en: 3;
pub rtc_peri_pd_en, set_rtc_peri_pd_en: 4;
pub wifi_pd_en, set_wifi_pd_en: 5;
pub bt_pd_en, set_bt_pd_en: 6;
pub cpu_pd_en, set_cpu_pd_en: 7;
pub int_8m_pd_en, set_int_8m_pd_en: 8;
pub dig_peri_pd_en, set_dig_peri_pd_en: 9;
pub deep_slp, set_deep_slp: 10;
pub wdt_flashboot_mod_en, set_wdt_flashboot_mod_en: 11;
pub u8, dig_dbias_slp, set_dig_dbias_slp: 16, 12;
pub u8, rtc_dbias_slp, set_rtc_dbias_slp: 21, 17;
pub u8, dbg_atten_slp, set_dbg_atten_slp: 25, 22;
pub bias_sleep_monitor, set_bias_sleep_monitor: 26;
pub bias_sleep_slp, set_bias_sleep_slp: 27;
pub pd_cur_slp, set_pd_cur_slp: 28;
pub vddsdio_pd_en, set_vddsdio_pd_en: 29;
pub xtal_fpu, set_xtal_fpu: 30;
pub rtc_regulator_fpu, set_rtc_regulator_fpu: 31;
pub deep_slp_reject, set_deep_slp_reject: 32;
pub light_slp_reject, set_light_slp_reject: 33;
}
impl Default for RtcSleepConfig {
fn default() -> Self {
let mut cfg = Self(Default::default());
cfg.set_deep_slp_reject(true);
cfg.set_light_slp_reject(true);
cfg.set_rtc_dbias_slp(RTC_CNTL_DBIAS_1V10);
cfg.set_dig_dbias_slp(RTC_CNTL_DBIAS_1V10);
cfg
}
}
const SYSCON_SRAM_POWER_UP: u8 = 0x0000000F;
const SYSCON_ROM_POWER_UP: u8 = 0x00000003;
fn rtc_sleep_pu(val: bool) {
LPWR::regs()
.dig_pwc()
.modify(|_, w| w.lslp_mem_force_pu().bit(val).fastmem_force_lpu().bit(val));
APB_CTRL::regs().front_end_mem_pd().modify(|_r, w| {
w.dc_mem_force_pu()
.bit(val)
.pbus_mem_force_pu()
.bit(val)
.agc_mem_force_pu()
.bit(val)
});
BB::regs()
.bbpd_ctrl()
.modify(|_r, w| w.fft_force_pu().bit(val).dc_est_force_pu().bit(val));
NRX::regs().nrxpd_ctrl().modify(|_, w| {
w.rx_rot_force_pu()
.bit(val)
.vit_force_pu()
.bit(val)
.demap_force_pu()
.bit(val)
});
FE::regs()
.gen_ctrl()
.modify(|_, w| w.iq_est_force_pu().bit(val));
FE2::regs()
.tx_interp_ctrl()
.modify(|_, w| w.tx_inf_force_pu().bit(val));
APB_CTRL::regs().mem_power_up().modify(|_r, w| unsafe {
w.sram_power_up()
.bits(if val { SYSCON_SRAM_POWER_UP } else { 0 })
.rom_power_up()
.bits(if val { SYSCON_ROM_POWER_UP } else { 0 })
});
}
impl RtcSleepConfig {
pub fn deep() -> Self {
let mut cfg = Self::default();
cfg.set_lslp_mem_inf_fpu(false);
cfg.set_rtc_mem_inf_follow_cpu(true); cfg.set_rtc_fastmem_pd_en(true);
cfg.set_rtc_slowmem_pd_en(true);
cfg.set_rtc_peri_pd_en(true);
cfg.set_wifi_pd_en(true);
cfg.set_bt_pd_en(true);
cfg.set_cpu_pd_en(true);
cfg.set_int_8m_pd_en(true);
cfg.set_dig_peri_pd_en(true);
cfg.set_dig_dbias_slp(0);
cfg.set_deep_slp(true);
cfg.set_wdt_flashboot_mod_en(false);
cfg.set_vddsdio_pd_en(true);
cfg.set_xtal_fpu(false);
cfg.set_deep_slp_reject(true);
cfg.set_light_slp_reject(true);
cfg.set_rtc_dbias_slp(RTC_CNTL_DBIAS_1V10);
cfg.set_rtc_regulator_fpu(false);
cfg.set_dbg_atten_slp(RTC_CNTL_DBG_ATTEN_DEEPSLEEP_DEFAULT);
cfg.set_bias_sleep_monitor(true);
cfg.set_bias_sleep_slp(true);
cfg.set_pd_cur_slp(true);
cfg
}
pub(crate) fn base_settings(_rtc: &Rtc<'_>) {
let cfg = RtcConfig::default();
let rtc_cntl = LPWR::regs();
let extmem = EXTMEM::regs();
let system = SYSTEM::regs();
unsafe {
rtc_cntl
.dig_pwc()
.modify(|_, w| w.wifi_force_pd().clear_bit());
regi2c::I2C_DIG_REG_XPD_RTC_REG.write_field(0);
regi2c::I2C_DIG_REG_XPD_DIG_REG.write_field(0);
rtc_cntl.ana_conf().modify(|_, w| w.pvtmon_pu().clear_bit());
rtc_cntl.timer1().modify(|_, w| {
w.pll_buf_wait().bits(cfg.pll_wait());
w.ck8m_wait().bits(cfg.ck8m_wait())
});
rtc_cntl
.timer5()
.modify(|_, w| w.min_slp_val().bits(RTC_CNTL_MIN_SLP_VAL_MIN));
let init_cfg = RtcInitConfig::default();
rtc_cntl.timer3().modify(|_, w| {
w
.wifi_powerup_timer()
.bits(init_cfg.wifi_powerup_cycles())
.wifi_wait_timer()
.bits(init_cfg.wifi_wait_cycles())
.bt_powerup_timer()
.bits(init_cfg.bt_powerup_cycles())
.bt_wait_timer()
.bits(init_cfg.bt_wait_cycles())
});
rtc_cntl.timer4().modify(|_, w| {
w.cpu_top_powerup_timer()
.bits(init_cfg.cpu_top_powerup_cycles())
.cpu_top_wait_timer()
.bits(init_cfg.cpu_top_wait_cycles())
.dg_wrap_powerup_timer()
.bits(init_cfg.dg_wrap_powerup_cycles())
.dg_wrap_wait_timer()
.bits(init_cfg.dg_wrap_wait_cycles())
});
rtc_cntl.timer6().modify(|_, w| {
w.dg_peri_powerup_timer()
.bits(init_cfg.dg_peri_powerup_cycles())
.dg_peri_wait_timer()
.bits(init_cfg.dg_peri_wait_cycles())
});
regi2c::I2C_DIG_REG_EXT_RTC_DREG_SLEEP.write_field(RTC_CNTL_DBIAS_1V10);
regi2c::I2C_DIG_REG_EXT_RTC_DREG.write_field(RTC_CNTL_DBIAS_1V25);
regi2c::I2C_DIG_REG_EXT_DIG_DREG.write_field(RTC_CNTL_DBIAS_1V25);
if cfg.clkctl_init() {
extmem
.cache_mmu_power_ctrl()
.modify(|_, w| w.cache_mmu_mem_force_on().clear_bit());
extmem
.icache_tag_power_ctrl()
.modify(|_, w| w.icache_tag_mem_force_on().clear_bit());
SPI0::regs()
.clock_gate()
.modify(|_, w| w.clk_en().clear_bit());
SPI1::regs()
.clock_gate()
.modify(|_, w| w.clk_en().clear_bit());
}
if cfg.pwrctl_init() {
rtc_cntl
.clk_conf()
.modify(|_, w| w.ck8m_force_pu().clear_bit());
rtc_cntl
.options0()
.modify(|_, w| w.xtl_force_pu().bit(cfg.xtal_fpu() || cfg.bbpll_fpu()));
rtc_cntl
.ana_conf()
.modify(|_, w| w.plla_force_pu().clear_bit().plla_force_pd().set_bit());
rtc_cntl.ana_conf().modify(|_, w| {
w
.reset_por_force_pd()
.clear_bit()
});
rtc_cntl.options0().modify(|_, w| {
w.bbpll_force_pu()
.bit(cfg.bbpll_fpu())
.bbpll_i2c_force_pu()
.bit(cfg.bbpll_fpu())
.bb_i2c_force_pu()
.bit(cfg.bbpll_fpu())
});
rtc_cntl.rtc_cntl().modify(|_, w| {
w.regulator_force_pu()
.clear_bit()
.dboost_force_pu()
.clear_bit()
.dboost_force_pd()
.bit(cfg.rtc_dboost_fpd())
});
system
.mem_pd_mask()
.modify(|_, w| w.lslp_mem_pd_mask().clear_bit());
rtc_sleep_pu(false);
rtc_cntl.dig_pwc().modify(|_, w| {
w.dg_wrap_force_pu()
.clear_bit()
.wifi_force_pu()
.clear_bit()
.bt_force_pu()
.clear_bit()
.cpu_top_force_pu()
.clear_bit()
.dg_peri_force_pu()
.clear_bit()
});
rtc_cntl.dig_iso().modify(|_, w| {
w.dg_wrap_force_noiso()
.clear_bit()
.wifi_force_noiso()
.clear_bit()
.bt_force_noiso()
.clear_bit()
.cpu_top_force_noiso()
.clear_bit()
.dg_peri_force_noiso()
.clear_bit()
});
system
.cpu_per_conf()
.modify(|_, w| w.cpu_wait_mode_force_on().bit(!cfg.cpu_waiti_clk_gate()));
rtc_cntl.dig_iso().modify(|_, w| {
w.dg_pad_force_unhold()
.clear_bit()
.dg_pad_force_noiso()
.clear_bit()
});
}
rtc_cntl
.dig_iso()
.modify(|_, w| w.wifi_force_iso().set_bit().bt_force_iso().set_bit());
rtc_cntl
.dig_pwc()
.modify(|_, w| w.wifi_force_pd().set_bit().bt_force_pd().set_bit());
rtc_cntl.int_ena().write(|w| w.bits(0));
rtc_cntl.int_clr().write(|w| w.bits(u32::MAX));
regi2c::I2C_ULP_IR_FORCE_XPD_CK.write_field(1);
}
}
pub(crate) fn apply(&self) {
let rtc_cntl = LPWR::regs();
if self.lslp_mem_inf_fpu() {
rtc_sleep_pu(true);
}
if self.wifi_pd_en() {
rtc_cntl.dig_iso().modify(|_, w| {
w.wifi_force_noiso()
.clear_bit()
.wifi_force_iso()
.clear_bit()
});
rtc_cntl
.dig_pwc()
.modify(|_, w| w.wifi_force_pu().clear_bit().wifi_pd_en().set_bit());
} else {
rtc_cntl.dig_pwc().modify(|_, w| w.wifi_pd_en().clear_bit());
}
if self.bt_pd_en() {
rtc_cntl
.dig_iso()
.modify(|_, w| w.bt_force_noiso().clear_bit().bt_force_iso().clear_bit());
rtc_cntl
.dig_pwc()
.modify(|_, w| w.bt_force_pu().clear_bit().bt_pd_en().set_bit());
} else {
rtc_cntl.dig_pwc().modify(|_, w| w.bt_pd_en().clear_bit());
}
rtc_cntl
.dig_pwc()
.modify(|_, w| w.cpu_top_pd_en().bit(self.cpu_pd_en()));
rtc_cntl
.dig_pwc()
.modify(|_, w| w.dg_peri_pd_en().bit(self.dig_peri_pd_en()));
unsafe {
rtc_cntl.bias_conf().modify(|_, w| {
w.dbg_atten_monitor()
.bits(RTC_CNTL_DBG_ATTEN_MONITOR_DEFAULT)
.bias_sleep_monitor()
.bit(RTC_CNTL_BIASSLP_MONITOR_DEFAULT)
.pd_cur_monitor()
.bit(RTC_CNTL_PD_CUR_MONITOR_DEFAULT)
});
assert!(!self.pd_cur_slp() || self.bias_sleep_slp());
regi2c::I2C_DIG_REG_EXT_RTC_DREG_SLEEP.write_field(self.rtc_dbias_slp());
regi2c::I2C_DIG_REG_EXT_DIG_DREG_SLEEP.write_field(self.dig_dbias_slp());
rtc_cntl.bias_conf().modify(|_, w| {
w.dbg_atten_deep_slp()
.bits(self.dbg_atten_slp())
.bias_sleep_deep_slp()
.bit(self.bias_sleep_slp())
.pd_cur_deep_slp()
.bit(self.pd_cur_slp())
});
if self.deep_slp() {
regi2c::I2C_ULP_IR_FORCE_XPD_CK.write_field(0);
rtc_cntl
.dig_pwc()
.modify(|_, w| w.dg_wrap_pd_en().set_bit());
rtc_cntl.ana_conf().modify(|_, w| {
w.ckgen_i2c_pu()
.clear_bit()
.pll_i2c_pu()
.clear_bit()
.rfrx_pbus_pu()
.clear_bit()
.txrf_i2c_pu()
.clear_bit()
});
rtc_cntl
.options0()
.modify(|_, w| w.bb_i2c_force_pu().clear_bit());
} else {
rtc_cntl.bias_conf().modify(|_, w| {
w.dg_vdd_drv_b_slp_en()
.set_bit()
.dg_vdd_drv_b_slp()
.bits(RTC_CNTL_DG_VDD_DRV_B_SLP_DEFAULT)
});
rtc_cntl
.dig_pwc()
.modify(|_, w| w.dg_wrap_pd_en().clear_bit());
}
rtc_cntl
.dig_pwc()
.modify(|_, w| w.lslp_mem_force_pu().set_bit());
rtc_cntl
.rtc_cntl()
.modify(|_, w| w.regulator_force_pu().bit(self.rtc_regulator_fpu()));
rtc_cntl.clk_conf().modify(|_, w| {
w.ck8m_force_pu()
.bit(!self.int_8m_pd_en())
.ck8m_force_nogating()
.bit(!self.int_8m_pd_en())
});
rtc_cntl.sdio_conf().modify(|_, w| {
w.sdio_force()
.clear_bit()
.sdio_reg_pd_en()
.bit(self.vddsdio_pd_en())
});
rtc_cntl.slp_reject_conf().modify(|_, w| {
w.deep_slp_reject_en()
.bit(self.deep_slp_reject())
.light_slp_reject_en()
.bit(self.light_slp_reject())
});
rtc_cntl
.options0()
.modify(|_, w| w.xtl_force_pu().bit(self.xtal_fpu()));
rtc_cntl
.clk_conf()
.modify(|_, w| w.xtal_global_force_nogating().bit(self.xtal_fpu()));
}
}
pub(crate) fn start_sleep(&self, wakeup_triggers: WakeTriggers) {
LPWR::regs()
.wakeup_state()
.modify(|_, w| unsafe { w.wakeup_ena().bits(wakeup_triggers.0.into()) });
LPWR::regs()
.state0()
.write(|w| w.sleep_en().set_bit().slp_wakeup().set_bit());
}
pub(crate) fn finish_sleep(&self) {
LPWR::regs().int_clr().write(|w| {
w.slp_reject().clear_bit_by_one();
w.slp_wakeup().clear_bit_by_one()
});
if self.lslp_mem_inf_fpu() {
rtc_sleep_pu(true);
}
}
}