Roger Quadros | 01f573e | 2023-08-05 11:14:40 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | |
| 3 | #include <dt-bindings/thermal/thermal.h> |
| 4 | |
| 5 | thermal_zones: thermal-zones { |
| 6 | main0_thermal: main0-thermal { |
| 7 | polling-delay-passive = <250>; /* milliSeconds */ |
| 8 | polling-delay = <500>; /* milliSeconds */ |
| 9 | thermal-sensors = <&main_vtm0 0>; |
| 10 | |
| 11 | trips { |
| 12 | main0_crit: main0-crit { |
| 13 | temperature = <105000>; /* milliCelsius */ |
| 14 | hysteresis = <2000>; /* milliCelsius */ |
| 15 | type = "critical"; |
| 16 | }; |
| 17 | }; |
| 18 | }; |
| 19 | |
| 20 | main1_thermal: main1-thermal { |
| 21 | polling-delay-passive = <250>; /* milliSeconds */ |
| 22 | polling-delay = <500>; /* milliSeconds */ |
| 23 | thermal-sensors = <&main_vtm0 1>; |
| 24 | |
| 25 | trips { |
| 26 | main1_crit: main1-crit { |
| 27 | temperature = <105000>; /* milliCelsius */ |
| 28 | hysteresis = <2000>; /* milliCelsius */ |
| 29 | type = "critical"; |
| 30 | }; |
| 31 | }; |
| 32 | }; |
| 33 | }; |