]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/lima: allocate unique id per drm_file
authorErico Nunes <nunes.erico@gmail.com>
Sun, 12 Mar 2023 23:30:51 +0000 (00:30 +0100)
committerQiang Yu <yuq825@gmail.com>
Sun, 2 Apr 2023 10:18:37 +0000 (18:18 +0800)
To track if fds are pointing to the same execution context and export
the expected information to fdinfo, similar to what is done in other
drivers.

Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
Signed-off-by: Qiang Yu <yuq825@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230312233052.21095-3-nunes.erico@gmail.com
drivers/gpu/drm/lima/lima_device.h
drivers/gpu/drm/lima/lima_drv.c
drivers/gpu/drm/lima/lima_drv.h

index 41b9d7b4bcc7a0128adda97379b6048735310096..71b2db60d161402eb30135d866fdf1d9e2c3c1b6 100644 (file)
@@ -106,6 +106,9 @@ struct lima_device {
        struct lima_dump_head dump;
        struct list_head error_task_list;
        struct mutex error_task_list_lock;
+
+       struct xarray active_contexts;
+       u32 next_context_id;
 };
 
 static inline struct lima_device *
index 39cab4a55f5728d2f8991bce764afed4b6c844d7..f456a471216b1e4ec1e314c5c8fe3fb7f0eac5bd 100644 (file)
@@ -218,6 +218,11 @@ static int lima_drm_driver_open(struct drm_device *dev, struct drm_file *file)
        if (!priv)
                return -ENOMEM;
 
+       err = xa_alloc_cyclic(&ldev->active_contexts, &priv->id, priv,
+                             xa_limit_32b, &ldev->next_context_id, GFP_KERNEL);
+       if (err < 0)
+               goto err_out0;
+
        priv->vm = lima_vm_create(ldev);
        if (!priv->vm) {
                err = -ENOMEM;
@@ -237,6 +242,9 @@ err_out0:
 static void lima_drm_driver_postclose(struct drm_device *dev, struct drm_file *file)
 {
        struct lima_drm_priv *priv = file->driver_priv;
+       struct lima_device *ldev = to_lima_dev(dev);
+
+       xa_erase(&ldev->active_contexts, priv->id);
 
        lima_ctx_mgr_fini(&priv->ctx_mgr);
        lima_vm_put(priv->vm);
@@ -388,6 +396,8 @@ static int lima_pdev_probe(struct platform_device *pdev)
        ldev->dev = &pdev->dev;
        ldev->id = (enum lima_gpu_id)of_device_get_match_data(&pdev->dev);
 
+       xa_init_flags(&ldev->active_contexts, XA_FLAGS_ALLOC);
+
        platform_set_drvdata(pdev, ldev);
 
        /* Allocate and initialize the DRM device. */
@@ -446,6 +456,8 @@ static int lima_pdev_remove(struct platform_device *pdev)
        struct lima_device *ldev = platform_get_drvdata(pdev);
        struct drm_device *ddev = ldev->ddev;
 
+       xa_destroy(&ldev->active_contexts);
+
        sysfs_remove_bin_file(&ldev->dev->kobj, &lima_error_state_attr);
 
        drm_dev_unregister(ddev);
index c738d288547b508ec29574be738a72c452c87796..e49b7ab651d0c5fe5f949492ecd51501a512d58c 100644 (file)
@@ -20,6 +20,7 @@ struct lima_sched_task;
 struct drm_lima_gem_submit_bo;
 
 struct lima_drm_priv {
+       int id;
        struct lima_vm *vm;
        struct lima_ctx_mgr ctx_mgr;
 };