730c2bf4ad
In the event of a job timeout, debug dump information will be written into /sys/class/devcoredump. Inspired by etnaviv's similar feature. Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> Reviewed-by: Steven Price <steven.price@arm.com> Signed-off-by: Steven Price <steven.price@arm.com> Link: https://patchwork.freedesktop.org/patch/msgid/20220729144610.2105223-3-adrian.larumbe@collabora.com
13 lines
209 B
C
13 lines
209 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2021 Collabora ltd.
|
|
*/
|
|
|
|
#ifndef PANFROST_DUMP_H
|
|
#define PANFROST_DUMP_H
|
|
|
|
struct panfrost_job;
|
|
void panfrost_core_dump(struct panfrost_job *job);
|
|
|
|
#endif
|