mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 13:06:59 +02:00
drm/nouveau: get vmm via nouveau_cli_vmm()
Provide a getter function for the client's current vmm context. Since we'll add a new (u)vmm context for UMD bindings in subsequent commits, this will keep the code clean. Reviewed-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Danilo Krummrich <dakr@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230804182406.5222-5-dakr@redhat.com
This commit is contained in:
parent
e02238990b
commit
7b05a7c0c9
|
|
@ -204,7 +204,7 @@ nouveau_bo_alloc(struct nouveau_cli *cli, u64 *size, int *align, u32 domain,
|
|||
struct nouveau_drm *drm = cli->drm;
|
||||
struct nouveau_bo *nvbo;
|
||||
struct nvif_mmu *mmu = &cli->mmu;
|
||||
struct nvif_vmm *vmm = cli->svm.cli ? &cli->svm.vmm : &cli->vmm.vmm;
|
||||
struct nvif_vmm *vmm = &nouveau_cli_vmm(cli)->vmm;
|
||||
int i, pi = -1;
|
||||
|
||||
if (!*size) {
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ nouveau_channel_prep(struct nouveau_drm *drm, struct nvif_device *device,
|
|||
|
||||
chan->device = device;
|
||||
chan->drm = drm;
|
||||
chan->vmm = cli->svm.cli ? &cli->svm : &cli->vmm;
|
||||
chan->vmm = nouveau_cli_vmm(cli);
|
||||
atomic_set(&chan->killed, 0);
|
||||
|
||||
/* allocate memory for dma push buffer */
|
||||
|
|
|
|||
|
|
@ -112,6 +112,15 @@ struct nouveau_cli_work {
|
|||
struct dma_fence_cb cb;
|
||||
};
|
||||
|
||||
static inline struct nouveau_vmm *
|
||||
nouveau_cli_vmm(struct nouveau_cli *cli)
|
||||
{
|
||||
if (cli->svm.cli)
|
||||
return &cli->svm;
|
||||
|
||||
return &cli->vmm;
|
||||
}
|
||||
|
||||
void nouveau_cli_work_queue(struct nouveau_cli *, struct dma_fence *,
|
||||
struct nouveau_cli_work *);
|
||||
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ nouveau_gem_object_open(struct drm_gem_object *gem, struct drm_file *file_priv)
|
|||
struct nouveau_bo *nvbo = nouveau_gem_object(gem);
|
||||
struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
|
||||
struct device *dev = drm->dev->dev;
|
||||
struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : &cli->vmm;
|
||||
struct nouveau_vmm *vmm = nouveau_cli_vmm(cli);
|
||||
struct nouveau_vma *vma;
|
||||
int ret;
|
||||
|
||||
|
|
@ -180,7 +180,7 @@ nouveau_gem_object_close(struct drm_gem_object *gem, struct drm_file *file_priv)
|
|||
struct nouveau_bo *nvbo = nouveau_gem_object(gem);
|
||||
struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
|
||||
struct device *dev = drm->dev->dev;
|
||||
struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : & cli->vmm;
|
||||
struct nouveau_vmm *vmm = nouveau_cli_vmm(cli);
|
||||
struct nouveau_vma *vma;
|
||||
int ret;
|
||||
|
||||
|
|
@ -269,7 +269,7 @@ nouveau_gem_info(struct drm_file *file_priv, struct drm_gem_object *gem,
|
|||
{
|
||||
struct nouveau_cli *cli = nouveau_cli(file_priv);
|
||||
struct nouveau_bo *nvbo = nouveau_gem_object(gem);
|
||||
struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : &cli->vmm;
|
||||
struct nouveau_vmm *vmm = nouveau_cli_vmm(cli);
|
||||
struct nouveau_vma *vma;
|
||||
|
||||
if (is_power_of_2(nvbo->valid_domains))
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user