Menu

[eb790e]: / perfprofd / cpuconfig.cc  Maximize  Restore  History

Download this file

106 lines (92 with data), 2.5 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
/*
**
** Copyright 2015, 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <string>
#include <sstream>
#include <sys/types.h>
#include <sys/wait.h>
#include <cutils/properties.h>
#include "cpuconfig.h"
#include "perfprofdutils.h"
#define SYSFSCPU "/sys/devices/system/cpu"
HardwireCpuHelper::HardwireCpuHelper(bool perform)
: mpdecision_stopped_(false)
{
if (perform && GetMpdecisionRunning()) {
mpdecision_stopped_ = true;
StopMpdecision();
int ncores = GetNumCores();
for (int i = 0; i < ncores; ++i) {
OnlineCore(i, 1);
}
}
}
HardwireCpuHelper::~HardwireCpuHelper()
{
if (mpdecision_stopped_) {
RestartMpdecision();
}
}
bool HardwireCpuHelper::GetMpdecisionRunning()
{
char propBuf[PROPERTY_VALUE_MAX];
property_get("init.svc.mpdecision", propBuf, "");
return strcmp(propBuf, "running") == 0;
}
int HardwireCpuHelper::GetNumCores()
{
int ncores = -1;
std::string possible(SYSFSCPU "/possible");
FILE *fp = fopen(possible.c_str(), "re");
if (fp) {
unsigned lo = 0, hi = 0;
if (fscanf(fp, "%u-%u", &lo, &hi) == 2) {
ncores = hi - lo + 1;
}
fclose(fp);
}
return ncores;
}
void HardwireCpuHelper::OnlineCore(int i, int onoff)
{
std::stringstream ss;
ss << SYSFSCPU "/cpu" << i << "/online";
FILE *fp = fopen(ss.str().c_str(), "we");
if (fp) {
fprintf(fp, onoff ? "1\n" : "0\n");
fclose(fp);
} else {
W_ALOGW("open failed for %s", ss.str().c_str());
}
}
void HardwireCpuHelper::StopMpdecision()
{
if (property_set("ctl.stop", "mpdecision")) {
W_ALOGE("setprop ctl.stop mpdecision failed");
}
}
void HardwireCpuHelper::RestartMpdecision()
{
// Don't try to offline the cores we previously onlined -- let
// mpdecision figure out what to do
if (property_set("ctl.start", "mpdecision")) {
W_ALOGE("setprop ctl.start mpdecision failed");
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.