View | Details | Raw Unified | Return to bug 53391 | Differences between
and this patch

Collapse All | Expand All

(-)a/drivers/gpu/drm/nouveau/nouveau_bios.c (+14 lines)
Lines 1731-1736 apply_dcb_encoder_quirks(struct drm_device *dev, int idx, u32 *conn, u32 *conf) Link Here
1731
			*conn = 0x02000312;
1731
			*conn = 0x02000312;
1732
	}
1732
	}
1733
1733
1734
	/* https://bugzilla.kernel.org/show_bug.cgi?id=53391 */
1735
	if (nv_match_device(dev, 0x06c0, 0x10de, 0x075f)) {
1736
#if 0
1737
		if (idx == 0 && *conn == 0x02000300 && *conf == 0)
1738
			*conn = 0x04000380;
1739
		else if (idx == 2 && *conn == 0x04011380 && *conf == 0)
1740
			*conn = 0x02011300;
1741
#endif
1742
		if (idx == 1 && *conn == 0x01000302 && *conf == 0x00020030)
1743
			*conn = 0x08000382;
1744
		else if (idx == 3 && *conn == 0x08011382 && *conf == 0x00020030)
1745
			*conn = 0x01011302;
1746
	}
1747
1734
	return true;
1748
	return true;
1735
}
1749
}
1736
1750

Return to bug 53391