mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 01:19:49 +00:00
5b70caa6a4
Sync with kernel v6.7-rc1 and sync up the u-boot dts files accordingly. Signed-off-by: Nishanth Menon <nm@ti.com>
47 lines
1.1 KiB
Text
47 lines
1.1 KiB
Text
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <dt-bindings/thermal/thermal.h>
|
|
|
|
thermal_zones: thermal-zones {
|
|
main0_thermal: main0-thermal {
|
|
polling-delay-passive = <250>; /* milliSeconds */
|
|
polling-delay = <500>; /* milliSeconds */
|
|
thermal-sensors = <&wkup_vtm0 0>;
|
|
|
|
trips {
|
|
main0_crit: main0-crit {
|
|
temperature = <125000>; /* milliCelsius */
|
|
hysteresis = <2000>; /* milliCelsius */
|
|
type = "critical";
|
|
};
|
|
};
|
|
};
|
|
|
|
main1_thermal: main1-thermal {
|
|
polling-delay-passive = <250>; /* milliSeconds */
|
|
polling-delay = <500>; /* milliSeconds */
|
|
thermal-sensors = <&wkup_vtm0 1>;
|
|
|
|
trips {
|
|
main1_crit: main1-crit {
|
|
temperature = <125000>; /* milliCelsius */
|
|
hysteresis = <2000>; /* milliCelsius */
|
|
type = "critical";
|
|
};
|
|
};
|
|
};
|
|
|
|
main2_thermal: main2-thermal {
|
|
polling-delay-passive = <250>; /* milliSeconds */
|
|
polling-delay = <500>; /* milliSeconds */
|
|
thermal-sensors = <&wkup_vtm0 2>;
|
|
|
|
trips {
|
|
main2_crit: main2-crit {
|
|
temperature = <125000>; /* milliCelsius */
|
|
hysteresis = <2000>; /* milliCelsius */
|
|
type = "critical";
|
|
};
|
|
};
|
|
};
|
|
};
|