]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/nouveau: always map device
authorBen Skeggs <bskeggs@nvidia.com>
Fri, 26 Jul 2024 04:38:15 +0000 (14:38 +1000)
committerDanilo Krummrich <dakr@kernel.org>
Sat, 27 Jul 2024 01:05:35 +0000 (03:05 +0200)
The next commit removes the nvif rd/wr methods from nvif_device, which
were probably a bad idea, and mostly intended as a fallback if ioremap()
failed (or wasn't available, as was the case in some tools I once used).

The nv04 KMS driver already mapped the device, because it's mostly been
kept alive on life-support for many years and still directly bashes PRI
a lot for modesetting.

Post-nv50, I tried pretty hard to keep PRI accesses out of the DRM code,
but there's still a few random places where we do, and those were using
the rd/wr paths prior to this commit.

This allocates and maps a new nvif_device (which will replace the usage
of nouveau_drm.master.device later on), and replicates this pointer to
all other possible users.

This will be cleaned up by the end of another patch series, after it's
been made safe to do so.

Signed-off-by: Ben Skeggs <bskeggs@nvidia.com>
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240726043828.58966-25-bskeggs@nvidia.com
drivers/gpu/drm/nouveau/dispnv04/disp.c
drivers/gpu/drm/nouveau/include/nvif/device.h
drivers/gpu/drm/nouveau/nouveau_drm.c
drivers/gpu/drm/nouveau/nouveau_drv.h
drivers/gpu/drm/nouveau/nvif/device.c

index 13705c5f1497329a03d754ab9bfaacb6209de4b2..e8b27bb135e7272d3922814d952444946df5103a 100644 (file)
@@ -189,7 +189,6 @@ static void
 nv04_display_destroy(struct drm_device *dev)
 {
        struct nv04_display *disp = nv04_display(dev);
-       struct nouveau_drm *drm = nouveau_drm(dev);
        struct nouveau_encoder *encoder;
        struct nouveau_crtc *nv_crtc;
 
@@ -206,8 +205,6 @@ nv04_display_destroy(struct drm_device *dev)
 
        nouveau_display(dev)->priv = NULL;
        vfree(disp);
-
-       nvif_object_unmap(&drm->client.device.object);
 }
 
 int
@@ -229,8 +226,6 @@ nv04_display_create(struct drm_device *dev)
 
        disp->drm = drm;
 
-       nvif_object_map(&drm->client.device.object, NULL, 0);
-
        nouveau_display(dev)->priv = disp;
        nouveau_display(dev)->dtor = nv04_display_destroy;
        nouveau_display(dev)->init = nv04_display_init;
index f7c1b3a43c842212cf03f471aa04697d06d76e75..fec76f4733a4fe5d16172d0106154ffb04062393 100644 (file)
@@ -20,6 +20,7 @@ struct nvif_device {
 
 int  nvif_device_ctor(struct nvif_client *, const char *name, struct nvif_device *);
 void nvif_device_dtor(struct nvif_device *);
+int  nvif_device_map(struct nvif_device *);
 u64  nvif_device_time(struct nvif_device *);
 
 /*XXX*/
index 22cdd987dd2fe680c38839e50938db5151f5de0c..316f7877047db74757c63b6fe13734153f77c10e 100644 (file)
@@ -206,6 +206,7 @@ nouveau_cli_fini(struct nouveau_cli *cli)
        nouveau_vmm_fini(&cli->svm);
        nouveau_vmm_fini(&cli->vmm);
        nvif_mmu_dtor(&cli->mmu);
+       cli->device.object.map.ptr = NULL;
        nvif_device_dtor(&cli->device);
        if (cli != &cli->drm->master) {
                mutex_lock(&cli->drm->master.lock);
@@ -267,6 +268,8 @@ nouveau_cli_init(struct nouveau_drm *drm, const char *sname,
                goto done;
        }
 
+       cli->device.object.map.ptr = drm->device.object.map.ptr;
+
        ret = nvif_mclass(&cli->device.object, mmus);
        if (ret < 0) {
                NV_PRINTK(err, cli, "No supported MMU class\n");
@@ -715,6 +718,7 @@ nouveau_drm_device_del(struct nouveau_drm *drm)
        if (drm->dev)
                drm_dev_put(drm->dev);
 
+       nvif_device_dtor(&drm->device);
        nvif_client_dtor(&drm->master.base);
        nvif_parent_dtor(&drm->parent);
 
@@ -751,6 +755,18 @@ nouveau_drm_device_new(const struct drm_driver *drm_driver, struct device *paren
        if (ret)
                goto done;
 
+       ret = nvif_device_ctor(&drm->master.base, "drmDevice", &drm->device);
+       if (ret) {
+               NV_ERROR(drm, "Device allocation failed: %d\n", ret);
+               goto done;
+       }
+
+       ret = nvif_device_map(&drm->device);
+       if (ret) {
+               NV_ERROR(drm, "Failed to map PRI: %d\n", ret);
+               goto done;
+       }
+
 done:
        if (ret) {
                nouveau_drm_device_del(drm);
index e7d072a9a47777ea84bd76d7eb75446b6fe2d72f..80ffe15ba76b379257f59ec402edea314f211f96 100644 (file)
@@ -203,6 +203,8 @@ u_memcpya(uint64_t user, unsigned int nmemb, unsigned int size)
 struct nouveau_drm {
        struct nvkm_device *nvkm;
        struct nvif_parent parent;
+       struct nvif_device device;
+
        struct nouveau_cli master;
        struct nouveau_cli client;
        struct drm_device *dev;
index b14bccb9a93f8efe8423afc4903f33e10c462210..24880931039f64c91034b95b3900696ec51cc5f2 100644 (file)
@@ -38,6 +38,12 @@ nvif_device_time(struct nvif_device *device)
        return device->user.func->time(&device->user);
 }
 
+int
+nvif_device_map(struct nvif_device *device)
+{
+       return nvif_object_map(&device->object, NULL, 0);
+}
+
 void
 nvif_device_dtor(struct nvif_device *device)
 {