Added GP104 Gaming Mobile cards.

This commit is contained in:
KrutavShah 2021-04-13 09:20:17 -07:00
parent 991849ee30
commit 635754141f
2 changed files with 6 additions and 0 deletions

View file

@ -187,6 +187,9 @@ script_source = r"""
actual_devid == 0x1b82 || // GTX 1070 Ti
actual_devid == 0x1b83 || // GTX 1060 6GB GP104 Refresh
actual_devid == 0x1b84 || // GTX 1060 3GB GP104 Refresh
actual_devid == 0x1b87 || // P104-100 Mining Card
actual_devid == 0x1ba0 || // GTX 1080 Mobile
actual_devid == 0x1ba1 || // GTX 1070 Mobile
actual_devid == 0x1bb0) { // Quadro P5000 (This will be moved to Tesla P6 in the future)
spoofed_devid = 0x1bb3; // Tesla P4
}

View file

@ -872,6 +872,9 @@ static uint16_t vgpu_unlock_pci_devid_to_vgpu_capable(uint16_t pci_devid)
case 0x1b82: /* GTX 1070 Ti */
case 0x1b83: /* GTX 1060 6GB */
case 0x1b84: /* GTX 1060 3GB */
case 0x1b87: /* P104-100 Mining Card */
case 0x1ba0: /* GTX 1080 Mobile */
case 0x1ba1: /* GTX 1070 Mobile */
case 0x1bb0: /* Quadro P5000 */
return 0x1bb3; /* Tesla P4 */