lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1464066168-22906-1-git-send-email-ykk@rock-chips.com> Date: Tue, 24 May 2016 13:02:48 +0800 From: Yakir Yang <ykk@...k-chips.com> To: David Airlie <airlied@...ux.ie>, Inki Dae <inki.dae@...sung.com>, Mark Yao <yzq@...k-chips.com>, Thierry Reding <treding@...dia.com>, Jingoo Han <jingoohan1@...il.com>, Rob Herring <robh+dt@...nel.org> Cc: Krzysztof Kozlowski <k.kozlowski@...sung.com>, Heiko Stuebner <heiko@...ech.de>, Douglas Anderson <dianders@...omium.org>, Daniel Vetter <daniel.vetter@...ll.ch>, Javier Martinez Canillas <javier@....samsung.com>, emil.l.velikov@...il.com, Dan Carpenter <dan.carpenter@...cle.com>, linux-kernel@...r.kernel.org, dri-devel@...ts.freedesktop.org, linux-samsung-soc@...r.kernel.org, linux-rockchip@...ts.infradead.org, Yakir Yang <ykk@...k-chips.com> Subject: [PATCH v2 09/10] drm/rockchip: analogix_dp: update the comments about why need to hardcode VOP output mode The hardware IC designed that VOP must output the RGB10 video format to eDP contoller, and if eDP panel only support RGB8, then eDP contoller should cut down the video data, not via VOP contoller, that's why we need to hardcode the VOP output mode to RGA10 here. Signed-off-by: Yakir Yang <ykk@...k-chips.com> --- Changes in v2: - new patch in v2 drivers/gpu/drm/rockchip/analogix_dp-rockchip.c | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c b/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c index 910cceb..4b64964 100644 --- a/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c +++ b/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c @@ -170,17 +170,11 @@ rockchip_dp_drm_encoder_atomic_check(struct drm_encoder *encoder, s->output_type = DRM_MODE_CONNECTOR_eDP; /* - * FIXME(Yakir): driver should configure the CRTC output video - * mode with the display information which indicated the monitor - * support colorimetry. - * - * But don't know why the CRTC driver seems could only output the - * RGBaaa rightly. For example, if connect the "innolux,n116bge" - * eDP screen, EDID would indicated that screen only accepted the - * 6bpc mode. But if I configure CRTC to RGB666 output, then eDP - * screen would show a blue picture (RGB888 show a green picture). - * But if I configure CTRC to RGBaaa, and eDP driver still keep - * RGB666 input video mode, then screen would works prefect. + * The hardware IC designed that VOP must output the RGB10 video + * format to eDP contoller, and if eDP panel only support RGB8, + * then eDP contoller should cut down the video data, not via VOP + * contoller, that's why we need to hardcode the VOP output mode + * to RGA10 here. */ ret = drm_of_encoder_active_endpoint_id(dp->dev->of_node, encoder); -- 1.9.1
Powered by blists - more mailing lists