diff options
author | Ilia Mirkin <imirkin@alum.mit.edu> | 2017-10-31 18:56:19 +0100 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2017-11-02 04:32:15 +0100 |
commit | 3a0bc8cb9b102229ad26ae3788cef8c6c5273be1 (patch) | |
tree | 77b3ee1d1151d09529885b4a1461271ebbeab3a8 /drivers/gpu/drm/nouveau/nouveau_bios.c | |
parent | drm/nouveau/bios/init: use ARRAY_SIZE (diff) | |
download | linux-3a0bc8cb9b102229ad26ae3788cef8c6c5273be1.tar.xz linux-3a0bc8cb9b102229ad26ae3788cef8c6c5273be1.zip |
drm/nouveau/kms: add 8.1Gbps DP link rate
This was already done in dcb.c inside nvkm, but the other parser did not
get the update.
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bios.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index dd6fba55ad5d..c4ef3a0a737e 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c @@ -1478,9 +1478,13 @@ parse_dcb20_entry(struct drm_device *dev, struct dcb_table *dcb, case 1: entry->dpconf.link_bw = 270000; break; - default: + case 2: entry->dpconf.link_bw = 540000; break; + case 3: + default: + entry->dpconf.link_bw = 810000; + break; } switch ((conf & 0x0f000000) >> 24) { case 0xf: |