[PATCH] drm/edid: request HDMI underscan by default (original) (raw)
Ville Syrjälä ville.syrjala at linux.intel.com
Thu Feb 27 07:42:36 PST 2014
- Previous message: [PATCH] drm/edid: request HDMI underscan by default
- Next message: [PATCH] drm/edid: request HDMI underscan by default
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Thu, Feb 27, 2014 at 09:19:30AM -0600, Daniel Drake wrote:
Working with HDMI TVs is a real pain as they tend to overscan by default, meaning that the pixels around the edge of the framebuffer are not displayed. This is well explained here: http://mjg59.dreamwidth.org/8705.html
There is a bit in the HDMI info frame that can request that the remote display shows the full pixel data ("underscan"). For the remote display, the HDMI spec states that this is optional - it doesn't have to listen. That means that most TVs will probably ignore this. But, maybe there are a handful of TVs for which this would help the situation. As we live in a digital world, ask the remote display not to overscan by default. Signed-off-by: Daniel Drake <drake at endlessm.com>
Reviewed-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
--- drivers/gpu/drm/drmedid.c | 1 + 1 file changed, 1 insertion(+)
Replaces the patch titled "video: hdmi: request underscan by default" This version moves the change to the DRM layer, as requested by Ville Syrjälä. diff --git a/drivers/gpu/drm/drmedid.c b/drivers/gpu/drm/drmedid.c index b924306..f8d8a1d 100644 --- a/drivers/gpu/drm/drmedid.c +++ b/drivers/gpu/drm/drmedid.c @@ -3599,6 +3599,7 @@ drmhdmiaviinfoframefromdisplaymode(struct hdmiaviinfoframe *frame, frame->pictureaspect = HDMIPICTUREASPECTNONE; frame->activeaspect = HDMIACTIVEASPECTPICTURE; + frame->scanmode = HDMISCANMODEUNDERSCAN; return 0; } -- 1.8.3.2
-- Ville Syrjälä Intel OTC
- Previous message: [PATCH] drm/edid: request HDMI underscan by default
- Next message: [PATCH] drm/edid: request HDMI underscan by default
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]