apr_v2.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. enum apr_subsys_state apr_get_subsys_state(void)
  21. {
  22. return apr_get_q6_state();
  23. }
  24. void apr_set_subsys_state(void)
  25. {
  26. apr_set_q6_state(APR_SUBSYS_DOWN);
  27. apr_set_modem_state(APR_SUBSYS_UP);
  28. }
  29. uint16_t apr_get_data_src(struct apr_hdr *hdr)
  30. {
  31. if (hdr->src_domain == APR_DOMAIN_MODEM)
  32. return APR_DEST_MODEM;
  33. else if (hdr->src_domain == APR_DOMAIN_ADSP)
  34. return APR_DEST_QDSP6;
  35. pr_err("APR: Pkt from wrong source: %d\n", hdr->src_domain);
  36. return APR_DEST_MAX; /*RETURN INVALID VALUE*/
  37. }
  38. int apr_get_dest_id(char *dest)
  39. {
  40. if (!strcmp(dest, "ADSP"))
  41. return APR_DEST_QDSP6;
  42. else
  43. return APR_DEST_MODEM;
  44. }
  45. void subsys_notif_register(char *client_name, int domain,
  46. struct notifier_block *nb)
  47. {
  48. int ret;
  49. ret = audio_notifier_register(client_name, domain, nb);
  50. if (ret < 0)
  51. pr_err("%s: Audio notifier register failed for domain %d ret = %d\n",
  52. __func__, domain, ret);
  53. }
  54. uint16_t apr_get_reset_domain(uint16_t proc)
  55. {
  56. return proc;
  57. }