summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordianlujitao <dianlujitao@lineageos.org>2017-10-14 12:08:10 +0800
committerMichael Bestas <mkbestas@lineageos.org>2019-10-23 01:12:57 +0300
commit16da163d874be2581ba639e68cd8568852b97e67 (patch)
treedcac5c90617a93d88a0e7df6954a0bb905ccbb3e
parent19a43ccd9aa1db86585a01988d6f487df4e5793d (diff)
downloadvendor_qcom_opensource_power-16da163d874be2581ba639e68cd8568852b97e67.tar.gz
vendor_qcom_opensource_power-16da163d874be2581ba639e68cd8568852b97e67.tar.bz2
vendor_qcom_opensource_power-16da163d874be2581ba639e68cd8568852b97e67.zip
power: msm8998: Support power profiles
Author: dianlujitao <dianlujitao@lineageos.org> Date: Sat Oct 14 12:08:10 2017 +0800 power: msm8998: Support power profiles Change-Id: I8a11aa9db00051cfaae650273d980ce5080f6567 Author: dianlujitao <dianlujitao@lineageos.org> Date: Sat Jan 20 22:19:17 2018 +0800 power: msm8998: Fix perf mode switch * Checking a pointer is NULL or not makes no sense, and as a result perf mode cannot be turned off. Fix it by checking the value. Change-Id: I4feb37da72b757631619e1aa2917f2a345a8032b Author: dianlujitao <dianlujitao@lineageos.org> Date: Fri Mar 2 12:40:04 2018 +0800 power: Don't advertise power profile when interaction boost disabled * Power profile is fake news without interaction boost. Change-Id: Iceea885e6cb176f0620e76cfc335b7da500a0c2b Author: Michael Bestas <mkbestas@lineageos.org> Date: Mon Mar 26 05:21:23 2018 +0300 power: Consistent skipping of non perf profile hints Change-Id: I9129de9046df7b922af7b32eac94167776f820cf Author: Michael Bestas <mkbestas@lineageos.org> Date: Fri May 25 21:30:28 2018 +0300 power: Spring cleanup * Cleanup SoC specific files: - Fix code spacing and indentation - Remove dead code - Remove useless comments - Remove useless logs - Make code uniform between the files so it's easier to diff - Use declared enums when possible for power hints Change-Id: Ie1378c94c53b33299927c5eb1bfc19f1a42b8743 Author: Corinna Vinschen <xda@vinschen.de> Date: Sun Aug 26 22:11:49 2018 +0200 power: set_power_profile: handle errors * Make sure current_power_profile reflects actual setting. * Propagate error condition up to caller. * Handle error from set_power_profile in power_hint_override. Change-Id: I8518d921a94c912c75f59fbf993a8f44116bdca9 Signed-off-by: Corinna Vinschen <xda@vinschen.de> 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: I06d33afacea2e221d778a87cf81f8d89296019a9
-rw-r--r--power-8998.c91
1 files changed, 91 insertions, 0 deletions
diff --git a/power-8998.c b/power-8998.c
index 4971640..0fd6aae 100644
--- a/power-8998.c
+++ b/power-8998.c
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2016-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
@@ -55,6 +56,83 @@ const int kMaxLaunchDuration = 5000; /* ms */
const int kMaxInteractiveDuration = 5000; /* ms */
const int kMinInteractiveDuration = 400; /* ms */
+static int current_power_profile = PROFILE_BALANCED;
+
+#ifdef INTERACTION_BOOST
+int get_number_of_profiles() {
+ return 5;
+}
+#endif
+
+// clang-format off
+static int profile_high_performance[] = {
+ SCHED_BOOST_ON_V3, 0x1,
+ MIN_FREQ_BIG_CORE_0, 0xFFF,
+ MIN_FREQ_LITTLE_CORE_0, 0xFFF,
+ ALL_CPUS_PWR_CLPS_DIS_V3, 0x1,
+};
+
+static int profile_power_save[] = {
+ MAX_FREQ_BIG_CORE_0, 0x3E8,
+ MAX_FREQ_LITTLE_CORE_0, 0x3E8,
+};
+
+static int profile_bias_power[] = {
+ MAX_FREQ_BIG_CORE_0, 0x514,
+ MAX_FREQ_LITTLE_CORE_0, 0x3E8,
+};
+
+static int profile_bias_performance[] = {
+ MIN_FREQ_BIG_CORE_0, 0x578,
+};
+// clang-format on
+
+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;
+}
+
typedef enum {
NORMAL_MODE = 0,
SUSTAINED_MODE = 1,
@@ -244,6 +322,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);