2019-05-31 16:09:32 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2017-05-23 20:16:55 +08:00
|
|
|
/*
|
|
|
|
* Regulator driver for LP87565 PMIC
|
|
|
|
*
|
2020-07-20 04:06:23 +08:00
|
|
|
* Copyright (C) 2017 Texas Instruments Incorporated - https://www.ti.com/
|
2017-05-23 20:16:55 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
|
|
|
|
#include <linux/mfd/lp87565.h>
|
|
|
|
|
2021-02-20 06:39:10 +08:00
|
|
|
enum LP87565_regulator_id {
|
|
|
|
/* BUCK's */
|
|
|
|
LP87565_BUCK_0,
|
|
|
|
LP87565_BUCK_1,
|
|
|
|
LP87565_BUCK_2,
|
|
|
|
LP87565_BUCK_3,
|
|
|
|
LP87565_BUCK_10,
|
|
|
|
LP87565_BUCK_23,
|
|
|
|
LP87565_BUCK_3210,
|
|
|
|
};
|
|
|
|
|
2020-06-23 04:43:26 +08:00
|
|
|
#define LP87565_REGULATOR(_name, _id, _of, _ops, _n, _vr, _vm, \
|
|
|
|
_er, _em, _ev, _delay, _lr, _cr) \
|
2017-05-23 20:16:55 +08:00
|
|
|
[_id] = { \
|
|
|
|
.desc = { \
|
|
|
|
.name = _name, \
|
|
|
|
.supply_name = _of "-in", \
|
|
|
|
.id = _id, \
|
2023-08-09 18:04:23 +08:00
|
|
|
.of_match = _of, \
|
|
|
|
.regulators_node = "regulators", \
|
2017-05-23 20:16:55 +08:00
|
|
|
.ops = &_ops, \
|
|
|
|
.n_voltages = _n, \
|
|
|
|
.type = REGULATOR_VOLTAGE, \
|
|
|
|
.owner = THIS_MODULE, \
|
|
|
|
.vsel_reg = _vr, \
|
|
|
|
.vsel_mask = _vm, \
|
|
|
|
.enable_reg = _er, \
|
|
|
|
.enable_mask = _em, \
|
2020-06-23 04:43:26 +08:00
|
|
|
.enable_val = _ev, \
|
2017-05-23 20:16:55 +08:00
|
|
|
.ramp_delay = _delay, \
|
|
|
|
.linear_ranges = _lr, \
|
|
|
|
.n_linear_ranges = ARRAY_SIZE(_lr), \
|
2019-03-01 14:24:32 +08:00
|
|
|
.curr_table = lp87565_buck_uA, \
|
|
|
|
.n_current_limits = ARRAY_SIZE(lp87565_buck_uA),\
|
|
|
|
.csel_reg = (_cr), \
|
|
|
|
.csel_mask = LP87565_BUCK_CTRL_2_ILIM, \
|
2017-05-23 20:16:55 +08:00
|
|
|
}, \
|
|
|
|
.ctrl2_reg = _cr, \
|
|
|
|
}
|
|
|
|
|
|
|
|
struct lp87565_regulator {
|
|
|
|
struct regulator_desc desc;
|
|
|
|
unsigned int ctrl2_reg;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct lp87565_regulator regulators[];
|
|
|
|
|
2020-05-08 23:43:36 +08:00
|
|
|
static const struct linear_range buck0_1_2_3_ranges[] = {
|
2017-06-20 11:36:55 +08:00
|
|
|
REGULATOR_LINEAR_RANGE(600000, 0xA, 0x17, 10000),
|
2017-05-23 20:16:55 +08:00
|
|
|
REGULATOR_LINEAR_RANGE(735000, 0x18, 0x9d, 5000),
|
|
|
|
REGULATOR_LINEAR_RANGE(1420000, 0x9e, 0xff, 20000),
|
|
|
|
};
|
|
|
|
|
2019-01-26 11:39:05 +08:00
|
|
|
static const unsigned int lp87565_buck_ramp_delay[] = {
|
2017-05-23 20:16:55 +08:00
|
|
|
30000, 15000, 10000, 7500, 3800, 1900, 940, 470
|
|
|
|
};
|
|
|
|
|
|
|
|
/* LP87565 BUCK current limit */
|
|
|
|
static const unsigned int lp87565_buck_uA[] = {
|
|
|
|
1500000, 2000000, 2500000, 3000000, 3500000, 4000000, 4500000, 5000000,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int lp87565_buck_set_ramp_delay(struct regulator_dev *rdev,
|
|
|
|
int ramp_delay)
|
|
|
|
{
|
|
|
|
int id = rdev_get_id(rdev);
|
|
|
|
unsigned int reg;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (ramp_delay <= 470)
|
|
|
|
reg = 7;
|
|
|
|
else if (ramp_delay <= 940)
|
|
|
|
reg = 6;
|
|
|
|
else if (ramp_delay <= 1900)
|
|
|
|
reg = 5;
|
|
|
|
else if (ramp_delay <= 3800)
|
|
|
|
reg = 4;
|
|
|
|
else if (ramp_delay <= 7500)
|
|
|
|
reg = 3;
|
|
|
|
else if (ramp_delay <= 10000)
|
|
|
|
reg = 2;
|
|
|
|
else if (ramp_delay <= 15000)
|
|
|
|
reg = 1;
|
|
|
|
else
|
|
|
|
reg = 0;
|
|
|
|
|
2019-09-08 11:57:20 +08:00
|
|
|
ret = regmap_update_bits(rdev->regmap, regulators[id].ctrl2_reg,
|
2017-05-23 20:16:55 +08:00
|
|
|
LP87565_BUCK_CTRL_2_SLEW_RATE,
|
|
|
|
reg << __ffs(LP87565_BUCK_CTRL_2_SLEW_RATE));
|
|
|
|
if (ret) {
|
2019-09-08 11:57:20 +08:00
|
|
|
dev_err(&rdev->dev, "SLEW RATE write failed: %d\n", ret);
|
2017-05-23 20:16:55 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
rdev->constraints->ramp_delay = lp87565_buck_ramp_delay[reg];
|
|
|
|
|
2018-04-17 16:18:11 +08:00
|
|
|
/* Conservatively give a 15% margin */
|
|
|
|
rdev->constraints->ramp_delay =
|
|
|
|
rdev->constraints->ramp_delay * 85 / 100;
|
|
|
|
|
2017-05-23 20:16:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-01 14:24:32 +08:00
|
|
|
/* Operations permitted on BUCKs */
|
2019-01-26 11:39:05 +08:00
|
|
|
static const struct regulator_ops lp87565_buck_ops = {
|
2017-05-23 20:16:55 +08:00
|
|
|
.is_enabled = regulator_is_enabled_regmap,
|
|
|
|
.enable = regulator_enable_regmap,
|
|
|
|
.disable = regulator_disable_regmap,
|
|
|
|
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
|
|
|
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
|
|
|
.list_voltage = regulator_list_voltage_linear_range,
|
|
|
|
.map_voltage = regulator_map_voltage_linear_range,
|
|
|
|
.set_voltage_time_sel = regulator_set_voltage_time_sel,
|
|
|
|
.set_ramp_delay = lp87565_buck_set_ramp_delay,
|
2019-03-01 14:24:32 +08:00
|
|
|
.set_current_limit = regulator_set_current_limit_regmap,
|
|
|
|
.get_current_limit = regulator_get_current_limit_regmap,
|
2017-05-23 20:16:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct lp87565_regulator regulators[] = {
|
|
|
|
LP87565_REGULATOR("BUCK0", LP87565_BUCK_0, "buck0", lp87565_buck_ops,
|
|
|
|
256, LP87565_REG_BUCK0_VOUT, LP87565_BUCK_VSET,
|
|
|
|
LP87565_REG_BUCK0_CTRL_1,
|
2020-06-23 04:43:26 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
|
|
|
LP87565_BUCK_CTRL_1_EN_PIN_CTRL,
|
2018-04-17 16:18:11 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN, 3230,
|
2017-05-23 20:16:55 +08:00
|
|
|
buck0_1_2_3_ranges, LP87565_REG_BUCK0_CTRL_2),
|
|
|
|
LP87565_REGULATOR("BUCK1", LP87565_BUCK_1, "buck1", lp87565_buck_ops,
|
|
|
|
256, LP87565_REG_BUCK1_VOUT, LP87565_BUCK_VSET,
|
|
|
|
LP87565_REG_BUCK1_CTRL_1,
|
2020-06-23 04:43:26 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
|
|
|
LP87565_BUCK_CTRL_1_EN_PIN_CTRL,
|
2018-04-17 16:18:11 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN, 3230,
|
2017-05-23 20:16:55 +08:00
|
|
|
buck0_1_2_3_ranges, LP87565_REG_BUCK1_CTRL_2),
|
|
|
|
LP87565_REGULATOR("BUCK2", LP87565_BUCK_2, "buck2", lp87565_buck_ops,
|
|
|
|
256, LP87565_REG_BUCK2_VOUT, LP87565_BUCK_VSET,
|
|
|
|
LP87565_REG_BUCK2_CTRL_1,
|
2020-06-23 04:43:26 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
|
|
|
LP87565_BUCK_CTRL_1_EN_PIN_CTRL,
|
2018-04-17 16:18:11 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN, 3230,
|
2017-05-23 20:16:55 +08:00
|
|
|
buck0_1_2_3_ranges, LP87565_REG_BUCK2_CTRL_2),
|
|
|
|
LP87565_REGULATOR("BUCK3", LP87565_BUCK_3, "buck3", lp87565_buck_ops,
|
|
|
|
256, LP87565_REG_BUCK3_VOUT, LP87565_BUCK_VSET,
|
|
|
|
LP87565_REG_BUCK3_CTRL_1,
|
2020-06-23 04:43:26 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
|
|
|
LP87565_BUCK_CTRL_1_EN_PIN_CTRL,
|
2018-04-17 16:18:11 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN, 3230,
|
2017-05-23 20:16:55 +08:00
|
|
|
buck0_1_2_3_ranges, LP87565_REG_BUCK3_CTRL_2),
|
|
|
|
LP87565_REGULATOR("BUCK10", LP87565_BUCK_10, "buck10", lp87565_buck_ops,
|
|
|
|
256, LP87565_REG_BUCK0_VOUT, LP87565_BUCK_VSET,
|
|
|
|
LP87565_REG_BUCK0_CTRL_1,
|
2018-04-17 16:51:55 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
2020-06-23 04:43:26 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN_PIN_CTRL |
|
|
|
|
LP87565_BUCK_CTRL_1_FPWM_MP_0_2,
|
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
2018-04-17 16:51:55 +08:00
|
|
|
LP87565_BUCK_CTRL_1_FPWM_MP_0_2, 3230,
|
2017-05-23 20:16:55 +08:00
|
|
|
buck0_1_2_3_ranges, LP87565_REG_BUCK0_CTRL_2),
|
|
|
|
LP87565_REGULATOR("BUCK23", LP87565_BUCK_23, "buck23", lp87565_buck_ops,
|
|
|
|
256, LP87565_REG_BUCK2_VOUT, LP87565_BUCK_VSET,
|
|
|
|
LP87565_REG_BUCK2_CTRL_1,
|
2020-06-23 04:43:26 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
|
|
|
LP87565_BUCK_CTRL_1_EN_PIN_CTRL,
|
2018-04-17 16:18:11 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN, 3230,
|
2017-05-23 20:16:55 +08:00
|
|
|
buck0_1_2_3_ranges, LP87565_REG_BUCK2_CTRL_2),
|
2019-06-12 22:46:20 +08:00
|
|
|
LP87565_REGULATOR("BUCK3210", LP87565_BUCK_3210, "buck3210",
|
|
|
|
lp87565_buck_ops, 256, LP87565_REG_BUCK0_VOUT,
|
|
|
|
LP87565_BUCK_VSET, LP87565_REG_BUCK0_CTRL_1,
|
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
2020-06-23 04:43:26 +08:00
|
|
|
LP87565_BUCK_CTRL_1_EN_PIN_CTRL |
|
|
|
|
LP87565_BUCK_CTRL_1_FPWM_MP_0_2,
|
|
|
|
LP87565_BUCK_CTRL_1_EN |
|
2019-06-12 22:46:20 +08:00
|
|
|
LP87565_BUCK_CTRL_1_FPWM_MP_0_2, 3230,
|
|
|
|
buck0_1_2_3_ranges, LP87565_REG_BUCK0_CTRL_2),
|
2017-05-23 20:16:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int lp87565_regulator_probe(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct lp87565 *lp87565 = dev_get_drvdata(pdev->dev.parent);
|
|
|
|
struct regulator_config config = { };
|
|
|
|
struct regulator_dev *rdev;
|
2019-07-11 19:35:17 +08:00
|
|
|
int i, min_idx, max_idx;
|
2017-05-23 20:16:55 +08:00
|
|
|
|
|
|
|
platform_set_drvdata(pdev, lp87565);
|
|
|
|
|
|
|
|
config.dev = &pdev->dev;
|
|
|
|
config.dev->of_node = lp87565->dev->of_node;
|
|
|
|
config.driver_data = lp87565;
|
|
|
|
config.regmap = lp87565->regmap;
|
|
|
|
|
2019-06-12 22:46:20 +08:00
|
|
|
switch (lp87565->dev_type) {
|
|
|
|
case LP87565_DEVICE_TYPE_LP87565_Q1:
|
2017-05-23 20:16:55 +08:00
|
|
|
min_idx = LP87565_BUCK_10;
|
|
|
|
max_idx = LP87565_BUCK_23;
|
2019-06-12 22:46:20 +08:00
|
|
|
break;
|
|
|
|
case LP87565_DEVICE_TYPE_LP87561_Q1:
|
|
|
|
min_idx = LP87565_BUCK_3210;
|
|
|
|
max_idx = LP87565_BUCK_3210;
|
2019-06-27 21:16:39 +08:00
|
|
|
break;
|
2019-06-12 22:46:20 +08:00
|
|
|
default:
|
2019-07-11 19:35:17 +08:00
|
|
|
min_idx = LP87565_BUCK_0;
|
|
|
|
max_idx = LP87565_BUCK_3;
|
|
|
|
break;
|
2017-05-23 20:16:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = min_idx; i <= max_idx; i++) {
|
|
|
|
rdev = devm_regulator_register(&pdev->dev, ®ulators[i].desc,
|
|
|
|
&config);
|
|
|
|
if (IS_ERR(rdev)) {
|
|
|
|
dev_err(lp87565->dev, "failed to register %s regulator\n",
|
|
|
|
pdev->name);
|
|
|
|
return PTR_ERR(rdev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct platform_device_id lp87565_regulator_id_table[] = {
|
|
|
|
{ "lp87565-regulator", },
|
|
|
|
{ "lp87565-q1-regulator", },
|
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(platform, lp87565_regulator_id_table);
|
|
|
|
|
|
|
|
static struct platform_driver lp87565_regulator_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "lp87565-pmic",
|
regulator: Set PROBE_PREFER_ASYNCHRONOUS for drivers that existed in 4.14
Probing of regulators can be a slow operation and can contribute to
slower boot times. This is especially true if a regulator is turned on
at probe time (with regulator-boot-on or regulator-always-on) and the
regulator requires delays (off-on-time, ramp time, etc).
While the overall kernel is not ready to switch to async probe by
default, as per the discussion on the mailing lists [1] it is believed
that the regulator subsystem is in good shape and we can move
regulator drivers over wholesale. There is no way to just magically
opt in all regulators (regulators are just normal drivers like
platform_driver), so we set PROBE_PREFER_ASYNCHRONOUS for all
regulators found in 'drivers/regulator' individually.
Given the number of drivers touched and the impossibility to test this
ahead of time, it wouldn't be shocking at all if this caused a
regression for someone. If there is a regression caused by this patch,
it's likely to be one of the cases talked about in [1]. As a "quick
fix", drivers involved in the regression could be fixed by changing
them to PROBE_FORCE_SYNCHRONOUS. That being said, the correct fix
would be to directly fix the problem that caused the issue with async
probe.
The approach here follows a similar approach that was used for the mmc
subsystem several years ago [2]. In fact, I ran nearly the same python
script to auto-generate the changes. The only thing I changed was to
search for "i2c_driver", "spmi_driver", and "spi_driver" in addition
to "platform_driver".
[1] https://lore.kernel.org/r/06db017f-e985-4434-8d1d-02ca2100cca0@sirena.org.uk
[2] https://lore.kernel.org/r/20200903232441.2694866-1-dianders@chromium.org/
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20230316125351.1.I2a4677392a38db5758dee0788b2cea5872562a82@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>
2023-03-17 03:54:38 +08:00
|
|
|
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
2017-05-23 20:16:55 +08:00
|
|
|
},
|
|
|
|
.probe = lp87565_regulator_probe,
|
|
|
|
.id_table = lp87565_regulator_id_table,
|
|
|
|
};
|
|
|
|
module_platform_driver(lp87565_regulator_driver);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("J Keerthy <j-keerthy@ti.com>");
|
|
|
|
MODULE_DESCRIPTION("LP87565 voltage regulator driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|