aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPaul Cercueil <paul@crapouillou.net>2019-12-10 15:41:40 +0100
committerPaul Cercueil <paul@crapouillou.net>2019-12-14 19:26:25 +0100
commit96ea0ae692fe382dc7a5d66289d8fbd4a369614d (patch)
tree40e240fe3f76dd51a3518a5da3940d69e733c484 /drivers
parentgpu/drm: ingenic: Use the plane's src_[x,y] to configure DMA length (diff)
downloadlinux-dev-96ea0ae692fe382dc7a5d66289d8fbd4a369614d.tar.xz
linux-dev-96ea0ae692fe382dc7a5d66289d8fbd4a369614d.zip
gpu/drm: ingenic: Set max FB height to 4095
While the LCD controller can effectively only support a maximum resolution of 800x600, the framebuffer's height can be much higher, since we can change the Y start offset. v2: No change Signed-off-by: Paul Cercueil <paul@crapouillou.net> Link: https://patchwork.freedesktop.org/patch/msgid/20191210144142.33143-4-paul@crapouillou.net # *** extracted tags *** Acked-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/ingenic/ingenic-drm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ingenic/ingenic-drm.c b/drivers/gpu/drm/ingenic/ingenic-drm.c
index 0f48050b9939..f80a4b948cd0 100644
--- a/drivers/gpu/drm/ingenic/ingenic-drm.c
+++ b/drivers/gpu/drm/ingenic/ingenic-drm.c
@@ -637,7 +637,7 @@ static int ingenic_drm_probe(struct platform_device *pdev)
drm->mode_config.min_width = 0;
drm->mode_config.min_height = 0;
drm->mode_config.max_width = 800;
- drm->mode_config.max_height = 600;
+ drm->mode_config.max_height = 4095;
drm->mode_config.funcs = &ingenic_drm_mode_config_funcs;
base = devm_platform_ioremap_resource(pdev, 0);