/* * Copyright (C) 2020 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "AocStateResidencyDataProvider.h" #include "DevfreqStateResidencyDataProvider.h" #include "DvfsStateResidencyDataProvider.h" #include "UfsStateResidencyDataProvider.h" #include #include #include #include #include #include #include #include #include #include using aidl::android::hardware::power::stats::AocStateResidencyDataProvider; using aidl::android::hardware::power::stats::DevfreqStateResidencyDataProvider; using aidl::android::hardware::power::stats::DvfsStateResidencyDataProvider; using aidl::android::hardware::power::stats::UfsStateResidencyDataProvider; using aidl::android::hardware::power::stats::EnergyConsumerType; using aidl::android::hardware::power::stats::GenericStateResidencyDataProvider; using aidl::android::hardware::power::stats::IioEnergyMeterDataProvider; using aidl::android::hardware::power::stats::PixelStateResidencyDataProvider; using aidl::android::hardware::power::stats::PowerStatsEnergyConsumer; constexpr char kBootHwSoCRev[] = "ro.boot.hw.soc.rev"; // TODO (b/181070764) (b/182941084): // Remove this when Wifi/BT energy consumption models are available or revert before ship using aidl::android::hardware::power::stats::EnergyConsumerResult; using aidl::android::hardware::power::stats::Channel; using aidl::android::hardware::power::stats::EnergyMeasurement; class PlaceholderEnergyConsumer : public PowerStats::IEnergyConsumer { public: PlaceholderEnergyConsumer(std::shared_ptr p, EnergyConsumerType type, std::string name) : kType(type), kName(name), mPowerStats(p), mChannelId(-1) { std::vector channels; mPowerStats->getEnergyMeterInfo(&channels); for (const auto &c : channels) { if (c.name == "VSYS_PWR_WLAN_BT") { mChannelId = c.id; break; } } } std::pair getInfo() override { return {kType, kName}; } std::optional getEnergyConsumed() override { int64_t totalEnergyUWs = 0; int64_t timestampMs = 0; if (mChannelId != -1) { std::vector measurements; if (mPowerStats->readEnergyMeter({mChannelId}, &measurements).isOk()) { for (const auto &m : measurements) { totalEnergyUWs += m.energyUWs; timestampMs = m.timestampMs; } } else { LOG(ERROR) << "Failed to read energy meter"; return {}; } } return EnergyConsumerResult{.timestampMs = timestampMs, .energyUWs = totalEnergyUWs>>1}; } std::string getConsumerName() override { return kName; }; private: const EnergyConsumerType kType; const std::string kName; std::shared_ptr mPowerStats; int32_t mChannelId; }; void addPlaceholderEnergyConsumers(std::shared_ptr p) { p->addEnergyConsumer( std::make_unique(p, EnergyConsumerType::WIFI, "Wifi")); p->addEnergyConsumer( std::make_unique(p, EnergyConsumerType::BLUETOOTH, "BT")); } void addAoC(std::shared_ptr p) { std::string prefix = "/sys/devices/platform/19000000.aoc/control/"; // Add AoC cores (a32, ff1, hf0, and hf1) std::vector> coreIds = { {"AoC-A32", prefix + "a32_"}, {"AoC-FF1", prefix + "ff1_"}, {"AoC-HF1", prefix + "hf1_"}, {"AoC-HF0", prefix + "hf0_"}, }; std::vector> coreStates = { {"DWN", "off"}, {"RET", "retention"}, {"WFI", "wfi"}}; p->addStateResidencyDataProvider(std::make_unique(coreIds, coreStates)); // Add AoC voltage stats std::vector> voltageIds = { {"AoC-Voltage", prefix + "voltage_"}, }; std::vector> voltageStates = {{"NOM", "nominal"}, {"SUD", "super_underdrive"}, {"UUD", "ultra_underdrive"}, {"UD", "underdrive"}}; p->addStateResidencyDataProvider( std::make_unique(voltageIds, voltageStates)); // Add AoC monitor mode std::vector> monitorIds = { {"AoC", prefix + "monitor_"}, }; std::vector> monitorStates = { {"MON", "mode"}, }; p->addStateResidencyDataProvider( std::make_unique(monitorIds, monitorStates)); } void addDvfsStats(std::shared_ptr p) { // A constant to represent the number of nanoseconds in one millisecond const int NS_TO_MS = 1000000; std::vector cfgs; cfgs.push_back({"MIF", { std::make_pair("3172KHz", "3172000"), std::make_pair("2730KHz", "2730000"), std::make_pair("2535KHz", "2535000"), std::make_pair("2288KHz", "2288000"), std::make_pair("2028KHz", "2028000"), std::make_pair("1716KHz", "1716000"), std::make_pair("1539KHz", "1539000"), std::make_pair("1352KHz", "1352000"), std::make_pair("1014KHz", "1014000"), std::make_pair("845KHz", "845000"), std::make_pair("676KHz", "676000"), std::make_pair("546KHz", "546000"), std::make_pair("421KHz", "421000"), std::make_pair("0KHz", "0"), }}); cfgs.push_back({"CL1", { std::make_pair("2466KHz", "2466000"), std::make_pair("2393KHz", "2393000"), std::make_pair("2348KHz", "2348000"), std::make_pair("2253KHz", "2253000"), std::make_pair("2130KHz", "2130000"), std::make_pair("1999KHz", "1999000"), std::make_pair("1836KHz", "1836000"), std::make_pair("1663KHz", "1663000"), std::make_pair("1491KHz", "1491000"), std::make_pair("1328KHz", "1328000"), std::make_pair("1197KHz", "1197000"), std::make_pair("1024KHz", "1024000"), std::make_pair("910KHz", "910000"), std::make_pair("799KHz", "799000"), std::make_pair("696KHz", "696000"), std::make_pair("533KHz", "533000"), std::make_pair("400KHz", "400000"), std::make_pair("0KHz", "0"), }}); // B0/B1 chips have different DVFS operating points than A0/A1 SoC const int socRev = android::base::GetIntProperty(kBootHwSoCRev, 0); if (socRev >= 2) { cfgs.push_back({"CL0", { std::make_pair("2196KHz", "2196000"), std::make_pair("2098KHz", "2098000"), std::make_pair("2024KHz", "2024000"), std::make_pair("1950KHz", "1950000"), std::make_pair("1803KHz", "1803000"), std::make_pair("1704KHz", "1704000"), std::make_pair("1598KHz", "1598000"), std::make_pair("1401KHz", "1401000"), std::make_pair("1328KHz", "1328000"), std::make_pair("1197KHz", "1197000"), std::make_pair("1098KHz", "1098000"), std::make_pair("930KHz", "930000"), std::make_pair("738KHz", "738000"), std::make_pair("574KHz", "574000"), std::make_pair("300KHz", "300000"), std::make_pair("0KHz", "0"), }}); cfgs.push_back({"CL2", { std::make_pair("3195KHz", "3195000"), std::make_pair("3097KHz", "3097000"), std::make_pair("2950KHz", "2950000"), std::make_pair("2850KHz", "2850000"), std::make_pair("2802KHz", "2802000"), std::make_pair("2704KHz", "2704000"), std::make_pair("2630KHz", "2630000"), std::make_pair("2507KHz", "2507000"), std::make_pair("2401KHz", "2401000"), std::make_pair("2252KHz", "2252000"), std::make_pair("2188KHz", "2188000"), std::make_pair("2048KHz", "2048000"), std::make_pair("1826KHz", "1826000"), std::make_pair("1745KHz", "1745000"), std::make_pair("1582KHz", "1582000"), std::make_pair("1426KHz", "1426000"), std::make_pair("1277KHz", "1277000"), std::make_pair("1106KHz", "1106000"), std::make_pair("984KHz", "984000"), std::make_pair("851KHz", "851000"), std::make_pair("500KHz", "500000"), std::make_pair("0KHz", "0"), }}); cfgs.push_back({"TPU", { std::make_pair("1393KHz", "1393000"), std::make_pair("1180KHz", "1180000"), std::make_pair("1024KHz", "1024000"), std::make_pair("967KHz", "967000"), std::make_pair("836KHz", "836000"), std::make_pair("627KHz", "627000"), std::make_pair("455KHz", "455000"), std::make_pair("226KHz", "226000"), std::make_pair("RET_SLOW", "6"), std::make_pair("S_OFF", "5"), std::make_pair("S_SLOW", "4"), std::make_pair("DS_FAST", "3"), std::make_pair("DS_SLOW", "2"), std::make_pair("DS_OFF", "1"), std::make_pair("OFF", "0"), }}); } else { cfgs.push_back({"CL0", { std::make_pair("2196KHz", "2196000"), std::make_pair("2098KHz", "2098000"), std::make_pair("2024KHz", "2024000"), std::make_pair("1950KHz", "1950000"), std::make_pair("1868KHz", "1868000"), std::make_pair("1745KHz", "1745000"), std::make_pair("1598KHz", "1598000"), std::make_pair("1459KHz", "1459000"), std::make_pair("1328KHz", "1328000"), std::make_pair("1197KHz", "1197000"), std::make_pair("1098KHz", "1098000"), std::make_pair("889KHz", "889000"), std::make_pair("738KHz", "738000"), std::make_pair("574KHz", "574000"), std::make_pair("300KHz", "300000"), std::make_pair("0KHz", "0"), }}); cfgs.push_back({"CL2", { std::make_pair("3195KHz", "3195000"), std::make_pair("3097KHz", "3097000"), std::make_pair("2999KHz", "2999000"), std::make_pair("2900KHz", "2900000"), std::make_pair("2802KHz", "2802000"), std::make_pair("2704KHz", "2704000"), std::make_pair("2630KHz", "2630000"), std::make_pair("2507KHz", "2507000"), std::make_pair("2302KHz", "2302000"), std::make_pair("2188KHz", "2188000"), std::make_pair("2048KHz", "2048000"), std::make_pair("1901KHz", "1901000"), std::make_pair("1745KHz", "1745000"), std::make_pair("1582KHz", "1582000"), std::make_pair("1426KHz", "1426000"), std::make_pair("1237KHz", "1237000"), std::make_pair("1106KHz", "1106000"), std::make_pair("984KHz", "984000"), std::make_pair("848KHz", "848000"), std::make_pair("500KHz", "500000"), std::make_pair("0KHz", "0"), }}); cfgs.push_back({"TPU", { std::make_pair("1393KHz", "1393000"), std::make_pair("1180KHz", "1180000"), std::make_pair("1049KHz", "1049000"), std::make_pair("967KHz", "967000"), std::make_pair("721KHz", "721000"), std::make_pair("648KHz", "648000"), std::make_pair("455KHz", "455000"), std::make_pair("250KHz", "250000"), std::make_pair("RET_SLOW", "6"), std::make_pair("S_OFF", "5"), std::make_pair("S_SLOW", "4"), std::make_pair("DS_FAST", "3"), std::make_pair("DS_SLOW", "2"), std::make_pair("DS_OFF", "1"), std::make_pair("OFF", "0"), }}); } p->addStateResidencyDataProvider(std::make_unique( "/sys/devices/platform/acpm_stats/fvp_stats", NS_TO_MS, cfgs)); } void addSoC(std::shared_ptr p) { // A constant to represent the number of nanoseconds in one millisecond. const int NS_TO_MS = 1000000; // ACPM stats are reported in nanoseconds. The transform function // converts nanoseconds to milliseconds. std::function acpmNsToMs = [](uint64_t a) { return a / NS_TO_MS; }; const GenericStateResidencyDataProvider::StateResidencyConfig lpmStateConfig = { .entryCountSupported = true, .entryCountPrefix = "success_count:", .totalTimeSupported = true, .totalTimePrefix = "total_time_ns:", .totalTimeTransform = acpmNsToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_entry_time_ns:", .lastEntryTransform = acpmNsToMs, }; const GenericStateResidencyDataProvider::StateResidencyConfig downStateConfig = { .entryCountSupported = true, .entryCountPrefix = "down_count:", .totalTimeSupported = true, .totalTimePrefix = "total_down_time_ns:", .totalTimeTransform = acpmNsToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_down_time_ns:", .lastEntryTransform = acpmNsToMs, }; const GenericStateResidencyDataProvider::StateResidencyConfig reqStateConfig = { .entryCountSupported = true, .entryCountPrefix = "req_up_count:", .totalTimeSupported = true, .totalTimePrefix = "total_req_up_time_ns:", .totalTimeTransform = acpmNsToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_req_up_time_ns:", .lastEntryTransform = acpmNsToMs, }; const std::vector> powerStateHeaders = { std::make_pair("SICD", "SICD"), std::make_pair("SLEEP", "SLEEP"), std::make_pair("SLEEP_SLCMON", "SLEEP_SLCMON"), std::make_pair("STOP", "STOP"), }; const std::vector> mifReqStateHeaders = { std::make_pair("AOC", "AOC"), std::make_pair("GSA", "GSA"), }; const std::vector> slcReqStateHeaders = { std::make_pair("AOC", "AOC"), }; std::vector cfgs; cfgs.emplace_back(generateGenericStateResidencyConfigs(lpmStateConfig, powerStateHeaders), "LPM", "LPM:"); cfgs.emplace_back(generateGenericStateResidencyConfigs(downStateConfig, powerStateHeaders), "MIF", "MIF:"); cfgs.emplace_back(generateGenericStateResidencyConfigs(reqStateConfig, mifReqStateHeaders), "MIF-REQ", "MIF_REQ:"); cfgs.emplace_back(generateGenericStateResidencyConfigs(downStateConfig, powerStateHeaders), "SLC", "SLC:"); cfgs.emplace_back(generateGenericStateResidencyConfigs(reqStateConfig, slcReqStateHeaders), "SLC-REQ", "SLC_REQ:"); p->addStateResidencyDataProvider(std::make_unique( "/sys/devices/platform/acpm_stats/soc_stats", cfgs)); } void setEnergyMeter(std::shared_ptr p) { std::vector deviceNames { "s2mpg10-odpm", "s2mpg11-odpm" }; p->setEnergyMeterDataProvider(std::make_unique(deviceNames, true)); } void addCPUclusters(std::shared_ptr p) { // A constant to represent the number of nanoseconds in one millisecond. const int NS_TO_MS = 1000000; std::function acpmNsToMs = [](uint64_t a) { return a / NS_TO_MS; }; const GenericStateResidencyDataProvider::StateResidencyConfig cpuStateConfig = { .entryCountSupported = true, .entryCountPrefix = "down_count:", .totalTimeSupported = true, .totalTimePrefix = "total_down_time_ns:", .totalTimeTransform = acpmNsToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_down_time_ns:", .lastEntryTransform = acpmNsToMs, }; const std::vector> cpuStateHeaders = { std::make_pair("DOWN", ""), }; std::vector cfgs; for (std::string name : {"CORE00", "CORE01", "CORE02", "CORE03", "CORE10", "CORE11", "CORE20", "CORE21", "CLUSTER0", "CLUSTER1", "CLUSTER2"}) { cfgs.emplace_back(generateGenericStateResidencyConfigs(cpuStateConfig, cpuStateHeaders), name, name); } p->addStateResidencyDataProvider(std::make_unique( "/sys/devices/platform/acpm_stats/core_stats", cfgs)); p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterConsumer(p, EnergyConsumerType::CPU_CLUSTER, "CPUCL0", {"S4M_VDD_CPUCL0"})); p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterConsumer(p, EnergyConsumerType::CPU_CLUSTER, "CPUCL1", {"S3M_VDD_CPUCL1"})); p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterConsumer(p, EnergyConsumerType::CPU_CLUSTER, "CPUCL2", {"S2M_VDD_CPUCL2"})); } void addGPU(std::shared_ptr p) { // Add gpu energy consumer std::map stateCoeffs; const int socRev = android::base::GetIntProperty(kBootHwSoCRev, 0); // B0/B1 chips have different GPU DVFS operating points than A0/A1 SoC if (socRev >= 2) { stateCoeffs = { {"151000", 642}, {"202000", 890}, {"251000", 1102}, {"302000", 1308}, {"351000", 1522}, {"400000", 1772}, {"471000", 2105}, {"510000", 2292}, {"572000", 2528}, {"701000", 3127}, {"762000", 3452}, {"848000", 4044}}; } else { stateCoeffs = { {"151000", 843}, {"302000", 1529}, {"455000", 2298}, {"572000", 2866}, {"670000", 3191}}; } p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterAndAttrConsumer(p, EnergyConsumerType::OTHER, "GPU", {"S2S_VDD_G3D"}, {{UID_TIME_IN_STATE, "/sys/devices/platform/1c500000.mali/uid_time_in_state"}}, stateCoeffs)); } void addMobileRadio(std::shared_ptr p) { // A constant to represent the number of microseconds in one millisecond. const int US_TO_MS = 1000; // modem power_stats are reported in microseconds. The transform function // converts microseconds to milliseconds. std::function modemUsToMs = [](uint64_t a) { return a / US_TO_MS; }; const GenericStateResidencyDataProvider::StateResidencyConfig powerStateConfig = { .entryCountSupported = true, .entryCountPrefix = "count:", .totalTimeSupported = true, .totalTimePrefix = "duration_usec:", .totalTimeTransform = modemUsToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_entry_timestamp_usec:", .lastEntryTransform = modemUsToMs, }; const std::vector> powerStateHeaders = { std::make_pair("SLEEP", "SLEEP:"), }; std::vector cfgs; cfgs.emplace_back(generateGenericStateResidencyConfigs(powerStateConfig, powerStateHeaders), "MODEM", ""); p->addStateResidencyDataProvider(std::make_unique( "/sys/devices/platform/cpif/modem/power_stats", cfgs)); p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterConsumer(p, EnergyConsumerType::MOBILE_RADIO, "MODEM", {"VSYS_PWR_MODEM", "VSYS_PWR_RFFE"})); } void addGNSS(std::shared_ptr p) { // A constant to represent the number of microseconds in one millisecond. const int US_TO_MS = 1000; // gnss power_stats are reported in microseconds. The transform function // converts microseconds to milliseconds. std::function gnssUsToMs = [](uint64_t a) { return a / US_TO_MS; }; const GenericStateResidencyDataProvider::StateResidencyConfig gnssStateConfig = { .entryCountSupported = true, .entryCountPrefix = "count:", .totalTimeSupported = true, .totalTimePrefix = "duration_usec:", .totalTimeTransform = gnssUsToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_entry_timestamp_usec:", .lastEntryTransform = gnssUsToMs, }; const std::vector> gnssStateHeaders = { std::make_pair("ON", "GPS_ON:"), std::make_pair("OFF", "GPS_OFF:"), }; std::vector cfgs; cfgs.emplace_back(generateGenericStateResidencyConfigs(gnssStateConfig, gnssStateHeaders), "GPS", ""); p->addStateResidencyDataProvider(std::make_unique( "/dev/bbd_pwrstat", cfgs)); p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterConsumer(p, EnergyConsumerType::GNSS, "GPS", {"L9S_GNSS_CORE"})); } void addPCIe(std::shared_ptr p) { // Add PCIe power entities for Modem and WiFi const GenericStateResidencyDataProvider::StateResidencyConfig pcieStateConfig = { .entryCountSupported = true, .entryCountPrefix = "Cumulative count:", .totalTimeSupported = true, .totalTimePrefix = "Cumulative duration msec:", .lastEntrySupported = true, .lastEntryPrefix = "Last entry timestamp msec:", }; const std::vector> pcieStateHeaders = { std::make_pair("UP", "Link up:"), std::make_pair("DOWN", "Link down:"), }; // Add PCIe - Modem const std::vector pcieModemCfgs = { {generateGenericStateResidencyConfigs(pcieStateConfig, pcieStateHeaders), "PCIe-Modem", "Version: 1"} }; p->addStateResidencyDataProvider(std::make_unique( "/sys/devices/platform/11920000.pcie/power_stats", pcieModemCfgs)); // Add PCIe - WiFi const std::vector pcieWifiCfgs = { {generateGenericStateResidencyConfigs(pcieStateConfig, pcieStateHeaders), "PCIe-WiFi", "Version: 1"} }; p->addStateResidencyDataProvider(std::make_unique( "/sys/devices/platform/14520000.pcie/power_stats", pcieWifiCfgs)); } void addWifi(std::shared_ptr p) { // The transform function converts microseconds to milliseconds. std::function usecToMs = [](uint64_t a) { return a / 1000; }; const GenericStateResidencyDataProvider::StateResidencyConfig stateConfig = { .entryCountSupported = true, .entryCountPrefix = "count:", .totalTimeSupported = true, .totalTimePrefix = "duration_usec:", .totalTimeTransform = usecToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_entry_timestamp_usec:", .lastEntryTransform = usecToMs, }; const GenericStateResidencyDataProvider::StateResidencyConfig pcieStateConfig = { .entryCountSupported = true, .entryCountPrefix = "count:", .totalTimeSupported = true, .totalTimePrefix = "duration_usec:", .totalTimeTransform = usecToMs, .lastEntrySupported = false, }; const std::vector> stateHeaders = { std::make_pair("AWAKE", "AWAKE:"), std::make_pair("ASLEEP", "ASLEEP:"), }; const std::vector> pcieStateHeaders = { std::make_pair("L0", "L0:"), std::make_pair("L1", "L1:"), std::make_pair("L1_1", "L1_1:"), std::make_pair("L1_2", "L1_2:"), std::make_pair("L2", "L2:"), }; const std::vector cfgs = { {generateGenericStateResidencyConfigs(stateConfig, stateHeaders), "WIFI", "WIFI"}, {generateGenericStateResidencyConfigs(pcieStateConfig, pcieStateHeaders), "WIFI-PCIE", "WIFI-PCIE"} }; p->addStateResidencyDataProvider(std::make_unique("/sys/wifi/power_stats", cfgs)); } void addUfs(std::shared_ptr p) { p->addStateResidencyDataProvider(std::make_unique("/sys/bus/platform/devices/14700000.ufs/ufs_stats/")); } void addPowerDomains(std::shared_ptr p) { // A constant to represent the number of nanoseconds in one millisecond. const int NS_TO_MS = 1000000; std::function acpmNsToMs = [](uint64_t a) { return a / NS_TO_MS; }; const GenericStateResidencyDataProvider::StateResidencyConfig cpuStateConfig = { .entryCountSupported = true, .entryCountPrefix = "on_count:", .totalTimeSupported = true, .totalTimePrefix = "total_on_time_ns:", .totalTimeTransform = acpmNsToMs, .lastEntrySupported = true, .lastEntryPrefix = "last_on_time_ns:", .lastEntryTransform = acpmNsToMs, }; const std::vector> cpuStateHeaders = { std::make_pair("ON", ""), }; std::vector cfgs; for (std::string name : {"pd-tpu", "pd-bo", "pd-tnr", "pd-gdc", "pd-mcsc", "pd-ipp", "pd-g3aa", "pd-dns", "pd-itp", "pd-pdp", "pd-csis", "pd-mfc", "pd-g2d", "pd-dpu", "pd-disp", "pd-hsi0", "pd-embedded_g3d", "pd-g3d", "pd-eh"}) { cfgs.emplace_back(generateGenericStateResidencyConfigs(cpuStateConfig, cpuStateHeaders), name, name + ":"); } p->addStateResidencyDataProvider(std::make_unique( "/sys/devices/platform/acpm_stats/pd_stats", cfgs)); } void addDevfreq(std::shared_ptr p) { p->addStateResidencyDataProvider(std::make_unique( "INT", "/sys/devices/platform/17000020.devfreq_int/devfreq/17000020.devfreq_int")); } void addTPU(std::shared_ptr p) { std::map stateCoeffs; stateCoeffs = { {"500000", 10}, {"800000", 20}, {"1066000", 30}, {"1230000", 40}}; p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterAndAttrConsumer(p, EnergyConsumerType::OTHER, "TPU", {"S10M_VDD_TPU"}, {{UID_TIME_IN_STATE, "/sys/class/edgetpu/abrolhos/device/tpu_usage"}}, stateCoeffs)); } /** * Unlike other data providers, which source power entity state residency data from the kernel, * this data provider acts as a general-purpose channel for state residency data providers * that live in user space. Entities are defined here and user space clients of this provider's * vendor service register callbacks to provide state residency data for their given pwoer entity. */ void addPixelStateResidencyDataProvider(std::shared_ptr p) { auto pixelSdp = std::make_unique(); pixelSdp->addEntity("Bluetooth", {{0, "Idle"}, {1, "Active"}, {2, "Tx"}, {3, "Rx"}}); pixelSdp->start(); p->addStateResidencyDataProvider(std::move(pixelSdp)); } void addGs201CommonDataProviders(std::shared_ptr p) { setEnergyMeter(p); addPixelStateResidencyDataProvider(p); addAoC(p); addDvfsStats(p); addSoC(p); addCPUclusters(p); addGPU(p); addMobileRadio(p); addGNSS(p); addPCIe(p); addWifi(p); addUfs(p); addPowerDomains(p); addDevfreq(p); addTPU(p); // TODO (b/181070764) (b/182941084): // Remove this when Wifi/BT energy consumption models are available or revert before ship addPlaceholderEnergyConsumers(p); } void addNFC(std::shared_ptr p, const std::string& path) { const GenericStateResidencyDataProvider::StateResidencyConfig nfcStateConfig = { .entryCountSupported = true, .entryCountPrefix = "Cumulative count:", .totalTimeSupported = true, .totalTimePrefix = "Cumulative duration msec:", .lastEntrySupported = true, .lastEntryPrefix = "Last entry timestamp msec:", }; const std::vector> nfcStateHeaders = { std::make_pair("IDLE", "Idle mode:"), std::make_pair("ACTIVE", "Active mode:"), std::make_pair("ACTIVE-RW", "Active Reader/Writer mode:"), }; std::vector cfgs; cfgs.emplace_back(generateGenericStateResidencyConfigs(nfcStateConfig, nfcStateHeaders), "NFC", "NFC subsystem"); p->addStateResidencyDataProvider(std::make_unique( path, cfgs)); }