digital-cdc-rsc-mgr.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/clk.h>
  6. #include <linux/clk-provider.h>
  7. #include <linux/ratelimit.h>
  8. #include <dsp/digital-cdc-rsc-mgr.h>
  9. struct mutex hw_vote_lock;
  10. static bool is_init_done;
  11. /**
  12. * digital_cdc_rsc_mgr_hw_vote_enable - Enables hw vote in DSP
  13. *
  14. * @vote_handle: vote handle for which voting needs to be done
  15. *
  16. * Returns 0 on success or -EINVAL/error code on failure
  17. */
  18. int digital_cdc_rsc_mgr_hw_vote_enable(struct clk* vote_handle)
  19. {
  20. int ret = 0;
  21. if (!is_init_done || vote_handle == NULL) {
  22. pr_err_ratelimited("%s: init failed or vote handle NULL\n",
  23. __func__);
  24. return -EINVAL;
  25. }
  26. mutex_lock(&hw_vote_lock);
  27. ret = clk_prepare_enable(vote_handle);
  28. mutex_unlock(&hw_vote_lock);
  29. pr_debug("%s: return %d\n", __func__, ret);
  30. trace_printk("%s: return %d\n", __func__, ret);
  31. return ret;
  32. }
  33. EXPORT_SYMBOL(digital_cdc_rsc_mgr_hw_vote_enable);
  34. /**
  35. * digital_cdc_rsc_mgr_hw_vote_disable - Disables hw vote in DSP
  36. *
  37. * @vote_handle: vote handle for which voting needs to be disabled
  38. *
  39. */
  40. void digital_cdc_rsc_mgr_hw_vote_disable(struct clk* vote_handle)
  41. {
  42. if (!is_init_done || vote_handle == NULL) {
  43. pr_err_ratelimited("%s: init failed or vote handle NULL\n",
  44. __func__);
  45. return;
  46. }
  47. mutex_lock(&hw_vote_lock);
  48. clk_disable_unprepare(vote_handle);
  49. mutex_unlock(&hw_vote_lock);
  50. trace_printk("%s\n", __func__);
  51. }
  52. EXPORT_SYMBOL(digital_cdc_rsc_mgr_hw_vote_disable);
  53. /**
  54. * digital_cdc_rsc_mgr_hw_vote_reset - Resets hw vote count
  55. *
  56. */
  57. void digital_cdc_rsc_mgr_hw_vote_reset(struct clk* vote_handle)
  58. {
  59. int count = 0;
  60. if (!is_init_done || vote_handle == NULL) {
  61. pr_err_ratelimited("%s: init failed or vote handle NULL\n",
  62. __func__);
  63. return;
  64. }
  65. mutex_lock(&hw_vote_lock);
  66. while (__clk_is_enabled(vote_handle)) {
  67. clk_disable_unprepare(vote_handle);
  68. count++;
  69. }
  70. pr_debug("%s: Vote count after SSR: %d\n", __func__, count);
  71. trace_printk("%s: Vote count after SSR: %d\n", __func__, count);
  72. while (count--)
  73. clk_prepare_enable(vote_handle);
  74. mutex_unlock(&hw_vote_lock);
  75. }
  76. EXPORT_SYMBOL(digital_cdc_rsc_mgr_hw_vote_reset);
  77. void digital_cdc_rsc_mgr_init(void)
  78. {
  79. mutex_init(&hw_vote_lock);
  80. is_init_done = true;
  81. }
  82. void digital_cdc_rsc_mgr_exit(void)
  83. {
  84. mutex_destroy(&hw_vote_lock);
  85. is_init_done = false;
  86. }