anc_image.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*
  2. * Copyright (c) 1997-2015, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __ANC_IMAGE_H__
  7. #define __ANC_IMAGE_H__
  8. #include <stddef.h>
  9. #include <stdint.h>
  10. #include <stdbool.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #ifndef __packed
  15. #ifdef __GNUC__
  16. #define __packed __attribute__((__packed__))
  17. #else
  18. #define __packed
  19. #endif
  20. #endif
  21. /* anc hardware memory resource */
  22. #define CONFIG_PTCM_SIZE (0)
  23. #define CONFIG_DTCM_SIZE (0x8000)
  24. /* anc coff address layout (in words) */
  25. /* -----------------------------------------------------------------------------
  26. * | 31 | 30 | 29 | 28-26 | 25-23 | 22-18 | 17-0 |
  27. * -----------------------------------------------------------------------------
  28. * | 0 | reserved | bank flag | type | bank group | bank index | address |
  29. * -----------------------------------------------------------------------------
  30. *
  31. * bit 31: fixed 0
  32. * bit 30: reserved, fixed 0
  33. * bit 29: bank address flag
  34. * bit 28-26: bank type or image type. Identifier of the current page miss
  35. * owner. It is used to decide which anc image that request the current
  36. * page miss in mutiple anc image run environment. So far, only set on
  37. * banked address, that is, bank address flag is set. If type is set, it
  38. * should be equal to the f_type of IMG_FILHDR, though often ignored
  39. * when creating the image.
  40. * bit 25-23: bank group, only support [0x0, 0x3]
  41. * bit 22-18: bank index in a bank group, only support [0x0, 0xf]
  42. * bit 17-0: physical address, may overlap among different banks
  43. * */
  44. #define NUM_BANK_GROUPS (4)
  45. #define NUM_BANKS_PER_GROUP (16)
  46. #define NUM_BANKS (NUM_BANK_GROUPS * NUM_BANKS_PER_GROUP)
  47. #define BANK_NO(group, index) (group * NUM_BANKS_PER_GROUP + index)
  48. #define BANK_GROUP(num) (num / NUM_BANKS_PER_GROUP)
  49. #define BANK_INDEX(num) (num % NUM_BANKS_PER_GROUP)
  50. #define IMG_BANK_FLAG_MASK (0x1 << 29)
  51. #define IMG_BANK_FLAG(addr) ((addr & IMG_BANK_FLAG_MASK) >> 29)
  52. #define IMG_TYPE_SHIFT (26)
  53. #define IMG_TYPE_MASK (0x7 << IMG_TYPE_SHIFT)
  54. #define IMG_TYPE(addr) ((addr & IMG_TYPE_MASK) >> IMG_TYPE_SHIFT)
  55. #define IMG_BANK_GROUP_SHIFT (23)
  56. #define IMG_BANK_GROUP_MASK (0x7 << IMG_BANK_GROUP_SHIFT)
  57. #define IMG_BANK_GROUP(addr) ((addr & IMG_BANK_GROUP_MASK) >> IMG_BANK_GROUP_SHIFT)
  58. #define IMG_BANK_INDEX_SHIFT (18)
  59. #define IMG_BANK_INDEX_MASK (0x1f << IMG_BANK_INDEX_SHIFT)
  60. #define IMG_BANK_INDEX(addr) ((addr & IMG_BANK_INDEX_MASK) >> IMG_BANK_INDEX_SHIFT)
  61. #define IMG_BANK_NO(addr) BANK_NO(IMG_BANK_GROUP(addr), IMG_BANK_INDEX(addr))
  62. #define IMG_BANK_ADDR(addr) (addr & ~IMG_TYPE_MASK)
  63. #define IMG_BANK_INNER_ADDR(addr) (addr & 0x3ffff)
  64. /* image file type */
  65. #define ANC_CODEC_LIB (0)
  66. #define ANC_SOUND_EFFECT_LIB (1)
  67. /* image file sub-type */
  68. #define ANC_DECODER_MP3 (0)
  69. #define ANC_DECODER_WMA (1)
  70. #define ANC_DECODER_WAV (2)
  71. #define ANC_DECODER_AAC (3)
  72. #define ANC_DECODER_APE (4)
  73. #define ANC_DECODER_FLAC (5)
  74. #define ANC_DECODER_OGG (6)
  75. #define ANC_DECODER_SBC (7)
  76. #define ANC_DECODER_MSBC (8)
  77. #define ANC_ENCODER_WAV (40)
  78. #define ANC_ENCODER_MP3 (41)
  79. #define ANC_ENCODER_SBC (42)
  80. //ANC sound effect definition
  81. #define ANC_SOUND_EFFECT_PEQ (0)
  82. #define ANC_SOUND_EFFECT_SRS (1)
  83. #define ANC_SOUND_EFFECT_ACT (2)
  84. /********************** image structure ***************************************/
  85. /*
  86. * Image Layout
  87. * --------------------------------------------------------------
  88. * | magic (4 bytes, "yqhx") |
  89. * |------------------------------------------------------------|
  90. * | version (4 byte) |
  91. * |------------------------------------------------------------|
  92. * | f_type (1 byte) |
  93. * |------------------------------------------------------------|
  94. * | f_subtype (1 byte) |
  95. * -------------------------------------------------------------|
  96. * | f_reserved (reserved, 2 byte) |
  97. * -------------------------------------------------------------|
  98. * | f_version (4 byte) |
  99. * |------------------------------------------------------------|
  100. * | entry point (4 bytes, anc word address) |
  101. * |------------------------------------------------------------|
  102. * | code & data section table pointer |
  103. * |------------------------------------------------------------|
  104. * | bank group 1 index 1 section table pointer |
  105. * |------------------------------------------------------------|
  106. * | bank group 1 index 2 section table pointer |
  107. * |------------------------------------------------------------|
  108. * | ...... |
  109. * |------------------------------------------------------------|
  110. * | bank group 1 index N1 section table pointer |
  111. * |------------------------------------------------------------|
  112. * | bank group 2 index 1 section table pointer |
  113. * |------------------------------------------------------------|
  114. * | bank group 2 index 2 section table pointer |
  115. * |------------------------------------------------------------|
  116. * | ...... |
  117. * |------------------------------------------------------------|
  118. * | bank group 2 index N2 section table pointer |
  119. * |------------------------------------------------------------|
  120. * | bank group n index 1 section table pointer |
  121. * |------------------------------------------------------------|
  122. * | bank group n index 2 section table pointer |
  123. * |------------------------------------------------------------|
  124. * | ...... |
  125. * |------------------------------------------------------------|
  126. * | bank group n index Nn section table pointer |
  127. * |------------------------------------------------------------|
  128. * | |
  129. * | section tables |
  130. * | |
  131. * --------------------------------------------------------------
  132. */
  133. /*
  134. * Image section table Layout
  135. * |------------------------------------------------------------|
  136. * | Section 1 size (4 bytes) |
  137. * | Section 1 load address (4 bytes, anc word address) |
  138. * | Section 1 raw data (8 x n bytes, padded to 8 bytes) |
  139. * |------------------------------------------------------------|
  140. * | Section 2 size (4 bytes) |
  141. * | Section 2 load address (4 bytes, anc word address) |
  142. * | Section 2 raw data (8 x n bytes, padded to 8 bytes) |
  143. * |------------------------------------------------------------|
  144. * | ...... |
  145. * |------------------------------------------------------------|
  146. * | Section N size (4 bytes) |
  147. * | Section N load address (4 bytes, anc word address) |
  148. * | Section N raw data (8 x n bytes, padded to 8 bytes) |
  149. * |------------------------------------------------------------|
  150. * | 0x00000000 (end flag, 4 bytes) |
  151. * --------------------------------------------------------------
  152. */
  153. /* section entry in image section table */
  154. struct IMG_scnhdr {
  155. uint32_t size;
  156. uint32_t addr;
  157. uint8_t data[0];
  158. } __packed;
  159. #define IMG_SCNHDR struct IMG_scnhdr
  160. #define IMAGE_MAGIC(a, b, c, d) \
  161. (((uint32_t)(a) << 24) | ((uint32_t)(b) << 16) | \
  162. ((uint32_t)(c) << 8) | (d))
  163. #define IMAGE_VERSION(major, minor, patchlevel) \
  164. (((uint32_t)(major) << 24) | ((uint32_t)(minor) << 16) | \
  165. ((uint32_t)(patchlevel) << 8))
  166. #define IMG_VER_MAJOR(ver) (((ver) >> 24) & 0xFF)
  167. #define IMG_VER_MINOR(ver) (((ver) >> 16) & 0xFF)
  168. #define IMG_VER_PATCHLEVEL(ver) (((ver) >> 8) & 0xFF)
  169. typedef struct IMG_filehdr {
  170. /* image format magic */
  171. uint32_t magic;
  172. /* image packing tool version */
  173. uint32_t version;
  174. /* image file information */
  175. uint8_t f_type; /* file (algorithm) type */
  176. uint8_t f_subtype;
  177. uint8_t f_reserved[2];
  178. uint32_t f_version; /* file (algorithm) version */
  179. /* anc program entry point */
  180. uint32_t entry_point;
  181. /* anc code & data sections */
  182. uint32_t code_scnptr;
  183. uint32_t data_scnptr;
  184. /* anc page miss and internal tcm */
  185. uint32_t bank_scnptr[NUM_BANKS][2];
  186. } IMG_FILHDR;
  187. #define IMG_FILHSZ sizeof(IMG_FILHDR)
  188. //dtcm data head info
  189. struct IMG_dtcmhdr {
  190. uint32_t anc_addr; //ANC Virtual destination address, move to address, word unit
  191. uint32_t mem_addr; //ANC virtual source address, data source address, word unit
  192. uint32_t length; //ANC data size, byte unit
  193. uint32_t reserved;
  194. } __packed; //16 byte
  195. #define IMG_DTCMHDR struct IMG_dtcmhdr
  196. int load_anc_image(const void *image, size_t size, uint32_t *entry_point);
  197. int load_anc_image_bank(const void *image, size_t size, unsigned int bank_no);
  198. #ifdef LOAD_IMAGE_FROM_FS
  199. int load_anc_image_from_file(void *filp, uint32_t *entry_point);
  200. int load_anc_image_bank_from_file(void *filp, unsigned int bank_no);
  201. #endif
  202. #ifdef __cplusplus
  203. }
  204. #endif
  205. #endif /* __ANC_IMAGE_H__ */