2020-01-13 15:08:39 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
/*
|
|
|
|
* Hardware monitoring driver for Infineon Multi-phase Digital VR Controllers
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020 Mellanox Technologies. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
2022-03-02 10:49:21 +01:00
|
|
|
#include <linux/regulator/driver.h>
|
|
|
|
|
2020-01-13 15:08:39 +00:00
|
|
|
#include "pmbus.h"
|
|
|
|
|
|
|
|
#define XDPE122_PROT_VR12_5MV 0x01 /* VR12.0 mode, 5-mV DAC */
|
|
|
|
#define XDPE122_PROT_VR12_5_10MV 0x02 /* VR12.5 mode, 10-mV DAC */
|
|
|
|
#define XDPE122_PROT_IMVP9_10MV 0x03 /* IMVP9 mode, 10-mV DAC */
|
|
|
|
#define XDPE122_AMD_625MV 0x10 /* AMD mode 6.25mV */
|
|
|
|
#define XDPE122_PAGE_NUM 2
|
|
|
|
|
2020-01-14 09:49:27 -08:00
|
|
|
static int xdpe122_read_word_data(struct i2c_client *client, int page,
|
|
|
|
int phase, int reg)
|
2020-02-25 00:52:02 +02:00
|
|
|
{
|
|
|
|
const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
|
|
|
|
long val;
|
|
|
|
s16 exponent;
|
|
|
|
s32 mantissa;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
switch (reg) {
|
|
|
|
case PMBUS_VOUT_OV_FAULT_LIMIT:
|
|
|
|
case PMBUS_VOUT_UV_FAULT_LIMIT:
|
2020-01-14 09:49:27 -08:00
|
|
|
ret = pmbus_read_word_data(client, page, phase, reg);
|
2020-02-25 00:52:02 +02:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Convert register value to LINEAR11 data. */
|
|
|
|
exponent = ((s16)ret) >> 11;
|
|
|
|
mantissa = ((s16)((ret & GENMASK(10, 0)) << 5)) >> 5;
|
|
|
|
val = mantissa * 1000L;
|
|
|
|
if (exponent >= 0)
|
|
|
|
val <<= exponent;
|
|
|
|
else
|
|
|
|
val >>= -exponent;
|
|
|
|
|
|
|
|
/* Convert data to VID register. */
|
|
|
|
switch (info->vrm_version[page]) {
|
|
|
|
case vr13:
|
|
|
|
if (val >= 500)
|
|
|
|
return 1 + DIV_ROUND_CLOSEST(val - 500, 10);
|
|
|
|
return 0;
|
|
|
|
case vr12:
|
|
|
|
if (val >= 250)
|
|
|
|
return 1 + DIV_ROUND_CLOSEST(val - 250, 5);
|
|
|
|
return 0;
|
|
|
|
case imvp9:
|
|
|
|
if (val >= 200)
|
|
|
|
return 1 + DIV_ROUND_CLOSEST(val - 200, 10);
|
|
|
|
return 0;
|
|
|
|
case amd625mv:
|
|
|
|
if (val >= 200 && val <= 1550)
|
|
|
|
return DIV_ROUND_CLOSEST((1550 - val) * 100,
|
|
|
|
625);
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return -ENODATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-01-13 15:08:39 +00:00
|
|
|
static int xdpe122_identify(struct i2c_client *client,
|
|
|
|
struct pmbus_driver_info *info)
|
|
|
|
{
|
|
|
|
u8 vout_params;
|
2022-03-02 10:49:20 +01:00
|
|
|
int i, ret, vout_mode;
|
|
|
|
|
|
|
|
vout_mode = pmbus_read_byte_data(client, 0, PMBUS_VOUT_MODE);
|
|
|
|
if (vout_mode >= 0 && vout_mode != 0xff) {
|
|
|
|
switch (vout_mode >> 5) {
|
|
|
|
case 0:
|
|
|
|
info->format[PSC_VOLTAGE_OUT] = linear;
|
|
|
|
return 0;
|
|
|
|
case 1:
|
|
|
|
info->format[PSC_VOLTAGE_OUT] = vid;
|
|
|
|
info->read_word_data = xdpe122_read_word_data;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
}
|
2020-01-13 15:08:39 +00:00
|
|
|
|
|
|
|
for (i = 0; i < XDPE122_PAGE_NUM; i++) {
|
|
|
|
/* Read the register with VOUT scaling value.*/
|
|
|
|
ret = pmbus_read_byte_data(client, i, PMBUS_VOUT_MODE);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
vout_params = ret & GENMASK(4, 0);
|
|
|
|
|
|
|
|
switch (vout_params) {
|
|
|
|
case XDPE122_PROT_VR12_5_10MV:
|
|
|
|
info->vrm_version[i] = vr13;
|
|
|
|
break;
|
|
|
|
case XDPE122_PROT_VR12_5MV:
|
|
|
|
info->vrm_version[i] = vr12;
|
|
|
|
break;
|
|
|
|
case XDPE122_PROT_IMVP9_10MV:
|
|
|
|
info->vrm_version[i] = imvp9;
|
|
|
|
break;
|
|
|
|
case XDPE122_AMD_625MV:
|
|
|
|
info->vrm_version[i] = amd625mv;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-03-25 15:24:34 -07:00
|
|
|
static const struct regulator_desc __maybe_unused xdpe122_reg_desc[] = {
|
2022-03-02 10:49:21 +01:00
|
|
|
PMBUS_REGULATOR("vout", 0),
|
|
|
|
PMBUS_REGULATOR("vout", 1),
|
|
|
|
};
|
|
|
|
|
2020-01-13 15:08:39 +00:00
|
|
|
static struct pmbus_driver_info xdpe122_info = {
|
|
|
|
.pages = XDPE122_PAGE_NUM,
|
|
|
|
.format[PSC_VOLTAGE_IN] = linear,
|
|
|
|
.format[PSC_TEMPERATURE] = linear,
|
|
|
|
.format[PSC_CURRENT_IN] = linear,
|
|
|
|
.format[PSC_CURRENT_OUT] = linear,
|
|
|
|
.format[PSC_POWER] = linear,
|
|
|
|
.func[0] = PMBUS_HAVE_VIN | PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT |
|
|
|
|
PMBUS_HAVE_IIN | PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT |
|
|
|
|
PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP |
|
|
|
|
PMBUS_HAVE_POUT | PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT,
|
|
|
|
.func[1] = PMBUS_HAVE_VIN | PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT |
|
|
|
|
PMBUS_HAVE_IIN | PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT |
|
|
|
|
PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP |
|
|
|
|
PMBUS_HAVE_POUT | PMBUS_HAVE_PIN | PMBUS_HAVE_STATUS_INPUT,
|
|
|
|
.identify = xdpe122_identify,
|
2022-03-02 10:49:21 +01:00
|
|
|
#if IS_ENABLED(CONFIG_SENSORS_XDPE122_REGULATOR)
|
|
|
|
.num_regulators = 2,
|
|
|
|
.reg_desc = xdpe122_reg_desc,
|
|
|
|
#endif
|
2020-01-13 15:08:39 +00:00
|
|
|
};
|
|
|
|
|
2020-08-08 23:00:04 +02:00
|
|
|
static int xdpe122_probe(struct i2c_client *client)
|
2020-01-13 15:08:39 +00:00
|
|
|
{
|
|
|
|
struct pmbus_driver_info *info;
|
|
|
|
|
|
|
|
info = devm_kmemdup(&client->dev, &xdpe122_info, sizeof(*info),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!info)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2020-08-08 23:00:04 +02:00
|
|
|
return pmbus_do_probe(client, info);
|
2020-01-13 15:08:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct i2c_device_id xdpe122_id[] = {
|
2024-04-30 10:56:53 +02:00
|
|
|
{"xdpe11280"},
|
|
|
|
{"xdpe12254"},
|
|
|
|
{"xdpe12284"},
|
2020-01-13 15:08:39 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(i2c, xdpe122_id);
|
|
|
|
|
|
|
|
static const struct of_device_id __maybe_unused xdpe122_of_match[] = {
|
2022-03-02 10:49:20 +01:00
|
|
|
{.compatible = "infineon,xdpe11280"},
|
2020-02-12 10:24:26 +01:00
|
|
|
{.compatible = "infineon,xdpe12254"},
|
|
|
|
{.compatible = "infineon,xdpe12284"},
|
2020-01-13 15:08:39 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, xdpe122_of_match);
|
|
|
|
|
|
|
|
static struct i2c_driver xdpe122_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "xdpe12284",
|
|
|
|
.of_match_table = of_match_ptr(xdpe122_of_match),
|
|
|
|
},
|
2023-05-05 15:17:18 +02:00
|
|
|
.probe = xdpe122_probe,
|
2020-01-13 15:08:39 +00:00
|
|
|
.id_table = xdpe122_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
module_i2c_driver(xdpe122_driver);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Vadim Pasternak <vadimp@mellanox.com>");
|
|
|
|
MODULE_DESCRIPTION("PMBus driver for Infineon XDPE122 family");
|
|
|
|
MODULE_LICENSE("GPL");
|
module: Convert symbol namespace to string literal
Clean up the existing export namespace code along the same lines of
commit 33def8498fdd ("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.
Scripted using
git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
do
awk -i inplace '
/^#define EXPORT_SYMBOL_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/^#define MODULE_IMPORT_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/MODULE_IMPORT_NS/ {
$0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
}
/EXPORT_SYMBOL_NS/ {
if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
$0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
$0 !~ /^my/) {
getline line;
gsub(/[[:space:]]*\\$/, "");
gsub(/[[:space:]]/, "", line);
$0 = $0 " " line;
}
$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
"\\1(\\2, \"\\3\")", "g");
}
}
{ print }' $file;
done
Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2024-12-02 15:59:47 +01:00
|
|
|
MODULE_IMPORT_NS("PMBUS");
|