Difference between revisions of "Configuring Analog Sound DVI to HDMI"
m (carried fix from YLee on 'no picture when box is on before the TV') |
(Correction: 16 lines not "12 or so") |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 16: | Line 16: | ||
# Find your log file, it will probably be in /var/log/Xorg.0.log | # Find your log file, it will probably be in /var/log/Xorg.0.log | ||
# Extract the EDID block using nvidia-xconfig<br><code>nvidia-xconfig --extract-edids-from-file=/var/log/Xorg.0.log --extract-edids-output-file=edid.bin </code> | # Extract the EDID block using nvidia-xconfig<br><code>nvidia-xconfig --extract-edids-from-file=/var/log/Xorg.0.log --extract-edids-output-file=edid.bin </code> | ||
+ | # The previous nvidia-xconfig command may fail to extract an EDID even if it's present in the log file. Open the log file and look for 16 lines of raw hex (it should be exactly 512 characters once all the spaces and non-hex characters have been removed). Copy the raw hex into a hex editor like HxD and save it as edid.bin (the resulting file should be exactly 256 bytes). | ||
=Modify EDID Block= | =Modify EDID Block= | ||
The EDID block contains a block listing capable extensions, which must be removed. A program to do this is available at [http://analogbit.com/software/edid_disable_exts analogbit.com]. Download 'edid_disable_exts' and compile if necessary. The program takes two arguments, the input file and the output file, so process your original EDID and save the new one in '/etc/X11/'. | The EDID block contains a block listing capable extensions, which must be removed. A program to do this is available at [http://analogbit.com/software/edid_disable_exts analogbit.com]. Download 'edid_disable_exts' and compile if necessary. The program takes two arguments, the input file and the output file, so process your original EDID and save the new one in '/etc/X11/'. | ||
+ | |||
+ | Version 1.2 of edid_disable_exts supports a --to-dvi command line argument that leaves advanced resolution/hz settings intact. | ||
=Apply Modified EDID= | =Apply Modified EDID= |
Latest revision as of 01:55, 1 February 2011
Newer nVidia hardware supports audio over HDMI. When a display device notifies the drivers that it will accept audio, the card will provide an audio stream. This will occur on both HDMI and DVI ports, whether or not the card has pass-through audio inputs. Some TVs will automatically use this empty audio stream, and have no option to switch to another input
Contents
Acquire EDID Block
In order to resolve this, the nVidia drivers must be provided a modified EDID block saying the TV does not support audio. On nVidia hardware, there are two ways to acquire the original EDID block.
Using nvidia-settings
This method requires you have a mouse and keyboard attached to the machine.
- Run 'nvidia-settings' on the local X-Server
- Click the entry corresponding to your TV (e.g. DFP-0)
- Click 'Acquire EDID' and save the 'edid.bin' file
Using nvidia-xconfig
This method can be performed completely from a text console.
- Run an X server with enough verbosity to print out the EDID block
startx -- -logverbose 6
- After the X-Server has finished initializing, close it
- Find your log file, it will probably be in /var/log/Xorg.0.log
- Extract the EDID block using nvidia-xconfig
nvidia-xconfig --extract-edids-from-file=/var/log/Xorg.0.log --extract-edids-output-file=edid.bin
- The previous nvidia-xconfig command may fail to extract an EDID even if it's present in the log file. Open the log file and look for 16 lines of raw hex (it should be exactly 512 characters once all the spaces and non-hex characters have been removed). Copy the raw hex into a hex editor like HxD and save it as edid.bin (the resulting file should be exactly 256 bytes).
Modify EDID Block
The EDID block contains a block listing capable extensions, which must be removed. A program to do this is available at analogbit.com. Download 'edid_disable_exts' and compile if necessary. The program takes two arguments, the input file and the output file, so process your original EDID and save the new one in '/etc/X11/'.
Version 1.2 of edid_disable_exts supports a --to-dvi command line argument that leaves advanced resolution/hz settings intact.
Apply Modified EDID
Open your '/etc/X11/xorg.conf' file, and go to the Device section for your video card. Add the line
Option "CustomEDID" "DFP-0:/etc/X11/edid.modified.bin"
to tell the driver to use your custom block rather than acquiring one from your TV. The changes will take effect after a restart of X.