apr_v3.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 2013-2016, 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. #define DEST_ID APR_DEST_MODEM
  21. enum apr_subsys_state apr_get_subsys_state(void)
  22. {
  23. return apr_get_modem_state();
  24. }
  25. void apr_set_subsys_state(void)
  26. {
  27. apr_set_modem_state(APR_SUBSYS_DOWN);
  28. }
  29. uint16_t apr_get_data_src(struct apr_hdr *hdr)
  30. {
  31. return DEST_ID;
  32. }
  33. int apr_get_dest_id(char *dest)
  34. {
  35. return DEST_ID;
  36. }
  37. void subsys_notif_register(char *client_name, int domain,
  38. struct notifier_block *nb)
  39. {
  40. int ret;
  41. if (domain != AUDIO_NOTIFIER_MODEM_DOMAIN) {
  42. pr_debug("%s: Unused domain %d not registering with notifier\n",
  43. __func__, domain);
  44. return;
  45. }
  46. ret = audio_notifier_register(client_name, domain, nb);
  47. if (ret < 0)
  48. pr_err("%s: Audio notifier register failed for domain %d ret = %d\n",
  49. __func__, domain, ret);
  50. }
  51. uint16_t apr_get_reset_domain(uint16_t proc)
  52. {
  53. return APR_DEST_QDSP6;
  54. }