summaryrefslogtreecommitdiff
path: root/src/radeon_driver.c
diff options
context:
space:
mode:
authorCsillag Kristof <csillag.kristof@united-consult.hu>2009-10-04 18:18:56 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-10-04 23:48:14 -0400
commitf8471512ea9f1d38140dfe98a0f832e9f935f51b (patch)
tree36350b8ab5bffb4caf15c1f632c716784c734d56 /src/radeon_driver.c
parent60d9685abddccec17c1a9a5ec48cbe9c92543e0f (diff)
radeon: add support for Custom EDID
Allows you to specify an edid per output from a file to override what is detected by DDC. Useful for problematic monitors or KVM switches that block DDC. Specifying an EDID that is not compatible with your monitor could damage your monitor so use with caution. agd5f: cache the custom edid at startup so we don't have to read it from file every time the output is queried.
Diffstat (limited to 'src/radeon_driver.c')
-rw-r--r--src/radeon_driver.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c
index e0ba9ba4..d039920b 100644
--- a/src/radeon_driver.c
+++ b/src/radeon_driver.c
@@ -161,6 +161,7 @@ static const OptionInfoRec RADEONOptions[] = {
#endif
#endif
{ OPTION_IGNORE_EDID, "IgnoreEDID", OPTV_BOOLEAN, {0}, FALSE },
+ { OPTION_CUSTOM_EDID, "CustomEDID", OPTV_ANYSTR, {0}, FALSE },
{ OPTION_DISP_PRIORITY, "DisplayPriority", OPTV_ANYSTR, {0}, FALSE },
{ OPTION_PANEL_SIZE, "PanelSize", OPTV_ANYSTR, {0}, FALSE },
{ OPTION_MIN_DOTCLOCK, "ForceMinDotClock", OPTV_FREQ, {0}, FALSE },