Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. menu "eFuse Bit Manager"
  2. config EFUSE_CUSTOM_TABLE
  3. bool "Use custom eFuse table"
  4. default n
  5. help
  6. Allows to generate a structure for eFuse from the CSV file.
  7. config EFUSE_CUSTOM_TABLE_FILENAME
  8. string "Custom eFuse CSV file"
  9. depends on EFUSE_CUSTOM_TABLE
  10. default main/esp_efuse_custom_table.csv
  11. help
  12. Name of the custom eFuse CSV filename. This path is evaluated
  13. relative to the project root directory.
  14. config EFUSE_VIRTUAL
  15. bool "Simulate eFuse operations in RAM"
  16. default n
  17. help
  18. All read and writes operations are redirected to RAM instead of eFuse registers.
  19. If this option is set, all permanent changes (via eFuse) are disabled.
  20. Log output will state changes which would be applied, but they will not be.
  21. choice EFUSE_CODE_SCHEME_SELECTOR
  22. prompt "Coding Scheme Compatibility"
  23. default EFUSE_CODE_SCHEME_COMPAT_3_4
  24. help
  25. Selector eFuse code scheme.
  26. config EFUSE_CODE_SCHEME_COMPAT_NONE
  27. bool "None Only"
  28. config EFUSE_CODE_SCHEME_COMPAT_3_4
  29. bool "3/4 and None"
  30. config EFUSE_CODE_SCHEME_COMPAT_REPEAT
  31. bool "Repeat, 3/4 and None (common table does not support it)"
  32. endchoice
  33. config EFUSE_MAX_BLK_LEN
  34. int
  35. default 256 if EFUSE_CODE_SCHEME_COMPAT_NONE
  36. default 192 if EFUSE_CODE_SCHEME_COMPAT_3_4
  37. default 128 if EFUSE_CODE_SCHEME_COMPAT_REPEAT
  38. endmenu