wcd-dsp-utils.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /*
  2. * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/device.h>
  14. #include <linux/err.h>
  15. #include <linux/firmware.h>
  16. #include <linux/elf.h>
  17. #include <linux/slab.h>
  18. #include <linux/list.h>
  19. #include "wcd-dsp-utils.h"
  20. static bool wdsp_is_valid_elf_hdr(const struct elf32_hdr *ehdr,
  21. size_t fw_size)
  22. {
  23. if (fw_size < sizeof(*ehdr)) {
  24. pr_err("%s: Firmware too small\n", __func__);
  25. goto elf_check_fail;
  26. }
  27. if (memcmp(ehdr->e_ident, ELFMAG, SELFMAG) != 0) {
  28. pr_err("%s: Not an ELF file\n", __func__);
  29. goto elf_check_fail;
  30. }
  31. if (ehdr->e_type != ET_EXEC && ehdr->e_type != ET_DYN) {
  32. pr_err("%s: Not an executable image\n", __func__);
  33. goto elf_check_fail;
  34. }
  35. if (ehdr->e_phnum == 0) {
  36. pr_err("%s: no segments to load\n", __func__);
  37. goto elf_check_fail;
  38. }
  39. if (sizeof(struct elf32_phdr) * ehdr->e_phnum +
  40. sizeof(struct elf32_hdr) > fw_size) {
  41. pr_err("%s: Too small MDT file\n", __func__);
  42. goto elf_check_fail;
  43. }
  44. return true;
  45. elf_check_fail:
  46. return false;
  47. }
  48. static int wdsp_add_segment_to_list(struct device *dev,
  49. const char *img_fname,
  50. const struct elf32_phdr *phdr,
  51. int phdr_idx,
  52. struct list_head *seg_list)
  53. {
  54. struct wdsp_img_segment *seg;
  55. int ret = 0;
  56. /* Do not load segments with zero size */
  57. if (phdr->p_filesz == 0 || phdr->p_memsz == 0)
  58. goto done;
  59. seg = kzalloc(sizeof(*seg), GFP_KERNEL);
  60. if (!seg) {
  61. ret = -ENOMEM;
  62. goto done;
  63. }
  64. snprintf(seg->split_fname, sizeof(seg->split_fname),
  65. "%s.b%02d", img_fname, phdr_idx);
  66. ret = request_firmware(&seg->split_fw, seg->split_fname, dev);
  67. if (ret < 0) {
  68. dev_err(dev, "%s: firmware %s not found\n",
  69. __func__, seg->split_fname);
  70. goto bad_seg;
  71. }
  72. if (phdr->p_filesz != seg->split_fw->size) {
  73. dev_err(dev,
  74. "%s: %s size mismatch, phdr_size: 0x%x fw_size: 0x%zx",
  75. __func__, seg->split_fname, phdr->p_filesz,
  76. seg->split_fw->size);
  77. ret = -EINVAL;
  78. goto bad_elf;
  79. }
  80. seg->load_addr = phdr->p_paddr;
  81. seg->size = phdr->p_filesz;
  82. seg->data = (u8 *) seg->split_fw->data;
  83. list_add_tail(&seg->list, seg_list);
  84. done:
  85. return ret;
  86. bad_elf:
  87. release_firmware(seg->split_fw);
  88. bad_seg:
  89. kfree(seg);
  90. return ret;
  91. }
  92. /*
  93. * wdsp_flush_segment_list: Flush the list of segments
  94. * @seg_list: List of segments to be flushed
  95. * This API will traverse through the list of segments provided in
  96. * seg_list, release the firmware for each segment and delete the
  97. * segment from the list.
  98. */
  99. void wdsp_flush_segment_list(struct list_head *seg_list)
  100. {
  101. struct wdsp_img_segment *seg, *next;
  102. list_for_each_entry_safe(seg, next, seg_list, list) {
  103. release_firmware(seg->split_fw);
  104. list_del(&seg->list);
  105. kfree(seg);
  106. }
  107. }
  108. EXPORT_SYMBOL(wdsp_flush_segment_list);
  109. /*
  110. * wdsp_get_segment_list: Get the list of requested segments
  111. * @dev: struct device pointer of caller
  112. * @img_fname: Image name for the mdt and split firmware files
  113. * @segment_type: Requested segment type, should be either
  114. * WDSP_ELF_FLAG_RE or WDSP_ELF_FLAG_WRITE
  115. * @seg_list: An initialized head for list of segmented to be returned
  116. * @entry_point: Pointer to return the entry point of the image
  117. * This API will parse the mdt file for img_fname and create
  118. * an struct wdsp_img_segment for each segment that matches segment_type
  119. * and add this structure to list pointed by seg_list
  120. */
  121. int wdsp_get_segment_list(struct device *dev,
  122. const char *img_fname,
  123. unsigned int segment_type,
  124. struct list_head *seg_list,
  125. u32 *entry_point)
  126. {
  127. const struct firmware *fw;
  128. const struct elf32_hdr *ehdr;
  129. const struct elf32_phdr *phdr;
  130. const u8 *elf_ptr;
  131. char mdt_name[WDSP_IMG_NAME_LEN_MAX];
  132. int ret, phdr_idx;
  133. bool segment_match;
  134. if (!dev) {
  135. ret = -EINVAL;
  136. pr_err("%s: Invalid device handle\n", __func__);
  137. goto done;
  138. }
  139. if (!img_fname || !seg_list || !entry_point) {
  140. ret = -EINVAL;
  141. dev_err(dev, "%s: Invalid input params\n",
  142. __func__);
  143. goto done;
  144. }
  145. if (segment_type != WDSP_ELF_FLAG_RE &&
  146. segment_type != WDSP_ELF_FLAG_WRITE) {
  147. dev_err(dev, "%s: Invalid request for segment_type %d\n",
  148. __func__, segment_type);
  149. ret = -EINVAL;
  150. goto done;
  151. }
  152. snprintf(mdt_name, sizeof(mdt_name), "%s.mdt", img_fname);
  153. ret = request_firmware(&fw, mdt_name, dev);
  154. if (ret < 0) {
  155. dev_err(dev, "%s: firmware %s not found\n",
  156. __func__, mdt_name);
  157. goto done;
  158. }
  159. ehdr = (struct elf32_hdr *) fw->data;
  160. *entry_point = ehdr->e_entry;
  161. if (!wdsp_is_valid_elf_hdr(ehdr, fw->size)) {
  162. dev_err(dev, "%s: fw mdt %s is invalid\n",
  163. __func__, mdt_name);
  164. ret = -EINVAL;
  165. goto bad_elf;
  166. }
  167. elf_ptr = fw->data + sizeof(*ehdr);
  168. for (phdr_idx = 0; phdr_idx < ehdr->e_phnum; phdr_idx++) {
  169. phdr = (struct elf32_phdr *) elf_ptr;
  170. segment_match = false;
  171. switch (segment_type) {
  172. case WDSP_ELF_FLAG_RE:
  173. /*
  174. * Flag can be READ or EXECUTE or both but
  175. * WRITE flag should not be set.
  176. */
  177. if ((phdr->p_flags & segment_type) &&
  178. !(phdr->p_flags & WDSP_ELF_FLAG_WRITE))
  179. segment_match = true;
  180. break;
  181. case WDSP_ELF_FLAG_WRITE:
  182. /*
  183. * If WRITE flag is set, other flags do not
  184. * matter.
  185. */
  186. if (phdr->p_flags & segment_type)
  187. segment_match = true;
  188. break;
  189. }
  190. if (segment_match) {
  191. ret = wdsp_add_segment_to_list(dev, img_fname, phdr,
  192. phdr_idx, seg_list);
  193. if (ret < 0) {
  194. wdsp_flush_segment_list(seg_list);
  195. goto bad_elf;
  196. }
  197. }
  198. elf_ptr = elf_ptr + sizeof(*phdr);
  199. }
  200. bad_elf:
  201. release_firmware(fw);
  202. done:
  203. return ret;
  204. }
  205. EXPORT_SYMBOL(wdsp_get_segment_list);