Created
September 19, 2022 18:19
-
-
Save Cheaterman/5091074626a546471b0d8a890094b4ce to your computer and use it in GitHub Desktop.
0001-fix-hdmi-colors.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | |
index 3e1be9894..eee410758 100644 | |
--- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | |
+++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | |
@@ -2719,6 +2719,9 @@ static u32 *dw_hdmi_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge, | |
* if supported. In any case the default RGB888 format is added | |
*/ | |
+ /* Default 8bit RGB fallback */ | |
+ output_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24; | |
+ | |
if (max_bpc >= 16 && info->bpc == 16) { | |
if (info->color_formats & DRM_COLOR_FORMAT_YCBCR444) | |
output_fmts[i++] = MEDIA_BUS_FMT_YUV16_1X48; | |
@@ -2752,9 +2755,6 @@ static u32 *dw_hdmi_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge, | |
if (info->color_formats & DRM_COLOR_FORMAT_YCBCR444) | |
output_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24; | |
- /* Default 8bit RGB fallback */ | |
- output_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24; | |
- | |
*num_output_fmts = i; | |
return output_fmts; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment