sdfs.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2013-2020 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __SDFS_H__
  7. #define __SDFS_H__
  8. #include <stdlib.h>
  9. #include <stdio.h>
  10. #include <string.h>
  11. #ifndef FS_SEEK_SET
  12. #define FS_SEEK_SET 0 /* Seek from beginning of file. */
  13. #endif
  14. #ifndef FS_SEEK_CUR
  15. #define FS_SEEK_CUR 1 /* Seek from current position. */
  16. #endif
  17. #ifndef FS_SEEK_END
  18. #define FS_SEEK_END 2 /* Seek from end of file. */
  19. #endif
  20. #define _SDFS_VOL_STRS "NOR","SD","NAND","DNOR","NAND"
  21. /**
  22. * @brief Structure to describe file information
  23. *
  24. * Used in functions that processes file.
  25. *
  26. * @param start Offset of file in sd file system
  27. * @param size Size of file
  28. * @param readptr Read pointer of File.
  29. */
  30. struct sd_file
  31. {
  32. int start;
  33. int size;
  34. int readptr;
  35. unsigned char storage_id;
  36. unsigned char file_id;
  37. unsigned char used;
  38. unsigned char reserved[1];
  39. };
  40. struct sd_dir
  41. {
  42. const unsigned char fname[12]; //8+1+3
  43. int offset;
  44. int size;
  45. unsigned int reserved[2];
  46. unsigned int checksum;
  47. };
  48. /**
  49. * @brief File open
  50. *
  51. * Opens an existing file.
  52. *
  53. * @param file_name The name of file to open /SD:A-Z/file
  54. *
  55. * @retval NULL if error
  56. * @retval other Pointer to the file object
  57. */
  58. struct sd_file * sd_fopen (const char *filename);
  59. /**
  60. * @brief File close
  61. *
  62. * Closes the file.
  63. *
  64. * @param sd_file Pointer to the file object
  65. *
  66. * @return N/A
  67. */
  68. void sd_fclose(struct sd_file *sd_file);
  69. /**
  70. * @brief File read
  71. *
  72. * Reads items of data of len bytes long.
  73. *
  74. * @param sd_file Pointer to the file object
  75. * @param buffer Pointer to the data buffer
  76. * @param len Number of bytes to be read
  77. *
  78. * @return Number of bytes read. On success, it will be equal to number of
  79. * items requested to be read. Or returns the file size if there are not
  80. * enough bytes available in file.
  81. */
  82. int sd_fread(struct sd_file *sd_file, void *buffer, int len);
  83. /**
  84. * @brief Get current file position.
  85. *
  86. * Retrieves the current position in the file.
  87. *
  88. * @param sd_file Pointer to the file object
  89. *
  90. * @retval position Current position in file
  91. * Current revision does not validate the file object.
  92. */
  93. int sd_ftell(struct sd_file *sd_file);
  94. /**
  95. * @brief File seek
  96. *
  97. * Moves the file position to a new location in the file. The offset is added
  98. * to file position based on the 'whence' parameter.
  99. *
  100. * @param sd_file Pointer to the file object
  101. * @param offset Relative location to move the file pointer to
  102. * @param whence Relative location from where offset is to be calculated.
  103. * - FS_SEEK_SET = from beginning of file
  104. * - FS_SEEK_CUR = from current position,
  105. * - FS_SEEK_END = from end of file.
  106. *
  107. * @retval 0 Success
  108. * @retval -ERRNO errno code if error.
  109. */
  110. int sd_fseek(struct sd_file *sd_file, int offset, unsigned char whence);
  111. /**
  112. * @brief Retrieves file size
  113. *
  114. * Checks the size of a file specified by the path
  115. *
  116. * @param filename name to the file
  117. *
  118. * @retval 0 Success
  119. * @retval -ERRNO errno code if error
  120. */
  121. int sd_fsize(const char *filename);
  122. /**
  123. * @brief Mapping file
  124. *
  125. * Mapping file to access files directly using addresses.
  126. *
  127. * @param filename name to the file
  128. * @param addr Pointer to the file addr
  129. * @param addr Pointer to the file size
  130. *
  131. * @retval 0 Success
  132. * @retval -ERRNO errno code if error
  133. */
  134. int sd_fmap(const char *filename, void** addr, int *len);
  135. /**
  136. * @brief sdfs_xip_check_valid check sdfs(sdfs is xip read)
  137. * @retval 0 Success
  138. * @retval else error
  139. */
  140. int sdfs_xip_check_valid(unsigned int xip_addr_start);
  141. /**
  142. * @brief sdfs_verify check sdfs
  143. * @retval 0 Success
  144. * @retval else error
  145. */
  146. int sdfs_verify(const char *mnt_point);
  147. /**
  148. * @brief sdfs get checksum
  149. * @retval checksum
  150. */
  151. unsigned int sdfs_chksum(const char *mnt_point);
  152. #endif