mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
259b93b21a
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>
92 lines
2.5 KiB
C
92 lines
2.5 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
//
|
|
// sky81452-regulator.c SKY81452 regulator driver
|
|
//
|
|
// Copyright 2014 Skyworks Solutions Inc.
|
|
// Author : Gyungoh Yoo <jack.yoo@skyworksinc.com>
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/init.h>
|
|
#include <linux/err.h>
|
|
#include <linux/of.h>
|
|
#include <linux/regulator/driver.h>
|
|
#include <linux/regulator/of_regulator.h>
|
|
|
|
/* registers */
|
|
#define SKY81452_REG1 0x01
|
|
#define SKY81452_REG3 0x03
|
|
|
|
/* bit mask */
|
|
#define SKY81452_LEN 0x40
|
|
#define SKY81452_LOUT 0x1F
|
|
|
|
static const struct regulator_ops sky81452_reg_ops = {
|
|
.list_voltage = regulator_list_voltage_linear_range,
|
|
.map_voltage = regulator_map_voltage_linear_range,
|
|
.get_voltage_sel = regulator_get_voltage_sel_regmap,
|
|
.set_voltage_sel = regulator_set_voltage_sel_regmap,
|
|
.enable = regulator_enable_regmap,
|
|
.disable = regulator_disable_regmap,
|
|
.is_enabled = regulator_is_enabled_regmap,
|
|
};
|
|
|
|
static const struct linear_range sky81452_reg_ranges[] = {
|
|
REGULATOR_LINEAR_RANGE(4500000, 0, 14, 250000),
|
|
REGULATOR_LINEAR_RANGE(9000000, 15, 31, 1000000),
|
|
};
|
|
|
|
static const struct regulator_desc sky81452_reg = {
|
|
.name = "LOUT",
|
|
.of_match = of_match_ptr("lout"),
|
|
.regulators_node = of_match_ptr("regulator"),
|
|
.ops = &sky81452_reg_ops,
|
|
.type = REGULATOR_VOLTAGE,
|
|
.owner = THIS_MODULE,
|
|
.n_voltages = SKY81452_LOUT + 1,
|
|
.linear_ranges = sky81452_reg_ranges,
|
|
.n_linear_ranges = ARRAY_SIZE(sky81452_reg_ranges),
|
|
.vsel_reg = SKY81452_REG3,
|
|
.vsel_mask = SKY81452_LOUT,
|
|
.enable_reg = SKY81452_REG1,
|
|
.enable_mask = SKY81452_LEN,
|
|
};
|
|
|
|
static int sky81452_reg_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
const struct regulator_init_data *init_data = dev_get_platdata(dev);
|
|
struct regulator_config config = { };
|
|
struct regulator_dev *rdev;
|
|
|
|
config.dev = dev->parent;
|
|
config.init_data = init_data;
|
|
config.of_node = dev->of_node;
|
|
config.regmap = dev_get_drvdata(dev->parent);
|
|
|
|
rdev = devm_regulator_register(dev, &sky81452_reg, &config);
|
|
if (IS_ERR(rdev)) {
|
|
dev_err(dev, "failed to register. err=%ld\n", PTR_ERR(rdev));
|
|
return PTR_ERR(rdev);
|
|
}
|
|
|
|
platform_set_drvdata(pdev, rdev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct platform_driver sky81452_reg_driver = {
|
|
.driver = {
|
|
.name = "sky81452-regulator",
|
|
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
|
},
|
|
.probe = sky81452_reg_probe,
|
|
};
|
|
|
|
module_platform_driver(sky81452_reg_driver);
|
|
|
|
MODULE_DESCRIPTION("Skyworks SKY81452 Regulator driver");
|
|
MODULE_AUTHOR("Gyungoh Yoo <jack.yoo@skyworksinc.com>");
|
|
MODULE_LICENSE("GPL v2");
|