| 
									
										
										
										
											2017-06-02 17:50:19 +08:00
										 |  |  | // Copyright 2015-2017 Espressif Systems (Shanghai) PTE LTD
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Licensed under the Apache License, Version 2.0 (the "License");
 | 
					
						
							|  |  |  | // you may not use this file except in compliance with the License.
 | 
					
						
							|  |  |  | // You may obtain a copy of the License at
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Unless required by applicable law or agreed to in writing, software
 | 
					
						
							|  |  |  | // distributed under the License is distributed on an "AS IS" BASIS,
 | 
					
						
							|  |  |  | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
					
						
							|  |  |  | // See the License for the specific language governing permissions and
 | 
					
						
							|  |  |  | // limitations under the License.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdint.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <stdbool.h>
 | 
					
						
							|  |  |  | #include "sdkconfig.h"
 | 
					
						
							|  |  |  | #include "soc/soc.h"
 | 
					
						
							|  |  |  | #include "soc/cpu.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-13 18:02:45 +08:00
										 |  |  | #include "soc/rtc_periph.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-14 17:29:32 +08:00
										 |  |  | #include "esp32/rom/ets_sys.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-21 12:21:01 +08:00
										 |  |  | #include "esp_private/system_internal.h"
 | 
					
						
							| 
									
										
										
										
											2017-06-02 17:50:19 +08:00
										 |  |  | #include "driver/rtc_cntl.h"
 | 
					
						
							|  |  |  | #include "freertos/FreeRTOS.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:51:55 +02:00
										 |  |  | #ifdef CONFIG_ESP32_BROWNOUT_DET_LVL
 | 
					
						
							|  |  |  | #define BROWNOUT_DET_LVL CONFIG_ESP32_BROWNOUT_DET_LVL
 | 
					
						
							| 
									
										
										
										
											2017-06-02 17:50:19 +08:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #define BROWNOUT_DET_LVL 0
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:51:55 +02:00
										 |  |  | #endif //CONFIG_ESP32_BROWNOUT_DET_LVL
 | 
					
						
							| 
									
										
										
										
											2017-06-02 17:50:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 09:42:36 +01:00
										 |  |  | static void rtc_brownout_isr_handler(void *arg) | 
					
						
							| 
									
										
										
										
											2017-06-02 17:50:19 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Normally RTC ISR clears the interrupt flag after the application-supplied
 | 
					
						
							|  |  |  |      * handler returns. Since restart is called here, the flag needs to be | 
					
						
							|  |  |  |      * cleared manually. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     REG_WRITE(RTC_CNTL_INT_CLR_REG, RTC_CNTL_BROWN_OUT_INT_CLR); | 
					
						
							|  |  |  |     /* Stall the other CPU to make sure the code running there doesn't use UART
 | 
					
						
							|  |  |  |      * at the same time as the following ets_printf. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     esp_cpu_stall(!xPortGetCoreID()); | 
					
						
							| 
									
										
										
										
											2018-07-29 12:57:59 +03:00
										 |  |  |     esp_reset_reason_set_hint(ESP_RST_BROWNOUT); | 
					
						
							| 
									
										
										
										
											2017-06-02 17:50:19 +08:00
										 |  |  |     ets_printf("\r\nBrownout detector was triggered\r\n\r\n"); | 
					
						
							|  |  |  |     esp_restart_noos(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-16 16:33:30 +07:00
										 |  |  | void esp_brownout_init(void) | 
					
						
							| 
									
										
										
										
											2017-06-02 17:50:19 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     REG_WRITE(RTC_CNTL_BROWN_OUT_REG, | 
					
						
							|  |  |  |             RTC_CNTL_BROWN_OUT_ENA /* Enable BOD */ | 
					
						
							|  |  |  |             | RTC_CNTL_BROWN_OUT_PD_RF_ENA /* Automatically power down RF */ | 
					
						
							|  |  |  |             /* Reset timeout must be set to >1 even if BOR feature is not used */ | 
					
						
							|  |  |  |             | (2 << RTC_CNTL_BROWN_OUT_RST_WAIT_S) | 
					
						
							|  |  |  |             | (BROWNOUT_DET_LVL << RTC_CNTL_DBROWN_OUT_THRES_S)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ESP_ERROR_CHECK( rtc_isr_register(rtc_brownout_isr_handler, NULL, RTC_CNTL_BROWN_OUT_INT_ENA_M) ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     REG_SET_BIT(RTC_CNTL_INT_ENA_REG, RTC_CNTL_BROWN_OUT_INT_ENA_M); | 
					
						
							|  |  |  | } |