| 
									
										
										
										
											2021-12-22 22:18:43 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "sdkconfig.h"
 | 
					
						
							|  |  |  | #include <sys/param.h>
 | 
					
						
							|  |  |  | #include "soc/soc_caps.h"
 | 
					
						
							|  |  |  | #include "hal/efuse_ll.h"
 | 
					
						
							|  |  |  | #include "hal/assert.h"
 | 
					
						
							|  |  |  | #include "hal/efuse_hal.h"
 | 
					
						
							| 
									
										
										
										
											2022-03-17 21:58:15 +08:00
										 |  |  | #include "esp_attr.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-22 22:18:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void efuse_hal_get_mac(uint8_t *mac) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     *((uint32_t*)&mac[0]) = efuse_ll_get_mac0(); | 
					
						
							|  |  |  |     *((uint16_t*)&mac[4]) = (uint16_t) efuse_ll_get_mac1(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-05-26 03:16:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 21:58:15 +08:00
										 |  |  | IRAM_ATTR uint32_t efuse_hal_chip_revision(void) | 
					
						
							| 
									
										
										
										
											2022-05-26 03:16:15 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return efuse_hal_get_major_chip_version() * 100 + efuse_hal_get_minor_chip_version(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-03-16 16:47:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-28 10:31:44 +08:00
										 |  |  | IRAM_ATTR uint32_t efuse_hal_blk_version(void) | 
					
						
							| 
									
										
										
										
											2023-05-05 19:56:44 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return efuse_ll_get_blk_version_major() * 100 + efuse_ll_get_blk_version_minor(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IRAM_ATTR bool efuse_hal_get_disable_wafer_version_major(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return efuse_ll_get_disable_wafer_version_major(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-16 16:47:53 +08:00
										 |  |  | IRAM_ATTR bool efuse_hal_flash_encryption_enabled(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t flash_crypt_cnt = efuse_ll_get_flash_crypt_cnt(); | 
					
						
							|  |  |  |     bool enabled = false; | 
					
						
							|  |  |  |     while (flash_crypt_cnt) { | 
					
						
							|  |  |  |         if (flash_crypt_cnt & 1) { | 
					
						
							|  |  |  |             enabled = !enabled; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         flash_crypt_cnt >>= 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return enabled; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-03-31 14:34:30 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | #if SOC_ECDSA_SUPPORTED
 | 
					
						
							|  |  |  | void efuse_hal_set_ecdsa_key(int efuse_blk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     efuse_ll_set_ecdsa_key_blk(efuse_blk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     efuse_ll_rs_bypass_update(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     efuse_hal_read(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 |