mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
379 lines
16 KiB
C++
379 lines
16 KiB
C++
/******************************************************************************************\
|
|
* *
|
|
* OpenRGB.cpp *
|
|
* *
|
|
* Functions for communicating with RGBController API devices on Windows and Linux *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
#include "RGBController.h"
|
|
#include "i2c_smbus.h"
|
|
#include <vector>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <regex>
|
|
#include "i2c_smbus_piix4.h"
|
|
#include "i2c_smbus_i801.h"
|
|
#include "i2c_smbus_nct6775.h"
|
|
#include "wmi.h"
|
|
#include "inpout32.h"
|
|
|
|
#pragma comment(lib, "inpout32.lib")
|
|
#else /* WIN32 */
|
|
|
|
#include "i2c_smbus_linux.h"
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <dirent.h>
|
|
#include <string.h>
|
|
|
|
#endif /* WIN32 */
|
|
|
|
std::vector<i2c_smbus_interface*> busses;
|
|
std::vector<RGBController*> rgb_controllers;
|
|
|
|
#ifdef WIN32
|
|
/******************************************************************************************\
|
|
* *
|
|
* Nuvoton Super IO constants *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
#define SIO_NCT5577_ID 0xC330 /* Device ID for NCT5577D (C333) */
|
|
#define SIO_NCT6102_ID 0x1060 /* Device ID for NCT6102D/6106D (1061) */
|
|
#define SIO_NCT6793_ID 0xd120 /* Device ID for NCT6793D (D121) */
|
|
#define SIO_NCT6796_ID 0xd420 /* Device ID for NCT6796D (D421) */
|
|
#define SIO_REG_LOGDEV 0x07 /* Logical Device Register */
|
|
#define SIO_REG_DEVID 0x20 /* Device ID Register */
|
|
#define SIO_REG_SMBA 0x62 /* SMBus Base Address Register */
|
|
#define SIO_LOGDEV_SMBUS 0x0B /* Logical Device for SMBus */
|
|
#define SIO_ID_MASK 0xFFF8 /* Device ID mask */
|
|
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* superio_enter *
|
|
* *
|
|
* Put the Super IO chip into Extended Function Mode *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void superio_enter(int ioreg)
|
|
{
|
|
Out32(ioreg, 0x87);
|
|
Out32(ioreg, 0x87);
|
|
}
|
|
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* superio_outb *
|
|
* *
|
|
* Write a byte to the Super IO configuration register *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void superio_outb(int ioreg, int reg, int val)
|
|
{
|
|
Out32(ioreg, reg);
|
|
Out32(ioreg + 1, val);
|
|
}
|
|
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* superio_inb *
|
|
* *
|
|
* Read a byte to the Super IO configuration register *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
int superio_inb(int ioreg, int reg)
|
|
{
|
|
Out32(ioreg, reg);
|
|
return Inp32(ioreg + 1);
|
|
}
|
|
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectNuvotonI2CBusses (Windows) *
|
|
* *
|
|
* Detects available Nuvoton Super IO SMBUS adapters and enumerates *
|
|
* i2c_smbus_interface objects for them *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectNuvotonI2CBusses()
|
|
{
|
|
i2c_smbus_interface* bus;
|
|
int sioaddr = 0x2E;
|
|
superio_enter(sioaddr);
|
|
|
|
int val = (superio_inb(sioaddr, SIO_REG_DEVID) << 8) | superio_inb(sioaddr, SIO_REG_DEVID + 1);
|
|
|
|
switch (val & SIO_ID_MASK)
|
|
{
|
|
case SIO_NCT5577_ID:
|
|
case SIO_NCT6102_ID:
|
|
case SIO_NCT6793_ID:
|
|
case SIO_NCT6796_ID:
|
|
bus = new i2c_smbus_nct6775();
|
|
|
|
// Set logical device register to get SMBus base address
|
|
superio_outb(sioaddr, SIO_REG_LOGDEV, SIO_LOGDEV_SMBUS);
|
|
|
|
// Get SMBus base address from configuration register
|
|
int smba = (superio_inb(sioaddr, SIO_REG_SMBA) << 8) | superio_inb(sioaddr, SIO_REG_SMBA + 1);
|
|
((i2c_smbus_nct6775*)bus)->nct6775_smba = smba;
|
|
|
|
// Set device name string
|
|
switch (val & SIO_ID_MASK)
|
|
{
|
|
case SIO_NCT5577_ID:
|
|
sprintf(bus->device_name, "Nuvoton NCT5577D SMBus at %X", smba);
|
|
break;
|
|
case SIO_NCT6102_ID:
|
|
sprintf(bus->device_name, "Nuvoton NCT6102D/NCT6106D SMBus at %X", smba);
|
|
break;
|
|
case SIO_NCT6793_ID:
|
|
sprintf(bus->device_name, "Nuvoton NCT6793D SMBus at %X", smba);
|
|
break;
|
|
case SIO_NCT6796_ID:
|
|
sprintf(bus->device_name, "Nuvoton NCT6796D SMBus at %X", smba);
|
|
break;
|
|
}
|
|
|
|
busses.push_back(bus);
|
|
}
|
|
|
|
} /* DetectNuvotonI2CBusses() */
|
|
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectI2CBusses (Windows) *
|
|
* *
|
|
* Detects available AMD and Intel SMBUS adapters and enumerates i2c_smbus_interface *
|
|
* objects for them *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectI2CBusses()
|
|
{
|
|
i2c_smbus_interface * bus;
|
|
HRESULT hres;
|
|
Wmi wmi;
|
|
wmi.init();
|
|
|
|
// Query WMI for Win32_PnPSignedDriver entries with names matching "SMBUS" or "SM BUS"
|
|
// These devices may be browsed under Device Manager -> System Devices
|
|
std::vector<QueryObj> q_res_PnPSignedDriver;
|
|
hres = wmi.query("SELECT * FROM Win32_PnPSignedDriver WHERE Description LIKE '\%SMBUS\%' OR Description LIKE '\%SM BUS\%'", q_res_PnPSignedDriver);
|
|
|
|
if (hres)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// For each detected SMBus adapter, try enumerating it as either AMD or Intel
|
|
for (QueryObj &i : q_res_PnPSignedDriver)
|
|
{
|
|
// AMD SMBus controllers do not show any I/O resources allocated in Device Manager
|
|
// Analysis of many AMD boards has shown that AMD SMBus controllers have two adapters with fixed I/O spaces at 0x0B00 and 0x0B20
|
|
// AMD SMBus adapters use the PIIX4 driver
|
|
if (i["Manufacturer"].find("Advanced Micro Devices, Inc") != std::string::npos)
|
|
{
|
|
bus = new i2c_smbus_piix4();
|
|
strcpy(bus->device_name, i["Description"].c_str());
|
|
strcat(bus->device_name, " at 0x0B00");
|
|
((i2c_smbus_piix4 *)bus)->piix4_smba = 0x0B00;
|
|
busses.push_back(bus);
|
|
|
|
bus = new i2c_smbus_piix4();
|
|
((i2c_smbus_piix4 *)bus)->piix4_smba = 0x0B20;
|
|
strcpy(bus->device_name, i["Description"].c_str());
|
|
strcat(bus->device_name, " at 0x0B20");
|
|
busses.push_back(bus);
|
|
}
|
|
|
|
// Intel SMBus controllers do show I/O resources in Device Manager
|
|
// Analysis of many Intel boards has shown that Intel SMBus adapter I/O space varies between boards
|
|
// We can query Win32_PnPAllocatedResource entries and look up the PCI device ID to find the allocated I/O space
|
|
// Intel SMBus adapters use the i801 driver
|
|
else if ((i["Manufacturer"].find("Intel") != std::string::npos)
|
|
|| (i["Manufacturer"].find("INTEL") != std::string::npos))
|
|
{
|
|
std::string rgx1 = ".+" + q_res_PnPSignedDriver[0]["DeviceID"].substr(4, 33) + ".+";
|
|
|
|
AdditionalFilters filters;
|
|
filters.emplace("Dependent", rgx1);
|
|
filters.emplace("Antecedent", ".*Port.*");
|
|
|
|
std::vector<QueryObj> q_res_PNPAllocatedResource;
|
|
hres = wmi.query("SELECT * FROM Win32_PnPAllocatedResource", q_res_PNPAllocatedResource, &filters);
|
|
|
|
std::regex rgx2(".*StartingAddress=\"(\\d+)\".*");
|
|
std::smatch matches;
|
|
|
|
// Query the StartingAddress for the matching device ID and use it to enumerate the bus
|
|
if (std::regex_search(q_res_PNPAllocatedResource[0]["Antecedent"], matches, rgx2))
|
|
{
|
|
unsigned int IORangeStart = std::stoi(matches[1].str());
|
|
|
|
bus = new i2c_smbus_i801();
|
|
strcpy(bus->device_name, i["Description"].c_str());
|
|
((i2c_smbus_i801 *)bus)->i801_smba = IORangeStart;
|
|
busses.push_back(bus);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Detect Nuvoton Super IO SMBus adapters
|
|
DetectNuvotonI2CBusses();
|
|
|
|
} /* DetectI2CBusses() */
|
|
|
|
#else /* WIN32 */
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectI2CBusses (Linux) *
|
|
* *
|
|
* Detects available SMBUS adapters and enumerates i2c_smbus_interface objects for *
|
|
* them *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectI2CBusses()
|
|
{
|
|
i2c_smbus_linux * bus;
|
|
char device_string[1024];
|
|
DIR * dir;
|
|
char driver_path[512];
|
|
struct dirent * ent;
|
|
int test_fd;
|
|
|
|
// Start looking for I2C adapters in /sys/bus/i2c/devices/
|
|
strcpy(driver_path, "/sys/bus/i2c/devices/");
|
|
dir = opendir(driver_path);
|
|
|
|
if(dir == NULL)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Loop through all entries in i2c-adapter list
|
|
ent = readdir(dir);
|
|
while(ent != NULL)
|
|
{
|
|
if(ent->d_type == DT_DIR || ent->d_type == DT_LNK)
|
|
{
|
|
if(strncmp(ent->d_name, "i2c-", 4) == 0)
|
|
{
|
|
strcpy(device_string, driver_path);
|
|
strcat(device_string, ent->d_name);
|
|
strcat(device_string, "/name");
|
|
test_fd = open(device_string, O_RDONLY);
|
|
|
|
if(test_fd)
|
|
{
|
|
read(test_fd, device_string, sizeof(device_string));
|
|
close(test_fd);
|
|
|
|
//ignore nvidia adapters for now
|
|
if(strncmp(device_string, "NVIDIA", 6) == 0)
|
|
{
|
|
ent = readdir(dir);
|
|
continue;
|
|
}
|
|
|
|
bus = new i2c_smbus_linux();
|
|
strcpy(bus->device_name, device_string);
|
|
|
|
strcpy(device_string, "/dev/");
|
|
strcat(device_string, ent->d_name);
|
|
test_fd = open(device_string, O_RDWR);
|
|
|
|
if (test_fd < 0)
|
|
{
|
|
delete bus;
|
|
ent = readdir(dir);
|
|
continue;
|
|
}
|
|
|
|
bus->handle = test_fd;
|
|
busses.push_back(bus);
|
|
}
|
|
}
|
|
}
|
|
ent = readdir(dir);
|
|
}
|
|
|
|
} /* DetectI2CBusses() */
|
|
|
|
#endif /* WIN32 */
|
|
|
|
void DetectAuraControllers(std::vector<i2c_smbus_interface*> &busses, std::vector<RGBController*> &rgb_controllers);
|
|
void DetectCorsairControllers(std::vector<i2c_smbus_interface*> &busses, std::vector<RGBController*> &rgb_controllers);
|
|
void DetectCorsairProControllers(std::vector<i2c_smbus_interface*> &busses, std::vector<RGBController*> &rgb_controllers);
|
|
void DetectHyperXControllers(std::vector<i2c_smbus_interface*> &busses, std::vector<RGBController*> &rgb_controllers);
|
|
void DetectPatriotViperControllers(std::vector<i2c_smbus_interface*> &busses, std::vector<RGBController*> &rgb_controllers);
|
|
void DetectPolychromeControllers(std::vector<i2c_smbus_interface*>& busses, std::vector<RGBController*>& rgb_controllers);
|
|
void DetectRGBFusionControllers(std::vector<i2c_smbus_interface*>& busses, std::vector<RGBController*>& rgb_controllers);
|
|
void DetectLEDStripControllers(std::vector<RGBController*> &rgb_controllers);
|
|
void DetectHue2Controllers(std::vector<RGBController*> &rgb_controllers);
|
|
void DetectHuePlusControllers(std::vector<RGBController*> &rgb_controllers);
|
|
void DetectOpenRazerControllers(std::vector<RGBController*> &rgb_controllers);
|
|
void DetectRazerChromaSDKControllers(std::vector<RGBController*>& rgb_controllers);
|
|
void DetectE131Controllers(std::vector<RGBController*> &rgb_controllers);
|
|
void DetectAMDWraithPrismControllers(std::vector<RGBController*>& rgb_controllers);
|
|
void DetectAorusGPUControllers(std::vector<RGBController*> &rgb_controllers);
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectRGBConrollers *
|
|
* *
|
|
* Detect and populate RGB Controllers vector *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectRGBControllers(void)
|
|
{
|
|
DetectI2CBusses();
|
|
|
|
DetectAuraControllers(busses, rgb_controllers);
|
|
DetectCorsairControllers(busses, rgb_controllers);
|
|
DetectCorsairProControllers(busses, rgb_controllers);
|
|
DetectHyperXControllers(busses, rgb_controllers);
|
|
DetectPatriotViperControllers(busses, rgb_controllers);
|
|
DetectPolychromeControllers(busses, rgb_controllers);
|
|
DetectRGBFusionControllers(busses, rgb_controllers);
|
|
|
|
DetectLEDStripControllers(rgb_controllers);
|
|
DetectHue2Controllers(rgb_controllers);
|
|
DetectHuePlusControllers(rgb_controllers);
|
|
|
|
DetectAMDWraithPrismControllers(rgb_controllers);
|
|
|
|
DetectE131Controllers(rgb_controllers);
|
|
|
|
/*-------------------------------------*\
|
|
| Windows-only devices |
|
|
\*-------------------------------------*/
|
|
#ifdef WIN32
|
|
DetectRazerChromaSDKControllers(rgb_controllers);
|
|
//DetectAorusGPUControllers(rgb_controllers);
|
|
|
|
/*-------------------------------------*\
|
|
| Linux-only devices |
|
|
\*-------------------------------------*/
|
|
#else
|
|
DetectOpenRazerControllers(rgb_controllers);
|
|
#endif
|
|
|
|
} /* DetectRGBControllers() */
|