mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
7937af120b
Update the am62 and am625 device-trees from linux v6.5-rc1. This needed the following tweaks to the u-boot specific dtsi as well: - Switch tick-timer to the main_timer as it's now defined in the main dtsi - Secure proxies are defined in SoC dtsi - Drop duplicate nodes - u-boot.dtsi is includes in r5-sk, no need for either the definitions from main.dtsi OR duplication from u-boot.dtsi Reviewed-by: Roger Quadros <rogerq@kernel.org> Reviewed-by: Maxime Ripard <mripard@kernel.org> Tested-by: Maxime Ripard <mripard@kernel.org> Cc: Francesco Dolcini <francesco@dolcini.it> Cc: Sjoerd Simons <sjoerd@collabora.com> Cc: Wadim Egorov <w.egorov@phytec.de> Signed-off-by: Nishanth Menon <nm@ti.com>
33 lines
780 B
Text
33 lines
780 B
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 = <105000>; /* 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 = <105000>; /* milliCelsius */
|
|
hysteresis = <2000>; /* milliCelsius */
|
|
type = "critical";
|
|
};
|
|
};
|
|
};
|
|
};
|