/linux-6.1.9/drivers/acpi/ |
D | thermal.c | 169 struct acpi_thermal_trips trips; member 274 tz->trips.critical.temperature = tmp; in acpi_thermal_trips_update() 282 tz->trips.critical.flags.valid = 0; in acpi_thermal_trips_update() 287 tz->trips.critical.flags.valid = 0; in acpi_thermal_trips_update() 289 tz->trips.critical.flags.valid = 1; in acpi_thermal_trips_update() 292 tz->trips.critical.temperature); in acpi_thermal_trips_update() 294 if (tz->trips.critical.flags.valid == 1) { in acpi_thermal_trips_update() 296 tz->trips.critical.flags.valid = 0; in acpi_thermal_trips_update() 303 if (crt_k > tz->trips.critical.temperature) in acpi_thermal_trips_update() 306 tz->trips.critical.temperature = crt_k; in acpi_thermal_trips_update() [all …]
|
/linux-6.1.9/drivers/thermal/ |
D | thermal_of.c | 70 return tz->trips; in of_thermal_get_trip_points() 80 *type = tz->trips[trip].type; in of_thermal_get_trip_type() 91 *temp = tz->trips[trip].temperature; in of_thermal_get_trip_temp() 102 *hyst = tz->trips[trip].hysteresis; in of_thermal_get_trip_hyst() 114 tz->trips[trip].hysteresis = hyst; in of_thermal_set_trip_hyst() 125 if (tz->trips[i].type == THERMAL_TRIP_CRITICAL) { in of_thermal_get_crit_temp() 126 *temp = tz->trips[i].temperature; in of_thermal_get_crit_temp() 137 struct device_node *trips; in of_find_trip_id() local 141 trips = of_get_child_by_name(np, "trips"); in of_find_trip_id() 142 if (!trips) { in of_find_trip_id() [all …]
|
D | uniphier_thermal.c | 251 const struct thermal_trip *trips; in uniphier_tm_probe() local 300 trips = of_thermal_get_trip_points(tdev->tz_dev); in uniphier_tm_probe() 309 if (trips[i].type == THERMAL_TRIP_CRITICAL && in uniphier_tm_probe() 310 trips[i].temperature < crit_temp) in uniphier_tm_probe() 311 crit_temp = trips[i].temperature; in uniphier_tm_probe() 312 uniphier_tm_set_alert(tdev, i, trips[i].temperature); in uniphier_tm_probe()
|
/linux-6.1.9/drivers/net/ethernet/mellanox/mlxsw/ |
D | core_thermal.c | 81 struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS]; member 102 struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS]; member 139 tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = 0; in mlxsw_thermal_module_trips_reset() 140 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temp = 0; in mlxsw_thermal_module_trips_reset() 141 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temp = 0; in mlxsw_thermal_module_trips_reset() 183 tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = crit_temp - in mlxsw_thermal_module_trips_update() 186 tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = crit_temp; in mlxsw_thermal_module_trips_update() 187 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temp = crit_temp; in mlxsw_thermal_module_trips_update() 188 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temp = emerg_temp; in mlxsw_thermal_module_trips_update() 205 const struct mlxsw_thermal_trip *trip = &thermal->trips[i]; in mlxsw_thermal_bind() [all …]
|
/linux-6.1.9/Documentation/devicetree/bindings/thermal/ |
D | brcm,sr-thermal.txt | 37 trips { 49 trips { 61 trips { 73 trips { 85 trips { 97 trips {
|
D | db8500-thermal.txt | 9 - num-trips : number of total trip points, this is required, set it 0 if none, 19 Usually the num-trips and tripN-*** are separated in board related dts files. 28 num-trips = <3>;
|
D | thermal-zones.yaml | 107 trips: 176 crosses one of the temperature thresholds described in the trips 217 - trips 267 trips { 312 trips { 334 trips {
|
/linux-6.1.9/arch/arm64/boot/dts/ti/ |
D | k3-am654-industrial-thermal.dtsi | 10 trips { 24 trips { 38 trips {
|
/linux-6.1.9/arch/arm/boot/dts/ |
D | exynos5422-odroidhc1.dts | 35 trips { 90 trips { 134 trips { 178 trips { 222 trips {
|
D | exynos5422-odroidxu3-common.dtsi | 56 trips { 145 trips { 218 trips { 291 trips { 364 trips {
|
D | rk3288-veyron-mickey.dts | 42 /delete-node/ trips; 45 trips { 148 /delete-node/ trips; 151 trips {
|
D | qcom-ipq8064.dtsi | 57 trips { 77 trips { 97 trips { 117 trips { 137 trips { 157 trips { 177 trips { 197 trips { 217 trips { 237 trips { [all …]
|
D | dra7-dspeve-thermal.dtsi | 17 trips {
|
D | dra7-iva-thermal.dtsi | 17 trips {
|
D | omap5-core-thermal.dtsi | 18 trips {
|
D | exynos5420-trip-points.dtsi | 10 trips {
|
D | omap5-gpu-thermal.dtsi | 18 trips {
|
/linux-6.1.9/arch/arm64/boot/dts/exynos/ |
D | exynos5433-tmu.dtsi | 16 trips { 104 trips { 147 trips { 190 trips { 266 trips {
|
/linux-6.1.9/drivers/thermal/qcom/ |
D | qcom-spmi-temp-alarm.c | 304 const struct thermal_trip *trips; in qpnp_tm_get_critical_trip_temp() local 311 trips = of_thermal_get_trip_points(chip->tz_dev); in qpnp_tm_get_critical_trip_temp() 312 if (!trips) in qpnp_tm_get_critical_trip_temp() 317 trips[i].type == THERMAL_TRIP_CRITICAL) in qpnp_tm_get_critical_trip_temp() 318 return trips[i].temperature; in qpnp_tm_get_critical_trip_temp()
|
/linux-6.1.9/arch/arm64/boot/dts/marvell/ |
D | armada-ap80x.dtsi | 321 trips { 338 trips { 371 trips { 404 trips { 437 trips {
|
/linux-6.1.9/arch/arm64/boot/dts/qcom/ |
D | sm8350.dtsi | 2638 trips { 2682 trips { 2726 trips { 2770 trips { 2814 trips { 2858 trips { 2902 trips { 2946 trips { 2990 trips { 3034 trips { [all …]
|
D | msm8998.dtsi | 461 trips { 482 trips { 503 trips { 524 trips { 545 trips { 566 trips { 587 trips { 608 trips { 629 trips { 644 trips { [all …]
|
D | sm8450.dtsi | 3286 trips { 3306 trips { 3326 trips { 3346 trips { 3366 trips { 3386 trips { 3412 trips { 3438 trips { 3464 trips { 3490 trips { [all …]
|
D | sm8250-mtp.dts | 36 trips { 50 trips { 64 trips { 78 trips { 92 trips { 106 trips { 120 trips {
|
/linux-6.1.9/arch/arm64/boot/dts/mediatek/ |
D | mt8173-elm-hana-rev7.dts | 15 trips {
|