drm/msm: always dump buffer base/size
authorRob Clark <robdclark@chromium.org>
Mon, 7 Oct 2019 20:31:08 +0000 (13:31 -0700)
committerRob Clark <robdclark@chromium.org>
Sat, 2 Nov 2019 16:43:24 +0000 (09:43 -0700)
Even if we are not dumping the buffer's contents, it is useful to log
their base address and size.  This makes it easier to see when different
gpu pointers point to a single buffer, for example higher mipmap levels
of a single texture.

Signed-off-by: Rob Clark <robdclark@chromium.org>
drivers/gpu/drm/msm/msm_rd.c

index 39a5832..af7ceb2 100644 (file)
@@ -298,7 +298,7 @@ void msm_rd_debugfs_cleanup(struct msm_drm_private *priv)
 
 static void snapshot_buf(struct msm_rd_state *rd,
                struct msm_gem_submit *submit, int idx,
-               uint64_t iova, uint32_t size)
+               uint64_t iova, uint32_t size, bool full)
 {
        struct msm_gem_object *obj = submit->bos[idx].obj;
        unsigned offset = 0;
@@ -318,6 +318,9 @@ static void snapshot_buf(struct msm_rd_state *rd,
        rd_write_section(rd, RD_GPUADDR,
                        (uint32_t[3]){ iova, size, iova >> 32 }, 12);
 
+       if (!full)
+               return;
+
        /* But only dump the contents of buffers marked READ */
        if (!(submit->bos[idx].flags & MSM_SUBMIT_BO_READ))
                return;
@@ -381,8 +384,7 @@ void msm_rd_dump_submit(struct msm_rd_state *rd, struct msm_gem_submit *submit,
        rd_write_section(rd, RD_CMD, msg, ALIGN(n, 4));
 
        for (i = 0; i < submit->nr_bos; i++)
-               if (should_dump(submit, i))
-                       snapshot_buf(rd, submit, i, 0, 0);
+               snapshot_buf(rd, submit, i, 0, 0, should_dump(submit, i));
 
        for (i = 0; i < submit->nr_cmds; i++) {
                uint32_t szd  = submit->cmd[i].size; /* in dwords */
@@ -390,7 +392,7 @@ void msm_rd_dump_submit(struct msm_rd_state *rd, struct msm_gem_submit *submit,
                /* snapshot cmdstream bo's (if we haven't already): */
                if (!should_dump(submit, i)) {
                        snapshot_buf(rd, submit, submit->cmd[i].idx,
-                                       submit->cmd[i].iova, szd * 4);
+                                       submit->cmd[i].iova, szd * 4, true);
                }
        }