|
@@ -2394,6 +2394,11 @@ nv13b_chipset = {
|
|
|
.sw = gf100_sw_new,
|
|
|
};
|
|
|
|
|
|
+static const struct nvkm_device_chip
|
|
|
+nv140_chipset = {
|
|
|
+ .name = "GV100",
|
|
|
+};
|
|
|
+
|
|
|
static int
|
|
|
nvkm_device_event_ctor(struct nvkm_object *object, void *data, u32 size,
|
|
|
struct nvkm_notify *notify)
|
|
@@ -2750,6 +2755,7 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
|
|
|
case 0x110:
|
|
|
case 0x120: device->card_type = GM100; break;
|
|
|
case 0x130: device->card_type = GP100; break;
|
|
|
+ case 0x140: device->card_type = GV100; break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
@@ -2841,6 +2847,7 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
|
|
|
case 0x137: device->chip = &nv137_chipset; break;
|
|
|
case 0x138: device->chip = &nv138_chipset; break;
|
|
|
case 0x13b: device->chip = &nv13b_chipset; break;
|
|
|
+ case 0x140: device->chip = &nv140_chipset; break;
|
|
|
default:
|
|
|
nvdev_error(device, "unknown chipset (%08x)\n", boot0);
|
|
|
goto done;
|