msm_mmu.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (C) 2013 Red Hat
  3. * Author: Rob Clark <robdclark@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published by
  7. * the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef __MSM_MMU_H__
  18. #define __MSM_MMU_H__
  19. #include <linux/iommu.h>
  20. struct msm_mmu_funcs {
  21. int (*attach)(struct msm_mmu *mmu, const char **names, int cnt);
  22. int (*map)(struct msm_mmu *mmu, uint32_t iova, struct sg_table *sgt,
  23. unsigned len, int prot);
  24. int (*unmap)(struct msm_mmu *mmu, uint32_t iova, struct sg_table *sgt,
  25. unsigned len);
  26. void (*destroy)(struct msm_mmu *mmu);
  27. };
  28. struct msm_mmu {
  29. const struct msm_mmu_funcs *funcs;
  30. struct drm_device *dev;
  31. };
  32. static inline void msm_mmu_init(struct msm_mmu *mmu, struct drm_device *dev,
  33. const struct msm_mmu_funcs *funcs)
  34. {
  35. mmu->dev = dev;
  36. mmu->funcs = funcs;
  37. }
  38. struct msm_mmu *msm_iommu_new(struct drm_device *dev, struct iommu_domain *domain);
  39. struct msm_mmu *msm_gpummu_new(struct drm_device *dev, struct msm_gpu *gpu);
  40. #endif /* __MSM_MMU_H__ */