1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2020-2023 Intel Corporation
8 #include <drm/drm_gem.h>
9 #include <drm/drm_mm.h>
13 struct ivpu_file_priv;
16 struct drm_gem_object base;
17 const struct ivpu_bo_ops *ops;
19 struct ivpu_mmu_context *ctx;
20 struct list_head ctx_node;
21 struct drm_mm_node mm_node;
23 struct mutex lock; /* Protects: pages, sgt, mmu_mapped */
37 IVPU_BO_TYPE_SHMEM = 1,
38 IVPU_BO_TYPE_INTERNAL,
43 enum ivpu_bo_type type;
45 int (*alloc_pages)(struct ivpu_bo *bo);
46 void (*free_pages)(struct ivpu_bo *bo);
47 int (*map_pages)(struct ivpu_bo *bo);
48 void (*unmap_pages)(struct ivpu_bo *bo);
51 int ivpu_bo_pin(struct ivpu_bo *bo);
52 void ivpu_bo_remove_all_bos_from_context(struct ivpu_mmu_context *ctx);
53 void ivpu_bo_list(struct drm_device *dev, struct drm_printer *p);
54 void ivpu_bo_list_print(struct drm_device *dev);
57 ivpu_bo_alloc_internal(struct ivpu_device *vdev, u64 vpu_addr, u64 size, u32 flags);
58 void ivpu_bo_free_internal(struct ivpu_bo *bo);
59 struct drm_gem_object *ivpu_gem_prime_import(struct drm_device *dev, struct dma_buf *dma_buf);
60 void ivpu_bo_unmap_sgt_and_remove_from_context(struct ivpu_bo *bo);
62 int ivpu_bo_create_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
63 int ivpu_bo_info_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
64 int ivpu_bo_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
66 static inline struct ivpu_bo *to_ivpu_bo(struct drm_gem_object *obj)
68 return container_of(obj, struct ivpu_bo, base);
71 static inline struct page *ivpu_bo_get_page(struct ivpu_bo *bo, u64 offset)
73 if (offset > bo->base.size || !bo->pages)
76 return bo->pages[offset / PAGE_SIZE];
79 static inline u32 ivpu_bo_cache_mode(struct ivpu_bo *bo)
81 return bo->flags & DRM_IVPU_BO_CACHE_MASK;
84 static inline bool ivpu_bo_is_snooped(struct ivpu_bo *bo)
86 return ivpu_bo_cache_mode(bo) == DRM_IVPU_BO_CACHED;
89 static inline pgprot_t ivpu_bo_pgprot(struct ivpu_bo *bo, pgprot_t prot)
91 if (bo->flags & DRM_IVPU_BO_WC)
92 return pgprot_writecombine(prot);
94 if (bo->flags & DRM_IVPU_BO_UNCACHED)
95 return pgprot_noncached(prot);
100 static inline struct ivpu_device *ivpu_bo_to_vdev(struct ivpu_bo *bo)
102 return to_ivpu_device(bo->base.dev);
105 static inline void *ivpu_to_cpu_addr(struct ivpu_bo *bo, u32 vpu_addr)
107 if (vpu_addr < bo->vpu_addr)
110 if (vpu_addr >= (bo->vpu_addr + bo->base.size))
113 return bo->kvaddr + (vpu_addr - bo->vpu_addr);
116 static inline u32 cpu_to_vpu_addr(struct ivpu_bo *bo, void *cpu_addr)
118 if (cpu_addr < bo->kvaddr)
121 if (cpu_addr >= (bo->kvaddr + bo->base.size))
124 return bo->vpu_addr + (cpu_addr - bo->kvaddr);
127 #endif /* __IVPU_GEM_H__ */