littlefs.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Copyright (c) 2019 Bolt Innovation Management, LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_FS_LITTLEFS_H_
  7. #define ZEPHYR_INCLUDE_FS_LITTLEFS_H_
  8. #include <zephyr/types.h>
  9. #include <kernel.h>
  10. #include <storage/flash_map.h>
  11. #include <lfs.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /** @brief Filesystem info structure for LittleFS mount */
  16. struct fs_littlefs {
  17. /* Defaulted in driver, customizable before mount. */
  18. struct lfs_config cfg;
  19. /* Must be cfg.cache_size */
  20. uint8_t *read_buffer;
  21. /* Must be cfg.cache_size */
  22. uint8_t *prog_buffer;
  23. /* Mustbe cfg.lookahead_size/4 elements, and
  24. * cfg.lookahead_size must be a multiple of 8.
  25. */
  26. uint32_t *lookahead_buffer[CONFIG_FS_LITTLEFS_LOOKAHEAD_SIZE / sizeof(uint32_t)];
  27. /* These structures are filled automatically at mount. */
  28. struct lfs lfs;
  29. const struct flash_area *area;
  30. struct k_mutex mutex;
  31. };
  32. /** @brief Define a littlefs configuration with customized size
  33. * characteristics.
  34. *
  35. * This defines static arrays required for caches, and initializes the
  36. * littlefs configuration structure to use the provided values instead
  37. * of the global Kconfig defaults. A pointer to the named object must
  38. * be stored in the ``.fs_data`` field of a :c:type:`struct fs_mount`
  39. * object.
  40. *
  41. * To define an instance for the Kconfig defaults, use
  42. * :c:macro:`FS_LITTLEFS_DECLARE_DEFAULT_CONFIG`.
  43. *
  44. * To completely control file system configuration the application can
  45. * directly define and initialize a :c:type:`struct fs_littlefs`
  46. * object. The application is responsible for ensuring the configured
  47. * values are consistent with littlefs requirements.
  48. *
  49. * @note If you use a non-default configuration for cache size, you
  50. * must also select @kconfig{CONFIG_FS_LITTLEFS_FC_HEAP_SIZE} to relax
  51. * the size constraints on per-file cache allocations.
  52. *
  53. * @param name the name for the structure. The defined object has
  54. * file scope.
  55. * @param read_sz see @kconfig{CONFIG_FS_LITTLEFS_READ_SIZE}
  56. * @param prog_sz see @kconfig{CONFIG_FS_LITTLEFS_PROG_SIZE}
  57. * @param cache_sz see @kconfig{CONFIG_FS_LITTLEFS_CACHE_SIZE}
  58. * @param lookahead_sz see @kconfig{CONFIG_FS_LITTLEFS_LOOKAHEAD_SIZE}
  59. */
  60. #define FS_LITTLEFS_DECLARE_CUSTOM_CONFIG(name, read_sz, prog_sz, cache_sz, lookahead_sz) \
  61. static uint8_t __aligned(4) name ## _read_buffer[cache_sz]; \
  62. static uint8_t __aligned(4) name ## _prog_buffer[cache_sz]; \
  63. static uint32_t name ## _lookahead_buffer[(lookahead_sz) / sizeof(uint32_t)]; \
  64. static struct fs_littlefs name = { \
  65. .cfg = { \
  66. .read_size = (read_sz), \
  67. .prog_size = (prog_sz), \
  68. .cache_size = (cache_sz), \
  69. .lookahead_size = (lookahead_sz), \
  70. .read_buffer = name ## _read_buffer, \
  71. .prog_buffer = name ## _prog_buffer, \
  72. .lookahead_buffer = name ## _lookahead_buffer, \
  73. }, \
  74. }
  75. /** @brief Define a littlefs configuration with default characteristics.
  76. *
  77. * This defines static arrays and initializes the littlefs
  78. * configuration structure to use the default size configuration
  79. * provided by Kconfig.
  80. *
  81. * @param name the name for the structure. The defined object has
  82. * file scope.
  83. */
  84. #define FS_LITTLEFS_DECLARE_DEFAULT_CONFIG(name) \
  85. FS_LITTLEFS_DECLARE_CUSTOM_CONFIG(name, \
  86. CONFIG_FS_LITTLEFS_READ_SIZE, \
  87. CONFIG_FS_LITTLEFS_PROG_SIZE, \
  88. CONFIG_FS_LITTLEFS_CACHE_SIZE, \
  89. CONFIG_FS_LITTLEFS_LOOKAHEAD_SIZE)
  90. #ifdef __cplusplus
  91. }
  92. #endif
  93. #endif /* ZEPHYR_INCLUDE_FS_LITTLEFS_H_ */