From a9dbf5ef70877da28f11f8b7a2bdf208a5278ddf Mon Sep 17 00:00:00 2001 From: Shawn Date: Wed, 22 Jul 2020 14:00:50 +0000 Subject: [PATCH] Add support for MSI 2060 Gaming X --- .../MSIGPUControllerDetect.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp b/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp index cac7014c..52879164 100644 --- a/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp +++ b/Controllers/MSIGPUController/MSIGPUControllerDetect.cpp @@ -75,6 +75,24 @@ bool IsMSIGPUController(i2c_smbus_interface* bus) pass = true; } + // MSI RTX 2060 Gaming Z 6G + if (bus->pci_device == 0x1f08 && + bus->pci_vendor == 0x10de && + bus->pci_subsystem_device == 0x3754 && + bus->pci_subsystem_vendor == 0x1462 ) + { + pass = true; + } + + // MSI RTX 2060S Gaming X + if (bus->pci_device == 0x0300 && + bus->pci_vendor == 0x10de && + bus->pci_subsystem_device == 0x1f06 && + bus->pci_subsystem_vendor == 0x1462 ) + { + pass = true; + } + return(pass); } /* IsMSIGPUController() */