The kernel driver expects the class to be based on chipset generation
rather than VP generation. Make sure to pass 90b1 for NVDX chipsets
instead of 95b1.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77102
Fixes: 40dd777b33073
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: "10.1 10.0" <mesa-stable@lists.freedesktop.org>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@ubunutu.com>
int size, oclass;
if (chipset < 0xc0)
oclass = 0x85b1;
- else if (vp5)
- oclass = 0x95b1;
- else
+ else if (chipset < 0xe0)
oclass = 0x90b1;
+ else
+ oclass = 0x95b1;
if (chipset < 0xc0) {
data = &nv04_data;