digital-cdc-rsc-mgr.h 966 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef DIGITAL_CDC_RSC_MGR_H
  6. #define DIGITAL_CDC_RSC_MGR_H
  7. #include <linux/clk.h>
  8. #ifdef CONFIG_DIGITAL_CDC_RSC_MGR
  9. int digital_cdc_rsc_mgr_hw_vote_enable(struct clk* vote_handle);
  10. void digital_cdc_rsc_mgr_hw_vote_disable(struct clk* vote_handle);
  11. void digital_cdc_rsc_mgr_hw_vote_reset(struct clk* vote_handle);
  12. void digital_cdc_rsc_mgr_init(void);
  13. void digital_cdc_rsc_mgr_exit(void);
  14. #else
  15. static inline int digital_cdc_rsc_mgr_hw_vote_enable(struct clk* vote_handle)
  16. {
  17. return 0;
  18. }
  19. static inline void digital_cdc_rsc_mgr_hw_vote_disable(struct clk* vote_handle)
  20. {
  21. }
  22. static inline void digital_cdc_rsc_mgr_hw_vote_reset(struct clk* vote_handle)
  23. {
  24. }
  25. static inline void digital_cdc_rsc_mgr_init(void)
  26. {
  27. }
  28. static inline void digital_cdc_rsc_mgr_exit(void)
  29. {
  30. }
  31. #endif /* CONFIG_DIGITAL_CDC_RSC_MGR */
  32. #endif /* DIGITAL_CDC_RSC_MGR_H */