Lines Matching refs:bo
320 struct ttm_buffer_object bo; member
330 ast_bo(struct ttm_buffer_object *bo) in ast_bo() argument
332 return container_of(bo, struct ast_bo, bo); in ast_bo()
363 int ast_bo_pin(struct ast_bo *bo, u32 pl_flag, u64 *gpu_addr);
364 int ast_bo_unpin(struct ast_bo *bo);
366 static inline int ast_bo_reserve(struct ast_bo *bo, bool no_wait) in ast_bo_reserve() argument
370 ret = ttm_bo_reserve(&bo->bo, true, no_wait, false, NULL); in ast_bo_reserve()
373 DRM_ERROR("reserve failed %p\n", bo); in ast_bo_reserve()
379 static inline void ast_bo_unreserve(struct ast_bo *bo) in ast_bo_unreserve() argument
381 ttm_bo_unreserve(&bo->bo); in ast_bo_unreserve()
384 void ast_ttm_placement(struct ast_bo *bo, int domain);
385 int ast_bo_push_sysram(struct ast_bo *bo);