summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordianlujitao <dianlujitao@lineageos.org>2018-09-06 17:45:43 +0800
committerMichael Bestas <mkbestas@lineageos.org>2019-10-23 01:12:57 +0300
commitedf9bd8314eee768dd3ff3c47f069064010ac3f0 (patch)
treeb811672971d84b598126e8c0fdfd8ad3308033bc
parent16da163d874be2581ba639e68cd8568852b97e67 (diff)
downloadvendor_qcom_opensource_power-edf9bd8314eee768dd3ff3c47f069064010ac3f0.tar.gz
vendor_qcom_opensource_power-edf9bd8314eee768dd3ff3c47f069064010ac3f0.tar.bz2
vendor_qcom_opensource_power-edf9bd8314eee768dd3ff3c47f069064010ac3f0.zip
power: sdm660: Support power profiles
Author: dianlujitao <dianlujitao@lineageos.org> Date: Thu Sep 6 17:45:43 2018 +0800 power: sdm660: Support power profiles Change-Id: I54c92db62599d9bd48e685f770adc2ae72eec4cb Author: dianlujitao <dianlujitao@lineageos.org> Date: Sat Feb 23 20:24:57 2019 +0800 power: Pass NULL parameter in powerHint if data is zero * This restores the behavior in AOSP and CAF power HAL to avoid confusion. Change-Id: I72f5bb9286e2f57121e39eea82d2fe8854989393 Change-Id: I2dd8ed517ba2a6b8333e2506b79cbc712814a889
-rw-r--r--power-660.c100
1 files changed, 100 insertions, 0 deletions
diff --git a/power-660.c b/power-660.c
index 5696718..9ab8b62 100644
--- a/power-660.c
+++ b/power-660.c
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2017, The Linux Foundation. All rights reserved.
+ * Copyright (C) 2018-2019 The LineageOS Project
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -56,6 +57,92 @@ const int kMinInteractiveDuration = 400; /* ms */
const int kMaxInteractiveDuration = 5000; /* ms */
const int kMaxLaunchDuration = 5000; /* ms */
+static int current_power_profile = PROFILE_BALANCED;
+
+// clang-format off
+static int profile_high_performance[] = {
+ ALL_CPUS_PWR_CLPS_DIS_V3, 0x1,
+ SCHED_BOOST_ON_V3, 0x1,
+ SCHED_MOSTLY_IDLE_NR_RUN, 0x1,
+ SCHED_SPILL_NR_RUN, 0x1,
+ SCHED_RESTRICT_CLUSTER_SPILL, 0x0,
+ SCHED_GROUP_DOWN_MIGRATE, 0x5F,
+ SCHED_GROUP_UP_MIGRATE, 0x64,
+ CPUS_ONLINE_MIN_BIG, 0x4,
+ MIN_FREQ_BIG_CORE_0, 0xFFF,
+ MIN_FREQ_LITTLE_CORE_0, 0xFFF,
+};
+
+static int profile_power_save[] = {
+ CPUS_ONLINE_MAX_BIG, 0x2,
+ MAX_FREQ_BIG_CORE_0, 0x0,
+ MAX_FREQ_LITTLE_CORE_0, 0x0,
+};
+
+static int profile_bias_power[] = {
+ CPUS_ONLINE_MAX_BIG, 0x2,
+ MAX_FREQ_BIG_CORE_0_RESIDX, 0x3,
+ MAX_FREQ_LITTLE_CORE_0_RESIDX, 0x1,
+};
+
+static int profile_bias_performance[] = {
+ MIN_FREQ_BIG_CORE_0_RESIDX, 0x3,
+ MIN_FREQ_LITTLE_CORE_0_RESIDX, 0x2,
+};
+// clang-format on
+
+#ifdef INTERACTION_BOOST
+int get_number_of_profiles() {
+ return 5;
+}
+#endif
+
+static int set_power_profile(void* data) {
+ int profile = data ? *((int*)data) : 0;
+ int ret = -EINVAL;
+ const char* profile_name = NULL;
+
+ if (profile == current_power_profile) return 0;
+
+ ALOGV("%s: Profile=%d", __func__, profile);
+
+ if (current_power_profile != PROFILE_BALANCED) {
+ undo_hint_action(DEFAULT_PROFILE_HINT_ID);
+ ALOGV("%s: Hint undone", __func__);
+ current_power_profile = PROFILE_BALANCED;
+ }
+
+ if (profile == PROFILE_POWER_SAVE) {
+ ret = perform_hint_action(DEFAULT_PROFILE_HINT_ID, profile_power_save,
+ ARRAY_SIZE(profile_power_save));
+ profile_name = "powersave";
+
+ } else if (profile == PROFILE_HIGH_PERFORMANCE) {
+ ret = perform_hint_action(DEFAULT_PROFILE_HINT_ID, profile_high_performance,
+ ARRAY_SIZE(profile_high_performance));
+ profile_name = "performance";
+
+ } else if (profile == PROFILE_BIAS_POWER) {
+ ret = perform_hint_action(DEFAULT_PROFILE_HINT_ID, profile_bias_power,
+ ARRAY_SIZE(profile_bias_power));
+ profile_name = "bias power";
+
+ } else if (profile == PROFILE_BIAS_PERFORMANCE) {
+ ret = perform_hint_action(DEFAULT_PROFILE_HINT_ID, profile_bias_performance,
+ ARRAY_SIZE(profile_bias_performance));
+ profile_name = "bias perf";
+ } else if (profile == PROFILE_BALANCED) {
+ ret = 0;
+ profile_name = "balanced";
+ }
+
+ if (ret == 0) {
+ current_power_profile = profile;
+ ALOGD("%s: Set %s mode", __func__, profile_name);
+ }
+ return ret;
+}
+
/**
* Returns true if the target is SDM630/SDM455.
*/
@@ -202,6 +289,19 @@ static int process_activity_launch_hint(void* data) {
int power_hint_override(power_hint_t hint, void* data) {
int ret_val = HINT_NONE;
+
+ if (hint == POWER_HINT_SET_PROFILE) {
+ if (set_power_profile(data) < 0)
+ ALOGE("Setting power profile failed. perf HAL not started?");
+ return HINT_HANDLED;
+ }
+
+ // Skip other hints in high/low power modes
+ if (current_power_profile == PROFILE_POWER_SAVE ||
+ current_power_profile == PROFILE_HIGH_PERFORMANCE) {
+ return HINT_HANDLED;
+ }
+
switch (hint) {
case POWER_HINT_VIDEO_ENCODE:
ret_val = process_video_encode_hint(data);