Skip to content

Commit

Permalink
drm/nouveau: recognise higher link rate for available dp bw calculations
Browse files Browse the repository at this point in the history
I should resurrect/merge that cleanup branch to remove the weird
duplication.. One day.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed Mar 26, 2014
1 parent fc243d7 commit 14f97da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/gpu/drm/nouveau/nouveau_bios.c
Original file line number Diff line number Diff line change
Expand Up @@ -1474,9 +1474,12 @@ parse_dcb20_entry(struct drm_device *dev, struct dcb_table *dcb,
case 0:
entry->dpconf.link_bw = 162000;
break;
default:
case 1:
entry->dpconf.link_bw = 270000;
break;
default:
entry->dpconf.link_bw = 540000;
break;
}
switch ((conf & 0x0f000000) >> 24) {
case 0xf:
Expand Down

0 comments on commit 14f97da

Please sign in to comment.