drm/nouveau: recognise higher link rate for available dp bw calculations

I should resurrect/merge that cleanup branch to remove the weird
duplication.. One day.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
Ben Skeggs 2014-03-20 09:32:01 +10:00
parent fc243d7f92
commit 14f97da7e7

View file

@ -1474,9 +1474,12 @@ parse_dcb20_entry(struct drm_device *dev, struct dcb_table *dcb,
case 0: case 0:
entry->dpconf.link_bw = 162000; entry->dpconf.link_bw = 162000;
break; break;
default: case 1:
entry->dpconf.link_bw = 270000; entry->dpconf.link_bw = 270000;
break; break;
default:
entry->dpconf.link_bw = 540000;
break;
} }
switch ((conf & 0x0f000000) >> 24) { switch ((conf & 0x0f000000) >> 24) {
case 0xf: case 0xf: