Commit 4c5b36ee authored by Eugeniy Paltsev's avatar Eugeniy Paltsev Committed by Alexey Brodkin

DRM: ARC: PGU: fix framebuffer format switching

Current implementation don't switch to RGB565 format if BGR888 was
previously used. Fix that.
Signed-off-by: default avatarEugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Signed-off-by: default avatarAlexey Brodkin <abrodkin@synopsys.com>
parent d1eef1c6
...@@ -32,6 +32,7 @@ static void arc_pgu_set_pxl_fmt(struct drm_crtc *crtc) ...@@ -32,6 +32,7 @@ static void arc_pgu_set_pxl_fmt(struct drm_crtc *crtc)
uint32_t pixel_format = fb->format->format; uint32_t pixel_format = fb->format->format;
struct simplefb_format *format = NULL; struct simplefb_format *format = NULL;
int i; int i;
u32 reg_ctrl;
for (i = 0; i < ARRAY_SIZE(supported_formats); i++) { for (i = 0; i < ARRAY_SIZE(supported_formats); i++) {
if (supported_formats[i].fourcc == pixel_format) if (supported_formats[i].fourcc == pixel_format)
...@@ -41,11 +42,12 @@ static void arc_pgu_set_pxl_fmt(struct drm_crtc *crtc) ...@@ -41,11 +42,12 @@ static void arc_pgu_set_pxl_fmt(struct drm_crtc *crtc)
if (WARN_ON(!format)) if (WARN_ON(!format))
return; return;
if (format->fourcc == DRM_FORMAT_RGB888) reg_ctrl = arc_pgu_read(arcpgu, ARCPGU_REG_CTRL);
arc_pgu_write(arcpgu, ARCPGU_REG_CTRL, if (format->fourcc == DRM_FORMAT_RGB565)
arc_pgu_read(arcpgu, ARCPGU_REG_CTRL) | reg_ctrl &= ~ARCPGU_MODE_RGB888_MASK;
ARCPGU_MODE_RGB888_MASK); else
reg_ctrl |= ARCPGU_MODE_RGB888_MASK;
arc_pgu_write(arcpgu, ARCPGU_REG_CTRL, reg_ctrl);
} }
static const struct drm_crtc_funcs arc_pgu_crtc_funcs = { static const struct drm_crtc_funcs arc_pgu_crtc_funcs = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment