msm_mdf.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright (c) 2018, 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. #ifndef _LINUX_MSM_MDF_H
  14. #define _LINUX_MSM_MDF_H
  15. #ifdef CONFIG_MSM_MDF
  16. /**
  17. * msm_mdf_mem_init - allocate and map memory to ADSP be shared
  18. * across multiple remote DSPs.
  19. */
  20. int msm_mdf_mem_init(void);
  21. /**
  22. * msm_mdf_mem_init - unmap and free memory to ADSP.
  23. */
  24. int msm_mdf_mem_deinit(void);
  25. #else
  26. static inline int msm_mdf_mem_init(void)
  27. {
  28. return 0;
  29. }
  30. static inline int msm_mdf_mem_deinit(void)
  31. {
  32. return 0;
  33. }
  34. #endif /* CONFIG_MSM_MDF */
  35. #endif /* _LINUX_MSM_MDF_H */