littlefs_manager.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file file system manager interface
  8. */
  9. #include <os_common_api.h>
  10. #include <mem_manager.h>
  11. #include <fs_manager.h>
  12. #include <fs/fs.h>
  13. #include <fs/littlefs.h>
  14. #include <partition/partition.h>
  15. #include <ff.h>
  16. static const char * const little_fs_disk_names[] = {
  17. "NOR", "NAND", "PSRAM", "USB", "SD", ""
  18. };
  19. static const char * const littlefs_volume_names[] = {
  20. "/NOR:", "/NAND:", "/PSRAM:", "/USB:", "/SD:", ""
  21. };
  22. FS_LITTLEFS_DECLARE_DEFAULT_CONFIG(storage);
  23. struct little_fs_volume {
  24. struct fs_mount_t *mp;
  25. uint8_t allocated : 1; /* 0: buffer not allocated, 1: buffer allocated */
  26. uint8_t mounted : 1; /* 0: volume not mounted, 1: volume mounted */
  27. };
  28. static struct little_fs_volume little_fs_volume[_VOLUMES];
  29. int littlefs_manager_init(void)
  30. {
  31. int i;
  32. int res = 0;
  33. struct fs_mount_t *mp = NULL;
  34. for (i = 0; i < DISK_MAX_NUM; i++) {
  35. /* fs_manager_init() should be called only once */
  36. if (little_fs_volume[i].allocated == 1) {
  37. continue;
  38. }
  39. if (disk_access_init(little_fs_disk_names[i]) != 0) {
  40. continue;
  41. }
  42. mp = mem_malloc(sizeof(struct fs_mount_t));
  43. if (mp == NULL) {
  44. goto malloc_failed;
  45. }
  46. mp->fs_data = &storage;
  47. mp->type = FS_LITTLEFS;
  48. mp->mnt_point = "/littlefs";
  49. mp->storage_dev = (void *)PARTITION_FILE_ID_LITTLEFS;
  50. res = fs_mount(mp);
  51. if (res != FR_OK) {
  52. SYS_LOG_WRN("fs (%s) init failed (%d)", littlefs_volume_names[i], res);
  53. mem_free(mp->fs_data);
  54. mem_free(mp);
  55. } else {
  56. SYS_LOG_INF("fs (%s) init success", littlefs_volume_names[i]);
  57. little_fs_volume[i].mp = mp;
  58. little_fs_volume[i].allocated = 1;
  59. little_fs_volume[i].mounted = 1;
  60. }
  61. }
  62. return res;
  63. malloc_failed:
  64. SYS_LOG_ERR("malloc failed");
  65. if (mp) {
  66. if (mp->fs_data)
  67. mem_free(mp->fs_data);
  68. mem_free(mp);
  69. }
  70. return -ENOMEM;
  71. }
  72. static int littlefs_manager_get_volume(const uint8_t *volume_name)
  73. {
  74. int index;
  75. for (index = 0; index < DISK_MAX_NUM; index++) {
  76. if (!strcmp(volume_name, littlefs_volume_names[index])) {
  77. break;
  78. }
  79. }
  80. if (index >= DISK_MAX_NUM) {
  81. return -EINVAL;
  82. }
  83. if (little_fs_volume[index].allocated == 0) {
  84. return -EINVAL;
  85. }
  86. if (little_fs_volume[index].mounted == 0) {
  87. return -EINVAL;
  88. }
  89. return index;
  90. }
  91. int littlefs_manager_get_volume_state(const uint8_t *volume_name)
  92. {
  93. if (littlefs_manager_get_volume(volume_name) < 0) {
  94. return 0;
  95. }
  96. return 1;
  97. }
  98. int littlefs_manager_get_free_capacity(const uint8_t *volume_name)
  99. {
  100. struct fs_statvfs stat;
  101. int ret;
  102. if (littlefs_manager_get_volume(volume_name) < 0) {
  103. return 0;
  104. }
  105. ret = fs_statvfs(volume_name, &stat);
  106. if (ret) {
  107. SYS_LOG_ERR("Error [%d]", ret);
  108. ret = 0;
  109. } else {
  110. if (stat.f_frsize < 1024 || stat.f_bfree < 1024) {
  111. ret = (stat.f_frsize * stat.f_bfree) >> 20;
  112. } else {
  113. ret = stat.f_frsize / 1024 * stat.f_bfree / 1024;
  114. }
  115. SYS_LOG_INF("total %d Mbytes", ret);
  116. }
  117. return ret;
  118. }
  119. int littlefs_manager_get_total_capacity(const uint8_t *volume_name)
  120. {
  121. struct fs_statvfs stat;
  122. int ret;
  123. if (littlefs_manager_get_volume(volume_name) < 0) {
  124. return 0;
  125. }
  126. ret = fs_statvfs(volume_name, &stat);
  127. if (ret) {
  128. SYS_LOG_ERR("Error [%d]", ret);
  129. ret = 0;
  130. } else {
  131. if (stat.f_frsize < 1024 || stat.f_blocks < 1024) {
  132. ret = (stat.f_frsize * stat.f_blocks) >> 20;
  133. } else {
  134. ret = stat.f_frsize / 1024 * stat.f_blocks / 1024;
  135. }
  136. SYS_LOG_INF("total %d Mbytes", ret);
  137. }
  138. return ret;
  139. }