dsp_loader.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 <string.h>
  8. #include <errno.h>
  9. #include <zephyr.h>
  10. #include <drivers/dsp.h>
  11. #include <soc_dsp.h>
  12. #include "dsp_inner.h"
  13. #include "dsp_image.h"
  14. int dsp_acts_request_image(struct device *dev, const struct dsp_imageinfo *image, int type)
  15. {
  16. uint32_t entry_point = UINT32_MAX;
  17. struct dsp_acts_data *dsp_data = dev->data;
  18. dsp_powergate_enable();
  19. if (type >= ARRAY_SIZE(dsp_data->images)) {
  20. printk("%s: dsp image <%s> invalid type %d\n", __func__, image->name, type);
  21. return -EINVAL;
  22. }
  23. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  24. if (load_dsp_image_from_file((void *)&image->filp, &entry_point)) {
  25. printk("%s: cannot load dsp image <%s>\n", __func__, image->name);
  26. return -EINVAL;
  27. }
  28. #else
  29. if (load_dsp_image(image->ptr, image->size, &entry_point)) {
  30. printk("%s: cannot load dsp image <%s>\n", __func__, image->name);
  31. return -EINVAL;
  32. }
  33. #endif
  34. #if 0
  35. printk("%s: dsp image <%s> loaded, type=%d, entry_point=0x%x\n",
  36. __func__, image->name, type, entry_point);
  37. #endif
  38. if (type == DSP_IMAGE_MAIN) {
  39. clear_dsp_pageaddr();
  40. /* set DSP_VECTOR_ADDRESS */
  41. set_dsp_vector_addr(entry_point);
  42. }
  43. #if 0
  44. SYS_LOG_INF(" DSP_VCT_ADDR=0x%x 0x%x\n", sys_read32(DSP_VCT_ADDR), entry_point);
  45. #endif
  46. memcpy(&dsp_data->images[type], image, sizeof(*image));
  47. dsp_data->images[type].entry_point = entry_point;
  48. return 0;
  49. }
  50. int dsp_acts_release_image(struct device *dev, int type)
  51. {
  52. struct dsp_acts_data *dsp_data = dev->data;
  53. if (type >= ARRAY_SIZE(dsp_data->images))
  54. return -EINVAL;
  55. printk("%s: dsp image <%s> free, type=%d\n",
  56. __func__, dsp_data->images[type].name, type);
  57. memset(&dsp_data->images[type], 0, sizeof(dsp_data->images[0]));
  58. dsp_powergate_disable();
  59. return 0;
  60. }
  61. static void dsp_acts_handle_invalid_epc(struct device *dev, uint32_t epc)
  62. {
  63. const struct dsp_acts_config *dsp_cfg = dev->config;
  64. struct dsp_protocol_userinfo *dsp_userinfo = dsp_cfg->dsp_userinfo;
  65. dsp_userinfo->error_code = DSP_BAD_COMMAND;
  66. dsp_poweroff(dev);
  67. }
  68. static int dsp_acts_is_valid_epc(uint32_t epc)
  69. {
  70. uint32_t real_address = IMG_BANK_INNER_ADDR(epc);
  71. /* if bank flag is zero,epc is invalid */
  72. if(!(epc & (IMG_BANK_FLAG_MASK))){
  73. return false;
  74. }
  75. real_address = dsp_to_mcu_address(real_address, 1);
  76. if(real_address != -1){
  77. return true;
  78. }else{
  79. return false;
  80. }
  81. }
  82. int dsp_acts_handle_image_pagemiss(struct device *dev, uint32_t epc)
  83. {
  84. unsigned int bank_group = IMG_BANK_GROUP(epc);
  85. unsigned int bank_index = IMG_BANK_INDEX(epc);
  86. unsigned int bank_no = BANK_NO(bank_group, bank_index);
  87. unsigned int type = IMG_TYPE(epc);
  88. struct dsp_acts_data *dsp_data = dev->data;
  89. const struct dsp_imageinfo *image;
  90. if (type >= DSP_NUM_IMAGE_TYPES) {
  91. printk("%s: invalid epc 0x%08x\n", __func__, epc);
  92. dsp_acts_handle_invalid_epc(dev, epc);
  93. return -EFAULT;
  94. }
  95. image = &dsp_data->images[type];
  96. /* if image->name is null, dsp lib is invalid*/
  97. if (!image || !image->name || !dsp_acts_is_valid_epc(epc)){
  98. printk("%s: invalid epc 0x%08x\n", __func__, epc);
  99. dsp_acts_handle_invalid_epc(dev, epc);
  100. return -EFAULT;
  101. }
  102. #if 0
  103. printk("%s: dsp image <%s> page miss, epc=0x%08x, type=%x, bank_group=%u, bank_index=%u\n",
  104. __func__, image->name, epc, type, bank_group, bank_index);
  105. #endif
  106. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  107. if (load_dsp_image_bank_from_file((void *)&image->filp, bank_no)) {
  108. printk("cannot load bank[%u] for epc 0x%08x\n", bank_no, epc);
  109. dsp_acts_handle_invalid_epc(dev, epc);
  110. return DSP_FAIL;
  111. }
  112. #else
  113. if (load_dsp_image_bank(image->ptr, image->size, bank_no)) {
  114. printk("cannot load bank[%u] for epc 0x%08x\n", bank_no, epc);
  115. dsp_acts_handle_invalid_epc(dev, epc);
  116. return DSP_FAIL;
  117. }
  118. #endif
  119. /* epc is word unit */
  120. unsigned int page_addr = (epc * 2) & 0xfff80000;
  121. //check tlb is bit19~bit31
  122. if (sys_read32(DSP_PAGE_ADDR0 + (bank_group << 2)) == page_addr)
  123. return -EBUSY;
  124. else
  125. sys_write32(page_addr, DSP_PAGE_ADDR0 + (bank_group << 2));
  126. #if 0
  127. printk("page addr %x target page add %x bank_group %d epc %x \n",sys_read32(DSP_PAGE_ADDR0 + (bank_group << 2)),page_addr,bank_group,epc);
  128. #endif
  129. return DSP_DONE;
  130. }
  131. int dsp_acts_handle_image_pageflush(struct device *dev, uint32_t epc)
  132. {
  133. unsigned int bank_group = IMG_BANK_GROUP(epc);
  134. //unsigned int bank_index = IMG_BANK_INDEX(epc);
  135. unsigned int type = IMG_TYPE(epc);
  136. struct dsp_acts_data *dsp_data = dev->data;
  137. const struct dsp_imageinfo *image;
  138. if (type >= DSP_NUM_IMAGE_TYPES) {
  139. printk("%s: invalid epc 0x%08x\n", __func__, epc);
  140. dsp_acts_handle_invalid_epc(dev, epc);
  141. return -EFAULT;
  142. }
  143. image = &dsp_data->images[type];
  144. /* if image->name is null, dsp lib is invalid*/
  145. if (!image || !image->name || !dsp_acts_is_valid_epc(epc)){
  146. printk("%s: invalid epc 0x%08x\n", __func__, epc);
  147. dsp_acts_handle_invalid_epc(dev, epc);
  148. return -EFAULT;
  149. }
  150. #if 0
  151. printk("%s: dsp image <%s> page flush, epc=0x%08x, type=%x, bank_group=%u, bank_index=%u\n",
  152. __func__, image->name, epc, type, bank_group, bank_index);
  153. #endif
  154. sys_write32(0, DSP_PAGE_ADDR0 + (bank_group << 2));
  155. return DSP_DONE;
  156. }