Dilip Gudlur | ac9ee54 | 2014-01-14 15:34:46 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014, The Linux Foundation. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are |
| 6 | * met: |
| 7 | * * * Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * * Redistributions in binary form must reproduce the above |
| 10 | * copyright notice, this list of conditions and the following |
| 11 | * disclaimer in the documentation and/or other materials provided |
| 12 | * with the distribution. |
| 13 | * * Neither the name of The Linux Foundation nor the names of its |
| 14 | * contributors may be used to endorse or promote products derived |
| 15 | * from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 21 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 22 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 23 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 24 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 25 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 26 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 27 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | #define LOG_NIDEBUG 0 |
| 30 | |
| 31 | #include <errno.h> |
| 32 | #include <string.h> |
| 33 | #include <sys/types.h> |
| 34 | #include <sys/stat.h> |
| 35 | #include <fcntl.h> |
| 36 | #include <dlfcn.h> |
| 37 | #include <stdlib.h> |
| 38 | |
| 39 | #define LOG_TAG "QCOM PowerHAL" |
| 40 | #include <utils/Log.h> |
| 41 | #include <hardware/hardware.h> |
| 42 | #include <hardware/power.h> |
| 43 | |
| 44 | #include "utils.h" |
| 45 | #include "metadata-defs.h" |
| 46 | #include "hint-data.h" |
| 47 | #include "performance.h" |
| 48 | #include "power-common.h" |
| 49 | |
| 50 | static int display_hint_sent; |
| 51 | static int display_hint2_sent; |
| 52 | static int first_display_off_hint; |
| 53 | extern int display_boost; |
| 54 | |
Steve Kondik | d9668ba | 2015-11-03 03:27:42 -0800 | [diff] [blame] | 55 | int get_number_of_profiles() { |
| 56 | return 3; |
| 57 | } |
Steve Kondik | e553cbc | 2014-12-31 19:24:30 -0500 | [diff] [blame] | 58 | |
| 59 | static int current_power_profile = PROFILE_BALANCED; |
| 60 | |
| 61 | static void set_power_profile(int profile) { |
| 62 | |
| 63 | if (profile == current_power_profile) |
| 64 | return; |
| 65 | |
| 66 | ALOGV("%s: profile=%d", __func__, profile); |
| 67 | |
| 68 | if (current_power_profile != PROFILE_BALANCED) { |
| 69 | undo_hint_action(DEFAULT_PROFILE_HINT_ID); |
| 70 | ALOGV("%s: hint undone", __func__); |
| 71 | } |
| 72 | |
| 73 | if (profile == PROFILE_HIGH_PERFORMANCE) { |
| 74 | int resource_values[] = { CPUS_ONLINE_MIN_4, |
| 75 | CPU0_MIN_FREQ_TURBO_MAX, CPU1_MIN_FREQ_TURBO_MAX, |
| 76 | CPU2_MIN_FREQ_TURBO_MAX, CPU3_MIN_FREQ_TURBO_MAX }; |
| 77 | perform_hint_action(DEFAULT_PROFILE_HINT_ID, |
Zhao Wei Liew | 50a1ce2 | 2016-06-26 11:37:59 +0800 | [diff] [blame] | 78 | resource_values, ARRAY_SIZE(resource_values)); |
Steve Kondik | e553cbc | 2014-12-31 19:24:30 -0500 | [diff] [blame] | 79 | ALOGD("%s: set performance mode", __func__); |
| 80 | |
| 81 | } else if (profile == PROFILE_POWER_SAVE) { |
| 82 | int resource_values[] = { CPUS_ONLINE_MAX_LIMIT_2, |
| 83 | CPU0_MAX_FREQ_NONTURBO_MAX, CPU1_MAX_FREQ_NONTURBO_MAX, |
| 84 | CPU2_MAX_FREQ_NONTURBO_MAX, CPU3_MAX_FREQ_NONTURBO_MAX }; |
| 85 | perform_hint_action(DEFAULT_PROFILE_HINT_ID, |
Zhao Wei Liew | 50a1ce2 | 2016-06-26 11:37:59 +0800 | [diff] [blame] | 86 | resource_values, ARRAY_SIZE(resource_values)); |
Steve Kondik | e553cbc | 2014-12-31 19:24:30 -0500 | [diff] [blame] | 87 | ALOGD("%s: set powersave", __func__); |
| 88 | } |
| 89 | |
| 90 | current_power_profile = profile; |
| 91 | } |
| 92 | |
| 93 | extern void interaction(int duration, int num_args, int opt_list[]); |
| 94 | |
| 95 | int power_hint_override(__attribute__((unused)) struct power_module *module, |
| 96 | power_hint_t hint, void *data) |
| 97 | { |
| 98 | if (hint == POWER_HINT_SET_PROFILE) { |
Steve Kondik | d9c1d8a | 2015-11-03 18:59:58 -0800 | [diff] [blame] | 99 | set_power_profile(*(int32_t *)data); |
Steve Kondik | e553cbc | 2014-12-31 19:24:30 -0500 | [diff] [blame] | 100 | return HINT_HANDLED; |
| 101 | } |
| 102 | |
Steve Kondik | e553cbc | 2014-12-31 19:24:30 -0500 | [diff] [blame] | 103 | // Skip other hints in custom power modes |
| 104 | if (current_power_profile != PROFILE_BALANCED) { |
| 105 | return HINT_HANDLED; |
| 106 | } |
| 107 | |
| 108 | if (hint == POWER_HINT_CPU_BOOST) { |
Steve Kondik | d9c1d8a | 2015-11-03 18:59:58 -0800 | [diff] [blame] | 109 | int duration = *(int32_t *)data / 1000; |
Steve Kondik | e553cbc | 2014-12-31 19:24:30 -0500 | [diff] [blame] | 110 | int resources[] = { CPUS_ONLINE_MIN_2, 0x20B, 0x30B, 0x1C00}; |
| 111 | |
| 112 | if (duration > 0) |
Zhao Wei Liew | 50a1ce2 | 2016-06-26 11:37:59 +0800 | [diff] [blame] | 113 | interaction(duration, ARRAY_SIZE(resources), resources); |
Steve Kondik | e553cbc | 2014-12-31 19:24:30 -0500 | [diff] [blame] | 114 | |
| 115 | return HINT_HANDLED; |
| 116 | } |
| 117 | |
| 118 | return HINT_NONE; |
| 119 | } |
| 120 | |
Dilip Gudlur | ac9ee54 | 2014-01-14 15:34:46 -0800 | [diff] [blame] | 121 | int set_interactive_override(struct power_module *module, int on) |
| 122 | { |
| 123 | char governor[80]; |
| 124 | |
| 125 | if (get_scaling_governor(governor, sizeof(governor)) == -1) { |
| 126 | ALOGE("Can't obtain scaling governor."); |
| 127 | |
| 128 | return HINT_NONE; |
| 129 | } |
| 130 | |
| 131 | if (!on) { |
| 132 | /* Display off. */ |
| 133 | /* |
| 134 | * We need to be able to identify the first display off hint |
| 135 | * and release the current lock holder |
| 136 | */ |
| 137 | if (display_boost) { |
| 138 | if (!first_display_off_hint) { |
| 139 | undo_initial_hint_action(); |
| 140 | first_display_off_hint = 1; |
| 141 | } |
| 142 | /* used for all subsequent toggles to the display */ |
| 143 | if (!display_hint2_sent) { |
| 144 | undo_hint_action(DISPLAY_STATE_HINT_ID_2); |
| 145 | display_hint2_sent = 1; |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | if ((strncmp(governor, ONDEMAND_GOVERNOR, strlen(ONDEMAND_GOVERNOR)) == 0) && |
| 150 | (strlen(governor) == strlen(ONDEMAND_GOVERNOR))) { |
| 151 | int resource_values[] = {MS_500, SYNC_FREQ_600, OPTIMAL_FREQ_600, THREAD_MIGRATION_SYNC_OFF}; |
| 152 | |
| 153 | if (!display_hint_sent) { |
| 154 | perform_hint_action(DISPLAY_STATE_HINT_ID, |
Zhao Wei Liew | 50a1ce2 | 2016-06-26 11:37:59 +0800 | [diff] [blame] | 155 | resource_values, ARRAY_SIZE(resource_values)); |
Dilip Gudlur | ac9ee54 | 2014-01-14 15:34:46 -0800 | [diff] [blame] | 156 | display_hint_sent = 1; |
| 157 | } |
| 158 | |
| 159 | return HINT_HANDLED; |
| 160 | } |
| 161 | } else { |
| 162 | /* Display on */ |
| 163 | if (display_boost && display_hint2_sent) { |
| 164 | int resource_values2[] = {CPUS_ONLINE_MIN_2}; |
| 165 | perform_hint_action(DISPLAY_STATE_HINT_ID_2, |
Zhao Wei Liew | 50a1ce2 | 2016-06-26 11:37:59 +0800 | [diff] [blame] | 166 | resource_values2, ARRAY_SIZE(resource_values2)); |
Dilip Gudlur | ac9ee54 | 2014-01-14 15:34:46 -0800 | [diff] [blame] | 167 | display_hint2_sent = 0; |
| 168 | } |
| 169 | |
| 170 | if ((strncmp(governor, ONDEMAND_GOVERNOR, strlen(ONDEMAND_GOVERNOR)) == 0) && |
| 171 | (strlen(governor) == strlen(ONDEMAND_GOVERNOR))) { |
| 172 | undo_hint_action(DISPLAY_STATE_HINT_ID); |
| 173 | display_hint_sent = 0; |
| 174 | |
| 175 | return HINT_HANDLED; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | return HINT_NONE; |
| 180 | } |