ENE SMBus Controller AUMA0-E6K5-1110 detection.

This commit is contained in:
ronny332
2023-02-07 17:33:48 +00:00
committed by Adam Honse
parent 4879ae9bbe
commit 1e89f652cc
2 changed files with 12 additions and 0 deletions

View File

@@ -132,6 +132,17 @@ ENESMBusController::ENESMBusController(ENESMBusInterface* interface, ene_dev_id
// Read LED count from configuration table
led_count = config_table[ENE_CONFIG_LED_COUNT_0107];
}
// AUMA0-E6K5-1110 - Third generation GPU controller?
// found an ASUS ROG Strix 4080 OC, seems to be equal to AUMA0-E6K5-0107
else if (strcmp(device_name, "AUMA0-E6K5-1110") == 0)
{
direct_reg = ENE_REG_COLORS_DIRECT_V2;
effect_reg = ENE_REG_COLORS_EFFECT_V2;
channel_cfg = ENE_CONFIG_CHANNEL_V2;
// Read LED count from configuration table
led_count = config_table[ENE_CONFIG_LED_COUNT_1110];
}
// Assume first generation controller if string does not match
else
{