gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / net / ethernet / mellanox / mlxsw / core_thermal.c
blobce0a6837daa32b3748e79b0880f35c38ad458851
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /* Copyright (c) 2016-2018 Mellanox Technologies. All rights reserved
3 * Copyright (c) 2016 Ivan Vecera <cera@cera.cz>
4 */
6 #include <linux/kernel.h>
7 #include <linux/types.h>
8 #include <linux/device.h>
9 #include <linux/sysfs.h>
10 #include <linux/thermal.h>
11 #include <linux/err.h>
12 #include <linux/sfp.h>
14 #include "core.h"
15 #include "core_env.h"
17 #define MLXSW_THERMAL_POLL_INT 1000 /* ms */
18 #define MLXSW_THERMAL_SLOW_POLL_INT 20000 /* ms */
19 #define MLXSW_THERMAL_ASIC_TEMP_NORM 75000 /* 75C */
20 #define MLXSW_THERMAL_ASIC_TEMP_HIGH 85000 /* 85C */
21 #define MLXSW_THERMAL_ASIC_TEMP_HOT 105000 /* 105C */
22 #define MLXSW_THERMAL_ASIC_TEMP_CRIT 110000 /* 110C */
23 #define MLXSW_THERMAL_HYSTERESIS_TEMP 5000 /* 5C */
24 #define MLXSW_THERMAL_MODULE_TEMP_SHIFT (MLXSW_THERMAL_HYSTERESIS_TEMP * 2)
25 #define MLXSW_THERMAL_ZONE_MAX_NAME 16
26 #define MLXSW_THERMAL_TEMP_SCORE_MAX GENMASK(31, 0)
27 #define MLXSW_THERMAL_MAX_STATE 10
28 #define MLXSW_THERMAL_MAX_DUTY 255
29 /* Minimum and maximum fan allowed speed in percent: from 20% to 100%. Values
30 * MLXSW_THERMAL_MAX_STATE + x, where x is between 2 and 10 are used for
31 * setting fan speed dynamic minimum. For example, if value is set to 14 (40%)
32 * cooling levels vector will be set to 4, 4, 4, 4, 4, 5, 6, 7, 8, 9, 10 to
33 * introduce PWM speed in percent: 40, 40, 40, 40, 40, 50, 60. 70, 80, 90, 100.
35 #define MLXSW_THERMAL_SPEED_MIN (MLXSW_THERMAL_MAX_STATE + 2)
36 #define MLXSW_THERMAL_SPEED_MAX (MLXSW_THERMAL_MAX_STATE * 2)
37 #define MLXSW_THERMAL_SPEED_MIN_LEVEL 2 /* 20% */
39 /* External cooling devices, allowed for binding to mlxsw thermal zones. */
40 static char * const mlxsw_thermal_external_allowed_cdev[] = {
41 "mlxreg_fan",
44 enum mlxsw_thermal_trips {
45 MLXSW_THERMAL_TEMP_TRIP_NORM,
46 MLXSW_THERMAL_TEMP_TRIP_HIGH,
47 MLXSW_THERMAL_TEMP_TRIP_HOT,
48 MLXSW_THERMAL_TEMP_TRIP_CRIT,
51 struct mlxsw_thermal_trip {
52 int type;
53 int temp;
54 int hyst;
55 int min_state;
56 int max_state;
59 static const struct mlxsw_thermal_trip default_thermal_trips[] = {
60 { /* In range - 0-40% PWM */
61 .type = THERMAL_TRIP_ACTIVE,
62 .temp = MLXSW_THERMAL_ASIC_TEMP_NORM,
63 .hyst = MLXSW_THERMAL_HYSTERESIS_TEMP,
64 .min_state = 0,
65 .max_state = (4 * MLXSW_THERMAL_MAX_STATE) / 10,
68 /* In range - 40-100% PWM */
69 .type = THERMAL_TRIP_ACTIVE,
70 .temp = MLXSW_THERMAL_ASIC_TEMP_HIGH,
71 .hyst = MLXSW_THERMAL_HYSTERESIS_TEMP,
72 .min_state = (4 * MLXSW_THERMAL_MAX_STATE) / 10,
73 .max_state = MLXSW_THERMAL_MAX_STATE,
75 { /* Warning */
76 .type = THERMAL_TRIP_HOT,
77 .temp = MLXSW_THERMAL_ASIC_TEMP_HOT,
78 .hyst = MLXSW_THERMAL_HYSTERESIS_TEMP,
79 .min_state = MLXSW_THERMAL_MAX_STATE,
80 .max_state = MLXSW_THERMAL_MAX_STATE,
82 { /* Critical - soft poweroff */
83 .type = THERMAL_TRIP_CRITICAL,
84 .temp = MLXSW_THERMAL_ASIC_TEMP_CRIT,
85 .min_state = MLXSW_THERMAL_MAX_STATE,
86 .max_state = MLXSW_THERMAL_MAX_STATE,
90 #define MLXSW_THERMAL_NUM_TRIPS ARRAY_SIZE(default_thermal_trips)
92 /* Make sure all trips are writable */
93 #define MLXSW_THERMAL_TRIP_MASK (BIT(MLXSW_THERMAL_NUM_TRIPS) - 1)
95 struct mlxsw_thermal;
97 struct mlxsw_thermal_module {
98 struct mlxsw_thermal *parent;
99 struct thermal_zone_device *tzdev;
100 struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS];
101 enum thermal_device_mode mode;
102 int module; /* Module or gearbox number */
105 struct mlxsw_thermal {
106 struct mlxsw_core *core;
107 const struct mlxsw_bus_info *bus_info;
108 struct thermal_zone_device *tzdev;
109 int polling_delay;
110 struct thermal_cooling_device *cdevs[MLXSW_MFCR_PWMS_MAX];
111 u8 cooling_levels[MLXSW_THERMAL_MAX_STATE + 1];
112 struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS];
113 enum thermal_device_mode mode;
114 struct mlxsw_thermal_module *tz_module_arr;
115 u8 tz_module_num;
116 struct mlxsw_thermal_module *tz_gearbox_arr;
117 u8 tz_gearbox_num;
118 unsigned int tz_highest_score;
119 struct thermal_zone_device *tz_highest_dev;
122 static inline u8 mlxsw_state_to_duty(int state)
124 return DIV_ROUND_CLOSEST(state * MLXSW_THERMAL_MAX_DUTY,
125 MLXSW_THERMAL_MAX_STATE);
128 static inline int mlxsw_duty_to_state(u8 duty)
130 return DIV_ROUND_CLOSEST(duty * MLXSW_THERMAL_MAX_STATE,
131 MLXSW_THERMAL_MAX_DUTY);
134 static int mlxsw_get_cooling_device_idx(struct mlxsw_thermal *thermal,
135 struct thermal_cooling_device *cdev)
137 int i;
139 for (i = 0; i < MLXSW_MFCR_PWMS_MAX; i++)
140 if (thermal->cdevs[i] == cdev)
141 return i;
143 /* Allow mlxsw thermal zone binding to an external cooling device */
144 for (i = 0; i < ARRAY_SIZE(mlxsw_thermal_external_allowed_cdev); i++) {
145 if (strnstr(cdev->type, mlxsw_thermal_external_allowed_cdev[i],
146 sizeof(cdev->type)))
147 return 0;
150 return -ENODEV;
153 static void
154 mlxsw_thermal_module_trips_reset(struct mlxsw_thermal_module *tz)
156 tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = 0;
157 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temp = 0;
158 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temp = 0;
159 tz->trips[MLXSW_THERMAL_TEMP_TRIP_CRIT].temp = 0;
162 static int
163 mlxsw_thermal_module_trips_update(struct device *dev, struct mlxsw_core *core,
164 struct mlxsw_thermal_module *tz)
166 int crit_temp, emerg_temp;
167 int err;
169 err = mlxsw_env_module_temp_thresholds_get(core, tz->module,
170 SFP_TEMP_HIGH_WARN,
171 &crit_temp);
172 if (err)
173 return err;
175 err = mlxsw_env_module_temp_thresholds_get(core, tz->module,
176 SFP_TEMP_HIGH_ALARM,
177 &emerg_temp);
178 if (err)
179 return err;
181 /* According to the system thermal requirements, the thermal zones are
182 * defined with four trip points. The critical and emergency
183 * temperature thresholds, provided by QSFP module are set as "active"
184 * and "hot" trip points, "normal" and "critical" trip points are
185 * derived from "active" and "hot" by subtracting or adding double
186 * hysteresis value.
188 if (crit_temp >= MLXSW_THERMAL_MODULE_TEMP_SHIFT)
189 tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = crit_temp -
190 MLXSW_THERMAL_MODULE_TEMP_SHIFT;
191 else
192 tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = crit_temp;
193 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temp = crit_temp;
194 tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temp = emerg_temp;
195 if (emerg_temp > crit_temp)
196 tz->trips[MLXSW_THERMAL_TEMP_TRIP_CRIT].temp = emerg_temp +
197 MLXSW_THERMAL_MODULE_TEMP_SHIFT;
198 else
199 tz->trips[MLXSW_THERMAL_TEMP_TRIP_CRIT].temp = emerg_temp;
201 return 0;
204 static void mlxsw_thermal_tz_score_update(struct mlxsw_thermal *thermal,
205 struct thermal_zone_device *tzdev,
206 struct mlxsw_thermal_trip *trips,
207 int temp)
209 struct mlxsw_thermal_trip *trip = trips;
210 unsigned int score, delta, i, shift = 1;
212 /* Calculate thermal zone score, if temperature is above the critical
213 * threshold score is set to MLXSW_THERMAL_TEMP_SCORE_MAX.
215 score = MLXSW_THERMAL_TEMP_SCORE_MAX;
216 for (i = MLXSW_THERMAL_TEMP_TRIP_NORM; i < MLXSW_THERMAL_NUM_TRIPS;
217 i++, trip++) {
218 if (temp < trip->temp) {
219 delta = DIV_ROUND_CLOSEST(temp, trip->temp - temp);
220 score = delta * shift;
221 break;
223 shift *= 256;
226 if (score > thermal->tz_highest_score) {
227 thermal->tz_highest_score = score;
228 thermal->tz_highest_dev = tzdev;
232 static int mlxsw_thermal_bind(struct thermal_zone_device *tzdev,
233 struct thermal_cooling_device *cdev)
235 struct mlxsw_thermal *thermal = tzdev->devdata;
236 struct device *dev = thermal->bus_info->dev;
237 int i, err;
239 /* If the cooling device is one of ours bind it */
240 if (mlxsw_get_cooling_device_idx(thermal, cdev) < 0)
241 return 0;
243 for (i = 0; i < MLXSW_THERMAL_NUM_TRIPS; i++) {
244 const struct mlxsw_thermal_trip *trip = &thermal->trips[i];
246 err = thermal_zone_bind_cooling_device(tzdev, i, cdev,
247 trip->max_state,
248 trip->min_state,
249 THERMAL_WEIGHT_DEFAULT);
250 if (err < 0) {
251 dev_err(dev, "Failed to bind cooling device to trip %d\n", i);
252 return err;
255 return 0;
258 static int mlxsw_thermal_unbind(struct thermal_zone_device *tzdev,
259 struct thermal_cooling_device *cdev)
261 struct mlxsw_thermal *thermal = tzdev->devdata;
262 struct device *dev = thermal->bus_info->dev;
263 int i;
264 int err;
266 /* If the cooling device is our one unbind it */
267 if (mlxsw_get_cooling_device_idx(thermal, cdev) < 0)
268 return 0;
270 for (i = 0; i < MLXSW_THERMAL_NUM_TRIPS; i++) {
271 err = thermal_zone_unbind_cooling_device(tzdev, i, cdev);
272 if (err < 0) {
273 dev_err(dev, "Failed to unbind cooling device\n");
274 return err;
277 return 0;
280 static int mlxsw_thermal_get_mode(struct thermal_zone_device *tzdev,
281 enum thermal_device_mode *mode)
283 struct mlxsw_thermal *thermal = tzdev->devdata;
285 *mode = thermal->mode;
287 return 0;
290 static int mlxsw_thermal_set_mode(struct thermal_zone_device *tzdev,
291 enum thermal_device_mode mode)
293 struct mlxsw_thermal *thermal = tzdev->devdata;
295 mutex_lock(&tzdev->lock);
297 if (mode == THERMAL_DEVICE_ENABLED)
298 tzdev->polling_delay = thermal->polling_delay;
299 else
300 tzdev->polling_delay = 0;
302 mutex_unlock(&tzdev->lock);
304 thermal->mode = mode;
305 thermal_zone_device_update(tzdev, THERMAL_EVENT_UNSPECIFIED);
307 return 0;
310 static int mlxsw_thermal_get_temp(struct thermal_zone_device *tzdev,
311 int *p_temp)
313 struct mlxsw_thermal *thermal = tzdev->devdata;
314 struct device *dev = thermal->bus_info->dev;
315 char mtmp_pl[MLXSW_REG_MTMP_LEN];
316 int temp;
317 int err;
319 mlxsw_reg_mtmp_pack(mtmp_pl, 0, false, false);
321 err = mlxsw_reg_query(thermal->core, MLXSW_REG(mtmp), mtmp_pl);
322 if (err) {
323 dev_err(dev, "Failed to query temp sensor\n");
324 return err;
326 mlxsw_reg_mtmp_unpack(mtmp_pl, &temp, NULL, NULL);
327 if (temp > 0)
328 mlxsw_thermal_tz_score_update(thermal, tzdev, thermal->trips,
329 temp);
331 *p_temp = temp;
332 return 0;
335 static int mlxsw_thermal_get_trip_type(struct thermal_zone_device *tzdev,
336 int trip,
337 enum thermal_trip_type *p_type)
339 struct mlxsw_thermal *thermal = tzdev->devdata;
341 if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS)
342 return -EINVAL;
344 *p_type = thermal->trips[trip].type;
345 return 0;
348 static int mlxsw_thermal_get_trip_temp(struct thermal_zone_device *tzdev,
349 int trip, int *p_temp)
351 struct mlxsw_thermal *thermal = tzdev->devdata;
353 if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS)
354 return -EINVAL;
356 *p_temp = thermal->trips[trip].temp;
357 return 0;
360 static int mlxsw_thermal_set_trip_temp(struct thermal_zone_device *tzdev,
361 int trip, int temp)
363 struct mlxsw_thermal *thermal = tzdev->devdata;
365 if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS ||
366 temp > MLXSW_THERMAL_ASIC_TEMP_CRIT)
367 return -EINVAL;
369 thermal->trips[trip].temp = temp;
370 return 0;
373 static int mlxsw_thermal_get_trip_hyst(struct thermal_zone_device *tzdev,
374 int trip, int *p_hyst)
376 struct mlxsw_thermal *thermal = tzdev->devdata;
378 *p_hyst = thermal->trips[trip].hyst;
379 return 0;
382 static int mlxsw_thermal_set_trip_hyst(struct thermal_zone_device *tzdev,
383 int trip, int hyst)
385 struct mlxsw_thermal *thermal = tzdev->devdata;
387 thermal->trips[trip].hyst = hyst;
388 return 0;
391 static int mlxsw_thermal_trend_get(struct thermal_zone_device *tzdev,
392 int trip, enum thermal_trend *trend)
394 struct mlxsw_thermal_module *tz = tzdev->devdata;
395 struct mlxsw_thermal *thermal = tz->parent;
397 if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS)
398 return -EINVAL;
400 if (tzdev == thermal->tz_highest_dev)
401 return 1;
403 *trend = THERMAL_TREND_STABLE;
404 return 0;
407 static struct thermal_zone_device_ops mlxsw_thermal_ops = {
408 .bind = mlxsw_thermal_bind,
409 .unbind = mlxsw_thermal_unbind,
410 .get_mode = mlxsw_thermal_get_mode,
411 .set_mode = mlxsw_thermal_set_mode,
412 .get_temp = mlxsw_thermal_get_temp,
413 .get_trip_type = mlxsw_thermal_get_trip_type,
414 .get_trip_temp = mlxsw_thermal_get_trip_temp,
415 .set_trip_temp = mlxsw_thermal_set_trip_temp,
416 .get_trip_hyst = mlxsw_thermal_get_trip_hyst,
417 .set_trip_hyst = mlxsw_thermal_set_trip_hyst,
418 .get_trend = mlxsw_thermal_trend_get,
421 static int mlxsw_thermal_module_bind(struct thermal_zone_device *tzdev,
422 struct thermal_cooling_device *cdev)
424 struct mlxsw_thermal_module *tz = tzdev->devdata;
425 struct mlxsw_thermal *thermal = tz->parent;
426 int i, j, err;
428 /* If the cooling device is one of ours bind it */
429 if (mlxsw_get_cooling_device_idx(thermal, cdev) < 0)
430 return 0;
432 for (i = 0; i < MLXSW_THERMAL_NUM_TRIPS; i++) {
433 const struct mlxsw_thermal_trip *trip = &tz->trips[i];
435 err = thermal_zone_bind_cooling_device(tzdev, i, cdev,
436 trip->max_state,
437 trip->min_state,
438 THERMAL_WEIGHT_DEFAULT);
439 if (err < 0)
440 goto err_bind_cooling_device;
442 return 0;
444 err_bind_cooling_device:
445 for (j = i - 1; j >= 0; j--)
446 thermal_zone_unbind_cooling_device(tzdev, j, cdev);
447 return err;
450 static int mlxsw_thermal_module_unbind(struct thermal_zone_device *tzdev,
451 struct thermal_cooling_device *cdev)
453 struct mlxsw_thermal_module *tz = tzdev->devdata;
454 struct mlxsw_thermal *thermal = tz->parent;
455 int i;
456 int err;
458 /* If the cooling device is one of ours unbind it */
459 if (mlxsw_get_cooling_device_idx(thermal, cdev) < 0)
460 return 0;
462 for (i = 0; i < MLXSW_THERMAL_NUM_TRIPS; i++) {
463 err = thermal_zone_unbind_cooling_device(tzdev, i, cdev);
464 WARN_ON(err);
466 return err;
469 static int mlxsw_thermal_module_mode_get(struct thermal_zone_device *tzdev,
470 enum thermal_device_mode *mode)
472 struct mlxsw_thermal_module *tz = tzdev->devdata;
474 *mode = tz->mode;
476 return 0;
479 static int mlxsw_thermal_module_mode_set(struct thermal_zone_device *tzdev,
480 enum thermal_device_mode mode)
482 struct mlxsw_thermal_module *tz = tzdev->devdata;
483 struct mlxsw_thermal *thermal = tz->parent;
485 mutex_lock(&tzdev->lock);
487 if (mode == THERMAL_DEVICE_ENABLED)
488 tzdev->polling_delay = thermal->polling_delay;
489 else
490 tzdev->polling_delay = 0;
492 mutex_unlock(&tzdev->lock);
494 tz->mode = mode;
495 thermal_zone_device_update(tzdev, THERMAL_EVENT_UNSPECIFIED);
497 return 0;
500 static int mlxsw_thermal_module_temp_get(struct thermal_zone_device *tzdev,
501 int *p_temp)
503 struct mlxsw_thermal_module *tz = tzdev->devdata;
504 struct mlxsw_thermal *thermal = tz->parent;
505 struct device *dev = thermal->bus_info->dev;
506 char mtmp_pl[MLXSW_REG_MTMP_LEN];
507 int temp;
508 int err;
510 /* Read module temperature. */
511 mlxsw_reg_mtmp_pack(mtmp_pl, MLXSW_REG_MTMP_MODULE_INDEX_MIN +
512 tz->module, false, false);
513 err = mlxsw_reg_query(thermal->core, MLXSW_REG(mtmp), mtmp_pl);
514 if (err) {
515 /* Do not return error - in case of broken module's sensor
516 * it will cause error message flooding.
518 temp = 0;
519 *p_temp = (int) temp;
520 return 0;
522 mlxsw_reg_mtmp_unpack(mtmp_pl, &temp, NULL, NULL);
523 *p_temp = temp;
525 if (!temp)
526 return 0;
528 /* Update trip points. */
529 err = mlxsw_thermal_module_trips_update(dev, thermal->core, tz);
530 if (!err && temp > 0)
531 mlxsw_thermal_tz_score_update(thermal, tzdev, tz->trips, temp);
533 return 0;
536 static int
537 mlxsw_thermal_module_trip_type_get(struct thermal_zone_device *tzdev, int trip,
538 enum thermal_trip_type *p_type)
540 struct mlxsw_thermal_module *tz = tzdev->devdata;
542 if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS)
543 return -EINVAL;
545 *p_type = tz->trips[trip].type;
546 return 0;
549 static int
550 mlxsw_thermal_module_trip_temp_get(struct thermal_zone_device *tzdev,
551 int trip, int *p_temp)
553 struct mlxsw_thermal_module *tz = tzdev->devdata;
555 if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS)
556 return -EINVAL;
558 *p_temp = tz->trips[trip].temp;
559 return 0;
562 static int
563 mlxsw_thermal_module_trip_temp_set(struct thermal_zone_device *tzdev,
564 int trip, int temp)
566 struct mlxsw_thermal_module *tz = tzdev->devdata;
568 if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS ||
569 temp > tz->trips[MLXSW_THERMAL_TEMP_TRIP_CRIT].temp)
570 return -EINVAL;
572 tz->trips[trip].temp = temp;
573 return 0;
576 static int
577 mlxsw_thermal_module_trip_hyst_get(struct thermal_zone_device *tzdev, int trip,
578 int *p_hyst)
580 struct mlxsw_thermal_module *tz = tzdev->devdata;
582 *p_hyst = tz->trips[trip].hyst;
583 return 0;
586 static int
587 mlxsw_thermal_module_trip_hyst_set(struct thermal_zone_device *tzdev, int trip,
588 int hyst)
590 struct mlxsw_thermal_module *tz = tzdev->devdata;
592 tz->trips[trip].hyst = hyst;
593 return 0;
596 static struct thermal_zone_device_ops mlxsw_thermal_module_ops = {
597 .bind = mlxsw_thermal_module_bind,
598 .unbind = mlxsw_thermal_module_unbind,
599 .get_mode = mlxsw_thermal_module_mode_get,
600 .set_mode = mlxsw_thermal_module_mode_set,
601 .get_temp = mlxsw_thermal_module_temp_get,
602 .get_trip_type = mlxsw_thermal_module_trip_type_get,
603 .get_trip_temp = mlxsw_thermal_module_trip_temp_get,
604 .set_trip_temp = mlxsw_thermal_module_trip_temp_set,
605 .get_trip_hyst = mlxsw_thermal_module_trip_hyst_get,
606 .set_trip_hyst = mlxsw_thermal_module_trip_hyst_set,
607 .get_trend = mlxsw_thermal_trend_get,
610 static int mlxsw_thermal_gearbox_temp_get(struct thermal_zone_device *tzdev,
611 int *p_temp)
613 struct mlxsw_thermal_module *tz = tzdev->devdata;
614 struct mlxsw_thermal *thermal = tz->parent;
615 char mtmp_pl[MLXSW_REG_MTMP_LEN];
616 u16 index;
617 int temp;
618 int err;
620 index = MLXSW_REG_MTMP_GBOX_INDEX_MIN + tz->module;
621 mlxsw_reg_mtmp_pack(mtmp_pl, index, false, false);
623 err = mlxsw_reg_query(thermal->core, MLXSW_REG(mtmp), mtmp_pl);
624 if (err)
625 return err;
627 mlxsw_reg_mtmp_unpack(mtmp_pl, &temp, NULL, NULL);
628 if (temp > 0)
629 mlxsw_thermal_tz_score_update(thermal, tzdev, tz->trips, temp);
631 *p_temp = temp;
632 return 0;
635 static struct thermal_zone_device_ops mlxsw_thermal_gearbox_ops = {
636 .bind = mlxsw_thermal_module_bind,
637 .unbind = mlxsw_thermal_module_unbind,
638 .get_mode = mlxsw_thermal_module_mode_get,
639 .set_mode = mlxsw_thermal_module_mode_set,
640 .get_temp = mlxsw_thermal_gearbox_temp_get,
641 .get_trip_type = mlxsw_thermal_module_trip_type_get,
642 .get_trip_temp = mlxsw_thermal_module_trip_temp_get,
643 .set_trip_temp = mlxsw_thermal_module_trip_temp_set,
644 .get_trip_hyst = mlxsw_thermal_module_trip_hyst_get,
645 .set_trip_hyst = mlxsw_thermal_module_trip_hyst_set,
646 .get_trend = mlxsw_thermal_trend_get,
649 static int mlxsw_thermal_get_max_state(struct thermal_cooling_device *cdev,
650 unsigned long *p_state)
652 *p_state = MLXSW_THERMAL_MAX_STATE;
653 return 0;
656 static int mlxsw_thermal_get_cur_state(struct thermal_cooling_device *cdev,
657 unsigned long *p_state)
660 struct mlxsw_thermal *thermal = cdev->devdata;
661 struct device *dev = thermal->bus_info->dev;
662 char mfsc_pl[MLXSW_REG_MFSC_LEN];
663 int err, idx;
664 u8 duty;
666 idx = mlxsw_get_cooling_device_idx(thermal, cdev);
667 if (idx < 0)
668 return idx;
670 mlxsw_reg_mfsc_pack(mfsc_pl, idx, 0);
671 err = mlxsw_reg_query(thermal->core, MLXSW_REG(mfsc), mfsc_pl);
672 if (err) {
673 dev_err(dev, "Failed to query PWM duty\n");
674 return err;
677 duty = mlxsw_reg_mfsc_pwm_duty_cycle_get(mfsc_pl);
678 *p_state = mlxsw_duty_to_state(duty);
679 return 0;
682 static int mlxsw_thermal_set_cur_state(struct thermal_cooling_device *cdev,
683 unsigned long state)
686 struct mlxsw_thermal *thermal = cdev->devdata;
687 struct device *dev = thermal->bus_info->dev;
688 char mfsc_pl[MLXSW_REG_MFSC_LEN];
689 unsigned long cur_state, i;
690 int idx;
691 u8 duty;
692 int err;
694 idx = mlxsw_get_cooling_device_idx(thermal, cdev);
695 if (idx < 0)
696 return idx;
698 /* Verify if this request is for changing allowed fan dynamical
699 * minimum. If it is - update cooling levels accordingly and update
700 * state, if current state is below the newly requested minimum state.
701 * For example, if current state is 5, and minimal state is to be
702 * changed from 4 to 6, thermal->cooling_levels[0 to 5] will be changed
703 * all from 4 to 6. And state 5 (thermal->cooling_levels[4]) should be
704 * overwritten.
706 if (state >= MLXSW_THERMAL_SPEED_MIN &&
707 state <= MLXSW_THERMAL_SPEED_MAX) {
708 state -= MLXSW_THERMAL_MAX_STATE;
709 for (i = 0; i <= MLXSW_THERMAL_MAX_STATE; i++)
710 thermal->cooling_levels[i] = max(state, i);
712 mlxsw_reg_mfsc_pack(mfsc_pl, idx, 0);
713 err = mlxsw_reg_query(thermal->core, MLXSW_REG(mfsc), mfsc_pl);
714 if (err)
715 return err;
717 duty = mlxsw_reg_mfsc_pwm_duty_cycle_get(mfsc_pl);
718 cur_state = mlxsw_duty_to_state(duty);
720 /* If current fan state is lower than requested dynamical
721 * minimum, increase fan speed up to dynamical minimum.
723 if (state < cur_state)
724 return 0;
726 state = cur_state;
729 if (state > MLXSW_THERMAL_MAX_STATE)
730 return -EINVAL;
732 /* Normalize the state to the valid speed range. */
733 state = thermal->cooling_levels[state];
734 mlxsw_reg_mfsc_pack(mfsc_pl, idx, mlxsw_state_to_duty(state));
735 err = mlxsw_reg_write(thermal->core, MLXSW_REG(mfsc), mfsc_pl);
736 if (err) {
737 dev_err(dev, "Failed to write PWM duty\n");
738 return err;
740 return 0;
743 static const struct thermal_cooling_device_ops mlxsw_cooling_ops = {
744 .get_max_state = mlxsw_thermal_get_max_state,
745 .get_cur_state = mlxsw_thermal_get_cur_state,
746 .set_cur_state = mlxsw_thermal_set_cur_state,
749 static int
750 mlxsw_thermal_module_tz_init(struct mlxsw_thermal_module *module_tz)
752 char tz_name[MLXSW_THERMAL_ZONE_MAX_NAME];
753 int err;
755 snprintf(tz_name, sizeof(tz_name), "mlxsw-module%d",
756 module_tz->module + 1);
757 module_tz->tzdev = thermal_zone_device_register(tz_name,
758 MLXSW_THERMAL_NUM_TRIPS,
759 MLXSW_THERMAL_TRIP_MASK,
760 module_tz,
761 &mlxsw_thermal_module_ops,
762 NULL, 0, 0);
763 if (IS_ERR(module_tz->tzdev)) {
764 err = PTR_ERR(module_tz->tzdev);
765 return err;
768 module_tz->mode = THERMAL_DEVICE_ENABLED;
769 return 0;
772 static void mlxsw_thermal_module_tz_fini(struct thermal_zone_device *tzdev)
774 thermal_zone_device_unregister(tzdev);
777 static int
778 mlxsw_thermal_module_init(struct device *dev, struct mlxsw_core *core,
779 struct mlxsw_thermal *thermal, u8 module)
781 struct mlxsw_thermal_module *module_tz;
783 module_tz = &thermal->tz_module_arr[module];
784 /* Skip if parent is already set (case of port split). */
785 if (module_tz->parent)
786 return 0;
787 module_tz->module = module;
788 module_tz->parent = thermal;
789 memcpy(module_tz->trips, default_thermal_trips,
790 sizeof(thermal->trips));
791 /* Initialize all trip point. */
792 mlxsw_thermal_module_trips_reset(module_tz);
793 /* Update trip point according to the module data. */
794 return mlxsw_thermal_module_trips_update(dev, core, module_tz);
797 static void mlxsw_thermal_module_fini(struct mlxsw_thermal_module *module_tz)
799 if (module_tz && module_tz->tzdev) {
800 mlxsw_thermal_module_tz_fini(module_tz->tzdev);
801 module_tz->tzdev = NULL;
802 module_tz->parent = NULL;
806 static int
807 mlxsw_thermal_modules_init(struct device *dev, struct mlxsw_core *core,
808 struct mlxsw_thermal *thermal)
810 struct mlxsw_thermal_module *module_tz;
811 char mgpir_pl[MLXSW_REG_MGPIR_LEN];
812 int i, err;
814 if (!mlxsw_core_res_query_enabled(core))
815 return 0;
817 mlxsw_reg_mgpir_pack(mgpir_pl);
818 err = mlxsw_reg_query(core, MLXSW_REG(mgpir), mgpir_pl);
819 if (err)
820 return err;
822 mlxsw_reg_mgpir_unpack(mgpir_pl, NULL, NULL, NULL,
823 &thermal->tz_module_num);
825 thermal->tz_module_arr = kcalloc(thermal->tz_module_num,
826 sizeof(*thermal->tz_module_arr),
827 GFP_KERNEL);
828 if (!thermal->tz_module_arr)
829 return -ENOMEM;
831 for (i = 0; i < thermal->tz_module_num; i++) {
832 err = mlxsw_thermal_module_init(dev, core, thermal, i);
833 if (err)
834 goto err_unreg_tz_module_arr;
837 for (i = 0; i < thermal->tz_module_num; i++) {
838 module_tz = &thermal->tz_module_arr[i];
839 if (!module_tz->parent)
840 continue;
841 err = mlxsw_thermal_module_tz_init(module_tz);
842 if (err)
843 goto err_unreg_tz_module_arr;
846 return 0;
848 err_unreg_tz_module_arr:
849 for (i = thermal->tz_module_num - 1; i >= 0; i--)
850 mlxsw_thermal_module_fini(&thermal->tz_module_arr[i]);
851 kfree(thermal->tz_module_arr);
852 return err;
855 static void
856 mlxsw_thermal_modules_fini(struct mlxsw_thermal *thermal)
858 int i;
860 if (!mlxsw_core_res_query_enabled(thermal->core))
861 return;
863 for (i = thermal->tz_module_num - 1; i >= 0; i--)
864 mlxsw_thermal_module_fini(&thermal->tz_module_arr[i]);
865 kfree(thermal->tz_module_arr);
868 static int
869 mlxsw_thermal_gearbox_tz_init(struct mlxsw_thermal_module *gearbox_tz)
871 char tz_name[MLXSW_THERMAL_ZONE_MAX_NAME];
873 snprintf(tz_name, sizeof(tz_name), "mlxsw-gearbox%d",
874 gearbox_tz->module + 1);
875 gearbox_tz->tzdev = thermal_zone_device_register(tz_name,
876 MLXSW_THERMAL_NUM_TRIPS,
877 MLXSW_THERMAL_TRIP_MASK,
878 gearbox_tz,
879 &mlxsw_thermal_gearbox_ops,
880 NULL, 0, 0);
881 if (IS_ERR(gearbox_tz->tzdev))
882 return PTR_ERR(gearbox_tz->tzdev);
884 gearbox_tz->mode = THERMAL_DEVICE_ENABLED;
885 return 0;
888 static void
889 mlxsw_thermal_gearbox_tz_fini(struct mlxsw_thermal_module *gearbox_tz)
891 thermal_zone_device_unregister(gearbox_tz->tzdev);
894 static int
895 mlxsw_thermal_gearboxes_init(struct device *dev, struct mlxsw_core *core,
896 struct mlxsw_thermal *thermal)
898 enum mlxsw_reg_mgpir_device_type device_type;
899 struct mlxsw_thermal_module *gearbox_tz;
900 char mgpir_pl[MLXSW_REG_MGPIR_LEN];
901 u8 gbox_num;
902 int i;
903 int err;
905 if (!mlxsw_core_res_query_enabled(core))
906 return 0;
908 mlxsw_reg_mgpir_pack(mgpir_pl);
909 err = mlxsw_reg_query(core, MLXSW_REG(mgpir), mgpir_pl);
910 if (err)
911 return err;
913 mlxsw_reg_mgpir_unpack(mgpir_pl, &gbox_num, &device_type, NULL,
914 NULL);
915 if (device_type != MLXSW_REG_MGPIR_DEVICE_TYPE_GEARBOX_DIE ||
916 !gbox_num)
917 return 0;
919 thermal->tz_gearbox_num = gbox_num;
920 thermal->tz_gearbox_arr = kcalloc(thermal->tz_gearbox_num,
921 sizeof(*thermal->tz_gearbox_arr),
922 GFP_KERNEL);
923 if (!thermal->tz_gearbox_arr)
924 return -ENOMEM;
926 for (i = 0; i < thermal->tz_gearbox_num; i++) {
927 gearbox_tz = &thermal->tz_gearbox_arr[i];
928 memcpy(gearbox_tz->trips, default_thermal_trips,
929 sizeof(thermal->trips));
930 gearbox_tz->module = i;
931 gearbox_tz->parent = thermal;
932 err = mlxsw_thermal_gearbox_tz_init(gearbox_tz);
933 if (err)
934 goto err_unreg_tz_gearbox;
937 return 0;
939 err_unreg_tz_gearbox:
940 for (i--; i >= 0; i--)
941 mlxsw_thermal_gearbox_tz_fini(&thermal->tz_gearbox_arr[i]);
942 kfree(thermal->tz_gearbox_arr);
943 return err;
946 static void
947 mlxsw_thermal_gearboxes_fini(struct mlxsw_thermal *thermal)
949 int i;
951 if (!mlxsw_core_res_query_enabled(thermal->core))
952 return;
954 for (i = thermal->tz_gearbox_num - 1; i >= 0; i--)
955 mlxsw_thermal_gearbox_tz_fini(&thermal->tz_gearbox_arr[i]);
956 kfree(thermal->tz_gearbox_arr);
959 int mlxsw_thermal_init(struct mlxsw_core *core,
960 const struct mlxsw_bus_info *bus_info,
961 struct mlxsw_thermal **p_thermal)
963 char mfcr_pl[MLXSW_REG_MFCR_LEN] = { 0 };
964 enum mlxsw_reg_mfcr_pwm_frequency freq;
965 struct device *dev = bus_info->dev;
966 struct mlxsw_thermal *thermal;
967 u16 tacho_active;
968 u8 pwm_active;
969 int err, i;
971 thermal = devm_kzalloc(dev, sizeof(*thermal),
972 GFP_KERNEL);
973 if (!thermal)
974 return -ENOMEM;
976 thermal->core = core;
977 thermal->bus_info = bus_info;
978 memcpy(thermal->trips, default_thermal_trips, sizeof(thermal->trips));
980 err = mlxsw_reg_query(thermal->core, MLXSW_REG(mfcr), mfcr_pl);
981 if (err) {
982 dev_err(dev, "Failed to probe PWMs\n");
983 goto err_free_thermal;
985 mlxsw_reg_mfcr_unpack(mfcr_pl, &freq, &tacho_active, &pwm_active);
987 for (i = 0; i < MLXSW_MFCR_TACHOS_MAX; i++) {
988 if (tacho_active & BIT(i)) {
989 char mfsl_pl[MLXSW_REG_MFSL_LEN];
991 mlxsw_reg_mfsl_pack(mfsl_pl, i, 0, 0);
993 /* We need to query the register to preserve maximum */
994 err = mlxsw_reg_query(thermal->core, MLXSW_REG(mfsl),
995 mfsl_pl);
996 if (err)
997 goto err_free_thermal;
999 /* set the minimal RPMs to 0 */
1000 mlxsw_reg_mfsl_tach_min_set(mfsl_pl, 0);
1001 err = mlxsw_reg_write(thermal->core, MLXSW_REG(mfsl),
1002 mfsl_pl);
1003 if (err)
1004 goto err_free_thermal;
1007 for (i = 0; i < MLXSW_MFCR_PWMS_MAX; i++) {
1008 if (pwm_active & BIT(i)) {
1009 struct thermal_cooling_device *cdev;
1011 cdev = thermal_cooling_device_register("mlxsw_fan",
1012 thermal,
1013 &mlxsw_cooling_ops);
1014 if (IS_ERR(cdev)) {
1015 err = PTR_ERR(cdev);
1016 dev_err(dev, "Failed to register cooling device\n");
1017 goto err_unreg_cdevs;
1019 thermal->cdevs[i] = cdev;
1023 /* Initialize cooling levels per PWM state. */
1024 for (i = 0; i < MLXSW_THERMAL_MAX_STATE; i++)
1025 thermal->cooling_levels[i] = max(MLXSW_THERMAL_SPEED_MIN_LEVEL,
1028 thermal->polling_delay = bus_info->low_frequency ?
1029 MLXSW_THERMAL_SLOW_POLL_INT :
1030 MLXSW_THERMAL_POLL_INT;
1032 thermal->tzdev = thermal_zone_device_register("mlxsw",
1033 MLXSW_THERMAL_NUM_TRIPS,
1034 MLXSW_THERMAL_TRIP_MASK,
1035 thermal,
1036 &mlxsw_thermal_ops,
1037 NULL, 0,
1038 thermal->polling_delay);
1039 if (IS_ERR(thermal->tzdev)) {
1040 err = PTR_ERR(thermal->tzdev);
1041 dev_err(dev, "Failed to register thermal zone\n");
1042 goto err_unreg_cdevs;
1045 err = mlxsw_thermal_modules_init(dev, core, thermal);
1046 if (err)
1047 goto err_unreg_tzdev;
1049 err = mlxsw_thermal_gearboxes_init(dev, core, thermal);
1050 if (err)
1051 goto err_unreg_modules_tzdev;
1053 thermal->mode = THERMAL_DEVICE_ENABLED;
1054 *p_thermal = thermal;
1055 return 0;
1057 err_unreg_modules_tzdev:
1058 mlxsw_thermal_modules_fini(thermal);
1059 err_unreg_tzdev:
1060 if (thermal->tzdev) {
1061 thermal_zone_device_unregister(thermal->tzdev);
1062 thermal->tzdev = NULL;
1064 err_unreg_cdevs:
1065 for (i = 0; i < MLXSW_MFCR_PWMS_MAX; i++)
1066 if (thermal->cdevs[i])
1067 thermal_cooling_device_unregister(thermal->cdevs[i]);
1068 err_free_thermal:
1069 devm_kfree(dev, thermal);
1070 return err;
1073 void mlxsw_thermal_fini(struct mlxsw_thermal *thermal)
1075 int i;
1077 mlxsw_thermal_gearboxes_fini(thermal);
1078 mlxsw_thermal_modules_fini(thermal);
1079 if (thermal->tzdev) {
1080 thermal_zone_device_unregister(thermal->tzdev);
1081 thermal->tzdev = NULL;
1084 for (i = 0; i < MLXSW_MFCR_PWMS_MAX; i++) {
1085 if (thermal->cdevs[i]) {
1086 thermal_cooling_device_unregister(thermal->cdevs[i]);
1087 thermal->cdevs[i] = NULL;
1091 devm_kfree(thermal->bus_info->dev, thermal);