/* * Copyright (C) 2018 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. */ #define LOG_TAG "android.hardware.health@2.1-impl-sunfish" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace { using namespace std::literals; using android::hardware::health::V1_0::hal_conversion::convertFromHealthInfo; using android::hardware::health::V1_0::hal_conversion::convertToHealthInfo; using android::hardware::health::V2_0::DiskStats; using android::hardware::health::V2_0::StorageAttribute; using android::hardware::health::V2_0::StorageInfo; using android::hardware::health::V2_0::Result; using ::android::hardware::health::V2_1::IHealth; using android::hardware::health::InitHealthdConfig; using hardware::google::pixel::health::BatteryDefender; using hardware::google::pixel::health::BatteryMetricsLogger; using hardware::google::pixel::health::DeviceHealth; using hardware::google::pixel::health::LowBatteryShutdownMetrics; #define FG_DIR "/sys/class/power_supply" constexpr char kBatteryResistance[] {FG_DIR "/bms/resistance"}; constexpr char kBatteryOCV[] {FG_DIR "/bms/voltage_ocv"}; constexpr char kVoltageAvg[] {FG_DIR "/battery/voltage_now"}; static BatteryDefender battDefender; static BatteryMetricsLogger battMetricsLogger(kBatteryResistance, kBatteryOCV); static LowBatteryShutdownMetrics shutdownMetrics(kVoltageAvg); static DeviceHealth deviceHealth; #define UFS_DIR "/sys/devices/platform/soc/1d84000.ufshc" constexpr char kUfsHealthEol[]{UFS_DIR "/health/eol"}; constexpr char kUfsHealthLifetimeA[]{UFS_DIR "/health/lifetimeA"}; constexpr char kUfsHealthLifetimeB[]{UFS_DIR "/health/lifetimeB"}; constexpr char kUfsVersion[]{UFS_DIR "/version"}; constexpr char kDiskStatsFile[]{"/sys/block/sda/stat"}; constexpr char kUFSName[]{"UFS0"}; constexpr char kTCPMPSYName[]{"tcpm-source-psy-usbpd0"}; std::ifstream assert_open(const std::string &path) { std::ifstream stream(path); if (!stream.is_open()) { LOG(WARNING) << "Cannot read " << path; } return stream; } template void read_value_from_file(const std::string &path, T *field) { auto stream = assert_open(path); stream.unsetf(std::ios_base::basefield); stream >> *field; } void read_ufs_version(StorageInfo *info) { uint64_t value; read_value_from_file(kUfsVersion, &value); std::stringstream ss; ss << "ufs " << std::hex << value; info->version = ss.str(); } void fill_ufs_storage_attribute(StorageAttribute *attr) { attr->isInternal = true; attr->isBootDevice = true; attr->name = kUFSName; } void private_healthd_board_init(struct healthd_config *hc) { hc->ignorePowerSupplyNames.push_back(android::String8(kTCPMPSYName)); } int private_healthd_board_battery_update(struct android::BatteryProperties *props) { deviceHealth.update(props); battMetricsLogger.logBatteryProperties(props); shutdownMetrics.logShutdownVoltage(props); battDefender.update(props); return 0; } void private_get_storage_info(std::vector &vec_storage_info) { vec_storage_info.resize(1); StorageInfo *storage_info = &vec_storage_info[0]; fill_ufs_storage_attribute(&storage_info->attr); read_ufs_version(storage_info); read_value_from_file(kUfsHealthEol, &storage_info->eol); read_value_from_file(kUfsHealthLifetimeA, &storage_info->lifetimeA); read_value_from_file(kUfsHealthLifetimeB, &storage_info->lifetimeB); return; } void private_get_disk_stats(std::vector &vec_stats) { vec_stats.resize(1); DiskStats *stats = &vec_stats[0]; fill_ufs_storage_attribute(&stats->attr); auto stream = assert_open(kDiskStatsFile); // Regular diskstats entries stream >> stats->reads >> stats->readMerges >> stats->readSectors >> stats->readTicks >> stats->writes >> stats->writeMerges >> stats->writeSectors >> stats->writeTicks >> stats->ioInFlight >> stats->ioTicks >> stats->ioInQueue; return; } } // anonymous namespace namespace android { namespace hardware { namespace health { namespace V2_1 { namespace implementation { class HealthImpl : public Health { public: HealthImpl(std::unique_ptr&& config) : Health(std::move(config)) {} Return getStorageInfo(getStorageInfo_cb _hidl_cb) override; Return getDiskStats(getDiskStats_cb _hidl_cb) override; protected: void UpdateHealthInfo(HealthInfo* health_info) override; }; void HealthImpl::UpdateHealthInfo(HealthInfo* health_info) { struct BatteryProperties props; convertFromHealthInfo(health_info->legacy.legacy, &props); private_healthd_board_battery_update(&props); convertToHealthInfo(&props, health_info->legacy.legacy); } Return HealthImpl::getStorageInfo(getStorageInfo_cb _hidl_cb) { std::vector info; private_get_storage_info(info); hidl_vec info_vec(info); if (!info.size()) { _hidl_cb(Result::NOT_SUPPORTED, info_vec); } else { _hidl_cb(Result::SUCCESS, info_vec); } return Void(); } Return HealthImpl::getDiskStats(getDiskStats_cb _hidl_cb) { std::vector stats; private_get_disk_stats(stats); hidl_vec stats_vec(stats); if (!stats.size()) { _hidl_cb(Result::NOT_SUPPORTED, stats_vec); } else { _hidl_cb(Result::SUCCESS, stats_vec); } return Void(); } } // namespace implementation } // namespace V2_1 } // namespace health } // namespace hardware } // namespace android extern "C" IHealth* HIDL_FETCH_IHealth(const char* instance) { using ::android::hardware::health::V2_1::implementation::HealthImpl; if (instance != "default"sv) { return nullptr; } auto config = std::make_unique(); InitHealthdConfig(config.get()); private_healthd_board_init(config.get()); return new HealthImpl(std::move(config)); }