dsp_image.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <os_common_api.h>
  7. #include <drivers/dsp.h>
  8. #include <string.h>
  9. #include <mem_manager.h>
  10. #include <sdfs.h>
  11. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  12. #include <fs/fs.h>
  13. #endif /* LOAD_IMAGE_FROM_FS */
  14. const struct dsp_imageinfo *dsp_create_image(const char *name)
  15. {
  16. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  17. char dsp_image_path[32];
  18. #endif
  19. struct dsp_imageinfo *image = mem_malloc(sizeof(*image));
  20. if (image == NULL)
  21. return NULL;
  22. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  23. snprintf(dsp_image_path, sizeof(dsp_image_path), "%s%s", CONFIG_DSP_IMAGE_PATH, name);
  24. if (fs_open(&image->filp, dsp_image_path, FS_O_READ)) {
  25. SYS_LOG_ERR("cannot find dsp image \"%s\"", dsp_image_path);
  26. image->size = 0;
  27. mem_free(image);
  28. return NULL;
  29. }
  30. image->size = 0x1000;
  31. #else
  32. if (sd_fmap(name, (void **)&image->ptr, (int *)&image->size)) {
  33. SYS_LOG_ERR("cannot find dsp image \"%s\"", name);
  34. mem_free(image);
  35. return NULL;
  36. }
  37. #endif
  38. image->name = name;
  39. return image;
  40. }
  41. void dsp_free_image(const struct dsp_imageinfo *image)
  42. {
  43. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  44. if (fs_close((struct fs_file_t *)&image->filp)) {
  45. SYS_LOG_ERR("cannot close file \"%s\"", image->name);
  46. }
  47. #endif
  48. mem_free((void*)image);
  49. }