Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Kconfig - flash driver configuration options
  2. #
  3. # Copyright (c) 2016 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. #
  8. # flash driver
  9. #
  10. menuconfig NVRAM_CONFIG
  11. bool
  12. prompt "Non-volatile config support"
  13. default n
  14. help
  15. Enable support for Non-volatile config.
  16. if NVRAM_CONFIG
  17. config NVRAM_STORAGE_FLASH
  18. bool
  19. prompt "NVRAM based on Flash"
  20. depends on FLASH
  21. default y
  22. config NVRAM_STORAGE_RAMSIM
  23. bool
  24. prompt "Simulated NVRAM based on RAM"
  25. depends on FLASH && !NVRAM_STORAGE_FLASH
  26. default n
  27. config NVRAM_STORAGE_DEV_NAME
  28. string
  29. prompt "Storage device name for NVRAM"
  30. default "spinor"
  31. config NVRAM_FACTORY_REGION_SEGMENT_SIZE
  32. hex "Factory read-only region segment size"
  33. help
  34. This option specifies the region segment size of factory config in the NVRAM,
  35. It need be aligned with flash erase sector.
  36. config NVRAM_STORAGE_FACTORY_RW_REGION
  37. bool
  38. prompt "Enable NVRAM FACTORY_RW_REGION"
  39. depends on FLASH
  40. default n
  41. config NVRAM_FACTORY_RW_REGION_SEGMENT_SIZE
  42. hex "Factory region segment size"
  43. help
  44. This option specifies the region segment size of factory config in the NVRAM,
  45. It need be aligned with flash erase sector.
  46. config NVRAM_USER_REGION_SEGMENT_SIZE
  47. hex "User region segment size"
  48. help
  49. This option specifies the region segment size of user config in the NVRAM,
  50. It need be aligned with flash erase sector.
  51. config NVRAM_CONFIG_INIT_PRIORITY
  52. int "NVRAM config init priority"
  53. depends on NVRAM_CONFIG
  54. default 48
  55. help
  56. This option controls the priority of SPINOR flash device
  57. initialization. Lower values ensures that the device
  58. is initialized earlier in the startup cycle. If unsure, leave
  59. at default value.
  60. endif