dsp_inner.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Copyright (c) 1997-2015, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __DSP_INNER_H__
  7. #define __DSP_INNER_H__
  8. #include <kernel.h>
  9. #include <stdint.h>
  10. #include <soc.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. enum {
  15. DSP_STATUS_POWEROFF,
  16. DSP_STATUS_POWERON,
  17. DSP_STATUS_SUSPENDED,
  18. };
  19. /* mailbox protocol status flags */
  20. enum mailbox_status_bits {
  21. /* Flags set by the message sender: */
  22. /* indicate this is a new message, should clear by the receiver */
  23. MSG_FLAG_BUSY = BIT(0),
  24. /* indicate this is synchronized transaction. ignored so far */
  25. MSG_FLAG_SYNC = BIT(1),
  26. /* Flags set by the message receiver: */
  27. /* indicate message received, should clear by the sender */
  28. MSG_FLAG_ACK = BIT(8),
  29. /* indicate message handled completely */
  30. MSG_FLAG_DONE = BIT(9),
  31. /* indicate message handled completely, with reply present */
  32. MSG_FLAG_RPLY = BIT(10),
  33. /* fail to handle the message */
  34. MSG_FLAG_FAIL = BIT(11),
  35. };
  36. struct dsp_protocol_mailbox {
  37. /* message: low 16its is message id, high 16bits is message status */
  38. volatile uint32_t msg;
  39. /* message owner */
  40. volatile uint32_t owner;
  41. /* user-defined parameter list */
  42. volatile uint32_t param1;
  43. volatile uint32_t param2;
  44. };
  45. #define MSG_ID(msg) ((msg) & 0xffff)
  46. #define MSG_STATUS(msg) ((msg) >> 16)
  47. #define MAILBOX_MSG(id, status) (((uint32_t)(status) << 16) | ((id) & 0xffff))
  48. struct dsp_protocol_userinfo {
  49. /* global state */
  50. volatile uint32_t task_state;
  51. volatile uint32_t error_code;
  52. /* session information */
  53. volatile uint32_t func_enabled;
  54. volatile uint32_t func_counter;
  55. volatile uint32_t ssn_info;
  56. /* function information table */
  57. volatile uint32_t func_table;
  58. volatile uint32_t func_size;
  59. /* function paused/resumed state */
  60. volatile uint32_t func_runnable;
  61. };
  62. struct dsp_acts_data {
  63. /* power status */
  64. int8_t pm_status;
  65. /* need sync clock flag */
  66. int8_t need_sync_clock;
  67. /* message semaphore */
  68. struct k_sem msg_sem;
  69. struct k_mutex msg_mutex;
  70. /* user-defined message handler */
  71. dsp_message_handler msg_handler;
  72. /* one is decoder, the other is digital audio effect */
  73. struct dsp_imageinfo images[DSP_NUM_IMAGE_TYPES];
  74. /* image bootargs */
  75. struct dsp_bootargs bootargs;
  76. dsp_acts_irq_callback cb;
  77. void *cb_data;
  78. };
  79. struct dsp_acts_config {
  80. /* message box (from cpu to dsp) through mailbox registers */
  81. struct dsp_protocol_mailbox *dsp_mailbox;
  82. /* message box (from dsp to cpu) through mailbox registers */
  83. struct dsp_protocol_mailbox *cpu_mailbox;
  84. /* dsp exported user information through mailbox registers */
  85. struct dsp_protocol_userinfo *dsp_userinfo;
  86. };
  87. uint32_t addr_cpu2dsp(uint32_t addr, bool is_code __unused);
  88. uint32_t addr_dsp2cpu(uint32_t addr, bool is_code __unused);
  89. int wait_hw_idle_timeout(int usec_to_wait);
  90. int dsp_acts_request_image(struct device *dev, const struct dsp_imageinfo *image, int type);
  91. int dsp_acts_release_image(struct device *dev, int type);
  92. int dsp_acts_handle_image_pagemiss(struct device *dev, uint32_t epc);
  93. int dsp_acts_handle_image_pageflush(struct device *dev, uint32_t epc);
  94. int dsp_acts_register_message_handler(struct device *dev, dsp_message_handler handler);
  95. int dsp_acts_unregister_message_handler(struct device *dev);
  96. int dsp_acts_send_message(struct device *dev, struct dsp_message *msg);
  97. int dsp_acts_recv_message(struct device *dev);
  98. #ifdef __cplusplus
  99. }
  100. #endif
  101. #endif /* __DSP_INNER_H__ */