anc_inner.h 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * Copyright (c) 1997-2015, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __ANC_INNER_H__
  7. #define __ANC_INNER_H__
  8. #include <kernel.h>
  9. #include <stdint.h>
  10. #include <soc.h>
  11. #include "drivers/anc.h"
  12. #include <acts_ringbuf.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #define ANC_COMMAND_FRAME_SIZE 0x1A0
  17. struct anc_acts_data {
  18. /* power status */
  19. int pm_status;
  20. /* message semaphore */
  21. struct k_sem sem;
  22. struct k_mutex mutex;
  23. /* one is decoder, the other is digital audio effect */
  24. struct anc_imageinfo images;
  25. /* image bootargs */
  26. struct anc_bootargs bootargs;
  27. };
  28. struct anc_acts_config {
  29. int reserve;
  30. };
  31. struct anc_acts_command{
  32. uint32_t id;
  33. uint32_t data_size;
  34. };
  35. typedef struct ack_buf{
  36. uint32_t cmd;
  37. }ack_buf_t;
  38. int anc_wait_hw_idle_timeout(int usec_to_wait);
  39. int anc_acts_request_image(struct device *dev, const struct anc_imageinfo *image);
  40. int anc_acts_release_image(struct device *dev);
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* __ANC_INNER_H__ */