Skip to content

Commit 56659dc

Browse files
chenzhenrkhuangtao
authored andcommitted
MALI: utgard: fix the too small "max_job_runtime" in platform information
The original setting of "max_job_runtime" is too small that jobs are too easy to timeout and be killed. Change-Id: I5316c2b594d94dd0b844ef9a297baa7b226c4665 Signed-off-by: chenzhen <chenzhen@rock-chips.com>
1 parent 5d8b659 commit 56659dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/gpu/arm/mali400/mali/platform/rk

drivers/gpu/arm/mali400/mali/platform/rk/rk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ static const struct device_type mali_gpu_device_device_type = {
493493
*/
494494
static const struct mali_gpu_device_data mali_gpu_data = {
495495
.shared_mem_size = 1024 * 1024 * 1024, /* 1GB */
496-
.max_job_runtime = 100, /* 100 ms */
496+
.max_job_runtime = 60000, /* 60 seconds */
497497
#if defined(CONFIG_MALI_DEVFREQ) && defined(CONFIG_DEVFREQ_THERMAL)
498498
.gpu_cooling_ops = &rk_cooling_ops,
499499
#endif

0 commit comments

Comments
 (0)