mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
f621d61fd5
Extend the isl68137 driver to provide support for 2nd generation Renesas digital multiphase voltage regulators. Signed-off-by: Grant Peltier <grantpeltier93@gmail.com> Link: https://lore.kernel.org/r/62c000adf0108aeb65d3f275f28eb26b690384aa.1584720563.git.grantpeltier93@gmail.com [groeck: Adjusted for new PMBus API function parameters] Signed-off-by: Guenter Roeck <linux@roeck-us.net>
252 lines
6.6 KiB
C
252 lines
6.6 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Hardware monitoring driver for Renesas Digital Multiphase Voltage Regulators
|
|
*
|
|
* Copyright (c) 2017 Google Inc
|
|
* Copyright (c) 2020 Renesas Electronics America
|
|
*
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/hwmon-sysfs.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/string.h>
|
|
#include <linux/sysfs.h>
|
|
|
|
#include "pmbus.h"
|
|
|
|
#define ISL68137_VOUT_AVS 0x30
|
|
#define RAA_DMPVR2_READ_VMON 0xc8
|
|
|
|
enum versions {
|
|
isl68137,
|
|
raa_dmpvr2_1rail,
|
|
raa_dmpvr2_2rail,
|
|
raa_dmpvr2_3rail,
|
|
raa_dmpvr2_hv,
|
|
};
|
|
|
|
static ssize_t isl68137_avs_enable_show_page(struct i2c_client *client,
|
|
int page,
|
|
char *buf)
|
|
{
|
|
int val = pmbus_read_byte_data(client, page, PMBUS_OPERATION);
|
|
|
|
return sprintf(buf, "%d\n",
|
|
(val & ISL68137_VOUT_AVS) == ISL68137_VOUT_AVS ? 1 : 0);
|
|
}
|
|
|
|
static ssize_t isl68137_avs_enable_store_page(struct i2c_client *client,
|
|
int page,
|
|
const char *buf, size_t count)
|
|
{
|
|
int rc, op_val;
|
|
bool result;
|
|
|
|
rc = kstrtobool(buf, &result);
|
|
if (rc)
|
|
return rc;
|
|
|
|
op_val = result ? ISL68137_VOUT_AVS : 0;
|
|
|
|
/*
|
|
* Writes to VOUT setpoint over AVSBus will persist after the VRM is
|
|
* switched to PMBus control. Switching back to AVSBus control
|
|
* restores this persisted setpoint rather than re-initializing to
|
|
* PMBus VOUT_COMMAND. Writing VOUT_COMMAND first over PMBus before
|
|
* enabling AVS control is the workaround.
|
|
*/
|
|
if (op_val == ISL68137_VOUT_AVS) {
|
|
rc = pmbus_read_word_data(client, page, 0xff,
|
|
PMBUS_VOUT_COMMAND);
|
|
if (rc < 0)
|
|
return rc;
|
|
|
|
rc = pmbus_write_word_data(client, page, PMBUS_VOUT_COMMAND,
|
|
rc);
|
|
if (rc < 0)
|
|
return rc;
|
|
}
|
|
|
|
rc = pmbus_update_byte_data(client, page, PMBUS_OPERATION,
|
|
ISL68137_VOUT_AVS, op_val);
|
|
|
|
return (rc < 0) ? rc : count;
|
|
}
|
|
|
|
static ssize_t isl68137_avs_enable_show(struct device *dev,
|
|
struct device_attribute *devattr,
|
|
char *buf)
|
|
{
|
|
struct i2c_client *client = to_i2c_client(dev->parent);
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
|
|
|
return isl68137_avs_enable_show_page(client, attr->index, buf);
|
|
}
|
|
|
|
static ssize_t isl68137_avs_enable_store(struct device *dev,
|
|
struct device_attribute *devattr,
|
|
const char *buf, size_t count)
|
|
{
|
|
struct i2c_client *client = to_i2c_client(dev->parent);
|
|
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
|
|
|
|
return isl68137_avs_enable_store_page(client, attr->index, buf, count);
|
|
}
|
|
|
|
static SENSOR_DEVICE_ATTR_RW(avs0_enable, isl68137_avs_enable, 0);
|
|
static SENSOR_DEVICE_ATTR_RW(avs1_enable, isl68137_avs_enable, 1);
|
|
|
|
static struct attribute *enable_attrs[] = {
|
|
&sensor_dev_attr_avs0_enable.dev_attr.attr,
|
|
&sensor_dev_attr_avs1_enable.dev_attr.attr,
|
|
NULL,
|
|
};
|
|
|
|
static const struct attribute_group enable_group = {
|
|
.attrs = enable_attrs,
|
|
};
|
|
|
|
static const struct attribute_group *isl68137_attribute_groups[] = {
|
|
&enable_group,
|
|
NULL,
|
|
};
|
|
|
|
static int raa_dmpvr2_read_word_data(struct i2c_client *client, int page,
|
|
int phase, int reg)
|
|
{
|
|
int ret;
|
|
|
|
switch (reg) {
|
|
case PMBUS_VIRT_READ_VMON:
|
|
ret = pmbus_read_word_data(client, page, phase,
|
|
RAA_DMPVR2_READ_VMON);
|
|
break;
|
|
default:
|
|
ret = -ENODATA;
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static struct pmbus_driver_info raa_dmpvr_info = {
|
|
.pages = 3,
|
|
.format[PSC_VOLTAGE_IN] = direct,
|
|
.format[PSC_VOLTAGE_OUT] = direct,
|
|
.format[PSC_CURRENT_IN] = direct,
|
|
.format[PSC_CURRENT_OUT] = direct,
|
|
.format[PSC_POWER] = direct,
|
|
.format[PSC_TEMPERATURE] = direct,
|
|
.m[PSC_VOLTAGE_IN] = 1,
|
|
.b[PSC_VOLTAGE_IN] = 0,
|
|
.R[PSC_VOLTAGE_IN] = 2,
|
|
.m[PSC_VOLTAGE_OUT] = 1,
|
|
.b[PSC_VOLTAGE_OUT] = 0,
|
|
.R[PSC_VOLTAGE_OUT] = 3,
|
|
.m[PSC_CURRENT_IN] = 1,
|
|
.b[PSC_CURRENT_IN] = 0,
|
|
.R[PSC_CURRENT_IN] = 2,
|
|
.m[PSC_CURRENT_OUT] = 1,
|
|
.b[PSC_CURRENT_OUT] = 0,
|
|
.R[PSC_CURRENT_OUT] = 1,
|
|
.m[PSC_POWER] = 1,
|
|
.b[PSC_POWER] = 0,
|
|
.R[PSC_POWER] = 0,
|
|
.m[PSC_TEMPERATURE] = 1,
|
|
.b[PSC_TEMPERATURE] = 0,
|
|
.R[PSC_TEMPERATURE] = 0,
|
|
.func[0] = PMBUS_HAVE_VIN | PMBUS_HAVE_IIN | PMBUS_HAVE_PIN
|
|
| PMBUS_HAVE_STATUS_INPUT | PMBUS_HAVE_TEMP | PMBUS_HAVE_TEMP2
|
|
| PMBUS_HAVE_TEMP3 | PMBUS_HAVE_STATUS_TEMP
|
|
| PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT
|
|
| PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT | PMBUS_HAVE_POUT
|
|
| PMBUS_HAVE_VMON,
|
|
.func[1] = PMBUS_HAVE_IIN | PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT
|
|
| PMBUS_HAVE_TEMP | PMBUS_HAVE_TEMP3 | PMBUS_HAVE_STATUS_TEMP
|
|
| PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT | PMBUS_HAVE_IOUT
|
|
| PMBUS_HAVE_STATUS_IOUT | PMBUS_HAVE_POUT,
|
|
.func[2] = PMBUS_HAVE_IIN | PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT
|
|
| PMBUS_HAVE_TEMP | PMBUS_HAVE_TEMP3 | PMBUS_HAVE_STATUS_TEMP
|
|
| PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT | PMBUS_HAVE_IOUT
|
|
| PMBUS_HAVE_STATUS_IOUT | PMBUS_HAVE_POUT,
|
|
};
|
|
|
|
static int isl68137_probe(struct i2c_client *client,
|
|
const struct i2c_device_id *id)
|
|
{
|
|
struct pmbus_driver_info *info;
|
|
|
|
info = devm_kzalloc(&client->dev, sizeof(*info), GFP_KERNEL);
|
|
if (!info)
|
|
return -ENOMEM;
|
|
memcpy(info, &raa_dmpvr_info, sizeof(*info));
|
|
|
|
switch (id->driver_data) {
|
|
case isl68137:
|
|
info->pages = 2;
|
|
info->R[PSC_VOLTAGE_IN] = 3;
|
|
info->func[0] &= ~PMBUS_HAVE_VMON;
|
|
info->func[1] = PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT
|
|
| PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT
|
|
| PMBUS_HAVE_POUT;
|
|
info->groups = isl68137_attribute_groups;
|
|
break;
|
|
case raa_dmpvr2_1rail:
|
|
info->pages = 1;
|
|
info->read_word_data = raa_dmpvr2_read_word_data;
|
|
break;
|
|
case raa_dmpvr2_2rail:
|
|
info->pages = 2;
|
|
info->read_word_data = raa_dmpvr2_read_word_data;
|
|
break;
|
|
case raa_dmpvr2_3rail:
|
|
info->read_word_data = raa_dmpvr2_read_word_data;
|
|
break;
|
|
case raa_dmpvr2_hv:
|
|
info->pages = 1;
|
|
info->R[PSC_VOLTAGE_IN] = 1;
|
|
info->m[PSC_VOLTAGE_OUT] = 2;
|
|
info->R[PSC_VOLTAGE_OUT] = 2;
|
|
info->m[PSC_CURRENT_IN] = 2;
|
|
info->m[PSC_POWER] = 2;
|
|
info->R[PSC_POWER] = -1;
|
|
info->read_word_data = raa_dmpvr2_read_word_data;
|
|
break;
|
|
default:
|
|
return -ENODEV;
|
|
}
|
|
|
|
return pmbus_do_probe(client, id, info);
|
|
}
|
|
|
|
static const struct i2c_device_id raa_dmpvr_id[] = {
|
|
{"isl68137", isl68137},
|
|
{"raa_dmpvr2_1rail", raa_dmpvr2_1rail},
|
|
{"raa_dmpvr2_2rail", raa_dmpvr2_2rail},
|
|
{"raa_dmpvr2_3rail", raa_dmpvr2_3rail},
|
|
{"raa_dmpvr2_hv", raa_dmpvr2_hv},
|
|
{}
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, raa_dmpvr_id);
|
|
|
|
/* This is the driver that will be inserted */
|
|
static struct i2c_driver isl68137_driver = {
|
|
.driver = {
|
|
.name = "isl68137",
|
|
},
|
|
.probe = isl68137_probe,
|
|
.remove = pmbus_do_remove,
|
|
.id_table = raa_dmpvr_id,
|
|
};
|
|
|
|
module_i2c_driver(isl68137_driver);
|
|
|
|
MODULE_AUTHOR("Maxim Sloyko <maxims@google.com>");
|
|
MODULE_DESCRIPTION("PMBus driver for Renesas digital multiphase voltage regulators");
|
|
MODULE_LICENSE("GPL");
|