audio_pdr.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* Copyright (c) 2016-2017, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. #ifndef __AUDIO_PDR_H_
  14. #define __AUDIO_PDR_H_
  15. enum {
  16. AUDIO_PDR_DOMAIN_ADSP,
  17. AUDIO_PDR_DOMAIN_MAX
  18. };
  19. enum {
  20. AUDIO_PDR_FRAMEWORK_DOWN,
  21. AUDIO_PDR_FRAMEWORK_UP
  22. };
  23. #ifdef CONFIG_MSM_QDSP6_PDR
  24. /*
  25. * Use audio_pdr_register to register with the PDR subsystem this
  26. * should be done before module late init otherwise notification
  27. * of the AUDIO_PDR_FRAMEWORK_UP cannot be guaranteed.
  28. *
  29. * *nb - Pointer to a notifier block. Provide a callback function
  30. * to be notified once the PDR framework has been initialized.
  31. * Callback will receive either the AUDIO_PDR_FRAMEWORK_DOWN
  32. * or AUDIO_PDR_FRAMEWORK_UP ioctl depending on the state of
  33. * the PDR framework.
  34. *
  35. * Returns: Success: 0
  36. * Failure: Error code
  37. */
  38. int audio_pdr_register(struct notifier_block *nb);
  39. /*
  40. * Use audio_pdr_service_register to register with a PDR service
  41. * Function should be called after nb callback registered with
  42. * audio_pdr_register has been called back with the
  43. * AUDIO_PDR_FRAMEWORK_UP ioctl.
  44. *
  45. * domain_id - Domain to use, example: AUDIO_PDR_ADSP
  46. * *nb - Pointer to a notifier block. Provide a callback function
  47. * that will be notified of the state of the domain
  48. * requested. The ioctls received by the callback are
  49. * defined in service-notifier.h.
  50. *
  51. * Returns: Success: Client handle
  52. * Failure: Pointer error code
  53. */
  54. void *audio_pdr_service_register(int domain_id,
  55. struct notifier_block *nb, int *curr_state);
  56. /*
  57. * Use audio_pdr_service_deregister to deregister with a PDR
  58. * service that was registered using the audio_pdr_service_register
  59. * API.
  60. *
  61. * *service_handle - Service handle returned by audio_pdr_service_register
  62. * *nb - Pointer to the notifier block. Used in the call to
  63. * audio_pdr_service_register.
  64. *
  65. * Returns: Success: Client handle
  66. * Failure: Error code
  67. */
  68. int audio_pdr_service_deregister(void *service_handle,
  69. struct notifier_block *nb);
  70. #else
  71. static inline int audio_pdr_register(struct notifier_block *nb)
  72. {
  73. return -ENODEV;
  74. }
  75. static inline void *audio_pdr_service_register(int domain_id,
  76. struct notifier_block *nb,
  77. int *curr_state)
  78. {
  79. return NULL;
  80. }
  81. static inline int audio_pdr_service_deregister(void *service_handle,
  82. struct notifier_block *nb)
  83. {
  84. return 0;
  85. }
  86. #endif /* CONFIG_MSM_QDSP6_PDR */
  87. #endif