Skip to content

Commit

Permalink
soc/rtc_clk: don’t clear DPORT_CPUPERIOD_SEL when switching to XTAL
Browse files Browse the repository at this point in the history
This is not necessary since RTC_CNTL_SOC_CLK_SEL is set before this.
  • Loading branch information
igrr committed Feb 28, 2019
1 parent 2bdb18f commit 3e40611
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions components/soc/esp32/rtc_clk.c
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,6 @@ void rtc_clk_cpu_freq_to_xtal(int freq, int div)
REG_WRITE(APB_CTRL_XTAL_TICK_CONF_REG, freq * MHZ / REF_CLK_FREQ - 1);
/* switch clock source */
REG_SET_FIELD(RTC_CNTL_CLK_CONF_REG, RTC_CNTL_SOC_CLK_SEL, RTC_CNTL_SOC_CLK_SEL_XTL);
DPORT_REG_WRITE(DPORT_CPU_PER_CONF_REG, 0); /* clear DPORT_CPUPERIOD_SEL */
rtc_clk_apb_freq_update(freq * MHZ);
/* lower the voltage */
if (freq <= 2) {
Expand All @@ -411,7 +410,6 @@ static void rtc_clk_cpu_freq_to_8m()
REG_SET_FIELD(RTC_CNTL_REG, RTC_CNTL_DIG_DBIAS_WAK, DIG_DBIAS_XTAL);
REG_SET_FIELD(APB_CTRL_SYSCLK_CONF_REG, APB_CTRL_PRE_DIV_CNT, 0);
REG_SET_FIELD(RTC_CNTL_CLK_CONF_REG, RTC_CNTL_SOC_CLK_SEL, RTC_CNTL_SOC_CLK_SEL_8M);
DPORT_REG_WRITE(DPORT_CPU_PER_CONF_REG, 0); // clear DPORT_CPUPERIOD_SEL
rtc_clk_apb_freq_update(RTC_FAST_CLK_FREQ_8M);
}

Expand Down

0 comments on commit 3e40611

Please sign in to comment.