1 // SPDX-License-Identifier: GPL-2.0
2 /* HWMON driver for Aquantia PHY
4 * Author: Nikita Yushchenko <nikita.yoush@cogentembedded.com>
5 * Author: Andrew Lunn <andrew@lunn.ch>
6 * Author: Heiner Kallweit <hkallweit1@gmail.com>
10 #include <linux/device.h>
11 #include <linux/ctype.h>
12 #include <linux/hwmon.h>
16 /* Vendor specific 1, MDIO_MMD_VEND2 */
17 #define VEND1_THERMAL_PROV_HIGH_TEMP_FAIL 0xc421
18 #define VEND1_THERMAL_PROV_LOW_TEMP_FAIL 0xc422
19 #define VEND1_THERMAL_PROV_HIGH_TEMP_WARN 0xc423
20 #define VEND1_THERMAL_PROV_LOW_TEMP_WARN 0xc424
21 #define VEND1_THERMAL_STAT1 0xc820
22 #define VEND1_THERMAL_STAT2 0xc821
23 #define VEND1_THERMAL_STAT2_VALID BIT(0)
24 #define VEND1_GENERAL_STAT1 0xc830
25 #define VEND1_GENERAL_STAT1_HIGH_TEMP_FAIL BIT(14)
26 #define VEND1_GENERAL_STAT1_LOW_TEMP_FAIL BIT(13)
27 #define VEND1_GENERAL_STAT1_HIGH_TEMP_WARN BIT(12)
28 #define VEND1_GENERAL_STAT1_LOW_TEMP_WARN BIT(11)
30 #if IS_REACHABLE(CONFIG_HWMON)
32 static umode_t
aqr_hwmon_is_visible(const void *data
,
33 enum hwmon_sensor_types type
,
34 u32 attr
, int channel
)
36 if (type
!= hwmon_temp
)
40 case hwmon_temp_input
:
41 case hwmon_temp_min_alarm
:
42 case hwmon_temp_max_alarm
:
43 case hwmon_temp_lcrit_alarm
:
44 case hwmon_temp_crit_alarm
:
48 case hwmon_temp_lcrit
:
56 static int aqr_hwmon_get(struct phy_device
*phydev
, int reg
, long *value
)
58 int temp
= phy_read_mmd(phydev
, MDIO_MMD_VEND1
, reg
);
63 /* 16 bit value is 2's complement with LSB = 1/256th degree Celsius */
64 *value
= (s16
)temp
* 1000 / 256;
69 static int aqr_hwmon_set(struct phy_device
*phydev
, int reg
, long value
)
73 if (value
>= 128000 || value
< -128000)
76 temp
= value
* 256 / 1000;
78 /* temp is in s16 range and we're interested in lower 16 bits only */
79 return phy_write_mmd(phydev
, MDIO_MMD_VEND1
, reg
, (u16
)temp
);
82 static int aqr_hwmon_test_bit(struct phy_device
*phydev
, int reg
, int bit
)
84 int val
= phy_read_mmd(phydev
, MDIO_MMD_VEND1
, reg
);
92 static int aqr_hwmon_status1(struct phy_device
*phydev
, int bit
, long *value
)
94 int val
= aqr_hwmon_test_bit(phydev
, VEND1_GENERAL_STAT1
, bit
);
104 static int aqr_hwmon_read(struct device
*dev
, enum hwmon_sensor_types type
,
105 u32 attr
, int channel
, long *value
)
107 struct phy_device
*phydev
= dev_get_drvdata(dev
);
110 if (type
!= hwmon_temp
)
114 case hwmon_temp_input
:
115 reg
= aqr_hwmon_test_bit(phydev
, VEND1_THERMAL_STAT2
,
116 VEND1_THERMAL_STAT2_VALID
);
122 return aqr_hwmon_get(phydev
, VEND1_THERMAL_STAT1
, value
);
124 case hwmon_temp_lcrit
:
125 return aqr_hwmon_get(phydev
, VEND1_THERMAL_PROV_LOW_TEMP_FAIL
,
128 return aqr_hwmon_get(phydev
, VEND1_THERMAL_PROV_LOW_TEMP_WARN
,
131 return aqr_hwmon_get(phydev
, VEND1_THERMAL_PROV_HIGH_TEMP_WARN
,
133 case hwmon_temp_crit
:
134 return aqr_hwmon_get(phydev
, VEND1_THERMAL_PROV_HIGH_TEMP_FAIL
,
136 case hwmon_temp_lcrit_alarm
:
137 return aqr_hwmon_status1(phydev
,
138 VEND1_GENERAL_STAT1_LOW_TEMP_FAIL
,
140 case hwmon_temp_min_alarm
:
141 return aqr_hwmon_status1(phydev
,
142 VEND1_GENERAL_STAT1_LOW_TEMP_WARN
,
144 case hwmon_temp_max_alarm
:
145 return aqr_hwmon_status1(phydev
,
146 VEND1_GENERAL_STAT1_HIGH_TEMP_WARN
,
148 case hwmon_temp_crit_alarm
:
149 return aqr_hwmon_status1(phydev
,
150 VEND1_GENERAL_STAT1_HIGH_TEMP_FAIL
,
157 static int aqr_hwmon_write(struct device
*dev
, enum hwmon_sensor_types type
,
158 u32 attr
, int channel
, long value
)
160 struct phy_device
*phydev
= dev_get_drvdata(dev
);
162 if (type
!= hwmon_temp
)
166 case hwmon_temp_lcrit
:
167 return aqr_hwmon_set(phydev
, VEND1_THERMAL_PROV_LOW_TEMP_FAIL
,
170 return aqr_hwmon_set(phydev
, VEND1_THERMAL_PROV_LOW_TEMP_WARN
,
173 return aqr_hwmon_set(phydev
, VEND1_THERMAL_PROV_HIGH_TEMP_WARN
,
175 case hwmon_temp_crit
:
176 return aqr_hwmon_set(phydev
, VEND1_THERMAL_PROV_HIGH_TEMP_FAIL
,
183 static const struct hwmon_ops aqr_hwmon_ops
= {
184 .is_visible
= aqr_hwmon_is_visible
,
185 .read
= aqr_hwmon_read
,
186 .write
= aqr_hwmon_write
,
189 static u32 aqr_hwmon_chip_config
[] = {
194 static const struct hwmon_channel_info aqr_hwmon_chip
= {
196 .config
= aqr_hwmon_chip_config
,
199 static u32 aqr_hwmon_temp_config
[] = {
201 HWMON_T_MAX
| HWMON_T_MIN
|
202 HWMON_T_MAX_ALARM
| HWMON_T_MIN_ALARM
|
203 HWMON_T_CRIT
| HWMON_T_LCRIT
|
204 HWMON_T_CRIT_ALARM
| HWMON_T_LCRIT_ALARM
,
208 static const struct hwmon_channel_info aqr_hwmon_temp
= {
210 .config
= aqr_hwmon_temp_config
,
213 static const struct hwmon_channel_info
*aqr_hwmon_info
[] = {
219 static const struct hwmon_chip_info aqr_hwmon_chip_info
= {
220 .ops
= &aqr_hwmon_ops
,
221 .info
= aqr_hwmon_info
,
224 int aqr_hwmon_probe(struct phy_device
*phydev
)
226 struct device
*dev
= &phydev
->mdio
.dev
;
227 struct device
*hwmon_dev
;
231 hwmon_name
= devm_kstrdup(dev
, dev_name(dev
), GFP_KERNEL
);
235 for (i
= j
= 0; hwmon_name
[i
]; i
++) {
236 if (isalnum(hwmon_name
[i
])) {
238 hwmon_name
[j
] = hwmon_name
[i
];
242 hwmon_name
[j
] = '\0';
244 hwmon_dev
= devm_hwmon_device_register_with_info(dev
, hwmon_name
,
245 phydev
, &aqr_hwmon_chip_info
, NULL
);
247 return PTR_ERR_OR_ZERO(hwmon_dev
);