2019-05-27 14:55:01 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-04-30 23:27:12 +08:00
|
|
|
/*
|
|
|
|
* fixed.c
|
|
|
|
*
|
|
|
|
* Copyright 2008 Wolfson Microelectronics PLC.
|
|
|
|
*
|
|
|
|
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
|
|
|
*
|
2009-08-07 00:37:29 +08:00
|
|
|
* Copyright (c) 2009 Nokia Corporation
|
|
|
|
* Roger Quadros <ext-roger.quadros@nokia.com>
|
|
|
|
*
|
2008-04-30 23:27:12 +08:00
|
|
|
* This is useful for systems with mixed controllable and
|
|
|
|
* non-controllable regulators, as well as for allowing testing on
|
|
|
|
* systems with no controllable regulators.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/mutex.h>
|
2011-07-18 04:28:23 +08:00
|
|
|
#include <linux/module.h>
|
2008-04-30 23:27:12 +08:00
|
|
|
#include <linux/platform_device.h>
|
2020-10-23 21:19:22 +08:00
|
|
|
#include <linux/pm_domain.h>
|
|
|
|
#include <linux/pm_opp.h>
|
2023-10-25 16:46:12 +08:00
|
|
|
#include <linux/reboot.h>
|
2008-04-30 23:27:12 +08:00
|
|
|
#include <linux/regulator/driver.h>
|
|
|
|
#include <linux/regulator/fixed.h>
|
2018-09-06 20:24:36 +08:00
|
|
|
#include <linux/gpio/consumer.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2011-11-18 19:17:18 +08:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/regulator/of_regulator.h>
|
|
|
|
#include <linux/regulator/machine.h>
|
2019-09-10 14:21:15 +08:00
|
|
|
#include <linux/clk.h>
|
|
|
|
|
2023-10-25 16:46:12 +08:00
|
|
|
/* Default time in millisecond to wait for emergency shutdown */
|
|
|
|
#define FV_DEF_EMERG_SHUTDWN_TMO 10
|
2008-04-30 23:27:12 +08:00
|
|
|
|
|
|
|
struct fixed_voltage_data {
|
|
|
|
struct regulator_desc desc;
|
|
|
|
struct regulator_dev *dev;
|
2019-09-10 14:21:15 +08:00
|
|
|
|
|
|
|
struct clk *enable_clock;
|
2020-10-23 21:19:22 +08:00
|
|
|
unsigned int enable_counter;
|
|
|
|
int performance_state;
|
2008-04-30 23:27:12 +08:00
|
|
|
};
|
|
|
|
|
2019-09-10 14:21:15 +08:00
|
|
|
struct fixed_dev_type {
|
|
|
|
bool has_enable_clock;
|
2020-10-23 21:19:22 +08:00
|
|
|
bool has_performance_state;
|
2019-09-10 14:21:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int reg_clock_enable(struct regulator_dev *rdev)
|
|
|
|
{
|
|
|
|
struct fixed_voltage_data *priv = rdev_get_drvdata(rdev);
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
ret = clk_prepare_enable(priv->enable_clock);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2020-10-23 21:19:22 +08:00
|
|
|
priv->enable_counter++;
|
2019-09-10 14:21:15 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int reg_clock_disable(struct regulator_dev *rdev)
|
|
|
|
{
|
|
|
|
struct fixed_voltage_data *priv = rdev_get_drvdata(rdev);
|
|
|
|
|
|
|
|
clk_disable_unprepare(priv->enable_clock);
|
2020-10-23 21:19:22 +08:00
|
|
|
priv->enable_counter--;
|
2019-09-10 14:21:15 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-10-23 21:19:22 +08:00
|
|
|
static int reg_domain_enable(struct regulator_dev *rdev)
|
2019-09-10 14:21:15 +08:00
|
|
|
{
|
|
|
|
struct fixed_voltage_data *priv = rdev_get_drvdata(rdev);
|
2020-10-23 21:19:22 +08:00
|
|
|
struct device *dev = rdev->dev.parent;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = dev_pm_genpd_set_performance_state(dev, priv->performance_state);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2019-09-10 14:21:15 +08:00
|
|
|
|
2020-10-23 21:19:22 +08:00
|
|
|
priv->enable_counter++;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int reg_domain_disable(struct regulator_dev *rdev)
|
|
|
|
{
|
|
|
|
struct fixed_voltage_data *priv = rdev_get_drvdata(rdev);
|
|
|
|
struct device *dev = rdev->dev.parent;
|
2021-05-20 19:18:11 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = dev_pm_genpd_set_performance_state(dev, 0);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2020-10-23 21:19:22 +08:00
|
|
|
|
|
|
|
priv->enable_counter--;
|
|
|
|
|
2021-05-20 19:18:11 +08:00
|
|
|
return 0;
|
2020-10-23 21:19:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int reg_is_enabled(struct regulator_dev *rdev)
|
|
|
|
{
|
|
|
|
struct fixed_voltage_data *priv = rdev_get_drvdata(rdev);
|
|
|
|
|
|
|
|
return priv->enable_counter > 0;
|
2019-09-10 14:21:15 +08:00
|
|
|
}
|
|
|
|
|
2023-10-25 16:46:12 +08:00
|
|
|
static irqreturn_t reg_fixed_under_voltage_irq_handler(int irq, void *data)
|
|
|
|
{
|
|
|
|
struct fixed_voltage_data *priv = data;
|
|
|
|
struct regulator_dev *rdev = priv->dev;
|
|
|
|
|
|
|
|
regulator_notifier_call_chain(rdev, REGULATOR_EVENT_UNDER_VOLTAGE,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* reg_fixed_get_irqs - Get and register the optional IRQ for fixed voltage
|
|
|
|
* regulator.
|
|
|
|
* @dev: Pointer to the device structure.
|
|
|
|
* @priv: Pointer to fixed_voltage_data structure containing private data.
|
|
|
|
*
|
|
|
|
* This function tries to get the IRQ from the device firmware node.
|
|
|
|
* If it's an optional IRQ and not found, it returns 0.
|
|
|
|
* Otherwise, it attempts to request the threaded IRQ.
|
|
|
|
*
|
2024-08-29 16:51:30 +08:00
|
|
|
* Return: 0 on success, or a negative error number on failure.
|
2023-10-25 16:46:12 +08:00
|
|
|
*/
|
|
|
|
static int reg_fixed_get_irqs(struct device *dev,
|
|
|
|
struct fixed_voltage_data *priv)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = fwnode_irq_get(dev_fwnode(dev), 0);
|
|
|
|
/* This is optional IRQ. If not found we will get -EINVAL */
|
|
|
|
if (ret == -EINVAL)
|
|
|
|
return 0;
|
|
|
|
if (ret < 0)
|
|
|
|
return dev_err_probe(dev, ret, "Failed to get IRQ\n");
|
|
|
|
|
|
|
|
ret = devm_request_threaded_irq(dev, ret, NULL,
|
|
|
|
reg_fixed_under_voltage_irq_handler,
|
|
|
|
IRQF_ONESHOT, "under-voltage", priv);
|
|
|
|
if (ret)
|
|
|
|
return dev_err_probe(dev, ret, "Failed to request IRQ\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2011-11-18 19:17:18 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* of_get_fixed_voltage_config - extract fixed_voltage_config structure info
|
|
|
|
* @dev: device requesting for fixed_voltage_config
|
2014-11-10 21:43:53 +08:00
|
|
|
* @desc: regulator description
|
2011-11-18 19:17:18 +08:00
|
|
|
*
|
|
|
|
* Populates fixed_voltage_config structure by extracting data from device
|
2024-08-29 16:51:26 +08:00
|
|
|
* tree node.
|
|
|
|
*
|
|
|
|
* Return: Pointer to a populated &struct fixed_voltage_config or %NULL if
|
|
|
|
* memory allocation fails.
|
2011-11-18 19:17:18 +08:00
|
|
|
*/
|
2011-11-27 10:35:08 +08:00
|
|
|
static struct fixed_voltage_config *
|
2014-11-10 21:43:53 +08:00
|
|
|
of_get_fixed_voltage_config(struct device *dev,
|
|
|
|
const struct regulator_desc *desc)
|
2011-11-18 19:17:18 +08:00
|
|
|
{
|
|
|
|
struct fixed_voltage_config *config;
|
|
|
|
struct device_node *np = dev->of_node;
|
|
|
|
struct regulator_init_data *init_data;
|
|
|
|
|
|
|
|
config = devm_kzalloc(dev, sizeof(struct fixed_voltage_config),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!config)
|
2012-06-30 00:33:15 +08:00
|
|
|
return ERR_PTR(-ENOMEM);
|
2011-11-18 19:17:18 +08:00
|
|
|
|
2014-11-10 21:43:53 +08:00
|
|
|
config->init_data = of_get_regulator_init_data(dev, dev->of_node, desc);
|
2011-11-26 20:19:19 +08:00
|
|
|
if (!config->init_data)
|
2012-06-30 00:33:15 +08:00
|
|
|
return ERR_PTR(-EINVAL);
|
2011-11-26 20:19:19 +08:00
|
|
|
|
2011-11-18 19:17:18 +08:00
|
|
|
init_data = config->init_data;
|
2012-01-04 11:07:29 +08:00
|
|
|
init_data->constraints.apply_uV = 0;
|
2011-11-18 19:17:18 +08:00
|
|
|
|
|
|
|
config->supply_name = init_data->constraints.name;
|
|
|
|
if (init_data->constraints.min_uV == init_data->constraints.max_uV) {
|
|
|
|
config->microvolts = init_data->constraints.min_uV;
|
|
|
|
} else {
|
|
|
|
dev_err(dev,
|
|
|
|
"Fixed regulator specified with variable voltages\n");
|
2012-06-30 00:33:15 +08:00
|
|
|
return ERR_PTR(-EINVAL);
|
2011-11-18 19:17:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (init_data->constraints.boot_on)
|
|
|
|
config->enabled_at_boot = true;
|
|
|
|
|
2014-05-26 03:50:39 +08:00
|
|
|
of_property_read_u32(np, "startup-delay-us", &config->startup_delay);
|
2019-10-29 09:21:31 +08:00
|
|
|
of_property_read_u32(np, "off-on-delay-us", &config->off_on_delay);
|
2011-11-18 19:17:18 +08:00
|
|
|
|
2023-03-10 22:47:21 +08:00
|
|
|
if (of_property_present(np, "vin-supply"))
|
2012-07-05 20:42:01 +08:00
|
|
|
config->input_supply = "vin";
|
|
|
|
|
2011-11-18 19:17:18 +08:00
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2020-09-13 16:41:11 +08:00
|
|
|
static const struct regulator_ops fixed_voltage_ops = {
|
2012-03-22 04:04:44 +08:00
|
|
|
};
|
|
|
|
|
2020-09-13 16:41:11 +08:00
|
|
|
static const struct regulator_ops fixed_voltage_clkenabled_ops = {
|
2019-09-10 14:21:15 +08:00
|
|
|
.enable = reg_clock_enable,
|
|
|
|
.disable = reg_clock_disable,
|
2020-10-23 21:19:22 +08:00
|
|
|
.is_enabled = reg_is_enabled,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct regulator_ops fixed_voltage_domain_ops = {
|
|
|
|
.enable = reg_domain_enable,
|
|
|
|
.disable = reg_domain_disable,
|
|
|
|
.is_enabled = reg_is_enabled,
|
2019-09-10 14:21:15 +08:00
|
|
|
};
|
|
|
|
|
2012-11-20 02:22:22 +08:00
|
|
|
static int reg_fixed_voltage_probe(struct platform_device *pdev)
|
2008-04-30 23:27:12 +08:00
|
|
|
{
|
2019-09-10 14:21:15 +08:00
|
|
|
struct device *dev = &pdev->dev;
|
2011-11-27 20:07:57 +08:00
|
|
|
struct fixed_voltage_config *config;
|
2008-04-30 23:27:12 +08:00
|
|
|
struct fixed_voltage_data *drvdata;
|
2019-09-22 10:29:28 +08:00
|
|
|
const struct fixed_dev_type *drvtype = of_device_get_match_data(dev);
|
2012-04-04 07:50:22 +08:00
|
|
|
struct regulator_config cfg = { };
|
2018-09-06 20:24:36 +08:00
|
|
|
enum gpiod_flags gflags;
|
2008-04-30 23:27:12 +08:00
|
|
|
int ret;
|
|
|
|
|
2014-11-10 21:43:53 +08:00
|
|
|
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!drvdata)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2012-06-30 00:33:15 +08:00
|
|
|
if (pdev->dev.of_node) {
|
2014-11-10 21:43:53 +08:00
|
|
|
config = of_get_fixed_voltage_config(&pdev->dev,
|
|
|
|
&drvdata->desc);
|
2012-06-30 00:33:15 +08:00
|
|
|
if (IS_ERR(config))
|
|
|
|
return PTR_ERR(config);
|
|
|
|
} else {
|
2013-07-30 16:20:47 +08:00
|
|
|
config = dev_get_platdata(&pdev->dev);
|
2012-06-30 00:33:15 +08:00
|
|
|
}
|
2011-11-27 20:07:57 +08:00
|
|
|
|
|
|
|
if (!config)
|
|
|
|
return -ENOMEM;
|
2011-11-18 19:17:18 +08:00
|
|
|
|
2014-01-29 22:57:28 +08:00
|
|
|
drvdata->desc.name = devm_kstrdup(&pdev->dev,
|
|
|
|
config->supply_name,
|
|
|
|
GFP_KERNEL);
|
2008-04-30 23:27:12 +08:00
|
|
|
if (drvdata->desc.name == NULL) {
|
2009-08-04 01:49:53 +08:00
|
|
|
dev_err(&pdev->dev, "Failed to allocate supply name\n");
|
2014-01-29 22:57:28 +08:00
|
|
|
return -ENOMEM;
|
2008-04-30 23:27:12 +08:00
|
|
|
}
|
|
|
|
drvdata->desc.type = REGULATOR_VOLTAGE;
|
|
|
|
drvdata->desc.owner = THIS_MODULE;
|
2019-09-10 14:21:15 +08:00
|
|
|
|
2019-09-22 10:29:28 +08:00
|
|
|
if (drvtype && drvtype->has_enable_clock) {
|
2019-09-10 14:21:15 +08:00
|
|
|
drvdata->desc.ops = &fixed_voltage_clkenabled_ops;
|
|
|
|
|
|
|
|
drvdata->enable_clock = devm_clk_get(dev, NULL);
|
|
|
|
if (IS_ERR(drvdata->enable_clock)) {
|
2020-08-10 17:39:31 +08:00
|
|
|
dev_err(dev, "Can't get enable-clock from devicetree\n");
|
2023-03-26 16:29:33 +08:00
|
|
|
return PTR_ERR(drvdata->enable_clock);
|
2019-09-10 14:21:15 +08:00
|
|
|
}
|
2020-10-23 21:19:22 +08:00
|
|
|
} else if (drvtype && drvtype->has_performance_state) {
|
|
|
|
drvdata->desc.ops = &fixed_voltage_domain_ops;
|
|
|
|
|
|
|
|
drvdata->performance_state = of_get_required_opp_performance_state(dev->of_node, 0);
|
|
|
|
if (drvdata->performance_state < 0) {
|
|
|
|
dev_err(dev, "Can't get performance state from devicetree\n");
|
|
|
|
return drvdata->performance_state;
|
|
|
|
}
|
2019-09-10 14:21:15 +08:00
|
|
|
} else {
|
|
|
|
drvdata->desc.ops = &fixed_voltage_ops;
|
|
|
|
}
|
2012-03-03 19:40:01 +08:00
|
|
|
|
2012-06-27 21:27:22 +08:00
|
|
|
drvdata->desc.enable_time = config->startup_delay;
|
2019-10-29 09:21:31 +08:00
|
|
|
drvdata->desc.off_on_delay = config->off_on_delay;
|
2012-06-27 21:27:22 +08:00
|
|
|
|
2012-07-05 20:42:01 +08:00
|
|
|
if (config->input_supply) {
|
2014-01-29 22:57:28 +08:00
|
|
|
drvdata->desc.supply_name = devm_kstrdup(&pdev->dev,
|
|
|
|
config->input_supply,
|
|
|
|
GFP_KERNEL);
|
2022-03-25 04:18:54 +08:00
|
|
|
if (!drvdata->desc.supply_name)
|
2014-01-29 22:57:28 +08:00
|
|
|
return -ENOMEM;
|
2012-07-05 20:42:01 +08:00
|
|
|
}
|
|
|
|
|
2012-03-03 19:40:01 +08:00
|
|
|
if (config->microvolts)
|
|
|
|
drvdata->desc.n_voltages = 1;
|
2008-04-30 23:27:12 +08:00
|
|
|
|
2013-09-10 18:15:06 +08:00
|
|
|
drvdata->desc.fixed_uV = config->microvolts;
|
2012-03-22 04:04:44 +08:00
|
|
|
|
2019-01-29 18:31:53 +08:00
|
|
|
/*
|
|
|
|
* The signal will be inverted by the GPIO core if flagged so in the
|
2020-06-09 20:46:02 +08:00
|
|
|
* descriptor.
|
2019-01-29 18:31:53 +08:00
|
|
|
*/
|
|
|
|
if (config->enabled_at_boot)
|
|
|
|
gflags = GPIOD_OUT_HIGH;
|
|
|
|
else
|
|
|
|
gflags = GPIOD_OUT_LOW;
|
2018-09-06 20:24:36 +08:00
|
|
|
|
2018-10-12 20:54:12 +08:00
|
|
|
/*
|
|
|
|
* Some fixed regulators share the enable line between two
|
|
|
|
* regulators which makes it necessary to get a handle on the
|
|
|
|
* same descriptor for two different consumers. This will get
|
|
|
|
* the GPIO descriptor, but only the first call will initialize
|
|
|
|
* it so any flags such as inversion or open drain will only
|
|
|
|
* be set up by the first caller and assumed identical on the
|
|
|
|
* next caller.
|
|
|
|
*
|
|
|
|
* FIXME: find a better way to deal with this.
|
|
|
|
*/
|
|
|
|
gflags |= GPIOD_FLAGS_BIT_NONEXCLUSIVE;
|
|
|
|
|
2018-12-06 20:43:38 +08:00
|
|
|
/*
|
|
|
|
* Do not use devm* here: the regulator core takes over the
|
|
|
|
* lifecycle management of the GPIO descriptor.
|
|
|
|
*/
|
|
|
|
cfg.ena_gpiod = gpiod_get_optional(&pdev->dev, NULL, gflags);
|
2018-09-06 20:24:36 +08:00
|
|
|
if (IS_ERR(cfg.ena_gpiod))
|
2021-06-16 20:53:31 +08:00
|
|
|
return dev_err_probe(&pdev->dev, PTR_ERR(cfg.ena_gpiod),
|
|
|
|
"can't get GPIO\n");
|
2008-04-30 23:27:12 +08:00
|
|
|
|
2012-04-04 07:50:22 +08:00
|
|
|
cfg.dev = &pdev->dev;
|
|
|
|
cfg.init_data = config->init_data;
|
|
|
|
cfg.driver_data = drvdata;
|
|
|
|
cfg.of_node = pdev->dev.of_node;
|
|
|
|
|
2014-01-29 22:57:28 +08:00
|
|
|
drvdata->dev = devm_regulator_register(&pdev->dev, &drvdata->desc,
|
|
|
|
&cfg);
|
2008-04-30 23:27:12 +08:00
|
|
|
if (IS_ERR(drvdata->dev)) {
|
2021-07-22 00:57:16 +08:00
|
|
|
ret = dev_err_probe(&pdev->dev, PTR_ERR(drvdata->dev),
|
|
|
|
"Failed to register regulator: %ld\n",
|
|
|
|
PTR_ERR(drvdata->dev));
|
2014-01-29 22:57:28 +08:00
|
|
|
return ret;
|
2008-04-30 23:27:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
platform_set_drvdata(pdev, drvdata);
|
|
|
|
|
|
|
|
dev_dbg(&pdev->dev, "%s supplying %duV\n", drvdata->desc.name,
|
2013-09-10 18:15:06 +08:00
|
|
|
drvdata->desc.fixed_uV);
|
2008-04-30 23:27:12 +08:00
|
|
|
|
2023-10-25 16:46:12 +08:00
|
|
|
ret = reg_fixed_get_irqs(dev, drvdata);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2008-04-30 23:27:12 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-18 19:17:18 +08:00
|
|
|
#if defined(CONFIG_OF)
|
2020-08-21 11:14:03 +08:00
|
|
|
static const struct fixed_dev_type fixed_voltage_data = {
|
|
|
|
.has_enable_clock = false,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct fixed_dev_type fixed_clkenable_data = {
|
|
|
|
.has_enable_clock = true,
|
|
|
|
};
|
|
|
|
|
2020-10-23 21:19:22 +08:00
|
|
|
static const struct fixed_dev_type fixed_domain_data = {
|
|
|
|
.has_performance_state = true,
|
|
|
|
};
|
|
|
|
|
2012-12-22 05:26:06 +08:00
|
|
|
static const struct of_device_id fixed_of_match[] = {
|
2019-09-10 14:21:15 +08:00
|
|
|
{
|
|
|
|
.compatible = "regulator-fixed",
|
|
|
|
.data = &fixed_voltage_data,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.compatible = "regulator-fixed-clock",
|
|
|
|
.data = &fixed_clkenable_data,
|
|
|
|
},
|
2020-10-23 21:19:22 +08:00
|
|
|
{
|
|
|
|
.compatible = "regulator-fixed-domain",
|
|
|
|
.data = &fixed_domain_data,
|
|
|
|
},
|
2019-09-10 14:21:15 +08:00
|
|
|
{
|
|
|
|
},
|
2011-11-18 19:17:18 +08:00
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, fixed_of_match);
|
|
|
|
#endif
|
|
|
|
|
2008-04-30 23:27:12 +08:00
|
|
|
static struct platform_driver regulator_fixed_voltage_driver = {
|
2010-02-24 15:37:55 +08:00
|
|
|
.probe = reg_fixed_voltage_probe,
|
2008-04-30 23:27:12 +08:00
|
|
|
.driver = {
|
|
|
|
.name = "reg-fixed-voltage",
|
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,
|
2012-06-01 12:16:25 +08:00
|
|
|
.of_match_table = of_match_ptr(fixed_of_match),
|
2008-04-30 23:27:12 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init regulator_fixed_voltage_init(void)
|
|
|
|
{
|
|
|
|
return platform_driver_register(®ulator_fixed_voltage_driver);
|
|
|
|
}
|
2009-04-28 01:21:18 +08:00
|
|
|
subsys_initcall(regulator_fixed_voltage_init);
|
2008-04-30 23:27:12 +08:00
|
|
|
|
|
|
|
static void __exit regulator_fixed_voltage_exit(void)
|
|
|
|
{
|
|
|
|
platform_driver_unregister(®ulator_fixed_voltage_driver);
|
|
|
|
}
|
|
|
|
module_exit(regulator_fixed_voltage_exit);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
|
|
|
|
MODULE_DESCRIPTION("Fixed voltage regulator");
|
|
|
|
MODULE_LICENSE("GPL");
|
2009-04-28 18:13:55 +08:00
|
|
|
MODULE_ALIAS("platform:reg-fixed-voltage");
|