提交 862b89c0 编写于 作者: A Adam Jackson 提交者: Dave Airlie

drm/edid: Fix up partially corrupted headers

We'll still fail the block if it fails the EDID checksum though.

See also: http://bugzilla.redhat.com/534120Signed-off-by: NAdam Jackson <ajax@redhat.com>
Signed-off-by: NDave Airlie <airlied@redhat.com>
上级 47ee4ccf
...@@ -123,16 +123,21 @@ static const u8 edid_header[] = { ...@@ -123,16 +123,21 @@ static const u8 edid_header[] = {
*/ */
static bool edid_is_valid(struct edid *edid) static bool edid_is_valid(struct edid *edid)
{ {
int i; int i, score = 0;
u8 csum = 0; u8 csum = 0;
u8 *raw_edid = (u8 *)edid; u8 *raw_edid = (u8 *)edid;
if (memcmp(edid->header, edid_header, sizeof(edid_header))) for (i = 0; i < sizeof(edid_header); i++)
goto bad; if (raw_edid[i] == edid_header[i])
if (edid->version != 1) { score++;
DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
if (score == 8) ;
else if (score >= 6) {
DRM_DEBUG("Fixing EDID header, your hardware may be failing\n");
memcpy(raw_edid, edid_header, sizeof(edid_header));
} else
goto bad; goto bad;
}
for (i = 0; i < EDID_LENGTH; i++) for (i = 0; i < EDID_LENGTH; i++)
csum += raw_edid[i]; csum += raw_edid[i];
if (csum) { if (csum) {
...@@ -140,6 +145,11 @@ static bool edid_is_valid(struct edid *edid) ...@@ -140,6 +145,11 @@ static bool edid_is_valid(struct edid *edid)
goto bad; goto bad;
} }
if (edid->version != 1) {
DRM_ERROR("EDID has major version %d, instead of 1\n", edid->version);
goto bad;
}
if (edid->revision > 4) if (edid->revision > 4)
DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n"); DRM_DEBUG("EDID minor > 4, assuming backward compatibility\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册