projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f92534e
)
drm/vc4: hvs: Ignore atomic_flush if we're disabled
author
Maxime Ripard
<maxime@cerno.tech>
Wed, 7 Dec 2022 11:53:19 +0000
(12:53 +0100)
committer
Maxime Ripard
<maxime@cerno.tech>
Mon, 9 Jan 2023 14:21:31 +0000
(15:21 +0100)
atomic_flush will be called for each CRTC even if they aren't enabled.
The whole code we have there will thus run without a properly affected
channel, which can then result in all sorts of weird behaviour.
Reviewed-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Link:
https://lore.kernel.org/r/20221207-rpi-hvs-crtc-misc-v1-8-1f8e0770798b@cerno.tech
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
drivers/gpu/drm/vc4/vc4_hvs.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/vc4/vc4_hvs.c
b/drivers/gpu/drm/vc4/vc4_hvs.c
index 260efd44a821899e69742d90611f1f711ddb3076..4da66ef9678354ffa6645a035efa5a8fc0f4ddac 100644
(file)
--- a/
drivers/gpu/drm/vc4/vc4_hvs.c
+++ b/
drivers/gpu/drm/vc4/vc4_hvs.c
@@
-579,6
+579,9
@@
void vc4_hvs_atomic_flush(struct drm_crtc *crtc,
return;
}
+ if (vc4_state->assigned_channel == VC4_HVS_CHANNEL_DISABLED)
+ return;
+
if (debug_dump_regs) {
DRM_INFO("CRTC %d HVS before:\n", drm_crtc_index(crtc));
vc4_hvs_dump_state(hvs);