msm_cvp_buf.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _MSM_CVP_BUF_H_
  6. #define _MSM_CVP_BUF_H_
  7. #include <linux/poll.h>
  8. #include <linux/types.h>
  9. #include <linux/dma-buf.h>
  10. #include <linux/dma-heap.h>
  11. #include <linux/ion.h>
  12. #include <linux/msm_ion.h>
  13. #include <linux/refcount.h>
  14. #include <media/msm_eva_private.h>
  15. #define MAX_FRAME_BUFFER_NUMS 48
  16. #define MAX_DMABUF_NUMS 64
  17. struct msm_cvp_inst;
  18. struct msm_cvp_platform_resources;
  19. struct msm_cvp_list;
  20. enum smem_cache_ops {
  21. SMEM_CACHE_CLEAN,
  22. SMEM_CACHE_INVALIDATE,
  23. SMEM_CACHE_CLEAN_INVALIDATE,
  24. };
  25. enum smem_prop {
  26. SMEM_UNCACHED = 0x1,
  27. SMEM_CACHED = 0x2,
  28. SMEM_SECURE = 0x4,
  29. SMEM_ADSP = 0x8,
  30. SMEM_NON_PIXEL = 0x10
  31. };
  32. struct msm_cvp_list {
  33. struct list_head list;
  34. struct mutex lock;
  35. };
  36. static inline void INIT_MSM_CVP_LIST(struct msm_cvp_list *mlist)
  37. {
  38. mutex_init(&mlist->lock);
  39. INIT_LIST_HEAD(&mlist->list);
  40. }
  41. static inline void DEINIT_MSM_CVP_LIST(struct msm_cvp_list *mlist)
  42. {
  43. mutex_destroy(&mlist->lock);
  44. }
  45. struct cvp_dma_mapping_info {
  46. struct device *dev;
  47. struct iommu_domain *domain;
  48. struct sg_table *table;
  49. struct dma_buf_attachment *attach;
  50. struct dma_buf *buf;
  51. void *cb_info;
  52. };
  53. struct msm_cvp_smem {
  54. struct list_head list;
  55. atomic_t refcount;
  56. struct dma_buf *dma_buf;
  57. void *kvaddr;
  58. u32 device_addr;
  59. dma_addr_t dma_handle;
  60. u32 size;
  61. u32 bitmap_index;
  62. u32 flags;
  63. u32 ion_flags;
  64. struct cvp_dma_mapping_info mapping_info;
  65. };
  66. struct cvp_dmamap_cache {
  67. unsigned long usage_bitmap;
  68. struct mutex lock;
  69. struct msm_cvp_smem *entries[MAX_DMABUF_NUMS];
  70. unsigned int nr;
  71. };
  72. static inline void INIT_DMAMAP_CACHE(struct cvp_dmamap_cache *cache)
  73. {
  74. mutex_init(&cache->lock);
  75. cache->usage_bitmap = 0;
  76. cache->nr = 0;
  77. }
  78. static inline void DEINIT_DMAMAP_CACHE(struct cvp_dmamap_cache *cache)
  79. {
  80. mutex_destroy(&cache->lock);
  81. }
  82. struct cvp_buf_type {
  83. s32 fd;
  84. u32 size;
  85. u32 offset;
  86. u32 flags;
  87. union {
  88. struct dma_buf *dbuf;
  89. struct {
  90. u32 reserved1;
  91. u32 reserved2;
  92. };
  93. };
  94. };
  95. enum buffer_owner {
  96. DRIVER,
  97. FIRMWARE,
  98. CLIENT,
  99. MAX_OWNER
  100. };
  101. struct cvp_internal_buf {
  102. struct list_head list;
  103. s32 fd;
  104. u32 size;
  105. u32 offset;
  106. u32 type;
  107. u32 index;
  108. u64 ktid;
  109. enum buffer_owner ownership;
  110. struct msm_cvp_smem *smem;
  111. };
  112. struct msm_cvp_frame {
  113. struct list_head list;
  114. struct cvp_internal_buf bufs[MAX_FRAME_BUFFER_NUMS];
  115. u32 nr;
  116. u64 ktid;
  117. u32 pkt_type;
  118. };
  119. void print_cvp_buffer(u32 tag, const char *str,
  120. struct msm_cvp_inst *inst,
  121. struct cvp_internal_buf *cbuf);
  122. void print_cvp_buffer(u32 tag, const char *str,
  123. struct msm_cvp_inst *inst,
  124. struct cvp_internal_buf *cbuf);
  125. void print_client_buffer(u32 tag, const char *str,
  126. struct msm_cvp_inst *inst,
  127. struct eva_kmd_buffer *cbuf);
  128. void print_smem(u32 tag, const char *str,
  129. struct msm_cvp_inst *inst,
  130. struct msm_cvp_smem *smem);
  131. /*Kernel DMA buffer and IOMMU mapping functions*/
  132. int msm_cvp_smem_alloc(size_t size, u32 align, u32 flags, int map_kernel,
  133. void *res, struct msm_cvp_smem *smem);
  134. int msm_cvp_smem_free(struct msm_cvp_smem *smem);
  135. struct context_bank_info *msm_cvp_smem_get_context_bank(bool is_secure,
  136. struct msm_cvp_platform_resources *res,
  137. unsigned long ion_flags);
  138. int msm_cvp_map_smem(struct msm_cvp_inst *inst,
  139. struct msm_cvp_smem *smem,
  140. const char *str);
  141. int msm_cvp_unmap_smem(struct msm_cvp_inst *inst,
  142. struct msm_cvp_smem *smem,
  143. const char *str);
  144. struct dma_buf *msm_cvp_smem_get_dma_buf(int fd);
  145. void msm_cvp_smem_put_dma_buf(void *dma_buf);
  146. int msm_cvp_smem_cache_operations(struct dma_buf *dbuf,
  147. enum smem_cache_ops cache_op,
  148. unsigned long offset,
  149. unsigned long size);
  150. int msm_cvp_map_ipcc_regs(u32 *iova);
  151. /* CVP driver internal buffer management functions*/
  152. struct cvp_internal_buf *cvp_allocate_arp_bufs(struct msm_cvp_inst *inst,
  153. u32 buffer_size);
  154. int cvp_release_arp_buffers(struct msm_cvp_inst *inst);
  155. int msm_cvp_map_buf_dsp(struct msm_cvp_inst *inst,
  156. struct eva_kmd_buffer *buf);
  157. int msm_cvp_unmap_buf_dsp(struct msm_cvp_inst *inst,
  158. struct eva_kmd_buffer *buf);
  159. void msm_cvp_cache_operations(struct msm_cvp_smem *smem,
  160. u32 type, u32 offset, u32 size);
  161. u32 msm_cvp_map_frame_buf(struct msm_cvp_inst *inst,
  162. struct cvp_buf_type *buf,
  163. struct msm_cvp_frame *frame);
  164. int msm_cvp_mark_user_persist(struct msm_cvp_inst *inst,
  165. struct eva_kmd_hfi_packet *in_pkt,
  166. unsigned int offset, unsigned int buf_num);
  167. int msm_cvp_map_user_persist(struct msm_cvp_inst *inst,
  168. struct eva_kmd_hfi_packet *in_pkt,
  169. unsigned int offset, unsigned int buf_num);
  170. int msm_cvp_unmap_user_persist(struct msm_cvp_inst *inst,
  171. struct eva_kmd_hfi_packet *in_pkt,
  172. unsigned int offset, unsigned int buf_num);
  173. int msm_cvp_map_frame(struct msm_cvp_inst *inst,
  174. struct eva_kmd_hfi_packet *in_pkt,
  175. unsigned int offset, unsigned int buf_num);
  176. void msm_cvp_unmap_frame(struct msm_cvp_inst *inst, u64 ktid);
  177. int msm_cvp_session_deinit_buffers(struct msm_cvp_inst *inst);
  178. void msm_cvp_print_inst_bufs(struct msm_cvp_inst *inst);
  179. #endif