summaryrefslogtreecommitdiff
path: root/vr-8998.c
diff options
context:
space:
mode:
authorSathish Ambley <sathishambley@codeaurora.org>2017-07-19 10:26:51 -0700
committerSathish Ambley <sathishambley@codeaurora.org>2017-07-19 10:26:51 -0700
commit519f68e658ab7b8a053ff281de3d0f42e67f0d77 (patch)
tree59b095726e3a5875de77fdc633dac2ac2dc31dc9 /vr-8998.c
parentd2b9b603fb7e5be12720cf71e4f8284a93c051a8 (diff)
downloadvr-519f68e658ab7b8a053ff281de3d0f42e67f0d77.tar.gz
Implemantation of VR HAL
Moving files from /device/qcom/commom/vr to hardware/qcom/vr Change-Id: Idff688e2ce3d4ee2b69e211a4af1b14c6c55f1cc
Diffstat (limited to 'vr-8998.c')
-rw-r--r--vr-8998.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/vr-8998.c b/vr-8998.c
new file mode 100644
index 0000000..9c6e5a3
--- /dev/null
+++ b/vr-8998.c
@@ -0,0 +1,53 @@
+/*
+ * Copyright (c) 2017, The Linux Foundation. All rights reserved.
+ * Not a contribution
+ * Copyright (C) 2016 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "vr_int.h"
+
+// List thermal configs in format {name, algo_type}
+// This list is manually synced with the thermal config
+
+#define THERMAL_CONFIG_SYNCED 1
+
+#if THERMAL_CONFIG_SYNCED
+
+#define NUM_NON_VR_CONFIGS 4
+static thermal_algo_info_t non_vr_thermal_configs[NUM_NON_VR_CONFIGS] =
+ {{.config_name = "SKIN-HIGH-FLOOR", .algo_name = "ss"},
+ {.config_name = "SKIN-MID-FLOOR", .algo_name = "ss"},
+ {.config_name = "SKIN-LOW-FLOOR", .algo_name = "ss"},
+ {.config_name = "VIRTUAL-SS-GPU-SKIN", .algo_name = "ss"}};
+
+#define NUM_VR_CONFIGS 1
+static thermal_algo_info_t vr_thermal_configs[NUM_VR_CONFIGS] =
+ {{.config_name = "VR-EMMC", .algo_name = "monitor"}};
+
+int load_thermal_cfg_info(thermal_cfg_info_t *non_vr, thermal_cfg_info_t *vr) {
+
+ if(!non_vr || !vr)
+ return -1;
+
+ non_vr->num_cfgs = NUM_NON_VR_CONFIGS;
+ non_vr->cfgs = &non_vr_thermal_configs[0];
+
+ vr->num_cfgs = NUM_VR_CONFIGS;
+ vr->cfgs = &vr_thermal_configs[0];
+
+ return 0;
+}
+
+#endif