drm/rockchip: vop2: print fixed timing when dump vop info

Change-Id: Ia111bb91d5e436fbfa5fee67f6db76a250fc61a4
Signed-off-by: Zhang Yubing <yubing.zhang@rock-chips.com>
This commit is contained in:
Zhang Yubing
2024-04-16 17:45:36 +08:00
committed by Tao Huang
parent 4663ed8792
commit 941de7d1c6

View File

@@ -7136,6 +7136,10 @@ static int vop2_crtc_debugfs_dump(struct drm_crtc *crtc, struct seq_file *s)
mode->hsync_end, mode->htotal);
DEBUG_PRINT("\tV: %d %d %d %d\n", mode->vdisplay, mode->vsync_start,
mode->vsync_end, mode->vtotal);
DEBUG_PRINT("\tFixed H: %d %d %d %d\n", mode->crtc_hdisplay, mode->crtc_hsync_start,
mode->crtc_hsync_end, mode->crtc_htotal);
DEBUG_PRINT("\tFixed V: %d %d %d %d\n", mode->crtc_vdisplay, mode->crtc_vsync_start,
mode->crtc_vsync_end, mode->crtc_vtotal);
drm_atomic_crtc_for_each_plane(plane, crtc) {
vop2_plane_info_dump(s, plane);