hv_drv_UsbFatfs.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. /*
  2. * @file hv_drv_UsbFatfs.h
  3. * @brief Header file of Generic FAT Filesystem module R0.14.
  4. *
  5. * @author HiView SoC Software Team
  6. * @version 1.0.0
  7. * @date 2022-06-15
  8. */
  9. #ifndef FF_DEFINED
  10. #define FF_DEFINED 86606 /* Revision ID */
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #include "hv_drv_UsbFatfsConf.h" /* FatFs configuration options */
  15. #if FF_DEFINED != FFCONF_DEF
  16. #error Wrong configuration file (hv_drv_UsbFatfsConf.h).
  17. #endif
  18. /* Integer types used for FatFs API */
  19. #if defined(_WIN32) /* Main development platform */
  20. #define FF_INTDEF 2
  21. #include <windows.h>
  22. typedef unsigned __int64 QWORD;
  23. #elif (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__cplusplus) /* C99 or later */
  24. #define FF_INTDEF 2
  25. #include <stdint.h>
  26. typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
  27. typedef unsigned char BYTE; /* char must be 8-bit */
  28. typedef uint16_t WORD; /* 16-bit unsigned integer */
  29. typedef uint32_t DWORD; /* 32-bit unsigned integer */
  30. typedef uint64_t QWORD; /* 64-bit unsigned integer */
  31. typedef WORD WCHAR; /* UTF-16 character type */
  32. #else /* Earlier than C99 */
  33. #define FF_INTDEF 1
  34. typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
  35. typedef unsigned char BYTE; /* char must be 8-bit */
  36. typedef unsigned short WORD; /* 16-bit unsigned integer */
  37. typedef unsigned long DWORD; /* 32-bit unsigned integer */
  38. typedef WORD WCHAR; /* UTF-16 character type */
  39. #endif
  40. /* Definitions of volume management */
  41. #if FF_MULTI_PARTITION /* Multiple partition configuration */
  42. typedef struct {
  43. BYTE pd; /* Physical drive number */
  44. BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */
  45. } PARTITION;
  46. extern PARTITION VolToPart[]; /* Volume - Partition mapping table */
  47. #endif
  48. #if FF_STR_VOLUME_ID
  49. #ifndef FF_VOLUME_STRS
  50. extern const char *VolumeStr[FF_VOLUMES]; /* User defied volume ID */
  51. #endif
  52. #endif
  53. /* Type of path name strings on FatFs API */
  54. #ifndef _INC_TCHAR
  55. #define _INC_TCHAR
  56. #if FF_USE_LFN && FF_LFN_UNICODE == 1 /* Unicode in UTF-16 encoding */
  57. typedef WCHAR TCHAR;
  58. #define _T(x) L##x
  59. #define _TEXT(x) L##x
  60. #elif FF_USE_LFN && FF_LFN_UNICODE == 2 /* Unicode in UTF-8 encoding */
  61. typedef char TCHAR;
  62. #define _T(x) u8##x
  63. #define _TEXT(x) u8##x
  64. #elif FF_USE_LFN && FF_LFN_UNICODE == 3 /* Unicode in UTF-32 encoding */
  65. typedef DWORD TCHAR;
  66. #define _T(x) U##x
  67. #define _TEXT(x) U##x
  68. #elif FF_USE_LFN && (FF_LFN_UNICODE < 0 || FF_LFN_UNICODE > 3)
  69. #error Wrong FF_LFN_UNICODE setting
  70. #else /* ANSI/OEM code in SBCS/DBCS */
  71. typedef char TCHAR;
  72. #define _T(x) x
  73. #define _TEXT(x) x
  74. #endif
  75. #endif
  76. /* Type of file size and LBA variables */
  77. #if FF_FS_EXFAT
  78. #if FF_INTDEF != 2
  79. #error exFAT feature wants C99 or later
  80. #endif
  81. typedef QWORD FSIZE_t;
  82. #if FF_LBA64
  83. typedef QWORD LBA_t;
  84. #else
  85. typedef DWORD LBA_t;
  86. #endif
  87. #else
  88. #if FF_LBA64
  89. #error exFAT needs to be enabled when enable 64-bit LBA
  90. #endif
  91. typedef DWORD FSIZE_t;
  92. typedef DWORD LBA_t;
  93. #endif
  94. /* Filesystem object structure (FATFS) */
  95. typedef struct {
  96. BYTE fs_type; /* Filesystem type (0:not mounted) */
  97. BYTE pdrv; /* Associated physical drive */
  98. BYTE n_fats; /* Number of FATs (1 or 2) */
  99. BYTE wflag; /* win[] flag (b0:dirty) */
  100. BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
  101. WORD id; /* Volume mount ID */
  102. WORD n_rootdir; /* Number of root directory entries (FAT12/16) */
  103. WORD csize; /* Cluster size [sectors] */
  104. #if FF_MAX_SS != FF_MIN_SS
  105. WORD ssize; /* Sector size (512, 1024, 2048 or 4096) */
  106. #endif
  107. #if FF_USE_LFN
  108. WCHAR *lfnbuf; /* LFN working buffer */
  109. #endif
  110. #if FF_FS_EXFAT
  111. BYTE *dirbuf; /* Directory entry block scratchpad buffer for exFAT */
  112. #endif
  113. #if FF_FS_REENTRANT
  114. FF_SYNC_t sobj; /* Identifier of sync object */
  115. #endif
  116. #if !FF_FS_READONLY
  117. DWORD last_clst; /* Last allocated cluster */
  118. DWORD free_clst; /* Number of free clusters */
  119. #endif
  120. #if FF_FS_RPATH
  121. DWORD cdir; /* Current directory start cluster (0:root) */
  122. #if FF_FS_EXFAT
  123. DWORD cdc_scl; /* Containing directory start cluster (invalid when cdir is 0) */
  124. DWORD cdc_size; /* b31-b8:Size of containing directory, b7-b0: Chain status */
  125. DWORD cdc_ofs; /* Offset in the containing directory (invalid when cdir is 0) */
  126. #endif
  127. #endif
  128. DWORD n_fatent; /* Number of FAT entries (number of clusters + 2) */
  129. DWORD fsize; /* Size of an FAT [sectors] */
  130. LBA_t volbase; /* Volume base sector */
  131. LBA_t fatbase; /* FAT base sector */
  132. LBA_t dirbase; /* Root directory base sector/cluster */
  133. LBA_t database; /* Data base sector */
  134. #if FF_FS_EXFAT
  135. LBA_t bitbase; /* Allocation bitmap base sector */
  136. #endif
  137. LBA_t winsect; /* Current sector appearing in the win[] */
  138. BYTE win[FF_MAX_SS]; /* Disk access window for Directory, FAT (and file data at tiny cfg) */
  139. } FATFS;
  140. /* Object ID and allocation information (FFOBJID) */
  141. typedef struct {
  142. FATFS * fs; /* Pointer to the hosting volume of this object */
  143. WORD id; /* Hosting volume mount ID */
  144. BYTE attr; /* Object attribute */
  145. BYTE stat; /* Object chain status (b1-0: =0:not contiguous, =2:contiguous, =3:fragmented in this session, b2:sub-directory stretched) */
  146. DWORD sclust; /* Object data start cluster (0:no cluster or root directory) */
  147. FSIZE_t objsize; /* Object size (valid when sclust != 0) */
  148. #if FF_FS_EXFAT
  149. DWORD n_cont; /* Size of first fragment - 1 (valid when stat == 3) */
  150. DWORD n_frag; /* Size of last fragment needs to be written to FAT (valid when not zero) */
  151. DWORD c_scl; /* Containing directory start cluster (valid when sclust != 0) */
  152. DWORD c_size; /* b31-b8:Size of containing directory, b7-b0: Chain status (valid when c_scl != 0) */
  153. DWORD c_ofs; /* Offset in the containing directory (valid when file object and sclust != 0) */
  154. #endif
  155. #if FF_FS_LOCK
  156. UINT lockid; /* File lock ID origin from 1 (index of file semaphore table Files[]) */
  157. #endif
  158. } FFOBJID;
  159. /* File object structure (FIL) */
  160. typedef struct {
  161. FFOBJID obj; /* Object identifier (must be the 1st member to detect invalid object pointer) */
  162. BYTE flag; /* File status flags */
  163. BYTE err; /* Abort flag (error code) */
  164. FSIZE_t fptr; /* File read/write pointer (Zeroed on file open) */
  165. DWORD clust; /* Current cluster of fpter (invalid when fptr is 0) */
  166. LBA_t sect; /* Sector number appearing in buf[] (0:invalid) */
  167. #if !FF_FS_READONLY
  168. LBA_t dir_sect; /* Sector number containing the directory entry (not used at exFAT) */
  169. BYTE *dir_ptr; /* Pointer to the directory entry in the win[] (not used at exFAT) */
  170. #endif
  171. #if FF_USE_FASTSEEK
  172. DWORD *cltbl; /* Pointer to the cluster link map table (nulled on open, set by application) */
  173. #endif
  174. #if !FF_FS_TINY
  175. BYTE buf[FF_MAX_SS]; /* File private data read/write window */
  176. #endif
  177. } FIL;
  178. /* Directory object structure (DIR) */
  179. typedef struct {
  180. FFOBJID obj; /* Object identifier */
  181. DWORD dptr; /* Current read/write offset */
  182. DWORD clust; /* Current cluster */
  183. LBA_t sect; /* Current sector (0:Read operation has terminated) */
  184. BYTE * dir; /* Pointer to the directory item in the win[] */
  185. BYTE fn[12]; /* SFN (in/out) {body[8],ext[3],status[1]} */
  186. #if FF_USE_LFN
  187. DWORD blk_ofs; /* Offset of current entry block being processed (0xFFFFFFFF:Invalid) */
  188. #endif
  189. #if FF_USE_FIND
  190. const TCHAR *pat; /* Pointer to the name matching pattern */
  191. #endif
  192. } DIR;
  193. /* File information structure (FILINFO) */
  194. typedef struct {
  195. FSIZE_t fsize; /* File size */
  196. WORD fdate; /* Modified date */
  197. WORD ftime; /* Modified time */
  198. BYTE fattrib; /* File attribute */
  199. #if FF_USE_LFN
  200. TCHAR altname[FF_SFN_BUF + 1]; /* Altenative file name */
  201. TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
  202. #else
  203. TCHAR fname[12 + 1]; /* File name */
  204. #endif
  205. } FILINFO;
  206. /* Format parameter structure (MKFS_PARM) */
  207. typedef struct {
  208. BYTE fmt; /* Format option (FM_FAT, FM_FAT32, FM_EXFAT and FM_SFD) */
  209. BYTE n_fat; /* Number of FATs */
  210. UINT align; /* Data area alignment (sector) */
  211. UINT n_root; /* Number of root directory entries */
  212. DWORD au_size; /* Cluster size (byte) */
  213. } MKFS_PARM;
  214. /* File function return code (FRESULT) */
  215. typedef enum {
  216. FR_OK = 0, /* (0) Succeeded */
  217. FR_DISK_ERR, /* (1) A hard error occurred in the low level disk I/O layer */
  218. FR_INT_ERR, /* (2) Assertion failed */
  219. FR_NOT_READY, /* (3) The physical drive cannot work */
  220. FR_NO_FILE, /* (4) Could not find the file */
  221. FR_NO_PATH, /* (5) Could not find the path */
  222. FR_INVALID_NAME, /* (6) The path name format is invalid */
  223. FR_DENIED, /* (7) Access denied due to prohibited access or directory full */
  224. FR_EXIST, /* (8) Access denied due to prohibited access */
  225. FR_INVALID_OBJECT, /* (9) The file/directory object is invalid */
  226. FR_WRITE_PROTECTED, /* (10) The physical drive is write protected */
  227. FR_INVALID_DRIVE, /* (11) The logical drive number is invalid */
  228. FR_NOT_ENABLED, /* (12) The volume has no work area */
  229. FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume */
  230. FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any problem */
  231. FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */
  232. FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */
  233. FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */
  234. FR_TOO_MANY_OPEN_FILES, /* (18) Number of open files > FF_FS_LOCK */
  235. FR_INVALID_PARAMETER /* (19) Given parameter is invalid */
  236. } FRESULT;
  237. /*--------------------------------------------------------------*/
  238. /* FatFs module application interface */
  239. FRESULT f_open(FIL *fp, const TCHAR *path, BYTE mode); /* Open or create a file */
  240. FRESULT f_close(FIL *fp); /* Close an open file object */
  241. FRESULT f_read(FIL *fp, void *buff, UINT btr, UINT *br); /* Read data from the file */
  242. FRESULT f_write(FIL *fp, const void *buff, UINT btw, UINT *bw); /* Write data to the file */
  243. FRESULT f_lseek(FIL *fp, FSIZE_t ofs); /* Move file pointer of the file object */
  244. FRESULT f_truncate(FIL *fp); /* Truncate the file */
  245. FRESULT f_sync(FIL *fp); /* Flush cached data of the writing file */
  246. FRESULT f_opendir(DIR *dp, const TCHAR *path); /* Open a directory */
  247. FRESULT f_closedir(DIR *dp); /* Close an open directory */
  248. FRESULT f_readdir(DIR *dp, FILINFO *fno); /* Read a directory item */
  249. FRESULT f_findfirst(DIR *dp, FILINFO *fno, const TCHAR *path, const TCHAR *pattern); /* Find first file */
  250. FRESULT f_findnext(DIR *dp, FILINFO *fno); /* Find next file */
  251. FRESULT f_mkdir(const TCHAR *path); /* Create a sub directory */
  252. FRESULT f_unlink(const TCHAR *path); /* Delete an existing file or directory */
  253. FRESULT f_rename(const TCHAR *path_old, const TCHAR *path_new); /* Rename/Move a file or directory */
  254. FRESULT f_stat(const TCHAR *path, FILINFO *fno); /* Get file status */
  255. FRESULT f_chmod(const TCHAR *path, BYTE attr, BYTE mask); /* Change attribute of a file/dir */
  256. FRESULT f_utime(const TCHAR *path, const FILINFO *fno); /* Change timestamp of a file/dir */
  257. FRESULT f_chdir(const TCHAR *path); /* Change current directory */
  258. FRESULT f_chdrive(const TCHAR *path); /* Change current drive */
  259. FRESULT f_getcwd(TCHAR *buff, UINT len); /* Get current directory */
  260. FRESULT f_getfree(const TCHAR *path, DWORD *nclst, FATFS **fatfs); /* Get number of free clusters on the drive */
  261. FRESULT f_getlabel(const TCHAR *path, TCHAR *label, DWORD *vsn); /* Get volume label */
  262. FRESULT f_setlabel(const TCHAR *label); /* Set volume label */
  263. FRESULT f_forward(FIL *fp, UINT (*func)(const BYTE *, UINT), UINT btf, UINT *bf); /* Forward data to the stream */
  264. FRESULT f_expand(FIL *fp, FSIZE_t fsz, BYTE opt); /* Allocate a contiguous block to the file */
  265. FRESULT f_mount(FATFS *fs, const TCHAR *path, BYTE opt); /* Mount/Unmount a logical drive */
  266. FRESULT f_mkfs(const TCHAR *path, const MKFS_PARM *opt, void *work, UINT len); /* Create a FAT volume */
  267. FRESULT f_fdisk(BYTE pdrv, const LBA_t ptbl[], void *work); /* Divide a physical drive into some partitions */
  268. FRESULT f_setcp(WORD cp); /* Set current code page */
  269. int f_putc(TCHAR c, FIL *fp); /* Put a character to the file */
  270. int f_puts(const TCHAR *str, FIL *cp); /* Put a string to the file */
  271. int f_printf(FIL *fp, const TCHAR *str, ...); /* Put a formatted string to the file */
  272. TCHAR * f_gets(TCHAR *buff, int len, FIL *fp); /* Get a string from the file */
  273. #define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
  274. #define f_error(fp) ((fp)->err)
  275. #define f_tell(fp) ((fp)->fptr)
  276. #define f_size(fp) ((fp)->obj.objsize)
  277. #define f_rewind(fp) f_lseek((fp), 0)
  278. #define f_rewinddir(dp) f_readdir((dp), 0)
  279. #define f_rmdir(path) f_unlink(path)
  280. #define f_unmount(path) f_mount(0, path, 0)
  281. #ifndef EOF
  282. #define EOF (-1)
  283. #endif
  284. /*--------------------------------------------------------------*/
  285. /* Additional user defined functions */
  286. /* RTC function */
  287. #if !FF_FS_READONLY && !FF_FS_NORTC
  288. DWORD get_fattime(void);
  289. #endif
  290. /* LFN support functions */
  291. #if FF_USE_LFN >= 1 /* Code conversion (defined in unicode.c) */
  292. WCHAR ff_oem2uni(WCHAR oem, WORD cp); /* OEM code to Unicode conversion */
  293. WCHAR ff_uni2oem(DWORD uni, WORD cp); /* Unicode to OEM code conversion */
  294. DWORD ff_wtoupper(DWORD uni); /* Unicode upper-case conversion */
  295. #endif
  296. #if FF_USE_LFN == 3 /* Dynamic memory allocation */
  297. void *ff_memalloc(UINT msize); /* Allocate memory block */
  298. void ff_memfree(void *mblock); /* Free memory block */
  299. #endif
  300. /* Sync functions */
  301. #if FF_FS_REENTRANT
  302. int ff_cre_syncobj(BYTE vol, FF_SYNC_t *sobj); /* Create a sync object */
  303. int ff_req_grant(FF_SYNC_t sobj); /* Lock sync object */
  304. void ff_rel_grant(FF_SYNC_t sobj); /* Unlock sync object */
  305. int ff_del_syncobj(FF_SYNC_t sobj); /* Delete a sync object */
  306. #endif
  307. /*--------------------------------------------------------------*/
  308. /* Flags and offset address */
  309. /* File access mode and open method flags (3rd argument of f_open) */
  310. #define FA_READ 0x01
  311. #define FA_WRITE 0x02
  312. #define FA_OPEN_EXISTING 0x00
  313. #define FA_CREATE_NEW 0x04
  314. #define FA_CREATE_ALWAYS 0x08
  315. #define FA_OPEN_ALWAYS 0x10
  316. #define FA_OPEN_APPEND 0x30
  317. /* Fast seek controls (2nd argument of f_lseek) */
  318. #define CREATE_LINKMAP ((FSIZE_t)0 - 1)
  319. /* Format options (2nd argument of f_mkfs) */
  320. #define FM_FAT 0x01
  321. #define FM_FAT32 0x02
  322. #define FM_EXFAT 0x04
  323. #define FM_ANY 0x07
  324. #define FM_SFD 0x08
  325. /* Filesystem type (FATFS.fs_type) */
  326. #define FS_FAT12 1
  327. #define FS_FAT16 2
  328. #define FS_FAT32 3
  329. #define FS_EXFAT 4
  330. /* File attribute bits for directory entry (FILINFO.fattrib) */
  331. #define AM_RDO 0x01 /* Read only */
  332. #define AM_HID 0x02 /* Hidden */
  333. #define AM_SYS 0x04 /* System */
  334. #define AM_DIR 0x10 /* Directory */
  335. #define AM_ARC 0x20 /* Archive */
  336. #ifdef __cplusplus
  337. }
  338. #endif
  339. #endif