Add pixel power extension service interface

Bug: 151896829
Test: Build
Change-Id: I36dd5d08f5dac9916c39f11c60300aacab0a1880
diff --git a/power/Android.bp b/power/Android.bp
new file mode 100644
index 0000000..072f216
--- /dev/null
+++ b/power/Android.bp
@@ -0,0 +1,15 @@
+aidl_interface {
+    name: "pixel-power-ext",
+    vendor_available: true,
+    srcs: [
+        "android/hardware/pixel/extension/power/IPowerExt.aidl",
+    ],
+
+    stability: "vintf",
+
+    backend: {
+        java: {
+            platform_apis: true,
+        },
+    },
+}
diff --git a/power/android/hardware/pixel/extension/power/IPowerExt.aidl b/power/android/hardware/pixel/extension/power/IPowerExt.aidl
new file mode 100644
index 0000000..80a1fa1
--- /dev/null
+++ b/power/android/hardware/pixel/extension/power/IPowerExt.aidl
@@ -0,0 +1,69 @@
+/*
+ * Copyright (C) 2020 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.
+ */
+
+package android.hardware.pixel.extension.power;
+
+@VintfStability
+interface IPowerExt {
+    /**
+     * setMode() is called to enable/disable specific hint mode, which
+     * may result in adjustment of power/performance parameters of the
+     * cpufreq governor and other controls on device side.
+     *
+     * A particular platform may choose to ignore any mode hint.
+     *
+     * @param mode which is to be enable/disable.
+     * @param enabled true to enable, false to disable the mode.
+     */
+    oneway void setMode(in @utf8InCpp String mode, in boolean enabled);
+
+    /**
+     * isModeSupported() is called to query if the given mode hint is
+     * supported by vendor.
+     *
+     * @return true if the hint passed is supported on this platform.
+     *         If false, setting the mode will have no effect.
+     * @param mode to be queried
+     */
+    boolean isModeSupported(in @utf8InCpp String mode);
+
+    /**
+     * setBoost() indicates the device may need to boost some resources, as the
+     * the load is likely to increase before the kernel governors can react.
+     * Depending on the boost, it may be appropriate to raise the frequencies of
+     * CPU, GPU, memory subsystem, or stop CPU from going into deep sleep state.
+     * A particular platform may choose to ignore this hint.
+     *
+     * @param boost which is to be set with a timeout.
+     * @param durationMs The expected duration of the user's interaction, if
+     *        known, or 0 if the expected duration is unknown.
+     *        a negative value indicates canceling previous boost.
+     *        A given platform can choose to boost some time based on durationMs,
+     *        and may also pick an appropriate timeout for 0 case.
+     */
+    oneway void setBoost(in @utf8InCpp String boost, in int durationMs);
+
+    /**
+     * isBoostSupported() is called to query if the given boost hint is
+     * supported by vendor. When returns false, set the boost will have
+     * no effect on the platform.
+     *
+     * @return true if the hint passed is supported on this platform.
+     *         If false, setting the boost will have no effect.
+     * @param boost to be queried
+     */
+    boolean isBoostSupported(in @utf8InCpp String boost);
+}