blob: 495c70d522cb8f7bbcdda5555913a00f1ff61535 [file] [log] [blame]
#!/usr/bin/env python
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Wrapper for EDID data parsing and loading.
See for more info:
http://en.wikipedia.org/wiki/Extended_display_identification_data
"""
import logging
import os
from fcntl import ioctl
from glob import glob
from time import sleep
from common import Obj
# Constants lifted from EDID documentation.
VERSION = 0x01
MAGIC = '\x00\xff\xff\xff\xff\xff\xff\x00'
MAGIC_OFFSET = 0
MANUFACTURER_ID_OFFSET = 8
PRODUCT_ID_OFFSET = 10
VERSION_OFFSET = 18
REVISION_OFFSET = 19
PIXEL_CLOCK_OFFSET = 54
HORIZONTAL_OFFSET = 56
HORIZONTAL_HIGH_OFFSET = 58
VERTICAL_OFFSET = 59
VERTICAL_HIGH_OFFSET = 61
CHECKSUM_OFFSET = 127
MINIMAL_SIZE = 128
MANUFACTURER_ID_BITS = 5
def Parse(blob):
"""EDID Parser (light-weight parse-edid replacement).
Simple parsing of EDID. The full-feature parser (parse-edid) has
many more dependencies, and so is too heavy-weight for use here.
TODO(hungte) Use parse-edid if it becomes practical/available.
Specifically once we know that it will be available on all of our
systems.
Args:
blob: a binary blob with encoded EDID.
Returns:
Identification string with extracted EDID fields. Return None if
the blob is not a valid EDID record, and also log warning messages
indicating the reason for parsing failure.
"""
def read_short(offset):
return ((ord(blob[offset]) << 8) | ord(blob[offset + 1]))
# Check size, magic, and version
if len(blob) < MINIMAL_SIZE:
logging.warning("EDID parsing error: length too small.")
return None
if (blob[MAGIC_OFFSET:(MAGIC_OFFSET + len(MAGIC))] !=
MAGIC):
logging.warning("EDID parse error: incorrect header.")
return None
if ord(blob[VERSION_OFFSET]) != VERSION:
logging.warning("EDID parse error: unsupported EDID version.")
return None
# Verify checksum
if sum([ord(char) for char in blob[:CHECKSUM_OFFSET+1]]) % 0x100 != 0:
logging.warning("EDID parse error: checksum error.")
return None
# Currently we don't support EDID not using pixel clock
pixel_clock = read_short(PIXEL_CLOCK_OFFSET)
if not pixel_clock:
logging.warning("EDID parse error: "
"non-pixel clock format is not supported yet.")
return None
# Extract manufactuer
vendor_name = ''
vendor_code = read_short(MANUFACTURER_ID_OFFSET)
# vendor_code: [0 | char1 | char2 | char3]
for i in range(2, -1, -1):
vendor_char = (vendor_code >> (i * MANUFACTURER_ID_BITS)) & 0x1F
vendor_char = chr(vendor_char + ord('@'))
vendor_name += vendor_char
product_id = read_short(PRODUCT_ID_OFFSET)
width = (ord(blob[HORIZONTAL_OFFSET]) |
((ord(blob[HORIZONTAL_HIGH_OFFSET]) >> 4) << 8))
height = (ord(blob[VERTICAL_OFFSET]) |
((ord(blob[VERTICAL_HIGH_OFFSET]) >> 4) << 8))
return '%s:%04x [%dx%d]' % (vendor_name, product_id, width, height)
def _I2cDump(bus, address, size):
"""Reads binary dump from i2c bus."""
if isinstance(bus, int):
bus = '/dev/i2c-%d' % bus
fd = -1
I2C_SLAVE = 0x0703
blob = None
try:
fd = os.open(bus, os.O_RDWR)
if ioctl(fd, I2C_SLAVE, address) != 0:
return blob
sleep(0.05) # Wait i2c to get ready
if os.write(fd, chr(0)) == 1:
blob = os.read(fd, size)
except:
pass
finally:
if fd >= 0:
os.close(fd)
return blob
def LoadFromI2c(path):
"""Run Parse against the output of _I2cDump on the specified path."""
I2C_LVDS_ADDRESS = 0x50
blob = _I2cDump(path, I2C_LVDS_ADDRESS, MINIMAL_SIZE)
return Parse(blob) if blob is not None else None
if __name__ == '__main__':
"""For debugging, print parse result for specified i2c bus."""
import sys
assert len(sys.argv) == 2, ('You must provide one argument '
', the i2c bus number.')
print repr(LoadFromI2c(int(sys.argv[1])))