msm_cvp_buf.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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 30
  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. SMEM_PIXEL = 0x20
  32. };
  33. struct msm_cvp_list {
  34. struct list_head list;
  35. struct mutex lock;
  36. };
  37. static inline void INIT_MSM_CVP_LIST(struct msm_cvp_list *mlist)
  38. {
  39. mutex_init(&mlist->lock);
  40. INIT_LIST_HEAD(&mlist->list);
  41. }
  42. static inline void DEINIT_MSM_CVP_LIST(struct msm_cvp_list *mlist)
  43. {
  44. mutex_destroy(&mlist->lock);
  45. }
  46. struct cvp_dma_mapping_info {
  47. struct device *dev;
  48. struct iommu_domain *domain;
  49. struct sg_table *table;
  50. struct dma_buf_attachment *attach;
  51. struct dma_buf *buf;
  52. void *cb_info;
  53. };
  54. struct msm_cvp_smem {
  55. struct list_head list;
  56. atomic_t refcount;
  57. struct dma_buf *dma_buf;
  58. void *kvaddr;
  59. u32 device_addr;
  60. dma_addr_t dma_handle;
  61. u32 size;
  62. u32 bitmap_index;
  63. u32 flags;
  64. u32 ion_flags;
  65. struct cvp_dma_mapping_info mapping_info;
  66. };
  67. struct cvp_dmamap_cache {
  68. unsigned long usage_bitmap;
  69. struct mutex lock;
  70. struct msm_cvp_smem *entries[MAX_DMABUF_NUMS];
  71. unsigned int nr;
  72. };
  73. static inline void INIT_DMAMAP_CACHE(struct cvp_dmamap_cache *cache)
  74. {
  75. mutex_init(&cache->lock);
  76. cache->usage_bitmap = 0;
  77. cache->nr = 0;
  78. }
  79. static inline void DEINIT_DMAMAP_CACHE(struct cvp_dmamap_cache *cache)
  80. {
  81. mutex_destroy(&cache->lock);
  82. }
  83. struct cvp_buf_type {
  84. s32 fd;
  85. u32 size;
  86. u32 offset;
  87. u32 flags;
  88. union {
  89. struct dma_buf *dbuf;
  90. struct {
  91. u32 reserved1;
  92. u32 reserved2;
  93. };
  94. };
  95. };
  96. enum buffer_owner {
  97. DRIVER,
  98. FIRMWARE,
  99. CLIENT,
  100. MAX_OWNER
  101. };
  102. struct cvp_internal_buf {
  103. struct list_head list;
  104. s32 fd;
  105. u32 size;
  106. u32 offset;
  107. u32 type;
  108. u32 index;
  109. u64 ktid;
  110. enum buffer_owner ownership;
  111. struct msm_cvp_smem *smem;
  112. };
  113. struct msm_cvp_frame {
  114. struct list_head list;
  115. struct cvp_internal_buf bufs[MAX_FRAME_BUFFER_NUMS];
  116. u32 nr;
  117. u64 ktid;
  118. u32 pkt_type;
  119. };
  120. void print_cvp_buffer(u32 tag, const char *str,
  121. struct msm_cvp_inst *inst,
  122. struct cvp_internal_buf *cbuf);
  123. void print_cvp_buffer(u32 tag, const char *str,
  124. struct msm_cvp_inst *inst,
  125. struct cvp_internal_buf *cbuf);
  126. void print_client_buffer(u32 tag, const char *str,
  127. struct msm_cvp_inst *inst,
  128. struct eva_kmd_buffer *cbuf);
  129. void print_smem(u32 tag, const char *str,
  130. struct msm_cvp_inst *inst,
  131. struct msm_cvp_smem *smem);
  132. /*Kernel DMA buffer and IOMMU mapping functions*/
  133. int msm_cvp_smem_alloc(size_t size, u32 align, u32 flags, int map_kernel,
  134. void *res, struct msm_cvp_smem *smem);
  135. int msm_cvp_smem_free(struct msm_cvp_smem *smem);
  136. struct context_bank_info *msm_cvp_smem_get_context_bank(bool is_secure,
  137. struct msm_cvp_platform_resources *res,
  138. unsigned long ion_flags);
  139. int msm_cvp_map_smem(struct msm_cvp_inst *inst,
  140. struct msm_cvp_smem *smem,
  141. const char *str);
  142. int msm_cvp_unmap_smem(struct msm_cvp_inst *inst,
  143. struct msm_cvp_smem *smem,
  144. const char *str);
  145. struct dma_buf *msm_cvp_smem_get_dma_buf(int fd);
  146. void msm_cvp_smem_put_dma_buf(void *dma_buf);
  147. int msm_cvp_smem_cache_operations(struct dma_buf *dbuf,
  148. enum smem_cache_ops cache_op,
  149. unsigned long offset,
  150. unsigned long size);
  151. int msm_cvp_map_ipcc_regs(u32 *iova);
  152. /* CVP driver internal buffer management functions*/
  153. struct cvp_internal_buf *cvp_allocate_arp_bufs(struct msm_cvp_inst *inst,
  154. u32 buffer_size);
  155. int cvp_release_arp_buffers(struct msm_cvp_inst *inst);
  156. int msm_cvp_map_buf_dsp(struct msm_cvp_inst *inst,
  157. struct eva_kmd_buffer *buf);
  158. int msm_cvp_unmap_buf_dsp(struct msm_cvp_inst *inst,
  159. struct eva_kmd_buffer *buf);
  160. int msm_cvp_map_buf_dsp_new(struct msm_cvp_inst *inst,
  161. struct eva_kmd_buffer *buf,
  162. int32_t pid,
  163. uint32_t *iova);
  164. int msm_cvp_unmap_buf_dsp_new(struct msm_cvp_inst *inst,
  165. struct eva_kmd_buffer *buf);
  166. void msm_cvp_cache_operations(struct msm_cvp_smem *smem,
  167. u32 type, u32 offset, u32 size);
  168. u32 msm_cvp_map_frame_buf(struct msm_cvp_inst *inst,
  169. struct cvp_buf_type *buf,
  170. struct msm_cvp_frame *frame);
  171. int msm_cvp_mark_user_persist(struct msm_cvp_inst *inst,
  172. struct eva_kmd_hfi_packet *in_pkt,
  173. unsigned int offset, unsigned int buf_num);
  174. int msm_cvp_map_user_persist(struct msm_cvp_inst *inst,
  175. struct eva_kmd_hfi_packet *in_pkt,
  176. unsigned int offset, unsigned int buf_num);
  177. int msm_cvp_unmap_user_persist(struct msm_cvp_inst *inst,
  178. struct eva_kmd_hfi_packet *in_pkt,
  179. unsigned int offset, unsigned int buf_num);
  180. int msm_cvp_map_frame(struct msm_cvp_inst *inst,
  181. struct eva_kmd_hfi_packet *in_pkt,
  182. unsigned int offset, unsigned int buf_num);
  183. void msm_cvp_unmap_frame(struct msm_cvp_inst *inst, u64 ktid);
  184. int msm_cvp_session_deinit_buffers(struct msm_cvp_inst *inst);
  185. void msm_cvp_print_inst_bufs(struct msm_cvp_inst *inst);
  186. int cvp_allocate_dsp_bufs(struct msm_cvp_inst *inst,
  187. struct cvp_internal_buf *buf,
  188. u32 buffer_size,
  189. u32 secure_type);
  190. int cvp_release_dsp_buffers(struct msm_cvp_inst *inst,
  191. struct cvp_internal_buf *buf);
  192. #endif