1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Hardware monitoring driver for BluTek BPA-RS600 Power Supplies
5 * Copyright 2021 Allied Telesis Labs
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/pmbus.h>
15 #define BPARS600_MFR_VIN_MIN 0xa0
16 #define BPARS600_MFR_VIN_MAX 0xa1
17 #define BPARS600_MFR_IIN_MAX 0xa2
18 #define BPARS600_MFR_PIN_MAX 0xa3
19 #define BPARS600_MFR_VOUT_MIN 0xa4
20 #define BPARS600_MFR_VOUT_MAX 0xa5
21 #define BPARS600_MFR_IOUT_MAX 0xa6
22 #define BPARS600_MFR_POUT_MAX 0xa7
24 static int bpa_rs600_read_byte_data(struct i2c_client *client, int page, int reg)
32 case PMBUS_FAN_CONFIG_12:
34 * Two fans are reported in PMBUS_FAN_CONFIG_12 but there is
35 * only one fan in the module. Mask out the FAN2 bits.
37 ret = pmbus_read_byte_data(client, 0, PMBUS_FAN_CONFIG_12);
39 ret &= ~(PB_FAN_2_INSTALLED | PB_FAN_2_PULSE_MASK);
50 * The BPA-RS600 violates the PMBus spec. Specifically it treats the
51 * mantissa as unsigned. Deal with this here to allow the PMBus core
52 * to work with correctly encoded data.
54 static int bpa_rs600_read_vin(struct i2c_client *client)
56 int ret, exponent, mantissa;
58 ret = pmbus_read_word_data(client, 0, 0xff, PMBUS_READ_VIN);
64 mantissa = ret & 0x7ff;
69 ret = (exponent << 11) | mantissa;
75 static int bpa_rs600_read_word_data(struct i2c_client *client, int page, int phase, int reg)
83 case PMBUS_VIN_UV_WARN_LIMIT:
84 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_VIN_MIN);
86 case PMBUS_VIN_OV_WARN_LIMIT:
87 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_VIN_MAX);
89 case PMBUS_VOUT_UV_WARN_LIMIT:
90 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_VOUT_MIN);
92 case PMBUS_VOUT_OV_WARN_LIMIT:
93 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_VOUT_MAX);
95 case PMBUS_IIN_OC_WARN_LIMIT:
96 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_IIN_MAX);
98 case PMBUS_IOUT_OC_WARN_LIMIT:
99 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_IOUT_MAX);
101 case PMBUS_PIN_OP_WARN_LIMIT:
102 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_PIN_MAX);
104 case PMBUS_POUT_OP_WARN_LIMIT:
105 ret = pmbus_read_word_data(client, 0, 0xff, BPARS600_MFR_POUT_MAX);
107 case PMBUS_VIN_UV_FAULT_LIMIT:
108 case PMBUS_VIN_OV_FAULT_LIMIT:
109 case PMBUS_VOUT_UV_FAULT_LIMIT:
110 case PMBUS_VOUT_OV_FAULT_LIMIT:
111 /* These commands return data but it is invalid/un-documented */
115 ret = bpa_rs600_read_vin(client);
118 if (reg >= PMBUS_VIRT_BASE)
128 static struct pmbus_driver_info bpa_rs600_info = {
130 .format[PSC_VOLTAGE_IN] = linear,
131 .format[PSC_VOLTAGE_OUT] = linear,
132 .format[PSC_CURRENT_IN] = linear,
133 .format[PSC_CURRENT_OUT] = linear,
134 .format[PSC_POWER] = linear,
135 .format[PSC_TEMPERATURE] = linear,
136 .format[PSC_FAN] = linear,
137 .func[0] = PMBUS_HAVE_VIN | PMBUS_HAVE_VOUT |
138 PMBUS_HAVE_IIN | PMBUS_HAVE_IOUT |
139 PMBUS_HAVE_PIN | PMBUS_HAVE_POUT |
140 PMBUS_HAVE_TEMP | PMBUS_HAVE_TEMP2 |
142 PMBUS_HAVE_STATUS_VOUT | PMBUS_HAVE_STATUS_IOUT |
143 PMBUS_HAVE_STATUS_INPUT | PMBUS_HAVE_STATUS_TEMP |
144 PMBUS_HAVE_STATUS_FAN12,
145 .read_byte_data = bpa_rs600_read_byte_data,
146 .read_word_data = bpa_rs600_read_word_data,
149 static int bpa_rs600_probe(struct i2c_client *client)
151 struct device *dev = &client->dev;
152 u8 buf[I2C_SMBUS_BLOCK_MAX + 1];
155 if (!i2c_check_functionality(client->adapter,
156 I2C_FUNC_SMBUS_READ_BYTE_DATA
157 | I2C_FUNC_SMBUS_READ_WORD_DATA
158 | I2C_FUNC_SMBUS_READ_BLOCK_DATA))
161 ret = i2c_smbus_read_block_data(client, PMBUS_MFR_MODEL, buf);
163 dev_err(dev, "Failed to read Manufacturer Model\n");
167 if (strncmp(buf, "BPA-RS600", 8)) {
169 dev_err(dev, "Unsupported Manufacturer Model '%s'\n", buf);
173 return pmbus_do_probe(client, &bpa_rs600_info);
176 static const struct i2c_device_id bpa_rs600_id[] = {
180 MODULE_DEVICE_TABLE(i2c, bpa_rs600_id);
182 static const struct of_device_id __maybe_unused bpa_rs600_of_match[] = {
183 { .compatible = "blutek,bpa-rs600" },
186 MODULE_DEVICE_TABLE(of, bpa_rs600_of_match);
188 static struct i2c_driver bpa_rs600_driver = {
191 .of_match_table = of_match_ptr(bpa_rs600_of_match),
193 .probe_new = bpa_rs600_probe,
194 .id_table = bpa_rs600_id,
197 module_i2c_driver(bpa_rs600_driver);
199 MODULE_AUTHOR("Chris Packham");
200 MODULE_DESCRIPTION("PMBus driver for BluTek BPA-RS600");
201 MODULE_LICENSE("GPL");
202 MODULE_IMPORT_NS(PMBUS);