diff options
| author | Lespiau, Damien <damien.lespiau@intel.com> | 2013-08-19 11:58:56 -0400 |
|---|---|---|
| committer | Dave Airlie <airlied@gmail.com> | 2013-08-29 18:40:29 -0400 |
| commit | a5ad3dcf358475dfc5ccf11e28d3822fc3c8e5fe (patch) | |
| tree | ef41ba92f882da0c4422402cbacaecb034893fbc /drivers | |
| parent | 3f2f653378112c1453c0d83c81746a9225e4bc75 (diff) | |
video/hdmi: Don't let the user of this API create invalid infoframes
To set the active aspect ratio value in the AVI infoframe today, you not
only have to set the active_aspect field, but also the active_info_valid
bit. Out of the 1 user of this API, we had 100% misuse, forgetting the
_valid bit. This was fixed in:
Author: Damien Lespiau <damien.lespiau@intel.com>
Date: Tue Aug 6 20:32:17 2013 +0100
drm: Don't generate invalid AVI infoframes for CEA modes
We can do better and derive the _valid bit from the user wanting to set
the active aspect ratio.
v2: Fix multi-lines comment style (Thierry Reding)
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Dave Airlie <airlied@gmail.com>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/gpu/drm/drm_edid.c | 1 | ||||
| -rw-r--r-- | drivers/video/hdmi.c | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 2381abd452f1..d76d6089106f 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c | |||
| @@ -3259,7 +3259,6 @@ drm_hdmi_avi_infoframe_from_display_mode(struct hdmi_avi_infoframe *frame, | |||
| 3259 | frame->video_code = drm_match_cea_mode(mode); | 3259 | frame->video_code = drm_match_cea_mode(mode); |
| 3260 | 3260 | ||
| 3261 | frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE; | 3261 | frame->picture_aspect = HDMI_PICTURE_ASPECT_NONE; |
| 3262 | frame->active_info_valid = 1; | ||
| 3263 | frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE; | 3262 | frame->active_aspect = HDMI_ACTIVE_ASPECT_PICTURE; |
| 3264 | 3263 | ||
| 3265 | return 0; | 3264 | return 0; |
diff --git a/drivers/video/hdmi.c b/drivers/video/hdmi.c index 635d5690dd5a..7ccc118fefed 100644 --- a/drivers/video/hdmi.c +++ b/drivers/video/hdmi.c | |||
| @@ -96,7 +96,11 @@ ssize_t hdmi_avi_infoframe_pack(struct hdmi_avi_infoframe *frame, void *buffer, | |||
| 96 | 96 | ||
| 97 | ptr[0] = ((frame->colorspace & 0x3) << 5) | (frame->scan_mode & 0x3); | 97 | ptr[0] = ((frame->colorspace & 0x3) << 5) | (frame->scan_mode & 0x3); |
| 98 | 98 | ||
| 99 | if (frame->active_info_valid) | 99 | /* |
| 100 | * Data byte 1, bit 4 has to be set if we provide the active format | ||
| 101 | * aspect ratio | ||
| 102 | */ | ||
| 103 | if (frame->active_aspect & 0xf) | ||
| 100 | ptr[0] |= BIT(4); | 104 | ptr[0] |= BIT(4); |
| 101 | 105 | ||
| 102 | if (frame->horizontal_bar_valid) | 106 | if (frame->horizontal_bar_valid) |
