mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-17 04:16:57 -04:00
37 lines
1.6 KiB
C++
37 lines
1.6 KiB
C++
/*---------------------------------------------------------*\
|
|
| ZotacBlackwellGPUControllerDetect.cpp |
|
|
| |
|
|
| Detector for ZOTAC Blackwell (RTX 50 series) GPU |
|
|
| |
|
|
| Eder Sánchez 27 Mar 2026 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "DetectionManager.h"
|
|
#include "i2c_smbus.h"
|
|
#include "pci_ids.h"
|
|
#include "RGBController_ZotacBlackwellGPU.h"
|
|
#include "ZotacBlackwellGPUController.h"
|
|
|
|
DetectedControllers DetectZotacBlackwellGPUControllersPCI(i2c_smbus_interface* bus, u8 i2c_addr, const std::string& name)
|
|
{
|
|
DetectedControllers detected_controllers;
|
|
s32 result;
|
|
|
|
result = bus->i2c_smbus_read_byte_data(i2c_addr, 0x10);
|
|
|
|
if(result >= 0)
|
|
{
|
|
ZotacBlackwellGPUController* controller = new ZotacBlackwellGPUController(bus, i2c_addr, name);
|
|
RGBController_ZotacBlackwellGPU* rgb_controller = new RGBController_ZotacBlackwellGPU(controller);
|
|
|
|
detected_controllers.push_back(rgb_controller);
|
|
}
|
|
|
|
return(detected_controllers);
|
|
}
|
|
|
|
REGISTER_I2C_PCI_DETECTOR("ZOTAC GAMING GeForce RTX 5080 AMP Extreme INFINITY", DetectZotacBlackwellGPUControllersPCI, NVIDIA_VEN, NVIDIA_RTX5080_DEV, ZOTAC_SUB_VEN, ZOTAC_RTX5080_AMP_EXTREME_SUB_DEV, 0x4B);
|