hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// SPDX-License-Identifier: GPL-2.0-only
/*
 *  Copyright (C) 2017 Chelsio Communications.  All rights reserved.
 *
 *  Written by: Ganesh Goudar (ganeshgr@chelsio.com)
 */
 
#include "cxgb4.h"
 
#define CXGB4_NUM_TRIPS 1
 
static int cxgb4_thermal_get_temp(struct thermal_zone_device *tzdev,
                 int *temp)
{
   struct adapter *adap = tzdev->devdata;
   u32 param, val;
   int ret;
 
   param = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
        FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_DIAG) |
        FW_PARAMS_PARAM_Y_V(FW_PARAM_DEV_DIAG_TMP));
 
   ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
                 &param, &val);
   if (ret < 0 || val == 0)
       return -1;
 
   *temp = val * 1000;
   return 0;
}
 
static int cxgb4_thermal_get_trip_type(struct thermal_zone_device *tzdev,
                      int trip, enum thermal_trip_type *type)
{
   struct adapter *adap = tzdev->devdata;
 
   if (!adap->ch_thermal.trip_temp)
       return -EINVAL;
 
   *type = adap->ch_thermal.trip_type;
   return 0;
}
 
static int cxgb4_thermal_get_trip_temp(struct thermal_zone_device *tzdev,
                      int trip, int *temp)
{
   struct adapter *adap = tzdev->devdata;
 
   if (!adap->ch_thermal.trip_temp)
       return -EINVAL;
 
   *temp = adap->ch_thermal.trip_temp;
   return 0;
}
 
static struct thermal_zone_device_ops cxgb4_thermal_ops = {
   .get_temp = cxgb4_thermal_get_temp,
   .get_trip_type = cxgb4_thermal_get_trip_type,
   .get_trip_temp = cxgb4_thermal_get_trip_temp,
};
 
int cxgb4_thermal_init(struct adapter *adap)
{
   struct ch_thermal *ch_thermal = &adap->ch_thermal;
   char ch_tz_name[THERMAL_NAME_LENGTH];
   int num_trip = CXGB4_NUM_TRIPS;
   u32 param, val;
   int ret;
 
   /* on older firmwares we may not get the trip temperature,
    * set the num of trips to 0.
    */
   param = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
        FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_DIAG) |
        FW_PARAMS_PARAM_Y_V(FW_PARAM_DEV_DIAG_MAXTMPTHRESH));
 
   ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
                 &param, &val);
   if (ret < 0) {
       num_trip = 0; /* could not get trip temperature */
   } else {
       ch_thermal->trip_temp = val * 1000;
       ch_thermal->trip_type = THERMAL_TRIP_CRITICAL;
   }
 
   snprintf(ch_tz_name, sizeof(ch_tz_name), "cxgb4_%s", adap->name);
   ch_thermal->tzdev = thermal_zone_device_register(ch_tz_name, num_trip,
                            0, adap,
                            &cxgb4_thermal_ops,
                            NULL, 0, 0);
   if (IS_ERR(ch_thermal->tzdev)) {
       ret = PTR_ERR(ch_thermal->tzdev);
       dev_err(adap->pdev_dev, "Failed to register thermal zone\n");
       ch_thermal->tzdev = NULL;
       return ret;
   }
 
   ret = thermal_zone_device_enable(ch_thermal->tzdev);
   if (ret) {
       dev_err(adap->pdev_dev, "Failed to enable thermal zone\n");
       thermal_zone_device_unregister(adap->ch_thermal.tzdev);
       return ret;
   }
 
   return 0;
}
 
int cxgb4_thermal_remove(struct adapter *adap)
{
   if (adap->ch_thermal.tzdev) {
       thermal_zone_device_unregister(adap->ch_thermal.tzdev);
       adap->ch_thermal.tzdev = NULL;
   }
   return 0;
}