| 
									
										
										
										
											2016-08-24 17:21:27 +08:00
										 |  |  | #ifndef PANIC_H
 | 
					
						
							|  |  |  | #define PANIC_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-18 10:57:53 +11:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-10-25 17:05:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PANIC_RSN_NONE 0
 | 
					
						
							|  |  |  | #define PANIC_RSN_DEBUGEXCEPTION 1
 | 
					
						
							|  |  |  | #define PANIC_RSN_DOUBLEEXCEPTION 2
 | 
					
						
							|  |  |  | #define PANIC_RSN_KERNELEXCEPTION 3
 | 
					
						
							|  |  |  | #define PANIC_RSN_COPROCEXCEPTION 4
 | 
					
						
							| 
									
										
										
										
											2016-10-25 18:08:55 +08:00
										 |  |  | #define PANIC_RSN_INTWDT_CPU0 5
 | 
					
						
							|  |  |  | #define PANIC_RSN_INTWDT_CPU1 6
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:50:39 +08:00
										 |  |  | #define PANIC_RSN_CACHEERR 7
 | 
					
						
							|  |  |  | #define PANIC_RSN_MAX 7
 | 
					
						
							| 
									
										
										
										
											2016-10-25 17:05:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __ASSEMBLER__
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 16:42:45 +08:00
										 |  |  | #include "esp_err.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 13:05:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @brief If an OCD is connected over JTAG. set breakpoint 0 to the given function  | 
					
						
							|  |  |  |  *        address. Do nothing otherwise. | 
					
						
							|  |  |  |  * @param data  Pointer to the target breakpoint position | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-26 12:23:01 +08:00
										 |  |  | void esp_set_breakpoint_if_jtag(void *fn); | 
					
						
							| 
									
										
										
										
											2016-08-24 17:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 16:42:45 +08:00
										 |  |  | #define ESP_WATCHPOINT_LOAD 0x40000000
 | 
					
						
							|  |  |  | #define ESP_WATCHPOINT_STORE 0x80000000
 | 
					
						
							|  |  |  | #define ESP_WATCHPOINT_ACCESS 0xC0000000
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 13:05:19 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief Set a watchpoint to break/panic when a certain memory range is accessed. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param no Watchpoint number. On the ESP32, this can be 0 or 1. | 
					
						
							|  |  |  |  * @param adr Base address to watch | 
					
						
							|  |  |  |  * @param size Size of the region, starting at the base address, to watch. Must | 
					
						
							|  |  |  |  *             be one of 2^n, with n in [0..6]. | 
					
						
							|  |  |  |  * @param flags One of ESP_WATCHPOINT_* flags | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @return ESP_ERR_INVALID_ARG on invalid arg, ESP_OK otherwise | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @warning The ESP32 watchpoint hardware watches a region of bytes by effectively  | 
					
						
							|  |  |  |  *          masking away the lower n bits for a region with size 2^n. If adr does | 
					
						
							|  |  |  |  *          not have zero for these lower n bits, you may not be watching the | 
					
						
							|  |  |  |  *          region you intended. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-01-09 16:42:45 +08:00
										 |  |  | esp_err_t esp_set_watchpoint(int no, void *adr, int size, int flags); | 
					
						
							| 
									
										
										
										
											2017-01-10 13:05:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @brief Clear a watchpoint | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param no Watchpoint to clear | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-01-09 16:42:45 +08:00
										 |  |  | void esp_clear_watchpoint(int no); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 21:09:47 +03:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief Stops panic WDT | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void esp_panic_wdt_stop(void); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-20 19:38:38 +03:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief Checks stack pointer | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static inline bool esp_stack_ptr_is_sane(uint32_t sp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return !(sp < 0x3ffae010UL || sp > 0x3ffffff0UL || ((sp & 0xf) != 0)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-25 17:05:13 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-08-24 17:21:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-18 10:57:53 +11:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 13:05:19 +08:00
										 |  |  | #endif
 |