littlefs.h 3.5 KB

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