sdfs.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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",
  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. };
  38. struct sd_dir
  39. {
  40. const unsigned char fname[12]; //8+1+3
  41. int offset;
  42. int size;
  43. unsigned int reserved[2];
  44. unsigned int checksum;
  45. };
  46. /**
  47. * @brief File open
  48. *
  49. * Opens an existing file.
  50. *
  51. * @param file_name The name of file to open /SD:A-Z/file
  52. *
  53. * @retval NULL if error
  54. * @retval other Pointer to the file object
  55. */
  56. struct sd_file * sd_fopen (const char *filename);
  57. /**
  58. * @brief File close
  59. *
  60. * Closes the file.
  61. *
  62. * @param sd_file Pointer to the file object
  63. *
  64. * @return N/A
  65. */
  66. void sd_fclose(struct sd_file *sd_file);
  67. /**
  68. * @brief File read
  69. *
  70. * Reads items of data of len bytes long.
  71. *
  72. * @param sd_file Pointer to the file object
  73. * @param buffer Pointer to the data buffer
  74. * @param len Number of bytes to be read
  75. *
  76. * @return Number of bytes read. On success, it will be equal to number of
  77. * items requested to be read. Or returns the file size if there are not
  78. * enough bytes available in file.
  79. */
  80. int sd_fread(struct sd_file *sd_file, void *buffer, int len);
  81. /**
  82. * @brief Get current file position.
  83. *
  84. * Retrieves the current position in the file.
  85. *
  86. * @param sd_file Pointer to the file object
  87. *
  88. * @retval position Current position in file
  89. * Current revision does not validate the file object.
  90. */
  91. int sd_ftell(struct sd_file *sd_file);
  92. /**
  93. * @brief File seek
  94. *
  95. * Moves the file position to a new location in the file. The offset is added
  96. * to file position based on the 'whence' parameter.
  97. *
  98. * @param sd_file Pointer to the file object
  99. * @param offset Relative location to move the file pointer to
  100. * @param whence Relative location from where offset is to be calculated.
  101. * - FS_SEEK_SET = from beginning of file
  102. * - FS_SEEK_CUR = from current position,
  103. * - FS_SEEK_END = from end of file.
  104. *
  105. * @retval 0 Success
  106. * @retval -ERRNO errno code if error.
  107. */
  108. int sd_fseek(struct sd_file *sd_file, int offset, unsigned char whence);
  109. /**
  110. * @brief Retrieves file size
  111. *
  112. * Checks the size of a file specified by the path
  113. *
  114. * @param filename name to the file
  115. *
  116. * @retval 0 Success
  117. * @retval -ERRNO errno code if error
  118. */
  119. int sd_fsize(const char *filename);
  120. /**
  121. * @brief Mapping file
  122. *
  123. * Mapping file to access files directly using addresses.
  124. *
  125. * @param filename name to the file
  126. * @param addr Pointer to the file addr
  127. * @param addr Pointer to the file size
  128. *
  129. * @retval 0 Success
  130. * @retval -ERRNO errno code if error
  131. */
  132. int sd_fmap(const char *filename, void** addr, int *len);
  133. #endif