Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * Copyright (C) 2014 The CyanogenMod Project |
| 4 | * Copyright (C) 2014-2015 Andreas Schneider <asn@cryptomilk.org> |
Christopher N. Hesse | f05f902 | 2017-01-16 22:49:06 +0100 | [diff] [blame] | 5 | * Copyright (C) 2014-2017 Christopher N. Hesse <raymanfx@gmail.com> |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | */ |
| 19 | |
Christopher N. Hesse | 3360b09 | 2016-07-11 15:48:35 +0200 | [diff] [blame] | 20 | #include <ctype.h> |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 21 | #include <dirent.h> |
| 22 | #include <errno.h> |
| 23 | #include <fcntl.h> |
| 24 | #include <malloc.h> |
| 25 | #include <stdbool.h> |
Christopher N. Hesse | e143419 | 2016-11-18 18:56:17 +0100 | [diff] [blame] | 26 | #include <stdlib.h> |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 27 | #include <string.h> |
| 28 | #include <unistd.h> |
| 29 | |
| 30 | #include <sys/types.h> |
| 31 | #include <sys/stat.h> |
| 32 | |
| 33 | #define LOG_TAG "SamsungPowerHAL" |
| 34 | /* #define LOG_NDEBUG 0 */ |
| 35 | #include <utils/Log.h> |
| 36 | |
| 37 | #include <hardware/hardware.h> |
| 38 | #include <hardware/power.h> |
Christopher N. Hesse | 1226350 | 2016-12-07 12:18:20 +0100 | [diff] [blame] | 39 | #include <liblights/samsung_lights_helper.h> |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 40 | |
Christopher N. Hesse | 4139d85 | 2016-12-07 12:21:44 +0100 | [diff] [blame] | 41 | #include "samsung_power.h" |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 42 | |
| 43 | struct samsung_power_module { |
| 44 | struct power_module base; |
| 45 | pthread_mutex_t lock; |
| 46 | int boostpulse_fd; |
| 47 | int boostpulse_warned; |
| 48 | char cpu0_hispeed_freq[10]; |
| 49 | char cpu0_max_freq[10]; |
| 50 | char cpu4_hispeed_freq[10]; |
| 51 | char cpu4_max_freq[10]; |
| 52 | char* touchscreen_power_path; |
| 53 | char* touchkey_power_path; |
| 54 | bool touchkey_blocked; |
| 55 | }; |
| 56 | |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 57 | enum power_profile_e { |
| 58 | PROFILE_POWER_SAVE = 0, |
| 59 | PROFILE_BALANCED, |
| 60 | PROFILE_HIGH_PERFORMANCE |
| 61 | }; |
| 62 | static enum power_profile_e current_power_profile = PROFILE_BALANCED; |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 63 | |
| 64 | /********************************************************** |
| 65 | *** HELPER FUNCTIONS |
| 66 | **********************************************************/ |
| 67 | |
| 68 | static int sysfs_read(char *path, char *s, int num_bytes) |
| 69 | { |
| 70 | char errno_str[64]; |
| 71 | int len; |
| 72 | int ret = 0; |
| 73 | int fd; |
| 74 | |
| 75 | fd = open(path, O_RDONLY); |
| 76 | if (fd < 0) { |
| 77 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 78 | ALOGE("Error opening %s: %s\n", path, errno_str); |
| 79 | |
| 80 | return -1; |
| 81 | } |
| 82 | |
| 83 | len = read(fd, s, num_bytes - 1); |
| 84 | if (len < 0) { |
| 85 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 86 | ALOGE("Error reading from %s: %s\n", path, errno_str); |
| 87 | |
| 88 | ret = -1; |
| 89 | } else { |
| 90 | s[len] = '\0'; |
| 91 | } |
| 92 | |
| 93 | close(fd); |
| 94 | |
| 95 | return ret; |
| 96 | } |
| 97 | |
| 98 | static void sysfs_write(const char *path, char *s) |
| 99 | { |
| 100 | char errno_str[64]; |
| 101 | int len; |
| 102 | int fd; |
| 103 | |
| 104 | fd = open(path, O_WRONLY); |
| 105 | if (fd < 0) { |
| 106 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 107 | ALOGE("Error opening %s: %s\n", path, errno_str); |
| 108 | return; |
| 109 | } |
| 110 | |
| 111 | len = write(fd, s, strlen(s)); |
| 112 | if (len < 0) { |
| 113 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 114 | ALOGE("Error writing to %s: %s\n", path, errno_str); |
| 115 | } |
| 116 | |
| 117 | close(fd); |
| 118 | } |
| 119 | |
| 120 | /********************************************************** |
| 121 | *** POWER FUNCTIONS |
| 122 | **********************************************************/ |
| 123 | |
| 124 | /* You need to request the powerhal lock before calling this function */ |
| 125 | static int boostpulse_open(struct samsung_power_module *samsung_pwr) |
| 126 | { |
| 127 | char errno_str[64]; |
| 128 | |
| 129 | if (samsung_pwr->boostpulse_fd < 0) { |
| 130 | samsung_pwr->boostpulse_fd = open(BOOSTPULSE_PATH, O_WRONLY); |
| 131 | if (samsung_pwr->boostpulse_fd < 0) { |
| 132 | if (!samsung_pwr->boostpulse_warned) { |
| 133 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 134 | ALOGE("Error opening %s: %s\n", BOOSTPULSE_PATH, errno_str); |
| 135 | samsung_pwr->boostpulse_warned = 1; |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | return samsung_pwr->boostpulse_fd; |
| 141 | } |
| 142 | |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 143 | static void set_power_profile(struct samsung_power_module *samsung_pwr, |
| 144 | enum power_profile_e profile) |
| 145 | { |
| 146 | int rc; |
| 147 | struct stat sb; |
| 148 | |
| 149 | if (current_power_profile == profile) { |
| 150 | return; |
| 151 | } |
| 152 | |
| 153 | ALOGV("%s: profile=%d", __func__, profile); |
| 154 | |
| 155 | switch (profile) { |
| 156 | case PROFILE_POWER_SAVE: |
| 157 | // Limit to hispeed freq |
| 158 | sysfs_write(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_hispeed_freq); |
| 159 | rc = stat(CPU4_MAX_FREQ_PATH, &sb); |
| 160 | if (rc == 0) { |
| 161 | sysfs_write(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_hispeed_freq); |
| 162 | } |
Christopher N. Hesse | f05f902 | 2017-01-16 22:49:06 +0100 | [diff] [blame] | 163 | ALOGV("%s: set powersave mode", __func__); |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 164 | break; |
| 165 | case PROFILE_BALANCED: |
| 166 | // Restore normal max freq |
| 167 | sysfs_write(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_max_freq); |
| 168 | rc = stat(CPU4_MAX_FREQ_PATH, &sb); |
| 169 | if (rc == 0) { |
| 170 | sysfs_write(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_max_freq); |
| 171 | } |
Christopher N. Hesse | f05f902 | 2017-01-16 22:49:06 +0100 | [diff] [blame] | 172 | ALOGV("%s: set balanced mode", __func__); |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 173 | break; |
| 174 | case PROFILE_HIGH_PERFORMANCE: |
| 175 | // Restore normal max freq |
| 176 | sysfs_write(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_max_freq); |
| 177 | rc = stat(CPU4_MAX_FREQ_PATH, &sb); |
| 178 | if (rc == 0) { |
| 179 | sysfs_write(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_max_freq); |
| 180 | } |
Christopher N. Hesse | f05f902 | 2017-01-16 22:49:06 +0100 | [diff] [blame] | 181 | ALOGV("%s: set performance mode", __func__); |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 182 | break; |
| 183 | } |
| 184 | |
| 185 | current_power_profile = profile; |
| 186 | } |
| 187 | |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 188 | static void find_input_nodes(struct samsung_power_module *samsung_pwr, char *dir) |
| 189 | { |
| 190 | const char filename[] = "name"; |
| 191 | char errno_str[64]; |
| 192 | struct dirent *de; |
| 193 | char file_content[20]; |
| 194 | char *path = NULL; |
| 195 | char *node_path = NULL; |
| 196 | size_t pathsize; |
| 197 | size_t node_pathsize; |
| 198 | DIR *d; |
| 199 | |
| 200 | d = opendir(dir); |
| 201 | if (d == NULL) { |
| 202 | return; |
| 203 | } |
| 204 | |
| 205 | while ((de = readdir(d)) != NULL) { |
| 206 | if (strncmp(filename, de->d_name, sizeof(filename)) == 0) { |
| 207 | pathsize = strlen(dir) + strlen(de->d_name) + 2; |
| 208 | node_pathsize = strlen(dir) + strlen("enabled") + 2; |
| 209 | |
| 210 | path = malloc(pathsize); |
| 211 | node_path = malloc(node_pathsize); |
| 212 | if (path == NULL || node_path == NULL) { |
| 213 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 214 | ALOGE("Out of memory: %s\n", errno_str); |
| 215 | return; |
| 216 | } |
| 217 | |
| 218 | snprintf(path, pathsize, "%s/%s", dir, filename); |
| 219 | sysfs_read(path, file_content, sizeof(file_content)); |
| 220 | |
| 221 | snprintf(node_path, node_pathsize, "%s/%s", dir, "enabled"); |
| 222 | |
| 223 | if (strncmp(file_content, "sec_touchkey", 12) == 0) { |
| 224 | ALOGV("%s: found touchkey path: %s\n", __func__, node_path); |
| 225 | samsung_pwr->touchkey_power_path = malloc(node_pathsize); |
| 226 | if (samsung_pwr->touchkey_power_path == NULL) { |
| 227 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 228 | ALOGE("Out of memory: %s\n", errno_str); |
| 229 | return; |
| 230 | } |
Christopher N. Hesse | 22da313 | 2016-02-01 12:36:54 +0100 | [diff] [blame] | 231 | snprintf(samsung_pwr->touchkey_power_path, node_pathsize, |
| 232 | "%s", node_path); |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | if (strncmp(file_content, "sec_touchscreen", 15) == 0) { |
| 236 | ALOGV("%s: found touchscreen path: %s\n", __func__, node_path); |
| 237 | samsung_pwr->touchscreen_power_path = malloc(node_pathsize); |
| 238 | if (samsung_pwr->touchscreen_power_path == NULL) { |
| 239 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 240 | ALOGE("Out of memory: %s\n", errno_str); |
| 241 | return; |
| 242 | } |
Christopher N. Hesse | 22da313 | 2016-02-01 12:36:54 +0100 | [diff] [blame] | 243 | snprintf(samsung_pwr->touchscreen_power_path, node_pathsize, |
| 244 | "%s", node_path); |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 245 | } |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | if (path) |
| 250 | free(path); |
| 251 | if (node_path) |
| 252 | free(node_path); |
| 253 | closedir(d); |
| 254 | } |
| 255 | |
| 256 | /********************************************************** |
| 257 | *** INIT FUNCTIONS |
| 258 | **********************************************************/ |
| 259 | |
| 260 | static void init_cpufreqs(struct samsung_power_module *samsung_pwr) |
| 261 | { |
| 262 | int rc; |
| 263 | struct stat sb; |
| 264 | |
| 265 | sysfs_read(CPU0_HISPEED_FREQ_PATH, samsung_pwr->cpu0_hispeed_freq, |
| 266 | sizeof(samsung_pwr->cpu0_hispeed_freq)); |
| 267 | sysfs_read(CPU0_MAX_FREQ_PATH, samsung_pwr->cpu0_max_freq, |
| 268 | sizeof(samsung_pwr->cpu0_max_freq)); |
| 269 | ALOGV("%s: CPU 0 hispeed freq: %s\n", __func__, samsung_pwr->cpu0_hispeed_freq); |
| 270 | ALOGV("%s: CPU 0 max freq: %s\n", __func__, samsung_pwr->cpu0_max_freq); |
| 271 | |
| 272 | rc = stat(CPU4_HISPEED_FREQ_PATH, &sb); |
| 273 | if (rc == 0) { |
| 274 | sysfs_read(CPU4_HISPEED_FREQ_PATH, samsung_pwr->cpu4_hispeed_freq, |
| 275 | sizeof(samsung_pwr->cpu4_hispeed_freq)); |
| 276 | sysfs_read(CPU4_MAX_FREQ_PATH, samsung_pwr->cpu4_max_freq, |
| 277 | sizeof(samsung_pwr->cpu4_max_freq)); |
| 278 | ALOGV("%s: CPU 4 hispeed freq: %s\n", __func__, samsung_pwr->cpu4_hispeed_freq); |
| 279 | ALOGV("%s: CPU 4 max freq: %s\n", __func__, samsung_pwr->cpu4_max_freq); |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | static void init_touch_input_power_path(struct samsung_power_module *samsung_pwr) |
| 284 | { |
| 285 | char dir[1024]; |
| 286 | char errno_str[64]; |
| 287 | uint32_t i; |
| 288 | |
| 289 | for (i = 0; i < 20; i++) { |
| 290 | snprintf(dir, sizeof(dir), "/sys/class/input/input%d", i); |
| 291 | find_input_nodes(samsung_pwr, dir); |
| 292 | } |
| 293 | } |
| 294 | |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 295 | static void samsung_power_init(struct power_module *module) |
| 296 | { |
| 297 | struct samsung_power_module *samsung_pwr = (struct samsung_power_module *) module; |
| 298 | |
| 299 | init_cpufreqs(samsung_pwr); |
| 300 | init_touch_input_power_path(samsung_pwr); |
| 301 | } |
| 302 | |
Christopher N. Hesse | f629672 | 2017-01-16 22:47:11 +0100 | [diff] [blame] | 303 | /********************************************************** |
| 304 | *** API FUNCTIONS |
| 305 | *** |
| 306 | *** Refer to power.h for documentation. |
| 307 | **********************************************************/ |
| 308 | |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 309 | static void samsung_power_set_interactive(struct power_module *module, int on) |
| 310 | { |
| 311 | struct samsung_power_module *samsung_pwr = (struct samsung_power_module *) module; |
| 312 | struct stat sb; |
| 313 | char buf[80]; |
| 314 | char touchkey_node[2]; |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 315 | int rc; |
| 316 | |
| 317 | ALOGV("power_set_interactive: %d\n", on); |
| 318 | |
Christopher N. Hesse | 1226350 | 2016-12-07 12:18:20 +0100 | [diff] [blame] | 319 | // Get panel backlight brightness from lights HAL |
Christopher N. Hesse | 3360b09 | 2016-07-11 15:48:35 +0200 | [diff] [blame] | 320 | // Do not disable any input devices if the screen is on but we are in a non-interactive state |
| 321 | if (!on) { |
Christopher N. Hesse | 1226350 | 2016-12-07 12:18:20 +0100 | [diff] [blame] | 322 | if (get_cur_panel_brightness() > 0) { |
Christopher N. Hesse | 3360b09 | 2016-07-11 15:48:35 +0200 | [diff] [blame] | 323 | ALOGV("%s: Moving to non-interactive state, but screen is still on," |
| 324 | " not disabling input devices\n", __func__); |
| 325 | goto out; |
| 326 | } |
| 327 | } |
| 328 | |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 329 | sysfs_write(samsung_pwr->touchscreen_power_path, on ? "1" : "0"); |
| 330 | |
| 331 | rc = stat(samsung_pwr->touchkey_power_path, &sb); |
| 332 | if (rc < 0) { |
| 333 | goto out; |
| 334 | } |
| 335 | |
| 336 | if (!on) { |
| 337 | if (sysfs_read(samsung_pwr->touchkey_power_path, touchkey_node, |
| 338 | sizeof(touchkey_node)) == 0) { |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 339 | /* |
Christopher N. Hesse | 3360b09 | 2016-07-11 15:48:35 +0200 | [diff] [blame] | 340 | * If touchkey_node is 0, the keys have been disabled by another component |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 341 | * (for example cmhw), which means we don't want them to be enabled when resuming |
| 342 | * from suspend. |
| 343 | */ |
Christopher N. Hesse | 3360b09 | 2016-07-11 15:48:35 +0200 | [diff] [blame] | 344 | if ((touchkey_node[0] - '0') == 0) { |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 345 | samsung_pwr->touchkey_blocked = true; |
| 346 | } else { |
| 347 | samsung_pwr->touchkey_blocked = false; |
| 348 | sysfs_write(samsung_pwr->touchkey_power_path, "0"); |
| 349 | } |
| 350 | } |
| 351 | } else if (!samsung_pwr->touchkey_blocked) { |
| 352 | sysfs_write(samsung_pwr->touchkey_power_path, "1"); |
| 353 | } |
| 354 | |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 355 | out: |
Christopher N. Hesse | 2879c69 | 2016-07-11 15:49:49 +0200 | [diff] [blame] | 356 | sysfs_write(IO_IS_BUSY_PATH, on ? "1" : "0"); |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 357 | ALOGV("power_set_interactive: %d done\n", on); |
| 358 | } |
| 359 | |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 360 | static void samsung_power_hint(struct power_module *module, |
| 361 | power_hint_t hint, |
| 362 | void *data) |
| 363 | { |
| 364 | struct samsung_power_module *samsung_pwr = (struct samsung_power_module *) module; |
| 365 | char errno_str[64]; |
| 366 | int len; |
| 367 | |
| 368 | switch (hint) { |
| 369 | case POWER_HINT_INTERACTION: { |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 370 | if (current_power_profile == PROFILE_POWER_SAVE) { |
| 371 | return; |
| 372 | } |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 373 | |
| 374 | ALOGV("%s: POWER_HINT_INTERACTION", __func__); |
| 375 | |
| 376 | if (boostpulse_open(samsung_pwr) >= 0) { |
| 377 | len = write(samsung_pwr->boostpulse_fd, "1", 1); |
| 378 | |
| 379 | if (len < 0) { |
| 380 | strerror_r(errno, errno_str, sizeof(errno_str)); |
| 381 | ALOGE("Error writing to %s: %s\n", BOOSTPULSE_PATH, errno_str); |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | break; |
| 386 | } |
| 387 | case POWER_HINT_VSYNC: { |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 388 | ALOGV("%s: POWER_HINT_VSYNC", __func__); |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 389 | break; |
| 390 | } |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 391 | case POWER_HINT_SET_PROFILE: { |
| 392 | int profile = *((intptr_t *)data); |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 393 | |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 394 | ALOGV("%s: POWER_HINT_SET_PROFILE", __func__); |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 395 | |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 396 | set_power_profile(samsung_pwr, profile); |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 397 | break; |
| 398 | } |
| 399 | default: |
| 400 | break; |
| 401 | } |
| 402 | } |
| 403 | |
Andreas Schneider | f15d7f4 | 2016-02-03 10:43:47 +0100 | [diff] [blame] | 404 | static int samsung_get_feature(struct power_module *module __unused, |
| 405 | feature_t feature) |
| 406 | { |
| 407 | if (feature == POWER_FEATURE_SUPPORTED_PROFILES) { |
| 408 | return 3; |
| 409 | } |
| 410 | |
| 411 | return -1; |
| 412 | } |
| 413 | |
Christopher N. Hesse | 1c47466 | 2016-11-18 18:59:06 +0100 | [diff] [blame] | 414 | static void samsung_set_feature(struct power_module *module, feature_t feature, int state __unused) |
Christopher N. Hesse | e480d89 | 2016-06-22 23:04:39 +0200 | [diff] [blame] | 415 | { |
| 416 | struct samsung_power_module *samsung_pwr = (struct samsung_power_module *) module; |
| 417 | |
| 418 | switch (feature) { |
ishantvivek | 987dcca | 2016-11-21 06:05:47 +0000 | [diff] [blame] | 419 | #ifdef TARGET_TAP_TO_WAKE_NODE |
Christopher N. Hesse | e480d89 | 2016-06-22 23:04:39 +0200 | [diff] [blame] | 420 | case POWER_FEATURE_DOUBLE_TAP_TO_WAKE: |
| 421 | ALOGV("%s: %s double tap to wake", __func__, state ? "enabling" : "disabling"); |
ishantvivek | 987dcca | 2016-11-21 06:05:47 +0000 | [diff] [blame] | 422 | sysfs_write(TARGET_TAP_TO_WAKE_NODE, state > 0 ? "1" : "0"); |
Christopher N. Hesse | e480d89 | 2016-06-22 23:04:39 +0200 | [diff] [blame] | 423 | break; |
| 424 | #endif |
| 425 | default: |
| 426 | break; |
| 427 | } |
| 428 | } |
| 429 | |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 430 | static struct hw_module_methods_t power_module_methods = { |
| 431 | .open = NULL, |
| 432 | }; |
| 433 | |
| 434 | struct samsung_power_module HAL_MODULE_INFO_SYM = { |
| 435 | .base = { |
| 436 | .common = { |
| 437 | .tag = HARDWARE_MODULE_TAG, |
| 438 | .module_api_version = POWER_MODULE_API_VERSION_0_2, |
| 439 | .hal_api_version = HARDWARE_HAL_API_VERSION, |
| 440 | .id = POWER_HARDWARE_MODULE_ID, |
| 441 | .name = "Samsung Power HAL", |
Christopher N. Hesse | aa75be4 | 2017-01-16 22:47:59 +0100 | [diff] [blame] | 442 | .author = "The LineageOS Project", |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 443 | .methods = &power_module_methods, |
| 444 | }, |
| 445 | |
| 446 | .init = samsung_power_init, |
| 447 | .setInteractive = samsung_power_set_interactive, |
| 448 | .powerHint = samsung_power_hint, |
Christopher N. Hesse | e480d89 | 2016-06-22 23:04:39 +0200 | [diff] [blame] | 449 | .getFeature = samsung_get_feature, |
| 450 | .setFeature = samsung_set_feature |
Christopher N. Hesse | de5e3c6 | 2015-12-21 21:28:23 +0100 | [diff] [blame] | 451 | }, |
| 452 | |
| 453 | .lock = PTHREAD_MUTEX_INITIALIZER, |
| 454 | .boostpulse_fd = -1, |
| 455 | .boostpulse_warned = 0, |
| 456 | }; |