Kernel panic has occurred when doing reboot stress test with jp5.0.2

It may happen while boot at our custom xavier NX board, the probability is about 1/20.

I have some tries below:
1、It can repeat steadily with jp5.0.2;
2、I have check some historical topic, the boot failure is similar, but can’t find correct workaround;
3、It can also happen when the device system update to jp5.1;

Is there some methods to solve this boot panic with jp5.0.2 ?

b310_boot_jp502.log (57.1 KB)
b310_jp51.log (58.6 KB)

please apply this to the kernel driver to bypass this issue.

--- a/drivers/video/tegra/dc/dc.c
+++ b/drivers/video/tegra/dc/dc.c
@@ -6374,7 +6374,7 @@
 		pr_debug("dc->fb_mem not initialized\n");
 		return false;
 	}
-	return (dc->fb_mem->start != 0);
+	return false;
 }
 EXPORT_SYMBOL(tegra_is_bl_display_initialized);

It may be right for self testing.
I will apply this patch to Image , and customer also can test this issue.

thanks to your advice.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.