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 enum chips { bpa_rs600, bpd_rs600 };
17 static int bpa_rs600_read_byte_data(struct i2c_client *client, int page, int reg)
25 case PMBUS_FAN_CONFIG_12:
27 * Two fans are reported in PMBUS_FAN_CONFIG_12 but there is
28 * only one fan in the module. Mask out the FAN2 bits.
30 ret = pmbus_read_byte_data(client, 0, PMBUS_FAN_CONFIG_12);
32 ret &= ~(PB_FAN_2_INSTALLED | PB_FAN_2_PULSE_MASK);
43 * The BPA-RS600 violates the PMBus spec. Specifically it treats the
44 * mantissa as unsigned. Deal with this here to allow the PMBus core
45 * to work with correctly encoded data.
47 static int bpa_rs600_read_vin(struct i2c_client *client)
49 int ret, exponent, mantissa;
51 ret = pmbus_read_word_data(client, 0, 0xff, PMBUS_READ_VIN);
57 mantissa = ret & 0x7ff;
62 ret = (exponent << 11) | mantissa;
69 * Firmware V5.70 incorrectly reports 1640W for MFR_PIN_MAX.
70 * Deal with this by returning a sensible value.
72 static int bpa_rs600_read_pin_max(struct i2c_client *client)
76 ret = pmbus_read_word_data(client, 0, 0xff, PMBUS_MFR_PIN_MAX);
80 /* Detect invalid 1640W (linear encoding) */
82 /* Report 700W (linear encoding) */
88 static int bpa_rs600_read_word_data(struct i2c_client *client, int page, int phase, int reg)
96 case PMBUS_VIN_UV_WARN_LIMIT:
97 case PMBUS_VIN_OV_WARN_LIMIT:
98 case PMBUS_VOUT_UV_WARN_LIMIT:
99 case PMBUS_VOUT_OV_WARN_LIMIT:
100 case PMBUS_IIN_OC_WARN_LIMIT:
101 case PMBUS_IOUT_OC_WARN_LIMIT:
102 case PMBUS_PIN_OP_WARN_LIMIT:
103 case PMBUS_POUT_OP_WARN_LIMIT:
104 case PMBUS_VIN_UV_FAULT_LIMIT:
105 case PMBUS_VIN_OV_FAULT_LIMIT:
106 case PMBUS_VOUT_UV_FAULT_LIMIT:
107 case PMBUS_VOUT_OV_FAULT_LIMIT:
108 /* These commands return data but it is invalid/un-documented */
112 ret = bpa_rs600_read_vin(client);
114 case PMBUS_MFR_PIN_MAX:
115 ret = bpa_rs600_read_pin_max(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 const struct i2c_device_id bpa_rs600_id[] = {
150 { "bpa-rs600", bpa_rs600 },
151 { "bpd-rs600", bpd_rs600 },
154 MODULE_DEVICE_TABLE(i2c, bpa_rs600_id);
156 static int bpa_rs600_probe(struct i2c_client *client)
158 struct device *dev = &client->dev;
159 u8 buf[I2C_SMBUS_BLOCK_MAX + 1];
161 const struct i2c_device_id *mid;
163 if (!i2c_check_functionality(client->adapter,
164 I2C_FUNC_SMBUS_READ_BYTE_DATA
165 | I2C_FUNC_SMBUS_READ_WORD_DATA
166 | I2C_FUNC_SMBUS_READ_BLOCK_DATA))
169 ret = i2c_smbus_read_block_data(client, PMBUS_MFR_MODEL, buf);
171 dev_err(dev, "Failed to read Manufacturer Model\n");
175 for (mid = bpa_rs600_id; mid->name[0]; mid++) {
176 if (!strncasecmp(buf, mid->name, strlen(mid->name)))
181 dev_err(dev, "Unsupported Manufacturer Model '%s'\n", buf);
185 return pmbus_do_probe(client, &bpa_rs600_info);
188 static const struct of_device_id __maybe_unused bpa_rs600_of_match[] = {
189 { .compatible = "blutek,bpa-rs600" },
192 MODULE_DEVICE_TABLE(of, bpa_rs600_of_match);
194 static struct i2c_driver bpa_rs600_driver = {
197 .of_match_table = of_match_ptr(bpa_rs600_of_match),
199 .probe = bpa_rs600_probe,
200 .id_table = bpa_rs600_id,
203 module_i2c_driver(bpa_rs600_driver);
205 MODULE_AUTHOR("Chris Packham");
206 MODULE_DESCRIPTION("PMBus driver for BluTek BPA-RS600");
207 MODULE_LICENSE("GPL");
208 MODULE_IMPORT_NS("PMBUS");