diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2010-07-14 21:25:55 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-07-25 21:41:41 -0400 |
commit | 03639b50385810c2153624c0c8cb85de93d31356 (patch) | |
tree | 9c0c8c1f97eb7b366e73c472217cd6abbfb0e994 | |
parent | 734ee8357ac2685a306acd598826d5eb8a3fca30 (diff) |
drm/nouveau: remove quirk to fabricate DVI-A output on DCB 1.5 boards
There's a report of this quirk breaking modesetting on at least one board.
After discussion with Francisco Jerez, we've decided to remove it:
<darktama> it's not worth limiting the quirk to just where we know it can
work? i'm happy either way really :)
<curro> hmm, don't think so, most if not all DCB15 cards have just one DAC
<curro> and with that quirk there's no way to tell if the load comes from
the VGA or DVI port
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Acked-by: Francisco Jerez <currojerez@riseup.net>
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index 5437c896e10a..2297bbc88c6f 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c | |||
@@ -5739,13 +5739,6 @@ parse_dcb15_entry(struct drm_device *dev, struct dcb_table *dcb, | |||
5739 | case OUTPUT_TV: | 5739 | case OUTPUT_TV: |
5740 | entry->tvconf.has_component_output = false; | 5740 | entry->tvconf.has_component_output = false; |
5741 | break; | 5741 | break; |
5742 | case OUTPUT_TMDS: | ||
5743 | /* | ||
5744 | * Invent a DVI-A output, by copying the fields of the DVI-D | ||
5745 | * output; reported to work by math_b on an NV20(!). | ||
5746 | */ | ||
5747 | fabricate_vga_output(dcb, entry->i2c_index, entry->heads); | ||
5748 | break; | ||
5749 | case OUTPUT_LVDS: | 5742 | case OUTPUT_LVDS: |
5750 | if ((conn & 0x00003f00) != 0x10) | 5743 | if ((conn & 0x00003f00) != 0x10) |
5751 | entry->lvdsconf.use_straps_for_mode = true; | 5744 | entry->lvdsconf.use_straps_for_mode = true; |