Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # Flash driver configuration options
  2. # Copyright (c) 2016 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. #
  5. # Flash driver
  6. #
  7. config FLASH_HAS_DRIVER_ENABLED
  8. bool
  9. help
  10. This option is enabled when any flash driver is enabled.
  11. config FLASH_HAS_PAGE_LAYOUT
  12. bool
  13. help
  14. This option is enabled when the SoC flash driver supports
  15. retrieving the layout of flash memory pages.
  16. config FLASH_JESD216
  17. bool
  18. help
  19. Selected by drivers that support JESD216-compatible flash
  20. devices to enable building a common support module.
  21. config FLASH_JESD216_API
  22. bool "Provide API to read JESD216 flash parameters"
  23. depends on FLASH_JESD216
  24. help
  25. This option extends the Zephyr flash API with the ability
  26. to access the Serial Flash Discoverable Parameter section
  27. allowing runtime determination of serial flash parameters
  28. for flash drivers that expose this capability.
  29. menuconfig FLASH
  30. bool "Flash hardware support"
  31. help
  32. Enable support for the flash hardware.
  33. if FLASH
  34. module = FLASH
  35. module-str = flash
  36. source "subsys/logging/Kconfig.template.log_config"
  37. config FLASH_SHELL
  38. bool "Enable Flash shell"
  39. depends on SHELL && FLASH_PAGE_LAYOUT
  40. default y
  41. help
  42. Enable the flash shell with flash related commands such as test,
  43. write, read and erase.
  44. config FLASH_PAGE_LAYOUT
  45. bool "API for retrieving the layout of pages"
  46. depends on FLASH_HAS_PAGE_LAYOUT
  47. default y
  48. help
  49. Enables API for retrieving the layout of flash memory pages.
  50. config SPINOR_TEST_DELAYCHAIN
  51. bool "test delaychain"
  52. default n
  53. help
  54. Enables test delaychain try.
  55. config XSPI_NOR_ACTS_DEV_TEST_DELAYCHAIN_PRIORITY
  56. int "test delaychain proprity"
  57. default 60
  58. help
  59. set test delaychain try proprity.
  60. config NOR_ACTS_DATA_PROTECTION_ENABLE
  61. bool "write protection"
  62. default n
  63. help
  64. Enables write protection.
  65. config NOR_ACTS_DQ_MODE_ENABLE
  66. bool "try nor dual quad read mode"
  67. default n
  68. help
  69. Enables mode to try nor dual quad read mode.
  70. source "drivers/flash/Kconfig.acts"
  71. endif # FLASH