mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 08:17:46 +00:00
drm/radeon/ttm: move to driver binding/destroy functions. (v2)
Do agp decision in the driver, instead of special binding funcs v2: use container_of, drop some {}. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200907204630.1406528-6-airlied@gmail.com
This commit is contained in:
parent
738edc0adb
commit
a68bb1938b
7 changed files with 80 additions and 33 deletions
|
@ -2815,10 +2815,11 @@ extern void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enabl
|
|||
extern void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable);
|
||||
extern void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain);
|
||||
extern bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo);
|
||||
extern int radeon_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
|
||||
extern int radeon_ttm_tt_set_userptr(struct radeon_device *rdev,
|
||||
struct ttm_tt *ttm, uint64_t addr,
|
||||
uint32_t flags);
|
||||
extern bool radeon_ttm_tt_has_userptr(struct ttm_tt *ttm);
|
||||
extern bool radeon_ttm_tt_is_readonly(struct ttm_tt *ttm);
|
||||
extern bool radeon_ttm_tt_has_userptr(struct radeon_device *rdev, struct ttm_tt *ttm);
|
||||
extern bool radeon_ttm_tt_is_readonly(struct radeon_device *rdev, struct ttm_tt *ttm);
|
||||
extern void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base);
|
||||
extern void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc);
|
||||
extern int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
|
||||
|
|
|
@ -160,7 +160,7 @@ static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
|
|||
p->relocs[i].allowed_domains = domain;
|
||||
}
|
||||
|
||||
if (radeon_ttm_tt_has_userptr(p->relocs[i].robj->tbo.ttm)) {
|
||||
if (radeon_ttm_tt_has_userptr(p->rdev, p->relocs[i].robj->tbo.ttm)) {
|
||||
uint32_t domain = p->relocs[i].preferred_domains;
|
||||
if (!(domain & RADEON_GEM_DOMAIN_GTT)) {
|
||||
DRM_ERROR("Only RADEON_GEM_DOMAIN_GTT is "
|
||||
|
|
|
@ -331,7 +331,7 @@ int radeon_gem_userptr_ioctl(struct drm_device *dev, void *data,
|
|||
goto handle_lockup;
|
||||
|
||||
bo = gem_to_radeon_bo(gobj);
|
||||
r = radeon_ttm_tt_set_userptr(bo->tbo.ttm, args->addr, args->flags);
|
||||
r = radeon_ttm_tt_set_userptr(rdev, bo->tbo.ttm, args->addr, args->flags);
|
||||
if (r)
|
||||
goto release_object;
|
||||
|
||||
|
@ -420,7 +420,7 @@ int radeon_mode_dumb_mmap(struct drm_file *filp,
|
|||
return -ENOENT;
|
||||
}
|
||||
robj = gem_to_radeon_bo(gobj);
|
||||
if (radeon_ttm_tt_has_userptr(robj->tbo.ttm)) {
|
||||
if (radeon_ttm_tt_has_userptr(robj->rdev, robj->tbo.ttm)) {
|
||||
drm_gem_object_put(gobj);
|
||||
return -EPERM;
|
||||
}
|
||||
|
@ -721,7 +721,7 @@ int radeon_gem_op_ioctl(struct drm_device *dev, void *data,
|
|||
robj = gem_to_radeon_bo(gobj);
|
||||
|
||||
r = -EPERM;
|
||||
if (radeon_ttm_tt_has_userptr(robj->tbo.ttm))
|
||||
if (radeon_ttm_tt_has_userptr(robj->rdev, robj->tbo.ttm))
|
||||
goto out;
|
||||
|
||||
r = radeon_bo_reserve(robj, false);
|
||||
|
|
|
@ -331,7 +331,7 @@ int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset,
|
|||
struct ttm_operation_ctx ctx = { false, false };
|
||||
int r, i;
|
||||
|
||||
if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
|
||||
if (radeon_ttm_tt_has_userptr(bo->rdev, bo->tbo.ttm))
|
||||
return -EPERM;
|
||||
|
||||
if (bo->pin_count) {
|
||||
|
|
|
@ -121,7 +121,7 @@ struct dma_buf *radeon_gem_prime_export(struct drm_gem_object *gobj,
|
|||
int flags)
|
||||
{
|
||||
struct radeon_bo *bo = gem_to_radeon_bo(gobj);
|
||||
if (radeon_ttm_tt_has_userptr(bo->tbo.ttm))
|
||||
if (radeon_ttm_tt_has_userptr(bo->rdev, bo->tbo.ttm))
|
||||
return ERR_PTR(-EPERM);
|
||||
return drm_gem_prime_export(gobj, flags);
|
||||
}
|
||||
|
|
|
@ -141,8 +141,9 @@ static void radeon_evict_flags(struct ttm_buffer_object *bo,
|
|||
static int radeon_verify_access(struct ttm_buffer_object *bo, struct file *filp)
|
||||
{
|
||||
struct radeon_bo *rbo = container_of(bo, struct radeon_bo, tbo);
|
||||
struct radeon_device *rdev = radeon_get_rdev(bo->bdev);
|
||||
|
||||
if (radeon_ttm_tt_has_userptr(bo->ttm))
|
||||
if (radeon_ttm_tt_has_userptr(rdev, bo->ttm))
|
||||
return -EPERM;
|
||||
return drm_vma_node_verify_access(&rbo->tbo.base.vma_node,
|
||||
filp->private_data);
|
||||
|
@ -559,12 +560,6 @@ static void radeon_ttm_backend_destroy(struct ttm_bo_device *bdev, struct ttm_tt
|
|||
kfree(gtt);
|
||||
}
|
||||
|
||||
static struct ttm_backend_func radeon_backend_func = {
|
||||
.bind = &radeon_ttm_backend_bind,
|
||||
.unbind = &radeon_ttm_backend_unbind,
|
||||
.destroy = &radeon_ttm_backend_destroy,
|
||||
};
|
||||
|
||||
static struct ttm_tt *radeon_ttm_tt_create(struct ttm_buffer_object *bo,
|
||||
uint32_t page_flags)
|
||||
{
|
||||
|
@ -583,7 +578,6 @@ static struct ttm_tt *radeon_ttm_tt_create(struct ttm_buffer_object *bo,
|
|||
if (gtt == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
gtt->ttm.ttm.func = &radeon_backend_func;
|
||||
if (ttm_dma_tt_init(>t->ttm, bo, page_flags)) {
|
||||
kfree(gtt);
|
||||
return NULL;
|
||||
|
@ -591,19 +585,25 @@ static struct ttm_tt *radeon_ttm_tt_create(struct ttm_buffer_object *bo,
|
|||
return >t->ttm.ttm;
|
||||
}
|
||||
|
||||
static struct radeon_ttm_tt *radeon_ttm_tt_to_gtt(struct ttm_tt *ttm)
|
||||
static struct radeon_ttm_tt *radeon_ttm_tt_to_gtt(struct radeon_device *rdev,
|
||||
struct ttm_tt *ttm)
|
||||
{
|
||||
if (!ttm || ttm->func != &radeon_backend_func)
|
||||
#if IS_ENABLED(CONFIG_AGP)
|
||||
if (rdev->flags & RADEON_IS_AGP)
|
||||
return NULL;
|
||||
return (struct radeon_ttm_tt *)ttm;
|
||||
#endif
|
||||
|
||||
if (!ttm)
|
||||
return NULL;
|
||||
return container_of(ttm, struct radeon_ttm_tt, ttm.ttm);
|
||||
}
|
||||
|
||||
static int radeon_ttm_tt_populate(struct ttm_bo_device *bdev,
|
||||
struct ttm_tt *ttm,
|
||||
struct ttm_operation_ctx *ctx)
|
||||
{
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
|
||||
struct radeon_device *rdev;
|
||||
struct radeon_device *rdev = radeon_get_rdev(bdev);
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(rdev, ttm);
|
||||
bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
|
||||
|
||||
if (gtt && gtt->userptr) {
|
||||
|
@ -623,7 +623,6 @@ static int radeon_ttm_tt_populate(struct ttm_bo_device *bdev,
|
|||
return 0;
|
||||
}
|
||||
|
||||
rdev = radeon_get_rdev(bdev);
|
||||
#if IS_ENABLED(CONFIG_AGP)
|
||||
if (rdev->flags & RADEON_IS_AGP) {
|
||||
return ttm_agp_tt_populate(bdev, ttm, ctx);
|
||||
|
@ -641,8 +640,8 @@ static int radeon_ttm_tt_populate(struct ttm_bo_device *bdev,
|
|||
|
||||
static void radeon_ttm_tt_unpopulate(struct ttm_bo_device *bdev, struct ttm_tt *ttm)
|
||||
{
|
||||
struct radeon_device *rdev;
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
|
||||
struct radeon_device *rdev = radeon_get_rdev(bdev);
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(rdev, ttm);
|
||||
bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
|
||||
|
||||
if (gtt && gtt->userptr) {
|
||||
|
@ -654,7 +653,6 @@ static void radeon_ttm_tt_unpopulate(struct ttm_bo_device *bdev, struct ttm_tt *
|
|||
if (slave)
|
||||
return;
|
||||
|
||||
rdev = radeon_get_rdev(bdev);
|
||||
#if IS_ENABLED(CONFIG_AGP)
|
||||
if (rdev->flags & RADEON_IS_AGP) {
|
||||
ttm_agp_tt_unpopulate(bdev, ttm);
|
||||
|
@ -672,10 +670,11 @@ static void radeon_ttm_tt_unpopulate(struct ttm_bo_device *bdev, struct ttm_tt *
|
|||
ttm_unmap_and_unpopulate_pages(rdev->dev, >t->ttm);
|
||||
}
|
||||
|
||||
int radeon_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
|
||||
int radeon_ttm_tt_set_userptr(struct radeon_device *rdev,
|
||||
struct ttm_tt *ttm, uint64_t addr,
|
||||
uint32_t flags)
|
||||
{
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(rdev, ttm);
|
||||
|
||||
if (gtt == NULL)
|
||||
return -EINVAL;
|
||||
|
@ -686,9 +685,52 @@ int radeon_ttm_tt_set_userptr(struct ttm_tt *ttm, uint64_t addr,
|
|||
return 0;
|
||||
}
|
||||
|
||||
bool radeon_ttm_tt_has_userptr(struct ttm_tt *ttm)
|
||||
static int radeon_ttm_tt_bind(struct ttm_bo_device *bdev,
|
||||
struct ttm_tt *ttm,
|
||||
struct ttm_resource *bo_mem)
|
||||
{
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
|
||||
struct radeon_device *rdev = radeon_get_rdev(bdev);
|
||||
|
||||
#if IS_ENABLED(CONFIG_AGP)
|
||||
if (rdev->flags & RADEON_IS_AGP)
|
||||
return ttm_agp_bind(bdev, ttm, bo_mem);
|
||||
#endif
|
||||
|
||||
return radeon_ttm_backend_bind(bdev, ttm, bo_mem);
|
||||
}
|
||||
|
||||
static void radeon_ttm_tt_unbind(struct ttm_bo_device *bdev,
|
||||
struct ttm_tt *ttm)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_AGP)
|
||||
struct radeon_device *rdev = radeon_get_rdev(bdev);
|
||||
|
||||
if (rdev->flags & RADEON_IS_AGP) {
|
||||
ttm_agp_unbind(bdev, ttm);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
radeon_ttm_backend_unbind(bdev, ttm);
|
||||
}
|
||||
|
||||
static void radeon_ttm_tt_destroy(struct ttm_bo_device *bdev,
|
||||
struct ttm_tt *ttm)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_AGP)
|
||||
struct radeon_device *rdev = radeon_get_rdev(bdev);
|
||||
|
||||
if (rdev->flags & RADEON_IS_AGP) {
|
||||
ttm_agp_destroy(bdev, ttm);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
radeon_ttm_backend_destroy(bdev, ttm);
|
||||
}
|
||||
|
||||
bool radeon_ttm_tt_has_userptr(struct radeon_device *rdev,
|
||||
struct ttm_tt *ttm)
|
||||
{
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(rdev, ttm);
|
||||
|
||||
if (gtt == NULL)
|
||||
return false;
|
||||
|
@ -696,9 +738,10 @@ bool radeon_ttm_tt_has_userptr(struct ttm_tt *ttm)
|
|||
return !!gtt->userptr;
|
||||
}
|
||||
|
||||
bool radeon_ttm_tt_is_readonly(struct ttm_tt *ttm)
|
||||
bool radeon_ttm_tt_is_readonly(struct radeon_device *rdev,
|
||||
struct ttm_tt *ttm)
|
||||
{
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(ttm);
|
||||
struct radeon_ttm_tt *gtt = radeon_ttm_tt_to_gtt(rdev, ttm);
|
||||
|
||||
if (gtt == NULL)
|
||||
return false;
|
||||
|
@ -710,6 +753,9 @@ static struct ttm_bo_driver radeon_bo_driver = {
|
|||
.ttm_tt_create = &radeon_ttm_tt_create,
|
||||
.ttm_tt_populate = &radeon_ttm_tt_populate,
|
||||
.ttm_tt_unpopulate = &radeon_ttm_tt_unpopulate,
|
||||
.ttm_tt_bind = &radeon_ttm_tt_bind,
|
||||
.ttm_tt_unbind = &radeon_ttm_tt_unbind,
|
||||
.ttm_tt_destroy = &radeon_ttm_tt_destroy,
|
||||
.eviction_valuable = ttm_bo_eviction_valuable,
|
||||
.evict_flags = &radeon_evict_flags,
|
||||
.move = &radeon_bo_move,
|
||||
|
|
|
@ -942,7 +942,7 @@ int radeon_vm_bo_update(struct radeon_device *rdev,
|
|||
bo_va->flags &= ~RADEON_VM_PAGE_VALID;
|
||||
bo_va->flags &= ~RADEON_VM_PAGE_SYSTEM;
|
||||
bo_va->flags &= ~RADEON_VM_PAGE_SNOOPED;
|
||||
if (bo_va->bo && radeon_ttm_tt_is_readonly(bo_va->bo->tbo.ttm))
|
||||
if (bo_va->bo && radeon_ttm_tt_is_readonly(rdev, bo_va->bo->tbo.ttm))
|
||||
bo_va->flags &= ~RADEON_VM_PAGE_WRITEABLE;
|
||||
|
||||
if (mem) {
|
||||
|
|
Loading…
Add table
Reference in a new issue