Commit c983e6f6 authored by Maxim Levitsky's avatar Maxim Levitsky Committed by Ben Skeggs

drm/nv50: also report errors in MP1/MP2 when they happen.

Signed-off-by: default avatarMaxim Levitsky <maximlevitsky@gmail.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent b29caa58
......@@ -616,9 +616,9 @@ nv50_pgraph_tp_trap(struct drm_device *dev, int type, uint32_t ustatus_old,
}
break;
case 7: /* MP error */
if (ustatus & 0x00010000) {
if (ustatus & 0x04030000) {
nv50_pgraph_mp_trap(dev, i, display);
ustatus &= ~0x00010000;
ustatus &= ~0x04030000;
}
break;
case 8: /* TPDMA error */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment