dsp_inner.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright (c) 2013-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __DSP_INNER_H__
  7. #define __DSP_INNER_H__
  8. #include <zephyr.h>
  9. #include <dsp_hal.h>
  10. #include <soc.h>
  11. #include <acts_ringbuf.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #define DSP_SESSION_COMMAND_BUFFER_SIZE (256)
  16. #define ENABLE_SESSION_BEGIN_END_REFCNT
  17. struct dsp_session_buf {
  18. struct acts_ringbuf buf;
  19. #if CONFIG_DSP_ACTIVE_POWER_LATENCY_MS >= 0
  20. struct dsp_session *session;
  21. #endif
  22. };
  23. struct dsp_session {
  24. unsigned int id; /* session id (session type id) */
  25. unsigned int uuid; /* session unique id */
  26. unsigned int func_allowed; /* session functions allowed mask */
  27. /* dsp device */
  28. struct device *dev;
  29. /* dsp command buffer */
  30. struct dsp_command_buffer cmdbuf;
  31. /* dsp images to run */
  32. const struct dsp_imageinfo *images[DSP_NUM_IMAGE_TYPES];
  33. /* semaphore to wait for dsp output */
  34. struct k_sem sem;
  35. /* mutex in case of multi-thread */
  36. struct k_mutex mutex;
  37. /* reference count */
  38. atomic_t open_refcnt;
  39. #ifdef ENABLE_SESSION_BEGIN_END_REFCNT
  40. atomic_t run_refcnt;
  41. #endif
  42. };
  43. void dsp_session_dump_info(struct dsp_session *session, void *info);
  44. void dsp_session_dump_function(struct dsp_session *session, unsigned int func);
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif /* __DSP_INNER_H__ */