power: Allow for a dynamic cluster configuration

Change-Id: I542b36d26cad23f29e70ab70d996c95ca3ab11a7
This commit is contained in:
Christopher N. Hesse 2017-06-28 22:53:03 +02:00
parent ff86846e97
commit 7ad73bc372
2 changed files with 85 additions and 68 deletions

View file

@ -25,9 +25,14 @@
* device tree. * device tree.
*/ */
#define CPU0_SYSFS_PATH "/sys/devices/system/cpu/cpu0" static const char* CPU_SYSFS_PATHS[2] = {
#define CPU4_SYSFS_PATH "/sys/devices/system/cpu/cpu4" "/sys/devices/system/cpu/cpu0",
#define CPU0_INTERACTIVE_PATH "/sys/devices/system/cpu/cpu0/cpufreq/interactive" "/sys/devices/system/cpu/cpu4"
#define CPU4_INTERACTIVE_PATH "/sys/devices/system/cpu/cpu4/cpufreq/interactive" };
static const char* CPU_INTERACTIVE_PATHS[2] = {
"/sys/devices/system/cpu/cpu0/cpufreq/interactive",
"/sys/devices/system/cpu/cpu4/cpufreq/interactive"
};
#endif // SAMSUNG_POWER_H #endif // SAMSUNG_POWER_H

View file

@ -28,7 +28,6 @@
#include <unistd.h> #include <unistd.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h>
#define LOG_TAG "SamsungPowerHAL" #define LOG_TAG "SamsungPowerHAL"
/* #define LOG_NDEBUG 0 */ /* #define LOG_NDEBUG 0 */
@ -40,26 +39,25 @@
#include "samsung_power.h" #include "samsung_power.h"
#define BOOST_PATH CPU0_INTERACTIVE_PATH "/boost" #define BOOST_PATH "/boost"
#define BOOSTPULSE_PATH CPU0_INTERACTIVE_PATH "/boostpulse" #define BOOSTPULSE_PATH "/boostpulse"
#define CPU0_IO_IS_BUSY_PATH CPU0_INTERACTIVE_PATH "/io_is_busy"
#define CPU4_IO_IS_BUSY_PATH CPU4_INTERACTIVE_PATH "/io_is_busy"
#define CPU0_HISPEED_FREQ_PATH CPU0_INTERACTIVE_PATH "/hispeed_freq"
#define CPU4_HISPEED_FREQ_PATH CPU4_INTERACTIVE_PATH "/hispeed_freq"
#define CPU0_MAX_FREQ_PATH CPU0_SYSFS_PATH "/cpufreq/scaling_max_freq" #define IO_IS_BUSY_PATH "/io_is_busy"
#define CPU4_MAX_FREQ_PATH CPU4_SYSFS_PATH "/cpufreq/scaling_max_freq" #define HISPEED_FREQ_PATH "/hispeed_freq"
#define ARRAY_SIZE(a) sizeof(a) / sizeof(a[0]) #define MAX_FREQ_PATH "/cpufreq/scaling_max_freq"
#define CLUSTER_COUNT ARRAY_SIZE(CPU_SYSFS_PATHS)
#define PARAM_MAXLEN 10
#define ARRAY_SIZE(a) sizeof(a) / sizeof(a[0])
struct samsung_power_module { struct samsung_power_module {
struct power_module base; struct power_module base;
pthread_mutex_t lock; pthread_mutex_t lock;
int boostpulse_fd; int boostpulse_fd;
char cpu0_hispeed_freq[10]; char hispeed_freqs[CLUSTER_COUNT][PARAM_MAXLEN];
char cpu0_max_freq[10]; char max_freqs[CLUSTER_COUNT][PARAM_MAXLEN];
char cpu4_hispeed_freq[10];
char cpu4_max_freq[10];
char* touchscreen_power_path; char* touchscreen_power_path;
char* touchkey_power_path; char* touchkey_power_path;
}; };
@ -134,16 +132,60 @@ static void sysfs_write(const char *path, char *s)
close(fd); close(fd);
} }
static void cpu_sysfs_read(const char *param, char s[CLUSTER_COUNT][PARAM_MAXLEN])
{
char path[PATH_MAX];
for (unsigned int i = 0; i < ARRAY_SIZE(CPU_SYSFS_PATHS); i++) {
sprintf(path, "%s%s", CPU_SYSFS_PATHS[i], param);
sysfs_read(path, s[i], PARAM_MAXLEN);
}
}
static void cpu_sysfs_write(const char *param, char s[CLUSTER_COUNT][PARAM_MAXLEN])
{
char path[PATH_MAX];
for (unsigned int i = 0; i < ARRAY_SIZE(CPU_SYSFS_PATHS); i++) {
sprintf(path, "%s%s", CPU_SYSFS_PATHS[i], param);
sysfs_write(path, s[i]);
}
}
static void cpu_interactive_read(const char *param, char s[CLUSTER_COUNT][PARAM_MAXLEN])
{
char path[PATH_MAX];
for (unsigned int i = 0; i < ARRAY_SIZE(CPU_INTERACTIVE_PATHS); i++) {
sprintf(path, "%s%s", CPU_INTERACTIVE_PATHS[i], param);
sysfs_read(path, s[i], PARAM_MAXLEN);
}
}
static void cpu_interactive_write(const char *param, char s[CLUSTER_COUNT][PARAM_MAXLEN])
{
char path[PATH_MAX];
for (unsigned int i = 0; i < ARRAY_SIZE(CPU_INTERACTIVE_PATHS); i++) {
sprintf(path, "%s%s", CPU_INTERACTIVE_PATHS[i], param);
sysfs_write(path, s[i]);
}
}
static void boost(int32_t duration_us) static void boost(int32_t duration_us)
{ {
int fd; int fd;
char path[PATH_MAX];
if (duration_us <= 0) if (duration_us <= 0)
return; return;
fd = open(BOOST_PATH, O_WRONLY); // the boost node is only valid for the LITTLE cluster
sprintf(path, "%s%s", CPU_INTERACTIVE_PATHS[0], BOOST_PATH);
fd = open(path, O_WRONLY);
if (fd < 0) { if (fd < 0) {
ALOGE("Error opening %s", BOOST_PATH); ALOGE("Error opening %s", path);
return; return;
} }
@ -156,9 +198,14 @@ static void boost(int32_t duration_us)
static void boostpulse_open(struct samsung_power_module *samsung_pwr) static void boostpulse_open(struct samsung_power_module *samsung_pwr)
{ {
samsung_pwr->boostpulse_fd = open(BOOSTPULSE_PATH, O_WRONLY); char path[PATH_MAX];
// the boostpulse node is only valid for the LITTLE cluster
sprintf(path, "%s%s", CPU_INTERACTIVE_PATHS[0], BOOSTPULSE_PATH);
samsung_pwr->boostpulse_fd = open(path, O_WRONLY);
if (samsung_pwr->boostpulse_fd < 0) { if (samsung_pwr->boostpulse_fd < 0) {
ALOGE("Error opening %s: %s\n", BOOSTPULSE_PATH, strerror(errno)); ALOGE("Error opening %s: %s\n", path, strerror(errno));
} }
} }
@ -172,7 +219,8 @@ static void send_boostpulse(int boostpulse_fd)
len = write(boostpulse_fd, "1", 1); len = write(boostpulse_fd, "1", 1);
if (len < 0) { if (len < 0) {
ALOGE("Error writing to %s: %s", BOOSTPULSE_PATH, strerror(errno)); ALOGE("Error writing to %s%s: %s", CPU_INTERACTIVE_PATHS[0], BOOSTPULSE_PATH,
strerror(errno));
} }
} }
@ -184,7 +232,6 @@ static void set_power_profile(struct samsung_power_module *samsung_pwr,
int profile) int profile)
{ {
int rc; int rc;
struct stat sb;
if (profile < 0 || profile >= PROFILE_MAX) { if (profile < 0 || profile >= PROFILE_MAX) {
return; return;
@ -199,34 +246,19 @@ static void set_power_profile(struct samsung_power_module *samsung_pwr,
switch (profile) { switch (profile) {
case PROFILE_POWER_SAVE: case PROFILE_POWER_SAVE:
// Grab value set by init.*.rc // Grab value set by init.*.rc
sysfs_read(CPU0_HISPEED_FREQ_PATH, samsung_pwr->cpu0_hispeed_freq, cpu_interactive_read(HISPEED_FREQ_PATH, samsung_pwr->hispeed_freqs);
sizeof(samsung_pwr->cpu0_hispeed_freq));
// Limit to hispeed freq // Limit to hispeed freq
sysfs_write(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_hispeed_freq); cpu_sysfs_write(MAX_FREQ_PATH, samsung_pwr->hispeed_freqs);
rc = stat(CPU4_MAX_FREQ_PATH, &sb);
if (rc == 0) {
sysfs_read(CPU4_HISPEED_FREQ_PATH, samsung_pwr->cpu4_hispeed_freq,
sizeof(samsung_pwr->cpu4_hispeed_freq));
sysfs_write(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_hispeed_freq);
}
ALOGV("%s: set powersave mode", __func__); ALOGV("%s: set powersave mode", __func__);
break; break;
case PROFILE_BALANCED: case PROFILE_BALANCED:
// Restore normal max freq // Restore normal max freq
sysfs_write(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_max_freq); cpu_sysfs_write(MAX_FREQ_PATH, samsung_pwr->max_freqs);
rc = stat(CPU4_MAX_FREQ_PATH, &sb);
if (rc == 0) {
sysfs_write(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_max_freq);
}
ALOGV("%s: set balanced mode", __func__); ALOGV("%s: set balanced mode", __func__);
break; break;
case PROFILE_HIGH_PERFORMANCE: case PROFILE_HIGH_PERFORMANCE:
// Restore normal max freq // Restore normal max freq
sysfs_write(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_max_freq); cpu_sysfs_write(MAX_FREQ_PATH, samsung_pwr->max_freqs);
rc = stat(CPU4_MAX_FREQ_PATH, &sb);
if (rc == 0) {
sysfs_write(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_max_freq);
}
ALOGV("%s: set performance mode", __func__); ALOGV("%s: set performance mode", __func__);
break; break;
default: default:
@ -311,25 +343,8 @@ static void find_input_nodes(struct samsung_power_module *samsung_pwr, char *dir
static void init_cpufreqs(struct samsung_power_module *samsung_pwr) static void init_cpufreqs(struct samsung_power_module *samsung_pwr)
{ {
int rc; cpu_interactive_read(HISPEED_FREQ_PATH, samsung_pwr->hispeed_freqs);
struct stat sb; cpu_sysfs_read(MAX_FREQ_PATH, samsung_pwr->max_freqs);
sysfs_read(CPU0_HISPEED_FREQ_PATH, samsung_pwr->cpu0_hispeed_freq,
sizeof(samsung_pwr->cpu0_hispeed_freq));
sysfs_read(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_max_freq,
sizeof(samsung_pwr->cpu0_max_freq));
ALOGV("%s: CPU 0 hispeed freq: %s", __func__, samsung_pwr->cpu0_hispeed_freq);
ALOGV("%s: CPU 0 max freq: %s", __func__, samsung_pwr->cpu0_max_freq);
rc = stat(CPU4_HISPEED_FREQ_PATH, &sb);
if (rc == 0) {
sysfs_read(CPU4_HISPEED_FREQ_PATH, samsung_pwr->cpu4_hispeed_freq,
sizeof(samsung_pwr->cpu4_hispeed_freq));
sysfs_read(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_max_freq,
sizeof(samsung_pwr->cpu4_max_freq));
ALOGV("%s: CPU 4 hispeed freq: %s", __func__, samsung_pwr->cpu4_hispeed_freq);
ALOGV("%s: CPU 4 max freq: %s", __func__, samsung_pwr->cpu4_max_freq);
}
} }
static void init_touch_input_power_path(struct samsung_power_module *samsung_pwr) static void init_touch_input_power_path(struct samsung_power_module *samsung_pwr)
@ -376,11 +391,12 @@ static void samsung_power_init(struct power_module *module)
static void samsung_power_set_interactive(struct power_module *module, int on) static void samsung_power_set_interactive(struct power_module *module, int on)
{ {
struct samsung_power_module *samsung_pwr = (struct samsung_power_module *) module; struct samsung_power_module *samsung_pwr = (struct samsung_power_module *) module;
struct stat sb;
int panel_brightness; int panel_brightness;
char button_state[2]; char button_state[2];
int rc; int rc;
static bool touchkeys_blocked = false; static bool touchkeys_blocked = false;
char ON[CLUSTER_COUNT][PARAM_MAXLEN] = {"1", "1"};
char OFF[CLUSTER_COUNT][PARAM_MAXLEN] = {"0", "0"};
ALOGV("power_set_interactive: %d", on); ALOGV("power_set_interactive: %d", on);
@ -432,11 +448,7 @@ static void samsung_power_set_interactive(struct power_module *module, int on)
} }
out: out:
sysfs_write(CPU0_IO_IS_BUSY_PATH, on ? "1" : "0"); cpu_interactive_write(IO_IS_BUSY_PATH, on ? ON : OFF);
rc = stat(CPU4_IO_IS_BUSY_PATH, &sb);
if (rc == 0) {
sysfs_write(CPU4_IO_IS_BUSY_PATH, on ? "1" : "0");
}
ALOGV("power_set_interactive: %d done", on); ALOGV("power_set_interactive: %d done", on);
} }