429c0c5257
Thermal drivers offer a generic mechanism for thermal management. Usually it's made up of one or more thermal zones and cooling devices. Each thermal zone contains its own temperature, trip points, and cooling devices. All platforms with ACPI or OFW thermal support can use this driver. Signed-off-by: GuEe-GUI <2991707448@qq.com>
14 lines
323 B
C
14 lines
323 B
C
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __DT_BINDINGS_THERMAL_THERMAL_H__
|
|
#define __DT_BINDINGS_THERMAL_THERMAL_H__
|
|
|
|
/* On cooling devices upper and lower limits */
|
|
#define THERMAL_NO_LIMIT (~0)
|
|
|
|
#endif /* __DT_BINDINGS_THERMAL_THERMAL_H__ */
|