diff --git a/powerstats/shiba/service.cpp b/powerstats/shiba/service.cpp index 342d6ca..c29fbca 100644 --- a/powerstats/shiba/service.cpp +++ b/powerstats/shiba/service.cpp @@ -35,11 +35,11 @@ void addDisplay(std::shared_ptr p) { // Add display residency stats std::vector states = { "Off", - "LP: 1080x2340@30", - "On: 1080x2340@60", - "On: 1080x2340@90", - "HBM: 1080x2340@60", - "HBM: 1080x2340@90"}; + "LP: 1080x2400@30", + "On: 1080x2400@60", + "On: 1080x2400@120", + "HBM: 1080x2400@60", + "HBM: 1080x2400@120"}; p->addStateResidencyDataProvider(std::make_unique( "Display", @@ -47,13 +47,11 @@ void addDisplay(std::shared_ptr p) { states)); // Add display energy consumer - p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterAndEntityConsumer( - p, EnergyConsumerType::DISPLAY, "display", {"PPVAR_VSYS_PWR_DISP"}, "Display", - {{"LP: 1080x2340@30", 1}, - {"On: 1080x2340@60", 2}, - {"On: 1080x2340@90", 3}, - {"HBM: 1080x2340@60", 4}, - {"HBM: 1080x2340@90", 5}})); + p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterConsumer( + p, + EnergyConsumerType::DISPLAY, + "DISPLAY", + {"VSYS_PWR_DISPLAY"})); } int main() {