blob: 80a1fa1211934036c9de1c941e11e3b94b33c139 [file] [log] [blame]
/*
* 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);
}