blob: c0510d103ead05f43b95b4ab944b1685e56f4876 [file] [log] [blame]
/*
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <unordered_map>
#include <android-base/logging.h>
#include <android/hardware/thermal/2.0/IThermal.h>
#include "thermalData.h"
#include "thermalConfig.h"
namespace android {
namespace hardware {
namespace thermal {
namespace V2_0 {
namespace implementation {
constexpr std::string_view socIDPath("/sys/devices/soc0/soc_id");
std::vector<std::string> cpu_sensors_lito =
{
"cpu-0-0-usr",
"cpu-0-1-usr",
"cpu-0-2-usr",
"cpu-0-3-usr",
"cpu-0-4-usr",
"cpu-0-5-usr",
"cpu-1-0-usr",
"cpu-1-2-usr",
};
std::vector<struct target_therm_cfg> sensor_cfg_lito =
{
{
TemperatureType::CPU,
cpu_sensors_lito,
"",
95000,
115000,
95000,
true,
},
{
TemperatureType::GPU,
{ "gpuss-0-usr" },
"GPU",
95000,
115000,
95000,
true,
},
{
TemperatureType::SKIN,
{ "xo-therm-usr" },
"skin",
40000,
45000,
40000,
true,
},
{
TemperatureType::BCL_CURRENT,
{ "pm7250b-ibat-lvl0" },
"ibat",
4500,
5000,
4500,
true,
},
{
TemperatureType::BCL_VOLTAGE,
{ "pm7250b-vbat-lvl0" },
"vbat",
3200,
3000,
3200,
false,
},
{
TemperatureType::BCL_PERCENTAGE,
{ "soc" },
"soc",
10,
2,
10,
false,
},
};
std::vector<std::string> cpu_sensors_kona =
{
"cpu-0-0-usr",
"cpu-0-1-usr",
"cpu-0-2-usr",
"cpu-0-3-usr",
"cpu-1-0-usr",
"cpu-1-1-usr",
"cpu-1-2-usr",
"cpu-1-3-usr",
};
std::vector<struct target_therm_cfg> kona_common = {
{
TemperatureType::CPU,
cpu_sensors_kona,
"",
95000,
115000,
95000,
true,
},
{
TemperatureType::GPU,
{ "gpuss-0-usr" },
"GPU0",
95000,
115000,
95000,
true,
},
{
TemperatureType::GPU,
{ "gpuss-1-usr" },
"GPU1",
95000,
115000,
95000,
true,
},
{
TemperatureType::SKIN,
{ "skin-msm-therm-usr" },
"skin",
40000,
95000,
40000,
true,
}
};
std::vector<struct target_therm_cfg> kona_specific = {
{
TemperatureType::BCL_CURRENT,
{ "pm8150b-ibat-lvl0" },
"ibat",
4500,
5000,
4500,
true,
},
{
TemperatureType::BCL_VOLTAGE,
{ "pm8150b-vbat-lvl0" },
"vbat",
3200,
3000,
3200,
false,
},
{
TemperatureType::BCL_PERCENTAGE,
{ "soc" },
"soc",
10,
2,
10,
false,
},
{
TemperatureType::NPU,
{ "npu-usr" },
"npu",
95000,
115000,
95000,
true,
},
};
std::vector<struct target_therm_cfg> lahaina_specific = {
{
TemperatureType::BCL_CURRENT,
{ "pm8350b-ibat-lvl0" },
"ibat",
4500,
5000,
4500,
true,
},
{
TemperatureType::NPU,
{ "nspss-0-usr" },
"nsp0",
95000,
115000,
95000,
true,
},
{
TemperatureType::NPU,
{ "nspss-1-usr" },
"nsp1",
95000,
115000,
95000,
true,
},
{
TemperatureType::NPU,
{ "nspss-2-usr" },
"nsp2",
95000,
115000,
95000,
true,
},
};
struct target_therm_cfg bat_conf = {
TemperatureType::BATTERY,
{ "battery" },
"battery",
80000,
90000,
80000,
true,
};
std::vector<struct target_therm_cfg> bcl_conf = {
{
TemperatureType::BCL_VOLTAGE,
{ "vbat" },
"vbat",
3200,
3000,
3200,
false,
},
{
TemperatureType::BCL_PERCENTAGE,
{ "socd" },
"socd",
90,
99,
90,
true,
},
};
const std::unordered_map<int, std::vector<struct target_therm_cfg>>
msm_soc_map = {
{400, sensor_cfg_lito}, // lito
{440, sensor_cfg_lito},
{407, sensor_cfg_lito}, // atoll
{434, sensor_cfg_lito}, // lagoon
{356, kona_common}, // kona
{415, kona_common}, // lahaina
};
const std::unordered_map<int, std::vector<struct target_therm_cfg>>
msm_soc_specific = {
{356, kona_specific}, // kona
{415, lahaina_specific}, // lahaina
};
std::vector<struct target_therm_cfg> add_target_config(
int socID,
std::vector<struct target_therm_cfg> conf)
{
std::vector<struct target_therm_cfg> targetConf;
if (msm_soc_specific.find(socID) == msm_soc_specific.end())
return conf;
targetConf = (msm_soc_specific.find(socID))->second;
conf.insert(conf.end(), targetConf.begin(),
targetConf.end());
return conf;
}
ThermalConfig::ThermalConfig():cmnInst()
{
std::unordered_map<int, std::vector<struct target_therm_cfg>>::const_iterator it;
std::vector<struct target_therm_cfg>::iterator it_vec;
bool bcl_defined = false;
std::string soc_val;
if (cmnInst.readFromFile(socIDPath, &soc_val) <= 0) {
LOG(ERROR) <<"soc ID fetch error";
return;
}
soc_id = std::stoi(soc_val, nullptr, 0);
if (soc_id <= 0) {
LOG(ERROR) << "Invalid soc ID: " << soc_id;
return;
}
it = msm_soc_map.find(soc_id);
if (it == msm_soc_map.end()) {
LOG(ERROR) << "No config for soc ID: " << soc_id;
return;
}
thermalConfig = add_target_config(soc_id, it->second);
for (it_vec = thermalConfig.begin();
it_vec != thermalConfig.end(); it_vec++) {
if (it_vec->type == TemperatureType::BCL_PERCENTAGE)
bcl_defined = true;
}
thermalConfig.push_back(bat_conf);
if (!bcl_defined)
thermalConfig.insert(thermalConfig.end(),
bcl_conf.begin(), bcl_conf.end());
LOG(DEBUG) << "Total sensors:" << thermalConfig.size();
}
} // namespace implementation
} // namespace V2_0
} // namespace thermal
} // namespace hardware
} // namespace android