apr_v2.c 1.7 KB

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