mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
Open source GPL/LGPL release
This commit is contained in:
163
drivers/gpu/nvgpu/common/pmu/pmu_debug.c
Normal file
163
drivers/gpu/nvgpu/common/pmu/pmu_debug.c
Normal file
@@ -0,0 +1,163 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <nvgpu/pmu.h>
|
||||
#include <nvgpu/gk20a.h>
|
||||
#include <nvgpu/pmu/fw.h>
|
||||
#include <nvgpu/dma.h>
|
||||
#include <nvgpu/pmu/pmu_pg.h>
|
||||
#include <nvgpu/pmu/debug.h>
|
||||
#include <nvgpu/string.h>
|
||||
|
||||
bool nvgpu_find_hex_in_string(char *strings, struct gk20a *g, u32 *hex_pos)
|
||||
{
|
||||
u32 i = 0, j = (u32)strlen(strings);
|
||||
|
||||
for (; i < j; i++) {
|
||||
if (strings[i] == '%') {
|
||||
if (strings[i + 1U] == 'x' || strings[i + 1U] == 'X') {
|
||||
*hex_pos = i;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
*hex_pos = U32_MAX;
|
||||
return false;
|
||||
}
|
||||
|
||||
static void print_pmu_trace(struct nvgpu_pmu *pmu)
|
||||
{
|
||||
struct gk20a *g = pmu->g;
|
||||
u32 i = 0, j = 0, k, l, m;
|
||||
char part_str[40], hex_str[10], buf[0x40] = {0};
|
||||
void *tracebuffer;
|
||||
char *trace;
|
||||
u32 *trace1;
|
||||
u32 buf_size = nvgpu_safe_cast_u64_to_u32(sizeof(buf));
|
||||
|
||||
/* allocate system memory to copy pmu trace buffer */
|
||||
tracebuffer = nvgpu_kzalloc(g, PMU_RTOS_TRACE_BUFSIZE);
|
||||
if (tracebuffer == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* read pmu traces into system memory buffer */
|
||||
nvgpu_mem_rd_n(g, &pmu->trace_buf, 0, tracebuffer,
|
||||
PMU_RTOS_TRACE_BUFSIZE);
|
||||
|
||||
trace = (char *)tracebuffer;
|
||||
trace1 = (u32 *)tracebuffer;
|
||||
|
||||
nvgpu_err(g, "dump PMU trace buffer");
|
||||
for (i = 0U; i < PMU_RTOS_TRACE_BUFSIZE; i += 0x40U) {
|
||||
for (j = 0U; j < 0x40U; j++) {
|
||||
if (trace1[(i / 4U) + j] != 0U) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (j == 0x40U) {
|
||||
break;
|
||||
}
|
||||
(void)nvgpu_strnadd_u32(hex_str, trace1[(i / 4U)],
|
||||
sizeof(hex_str), 16U);
|
||||
(void)strncat(buf, "Index", nvgpu_safe_sub_u32(buf_size,
|
||||
nvgpu_safe_cast_u64_to_u32(strlen(buf))));
|
||||
(void)strncat(buf, hex_str, nvgpu_safe_sub_u32(buf_size,
|
||||
nvgpu_safe_cast_u64_to_u32(strlen(buf))));
|
||||
(void)strncat(buf, ": ", nvgpu_safe_sub_u32(buf_size,
|
||||
nvgpu_safe_cast_u64_to_u32(strlen(buf))));
|
||||
l = 0;
|
||||
m = 0;
|
||||
while (nvgpu_find_hex_in_string((trace+i+20+m), g, &k)) {
|
||||
if (k >= 40U) {
|
||||
break;
|
||||
}
|
||||
(void)strncpy(part_str, (trace+i+20+m), k);
|
||||
part_str[k] = '\0';
|
||||
(void)nvgpu_strnadd_u32(hex_str,
|
||||
trace1[(i / 4U) + 1U + l],
|
||||
sizeof(hex_str), 16U);
|
||||
(void)strncat(buf, part_str, nvgpu_safe_sub_u32(
|
||||
buf_size, nvgpu_safe_cast_u64_to_u32(
|
||||
strlen(buf))));
|
||||
(void)strncat(buf, "0x", nvgpu_safe_sub_u32(buf_size,
|
||||
nvgpu_safe_cast_u64_to_u32(strlen(buf))));
|
||||
(void)strncat(buf, hex_str, nvgpu_safe_sub_u32(buf_size,
|
||||
nvgpu_safe_cast_u64_to_u32(strlen(buf))));
|
||||
l++;
|
||||
m += k + 2U;
|
||||
}
|
||||
|
||||
(void)strncat(buf, (trace+i+20+m), nvgpu_safe_sub_u32(buf_size,
|
||||
nvgpu_safe_cast_u64_to_u32(strlen(buf))));
|
||||
nvgpu_err(g, "%s", buf);
|
||||
}
|
||||
|
||||
nvgpu_kfree(g, tracebuffer);
|
||||
}
|
||||
|
||||
void nvgpu_pmu_dump_falcon_stats(struct nvgpu_pmu *pmu)
|
||||
{
|
||||
struct gk20a *g = pmu->g;
|
||||
|
||||
#ifdef CONFIG_NVGPU_FALCON_DEBUG
|
||||
nvgpu_falcon_dump_stats(pmu->flcn);
|
||||
#endif
|
||||
g->ops.pmu.pmu_dump_falcon_stats(pmu);
|
||||
|
||||
/* Print PMU F/W debug prints */
|
||||
print_pmu_trace(pmu);
|
||||
|
||||
nvgpu_err(g, "pmu state: %d", nvgpu_pmu_get_fw_state(g, pmu));
|
||||
|
||||
if (g->can_elpg) {
|
||||
nvgpu_err(g, "elpg state: %d", pmu->pg->elpg_stat);
|
||||
}
|
||||
|
||||
/* PMU may crash due to FECS crash. Dump FECS status */
|
||||
g->ops.gr.falcon.dump_stats(g);
|
||||
}
|
||||
|
||||
int nvgpu_pmu_debug_init(struct gk20a *g, struct nvgpu_pmu *pmu)
|
||||
{
|
||||
struct mm_gk20a *mm = &g->mm;
|
||||
struct vm_gk20a *vm = mm->pmu.vm;
|
||||
int err = 0;
|
||||
|
||||
err = nvgpu_dma_alloc_map(vm, PMU_RTOS_TRACE_BUFSIZE,
|
||||
&pmu->trace_buf);
|
||||
if (err != 0) {
|
||||
nvgpu_err(g, "failed to allocate pmu trace buffer\n");
|
||||
}
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
void nvgpu_pmu_debug_deinit(struct gk20a *g, struct nvgpu_pmu *pmu)
|
||||
{
|
||||
struct mm_gk20a *mm = &g->mm;
|
||||
struct vm_gk20a *vm = mm->pmu.vm;
|
||||
|
||||
if (nvgpu_mem_is_valid(&pmu->trace_buf)) {
|
||||
nvgpu_dma_unmap_free(vm, &pmu->trace_buf);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user