fs_manager.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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. static const char * const fat_fs_disk_names[] = {
  13. "NOR", "NAND", "PSRAM", "USB", "SD", ""
  14. };
  15. static const char * const fat_fs_volume_names[] = {
  16. "/NOR:", "/NAND:", "/PSRAM:", "/USB:", "/SD:", ""
  17. };
  18. struct fat_fs_volume {
  19. struct fs_mount_t *mp;
  20. uint8_t allocated : 1; /* 0: buffer not allocated, 1: buffer allocated */
  21. uint8_t mounted : 1; /* 0: volume not mounted, 1: volume mounted */
  22. };
  23. static struct fat_fs_volume fat_fs_volumes[_VOLUMES];
  24. int fs_manager_init(void)
  25. {
  26. int i;
  27. int res = 0;
  28. struct fs_mount_t *mp = NULL;
  29. for (i = 0; i < DISK_MAX_NUM; i++) {
  30. /* fs_manager_init() should be called only once */
  31. if (fat_fs_volumes[i].allocated == 1) {
  32. continue;
  33. }
  34. if (disk_access_init(fat_fs_disk_names[i]) != 0) {
  35. continue;
  36. }
  37. mp = mem_malloc(sizeof(struct fs_mount_t));
  38. if (mp == NULL) {
  39. goto malloc_failed;
  40. }
  41. mp->fs_data = mem_malloc(sizeof(FATFS));
  42. if (mp->fs_data == NULL) {
  43. goto malloc_failed;
  44. }
  45. mp->type = FS_FATFS;
  46. mp->mnt_point = fat_fs_volume_names[i];
  47. res = fs_mount(mp);
  48. if (res != FR_OK) {
  49. SYS_LOG_WRN("fs (%s) init failed (%d)", fat_fs_volume_names[i], res);
  50. mem_free(mp->fs_data);
  51. mem_free(mp);
  52. } else {
  53. SYS_LOG_INF("fs (%s) init success", fat_fs_volume_names[i]);
  54. fat_fs_volumes[i].mp = mp;
  55. fat_fs_volumes[i].allocated = 1;
  56. fat_fs_volumes[i].mounted = 1;
  57. }
  58. }
  59. return res;
  60. malloc_failed:
  61. SYS_LOG_ERR("malloc failed");
  62. if (mp) {
  63. if (mp->fs_data)
  64. mem_free(mp->fs_data);
  65. mem_free(mp);
  66. }
  67. return -ENOMEM;
  68. }
  69. static int fs_manager_get_volume(const uint8_t *volume_name)
  70. {
  71. int index;
  72. for (index = 0; index < DISK_MAX_NUM; index++) {
  73. if (!strcmp(volume_name, fat_fs_volume_names[index])) {
  74. break;
  75. }
  76. }
  77. if (index >= DISK_MAX_NUM) {
  78. return -EINVAL;
  79. }
  80. if (fat_fs_volumes[index].allocated == 0) {
  81. return -EINVAL;
  82. }
  83. if (fat_fs_volumes[index].mounted == 0) {
  84. return -EINVAL;
  85. }
  86. return index;
  87. }
  88. int fs_manager_disk_init(const uint8_t *volume_name)
  89. {
  90. int index, ret;
  91. struct fs_mount_t *mp = NULL;
  92. for (index = 0; index < DISK_MAX_NUM; index++) {
  93. if (!strcmp(volume_name, fat_fs_volume_names[index])) {
  94. break;
  95. }
  96. }
  97. if (index >= DISK_MAX_NUM) {
  98. return -EINVAL;
  99. }
  100. if (fat_fs_volumes[index].mounted) {
  101. return 0;
  102. }
  103. if (fat_fs_volumes[index].allocated == 0) {
  104. mp = mem_malloc(sizeof(struct fs_mount_t));
  105. if (mp == NULL) {
  106. goto malloc_failed;
  107. }
  108. mp->fs_data = mem_malloc(sizeof(FATFS));
  109. if (mp->fs_data == NULL) {
  110. goto malloc_failed;
  111. }
  112. mp->type = FS_FATFS;
  113. mp->mnt_point = fat_fs_volume_names[index];
  114. fat_fs_volumes[index].mp = mp;
  115. fat_fs_volumes[index].allocated = 1;
  116. }
  117. ret = fs_mount(fat_fs_volumes[index].mp);
  118. if (ret) {
  119. SYS_LOG_ERR("fs (%s) init failed", volume_name);
  120. } else {
  121. SYS_LOG_INF("fs (%s) init success", volume_name);
  122. fat_fs_volumes[index].mounted = 1;
  123. }
  124. return ret;
  125. malloc_failed:
  126. SYS_LOG_ERR("malloc failed");
  127. if (mp) {
  128. if (mp->fs_data)
  129. mem_free(mp->fs_data);
  130. mem_free(mp);
  131. }
  132. return -ENOMEM;
  133. }
  134. int fs_manager_disk_uninit(const uint8_t *volume_name)
  135. {
  136. int index, ret;
  137. index = fs_manager_get_volume(volume_name);
  138. if (index < 0) {
  139. return 0; /* maybe umounted */
  140. }
  141. ret = fs_unmount(fat_fs_volumes[index].mp);
  142. if (ret) {
  143. SYS_LOG_ERR("fs (%s) uninit failed (%d)", volume_name, ret);
  144. return ret;
  145. }
  146. fat_fs_volumes[index].mounted = 0;
  147. return 0;
  148. }
  149. int fs_manager_get_volume_state(const uint8_t *volume_name)
  150. {
  151. if (fs_manager_get_volume(volume_name) < 0) {
  152. return 0;
  153. }
  154. return 1;
  155. }
  156. int fs_manager_get_free_capacity(const uint8_t *volume_name)
  157. {
  158. struct fs_statvfs stat;
  159. int ret;
  160. if (fs_manager_get_volume(volume_name) < 0) {
  161. return 0;
  162. }
  163. ret = fs_statvfs(volume_name, &stat);
  164. if (ret) {
  165. SYS_LOG_ERR("Error [%d]", ret);
  166. ret = 0;
  167. } else {
  168. if (stat.f_frsize < 1024 || stat.f_bfree < 1024) {
  169. ret = (stat.f_frsize * stat.f_bfree) >> 20;
  170. } else {
  171. ret = stat.f_frsize / 1024 * stat.f_bfree / 1024;
  172. }
  173. SYS_LOG_INF("total %d Mbytes", ret);
  174. }
  175. return ret;
  176. }
  177. int fs_manager_get_total_capacity(const uint8_t *volume_name)
  178. {
  179. struct fs_statvfs stat;
  180. int ret;
  181. if (fs_manager_get_volume(volume_name) < 0) {
  182. return 0;
  183. }
  184. ret = fs_statvfs(volume_name, &stat);
  185. if (ret) {
  186. SYS_LOG_ERR("Error [%d]", ret);
  187. ret = 0;
  188. } else {
  189. if (stat.f_frsize < 1024 || stat.f_blocks < 1024) {
  190. ret = (stat.f_frsize * stat.f_blocks) >> 20;
  191. } else {
  192. ret = stat.f_frsize / 1024 * stat.f_blocks / 1024;
  193. }
  194. SYS_LOG_INF("total %d Mbytes", ret);
  195. }
  196. return ret;
  197. }
  198. int fs_manager_sdcard_exit_high_speed(void)
  199. {
  200. #ifdef CONFIG_MMC_SDCARD_DEV_NAME
  201. struct device *sd_disk = device_get_binding(CONFIG_MMC_SDCARD_DEV_NAME);
  202. if (!sd_disk) {
  203. return -ENODEV;
  204. }
  205. return flash_ioctl(sd_disk, DISK_IOCTL_EXIT_HIGH_SPEED, NULL);
  206. #else
  207. return 0;
  208. #endif
  209. }
  210. int fs_manager_sdcard_enter_high_speed(void)
  211. {
  212. #ifdef CONFIG_MMC_SDCARD_DEV_NAME
  213. struct device *sd_disk = device_get_binding(CONFIG_MMC_SDCARD_DEV_NAME);
  214. if (!sd_disk) {
  215. return -ENODEV;
  216. }
  217. return flash_ioctl(sd_disk, DISK_IOCTL_ENTER_HIGH_SPEED, NULL);
  218. #else
  219. return 0;
  220. #endif
  221. }