anc_dev.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. /*
  2. * Copyright (c) 1997-2015, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <device.h>
  7. #include <soc.h>
  8. #include <soc_anc.h>
  9. #include <drivers/anc.h>
  10. #include "anc_inner.h"
  11. #include <soc_regs.h>
  12. #define CONFIG_ANC_DEBUG_PRINT
  13. #define CONFIG_ANC_COMMAND_ENABLE
  14. #define CONFIG_ANC_ACK_ENABLE
  15. #define ANC_BOOTARGS_CPU_ADDRESS 0x106A600
  16. #define ANC_BOOTARGS_SIZE 0x20
  17. struct anc_bootargs *anc_bootargs = (struct anc_bootargs *)ANC_BOOTARGS_CPU_ADDRESS;
  18. #ifdef CONFIG_ANC_COMMAND_ENABLE
  19. /*command ring buffer*/
  20. static struct acts_ringbuf command_buff __in_section_unique(ANC_SHARE_RAM);
  21. /*364 bytes data, 8 bytes head*/
  22. static u8_t command_data_buff[0x200] __in_section_unique(ANC_SHARE_RAM);
  23. #ifdef CONFIG_ANC_ACK_ENABLE
  24. /*ack ringbuf*/
  25. static struct acts_ringbuf ack_buff __in_section_unique(ANC_SHARE_RAM);
  26. static u8_t ack_data_buff[0x20] __in_section_unique(ANC_SHARE_RAM);
  27. #endif
  28. #endif // CONFIG_ANC_COMMAND_ENABLE
  29. #ifdef CONFIG_ANC_DEBUG_PRINT
  30. #include <acts_ringbuf.h>
  31. struct acts_ringbuf *anc_dev_get_print_buffer(void);
  32. static void anc_print_work_func(struct k_work *work);
  33. static struct acts_ringbuf debug_buff __in_section_unique(ANC_SHARE_RAM);
  34. static u8_t debug_data_buff[0x100] __in_section_unique(ANC_SHARE_RAM);
  35. K_DELAYED_WORK_DEFINE(anc_print_work, anc_print_work_func);
  36. char anc_hex_buf[0x200];
  37. int anc_print_all_buff(void)
  38. {
  39. int i = 0;
  40. int length;
  41. struct acts_ringbuf *debug_buf = &debug_buff;
  42. if(!debug_buf)
  43. return 0;
  44. length = acts_ringbuf_length(debug_buf);
  45. if(length > acts_ringbuf_size(debug_buf)) {
  46. acts_ringbuf_drop_all(&debug_buff);
  47. length = 0;
  48. }
  49. if(length >= sizeof(anc_hex_buf)){
  50. length = sizeof(anc_hex_buf) - 2;
  51. }
  52. if(length){
  53. int index = 0;
  54. acts_ringbuf_get(debug_buf, &anc_hex_buf[0], length);
  55. for(i = 0; i < length / 2; i++){
  56. anc_hex_buf[i] = anc_hex_buf[2 * i];
  57. }
  58. anc_hex_buf[i] = 0;
  59. printk("[ANC PRINT]%s %d %d %d \n",anc_hex_buf,debug_buf->head,debug_buf->tail,debug_buf->mask);
  60. return acts_ringbuf_length(debug_buf);
  61. }
  62. return 0;
  63. }
  64. static void anc_print_work_func(struct k_work *work)
  65. {
  66. //printk("-----%s-----\n",__func__);
  67. while(anc_print_all_buff() > 0) {
  68. ;
  69. }
  70. k_delayed_work_submit(&anc_print_work, K_MSEC(2));
  71. }
  72. #endif
  73. static void anc_acts_isr(void *arg);
  74. static void anc_acts_irq_enable(void);
  75. static void anc_acts_irq_disable(void);
  76. DEVICE_DECLARE(anc_acts);
  77. int anc_wait_hw_idle_timeout(int usec_to_wait)
  78. {
  79. do {
  80. if (anc_check_hw_idle())
  81. return 0;
  82. if (usec_to_wait-- <= 0)
  83. break;
  84. k_busy_wait(1);
  85. } while (1);
  86. return -EAGAIN;
  87. }
  88. /*FIXME*/
  89. static int anc_acts_request_mem(struct device *dev, int type)
  90. {
  91. return anc_soc_request_mem();
  92. }
  93. /*FIXME*/
  94. static int anc_acts_release_mem(struct device *dev, int type)
  95. {
  96. return anc_soc_release_mem();
  97. }
  98. static int anc_acts_power_on(struct device *dev)
  99. {
  100. struct anc_acts_data *anc_data = dev->data;
  101. int i;
  102. if (anc_data->pm_status != ANC_STATUS_POWEROFF)
  103. return 0;
  104. if (anc_data->images.size == 0) {
  105. SYS_LOG_ERR("%s: no image loaded\n", __func__);
  106. return -EFAULT;
  107. }
  108. anc_init_clk();
  109. /* assert anc wait signal */
  110. anc_do_wait();
  111. anc_soc_request_mem();
  112. anc_data->pm_status = ANC_STATUS_POWERON;
  113. /* clear all pending */
  114. clear_anc_all_irq_pending();
  115. /* enable anc irq */
  116. anc_acts_irq_enable();
  117. /* deassert anc wait signal */
  118. anc_undo_wait();
  119. anc_reset_enable();
  120. /*anc reg access by anc*/
  121. anc_soc_request_reg();
  122. SYS_LOG_ERR("ANC power on\n");
  123. anc_dump_info();
  124. return 0;
  125. }
  126. static int anc_acts_power_off(struct device *dev)
  127. {
  128. const struct anc_acts_config *anc_cfg = dev->config;
  129. struct anc_acts_data *anc_data = dev->data;
  130. if (anc_data->pm_status == ANC_STATUS_POWEROFF)
  131. return 0;
  132. /* assert anc wait signal */
  133. anc_do_wait();
  134. /* disable anc irq */
  135. anc_acts_irq_disable();
  136. /* assert reset anc module */
  137. acts_reset_peripheral_assert(RESET_ID_ANC);
  138. /* disable anc clock*/
  139. acts_clock_peripheral_disable(CLOCK_ID_ANC);
  140. /* deassert anc wait signal */
  141. anc_undo_wait();
  142. anc_soc_release_mem();
  143. anc_soc_release_reg();
  144. anc_data->pm_status = ANC_STATUS_POWEROFF;
  145. #ifdef CONFIG_ANC_DEBUG_PRINT
  146. anc_print_all_buff();
  147. acts_ringbuf_drop_all(&debug_buff);
  148. #endif
  149. SYS_LOG_INF("ANC power off\n");
  150. return 0;
  151. }
  152. static int anc_acts_get_status(struct device *dev)
  153. {
  154. struct anc_acts_data *anc_data = dev->data;
  155. return anc_data->pm_status;
  156. }
  157. static int anc_acts_send_command(struct device *dev, int type, void *data, int size)
  158. {
  159. int ret, cnt;
  160. ack_buf_t ack;
  161. struct anc_acts_command cmd;
  162. const struct anc_acts_config *anc_cfg = dev->config;
  163. struct anc_acts_data *anc_data = dev->data;
  164. if (anc_data->pm_status == ANC_STATUS_POWEROFF)
  165. {
  166. SYS_LOG_ERR("anc dsp haven't been power on\n");
  167. return -1;
  168. }
  169. if(k_mutex_lock(&anc_data->mutex, SYS_TIMEOUT_MS(2000))){
  170. SYS_LOG_ERR("wait timeout");
  171. return -1;
  172. }
  173. cnt = 0;
  174. ret = acts_ringbuf_space(&command_buff);
  175. while(ret < size + sizeof(struct anc_acts_command)){
  176. cnt++;
  177. os_sleep(5);
  178. ret = acts_ringbuf_space(&command_buff);
  179. if(cnt >= 400){
  180. SYS_LOG_ERR("wait timeout,send data to anc dsp failed, 0x%x\n",ret);
  181. goto errexit;
  182. }
  183. }
  184. /*put cmd head*/
  185. cmd.id = type;
  186. cmd.data_size = size;
  187. ret = acts_ringbuf_put(&command_buff, &cmd, sizeof(struct anc_acts_command));
  188. if(ret != sizeof(struct anc_acts_command)){
  189. SYS_LOG_ERR("send err");
  190. goto errexit;
  191. }
  192. /*put data*/
  193. if(size){
  194. ret = acts_ringbuf_put(&command_buff, data, size);
  195. if(ret != size){
  196. SYS_LOG_ERR("send err");
  197. goto errexit;
  198. }
  199. }
  200. /*wait ack*/
  201. #ifdef CONFIG_ANC_ACK_ENABLE
  202. cnt = 0;
  203. ret = acts_ringbuf_length(&ack_buff);
  204. while(ret < sizeof(ack_buf_t)){
  205. cnt++;
  206. if(cnt > 2000){
  207. SYS_LOG_ERR("wait ack timeout");
  208. goto errexit;
  209. }
  210. os_sleep(2);
  211. ret = acts_ringbuf_length(&ack_buff);
  212. }
  213. acts_ringbuf_get(&ack_buff, &ack, sizeof(ack_buf_t));
  214. if(ack.cmd != type){
  215. SYS_LOG_ERR("command send err");
  216. goto errexit;
  217. }
  218. #endif
  219. k_mutex_unlock(&anc_data->mutex);
  220. return 0;
  221. errexit:
  222. k_mutex_unlock(&anc_data->mutex);
  223. return -1;
  224. }
  225. static void anc_acts_isr(void *arg)
  226. {
  227. /* clear irq pending bits */
  228. //clear_anc_irq_pending(DT_INST_IRQN(0));
  229. clear_anc_irq_pending(0);
  230. anc_acts_recv_message(arg);
  231. }
  232. static int anc_acts_init(const struct device *dev)
  233. {
  234. const struct anc_acts_config *anc_cfg = dev->config;
  235. struct anc_acts_data *anc_data = dev->data;
  236. memset(anc_bootargs, 0, sizeof(struct anc_bootargs));
  237. #ifdef CONFIG_ANC_COMMAND_ENABLE
  238. acts_ringbuf_init(&command_buff, command_data_buff, sizeof(command_data_buff));
  239. command_buff.dsp_ptr = mcu_to_anc_address(command_buff.cpu_ptr, 0);
  240. anc_bootargs->cmd_buf = mcu_to_anc_address(POINTER_TO_UINT(&command_buff), DATA_ADDR);
  241. #ifdef CONFIG_ANC_ACK_ENABLE
  242. acts_ringbuf_init(&ack_buff, ack_data_buff, sizeof(ack_data_buff));
  243. ack_buff.dsp_ptr = mcu_to_anc_address(ack_buff.cpu_ptr, 0);
  244. anc_bootargs->ack_buf = mcu_to_anc_address(POINTER_TO_UINT(&ack_buff), DATA_ADDR);
  245. #endif
  246. #endif
  247. #ifdef CONFIG_ANC_DEBUG_PRINT
  248. acts_ringbuf_init(&debug_buff, debug_data_buff, sizeof(debug_data_buff));
  249. debug_buff.dsp_ptr = mcu_to_anc_address(debug_buff.cpu_ptr, 0);
  250. anc_bootargs->debug_buf = mcu_to_anc_address(POINTER_TO_UINT(&debug_buff), DATA_ADDR);
  251. k_delayed_work_submit(&anc_print_work, K_MSEC(10));
  252. #endif
  253. k_sem_init(&anc_data->sem, 0, 1);
  254. k_mutex_init(&anc_data->mutex);
  255. anc_data->pm_status = ANC_STATUS_POWEROFF;
  256. return 0;
  257. }
  258. static struct anc_acts_data anc_acts_data;
  259. static const struct anc_acts_config anc_acts_config = {
  260. };
  261. const struct anc_driver_api anc_drv_api = {
  262. .poweron = anc_acts_power_on,
  263. .poweroff = anc_acts_power_off,
  264. .request_image = anc_acts_request_image,
  265. .release_image = anc_acts_release_image,
  266. .request_mem = anc_acts_request_mem,
  267. .release_mem = anc_acts_release_mem,
  268. .get_status = anc_acts_get_status,
  269. .send_command = anc_acts_send_command,
  270. };
  271. DEVICE_DEFINE(anc_acts, CONFIG_ANC_NAME,
  272. anc_acts_init, NULL, &anc_acts_data, &anc_acts_config,
  273. POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &anc_drv_api);
  274. /*FIXME*/
  275. static void anc_acts_irq_enable(void)
  276. {
  277. // IRQ_CONNECT(DT_INST_IRQN(0), DT_INST_IRQ(0, priority), anc_acts_isr, DEVICE_GET(anc_acts), 0);
  278. // irq_enable(DT_INST_IRQN(0));
  279. }
  280. /*FIXME*/
  281. static void anc_acts_irq_disable(void)
  282. {
  283. // irq_disable(DT_INST_IRQN(0));
  284. }
  285. #ifdef CONFIG_ANC_DEBUG_PRINT
  286. #define DEV_DATA(dev) \
  287. ((struct anc_acts_data * const)(dev)->data)
  288. struct acts_ringbuf *anc_dev_get_print_buffer(void)
  289. {
  290. struct anc_acts_data *data = DEV_DATA(DEVICE_GET(anc_acts));
  291. if(!data->bootargs.debug_buf){
  292. return NULL;
  293. }
  294. return (struct acts_ringbuf *)anc_to_mcu_address(data->bootargs.debug_buf,DATA_ADDR);
  295. }
  296. #endif