anc_image.c 5.5 KB

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