mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
gpu: host1x: Handle CDMA wraparound when debug printing
During channel debug information dump, when printing CDMA opcodes, the circular nature of the CDMA pushbuffer wasn't being taken into account, sometimes accessing past the end. Change the printing to take this into account. Bug 4398831 Bug 4386806 Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com> Change-Id: I3a24da2c310e9414882f7cabbbda5158b6da00a2 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3033461 (cherry picked from commit 58568987a6e9733e3113b927c6fce454778b3a4d) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3155731 GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Tested-by: Johnny Liu <johnliu@nvidia.com> Reviewed-by: Johnny Liu <johnliu@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
928bbd8792
commit
490c984662
@@ -177,7 +177,14 @@ static void show_gather(struct output *o, dma_addr_t phys_addr,
|
||||
|
||||
for (i = 0; i < words; i++) {
|
||||
dma_addr_t addr = phys_addr + i * 4;
|
||||
u32 val = *(map_addr + offset / 4 + i);
|
||||
u32 voffset = offset + i * 4;
|
||||
u32 val;
|
||||
|
||||
/* If we reach the RESTART opcode, continue at the beginning of pushbuffer */
|
||||
if (cdma && voffset >= cdma->push_buffer.size)
|
||||
voffset -= cdma->push_buffer.size;
|
||||
|
||||
val = *(map_addr + voffset / 4);
|
||||
|
||||
if (!data_count) {
|
||||
host1x_debug_output(o, " %pad: %08x: ", &addr, val);
|
||||
@@ -203,7 +210,7 @@ static void show_channel_gathers(struct output *o, struct host1x_cdma *cdma)
|
||||
job->num_slots, job->num_unpins);
|
||||
|
||||
show_gather(o, pb->dma + job->first_get, job->num_slots * 2, cdma,
|
||||
pb->dma + job->first_get, pb->mapped + job->first_get);
|
||||
pb->dma, pb->mapped);
|
||||
|
||||
for (i = 0; i < job->num_cmds; i++) {
|
||||
struct host1x_job_gather *g;
|
||||
@@ -227,7 +234,7 @@ static void show_channel_gathers(struct output *o, struct host1x_cdma *cdma)
|
||||
host1x_debug_output(o, " GATHER at %pad+%#x, %d words\n",
|
||||
&g->base, g->offset, g->words);
|
||||
|
||||
show_gather(o, g->base + g->offset, g->words, cdma,
|
||||
show_gather(o, g->base + g->offset, g->words, NULL,
|
||||
g->base, mapped);
|
||||
|
||||
if (!job->gather_copy_mapped)
|
||||
|
||||
Reference in New Issue
Block a user