blob: 467d096439a965913701b583b486761eb2b2591d [file] [log] [blame]
/*
* Copyright (C) 2022 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.thermal;
/**
* Device temperature types
* @hide
*/
@VintfStability
@Backing(type="int")
enum TemperatureType {
UNKNOWN = -1,
CPU = 0,
GPU = 1,
BATTERY = 2,
SKIN = 3,
USB_PORT = 4,
POWER_AMPLIFIER = 5,
/**
* Battery Current Limit - virtual sensors
*/
BCL_VOLTAGE = 6,
BCL_CURRENT = 7,
BCL_PERCENTAGE = 8,
/**
* Neural Processing Unit
*/
NPU = 9,
TPU = 10,
DISPLAY = 11,
MODEM = 12,
SOC = 13,
}