mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
d84955790e
A fairly quiet release, there were some cleanup and a couple of new devices but the biggest change was converting most of the drivers to use asynchronous probe. This allows us to ramp up multiple regulators in parallel during boot which can have a noticable impact on modern systems. - Update of drivers to PROBE_PREFER_ASYNCHRONOUS to mitigate issues with ramp times slowing down boots. - Convert to void remove callbacks. - Support for voltage monitoring on DA9063 - Support for Qualcomm PMC8180 and PMM8654au, Richtek RT4803 and RT5739, Rockchip RK860x, -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAmRGfzcACgkQJNaLcl1U h9B5oAgAgNkRTmrHDzuyFZD0JUt6Wy0jewxNH7Ie5ucYEPNPaWGfPDvJkpjDZ/iB UTPrhFAvNfVX2Z2E3Pdx4jhvbq3chlavpDaMWEqnimdfIqqqHLPEiRtVG2DiXAub 2AKS8piy136EDtWf4/HCoKiLf5Osr4i6bpOUoaHoNIqTtjhu2p7FXC9rjuRsmQgC 8kiA/fsLRcdzyhQb86myl4QktYiWTCrHzP7jpKlHAHRf5OBozapGgPR2Ih/cNoTR 0lbdvst1arkUr1wMGqvYAg1UjlAmA9TA/1kkm6j98G6ruuUzeay9bGN9tCk4SMjf kAXks6ohTS9VvqN5ykrjm/2WF/Y9yA== =AJNv -----END PGP SIGNATURE----- Merge tag 'regulator-v6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator Pull regulator updates from Mark Brown: "A fairly quiet release, there were some cleanup and a couple of new devices but the biggest change was converting most of the drivers to use asynchronous probe. This allows us to ramp up multiple regulators in parallel during boot which can have a noticable impact on modern systems. Summary: - Update of drivers to PROBE_PREFER_ASYNCHRONOUS to mitigate issues with ramp times slowing down boots. - Convert to void remove callbacks. - Support for voltage monitoring on DA9063 - Support for Qualcomm PMC8180 and PMM8654au, Richtek RT4803 and RT5739, Rockchip RK860x" * tag 'regulator-v6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: (46 commits) regulator: dt-bindings: qcom,rpmh: Combine PM6150L and PM8150L if-then regulator: core: Make regulator_lock_two() logic easier to follow regulator: dt-bindings: qcom,rpmh: Correct PM8550 family supplies regulator: stm32-pwr: fix of_iomap leak dt-bindings: mfd: dlg,da9063: document voltage monitoring regulator: da9063: implement setter for voltage monitoring regulator: da9063: add voltage monitoring registers regulator: fan53555: Add support for RK860X regulator: fan53555: Use dev_err_probe regulator: fan53555: Improve vsel_mask computation regulator: fan53555: Make use of the bit macros regulator: fan53555: Remove unused *_SLEW_SHIFT definitions regulator: dt-bindings: fcs,fan53555: Add support for RK860X regulator: qcom_smd: Add MP5496 S1 regulator regulator: qcom_smd: Add s1 sub-node to mp5496 regulator regulator: qcom,rpmh: add compatible for pmm8654au RPMH regulator: qcom-rpmh: add support for pmm8654au regulators regulator: core: Avoid lockdep reports when resolving supplies regulator: core: Consistently set mutex_owner when using ww_mutex_lock_slow() regulator: dt-bindings: qcom,rpmh: Add compatible for PMC8180 ...
171 lines
4.8 KiB
C
171 lines
4.8 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#include <linux/mfd/sm5703.h>
|
|
#include <linux/module.h>
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/regmap.h>
|
|
#include <linux/regulator/driver.h>
|
|
#include <linux/regulator/of_regulator.h>
|
|
|
|
enum sm5703_regulators {
|
|
SM5703_BUCK,
|
|
SM5703_LDO1,
|
|
SM5703_LDO2,
|
|
SM5703_LDO3,
|
|
SM5703_USBLDO1,
|
|
SM5703_USBLDO2,
|
|
SM5703_VBUS,
|
|
SM5703_MAX_REGULATORS,
|
|
};
|
|
|
|
static const int sm5703_ldo_voltagemap[] = {
|
|
1500000, 1800000, 2600000, 2800000, 3000000, 3300000,
|
|
};
|
|
|
|
static const int sm5703_buck_voltagemap[] = {
|
|
1000000, 1000000, 1000000, 1000000,
|
|
1000000, 1000000, 1000000, 1000000,
|
|
1000000, 1000000, 1000000, 1100000,
|
|
1200000, 1300000, 1400000, 1500000,
|
|
1600000, 1700000, 1800000, 1900000,
|
|
2000000, 2100000, 2200000, 2300000,
|
|
2400000, 2500000, 2600000, 2700000,
|
|
2800000, 2900000, 3000000, 3000000,
|
|
};
|
|
|
|
#define SM5703USBLDO(_name, _id) \
|
|
[SM5703_USBLDO ## _id] = { \
|
|
.name = _name, \
|
|
.of_match = _name, \
|
|
.regulators_node = "regulators", \
|
|
.type = REGULATOR_VOLTAGE, \
|
|
.id = SM5703_USBLDO ## _id, \
|
|
.ops = &sm5703_regulator_ops_fixed, \
|
|
.n_voltages = 1, \
|
|
.fixed_uV = SM5703_USBLDO_MICROVOLT, \
|
|
.enable_reg = SM5703_REG_USBLDO12, \
|
|
.enable_mask = SM5703_REG_EN_USBLDO ##_id, \
|
|
.owner = THIS_MODULE, \
|
|
}
|
|
|
|
#define SM5703VBUS(_name) \
|
|
[SM5703_VBUS] = { \
|
|
.name = _name, \
|
|
.of_match = _name, \
|
|
.regulators_node = "regulators", \
|
|
.type = REGULATOR_VOLTAGE, \
|
|
.id = SM5703_VBUS, \
|
|
.ops = &sm5703_regulator_ops_fixed, \
|
|
.n_voltages = 1, \
|
|
.fixed_uV = SM5703_VBUS_MICROVOLT, \
|
|
.enable_reg = SM5703_REG_CNTL, \
|
|
.enable_mask = SM5703_OPERATION_MODE_MASK, \
|
|
.enable_val = SM5703_OPERATION_MODE_USB_OTG_MODE, \
|
|
.disable_val = SM5703_OPERATION_MODE_CHARGING_ON, \
|
|
.owner = THIS_MODULE, \
|
|
}
|
|
|
|
#define SM5703BUCK(_name) \
|
|
[SM5703_BUCK] = { \
|
|
.name = _name, \
|
|
.of_match = _name, \
|
|
.regulators_node = "regulators", \
|
|
.type = REGULATOR_VOLTAGE, \
|
|
.id = SM5703_BUCK, \
|
|
.ops = &sm5703_regulator_ops, \
|
|
.n_voltages = ARRAY_SIZE(sm5703_buck_voltagemap), \
|
|
.volt_table = sm5703_buck_voltagemap, \
|
|
.vsel_reg = SM5703_REG_BUCK, \
|
|
.vsel_mask = SM5703_BUCK_VOLT_MASK, \
|
|
.enable_reg = SM5703_REG_BUCK, \
|
|
.enable_mask = SM5703_REG_EN_BUCK, \
|
|
.owner = THIS_MODULE, \
|
|
}
|
|
|
|
#define SM5703LDO(_name, _id) \
|
|
[SM5703_LDO ## _id] = { \
|
|
.name = _name, \
|
|
.of_match = _name, \
|
|
.regulators_node = "regulators", \
|
|
.type = REGULATOR_VOLTAGE, \
|
|
.id = SM5703_LDO ## _id, \
|
|
.ops = &sm5703_regulator_ops, \
|
|
.n_voltages = ARRAY_SIZE(sm5703_ldo_voltagemap), \
|
|
.volt_table = sm5703_ldo_voltagemap, \
|
|
.vsel_reg = SM5703_REG_LDO ##_id, \
|
|
.vsel_mask = SM5703_LDO_VOLT_MASK, \
|
|
.enable_reg = SM5703_REG_LDO ##_id, \
|
|
.enable_mask = SM5703_LDO_EN, \
|
|
.owner = THIS_MODULE, \
|
|
}
|
|
|
|
static const struct regulator_ops sm5703_regulator_ops = {
|
|
.enable = regulator_enable_regmap,
|
|
.disable = regulator_disable_regmap,
|
|
.is_enabled = regulator_is_enabled_regmap,
|
|
.list_voltage = regulator_list_voltage_table,
|
|
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
|
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
|
};
|
|
|
|
static const struct regulator_ops sm5703_regulator_ops_fixed = {
|
|
.enable = regulator_enable_regmap,
|
|
.disable = regulator_disable_regmap,
|
|
.is_enabled = regulator_is_enabled_regmap,
|
|
};
|
|
|
|
static struct regulator_desc sm5703_regulators_desc[SM5703_MAX_REGULATORS] = {
|
|
SM5703BUCK("buck"),
|
|
SM5703LDO("ldo1", 1),
|
|
SM5703LDO("ldo2", 2),
|
|
SM5703LDO("ldo3", 3),
|
|
SM5703USBLDO("usbldo1", 1),
|
|
SM5703USBLDO("usbldo2", 2),
|
|
SM5703VBUS("vbus"),
|
|
};
|
|
|
|
static int sm5703_regulator_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
struct regulator_config config = { NULL, };
|
|
struct regulator_dev *rdev;
|
|
struct sm5703_dev *sm5703 = dev_get_drvdata(pdev->dev.parent);
|
|
int i;
|
|
|
|
config.dev = dev->parent;
|
|
config.regmap = sm5703->regmap;
|
|
|
|
for (i = 0; i < SM5703_MAX_REGULATORS; i++) {
|
|
rdev = devm_regulator_register(dev,
|
|
&sm5703_regulators_desc[i],
|
|
&config);
|
|
if (IS_ERR(rdev))
|
|
return dev_err_probe(dev, PTR_ERR(rdev),
|
|
"Failed to register a regulator\n");
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct platform_device_id sm5703_regulator_id[] = {
|
|
{ "sm5703-regulator", 0 },
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(platform, sm5703_regulator_id);
|
|
|
|
static struct platform_driver sm5703_regulator_driver = {
|
|
.driver = {
|
|
.name = "sm5703-regulator",
|
|
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
|
},
|
|
.probe = sm5703_regulator_probe,
|
|
.id_table = sm5703_regulator_id,
|
|
};
|
|
|
|
module_platform_driver(sm5703_regulator_driver);
|
|
|
|
MODULE_DESCRIPTION("Silicon Mitus SM5703 LDO/Buck/USB regulator driver");
|
|
MODULE_AUTHOR("Markuss Broks <markuss.broks@gmail.com>");
|
|
MODULE_LICENSE("GPL");
|