[PATCH v8 5/8] drm/simpledrm: Add drm_panic support
Jocelyn Falempe
jfalempe at redhat.com
Tue Feb 27 10:04:16 UTC 2024
Add support for the drm_panic module, which displays a user-friendly
message to the screen when a kernel panic occurs.
v8:
* Replace get_scanout_buffer() with drm_panic_set_buffer()
(Thomas Zimmermann)
Signed-off-by: Jocelyn Falempe <jfalempe at redhat.com>
---
drivers/gpu/drm/tiny/simpledrm.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/drivers/gpu/drm/tiny/simpledrm.c b/drivers/gpu/drm/tiny/simpledrm.c
index 7ce1c4617675..a2190995354a 100644
--- a/drivers/gpu/drm/tiny/simpledrm.c
+++ b/drivers/gpu/drm/tiny/simpledrm.c
@@ -25,6 +25,7 @@
#include <drm/drm_gem_shmem_helper.h>
#include <drm/drm_managed.h>
#include <drm/drm_modeset_helper_vtables.h>
+#include <drm/drm_panic.h>
#include <drm/drm_probe_helper.h>
#define DRIVER_NAME "simpledrm"
@@ -735,6 +736,20 @@ static const struct drm_connector_funcs simpledrm_connector_funcs = {
.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
};
+static void simpledrm_init_panic_buffer(struct drm_plane *plane)
+{
+ struct simpledrm_device *sdev = simpledrm_device_of_dev(plane->dev);
+ struct drm_framebuffer fb;
+
+ /* Fake framebuffer struct for drm_panic_set_buffer */
+ fb.width = sdev->mode.hdisplay;
+ fb.height = sdev->mode.vdisplay;
+ fb.format = sdev->format;
+ fb.pitches[0] = sdev->pitch;
+
+ drm_panic_set_buffer(plane->panic_scanout, &fb, &sdev->screen_base);
+}
+
static const struct drm_mode_config_funcs simpledrm_mode_config_funcs = {
.fb_create = drm_gem_fb_create_with_dirty,
.atomic_check = drm_atomic_helper_check,
@@ -945,6 +960,8 @@ static struct simpledrm_device *simpledrm_device_create(struct drm_driver *drv,
return ERR_PTR(ret);
drm_plane_helper_add(primary_plane, &simpledrm_primary_plane_helper_funcs);
drm_plane_enable_fb_damage_clips(primary_plane);
+ drm_panic_register(primary_plane);
+ simpledrm_init_panic_buffer(primary_plane);
/* CRTC */
--
2.43.0
More information about the dri-devel
mailing list