esp_efuse_table.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776
  1. /*
  2. * SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include "sdkconfig.h"
  7. #include "esp_efuse.h"
  8. #include <assert.h>
  9. #include "esp_efuse_table.h"
  10. // md5_digest_table 42c79ddff54c8f03645a832a69f60af2
  11. // This file was generated from the file esp_efuse_table.csv. DO NOT CHANGE THIS FILE MANUALLY.
  12. // If you want to change some fields, you need to change esp_efuse_table.csv file
  13. // then run `efuse_common_table` or `efuse_custom_table` command it will generate this file.
  14. // To show efuse_table run the command 'show_efuse_table'.
  15. static const esp_efuse_desc_t WR_DIS[] = {
  16. {EFUSE_BLK0, 0, 32}, // [] Disable programming of individual eFuses,
  17. };
  18. static const esp_efuse_desc_t WR_DIS_RD_DIS[] = {
  19. {EFUSE_BLK0, 0, 1}, // [] wr_dis of RD_DIS,
  20. };
  21. static const esp_efuse_desc_t WR_DIS_DIS_ICACHE[] = {
  22. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_ICACHE,
  23. };
  24. static const esp_efuse_desc_t WR_DIS_DIS_DCACHE[] = {
  25. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_DCACHE,
  26. };
  27. static const esp_efuse_desc_t WR_DIS_DIS_DOWNLOAD_ICACHE[] = {
  28. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_DOWNLOAD_ICACHE,
  29. };
  30. static const esp_efuse_desc_t WR_DIS_DIS_DOWNLOAD_DCACHE[] = {
  31. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_DOWNLOAD_DCACHE,
  32. };
  33. static const esp_efuse_desc_t WR_DIS_DIS_FORCE_DOWNLOAD[] = {
  34. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_FORCE_DOWNLOAD,
  35. };
  36. static const esp_efuse_desc_t WR_DIS_DIS_USB[] = {
  37. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_USB,
  38. };
  39. static const esp_efuse_desc_t WR_DIS_DIS_TWAI[] = {
  40. {EFUSE_BLK0, 2, 1}, // [WR_DIS.DIS_CAN] wr_dis of DIS_TWAI,
  41. };
  42. static const esp_efuse_desc_t WR_DIS_DIS_BOOT_REMAP[] = {
  43. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_BOOT_REMAP,
  44. };
  45. static const esp_efuse_desc_t WR_DIS_SOFT_DIS_JTAG[] = {
  46. {EFUSE_BLK0, 2, 1}, // [] wr_dis of SOFT_DIS_JTAG,
  47. };
  48. static const esp_efuse_desc_t WR_DIS_HARD_DIS_JTAG[] = {
  49. {EFUSE_BLK0, 2, 1}, // [] wr_dis of HARD_DIS_JTAG,
  50. };
  51. static const esp_efuse_desc_t WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT[] = {
  52. {EFUSE_BLK0, 2, 1}, // [] wr_dis of DIS_DOWNLOAD_MANUAL_ENCRYPT,
  53. };
  54. static const esp_efuse_desc_t WR_DIS_VDD_SPI_XPD[] = {
  55. {EFUSE_BLK0, 3, 1}, // [] wr_dis of VDD_SPI_XPD,
  56. };
  57. static const esp_efuse_desc_t WR_DIS_VDD_SPI_TIEH[] = {
  58. {EFUSE_BLK0, 3, 1}, // [] wr_dis of VDD_SPI_TIEH,
  59. };
  60. static const esp_efuse_desc_t WR_DIS_VDD_SPI_FORCE[] = {
  61. {EFUSE_BLK0, 3, 1}, // [] wr_dis of VDD_SPI_FORCE,
  62. };
  63. static const esp_efuse_desc_t WR_DIS_WDT_DELAY_SEL[] = {
  64. {EFUSE_BLK0, 3, 1}, // [] wr_dis of WDT_DELAY_SEL,
  65. };
  66. static const esp_efuse_desc_t WR_DIS_SPI_BOOT_CRYPT_CNT[] = {
  67. {EFUSE_BLK0, 4, 1}, // [] wr_dis of SPI_BOOT_CRYPT_CNT,
  68. };
  69. static const esp_efuse_desc_t WR_DIS_SECURE_BOOT_KEY_REVOKE0[] = {
  70. {EFUSE_BLK0, 5, 1}, // [] wr_dis of SECURE_BOOT_KEY_REVOKE0,
  71. };
  72. static const esp_efuse_desc_t WR_DIS_SECURE_BOOT_KEY_REVOKE1[] = {
  73. {EFUSE_BLK0, 6, 1}, // [] wr_dis of SECURE_BOOT_KEY_REVOKE1,
  74. };
  75. static const esp_efuse_desc_t WR_DIS_SECURE_BOOT_KEY_REVOKE2[] = {
  76. {EFUSE_BLK0, 7, 1}, // [] wr_dis of SECURE_BOOT_KEY_REVOKE2,
  77. };
  78. static const esp_efuse_desc_t WR_DIS_KEY_PURPOSE_0[] = {
  79. {EFUSE_BLK0, 8, 1}, // [WR_DIS.KEY0_PURPOSE] wr_dis of KEY_PURPOSE_0,
  80. };
  81. static const esp_efuse_desc_t WR_DIS_KEY_PURPOSE_1[] = {
  82. {EFUSE_BLK0, 9, 1}, // [WR_DIS.KEY1_PURPOSE] wr_dis of KEY_PURPOSE_1,
  83. };
  84. static const esp_efuse_desc_t WR_DIS_KEY_PURPOSE_2[] = {
  85. {EFUSE_BLK0, 10, 1}, // [WR_DIS.KEY2_PURPOSE] wr_dis of KEY_PURPOSE_2,
  86. };
  87. static const esp_efuse_desc_t WR_DIS_KEY_PURPOSE_3[] = {
  88. {EFUSE_BLK0, 11, 1}, // [WR_DIS.KEY3_PURPOSE] wr_dis of KEY_PURPOSE_3,
  89. };
  90. static const esp_efuse_desc_t WR_DIS_KEY_PURPOSE_4[] = {
  91. {EFUSE_BLK0, 12, 1}, // [WR_DIS.KEY4_PURPOSE] wr_dis of KEY_PURPOSE_4,
  92. };
  93. static const esp_efuse_desc_t WR_DIS_KEY_PURPOSE_5[] = {
  94. {EFUSE_BLK0, 13, 1}, // [WR_DIS.KEY5_PURPOSE] wr_dis of KEY_PURPOSE_5,
  95. };
  96. static const esp_efuse_desc_t WR_DIS_SECURE_BOOT_EN[] = {
  97. {EFUSE_BLK0, 15, 1}, // [] wr_dis of SECURE_BOOT_EN,
  98. };
  99. static const esp_efuse_desc_t WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE[] = {
  100. {EFUSE_BLK0, 16, 1}, // [] wr_dis of SECURE_BOOT_AGGRESSIVE_REVOKE,
  101. };
  102. static const esp_efuse_desc_t WR_DIS_FLASH_TPUW[] = {
  103. {EFUSE_BLK0, 18, 1}, // [] wr_dis of FLASH_TPUW,
  104. };
  105. static const esp_efuse_desc_t WR_DIS_DIS_DOWNLOAD_MODE[] = {
  106. {EFUSE_BLK0, 18, 1}, // [] wr_dis of DIS_DOWNLOAD_MODE,
  107. };
  108. static const esp_efuse_desc_t WR_DIS_DIS_LEGACY_SPI_BOOT[] = {
  109. {EFUSE_BLK0, 18, 1}, // [] wr_dis of DIS_LEGACY_SPI_BOOT,
  110. };
  111. static const esp_efuse_desc_t WR_DIS_UART_PRINT_CHANNEL[] = {
  112. {EFUSE_BLK0, 18, 1}, // [] wr_dis of UART_PRINT_CHANNEL,
  113. };
  114. static const esp_efuse_desc_t WR_DIS_DIS_USB_DOWNLOAD_MODE[] = {
  115. {EFUSE_BLK0, 18, 1}, // [] wr_dis of DIS_USB_DOWNLOAD_MODE,
  116. };
  117. static const esp_efuse_desc_t WR_DIS_ENABLE_SECURITY_DOWNLOAD[] = {
  118. {EFUSE_BLK0, 18, 1}, // [] wr_dis of ENABLE_SECURITY_DOWNLOAD,
  119. };
  120. static const esp_efuse_desc_t WR_DIS_UART_PRINT_CONTROL[] = {
  121. {EFUSE_BLK0, 18, 1}, // [] wr_dis of UART_PRINT_CONTROL,
  122. };
  123. static const esp_efuse_desc_t WR_DIS_PIN_POWER_SELECTION[] = {
  124. {EFUSE_BLK0, 18, 1}, // [] wr_dis of PIN_POWER_SELECTION,
  125. };
  126. static const esp_efuse_desc_t WR_DIS_FLASH_TYPE[] = {
  127. {EFUSE_BLK0, 18, 1}, // [] wr_dis of FLASH_TYPE,
  128. };
  129. static const esp_efuse_desc_t WR_DIS_FORCE_SEND_RESUME[] = {
  130. {EFUSE_BLK0, 18, 1}, // [] wr_dis of FORCE_SEND_RESUME,
  131. };
  132. static const esp_efuse_desc_t WR_DIS_SECURE_VERSION[] = {
  133. {EFUSE_BLK0, 18, 1}, // [] wr_dis of SECURE_VERSION,
  134. };
  135. static const esp_efuse_desc_t WR_DIS_BLK1[] = {
  136. {EFUSE_BLK0, 20, 1}, // [] wr_dis of BLOCK1,
  137. };
  138. static const esp_efuse_desc_t WR_DIS_MAC[] = {
  139. {EFUSE_BLK0, 20, 1}, // [WR_DIS.MAC_FACTORY] wr_dis of MAC,
  140. };
  141. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_CLK[] = {
  142. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_CLK,
  143. };
  144. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_Q[] = {
  145. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_Q,
  146. };
  147. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_D[] = {
  148. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_D,
  149. };
  150. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_CS[] = {
  151. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_CS,
  152. };
  153. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_HD[] = {
  154. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_HD,
  155. };
  156. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_WP[] = {
  157. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_WP,
  158. };
  159. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_DQS[] = {
  160. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_DQS,
  161. };
  162. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_D4[] = {
  163. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_D4,
  164. };
  165. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_D5[] = {
  166. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_D5,
  167. };
  168. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_D6[] = {
  169. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_D6,
  170. };
  171. static const esp_efuse_desc_t WR_DIS_SPI_PAD_CONFIG_D7[] = {
  172. {EFUSE_BLK0, 20, 1}, // [] wr_dis of SPI_PAD_CONFIG_D7,
  173. };
  174. static const esp_efuse_desc_t WR_DIS_WAFER_VERSION_MAJOR[] = {
  175. {EFUSE_BLK0, 20, 1}, // [] wr_dis of WAFER_VERSION_MAJOR,
  176. };
  177. static const esp_efuse_desc_t WR_DIS_WAFER_VERSION_MINOR_HI[] = {
  178. {EFUSE_BLK0, 20, 1}, // [] wr_dis of WAFER_VERSION_MINOR_HI,
  179. };
  180. static const esp_efuse_desc_t WR_DIS_FLASH_VERSION[] = {
  181. {EFUSE_BLK0, 20, 1}, // [] wr_dis of FLASH_VERSION,
  182. };
  183. static const esp_efuse_desc_t WR_DIS_BLK_VERSION_MAJOR[] = {
  184. {EFUSE_BLK0, 20, 1}, // [] wr_dis of BLK_VERSION_MAJOR,
  185. };
  186. static const esp_efuse_desc_t WR_DIS_PSRAM_VERSION[] = {
  187. {EFUSE_BLK0, 20, 1}, // [] wr_dis of PSRAM_VERSION,
  188. };
  189. static const esp_efuse_desc_t WR_DIS_PKG_VERSION[] = {
  190. {EFUSE_BLK0, 20, 1}, // [] wr_dis of PKG_VERSION,
  191. };
  192. static const esp_efuse_desc_t WR_DIS_WAFER_VERSION_MINOR_LO[] = {
  193. {EFUSE_BLK0, 20, 1}, // [] wr_dis of WAFER_VERSION_MINOR_LO,
  194. };
  195. static const esp_efuse_desc_t WR_DIS_SYS_DATA_PART1[] = {
  196. {EFUSE_BLK0, 21, 1}, // [] wr_dis of BLOCK2,
  197. };
  198. static const esp_efuse_desc_t WR_DIS_OPTIONAL_UNIQUE_ID[] = {
  199. {EFUSE_BLK0, 21, 1}, // [] wr_dis of OPTIONAL_UNIQUE_ID,
  200. };
  201. static const esp_efuse_desc_t WR_DIS_ADC_CALIB[] = {
  202. {EFUSE_BLK0, 21, 1}, // [] wr_dis of ADC_CALIB,
  203. };
  204. static const esp_efuse_desc_t WR_DIS_BLK_VERSION_MINOR[] = {
  205. {EFUSE_BLK0, 21, 1}, // [] wr_dis of BLK_VERSION_MINOR,
  206. };
  207. static const esp_efuse_desc_t WR_DIS_TEMP_CALIB[] = {
  208. {EFUSE_BLK0, 21, 1}, // [] wr_dis of TEMP_CALIB,
  209. };
  210. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A10H[] = {
  211. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A10H,
  212. };
  213. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A11H[] = {
  214. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A11H,
  215. };
  216. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A12H[] = {
  217. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A12H,
  218. };
  219. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A13H[] = {
  220. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A13H,
  221. };
  222. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A20H[] = {
  223. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A20H,
  224. };
  225. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A21H[] = {
  226. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A21H,
  227. };
  228. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A22H[] = {
  229. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A22H,
  230. };
  231. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A23H[] = {
  232. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A23H,
  233. };
  234. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A10L[] = {
  235. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A10L,
  236. };
  237. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A11L[] = {
  238. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A11L,
  239. };
  240. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A12L[] = {
  241. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A12L,
  242. };
  243. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A13L[] = {
  244. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A13L,
  245. };
  246. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A20L[] = {
  247. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A20L,
  248. };
  249. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A21L[] = {
  250. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A21L,
  251. };
  252. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A22L[] = {
  253. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A22L,
  254. };
  255. static const esp_efuse_desc_t WR_DIS_RTCCALIB_V1IDX_A23L[] = {
  256. {EFUSE_BLK0, 21, 1}, // [] wr_dis of RTCCALIB_V1IDX_A23L,
  257. };
  258. static const esp_efuse_desc_t WR_DIS_BLOCK_USR_DATA[] = {
  259. {EFUSE_BLK0, 22, 1}, // [WR_DIS.USER_DATA] wr_dis of BLOCK_USR_DATA,
  260. };
  261. static const esp_efuse_desc_t WR_DIS_CUSTOM_MAC[] = {
  262. {EFUSE_BLK0, 22, 1}, // [WR_DIS.MAC_CUSTOM WR_DIS.USER_DATA_MAC_CUSTOM] wr_dis of CUSTOM_MAC,
  263. };
  264. static const esp_efuse_desc_t WR_DIS_BLOCK_KEY0[] = {
  265. {EFUSE_BLK0, 23, 1}, // [WR_DIS.KEY0] wr_dis of BLOCK_KEY0,
  266. };
  267. static const esp_efuse_desc_t WR_DIS_BLOCK_KEY1[] = {
  268. {EFUSE_BLK0, 24, 1}, // [WR_DIS.KEY1] wr_dis of BLOCK_KEY1,
  269. };
  270. static const esp_efuse_desc_t WR_DIS_BLOCK_KEY2[] = {
  271. {EFUSE_BLK0, 25, 1}, // [WR_DIS.KEY2] wr_dis of BLOCK_KEY2,
  272. };
  273. static const esp_efuse_desc_t WR_DIS_BLOCK_KEY3[] = {
  274. {EFUSE_BLK0, 26, 1}, // [WR_DIS.KEY3] wr_dis of BLOCK_KEY3,
  275. };
  276. static const esp_efuse_desc_t WR_DIS_BLOCK_KEY4[] = {
  277. {EFUSE_BLK0, 27, 1}, // [WR_DIS.KEY4] wr_dis of BLOCK_KEY4,
  278. };
  279. static const esp_efuse_desc_t WR_DIS_BLOCK_KEY5[] = {
  280. {EFUSE_BLK0, 28, 1}, // [WR_DIS.KEY5] wr_dis of BLOCK_KEY5,
  281. };
  282. static const esp_efuse_desc_t WR_DIS_BLOCK_SYS_DATA2[] = {
  283. {EFUSE_BLK0, 29, 1}, // [WR_DIS.SYS_DATA_PART2] wr_dis of BLOCK_SYS_DATA2,
  284. };
  285. static const esp_efuse_desc_t WR_DIS_USB_EXCHG_PINS[] = {
  286. {EFUSE_BLK0, 30, 1}, // [] wr_dis of USB_EXCHG_PINS,
  287. };
  288. static const esp_efuse_desc_t WR_DIS_USB_EXT_PHY_ENABLE[] = {
  289. {EFUSE_BLK0, 30, 1}, // [WR_DIS.EXT_PHY_ENABLE] wr_dis of USB_EXT_PHY_ENABLE,
  290. };
  291. static const esp_efuse_desc_t WR_DIS_USB_FORCE_NOPERSIST[] = {
  292. {EFUSE_BLK0, 30, 1}, // [] wr_dis of USB_FORCE_NOPERSIST,
  293. };
  294. static const esp_efuse_desc_t WR_DIS_BLOCK0_VERSION[] = {
  295. {EFUSE_BLK0, 30, 1}, // [] wr_dis of BLOCK0_VERSION,
  296. };
  297. static const esp_efuse_desc_t RD_DIS[] = {
  298. {EFUSE_BLK0, 32, 7}, // [] Disable reading from BlOCK4-10,
  299. };
  300. static const esp_efuse_desc_t RD_DIS_BLOCK_KEY0[] = {
  301. {EFUSE_BLK0, 32, 1}, // [RD_DIS.KEY0] rd_dis of BLOCK_KEY0,
  302. };
  303. static const esp_efuse_desc_t RD_DIS_BLOCK_KEY1[] = {
  304. {EFUSE_BLK0, 33, 1}, // [RD_DIS.KEY1] rd_dis of BLOCK_KEY1,
  305. };
  306. static const esp_efuse_desc_t RD_DIS_BLOCK_KEY2[] = {
  307. {EFUSE_BLK0, 34, 1}, // [RD_DIS.KEY2] rd_dis of BLOCK_KEY2,
  308. };
  309. static const esp_efuse_desc_t RD_DIS_BLOCK_KEY3[] = {
  310. {EFUSE_BLK0, 35, 1}, // [RD_DIS.KEY3] rd_dis of BLOCK_KEY3,
  311. };
  312. static const esp_efuse_desc_t RD_DIS_BLOCK_KEY4[] = {
  313. {EFUSE_BLK0, 36, 1}, // [RD_DIS.KEY4] rd_dis of BLOCK_KEY4,
  314. };
  315. static const esp_efuse_desc_t RD_DIS_BLOCK_KEY5[] = {
  316. {EFUSE_BLK0, 37, 1}, // [RD_DIS.KEY5] rd_dis of BLOCK_KEY5,
  317. };
  318. static const esp_efuse_desc_t RD_DIS_BLOCK_SYS_DATA2[] = {
  319. {EFUSE_BLK0, 38, 1}, // [RD_DIS.SYS_DATA_PART2] rd_dis of BLOCK_SYS_DATA2,
  320. };
  321. static const esp_efuse_desc_t DIS_ICACHE[] = {
  322. {EFUSE_BLK0, 40, 1}, // [] Set this bit to disable Icache,
  323. };
  324. static const esp_efuse_desc_t DIS_DCACHE[] = {
  325. {EFUSE_BLK0, 41, 1}, // [] Set this bit to disable Dcache,
  326. };
  327. static const esp_efuse_desc_t DIS_DOWNLOAD_ICACHE[] = {
  328. {EFUSE_BLK0, 42, 1}, // [] Disables Icache when SoC is in Download mode,
  329. };
  330. static const esp_efuse_desc_t DIS_DOWNLOAD_DCACHE[] = {
  331. {EFUSE_BLK0, 43, 1}, // [] Disables Dcache when SoC is in Download mode,
  332. };
  333. static const esp_efuse_desc_t DIS_FORCE_DOWNLOAD[] = {
  334. {EFUSE_BLK0, 44, 1}, // [] Set this bit to disable the function that forces chip into download mode,
  335. };
  336. static const esp_efuse_desc_t DIS_USB[] = {
  337. {EFUSE_BLK0, 45, 1}, // [] Set this bit to disable USB OTG function,
  338. };
  339. static const esp_efuse_desc_t DIS_TWAI[] = {
  340. {EFUSE_BLK0, 46, 1}, // [DIS_CAN] Set this bit to disable the TWAI Controller function,
  341. };
  342. static const esp_efuse_desc_t DIS_BOOT_REMAP[] = {
  343. {EFUSE_BLK0, 47, 1}, // [] Disables capability to Remap RAM to ROM address space,
  344. };
  345. static const esp_efuse_desc_t SOFT_DIS_JTAG[] = {
  346. {EFUSE_BLK0, 49, 1}, // [] Software disables JTAG. When software disabled; JTAG can be activated temporarily by HMAC peripheral,
  347. };
  348. static const esp_efuse_desc_t HARD_DIS_JTAG[] = {
  349. {EFUSE_BLK0, 50, 1}, // [] Hardware disables JTAG permanently,
  350. };
  351. static const esp_efuse_desc_t DIS_DOWNLOAD_MANUAL_ENCRYPT[] = {
  352. {EFUSE_BLK0, 51, 1}, // [] Disables flash encryption when in download boot modes,
  353. };
  354. static const esp_efuse_desc_t USB_EXCHG_PINS[] = {
  355. {EFUSE_BLK0, 56, 1}, // [] Set this bit to exchange USB D+ and D- pins,
  356. };
  357. static const esp_efuse_desc_t USB_EXT_PHY_ENABLE[] = {
  358. {EFUSE_BLK0, 57, 1}, // [EXT_PHY_ENABLE] Set this bit to enable external USB PHY,
  359. };
  360. static const esp_efuse_desc_t USB_FORCE_NOPERSIST[] = {
  361. {EFUSE_BLK0, 58, 1}, // [] If set; forces USB BVALID to 1,
  362. };
  363. static const esp_efuse_desc_t BLOCK0_VERSION[] = {
  364. {EFUSE_BLK0, 59, 2}, // [] BLOCK0 efuse version,
  365. };
  366. static const esp_efuse_desc_t VDD_SPI_XPD[] = {
  367. {EFUSE_BLK0, 68, 1}, // [] If VDD_SPI_FORCE is 1; this value determines if the VDD_SPI regulator is powered on,
  368. };
  369. static const esp_efuse_desc_t VDD_SPI_TIEH[] = {
  370. {EFUSE_BLK0, 69, 1}, // [] If VDD_SPI_FORCE is 1; determines VDD_SPI voltage {0: "VDD_SPI connects to 1.8 V LDO"; 1: "VDD_SPI connects to VDD3P3_RTC_IO"},
  371. };
  372. static const esp_efuse_desc_t VDD_SPI_FORCE[] = {
  373. {EFUSE_BLK0, 70, 1}, // [] Set this bit to use XPD_VDD_PSI_REG and VDD_SPI_TIEH to configure VDD_SPI LDO,
  374. };
  375. static const esp_efuse_desc_t WDT_DELAY_SEL[] = {
  376. {EFUSE_BLK0, 80, 2}, // [] RTC watchdog timeout threshold; in unit of slow clock cycle {0: "40000"; 1: "80000"; 2: "160000"; 3: "320000"},
  377. };
  378. static const esp_efuse_desc_t SPI_BOOT_CRYPT_CNT[] = {
  379. {EFUSE_BLK0, 82, 3}, // [] Enables flash encryption when 1 or 3 bits are set and disabled otherwise {0: "Disable"; 1: "Enable"; 3: "Disable"; 7: "Enable"},
  380. };
  381. static const esp_efuse_desc_t SECURE_BOOT_KEY_REVOKE0[] = {
  382. {EFUSE_BLK0, 85, 1}, // [] Revoke 1st secure boot key,
  383. };
  384. static const esp_efuse_desc_t SECURE_BOOT_KEY_REVOKE1[] = {
  385. {EFUSE_BLK0, 86, 1}, // [] Revoke 2nd secure boot key,
  386. };
  387. static const esp_efuse_desc_t SECURE_BOOT_KEY_REVOKE2[] = {
  388. {EFUSE_BLK0, 87, 1}, // [] Revoke 3rd secure boot key,
  389. };
  390. static const esp_efuse_desc_t KEY_PURPOSE_0[] = {
  391. {EFUSE_BLK0, 88, 4}, // [KEY0_PURPOSE] Purpose of KEY0,
  392. };
  393. static const esp_efuse_desc_t KEY_PURPOSE_1[] = {
  394. {EFUSE_BLK0, 92, 4}, // [KEY1_PURPOSE] Purpose of KEY1,
  395. };
  396. static const esp_efuse_desc_t KEY_PURPOSE_2[] = {
  397. {EFUSE_BLK0, 96, 4}, // [KEY2_PURPOSE] Purpose of KEY2,
  398. };
  399. static const esp_efuse_desc_t KEY_PURPOSE_3[] = {
  400. {EFUSE_BLK0, 100, 4}, // [KEY3_PURPOSE] Purpose of KEY3,
  401. };
  402. static const esp_efuse_desc_t KEY_PURPOSE_4[] = {
  403. {EFUSE_BLK0, 104, 4}, // [KEY4_PURPOSE] Purpose of KEY4,
  404. };
  405. static const esp_efuse_desc_t KEY_PURPOSE_5[] = {
  406. {EFUSE_BLK0, 108, 4}, // [KEY5_PURPOSE] Purpose of KEY5,
  407. };
  408. static const esp_efuse_desc_t SECURE_BOOT_EN[] = {
  409. {EFUSE_BLK0, 116, 1}, // [] Set this bit to enable secure boot,
  410. };
  411. static const esp_efuse_desc_t SECURE_BOOT_AGGRESSIVE_REVOKE[] = {
  412. {EFUSE_BLK0, 117, 1}, // [] Set this bit to enable aggressive secure boot key revocation mode,
  413. };
  414. static const esp_efuse_desc_t FLASH_TPUW[] = {
  415. {EFUSE_BLK0, 124, 4}, // [] Configures flash startup delay after SoC power-up; in unit of (ms/2). When the value is 15; delay is 7.5 ms,
  416. };
  417. static const esp_efuse_desc_t DIS_DOWNLOAD_MODE[] = {
  418. {EFUSE_BLK0, 128, 1}, // [] Set this bit to disable all download boot modes,
  419. };
  420. static const esp_efuse_desc_t DIS_LEGACY_SPI_BOOT[] = {
  421. {EFUSE_BLK0, 129, 1}, // [] Set this bit to disable Legacy SPI boot mode,
  422. };
  423. static const esp_efuse_desc_t UART_PRINT_CHANNEL[] = {
  424. {EFUSE_BLK0, 130, 1}, // [] Selects the default UART for printing boot messages {0: "UART0"; 1: "UART1"},
  425. };
  426. static const esp_efuse_desc_t DIS_USB_DOWNLOAD_MODE[] = {
  427. {EFUSE_BLK0, 132, 1}, // [] Set this bit to disable use of USB OTG in UART download boot mode,
  428. };
  429. static const esp_efuse_desc_t ENABLE_SECURITY_DOWNLOAD[] = {
  430. {EFUSE_BLK0, 133, 1}, // [] Set this bit to enable secure UART download mode (read/write flash only),
  431. };
  432. static const esp_efuse_desc_t UART_PRINT_CONTROL[] = {
  433. {EFUSE_BLK0, 134, 2}, // [] Set the default UART boot message output mode {0: "Enable"; 1: "Enable when GPIO46 is low at reset"; 2: "Enable when GPIO46 is high at reset"; 3: "Disable"},
  434. };
  435. static const esp_efuse_desc_t PIN_POWER_SELECTION[] = {
  436. {EFUSE_BLK0, 136, 1}, // [] Set default power supply for GPIO33-GPIO37; set when SPI flash is initialized {0: "VDD3P3_CPU"; 1: "VDD_SPI"},
  437. };
  438. static const esp_efuse_desc_t FLASH_TYPE[] = {
  439. {EFUSE_BLK0, 137, 1}, // [] SPI flash type {0: "4 data lines"; 1: "8 data lines"},
  440. };
  441. static const esp_efuse_desc_t FORCE_SEND_RESUME[] = {
  442. {EFUSE_BLK0, 138, 1}, // [] If set; forces ROM code to send an SPI flash resume command during SPI boot,
  443. };
  444. static const esp_efuse_desc_t SECURE_VERSION[] = {
  445. {EFUSE_BLK0, 139, 16}, // [] Secure version (used by ESP-IDF anti-rollback feature),
  446. };
  447. static const esp_efuse_desc_t DISABLE_WAFER_VERSION_MAJOR[] = {
  448. {EFUSE_BLK0, 160, 1}, // [] Disables check of wafer version major,
  449. };
  450. static const esp_efuse_desc_t DISABLE_BLK_VERSION_MAJOR[] = {
  451. {EFUSE_BLK0, 161, 1}, // [] Disables check of blk version major,
  452. };
  453. static const esp_efuse_desc_t MAC[] = {
  454. {EFUSE_BLK1, 40, 8}, // [MAC_FACTORY] MAC address,
  455. {EFUSE_BLK1, 32, 8}, // [MAC_FACTORY] MAC address,
  456. {EFUSE_BLK1, 24, 8}, // [MAC_FACTORY] MAC address,
  457. {EFUSE_BLK1, 16, 8}, // [MAC_FACTORY] MAC address,
  458. {EFUSE_BLK1, 8, 8}, // [MAC_FACTORY] MAC address,
  459. {EFUSE_BLK1, 0, 8}, // [MAC_FACTORY] MAC address,
  460. };
  461. static const esp_efuse_desc_t SPI_PAD_CONFIG_CLK[] = {
  462. {EFUSE_BLK1, 48, 6}, // [] SPI_PAD_configure CLK,
  463. };
  464. static const esp_efuse_desc_t SPI_PAD_CONFIG_Q[] = {
  465. {EFUSE_BLK1, 54, 6}, // [] SPI_PAD_configure Q(D1),
  466. };
  467. static const esp_efuse_desc_t SPI_PAD_CONFIG_D[] = {
  468. {EFUSE_BLK1, 60, 6}, // [] SPI_PAD_configure D(D0),
  469. };
  470. static const esp_efuse_desc_t SPI_PAD_CONFIG_CS[] = {
  471. {EFUSE_BLK1, 66, 6}, // [] SPI_PAD_configure CS,
  472. };
  473. static const esp_efuse_desc_t SPI_PAD_CONFIG_HD[] = {
  474. {EFUSE_BLK1, 72, 6}, // [] SPI_PAD_configure HD(D3),
  475. };
  476. static const esp_efuse_desc_t SPI_PAD_CONFIG_WP[] = {
  477. {EFUSE_BLK1, 78, 6}, // [] SPI_PAD_configure WP(D2),
  478. };
  479. static const esp_efuse_desc_t SPI_PAD_CONFIG_DQS[] = {
  480. {EFUSE_BLK1, 84, 6}, // [] SPI_PAD_configure DQS,
  481. };
  482. static const esp_efuse_desc_t SPI_PAD_CONFIG_D4[] = {
  483. {EFUSE_BLK1, 90, 6}, // [] SPI_PAD_configure D4,
  484. };
  485. static const esp_efuse_desc_t SPI_PAD_CONFIG_D5[] = {
  486. {EFUSE_BLK1, 96, 6}, // [] SPI_PAD_configure D5,
  487. };
  488. static const esp_efuse_desc_t SPI_PAD_CONFIG_D6[] = {
  489. {EFUSE_BLK1, 102, 6}, // [] SPI_PAD_configure D6,
  490. };
  491. static const esp_efuse_desc_t SPI_PAD_CONFIG_D7[] = {
  492. {EFUSE_BLK1, 108, 6}, // [] SPI_PAD_configure D7,
  493. };
  494. static const esp_efuse_desc_t WAFER_VERSION_MAJOR[] = {
  495. {EFUSE_BLK1, 114, 2}, // [] WAFER_VERSION_MAJOR,
  496. };
  497. static const esp_efuse_desc_t WAFER_VERSION_MINOR_HI[] = {
  498. {EFUSE_BLK1, 116, 1}, // [] WAFER_VERSION_MINOR most significant bit,
  499. };
  500. static const esp_efuse_desc_t FLASH_VERSION[] = {
  501. {EFUSE_BLK1, 117, 4}, // [] Flash version,
  502. };
  503. static const esp_efuse_desc_t BLK_VERSION_MAJOR[] = {
  504. {EFUSE_BLK1, 121, 2}, // [] BLK_VERSION_MAJOR,
  505. };
  506. static const esp_efuse_desc_t PSRAM_VERSION[] = {
  507. {EFUSE_BLK1, 124, 4}, // [] PSRAM version,
  508. };
  509. static const esp_efuse_desc_t PKG_VERSION[] = {
  510. {EFUSE_BLK1, 128, 4}, // [] Package version,
  511. };
  512. static const esp_efuse_desc_t WAFER_VERSION_MINOR_LO[] = {
  513. {EFUSE_BLK1, 132, 3}, // [] WAFER_VERSION_MINOR least significant bits,
  514. };
  515. static const esp_efuse_desc_t OPTIONAL_UNIQUE_ID[] = {
  516. {EFUSE_BLK2, 0, 128}, // [] Optional unique 128-bit ID,
  517. };
  518. static const esp_efuse_desc_t ADC_CALIB[] = {
  519. {EFUSE_BLK2, 128, 4}, // [] 4 bit of ADC calibration,
  520. };
  521. static const esp_efuse_desc_t BLK_VERSION_MINOR[] = {
  522. {EFUSE_BLK2, 132, 3}, // [] BLK_VERSION_MINOR of BLOCK2 {0: "No calib"; 1: "ADC calib V1"; 2: "ADC calib V2"},
  523. };
  524. static const esp_efuse_desc_t TEMP_CALIB[] = {
  525. {EFUSE_BLK2, 135, 9}, // [] Temperature calibration data,
  526. };
  527. static const esp_efuse_desc_t RTCCALIB_V1IDX_A10H[] = {
  528. {EFUSE_BLK2, 144, 8}, // [],
  529. };
  530. static const esp_efuse_desc_t RTCCALIB_V1IDX_A11H[] = {
  531. {EFUSE_BLK2, 152, 8}, // [],
  532. };
  533. static const esp_efuse_desc_t RTCCALIB_V1IDX_A12H[] = {
  534. {EFUSE_BLK2, 160, 8}, // [],
  535. };
  536. static const esp_efuse_desc_t RTCCALIB_V1IDX_A13H[] = {
  537. {EFUSE_BLK2, 168, 8}, // [],
  538. };
  539. static const esp_efuse_desc_t RTCCALIB_V1IDX_A20H[] = {
  540. {EFUSE_BLK2, 176, 8}, // [],
  541. };
  542. static const esp_efuse_desc_t RTCCALIB_V1IDX_A21H[] = {
  543. {EFUSE_BLK2, 184, 8}, // [],
  544. };
  545. static const esp_efuse_desc_t RTCCALIB_V1IDX_A22H[] = {
  546. {EFUSE_BLK2, 192, 8}, // [],
  547. };
  548. static const esp_efuse_desc_t RTCCALIB_V1IDX_A23H[] = {
  549. {EFUSE_BLK2, 200, 8}, // [],
  550. };
  551. static const esp_efuse_desc_t RTCCALIB_V1IDX_A10L[] = {
  552. {EFUSE_BLK2, 208, 6}, // [],
  553. };
  554. static const esp_efuse_desc_t RTCCALIB_V1IDX_A11L[] = {
  555. {EFUSE_BLK2, 214, 6}, // [],
  556. };
  557. static const esp_efuse_desc_t RTCCALIB_V1IDX_A12L[] = {
  558. {EFUSE_BLK2, 220, 6}, // [],
  559. };
  560. static const esp_efuse_desc_t RTCCALIB_V1IDX_A13L[] = {
  561. {EFUSE_BLK2, 226, 6}, // [],
  562. };
  563. static const esp_efuse_desc_t RTCCALIB_V1IDX_A20L[] = {
  564. {EFUSE_BLK2, 232, 6}, // [],
  565. };
  566. static const esp_efuse_desc_t RTCCALIB_V1IDX_A21L[] = {
  567. {EFUSE_BLK2, 238, 6}, // [],
  568. };
  569. static const esp_efuse_desc_t RTCCALIB_V1IDX_A22L[] = {
  570. {EFUSE_BLK2, 244, 6}, // [],
  571. };
  572. static const esp_efuse_desc_t RTCCALIB_V1IDX_A23L[] = {
  573. {EFUSE_BLK2, 250, 6}, // [],
  574. };
  575. static const esp_efuse_desc_t USER_DATA[] = {
  576. {EFUSE_BLK3, 0, 256}, // [BLOCK_USR_DATA] User data,
  577. };
  578. static const esp_efuse_desc_t USER_DATA_MAC_CUSTOM[] = {
  579. {EFUSE_BLK3, 200, 48}, // [MAC_CUSTOM CUSTOM_MAC] Custom MAC,
  580. };
  581. static const esp_efuse_desc_t KEY0[] = {
  582. {EFUSE_BLK4, 0, 256}, // [BLOCK_KEY0] Key0 or user data,
  583. };
  584. static const esp_efuse_desc_t KEY1[] = {
  585. {EFUSE_BLK5, 0, 256}, // [BLOCK_KEY1] Key1 or user data,
  586. };
  587. static const esp_efuse_desc_t KEY2[] = {
  588. {EFUSE_BLK6, 0, 256}, // [BLOCK_KEY2] Key2 or user data,
  589. };
  590. static const esp_efuse_desc_t KEY3[] = {
  591. {EFUSE_BLK7, 0, 256}, // [BLOCK_KEY3] Key3 or user data,
  592. };
  593. static const esp_efuse_desc_t KEY4[] = {
  594. {EFUSE_BLK8, 0, 256}, // [BLOCK_KEY4] Key4 or user data,
  595. };
  596. static const esp_efuse_desc_t KEY5[] = {
  597. {EFUSE_BLK9, 0, 256}, // [BLOCK_KEY5] Key5 or user data,
  598. };
  599. static const esp_efuse_desc_t SYS_DATA_PART2[] = {
  600. {EFUSE_BLK10, 0, 256}, // [BLOCK_SYS_DATA2] System data part 2 (reserved),
  601. };
  602. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS[] = {
  603. &WR_DIS[0], // [] Disable programming of individual eFuses
  604. NULL
  605. };
  606. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RD_DIS[] = {
  607. &WR_DIS_RD_DIS[0], // [] wr_dis of RD_DIS
  608. NULL
  609. };
  610. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_ICACHE[] = {
  611. &WR_DIS_DIS_ICACHE[0], // [] wr_dis of DIS_ICACHE
  612. NULL
  613. };
  614. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_DCACHE[] = {
  615. &WR_DIS_DIS_DCACHE[0], // [] wr_dis of DIS_DCACHE
  616. NULL
  617. };
  618. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_ICACHE[] = {
  619. &WR_DIS_DIS_DOWNLOAD_ICACHE[0], // [] wr_dis of DIS_DOWNLOAD_ICACHE
  620. NULL
  621. };
  622. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_DCACHE[] = {
  623. &WR_DIS_DIS_DOWNLOAD_DCACHE[0], // [] wr_dis of DIS_DOWNLOAD_DCACHE
  624. NULL
  625. };
  626. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD[] = {
  627. &WR_DIS_DIS_FORCE_DOWNLOAD[0], // [] wr_dis of DIS_FORCE_DOWNLOAD
  628. NULL
  629. };
  630. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_USB[] = {
  631. &WR_DIS_DIS_USB[0], // [] wr_dis of DIS_USB
  632. NULL
  633. };
  634. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_TWAI[] = {
  635. &WR_DIS_DIS_TWAI[0], // [WR_DIS.DIS_CAN] wr_dis of DIS_TWAI
  636. NULL
  637. };
  638. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_BOOT_REMAP[] = {
  639. &WR_DIS_DIS_BOOT_REMAP[0], // [] wr_dis of DIS_BOOT_REMAP
  640. NULL
  641. };
  642. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG[] = {
  643. &WR_DIS_SOFT_DIS_JTAG[0], // [] wr_dis of SOFT_DIS_JTAG
  644. NULL
  645. };
  646. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_HARD_DIS_JTAG[] = {
  647. &WR_DIS_HARD_DIS_JTAG[0], // [] wr_dis of HARD_DIS_JTAG
  648. NULL
  649. };
  650. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT[] = {
  651. &WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT[0], // [] wr_dis of DIS_DOWNLOAD_MANUAL_ENCRYPT
  652. NULL
  653. };
  654. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_VDD_SPI_XPD[] = {
  655. &WR_DIS_VDD_SPI_XPD[0], // [] wr_dis of VDD_SPI_XPD
  656. NULL
  657. };
  658. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_VDD_SPI_TIEH[] = {
  659. &WR_DIS_VDD_SPI_TIEH[0], // [] wr_dis of VDD_SPI_TIEH
  660. NULL
  661. };
  662. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_VDD_SPI_FORCE[] = {
  663. &WR_DIS_VDD_SPI_FORCE[0], // [] wr_dis of VDD_SPI_FORCE
  664. NULL
  665. };
  666. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_WDT_DELAY_SEL[] = {
  667. &WR_DIS_WDT_DELAY_SEL[0], // [] wr_dis of WDT_DELAY_SEL
  668. NULL
  669. };
  670. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT[] = {
  671. &WR_DIS_SPI_BOOT_CRYPT_CNT[0], // [] wr_dis of SPI_BOOT_CRYPT_CNT
  672. NULL
  673. };
  674. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0[] = {
  675. &WR_DIS_SECURE_BOOT_KEY_REVOKE0[0], // [] wr_dis of SECURE_BOOT_KEY_REVOKE0
  676. NULL
  677. };
  678. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1[] = {
  679. &WR_DIS_SECURE_BOOT_KEY_REVOKE1[0], // [] wr_dis of SECURE_BOOT_KEY_REVOKE1
  680. NULL
  681. };
  682. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2[] = {
  683. &WR_DIS_SECURE_BOOT_KEY_REVOKE2[0], // [] wr_dis of SECURE_BOOT_KEY_REVOKE2
  684. NULL
  685. };
  686. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_KEY_PURPOSE_0[] = {
  687. &WR_DIS_KEY_PURPOSE_0[0], // [WR_DIS.KEY0_PURPOSE] wr_dis of KEY_PURPOSE_0
  688. NULL
  689. };
  690. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_KEY_PURPOSE_1[] = {
  691. &WR_DIS_KEY_PURPOSE_1[0], // [WR_DIS.KEY1_PURPOSE] wr_dis of KEY_PURPOSE_1
  692. NULL
  693. };
  694. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_KEY_PURPOSE_2[] = {
  695. &WR_DIS_KEY_PURPOSE_2[0], // [WR_DIS.KEY2_PURPOSE] wr_dis of KEY_PURPOSE_2
  696. NULL
  697. };
  698. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_KEY_PURPOSE_3[] = {
  699. &WR_DIS_KEY_PURPOSE_3[0], // [WR_DIS.KEY3_PURPOSE] wr_dis of KEY_PURPOSE_3
  700. NULL
  701. };
  702. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_KEY_PURPOSE_4[] = {
  703. &WR_DIS_KEY_PURPOSE_4[0], // [WR_DIS.KEY4_PURPOSE] wr_dis of KEY_PURPOSE_4
  704. NULL
  705. };
  706. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_KEY_PURPOSE_5[] = {
  707. &WR_DIS_KEY_PURPOSE_5[0], // [WR_DIS.KEY5_PURPOSE] wr_dis of KEY_PURPOSE_5
  708. NULL
  709. };
  710. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SECURE_BOOT_EN[] = {
  711. &WR_DIS_SECURE_BOOT_EN[0], // [] wr_dis of SECURE_BOOT_EN
  712. NULL
  713. };
  714. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE[] = {
  715. &WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE[0], // [] wr_dis of SECURE_BOOT_AGGRESSIVE_REVOKE
  716. NULL
  717. };
  718. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_FLASH_TPUW[] = {
  719. &WR_DIS_FLASH_TPUW[0], // [] wr_dis of FLASH_TPUW
  720. NULL
  721. };
  722. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE[] = {
  723. &WR_DIS_DIS_DOWNLOAD_MODE[0], // [] wr_dis of DIS_DOWNLOAD_MODE
  724. NULL
  725. };
  726. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_LEGACY_SPI_BOOT[] = {
  727. &WR_DIS_DIS_LEGACY_SPI_BOOT[0], // [] wr_dis of DIS_LEGACY_SPI_BOOT
  728. NULL
  729. };
  730. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_UART_PRINT_CHANNEL[] = {
  731. &WR_DIS_UART_PRINT_CHANNEL[0], // [] wr_dis of UART_PRINT_CHANNEL
  732. NULL
  733. };
  734. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_DIS_USB_DOWNLOAD_MODE[] = {
  735. &WR_DIS_DIS_USB_DOWNLOAD_MODE[0], // [] wr_dis of DIS_USB_DOWNLOAD_MODE
  736. NULL
  737. };
  738. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD[] = {
  739. &WR_DIS_ENABLE_SECURITY_DOWNLOAD[0], // [] wr_dis of ENABLE_SECURITY_DOWNLOAD
  740. NULL
  741. };
  742. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL[] = {
  743. &WR_DIS_UART_PRINT_CONTROL[0], // [] wr_dis of UART_PRINT_CONTROL
  744. NULL
  745. };
  746. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_PIN_POWER_SELECTION[] = {
  747. &WR_DIS_PIN_POWER_SELECTION[0], // [] wr_dis of PIN_POWER_SELECTION
  748. NULL
  749. };
  750. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_FLASH_TYPE[] = {
  751. &WR_DIS_FLASH_TYPE[0], // [] wr_dis of FLASH_TYPE
  752. NULL
  753. };
  754. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME[] = {
  755. &WR_DIS_FORCE_SEND_RESUME[0], // [] wr_dis of FORCE_SEND_RESUME
  756. NULL
  757. };
  758. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SECURE_VERSION[] = {
  759. &WR_DIS_SECURE_VERSION[0], // [] wr_dis of SECURE_VERSION
  760. NULL
  761. };
  762. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLK1[] = {
  763. &WR_DIS_BLK1[0], // [] wr_dis of BLOCK1
  764. NULL
  765. };
  766. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_MAC[] = {
  767. &WR_DIS_MAC[0], // [WR_DIS.MAC_FACTORY] wr_dis of MAC
  768. NULL
  769. };
  770. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK[] = {
  771. &WR_DIS_SPI_PAD_CONFIG_CLK[0], // [] wr_dis of SPI_PAD_CONFIG_CLK
  772. NULL
  773. };
  774. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q[] = {
  775. &WR_DIS_SPI_PAD_CONFIG_Q[0], // [] wr_dis of SPI_PAD_CONFIG_Q
  776. NULL
  777. };
  778. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D[] = {
  779. &WR_DIS_SPI_PAD_CONFIG_D[0], // [] wr_dis of SPI_PAD_CONFIG_D
  780. NULL
  781. };
  782. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS[] = {
  783. &WR_DIS_SPI_PAD_CONFIG_CS[0], // [] wr_dis of SPI_PAD_CONFIG_CS
  784. NULL
  785. };
  786. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_HD[] = {
  787. &WR_DIS_SPI_PAD_CONFIG_HD[0], // [] wr_dis of SPI_PAD_CONFIG_HD
  788. NULL
  789. };
  790. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_WP[] = {
  791. &WR_DIS_SPI_PAD_CONFIG_WP[0], // [] wr_dis of SPI_PAD_CONFIG_WP
  792. NULL
  793. };
  794. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_DQS[] = {
  795. &WR_DIS_SPI_PAD_CONFIG_DQS[0], // [] wr_dis of SPI_PAD_CONFIG_DQS
  796. NULL
  797. };
  798. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D4[] = {
  799. &WR_DIS_SPI_PAD_CONFIG_D4[0], // [] wr_dis of SPI_PAD_CONFIG_D4
  800. NULL
  801. };
  802. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D5[] = {
  803. &WR_DIS_SPI_PAD_CONFIG_D5[0], // [] wr_dis of SPI_PAD_CONFIG_D5
  804. NULL
  805. };
  806. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D6[] = {
  807. &WR_DIS_SPI_PAD_CONFIG_D6[0], // [] wr_dis of SPI_PAD_CONFIG_D6
  808. NULL
  809. };
  810. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D7[] = {
  811. &WR_DIS_SPI_PAD_CONFIG_D7[0], // [] wr_dis of SPI_PAD_CONFIG_D7
  812. NULL
  813. };
  814. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR[] = {
  815. &WR_DIS_WAFER_VERSION_MAJOR[0], // [] wr_dis of WAFER_VERSION_MAJOR
  816. NULL
  817. };
  818. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_HI[] = {
  819. &WR_DIS_WAFER_VERSION_MINOR_HI[0], // [] wr_dis of WAFER_VERSION_MINOR_HI
  820. NULL
  821. };
  822. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_FLASH_VERSION[] = {
  823. &WR_DIS_FLASH_VERSION[0], // [] wr_dis of FLASH_VERSION
  824. NULL
  825. };
  826. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR[] = {
  827. &WR_DIS_BLK_VERSION_MAJOR[0], // [] wr_dis of BLK_VERSION_MAJOR
  828. NULL
  829. };
  830. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_PSRAM_VERSION[] = {
  831. &WR_DIS_PSRAM_VERSION[0], // [] wr_dis of PSRAM_VERSION
  832. NULL
  833. };
  834. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_PKG_VERSION[] = {
  835. &WR_DIS_PKG_VERSION[0], // [] wr_dis of PKG_VERSION
  836. NULL
  837. };
  838. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR_LO[] = {
  839. &WR_DIS_WAFER_VERSION_MINOR_LO[0], // [] wr_dis of WAFER_VERSION_MINOR_LO
  840. NULL
  841. };
  842. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_SYS_DATA_PART1[] = {
  843. &WR_DIS_SYS_DATA_PART1[0], // [] wr_dis of BLOCK2
  844. NULL
  845. };
  846. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID[] = {
  847. &WR_DIS_OPTIONAL_UNIQUE_ID[0], // [] wr_dis of OPTIONAL_UNIQUE_ID
  848. NULL
  849. };
  850. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_ADC_CALIB[] = {
  851. &WR_DIS_ADC_CALIB[0], // [] wr_dis of ADC_CALIB
  852. NULL
  853. };
  854. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR[] = {
  855. &WR_DIS_BLK_VERSION_MINOR[0], // [] wr_dis of BLK_VERSION_MINOR
  856. NULL
  857. };
  858. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_TEMP_CALIB[] = {
  859. &WR_DIS_TEMP_CALIB[0], // [] wr_dis of TEMP_CALIB
  860. NULL
  861. };
  862. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A10H[] = {
  863. &WR_DIS_RTCCALIB_V1IDX_A10H[0], // [] wr_dis of RTCCALIB_V1IDX_A10H
  864. NULL
  865. };
  866. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A11H[] = {
  867. &WR_DIS_RTCCALIB_V1IDX_A11H[0], // [] wr_dis of RTCCALIB_V1IDX_A11H
  868. NULL
  869. };
  870. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A12H[] = {
  871. &WR_DIS_RTCCALIB_V1IDX_A12H[0], // [] wr_dis of RTCCALIB_V1IDX_A12H
  872. NULL
  873. };
  874. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A13H[] = {
  875. &WR_DIS_RTCCALIB_V1IDX_A13H[0], // [] wr_dis of RTCCALIB_V1IDX_A13H
  876. NULL
  877. };
  878. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A20H[] = {
  879. &WR_DIS_RTCCALIB_V1IDX_A20H[0], // [] wr_dis of RTCCALIB_V1IDX_A20H
  880. NULL
  881. };
  882. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A21H[] = {
  883. &WR_DIS_RTCCALIB_V1IDX_A21H[0], // [] wr_dis of RTCCALIB_V1IDX_A21H
  884. NULL
  885. };
  886. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A22H[] = {
  887. &WR_DIS_RTCCALIB_V1IDX_A22H[0], // [] wr_dis of RTCCALIB_V1IDX_A22H
  888. NULL
  889. };
  890. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A23H[] = {
  891. &WR_DIS_RTCCALIB_V1IDX_A23H[0], // [] wr_dis of RTCCALIB_V1IDX_A23H
  892. NULL
  893. };
  894. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A10L[] = {
  895. &WR_DIS_RTCCALIB_V1IDX_A10L[0], // [] wr_dis of RTCCALIB_V1IDX_A10L
  896. NULL
  897. };
  898. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A11L[] = {
  899. &WR_DIS_RTCCALIB_V1IDX_A11L[0], // [] wr_dis of RTCCALIB_V1IDX_A11L
  900. NULL
  901. };
  902. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A12L[] = {
  903. &WR_DIS_RTCCALIB_V1IDX_A12L[0], // [] wr_dis of RTCCALIB_V1IDX_A12L
  904. NULL
  905. };
  906. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A13L[] = {
  907. &WR_DIS_RTCCALIB_V1IDX_A13L[0], // [] wr_dis of RTCCALIB_V1IDX_A13L
  908. NULL
  909. };
  910. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A20L[] = {
  911. &WR_DIS_RTCCALIB_V1IDX_A20L[0], // [] wr_dis of RTCCALIB_V1IDX_A20L
  912. NULL
  913. };
  914. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A21L[] = {
  915. &WR_DIS_RTCCALIB_V1IDX_A21L[0], // [] wr_dis of RTCCALIB_V1IDX_A21L
  916. NULL
  917. };
  918. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A22L[] = {
  919. &WR_DIS_RTCCALIB_V1IDX_A22L[0], // [] wr_dis of RTCCALIB_V1IDX_A22L
  920. NULL
  921. };
  922. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_RTCCALIB_V1IDX_A23L[] = {
  923. &WR_DIS_RTCCALIB_V1IDX_A23L[0], // [] wr_dis of RTCCALIB_V1IDX_A23L
  924. NULL
  925. };
  926. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_USR_DATA[] = {
  927. &WR_DIS_BLOCK_USR_DATA[0], // [WR_DIS.USER_DATA] wr_dis of BLOCK_USR_DATA
  928. NULL
  929. };
  930. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_CUSTOM_MAC[] = {
  931. &WR_DIS_CUSTOM_MAC[0], // [WR_DIS.MAC_CUSTOM WR_DIS.USER_DATA_MAC_CUSTOM] wr_dis of CUSTOM_MAC
  932. NULL
  933. };
  934. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_KEY0[] = {
  935. &WR_DIS_BLOCK_KEY0[0], // [WR_DIS.KEY0] wr_dis of BLOCK_KEY0
  936. NULL
  937. };
  938. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_KEY1[] = {
  939. &WR_DIS_BLOCK_KEY1[0], // [WR_DIS.KEY1] wr_dis of BLOCK_KEY1
  940. NULL
  941. };
  942. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_KEY2[] = {
  943. &WR_DIS_BLOCK_KEY2[0], // [WR_DIS.KEY2] wr_dis of BLOCK_KEY2
  944. NULL
  945. };
  946. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_KEY3[] = {
  947. &WR_DIS_BLOCK_KEY3[0], // [WR_DIS.KEY3] wr_dis of BLOCK_KEY3
  948. NULL
  949. };
  950. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_KEY4[] = {
  951. &WR_DIS_BLOCK_KEY4[0], // [WR_DIS.KEY4] wr_dis of BLOCK_KEY4
  952. NULL
  953. };
  954. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_KEY5[] = {
  955. &WR_DIS_BLOCK_KEY5[0], // [WR_DIS.KEY5] wr_dis of BLOCK_KEY5
  956. NULL
  957. };
  958. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2[] = {
  959. &WR_DIS_BLOCK_SYS_DATA2[0], // [WR_DIS.SYS_DATA_PART2] wr_dis of BLOCK_SYS_DATA2
  960. NULL
  961. };
  962. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_USB_EXCHG_PINS[] = {
  963. &WR_DIS_USB_EXCHG_PINS[0], // [] wr_dis of USB_EXCHG_PINS
  964. NULL
  965. };
  966. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_USB_EXT_PHY_ENABLE[] = {
  967. &WR_DIS_USB_EXT_PHY_ENABLE[0], // [WR_DIS.EXT_PHY_ENABLE] wr_dis of USB_EXT_PHY_ENABLE
  968. NULL
  969. };
  970. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_USB_FORCE_NOPERSIST[] = {
  971. &WR_DIS_USB_FORCE_NOPERSIST[0], // [] wr_dis of USB_FORCE_NOPERSIST
  972. NULL
  973. };
  974. const esp_efuse_desc_t* ESP_EFUSE_WR_DIS_BLOCK0_VERSION[] = {
  975. &WR_DIS_BLOCK0_VERSION[0], // [] wr_dis of BLOCK0_VERSION
  976. NULL
  977. };
  978. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS[] = {
  979. &RD_DIS[0], // [] Disable reading from BlOCK4-10
  980. NULL
  981. };
  982. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS_BLOCK_KEY0[] = {
  983. &RD_DIS_BLOCK_KEY0[0], // [RD_DIS.KEY0] rd_dis of BLOCK_KEY0
  984. NULL
  985. };
  986. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS_BLOCK_KEY1[] = {
  987. &RD_DIS_BLOCK_KEY1[0], // [RD_DIS.KEY1] rd_dis of BLOCK_KEY1
  988. NULL
  989. };
  990. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS_BLOCK_KEY2[] = {
  991. &RD_DIS_BLOCK_KEY2[0], // [RD_DIS.KEY2] rd_dis of BLOCK_KEY2
  992. NULL
  993. };
  994. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS_BLOCK_KEY3[] = {
  995. &RD_DIS_BLOCK_KEY3[0], // [RD_DIS.KEY3] rd_dis of BLOCK_KEY3
  996. NULL
  997. };
  998. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS_BLOCK_KEY4[] = {
  999. &RD_DIS_BLOCK_KEY4[0], // [RD_DIS.KEY4] rd_dis of BLOCK_KEY4
  1000. NULL
  1001. };
  1002. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS_BLOCK_KEY5[] = {
  1003. &RD_DIS_BLOCK_KEY5[0], // [RD_DIS.KEY5] rd_dis of BLOCK_KEY5
  1004. NULL
  1005. };
  1006. const esp_efuse_desc_t* ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2[] = {
  1007. &RD_DIS_BLOCK_SYS_DATA2[0], // [RD_DIS.SYS_DATA_PART2] rd_dis of BLOCK_SYS_DATA2
  1008. NULL
  1009. };
  1010. const esp_efuse_desc_t* ESP_EFUSE_DIS_ICACHE[] = {
  1011. &DIS_ICACHE[0], // [] Set this bit to disable Icache
  1012. NULL
  1013. };
  1014. const esp_efuse_desc_t* ESP_EFUSE_DIS_DCACHE[] = {
  1015. &DIS_DCACHE[0], // [] Set this bit to disable Dcache
  1016. NULL
  1017. };
  1018. const esp_efuse_desc_t* ESP_EFUSE_DIS_DOWNLOAD_ICACHE[] = {
  1019. &DIS_DOWNLOAD_ICACHE[0], // [] Disables Icache when SoC is in Download mode
  1020. NULL
  1021. };
  1022. const esp_efuse_desc_t* ESP_EFUSE_DIS_DOWNLOAD_DCACHE[] = {
  1023. &DIS_DOWNLOAD_DCACHE[0], // [] Disables Dcache when SoC is in Download mode
  1024. NULL
  1025. };
  1026. const esp_efuse_desc_t* ESP_EFUSE_DIS_FORCE_DOWNLOAD[] = {
  1027. &DIS_FORCE_DOWNLOAD[0], // [] Set this bit to disable the function that forces chip into download mode
  1028. NULL
  1029. };
  1030. const esp_efuse_desc_t* ESP_EFUSE_DIS_USB[] = {
  1031. &DIS_USB[0], // [] Set this bit to disable USB OTG function
  1032. NULL
  1033. };
  1034. const esp_efuse_desc_t* ESP_EFUSE_DIS_TWAI[] = {
  1035. &DIS_TWAI[0], // [DIS_CAN] Set this bit to disable the TWAI Controller function
  1036. NULL
  1037. };
  1038. const esp_efuse_desc_t* ESP_EFUSE_DIS_BOOT_REMAP[] = {
  1039. &DIS_BOOT_REMAP[0], // [] Disables capability to Remap RAM to ROM address space
  1040. NULL
  1041. };
  1042. const esp_efuse_desc_t* ESP_EFUSE_SOFT_DIS_JTAG[] = {
  1043. &SOFT_DIS_JTAG[0], // [] Software disables JTAG. When software disabled; JTAG can be activated temporarily by HMAC peripheral
  1044. NULL
  1045. };
  1046. const esp_efuse_desc_t* ESP_EFUSE_HARD_DIS_JTAG[] = {
  1047. &HARD_DIS_JTAG[0], // [] Hardware disables JTAG permanently
  1048. NULL
  1049. };
  1050. const esp_efuse_desc_t* ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT[] = {
  1051. &DIS_DOWNLOAD_MANUAL_ENCRYPT[0], // [] Disables flash encryption when in download boot modes
  1052. NULL
  1053. };
  1054. const esp_efuse_desc_t* ESP_EFUSE_USB_EXCHG_PINS[] = {
  1055. &USB_EXCHG_PINS[0], // [] Set this bit to exchange USB D+ and D- pins
  1056. NULL
  1057. };
  1058. const esp_efuse_desc_t* ESP_EFUSE_USB_EXT_PHY_ENABLE[] = {
  1059. &USB_EXT_PHY_ENABLE[0], // [EXT_PHY_ENABLE] Set this bit to enable external USB PHY
  1060. NULL
  1061. };
  1062. const esp_efuse_desc_t* ESP_EFUSE_USB_FORCE_NOPERSIST[] = {
  1063. &USB_FORCE_NOPERSIST[0], // [] If set; forces USB BVALID to 1
  1064. NULL
  1065. };
  1066. const esp_efuse_desc_t* ESP_EFUSE_BLOCK0_VERSION[] = {
  1067. &BLOCK0_VERSION[0], // [] BLOCK0 efuse version
  1068. NULL
  1069. };
  1070. const esp_efuse_desc_t* ESP_EFUSE_VDD_SPI_XPD[] = {
  1071. &VDD_SPI_XPD[0], // [] If VDD_SPI_FORCE is 1; this value determines if the VDD_SPI regulator is powered on
  1072. NULL
  1073. };
  1074. const esp_efuse_desc_t* ESP_EFUSE_VDD_SPI_TIEH[] = {
  1075. &VDD_SPI_TIEH[0], // [] If VDD_SPI_FORCE is 1; determines VDD_SPI voltage {0: "VDD_SPI connects to 1.8 V LDO"; 1: "VDD_SPI connects to VDD3P3_RTC_IO"}
  1076. NULL
  1077. };
  1078. const esp_efuse_desc_t* ESP_EFUSE_VDD_SPI_FORCE[] = {
  1079. &VDD_SPI_FORCE[0], // [] Set this bit to use XPD_VDD_PSI_REG and VDD_SPI_TIEH to configure VDD_SPI LDO
  1080. NULL
  1081. };
  1082. const esp_efuse_desc_t* ESP_EFUSE_WDT_DELAY_SEL[] = {
  1083. &WDT_DELAY_SEL[0], // [] RTC watchdog timeout threshold; in unit of slow clock cycle {0: "40000"; 1: "80000"; 2: "160000"; 3: "320000"}
  1084. NULL
  1085. };
  1086. const esp_efuse_desc_t* ESP_EFUSE_SPI_BOOT_CRYPT_CNT[] = {
  1087. &SPI_BOOT_CRYPT_CNT[0], // [] Enables flash encryption when 1 or 3 bits are set and disabled otherwise {0: "Disable"; 1: "Enable"; 3: "Disable"; 7: "Enable"}
  1088. NULL
  1089. };
  1090. const esp_efuse_desc_t* ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0[] = {
  1091. &SECURE_BOOT_KEY_REVOKE0[0], // [] Revoke 1st secure boot key
  1092. NULL
  1093. };
  1094. const esp_efuse_desc_t* ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1[] = {
  1095. &SECURE_BOOT_KEY_REVOKE1[0], // [] Revoke 2nd secure boot key
  1096. NULL
  1097. };
  1098. const esp_efuse_desc_t* ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2[] = {
  1099. &SECURE_BOOT_KEY_REVOKE2[0], // [] Revoke 3rd secure boot key
  1100. NULL
  1101. };
  1102. const esp_efuse_desc_t* ESP_EFUSE_KEY_PURPOSE_0[] = {
  1103. &KEY_PURPOSE_0[0], // [KEY0_PURPOSE] Purpose of KEY0
  1104. NULL
  1105. };
  1106. const esp_efuse_desc_t* ESP_EFUSE_KEY_PURPOSE_1[] = {
  1107. &KEY_PURPOSE_1[0], // [KEY1_PURPOSE] Purpose of KEY1
  1108. NULL
  1109. };
  1110. const esp_efuse_desc_t* ESP_EFUSE_KEY_PURPOSE_2[] = {
  1111. &KEY_PURPOSE_2[0], // [KEY2_PURPOSE] Purpose of KEY2
  1112. NULL
  1113. };
  1114. const esp_efuse_desc_t* ESP_EFUSE_KEY_PURPOSE_3[] = {
  1115. &KEY_PURPOSE_3[0], // [KEY3_PURPOSE] Purpose of KEY3
  1116. NULL
  1117. };
  1118. const esp_efuse_desc_t* ESP_EFUSE_KEY_PURPOSE_4[] = {
  1119. &KEY_PURPOSE_4[0], // [KEY4_PURPOSE] Purpose of KEY4
  1120. NULL
  1121. };
  1122. const esp_efuse_desc_t* ESP_EFUSE_KEY_PURPOSE_5[] = {
  1123. &KEY_PURPOSE_5[0], // [KEY5_PURPOSE] Purpose of KEY5
  1124. NULL
  1125. };
  1126. const esp_efuse_desc_t* ESP_EFUSE_SECURE_BOOT_EN[] = {
  1127. &SECURE_BOOT_EN[0], // [] Set this bit to enable secure boot
  1128. NULL
  1129. };
  1130. const esp_efuse_desc_t* ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE[] = {
  1131. &SECURE_BOOT_AGGRESSIVE_REVOKE[0], // [] Set this bit to enable aggressive secure boot key revocation mode
  1132. NULL
  1133. };
  1134. const esp_efuse_desc_t* ESP_EFUSE_FLASH_TPUW[] = {
  1135. &FLASH_TPUW[0], // [] Configures flash startup delay after SoC power-up; in unit of (ms/2). When the value is 15; delay is 7.5 ms
  1136. NULL
  1137. };
  1138. const esp_efuse_desc_t* ESP_EFUSE_DIS_DOWNLOAD_MODE[] = {
  1139. &DIS_DOWNLOAD_MODE[0], // [] Set this bit to disable all download boot modes
  1140. NULL
  1141. };
  1142. const esp_efuse_desc_t* ESP_EFUSE_DIS_LEGACY_SPI_BOOT[] = {
  1143. &DIS_LEGACY_SPI_BOOT[0], // [] Set this bit to disable Legacy SPI boot mode
  1144. NULL
  1145. };
  1146. const esp_efuse_desc_t* ESP_EFUSE_UART_PRINT_CHANNEL[] = {
  1147. &UART_PRINT_CHANNEL[0], // [] Selects the default UART for printing boot messages {0: "UART0"; 1: "UART1"}
  1148. NULL
  1149. };
  1150. const esp_efuse_desc_t* ESP_EFUSE_DIS_USB_DOWNLOAD_MODE[] = {
  1151. &DIS_USB_DOWNLOAD_MODE[0], // [] Set this bit to disable use of USB OTG in UART download boot mode
  1152. NULL
  1153. };
  1154. const esp_efuse_desc_t* ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD[] = {
  1155. &ENABLE_SECURITY_DOWNLOAD[0], // [] Set this bit to enable secure UART download mode (read/write flash only)
  1156. NULL
  1157. };
  1158. const esp_efuse_desc_t* ESP_EFUSE_UART_PRINT_CONTROL[] = {
  1159. &UART_PRINT_CONTROL[0], // [] Set the default UART boot message output mode {0: "Enable"; 1: "Enable when GPIO46 is low at reset"; 2: "Enable when GPIO46 is high at reset"; 3: "Disable"}
  1160. NULL
  1161. };
  1162. const esp_efuse_desc_t* ESP_EFUSE_PIN_POWER_SELECTION[] = {
  1163. &PIN_POWER_SELECTION[0], // [] Set default power supply for GPIO33-GPIO37; set when SPI flash is initialized {0: "VDD3P3_CPU"; 1: "VDD_SPI"}
  1164. NULL
  1165. };
  1166. const esp_efuse_desc_t* ESP_EFUSE_FLASH_TYPE[] = {
  1167. &FLASH_TYPE[0], // [] SPI flash type {0: "4 data lines"; 1: "8 data lines"}
  1168. NULL
  1169. };
  1170. const esp_efuse_desc_t* ESP_EFUSE_FORCE_SEND_RESUME[] = {
  1171. &FORCE_SEND_RESUME[0], // [] If set; forces ROM code to send an SPI flash resume command during SPI boot
  1172. NULL
  1173. };
  1174. const esp_efuse_desc_t* ESP_EFUSE_SECURE_VERSION[] = {
  1175. &SECURE_VERSION[0], // [] Secure version (used by ESP-IDF anti-rollback feature)
  1176. NULL
  1177. };
  1178. const esp_efuse_desc_t* ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR[] = {
  1179. &DISABLE_WAFER_VERSION_MAJOR[0], // [] Disables check of wafer version major
  1180. NULL
  1181. };
  1182. const esp_efuse_desc_t* ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR[] = {
  1183. &DISABLE_BLK_VERSION_MAJOR[0], // [] Disables check of blk version major
  1184. NULL
  1185. };
  1186. const esp_efuse_desc_t* ESP_EFUSE_MAC[] = {
  1187. &MAC[0], // [MAC_FACTORY] MAC address
  1188. &MAC[1], // [MAC_FACTORY] MAC address
  1189. &MAC[2], // [MAC_FACTORY] MAC address
  1190. &MAC[3], // [MAC_FACTORY] MAC address
  1191. &MAC[4], // [MAC_FACTORY] MAC address
  1192. &MAC[5], // [MAC_FACTORY] MAC address
  1193. NULL
  1194. };
  1195. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_CLK[] = {
  1196. &SPI_PAD_CONFIG_CLK[0], // [] SPI_PAD_configure CLK
  1197. NULL
  1198. };
  1199. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_Q[] = {
  1200. &SPI_PAD_CONFIG_Q[0], // [] SPI_PAD_configure Q(D1)
  1201. NULL
  1202. };
  1203. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_D[] = {
  1204. &SPI_PAD_CONFIG_D[0], // [] SPI_PAD_configure D(D0)
  1205. NULL
  1206. };
  1207. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_CS[] = {
  1208. &SPI_PAD_CONFIG_CS[0], // [] SPI_PAD_configure CS
  1209. NULL
  1210. };
  1211. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_HD[] = {
  1212. &SPI_PAD_CONFIG_HD[0], // [] SPI_PAD_configure HD(D3)
  1213. NULL
  1214. };
  1215. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_WP[] = {
  1216. &SPI_PAD_CONFIG_WP[0], // [] SPI_PAD_configure WP(D2)
  1217. NULL
  1218. };
  1219. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_DQS[] = {
  1220. &SPI_PAD_CONFIG_DQS[0], // [] SPI_PAD_configure DQS
  1221. NULL
  1222. };
  1223. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_D4[] = {
  1224. &SPI_PAD_CONFIG_D4[0], // [] SPI_PAD_configure D4
  1225. NULL
  1226. };
  1227. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_D5[] = {
  1228. &SPI_PAD_CONFIG_D5[0], // [] SPI_PAD_configure D5
  1229. NULL
  1230. };
  1231. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_D6[] = {
  1232. &SPI_PAD_CONFIG_D6[0], // [] SPI_PAD_configure D6
  1233. NULL
  1234. };
  1235. const esp_efuse_desc_t* ESP_EFUSE_SPI_PAD_CONFIG_D7[] = {
  1236. &SPI_PAD_CONFIG_D7[0], // [] SPI_PAD_configure D7
  1237. NULL
  1238. };
  1239. const esp_efuse_desc_t* ESP_EFUSE_WAFER_VERSION_MAJOR[] = {
  1240. &WAFER_VERSION_MAJOR[0], // [] WAFER_VERSION_MAJOR
  1241. NULL
  1242. };
  1243. const esp_efuse_desc_t* ESP_EFUSE_WAFER_VERSION_MINOR_HI[] = {
  1244. &WAFER_VERSION_MINOR_HI[0], // [] WAFER_VERSION_MINOR most significant bit
  1245. NULL
  1246. };
  1247. const esp_efuse_desc_t* ESP_EFUSE_FLASH_VERSION[] = {
  1248. &FLASH_VERSION[0], // [] Flash version
  1249. NULL
  1250. };
  1251. const esp_efuse_desc_t* ESP_EFUSE_BLK_VERSION_MAJOR[] = {
  1252. &BLK_VERSION_MAJOR[0], // [] BLK_VERSION_MAJOR
  1253. NULL
  1254. };
  1255. const esp_efuse_desc_t* ESP_EFUSE_PSRAM_VERSION[] = {
  1256. &PSRAM_VERSION[0], // [] PSRAM version
  1257. NULL
  1258. };
  1259. const esp_efuse_desc_t* ESP_EFUSE_PKG_VERSION[] = {
  1260. &PKG_VERSION[0], // [] Package version
  1261. NULL
  1262. };
  1263. const esp_efuse_desc_t* ESP_EFUSE_WAFER_VERSION_MINOR_LO[] = {
  1264. &WAFER_VERSION_MINOR_LO[0], // [] WAFER_VERSION_MINOR least significant bits
  1265. NULL
  1266. };
  1267. const esp_efuse_desc_t* ESP_EFUSE_OPTIONAL_UNIQUE_ID[] = {
  1268. &OPTIONAL_UNIQUE_ID[0], // [] Optional unique 128-bit ID
  1269. NULL
  1270. };
  1271. const esp_efuse_desc_t* ESP_EFUSE_ADC_CALIB[] = {
  1272. &ADC_CALIB[0], // [] 4 bit of ADC calibration
  1273. NULL
  1274. };
  1275. const esp_efuse_desc_t* ESP_EFUSE_BLK_VERSION_MINOR[] = {
  1276. &BLK_VERSION_MINOR[0], // [] BLK_VERSION_MINOR of BLOCK2 {0: "No calib"; 1: "ADC calib V1"; 2: "ADC calib V2"}
  1277. NULL
  1278. };
  1279. const esp_efuse_desc_t* ESP_EFUSE_TEMP_CALIB[] = {
  1280. &TEMP_CALIB[0], // [] Temperature calibration data
  1281. NULL
  1282. };
  1283. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A10H[] = {
  1284. &RTCCALIB_V1IDX_A10H[0], // []
  1285. NULL
  1286. };
  1287. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A11H[] = {
  1288. &RTCCALIB_V1IDX_A11H[0], // []
  1289. NULL
  1290. };
  1291. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A12H[] = {
  1292. &RTCCALIB_V1IDX_A12H[0], // []
  1293. NULL
  1294. };
  1295. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A13H[] = {
  1296. &RTCCALIB_V1IDX_A13H[0], // []
  1297. NULL
  1298. };
  1299. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A20H[] = {
  1300. &RTCCALIB_V1IDX_A20H[0], // []
  1301. NULL
  1302. };
  1303. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A21H[] = {
  1304. &RTCCALIB_V1IDX_A21H[0], // []
  1305. NULL
  1306. };
  1307. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A22H[] = {
  1308. &RTCCALIB_V1IDX_A22H[0], // []
  1309. NULL
  1310. };
  1311. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A23H[] = {
  1312. &RTCCALIB_V1IDX_A23H[0], // []
  1313. NULL
  1314. };
  1315. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A10L[] = {
  1316. &RTCCALIB_V1IDX_A10L[0], // []
  1317. NULL
  1318. };
  1319. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A11L[] = {
  1320. &RTCCALIB_V1IDX_A11L[0], // []
  1321. NULL
  1322. };
  1323. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A12L[] = {
  1324. &RTCCALIB_V1IDX_A12L[0], // []
  1325. NULL
  1326. };
  1327. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A13L[] = {
  1328. &RTCCALIB_V1IDX_A13L[0], // []
  1329. NULL
  1330. };
  1331. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A20L[] = {
  1332. &RTCCALIB_V1IDX_A20L[0], // []
  1333. NULL
  1334. };
  1335. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A21L[] = {
  1336. &RTCCALIB_V1IDX_A21L[0], // []
  1337. NULL
  1338. };
  1339. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A22L[] = {
  1340. &RTCCALIB_V1IDX_A22L[0], // []
  1341. NULL
  1342. };
  1343. const esp_efuse_desc_t* ESP_EFUSE_RTCCALIB_V1IDX_A23L[] = {
  1344. &RTCCALIB_V1IDX_A23L[0], // []
  1345. NULL
  1346. };
  1347. const esp_efuse_desc_t* ESP_EFUSE_USER_DATA[] = {
  1348. &USER_DATA[0], // [BLOCK_USR_DATA] User data
  1349. NULL
  1350. };
  1351. const esp_efuse_desc_t* ESP_EFUSE_USER_DATA_MAC_CUSTOM[] = {
  1352. &USER_DATA_MAC_CUSTOM[0], // [MAC_CUSTOM CUSTOM_MAC] Custom MAC
  1353. NULL
  1354. };
  1355. const esp_efuse_desc_t* ESP_EFUSE_KEY0[] = {
  1356. &KEY0[0], // [BLOCK_KEY0] Key0 or user data
  1357. NULL
  1358. };
  1359. const esp_efuse_desc_t* ESP_EFUSE_KEY1[] = {
  1360. &KEY1[0], // [BLOCK_KEY1] Key1 or user data
  1361. NULL
  1362. };
  1363. const esp_efuse_desc_t* ESP_EFUSE_KEY2[] = {
  1364. &KEY2[0], // [BLOCK_KEY2] Key2 or user data
  1365. NULL
  1366. };
  1367. const esp_efuse_desc_t* ESP_EFUSE_KEY3[] = {
  1368. &KEY3[0], // [BLOCK_KEY3] Key3 or user data
  1369. NULL
  1370. };
  1371. const esp_efuse_desc_t* ESP_EFUSE_KEY4[] = {
  1372. &KEY4[0], // [BLOCK_KEY4] Key4 or user data
  1373. NULL
  1374. };
  1375. const esp_efuse_desc_t* ESP_EFUSE_KEY5[] = {
  1376. &KEY5[0], // [BLOCK_KEY5] Key5 or user data
  1377. NULL
  1378. };
  1379. const esp_efuse_desc_t* ESP_EFUSE_SYS_DATA_PART2[] = {
  1380. &SYS_DATA_PART2[0], // [BLOCK_SYS_DATA2] System data part 2 (reserved)
  1381. NULL
  1382. };