1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NOUVEAU_BO_H__
3 #define __NOUVEAU_BO_H__
5 #include <drm/drm_gem.h>
7 struct nouveau_channel
;
12 struct ttm_buffer_object bo
;
13 struct ttm_placement placement
;
15 struct ttm_place placements
[3];
16 struct ttm_place busy_placements
[3];
18 struct ttm_bo_kmap_obj kmap
;
19 struct list_head head
;
21 /* protected by ttm_bo_reserve() */
22 struct drm_file
*reserved_by
;
23 struct list_head entry
;
27 struct list_head vma_list
;
36 struct nouveau_drm_tile
*tile
;
38 /* protect by the ttm reservation lock */
41 struct ttm_bo_kmap_obj dma_buf_vmap
;
44 static inline struct nouveau_bo
*
45 nouveau_bo(struct ttm_buffer_object
*bo
)
47 return container_of(bo
, struct nouveau_bo
, bo
);
51 nouveau_bo_ref(struct nouveau_bo
*ref
, struct nouveau_bo
**pnvbo
)
53 struct nouveau_bo
*prev
;
61 *pnvbo
= nouveau_bo(&ref
->bo
);
66 ttm_bo_put(&prev
->bo
);
71 extern struct ttm_bo_driver nouveau_bo_driver
;
73 void nouveau_bo_move_init(struct nouveau_drm
*);
74 struct nouveau_bo
*nouveau_bo_alloc(struct nouveau_cli
*, u64
*size
, int *align
,
75 u32 flags
, u32 tile_mode
, u32 tile_flags
);
76 int nouveau_bo_init(struct nouveau_bo
*, u64 size
, int align
, u32 flags
,
77 struct sg_table
*sg
, struct dma_resv
*robj
);
78 int nouveau_bo_new(struct nouveau_cli
*, u64 size
, int align
, u32 flags
,
79 u32 tile_mode
, u32 tile_flags
, struct sg_table
*sg
,
80 struct dma_resv
*robj
,
81 struct nouveau_bo
**);
82 int nouveau_bo_pin(struct nouveau_bo
*, u32 flags
, bool contig
);
83 int nouveau_bo_unpin(struct nouveau_bo
*);
84 int nouveau_bo_map(struct nouveau_bo
*);
85 void nouveau_bo_unmap(struct nouveau_bo
*);
86 void nouveau_bo_placement_set(struct nouveau_bo
*, u32 type
, u32 busy
);
87 void nouveau_bo_wr16(struct nouveau_bo
*, unsigned index
, u16 val
);
88 u32
nouveau_bo_rd32(struct nouveau_bo
*, unsigned index
);
89 void nouveau_bo_wr32(struct nouveau_bo
*, unsigned index
, u32 val
);
90 void nouveau_bo_fence(struct nouveau_bo
*, struct nouveau_fence
*, bool exclusive
);
91 int nouveau_bo_validate(struct nouveau_bo
*, bool interruptible
,
93 void nouveau_bo_sync_for_device(struct nouveau_bo
*nvbo
);
94 void nouveau_bo_sync_for_cpu(struct nouveau_bo
*nvbo
);
96 /* TODO: submit equivalent to TTM generic API upstream? */
97 static inline void __iomem
*
98 nvbo_kmap_obj_iovirtual(struct nouveau_bo
*nvbo
)
101 void __iomem
*ioptr
= (void __force __iomem
*)ttm_kmap_obj_virtual(
102 &nvbo
->kmap
, &is_iomem
);
103 WARN_ON_ONCE(ioptr
&& !is_iomem
);
108 nouveau_bo_unmap_unpin_unref(struct nouveau_bo
**pnvbo
)
111 nouveau_bo_unmap(*pnvbo
);
112 nouveau_bo_unpin(*pnvbo
);
113 nouveau_bo_ref(NULL
, pnvbo
);
118 nouveau_bo_new_pin_map(struct nouveau_cli
*cli
, u64 size
, int align
, u32 flags
,
119 struct nouveau_bo
**pnvbo
)
121 int ret
= nouveau_bo_new(cli
, size
, align
, flags
,
122 0, 0, NULL
, NULL
, pnvbo
);
124 ret
= nouveau_bo_pin(*pnvbo
, flags
, true);
126 ret
= nouveau_bo_map(*pnvbo
);
129 nouveau_bo_unpin(*pnvbo
);
131 nouveau_bo_ref(NULL
, pnvbo
);