hv_drv_UsbFatfsSystem.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /**
  2. * @file hv_drv_UsbFatfsSystem.c
  3. * @brief Defines the apis depends os.
  4. * @details Sample Code of OS Dependent Functions for FatFs.
  5. * @author HiView SoC Software Team
  6. * @version 0.0.1
  7. * @date 20230417
  8. * @copyright Copyright(c),2022-9, Hiview Software. All rights reserved.
  9. * @par History:
  10. * <table>
  11. * <tr><th>Author <th>Date <th>Details
  12. * <tr><td>HiView SoC Software Team <td>20230417 <td>Create and first Version.
  13. * </table>
  14. **/
  15. /* FreeRTOS kernel includes. */
  16. #include "FreeRTOS.h"
  17. #include "semphr.h"
  18. #include "task.h"
  19. #include "hv_drv_UsbFatfs.h"
  20. #if FF_USE_LFN == 3 /* Dynamic memory allocation */
  21. /*------------------------------------------------------------------------*/
  22. /* Allocate a memory block */
  23. /*------------------------------------------------------------------------*/
  24. void *ff_memalloc( /* Returns pointer to the allocated memory block (null if not enough core) */
  25. UINT msize /* Number of bytes to allocate */
  26. )
  27. {
  28. return HV_MALLOC(msize); /* Allocate a new memory block with POSIX API */
  29. }
  30. /*------------------------------------------------------------------------*/
  31. /* Free a memory block */
  32. /*------------------------------------------------------------------------*/
  33. void ff_memfree(
  34. void *mblock /* Pointer to the memory block to free (nothing to do if null) */
  35. )
  36. {
  37. HV_FREE(mblock); /* Free the memory block with POSIX API */
  38. }
  39. #endif
  40. #if FF_FS_REENTRANT /* Mutal exclusion */
  41. /*------------------------------------------------------------------------*/
  42. /* Create a Synchronization Object */
  43. /*------------------------------------------------------------------------*/
  44. /* This function is called in f_mount() function to create a new
  45. / synchronization object for the volume, such as semaphore and mutex.
  46. / When a 0 is returned, the f_mount() function fails with FR_INT_ERR.
  47. */
  48. //const osMutexDef_t Mutex[FF_VOLUMES]; /* Table of CMSIS-RTOS mutex */
  49. int ff_cre_syncobj( /* 1:Function succeeded, 0:Could not create the sync object */
  50. BYTE vol, /* Corresponding volume (logical drive number) */
  51. FF_SYNC_t *sobj /* Pointer to return the created sync object */
  52. )
  53. {
  54. /* FreeRTOS */
  55. *sobj = xSemaphoreCreateMutex();
  56. return (int)(*sobj != NULL);
  57. }
  58. /*------------------------------------------------------------------------*/
  59. /* Delete a Synchronization Object */
  60. /*------------------------------------------------------------------------*/
  61. /* This function is called in f_mount() function to delete a synchronization
  62. / object that created with ff_cre_syncobj() function. When a 0 is returned,
  63. / the f_mount() function fails with FR_INT_ERR.
  64. */
  65. int ff_del_syncobj( /* 1:Function succeeded, 0:Could not delete due to an error */
  66. FF_SYNC_t sobj /* Sync object tied to the logical drive to be deleted */
  67. )
  68. {
  69. /* FreeRTOS */
  70. vSemaphoreDelete(sobj);
  71. return 1;
  72. }
  73. /*------------------------------------------------------------------------*/
  74. /* Request Grant to Access the Volume */
  75. /*------------------------------------------------------------------------*/
  76. /* This function is called on entering file functions to lock the volume.
  77. / When a 0 is returned, the file function fails with FR_TIMEOUT.
  78. */
  79. int ff_req_grant( /* 1:Got a grant to access the volume, 0:Could not get a grant */
  80. FF_SYNC_t sobj /* Sync object to wait */
  81. )
  82. {
  83. /* FreeRTOS */
  84. return (int)(xSemaphoreTake(sobj, FF_FS_TIMEOUT) == pdHV_TRUE);
  85. }
  86. /*------------------------------------------------------------------------*/
  87. /* Release Grant to Access the Volume */
  88. /*------------------------------------------------------------------------*/
  89. /* This function is called on leaving file functions to unlock the volume.
  90. */
  91. void ff_rel_grant(
  92. FF_SYNC_t sobj /* Sync object to be signaled */
  93. )
  94. {
  95. /* FreeRTOS */
  96. xSemaphoreGive(sobj);
  97. }
  98. #endif