dsp_image.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /*
  2. * Copyright (c) 1997-2015, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdint.h>
  7. #include <stdbool.h>
  8. #include <string.h>
  9. #include <assert.h>
  10. #include <errno.h>
  11. #include <soc.h>
  12. #include <zephyr.h>
  13. #include <soc_dsp.h>
  14. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  15. #include <fs/fs.h>
  16. #endif /* LOAD_IMAGE_FROM_FS */
  17. #include "dsp_image.h"
  18. #ifndef CONFIG_LOAD_IMAGE_FROM_FS
  19. static int load_scntable(const void *image, unsigned int offset, bool is_code)
  20. {
  21. const struct IMG_scnhdr *scnhdr = (const struct IMG_scnhdr *)((uint32_t)image + offset);
  22. if (scnhdr->size == 0)
  23. return -ENODATA;
  24. for (; scnhdr->size > 0; ) {
  25. uint32_t cpu_addr = dsp_to_mcu_address(scnhdr->addr, is_code);
  26. if (cpu_addr == UINT32_MAX) {
  27. printk("invalid address 0x%08x\n", scnhdr->addr);
  28. return -EFAULT;
  29. }
  30. #if 0
  31. printk("load: offset=0x%08x, size=0x%08x, dsp_addr=0x%08x, cpu_addr=0x%08x\n",
  32. (unsigned int)(scnhdr->data - (const uint8_t *)image),
  33. scnhdr->size, scnhdr->addr, cpu_addr);
  34. #endif
  35. dsp_soc_release_addr(cpu_addr);
  36. memcpy((void*)cpu_addr, scnhdr->data, scnhdr->size);
  37. dsp_soc_request_addr(cpu_addr);
  38. scnhdr = (struct IMG_scnhdr*)&scnhdr->data[scnhdr->size];
  39. }
  40. return 0;
  41. }
  42. int load_dsp_image_bank(const void *image, size_t size, unsigned int bank_no)
  43. {
  44. const struct IMG_filehdr *filehdr = image;
  45. if (bank_no >= NUM_BANKS) {
  46. printk("invalid bank number %u\n", bank_no);
  47. return -EINVAL;
  48. }
  49. assert(size > filehdr->bank_scnptr[bank_no][0]);
  50. assert(size > filehdr->bank_scnptr[bank_no][1]);
  51. if (!filehdr->bank_scnptr[bank_no][0] &&
  52. !filehdr->bank_scnptr[bank_no][1]) {
  53. printk("bank[%u] empty\n", bank_no);
  54. return -ENODATA;
  55. }
  56. if (filehdr->bank_scnptr[bank_no][0]) {
  57. if (load_scntable(image, filehdr->bank_scnptr[bank_no][0], true)) {
  58. printk("failed to load bank[%u] code\n", bank_no);
  59. return -EINVAL;
  60. }
  61. }
  62. if (filehdr->bank_scnptr[bank_no][1]) {
  63. if (load_scntable(image, filehdr->bank_scnptr[bank_no][1], false)) {
  64. printk("failed to load bank[%u] data\n", bank_no);
  65. return -EINVAL;
  66. }
  67. }
  68. return 0;
  69. }
  70. int load_dsp_image(const void *image, size_t size, uint32_t *entry_point)
  71. {
  72. const struct IMG_filehdr *filehdr = image;
  73. /* FIXME: use sys_get_le32 to handle unaligned 32bit access insead ? */
  74. if ((uint32_t)image & 0x3) {
  75. printk("image load address %p should be aligned to 4, "
  76. "could use __attribute__((__aligned__(x)))\n", image);
  77. return -EFAULT;
  78. }
  79. assert(size > sizeof(*filehdr));
  80. assert(size > filehdr->code_scnptr);
  81. assert(size > filehdr->code_scnptr);
  82. if (filehdr->magic != IMAGE_MAGIC('y', 'q', 'h', 'x')) {
  83. printk("invalid dsp magic 0x%08x\n", filehdr->magic);
  84. return -EINVAL;
  85. }
  86. if (filehdr->code_scnptr) {
  87. if (load_scntable(image, filehdr->code_scnptr, true)) {
  88. printk("failed to load code\n");
  89. return -EINVAL;
  90. }
  91. }
  92. if (filehdr->data_scnptr) {
  93. if (load_scntable(image, filehdr->data_scnptr, false)) {
  94. printk("failed to load data\n");
  95. return -EINVAL;
  96. }
  97. }
  98. if (entry_point)
  99. *entry_point = filehdr->entry_point;
  100. return 0;
  101. }
  102. #endif
  103. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  104. static int load_scntable_from_file(struct fs_file_t *file, long offset, bool is_code)
  105. {
  106. if (offset <= 0)
  107. return 0;
  108. if (fs_seek(file, offset, FS_SEEK_SET)) {
  109. printk("seek_file failed\n");
  110. return -EIO;
  111. }
  112. do {
  113. struct IMG_scnhdr scnhdr;
  114. ssize_t ssize = fs_read(file, &scnhdr, sizeof(scnhdr));
  115. if (ssize < sizeof(scnhdr.size)) {
  116. printk("invalid image\n");
  117. return -EINVAL;
  118. }
  119. if (scnhdr.size == 0) {
  120. //printk("scnhdr.size %d \n",scnhdr.size);
  121. break;
  122. }
  123. uint32_t cpu_addr = dsp_to_mcu_address(scnhdr.addr, is_code);
  124. if (cpu_addr == UINT32_MAX) {
  125. printk("invalid address 0x%08x\n", scnhdr.addr);
  126. return -EFAULT;
  127. }
  128. printk("load: offset=0x%08x, size=0x%08x, dsp_addr=0x%08x, cpu_addr=0x%08x \n",
  129. (unsigned int)fs_tell(file), scnhdr.size, scnhdr.addr, cpu_addr);
  130. dsp_soc_release_addr(cpu_addr);
  131. ssize = fs_read(file, (void *)cpu_addr, scnhdr.size);
  132. dsp_soc_request_addr(cpu_addr);
  133. if (ssize < scnhdr.size) {
  134. printk("ssize %d scnhdr.size %d \n",ssize,scnhdr.size);
  135. return -EIO;
  136. }
  137. } while (true);
  138. return 0;
  139. }
  140. int load_dsp_image_bank_from_file(void *filp, unsigned int bank_no)
  141. {
  142. struct fs_file_t *file = filp;
  143. struct IMG_filehdr filehdr;
  144. ssize_t ssize;
  145. fs_seek(file, 0, FS_SEEK_SET);
  146. ssize = fs_read(file, &filehdr, sizeof(filehdr));
  147. if (ssize < sizeof(filehdr)) {
  148. printk("invalid image\n");
  149. return -EINVAL;
  150. }
  151. if (!filehdr.bank_scnptr[bank_no][0] && !filehdr.bank_scnptr[bank_no][1]) {
  152. printk("bank[%u] empty\n", bank_no);
  153. return -ENODATA;
  154. }
  155. if (filehdr.bank_scnptr[bank_no][0]) {
  156. if (load_scntable_from_file(file, filehdr.bank_scnptr[bank_no][0], true)) {
  157. printk("failed to load bank[%u] code\n", bank_no);
  158. return -EINVAL;
  159. }
  160. }
  161. if (filehdr.bank_scnptr[bank_no][1]) {
  162. if (load_scntable_from_file(file, filehdr.bank_scnptr[bank_no][1], false)) {
  163. printk("failed to load bank[%u] data\n", bank_no);
  164. return -EINVAL;
  165. }
  166. }
  167. return 0;
  168. }
  169. int load_dsp_image_from_file(void *filp, uint32_t *entry_point)
  170. {
  171. struct fs_file_t *file = filp;
  172. struct IMG_filehdr filehdr;
  173. ssize_t ssize;
  174. int ret = 0;
  175. ret = fs_seek(file, 0, FS_SEEK_SET);
  176. ssize = fs_read(file, &filehdr, sizeof(filehdr));
  177. if (ssize < sizeof(filehdr)) {
  178. printk("invalid image\n");
  179. return -EINVAL;
  180. }
  181. if (filehdr.magic != IMAGE_MAGIC('y', 'q', 'h', 'x')) {
  182. printk("dsp magic error\n");
  183. return -EINVAL;
  184. }
  185. if (filehdr.code_scnptr) {
  186. if (load_scntable_from_file(file, filehdr.code_scnptr, true)) {
  187. printk("failed to load code\n");
  188. return -EINVAL;
  189. }
  190. }
  191. if (filehdr.data_scnptr) {
  192. if (load_scntable_from_file(file, filehdr.data_scnptr, false)) {
  193. printk("failed to load data\n");
  194. return -EINVAL;
  195. }
  196. }
  197. if (entry_point)
  198. *entry_point = filehdr.entry_point;
  199. return 0;
  200. }
  201. #endif /* LOAD_IMAGE_FROM_FS */