msm_cvp_buf.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2020-2021, 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. SMEM_CAMERA = 0x40
  33. };
  34. struct msm_cvp_list {
  35. struct list_head list;
  36. struct mutex lock;
  37. };
  38. static inline void INIT_MSM_CVP_LIST(struct msm_cvp_list *mlist)
  39. {
  40. mutex_init(&mlist->lock);
  41. INIT_LIST_HEAD(&mlist->list);
  42. }
  43. static inline void DEINIT_MSM_CVP_LIST(struct msm_cvp_list *mlist)
  44. {
  45. mutex_destroy(&mlist->lock);
  46. }
  47. struct cvp_dma_mapping_info {
  48. struct device *dev;
  49. struct iommu_domain *domain;
  50. struct sg_table *table;
  51. struct dma_buf_attachment *attach;
  52. struct dma_buf *buf;
  53. void *cb_info;
  54. };
  55. struct msm_cvp_smem {
  56. struct list_head list;
  57. atomic_t refcount;
  58. struct dma_buf *dma_buf;
  59. void *kvaddr;
  60. u32 device_addr;
  61. dma_addr_t dma_handle;
  62. u32 size;
  63. u32 bitmap_index;
  64. u32 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. DSP,
  101. MAX_OWNER
  102. };
  103. struct cvp_internal_buf {
  104. struct list_head list;
  105. s32 fd;
  106. u32 size;
  107. u32 offset;
  108. u32 type;
  109. u32 index;
  110. u64 ktid;
  111. enum buffer_owner ownership;
  112. struct msm_cvp_smem *smem;
  113. };
  114. struct msm_cvp_frame {
  115. struct list_head list;
  116. struct cvp_internal_buf bufs[MAX_FRAME_BUFFER_NUMS];
  117. u32 nr;
  118. u64 ktid;
  119. u32 pkt_type;
  120. };
  121. void print_cvp_buffer(u32 tag, const char *str,
  122. struct msm_cvp_inst *inst,
  123. struct cvp_internal_buf *cbuf);
  124. void print_cvp_buffer(u32 tag, const char *str,
  125. struct msm_cvp_inst *inst,
  126. struct cvp_internal_buf *cbuf);
  127. void print_client_buffer(u32 tag, const char *str,
  128. struct msm_cvp_inst *inst,
  129. struct eva_kmd_buffer *cbuf);
  130. void print_smem(u32 tag, const char *str,
  131. struct msm_cvp_inst *inst,
  132. struct msm_cvp_smem *smem);
  133. /*Kernel DMA buffer and IOMMU mapping functions*/
  134. int msm_cvp_smem_alloc(size_t size, u32 align, int map_kernel,
  135. void *res, struct msm_cvp_smem *smem);
  136. int msm_cvp_smem_free(struct msm_cvp_smem *smem);
  137. struct context_bank_info *msm_cvp_smem_get_context_bank(
  138. struct msm_cvp_platform_resources *res,
  139. unsigned int flags);
  140. int msm_cvp_map_smem(struct msm_cvp_inst *inst,
  141. struct msm_cvp_smem *smem,
  142. const char *str);
  143. int msm_cvp_unmap_smem(struct msm_cvp_inst *inst,
  144. struct msm_cvp_smem *smem,
  145. const char *str);
  146. struct dma_buf *msm_cvp_smem_get_dma_buf(int fd);
  147. void msm_cvp_smem_put_dma_buf(void *dma_buf);
  148. int msm_cvp_smem_cache_operations(struct dma_buf *dbuf,
  149. enum smem_cache_ops cache_op,
  150. unsigned long offset,
  151. unsigned long size);
  152. int msm_cvp_map_ipcc_regs(u32 *iova);
  153. /* CVP driver internal buffer management functions*/
  154. struct cvp_internal_buf *cvp_allocate_arp_bufs(struct msm_cvp_inst *inst,
  155. u32 buffer_size);
  156. int cvp_release_arp_buffers(struct msm_cvp_inst *inst);
  157. int msm_cvp_map_buf_dsp(struct msm_cvp_inst *inst,
  158. struct eva_kmd_buffer *buf);
  159. int msm_cvp_unmap_buf_dsp(struct msm_cvp_inst *inst,
  160. struct eva_kmd_buffer *buf);
  161. int msm_cvp_map_buf_dsp_new(struct msm_cvp_inst *inst,
  162. struct eva_kmd_buffer *buf,
  163. int32_t pid,
  164. uint32_t *iova);
  165. int msm_cvp_unmap_buf_dsp_new(struct msm_cvp_inst *inst,
  166. struct eva_kmd_buffer *buf);
  167. void msm_cvp_cache_operations(struct msm_cvp_smem *smem,
  168. u32 type, u32 offset, u32 size);
  169. u32 msm_cvp_map_frame_buf(struct msm_cvp_inst *inst,
  170. struct cvp_buf_type *buf,
  171. struct msm_cvp_frame *frame);
  172. int msm_cvp_mark_user_persist(struct msm_cvp_inst *inst,
  173. struct eva_kmd_hfi_packet *in_pkt,
  174. unsigned int offset, unsigned int buf_num);
  175. int msm_cvp_map_user_persist(struct msm_cvp_inst *inst,
  176. struct eva_kmd_hfi_packet *in_pkt,
  177. unsigned int offset, unsigned int buf_num);
  178. int msm_cvp_unmap_user_persist(struct msm_cvp_inst *inst,
  179. struct eva_kmd_hfi_packet *in_pkt,
  180. unsigned int offset, unsigned int buf_num);
  181. int msm_cvp_map_frame(struct msm_cvp_inst *inst,
  182. struct eva_kmd_hfi_packet *in_pkt,
  183. unsigned int offset, unsigned int buf_num);
  184. void msm_cvp_unmap_frame(struct msm_cvp_inst *inst, u64 ktid);
  185. int msm_cvp_session_deinit_buffers(struct msm_cvp_inst *inst);
  186. void msm_cvp_print_inst_bufs(struct msm_cvp_inst *inst);
  187. int cvp_allocate_dsp_bufs(struct msm_cvp_inst *inst,
  188. struct cvp_internal_buf *buf,
  189. u32 buffer_size,
  190. u32 secure_type);
  191. int cvp_release_dsp_buffers(struct msm_cvp_inst *inst,
  192. struct cvp_internal_buf *buf);
  193. #endif