Kconfig.littlefs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Copyright (c) 2019 Bolt Innovation Management, LLC
  2. # Copyright (c) 2019 Peter Bigot Consulting, LLC
  3. # Copyright (c) 2020 Nordic Semiconductor ASA
  4. # SPDX-License-Identifier: Apache-2.0
  5. config FILE_SYSTEM_LITTLEFS
  6. bool "LittleFS support"
  7. depends on FILE_SYSTEM
  8. depends on FLASH_MAP
  9. depends on FLASH_PAGE_LAYOUT
  10. help
  11. Enables LittleFS file system support.
  12. if FILE_SYSTEM_LITTLEFS
  13. menu "LittleFS Settings"
  14. visible if FILE_SYSTEM_LITTLEFS
  15. config FS_LITTLEFS_NUM_FILES
  16. int "Maximum number of opened files"
  17. default 4
  18. help
  19. This is a global maximum across all mounted littlefs filesystems.
  20. config FS_LITTLEFS_NUM_DIRS
  21. int "Maximum number of opened directories"
  22. default 4
  23. help
  24. This is a global maximum across all mounted littlefs filesystems.
  25. config FS_LITTLEFS_READ_SIZE
  26. int "Minimum size of a block read"
  27. default 16
  28. help
  29. All read operations will be a multiple of this value.
  30. config FS_LITTLEFS_PROG_SIZE
  31. int "Minimum size of a block program"
  32. default 16
  33. help
  34. All program operations will be a multiple of this value.
  35. config FS_LITTLEFS_CACHE_SIZE
  36. int "Size of block caches in bytes"
  37. default 64
  38. help
  39. Each cache buffers a portion of a block in RAM. The littlefs
  40. needs a read cache, a program cache, and one additional cache
  41. per file. Larger caches can improve performance by storing
  42. more data and reducing the number of disk accesses. Must be a
  43. multiple of the read and program sizes of the underlying flash
  44. device, and a factor of the block size.
  45. config FS_LITTLEFS_LOOKAHEAD_SIZE
  46. int "Size of lookahead buffer in bytes"
  47. default 32
  48. help
  49. A larger lookahead buffer increases the number of blocks found
  50. during an allocation pass. The lookahead buffer is stored as a
  51. compact bitmap, so each byte of RAM can track 8 blocks. Must
  52. be a multiple of 8.
  53. config FS_LITTLEFS_BLOCK_CYCLES
  54. int "Number of erase cycles before moving data to another block"
  55. default 512
  56. help
  57. For dynamic wear leveling, the number of erase cycles before data
  58. is moved to another block. Set to a non-positive value to
  59. disable leveling.
  60. endmenu
  61. config FS_LITTLEFS_FC_HEAP_SIZE
  62. int "Enable flexible file cache sizes for littlefs"
  63. default 0
  64. help
  65. littlefs requires a per-file buffer to cache data.
  66. When applications customize littlefs configurations and support
  67. different cache sizes for different partitions this preallocation is
  68. inadequate as an application might require a small number of files
  69. using a large cache size and a larger number of files using a
  70. smaller cache size. In that case application should provide a
  71. positive value for the heap size. Be aware that there is a
  72. per-allocation overhead that affects how much usable space is
  73. present in the heap.
  74. If this option is set to a non-positive value the heap is sized to
  75. support up to FS_LITTLE_FS_NUM_FILES blocks of
  76. FS_LITTLEFS_CACHE_SIZE bytes.
  77. endif # FILE_SYSTEM_LITTLEFS