msm_cvp_buf.h 4.9 KB

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