msm_mdf.h 621 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _LINUX_MSM_MDF_H
  6. #define _LINUX_MSM_MDF_H
  7. #ifdef CONFIG_MSM_MDF
  8. /**
  9. * msm_mdf_mem_init - allocate and map memory to ADSP be shared
  10. * across multiple remote DSPs.
  11. */
  12. int msm_mdf_mem_init(void);
  13. /**
  14. * msm_mdf_mem_init - unmap and free memory to ADSP.
  15. */
  16. int msm_mdf_mem_deinit(void);
  17. #else
  18. static inline int msm_mdf_mem_init(void)
  19. {
  20. return 0;
  21. }
  22. static inline int msm_mdf_mem_deinit(void)
  23. {
  24. return 0;
  25. }
  26. #endif /* CONFIG_MSM_MDF */
  27. #endif /* _LINUX_MSM_MDF_H */