avtimer.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. /*
  2. * Copyright (c) 2012-2015, 2017-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/init.h>
  16. #include <linux/fs.h>
  17. #include <linux/cdev.h>
  18. #include <linux/uaccess.h>
  19. #include <linux/device.h>
  20. #include <linux/io.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/avtimer.h>
  23. #include <linux/slab.h>
  24. #include <linux/of.h>
  25. #include <linux/wait.h>
  26. #include <linux/sched.h>
  27. #if IS_ENABLED(CONFIG_AVTIMER_LEGACY)
  28. #include <media/msmb_isp.h>
  29. #endif
  30. #include <ipc/apr.h>
  31. #include <dsp/q6core.h>
  32. #define DEVICE_NAME "avtimer"
  33. #define TIMEOUT_MS 1000
  34. #define CORE_CLIENT 1
  35. #define TEMP_PORT ((CORE_CLIENT << 8) | 0x0001)
  36. #define SSR_WAKETIME 1000
  37. #define Q6_READY_RETRY 250
  38. #define Q6_READY_MAX_RETRIES 40
  39. #define AVCS_CMD_REMOTE_AVTIMER_VOTE_REQUEST 0x00012914
  40. #define AVCS_CMD_RSP_REMOTE_AVTIMER_VOTE_REQUEST 0x00012915
  41. #define AVCS_CMD_REMOTE_AVTIMER_RELEASE_REQUEST 0x00012916
  42. #define AVTIMER_REG_CNT 2
  43. struct adsp_avt_timer {
  44. struct apr_hdr hdr;
  45. union {
  46. char client_name[8];
  47. u32 avtimer_handle;
  48. };
  49. } __packed;
  50. static int major;
  51. struct avtimer_t {
  52. struct apr_svc *core_handle_q;
  53. struct cdev myc;
  54. struct class *avtimer_class;
  55. struct mutex avtimer_lock;
  56. int avtimer_open_cnt;
  57. struct delayed_work ssr_dwork;
  58. wait_queue_head_t adsp_resp_wait;
  59. int enable_timer_resp_received;
  60. int timer_handle;
  61. void __iomem *p_avtimer_msw;
  62. void __iomem *p_avtimer_lsw;
  63. uint32_t clk_div;
  64. uint32_t clk_mult;
  65. atomic_t adsp_ready;
  66. int num_retries;
  67. };
  68. static struct avtimer_t avtimer;
  69. static void avcs_set_isp_fptr(bool enable);
  70. static int32_t aprv2_core_fn_q(struct apr_client_data *data, void *priv)
  71. {
  72. uint32_t *payload1;
  73. if (!data) {
  74. pr_err("%s: Invalid params\n", __func__);
  75. return -EINVAL;
  76. }
  77. pr_debug("%s: core msg: payload len = %u, apr resp opcode = 0x%X\n",
  78. __func__, data->payload_size, data->opcode);
  79. switch (data->opcode) {
  80. case APR_BASIC_RSP_RESULT:{
  81. if (!data->payload_size) {
  82. pr_err("%s: APR_BASIC_RSP_RESULT No Payload ",
  83. __func__);
  84. return 0;
  85. }
  86. payload1 = data->payload;
  87. switch (payload1[0]) {
  88. case AVCS_CMD_REMOTE_AVTIMER_RELEASE_REQUEST:
  89. pr_debug("%s: Cmd = TIMER RELEASE status[0x%x]\n",
  90. __func__, payload1[1]);
  91. break;
  92. default:
  93. pr_err("Invalid cmd rsp[0x%x][0x%x]\n",
  94. payload1[0], payload1[1]);
  95. break;
  96. }
  97. break;
  98. }
  99. case RESET_EVENTS:{
  100. pr_debug("%s: Reset event received in AV timer\n", __func__);
  101. apr_reset(avtimer.core_handle_q);
  102. avtimer.core_handle_q = NULL;
  103. avtimer.avtimer_open_cnt = 0;
  104. atomic_set(&avtimer.adsp_ready, 0);
  105. schedule_delayed_work(&avtimer.ssr_dwork,
  106. msecs_to_jiffies(SSR_WAKETIME));
  107. break;
  108. }
  109. case AVCS_CMD_RSP_REMOTE_AVTIMER_VOTE_REQUEST:
  110. payload1 = data->payload;
  111. pr_debug("%s: RSP_REMOTE_AVTIMER_VOTE_REQUEST handle %x\n",
  112. __func__, payload1[0]);
  113. avtimer.timer_handle = payload1[0];
  114. avtimer.enable_timer_resp_received = 1;
  115. wake_up(&avtimer.adsp_resp_wait);
  116. break;
  117. default:
  118. pr_err("%s: Message adspcore svc: %d\n",
  119. __func__, data->opcode);
  120. break;
  121. }
  122. return 0;
  123. }
  124. int avcs_core_open(void)
  125. {
  126. if (!avtimer.core_handle_q)
  127. avtimer.core_handle_q = apr_register("ADSP", "CORE",
  128. aprv2_core_fn_q, TEMP_PORT, NULL);
  129. pr_debug("%s: Open_q %p\n", __func__, avtimer.core_handle_q);
  130. if (!avtimer.core_handle_q) {
  131. pr_err("%s: Unable to register CORE\n", __func__);
  132. return -EINVAL;
  133. }
  134. return 0;
  135. }
  136. EXPORT_SYMBOL(avcs_core_open);
  137. static int avcs_core_disable_avtimer(int timerhandle)
  138. {
  139. int rc = -EINVAL;
  140. struct adsp_avt_timer payload;
  141. if (!timerhandle) {
  142. pr_err("%s: Invalid timer handle\n", __func__);
  143. return -EINVAL;
  144. }
  145. memset(&payload, 0, sizeof(payload));
  146. rc = avcs_core_open();
  147. if (!rc && avtimer.core_handle_q) {
  148. payload.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  149. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  150. payload.hdr.pkt_size =
  151. sizeof(struct adsp_avt_timer);
  152. payload.hdr.src_svc = avtimer.core_handle_q->id;
  153. payload.hdr.src_domain = APR_DOMAIN_APPS;
  154. payload.hdr.dest_domain = APR_DOMAIN_ADSP;
  155. payload.hdr.dest_svc = APR_SVC_ADSP_CORE;
  156. payload.hdr.src_port = TEMP_PORT;
  157. payload.hdr.dest_port = TEMP_PORT;
  158. payload.hdr.token = CORE_CLIENT;
  159. payload.hdr.opcode = AVCS_CMD_REMOTE_AVTIMER_RELEASE_REQUEST;
  160. payload.avtimer_handle = timerhandle;
  161. pr_debug("%s: disable avtimer opcode %x handle %x\n",
  162. __func__, payload.hdr.opcode, payload.avtimer_handle);
  163. rc = apr_send_pkt(avtimer.core_handle_q,
  164. (uint32_t *)&payload);
  165. if (rc < 0)
  166. pr_err("%s: Enable AVtimer failed op[0x%x]rc[%d]\n",
  167. __func__, payload.hdr.opcode, rc);
  168. else
  169. rc = 0;
  170. }
  171. return rc;
  172. }
  173. static int avcs_core_enable_avtimer(char *client_name)
  174. {
  175. int rc = -EINVAL, ret = -EINVAL;
  176. struct adsp_avt_timer payload;
  177. if (!client_name) {
  178. pr_err("%s: Invalid params\n", __func__);
  179. return -EINVAL;
  180. }
  181. memset(&payload, 0, sizeof(payload));
  182. rc = avcs_core_open();
  183. if (!rc && avtimer.core_handle_q) {
  184. avtimer.enable_timer_resp_received = 0;
  185. payload.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_EVENT,
  186. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  187. payload.hdr.pkt_size =
  188. sizeof(struct adsp_avt_timer);
  189. payload.hdr.src_svc = avtimer.core_handle_q->id;
  190. payload.hdr.src_domain = APR_DOMAIN_APPS;
  191. payload.hdr.dest_domain = APR_DOMAIN_ADSP;
  192. payload.hdr.dest_svc = APR_SVC_ADSP_CORE;
  193. payload.hdr.src_port = TEMP_PORT;
  194. payload.hdr.dest_port = TEMP_PORT;
  195. payload.hdr.token = CORE_CLIENT;
  196. payload.hdr.opcode = AVCS_CMD_REMOTE_AVTIMER_VOTE_REQUEST;
  197. strlcpy(payload.client_name, client_name,
  198. sizeof(payload.client_name));
  199. pr_debug("%s: enable avtimer opcode %x client name %s\n",
  200. __func__, payload.hdr.opcode, payload.client_name);
  201. rc = apr_send_pkt(avtimer.core_handle_q,
  202. (uint32_t *)&payload);
  203. if (rc < 0) {
  204. pr_err("%s: Enable AVtimer failed op[0x%x]rc[%d]\n",
  205. __func__, payload.hdr.opcode, rc);
  206. goto bail;
  207. } else
  208. rc = 0;
  209. ret = wait_event_timeout(avtimer.adsp_resp_wait,
  210. (avtimer.enable_timer_resp_received == 1),
  211. msecs_to_jiffies(TIMEOUT_MS));
  212. if (!ret) {
  213. pr_err("%s: wait_event timeout for Enable timer\n",
  214. __func__);
  215. rc = -ETIMEDOUT;
  216. }
  217. if (rc)
  218. avtimer.timer_handle = 0;
  219. }
  220. bail:
  221. return rc;
  222. }
  223. int avcs_core_disable_power_collapse(int enable)
  224. {
  225. int rc = 0;
  226. mutex_lock(&avtimer.avtimer_lock);
  227. if (enable) {
  228. if (avtimer.avtimer_open_cnt) {
  229. avtimer.avtimer_open_cnt++;
  230. pr_debug("%s: opened avtimer open count=%d\n",
  231. __func__, avtimer.avtimer_open_cnt);
  232. rc = 0;
  233. goto done;
  234. }
  235. rc = avcs_core_enable_avtimer("timer");
  236. if (!rc) {
  237. avtimer.avtimer_open_cnt++;
  238. atomic_set(&avtimer.adsp_ready, 1);
  239. }
  240. } else {
  241. if (avtimer.avtimer_open_cnt > 0) {
  242. avtimer.avtimer_open_cnt--;
  243. if (!avtimer.avtimer_open_cnt) {
  244. rc = avcs_core_disable_avtimer(
  245. avtimer.timer_handle);
  246. avtimer.timer_handle = 0;
  247. }
  248. }
  249. }
  250. done:
  251. mutex_unlock(&avtimer.avtimer_lock);
  252. return rc;
  253. }
  254. EXPORT_SYMBOL(avcs_core_disable_power_collapse);
  255. static void reset_work(struct work_struct *work)
  256. {
  257. if (q6core_is_adsp_ready()) {
  258. avcs_core_disable_power_collapse(1);
  259. avtimer.num_retries = Q6_READY_MAX_RETRIES;
  260. return;
  261. }
  262. pr_debug("%s:Q6 not ready-retry after sometime\n", __func__);
  263. if (--avtimer.num_retries > 0) {
  264. schedule_delayed_work(&avtimer.ssr_dwork,
  265. msecs_to_jiffies(Q6_READY_RETRY));
  266. } else {
  267. pr_err("%s: Q6 failed responding after multiple retries\n",
  268. __func__);
  269. avtimer.num_retries = Q6_READY_MAX_RETRIES;
  270. }
  271. }
  272. int avcs_core_query_timer(uint64_t *avtimer_tick)
  273. {
  274. uint32_t avtimer_msw = 0, avtimer_lsw = 0;
  275. uint64_t avtimer_tick_temp;
  276. if (!atomic_read(&avtimer.adsp_ready)) {
  277. pr_debug("%s:In SSR, return\n", __func__);
  278. return -ENETRESET;
  279. }
  280. avtimer_lsw = ioread32(avtimer.p_avtimer_lsw);
  281. avtimer_msw = ioread32(avtimer.p_avtimer_msw);
  282. avtimer_tick_temp = (uint64_t)((uint64_t)avtimer_msw << 32)
  283. | avtimer_lsw;
  284. *avtimer_tick = mul_u64_u32_div(avtimer_tick_temp, avtimer.clk_mult,
  285. avtimer.clk_div);
  286. pr_debug_ratelimited("%s:Avtimer: msw: %u, lsw: %u, tick: %llu\n",
  287. __func__,
  288. avtimer_msw, avtimer_lsw, *avtimer_tick);
  289. return 0;
  290. }
  291. EXPORT_SYMBOL(avcs_core_query_timer);
  292. #if IS_ENABLED(CONFIG_AVTIMER_LEGACY)
  293. static void avcs_set_isp_fptr(bool enable)
  294. {
  295. struct avtimer_fptr_t av_fptr;
  296. if (enable) {
  297. av_fptr.fptr_avtimer_open = avcs_core_open;
  298. av_fptr.fptr_avtimer_enable = avcs_core_disable_power_collapse;
  299. av_fptr.fptr_avtimer_get_time = avcs_core_query_timer;
  300. msm_isp_set_avtimer_fptr(av_fptr);
  301. } else {
  302. av_fptr.fptr_avtimer_open = NULL;
  303. av_fptr.fptr_avtimer_enable = NULL;
  304. av_fptr.fptr_avtimer_get_time = NULL;
  305. msm_isp_set_avtimer_fptr(av_fptr);
  306. }
  307. }
  308. #else
  309. static void avcs_set_isp_fptr(bool enable)
  310. {
  311. }
  312. #endif
  313. static int avtimer_open(struct inode *inode, struct file *file)
  314. {
  315. return avcs_core_disable_power_collapse(1);
  316. }
  317. static int avtimer_release(struct inode *inode, struct file *file)
  318. {
  319. return avcs_core_disable_power_collapse(0);
  320. }
  321. /*
  322. * ioctl call provides GET_AVTIMER
  323. */
  324. static long avtimer_ioctl(struct file *file, unsigned int ioctl_num,
  325. unsigned long ioctl_param)
  326. {
  327. switch (ioctl_num) {
  328. case IOCTL_GET_AVTIMER_TICK:
  329. {
  330. uint64_t avtimer_tick = 0;
  331. int rc;
  332. rc = avcs_core_query_timer(&avtimer_tick);
  333. if (rc) {
  334. pr_err("%s: Error: Invalid AV Timer tick, rc = %d\n",
  335. __func__, rc);
  336. return rc;
  337. }
  338. pr_debug_ratelimited("%s: AV Timer tick: time %llx\n",
  339. __func__, avtimer_tick);
  340. if (copy_to_user((void __user *)ioctl_param, &avtimer_tick,
  341. sizeof(avtimer_tick))) {
  342. pr_err("%s: copy_to_user failed\n", __func__);
  343. return -EFAULT;
  344. }
  345. }
  346. break;
  347. default:
  348. pr_err("%s: invalid cmd\n", __func__);
  349. return -EINVAL;
  350. }
  351. return 0;
  352. }
  353. static const struct file_operations avtimer_fops = {
  354. .unlocked_ioctl = avtimer_ioctl,
  355. .compat_ioctl = avtimer_ioctl,
  356. .open = avtimer_open,
  357. .release = avtimer_release
  358. };
  359. static int dev_avtimer_probe(struct platform_device *pdev)
  360. {
  361. int result = 0;
  362. dev_t dev = MKDEV(major, 0);
  363. struct device *device_handle;
  364. struct resource *reg_lsb = NULL, *reg_msb = NULL;
  365. uint32_t clk_div_val;
  366. uint32_t clk_mult_val;
  367. if (!pdev) {
  368. pr_err("%s: Invalid params\n", __func__);
  369. return -EINVAL;
  370. }
  371. reg_lsb = platform_get_resource_byname(pdev,
  372. IORESOURCE_MEM, "avtimer_lsb_addr");
  373. if (!reg_lsb) {
  374. dev_err(&pdev->dev, "%s: Looking up %s property",
  375. "avtimer_lsb_addr", __func__);
  376. return -EINVAL;
  377. }
  378. reg_msb = platform_get_resource_byname(pdev,
  379. IORESOURCE_MEM, "avtimer_msb_addr");
  380. if (!reg_msb) {
  381. dev_err(&pdev->dev, "%s: Looking up %s property",
  382. "avtimer_msb_addr", __func__);
  383. return -EINVAL;
  384. }
  385. INIT_DELAYED_WORK(&avtimer.ssr_dwork, reset_work);
  386. avtimer.p_avtimer_lsw = devm_ioremap_nocache(&pdev->dev,
  387. reg_lsb->start, resource_size(reg_lsb));
  388. if (!avtimer.p_avtimer_lsw) {
  389. dev_err(&pdev->dev, "%s: ioremap failed for lsb avtimer register",
  390. __func__);
  391. return -ENOMEM;
  392. }
  393. avtimer.p_avtimer_msw = devm_ioremap_nocache(&pdev->dev,
  394. reg_msb->start, resource_size(reg_msb));
  395. if (!avtimer.p_avtimer_msw) {
  396. dev_err(&pdev->dev, "%s: ioremap failed for msb avtimer register",
  397. __func__);
  398. goto unmap;
  399. }
  400. avtimer.num_retries = Q6_READY_MAX_RETRIES;
  401. /* get the device number */
  402. if (major)
  403. result = register_chrdev_region(dev, 1, DEVICE_NAME);
  404. else {
  405. result = alloc_chrdev_region(&dev, 0, 1, DEVICE_NAME);
  406. major = MAJOR(dev);
  407. }
  408. if (result < 0) {
  409. dev_err(&pdev->dev, "%s: Registering avtimer device failed\n",
  410. __func__);
  411. goto unmap;
  412. }
  413. avtimer.avtimer_class = class_create(THIS_MODULE, "avtimer");
  414. if (IS_ERR(avtimer.avtimer_class)) {
  415. result = PTR_ERR(avtimer.avtimer_class);
  416. dev_err(&pdev->dev, "%s: Error creating avtimer class: %d\n",
  417. __func__, result);
  418. goto unregister_chrdev_region;
  419. }
  420. cdev_init(&avtimer.myc, &avtimer_fops);
  421. result = cdev_add(&avtimer.myc, dev, 1);
  422. if (result < 0) {
  423. dev_err(&pdev->dev, "%s: Registering file operations failed\n",
  424. __func__);
  425. goto class_destroy;
  426. }
  427. device_handle = device_create(avtimer.avtimer_class,
  428. NULL, avtimer.myc.dev, NULL, "avtimer");
  429. if (IS_ERR(device_handle)) {
  430. result = PTR_ERR(device_handle);
  431. pr_err("%s: device_create failed: %d\n", __func__, result);
  432. goto class_destroy;
  433. }
  434. init_waitqueue_head(&avtimer.adsp_resp_wait);
  435. mutex_init(&avtimer.avtimer_lock);
  436. avtimer.avtimer_open_cnt = 0;
  437. pr_debug("%s: Device create done for avtimer major=%d\n",
  438. __func__, major);
  439. if (of_property_read_u32(pdev->dev.of_node,
  440. "qcom,clk-div", &clk_div_val))
  441. avtimer.clk_div = 1;
  442. else
  443. avtimer.clk_div = clk_div_val;
  444. if (of_property_read_u32(pdev->dev.of_node,
  445. "qcom,clk-mult", &clk_mult_val))
  446. avtimer.clk_mult = 1;
  447. else
  448. avtimer.clk_mult = clk_mult_val;
  449. avcs_set_isp_fptr(true);
  450. pr_debug("%s: avtimer.clk_div = %d, avtimer.clk_mult = %d\n",
  451. __func__, avtimer.clk_div, avtimer.clk_mult);
  452. return 0;
  453. class_destroy:
  454. class_destroy(avtimer.avtimer_class);
  455. unregister_chrdev_region:
  456. unregister_chrdev_region(MKDEV(major, 0), 1);
  457. unmap:
  458. if (avtimer.p_avtimer_lsw)
  459. devm_iounmap(&pdev->dev, avtimer.p_avtimer_lsw);
  460. if (avtimer.p_avtimer_msw)
  461. devm_iounmap(&pdev->dev, avtimer.p_avtimer_msw);
  462. avtimer.p_avtimer_lsw = NULL;
  463. avtimer.p_avtimer_msw = NULL;
  464. return result;
  465. }
  466. static int dev_avtimer_remove(struct platform_device *pdev)
  467. {
  468. pr_debug("%s: dev_avtimer_remove\n", __func__);
  469. if (avtimer.p_avtimer_lsw)
  470. devm_iounmap(&pdev->dev, avtimer.p_avtimer_lsw);
  471. if (avtimer.p_avtimer_msw)
  472. devm_iounmap(&pdev->dev, avtimer.p_avtimer_msw);
  473. device_destroy(avtimer.avtimer_class, avtimer.myc.dev);
  474. cdev_del(&avtimer.myc);
  475. class_destroy(avtimer.avtimer_class);
  476. unregister_chrdev_region(MKDEV(major, 0), 1);
  477. avcs_set_isp_fptr(false);
  478. return 0;
  479. }
  480. static const struct of_device_id avtimer_machine_of_match[] = {
  481. { .compatible = "qcom,avtimer", },
  482. {},
  483. };
  484. static struct platform_driver dev_avtimer_driver = {
  485. .probe = dev_avtimer_probe,
  486. .remove = dev_avtimer_remove,
  487. .driver = {
  488. .name = "dev_avtimer",
  489. .of_match_table = avtimer_machine_of_match,
  490. },
  491. };
  492. int __init avtimer_init(void)
  493. {
  494. s32 rc;
  495. rc = platform_driver_register(&dev_avtimer_driver);
  496. if (rc < 0) {
  497. pr_err("%s: platform_driver_register failed\n", __func__);
  498. goto error_platform_driver;
  499. }
  500. pr_debug("%s: dev_avtimer_init : done\n", __func__);
  501. return 0;
  502. error_platform_driver:
  503. pr_err("%s: encounterd error\n", __func__);
  504. return rc;
  505. }
  506. void avtimer_exit(void)
  507. {
  508. platform_driver_unregister(&dev_avtimer_driver);
  509. }
  510. MODULE_DESCRIPTION("avtimer driver");
  511. MODULE_LICENSE("GPL v2");