]> git.baikalelectronics.ru Git - kernel.git/commitdiff
drm/msm: Docs and misc cleanup
authorRob Clark <robdclark@chromium.org>
Wed, 28 Jul 2021 01:06:06 +0000 (18:06 -0700)
committerRob Clark <robdclark@chromium.org>
Wed, 28 Jul 2021 01:09:17 +0000 (18:09 -0700)
Fix a couple incorrect or misspelt comments, and add submitqueue doc
comment.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Acked-by: Christian König <christian.koenig@amd.com>
Link: https://lore.kernel.org/r/20210728010632.2633470-2-robdclark@gmail.com
Signed-off-by: Rob Clark <robdclark@chromium.org>
drivers/gpu/drm/msm/msm_gem.h
drivers/gpu/drm/msm/msm_gem_submit.c
drivers/gpu/drm/msm/msm_gpu.h
drivers/gpu/drm/msm/msm_ringbuffer.c
drivers/gpu/drm/msm/msm_submitqueue.c

index 405f8411e3957e25b2b5c2638994f6aee671844e..d69fcb37ce178821732658ed77bdd299fb5f6ecb 100644 (file)
@@ -313,8 +313,7 @@ void msm_gem_vunmap(struct drm_gem_object *obj);
 
 /* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
  * associated with the cmdstream submission for synchronization (and
- * make it easier to unwind when things go wrong, etc).  This only
- * lasts for the duration of the submit-ioctl.
+ * make it easier to unwind when things go wrong, etc).
  */
 struct msm_gem_submit {
        struct kref ref;
index 44f84bfd0c0e7d77364539321244257f1bceef52..6d46f9275a40ef0f58fe479f1de784c3421ef9ae 100644 (file)
@@ -655,6 +655,7 @@ int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
        bool has_ww_ticket = false;
        unsigned i;
        int ret, submitid;
+
        if (!gpu)
                return -ENXIO;
 
index 710c3fedfbf378a4fd2f79d32beb48363903556d..96efcb31e5021f435e0bad6b65b98e6b772f3e61 100644 (file)
@@ -250,6 +250,21 @@ struct msm_gpu_perfcntr {
        const char *name;
 };
 
+/**
+ * A submitqueue is associated with a gl context or vk queue (or equiv)
+ * in userspace.
+ *
+ * @id:        userspace id for the submitqueue, unique within the drm_file
+ * @flags:     userspace flags for the submitqueue, specified at creation
+ *             (currently unusued)
+ * @prio:      the submitqueue priority
+ * @faults:    the number of GPU hangs associated with this submitqueue
+ * @ctx:       the per-drm_file context associated with the submitqueue (ie.
+ *             which set of pgtables do submits jobs associated with the
+ *             submitqueue use)
+ * @node:      node in the context's list of submitqueues
+ * @ref:       reference count
+ */
 struct msm_gpu_submitqueue {
        int id;
        u32 flags;
index 7e92d953245417d0a181fc6c0600f7fa108a8cb9..054461662af5ae628fbd4e1c0b00b39d7347dcdd 100644 (file)
@@ -32,7 +32,7 @@ struct msm_ringbuffer *msm_ringbuffer_new(struct msm_gpu *gpu, int id,
 
        if (IS_ERR(ring->start)) {
                ret = PTR_ERR(ring->start);
-               ring->start = 0;
+               ring->start = NULL;
                goto fail;
        }
 
index c3d206105d285a838ed2096092e2d5454f37f323..e5eef11ed0149a5f25e40622e374cb7b223ae5c1 100644 (file)
@@ -98,17 +98,18 @@ int msm_submitqueue_create(struct drm_device *drm, struct msm_file_private *ctx,
        return 0;
 }
 
+/*
+ * Create the default submit-queue (id==0), used for backwards compatibility
+ * for userspace that pre-dates the introduction of submitqueues.
+ */
 int msm_submitqueue_init(struct drm_device *drm, struct msm_file_private *ctx)
 {
        struct msm_drm_private *priv = drm->dev_private;
        int default_prio;
 
-       if (!ctx)
-               return 0;
-
        /*
         * Select priority 2 as the "default priority" unless nr_rings is less
-        * than 2 and then pick the lowest pirority
+        * than 2 and then pick the lowest priority
         */
        default_prio = priv->gpu ?
                clamp_t(uint32_t, 2, 0, priv->gpu->nr_rings - 1) : 0;