apr_v2.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (c) 2012-2017 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/types.h>
  14. #include <linux/uaccess.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/kernel.h>
  17. #include <dsp/audio_notifier.h>
  18. #include <ipc/apr.h>
  19. #include <ipc/apr_tal.h>
  20. /**
  21. * apr_get_subsys_state - get Q6 subsys status
  22. *
  23. * Returns apr_subsys_state
  24. */
  25. enum apr_subsys_state apr_get_subsys_state(void)
  26. {
  27. return apr_get_q6_state();
  28. }
  29. EXPORT_SYMBOL(apr_get_subsys_state);
  30. void apr_set_subsys_state(void)
  31. {
  32. apr_set_q6_state(APR_SUBSYS_DOWN);
  33. apr_set_modem_state(APR_SUBSYS_UP);
  34. }
  35. uint16_t apr_get_data_src(struct apr_hdr *hdr)
  36. {
  37. if (hdr->src_domain == APR_DOMAIN_MODEM)
  38. return APR_DEST_MODEM;
  39. else if (hdr->src_domain == APR_DOMAIN_ADSP)
  40. return APR_DEST_QDSP6;
  41. pr_err("APR: Pkt from wrong source: %d\n", hdr->src_domain);
  42. return APR_DEST_MAX; /*RETURN INVALID VALUE*/
  43. }
  44. int apr_get_dest_id(char *dest)
  45. {
  46. if (!strcmp(dest, "ADSP"))
  47. return APR_DEST_QDSP6;
  48. else
  49. return APR_DEST_MODEM;
  50. }
  51. void subsys_notif_register(char *client_name, int domain,
  52. struct notifier_block *nb)
  53. {
  54. int ret;
  55. ret = audio_notifier_register(client_name, domain, nb);
  56. if (ret < 0)
  57. pr_err("%s: Audio notifier register failed for domain %d ret = %d\n",
  58. __func__, domain, ret);
  59. }
  60. void subsys_notif_deregister(char *client_name)
  61. {
  62. int ret;
  63. ret = audio_notifier_deregister(client_name);
  64. if (ret < 0)
  65. pr_err("%s: Audio notifier de-register failed for client %s\n",
  66. __func__, client_name);
  67. }
  68. uint16_t apr_get_reset_domain(uint16_t proc)
  69. {
  70. return proc;
  71. }