hv_drv_UsbFatfsDiskIo.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /**
  2. * @file hv_drv_UsbFatfsDiskIo.c
  3. * @brief Low level disk I/O module skeleton for FatFs
  4. * @details If a working storage control module is available, it should be
  5. * attached to the FatFs via a glue function rather than modifying it.
  6. * This is an example of glue functions to attach various exsisting
  7. * storage control modules to the FatFs module with a defined API.
  8. * @author HiView SoC Software Team
  9. * @version 0.0.1
  10. * @date 20230417
  11. * @copyright Copyright(c),2022-9, Hiview Software. All rights reserved.
  12. * @par History:
  13. * <table>
  14. * <tr><th>Author <th>Date <th>Details
  15. * <tr><td>HiView SoC Software Team <td>20230417 <td>Create and first Version.
  16. * </table>
  17. **/
  18. #include "hv_drv_UsbFatfs.h" /* Obtains integer types */
  19. #include "hv_drv_UsbFatfsDiskIo.h" /* Declarations of disk functions */
  20. #include "hv_drv_UsbCorePlatform.h"
  21. #include "hv_drv_UsbPortingUsbTypes.h"
  22. #include "hv_drv_UsbCoreHub.h"
  23. #include "hv_drv_UsbPortingOsDisk.h"
  24. /* Definitions of physical drive number for each drive */
  25. #define DEV_RAM 0 /* Example: Map Ramdisk to physical drive 0 */
  26. #define DEV_MMC 1 /* Example: Map MMC/SD card to physical drive 1 */
  27. #define DEV_USB 2 /* Example: Map USB MSD to physical drive 2 */
  28. int USB_disk_write(const BYTE *buff, LBA_t sector, UINT count)
  29. {
  30. int RET = 0;
  31. return get_scsi_disk_channel()->funs->write(get_scsi_disk_channel(),buff,count,sector);
  32. }
  33. int USB_disk_read(BYTE *buff, LBA_t sector, UINT count)
  34. {
  35. int RET = 0;
  36. return get_scsi_disk_channel()->funs->read(get_scsi_disk_channel(),buff,count,sector);
  37. }
  38. int USB_disk_initialize(void)
  39. {
  40. int RET = 0;
  41. //Hv_Vos_MSleep(3000);
  42. USB_LOGI("USB_disk_initialize->hub_port_check");
  43. hub_port_check(usb_get_hub());
  44. return RET;
  45. }
  46. int RAM_disk_write(const BYTE *buff, LBA_t sector, UINT count)
  47. {
  48. int RET = 0;
  49. return RET;
  50. }
  51. int RAM_disk_read(const BYTE *buff, LBA_t sector, UINT count)
  52. {
  53. int RET = 0;
  54. return RET;
  55. }
  56. DSTATUS USB_disk_status(void)
  57. {
  58. DSTATUS RET = 0;
  59. return RET;
  60. }
  61. DSTATUS RAM_disk_status(void)
  62. {
  63. return 0;
  64. }
  65. int RAM_disk_initialize(void)
  66. {
  67. int RET = 0;
  68. return RET;
  69. }
  70. DSTATUS MMC_disk_status(void)
  71. {
  72. return 0;
  73. }
  74. int MMC_disk_initialize(void)
  75. {
  76. int RET = 0;
  77. return RET;
  78. }
  79. /*-----------------------------------------------------------------------*/
  80. /* Get Drive Status */
  81. /*-----------------------------------------------------------------------*/
  82. DSTATUS disk_status (
  83. BYTE pdrv /* Physical drive nmuber to identify the drive */
  84. )
  85. {
  86. DSTATUS stat = STA_NOINIT;
  87. switch (pdrv) {
  88. case DEV_RAM :
  89. stat = RAM_disk_status();
  90. break;
  91. case DEV_MMC :
  92. stat = MMC_disk_status();
  93. break;
  94. case DEV_USB :
  95. stat = USB_disk_status();
  96. default:
  97. break;
  98. }
  99. return stat;
  100. }
  101. /*-----------------------------------------------------------------------*/
  102. /* Inidialize a Drive */
  103. /*-----------------------------------------------------------------------*/
  104. DSTATUS disk_initialize (
  105. BYTE pdrv /* Physical drive nmuber to identify the drive */
  106. )
  107. {
  108. DSTATUS stat;
  109. int result;
  110. switch (pdrv) {
  111. case DEV_RAM :
  112. case DEV_MMC :
  113. case DEV_USB :
  114. result = USB_disk_initialize();
  115. return RES_OK;
  116. }
  117. return STA_NOINIT;
  118. }
  119. /*-----------------------------------------------------------------------*/
  120. /* Read Sector(s) */
  121. /*-----------------------------------------------------------------------*/
  122. DRESULT disk_read (
  123. BYTE pdrv, /* Physical drive nmuber to identify the drive */
  124. BYTE *buff, /* Data buffer to store read data */
  125. LBA_t sector, /* Start sector in LBA */
  126. UINT count /* Number of sectors to read */
  127. )
  128. {
  129. DRESULT res;
  130. int result;
  131. switch (pdrv) {
  132. case DEV_RAM :
  133. // translate the arguments here
  134. case DEV_MMC :
  135. // translate the arguments here
  136. case DEV_USB :
  137. // translate the arguments here
  138. result = USB_disk_read(buff, sector, count);
  139. if(!result)
  140. res = RES_OK;
  141. else
  142. res = (DRESULT)result;
  143. return res;
  144. }
  145. return RES_PARERR;
  146. }
  147. /*-----------------------------------------------------------------------*/
  148. /* Write Sector(s) */
  149. /*-----------------------------------------------------------------------*/
  150. #if FF_FS_READONLY == 0
  151. DRESULT disk_write (
  152. BYTE pdrv, /* Physical drive nmuber to identify the drive */
  153. const BYTE *buff, /* Data to be written */
  154. LBA_t sector, /* Start sector in LBA */
  155. UINT count /* Number of sectors to write */
  156. )
  157. {
  158. DRESULT res;
  159. int result;
  160. switch (pdrv) {
  161. case DEV_RAM :
  162. // translate the arguments here
  163. case DEV_MMC :
  164. // translate the arguments here
  165. case DEV_USB :
  166. // translate the arguments here
  167. result = USB_disk_write(buff, sector, count);
  168. if(!result)
  169. res = RES_OK;
  170. else
  171. res = (DRESULT)result;
  172. return res;
  173. }
  174. return RES_PARERR;
  175. }
  176. #endif
  177. /*-----------------------------------------------------------------------*/
  178. /* Miscellaneous Functions */
  179. /*-----------------------------------------------------------------------*/
  180. DRESULT disk_ioctl (
  181. BYTE pdrv, /* Physical drive nmuber (0..) */
  182. BYTE cmd, /* Control code */
  183. void *buff /* Buffer to send/receive control data */
  184. )
  185. {
  186. DRESULT res = RES_OK;
  187. //int result;
  188. switch (pdrv) {
  189. case DEV_RAM :
  190. // Process of the command for the RAM drive
  191. return res;
  192. case DEV_MMC :
  193. // Process of the command for the MMC/SD card
  194. return res;
  195. case DEV_USB :
  196. // Process of the command the USB drive
  197. return res;
  198. }
  199. return RES_PARERR;
  200. }