1 /*
2  * Copyright (C) 2021 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #define LOG_TAG "android.hardware.power.stats-service.pixel"
18 
19 #include <dataproviders/DisplayStateResidencyDataProvider.h>
20 #include <dataproviders/PowerStatsEnergyConsumer.h>
21 #include <Gs101CommonDataProviders.h>
22 #include <PowerStatsAidl.h>
23 
24 #include <android-base/logging.h>
25 #include <android-base/properties.h>
26 #include <android/binder_manager.h>
27 #include <android/binder_process.h>
28 #include <log/log.h>
29 
30 using aidl::android::hardware::power::stats::DisplayStateResidencyDataProvider;
31 using aidl::android::hardware::power::stats::EnergyConsumerType;
32 using aidl::android::hardware::power::stats::PowerStatsEnergyConsumer;
33 
addDisplay(std::shared_ptr<PowerStats> p)34 void addDisplay(std::shared_ptr<PowerStats> p) {
35     // Add display residency stats
36     std::vector<std::string> states = {
37         "Off",
38         "LP: 1080x2340@30",
39         "On: 1080x2340@60",
40         "On: 1080x2340@90",
41         "HBM: 1080x2340@60",
42         "HBM: 1080x2340@90"};
43 
44     p->addStateResidencyDataProvider(std::make_unique<DisplayStateResidencyDataProvider>("Display",
45             "/sys/class/backlight/panel0-backlight/state",
46             states));
47 
48     // Add display energy consumer
49     /*
50      * TODO(b/167216667): Add correct display power model here. Must read from display rail
51      * and include proper coefficients for display states.
52      */
53     p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterAndEntityConsumer(p,
54             EnergyConsumerType::DISPLAY, "display", {"PPVAR_VSYS_PWR_DISP"}, "Display",
55             {{"LP: 1440x3040@30", 1},
56              {"On: 1440x3040@60", 2},
57              {"On: 1440x3040@90", 3}}));
58 }
59 
main()60 int main() {
61     LOG(INFO) << "Pixel PowerStats HAL AIDL Service is starting.";
62 
63     // single thread
64     ABinderProcess_setThreadPoolMaxThreadCount(0);
65 
66     std::shared_ptr<PowerStats> p = ndk::SharedRefBase::make<PowerStats>();
67 
68     addGs101CommonDataProviders(p);
69     addDisplay(p);
70 
71     const std::string instance = std::string() + PowerStats::descriptor + "/default";
72     binder_status_t status = AServiceManager_addService(p->asBinder().get(), instance.c_str());
73     LOG_ALWAYS_FATAL_IF(status != STATUS_OK);
74 
75     ABinderProcess_joinThreadPool();
76     return EXIT_FAILURE;  // should not reach
77 }
78