audio_notifier.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Copyright (c) 2016, 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_NOTIFIER_H_
  14. #define __AUDIO_NOTIFIER_H_
  15. /* State of the notifier domain */
  16. enum {
  17. AUDIO_NOTIFIER_SERVICE_DOWN,
  18. AUDIO_NOTIFIER_SERVICE_UP
  19. };
  20. /* Service order determines connection priority
  21. * Highest number connected first
  22. */
  23. enum {
  24. AUDIO_NOTIFIER_SSR_SERVICE,
  25. AUDIO_NOTIFIER_PDR_SERVICE,
  26. AUDIO_NOTIFIER_MAX_SERVICES
  27. };
  28. enum {
  29. AUDIO_NOTIFIER_ADSP_DOMAIN,
  30. AUDIO_NOTIFIER_MODEM_DOMAIN,
  31. AUDIO_NOTIFIER_MAX_DOMAINS
  32. };
  33. /* Structure populated in void *data of nb function
  34. * callback used for audio_notifier_register
  35. */
  36. struct audio_notifier_cb_data {
  37. int service;
  38. int domain;
  39. };
  40. #ifdef CONFIG_MSM_QDSP6_NOTIFIER
  41. /*
  42. * Use audio_notifier_register to register any audio
  43. * clients who need to be notified of a remote process.
  44. * This API will determine and register the client with
  45. * the best available subsystem (SSR or PDR) for that
  46. * domain (Adsp or Modem). When an event is sent from that
  47. * domain the notifier block callback function will be called.
  48. *
  49. * client_name - A unique user name defined by the client.
  50. * If the same name is used for multiple calls each will
  51. * be tracked & called back separately and a single call
  52. * to deregister will delete them all.
  53. * domain - Domain the client wants to get events from.
  54. * AUDIO_NOTIFIER_ADSP_DOMAIN
  55. * AUDIO_NOTIFIER_MODEM_DOMAIN
  56. * *nb - Pointer to a notifier block. Provide a callback function
  57. * to be notified of an even on that domain.
  58. *
  59. * nb_func(struct notifier_block *this, unsigned long opcode, void *data)
  60. * this - pointer to own nb
  61. * opcode - event from registered domain
  62. * AUDIO_NOTIFIER_SERVICE_DOWN
  63. * AUDIO_NOTIFIER_SERVICE_UP
  64. * *data - pointer to struct audio_notifier_cb_data
  65. *
  66. * Returns: Success: 0
  67. * Error: -#
  68. */
  69. int audio_notifier_register(char *client_name, int domain,
  70. struct notifier_block *nb);
  71. /*
  72. * Use audio_notifier_deregister to deregister the clients from
  73. * all domains registered using audio_notifier_register that
  74. * match the client name.
  75. *
  76. * client_name - Unique user name used in audio_notifier_register.
  77. * Returns: Success: 0
  78. * Error: -#
  79. */
  80. int audio_notifier_deregister(char *client_name);
  81. #else
  82. static inline int audio_notifier_register(char *client_name, int domain,
  83. struct notifier_block *nb)
  84. {
  85. return -ENODEV;
  86. }
  87. static inline int audio_notifier_deregister(char *client_name)
  88. {
  89. return 0;
  90. }
  91. #endif /* CONFIG_MSM_QDSP6_PDR */
  92. #endif