mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
staging: regulator: hi6421v600-regulator: change the binding logic
Change the binding logic to ensure that the PMIC SPMI driver will run before the regulator code and add it to the building system. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Link: https://lore.kernel.org/r/aa40d443dfc6c8e69e4c36fa79d15459762924e4.1597647359.git.mchehab+huawei@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b660bf657d
commit
75937f8f96
@@ -31,7 +31,7 @@
|
|||||||
#include <linux/regulator/driver.h>
|
#include <linux/regulator/driver.h>
|
||||||
#include <linux/regulator/machine.h>
|
#include <linux/regulator/machine.h>
|
||||||
#include <linux/regulator/of_regulator.h>
|
#include <linux/regulator/of_regulator.h>
|
||||||
#include <linux/mfd/hisi_pmic.h>
|
#include <linux/mfd/hi6421-spmi-pmic.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/time.h>
|
#include <linux/time.h>
|
||||||
#include <linux/version.h>
|
#include <linux/version.h>
|
||||||
@@ -53,20 +53,11 @@ struct hisi_regulator {
|
|||||||
u32 off_on_delay;
|
u32 off_on_delay;
|
||||||
u32 eco_uA;
|
u32 eco_uA;
|
||||||
struct regulator_desc rdesc;
|
struct regulator_desc rdesc;
|
||||||
int (*dt_parse)(struct hisi_regulator *reg, struct spmi_device *spmi);
|
struct hisi_pmic *pmic;
|
||||||
};
|
};
|
||||||
|
|
||||||
static DEFINE_MUTEX(enable_mutex);
|
static DEFINE_MUTEX(enable_mutex);
|
||||||
|
|
||||||
static inline struct hisi_pmic *rdev_to_pmic(struct regulator_dev *dev)
|
|
||||||
{
|
|
||||||
/* regulator_dev parent to->
|
|
||||||
* hisi regulator platform device_dev parent to->
|
|
||||||
* hisi pmic platform device_dev
|
|
||||||
*/
|
|
||||||
return dev_get_drvdata(rdev_get_dev(dev)->parent->parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* helper function to ensure when it returns it is at least 'delay_us'
|
/* helper function to ensure when it returns it is at least 'delay_us'
|
||||||
* microseconds after 'since'.
|
* microseconds after 'since'.
|
||||||
*/
|
*/
|
||||||
@@ -75,7 +66,7 @@ static int hisi_regulator_is_enabled(struct regulator_dev *dev)
|
|||||||
{
|
{
|
||||||
u32 reg_val;
|
u32 reg_val;
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
||||||
struct hisi_pmic *pmic = rdev_to_pmic(dev);
|
struct hisi_pmic *pmic = sreg->pmic;
|
||||||
|
|
||||||
reg_val = hisi_pmic_read(pmic, sreg->register_info.ctrl_reg);
|
reg_val = hisi_pmic_read(pmic, sreg->register_info.ctrl_reg);
|
||||||
pr_debug("<[%s]: ctrl_reg=0x%x,enable_state=%d>\n",
|
pr_debug("<[%s]: ctrl_reg=0x%x,enable_state=%d>\n",
|
||||||
@@ -88,7 +79,7 @@ static int hisi_regulator_is_enabled(struct regulator_dev *dev)
|
|||||||
static int hisi_regulator_enable(struct regulator_dev *dev)
|
static int hisi_regulator_enable(struct regulator_dev *dev)
|
||||||
{
|
{
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
||||||
struct hisi_pmic *pmic = rdev_to_pmic(dev);
|
struct hisi_pmic *pmic = sreg->pmic;
|
||||||
|
|
||||||
/* keep a distance of off_on_delay from last time disabled */
|
/* keep a distance of off_on_delay from last time disabled */
|
||||||
usleep_range(sreg->off_on_delay, sreg->off_on_delay + 1000);
|
usleep_range(sreg->off_on_delay, sreg->off_on_delay + 1000);
|
||||||
@@ -116,7 +107,7 @@ static int hisi_regulator_enable(struct regulator_dev *dev)
|
|||||||
static int hisi_regulator_disable(struct regulator_dev *dev)
|
static int hisi_regulator_disable(struct regulator_dev *dev)
|
||||||
{
|
{
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
||||||
struct hisi_pmic *pmic = rdev_to_pmic(dev);
|
struct hisi_pmic *pmic = sreg->pmic;
|
||||||
|
|
||||||
/* set enable register to 0 */
|
/* set enable register to 0 */
|
||||||
hisi_pmic_rmw(pmic, sreg->register_info.ctrl_reg,
|
hisi_pmic_rmw(pmic, sreg->register_info.ctrl_reg,
|
||||||
@@ -128,7 +119,7 @@ static int hisi_regulator_disable(struct regulator_dev *dev)
|
|||||||
static int hisi_regulator_get_voltage(struct regulator_dev *dev)
|
static int hisi_regulator_get_voltage(struct regulator_dev *dev)
|
||||||
{
|
{
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
||||||
struct hisi_pmic *pmic = rdev_to_pmic(dev);
|
struct hisi_pmic *pmic = sreg->pmic;
|
||||||
u32 reg_val, selector;
|
u32 reg_val, selector;
|
||||||
|
|
||||||
/* get voltage selector */
|
/* get voltage selector */
|
||||||
@@ -146,7 +137,7 @@ static int hisi_regulator_set_voltage(struct regulator_dev *dev,
|
|||||||
int min_uV, int max_uV, unsigned int *selector)
|
int min_uV, int max_uV, unsigned int *selector)
|
||||||
{
|
{
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
||||||
struct hisi_pmic *pmic = rdev_to_pmic(dev);
|
struct hisi_pmic *pmic = sreg->pmic;
|
||||||
u32 vsel;
|
u32 vsel;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
@@ -179,7 +170,7 @@ static int hisi_regulator_set_voltage(struct regulator_dev *dev,
|
|||||||
static unsigned int hisi_regulator_get_mode(struct regulator_dev *dev)
|
static unsigned int hisi_regulator_get_mode(struct regulator_dev *dev)
|
||||||
{
|
{
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
||||||
struct hisi_pmic *pmic = rdev_to_pmic(dev);
|
struct hisi_pmic *pmic = sreg->pmic;
|
||||||
u32 reg_val;
|
u32 reg_val;
|
||||||
|
|
||||||
reg_val = hisi_pmic_read(pmic, sreg->register_info.ctrl_reg);
|
reg_val = hisi_pmic_read(pmic, sreg->register_info.ctrl_reg);
|
||||||
@@ -198,7 +189,7 @@ static int hisi_regulator_set_mode(struct regulator_dev *dev,
|
|||||||
unsigned int mode)
|
unsigned int mode)
|
||||||
{
|
{
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(dev);
|
||||||
struct hisi_pmic *pmic = rdev_to_pmic(dev);
|
struct hisi_pmic *pmic = sreg->pmic;
|
||||||
u32 eco_mode;
|
u32 eco_mode;
|
||||||
|
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
@@ -238,7 +229,7 @@ static unsigned int hisi_regulator_get_optimum_mode(struct regulator_dev *dev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int hisi_dt_parse_common(struct hisi_regulator *sreg,
|
static int hisi_dt_parse_common(struct hisi_regulator *sreg,
|
||||||
struct spmi_device *pdev)
|
struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct device_node *np = dev->of_node;
|
struct device_node *np = dev->of_node;
|
||||||
@@ -296,7 +287,7 @@ dt_parse_common_end:
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int hisi_dt_parse_ldo(struct hisi_regulator *sreg,
|
static int hisi_dt_parse_ldo(struct hisi_regulator *sreg,
|
||||||
struct spmi_device *pdev)
|
struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct device_node *np = dev->of_node;
|
struct device_node *np = dev->of_node;
|
||||||
@@ -355,47 +346,32 @@ static struct regulator_ops hisi_ldo_rops = {
|
|||||||
.get_optimum_mode = hisi_regulator_get_optimum_mode,
|
.get_optimum_mode = hisi_regulator_get_optimum_mode,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct hisi_regulator hisi_regulator_ldo = {
|
/*
|
||||||
.rdesc = {
|
* Used only for parsing the DT properties
|
||||||
.ops = &hisi_ldo_rops,
|
*/
|
||||||
.type = REGULATOR_VOLTAGE,
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
},
|
|
||||||
.dt_parse = hisi_dt_parse_ldo,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct of_device_id of_hisi_regulator_match_tbl[] = {
|
static const struct of_device_id of_hisi_pmic_match_tbl[] = {
|
||||||
{
|
{
|
||||||
.compatible = "hisilicon-hisi-ldo",
|
.compatible = "hisilicon,hi6421-spmi-pmic-ldo",
|
||||||
.data = &hisi_regulator_ldo,
|
|
||||||
},
|
},
|
||||||
{ /* end */ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
static int hisi_regulator_probe(struct spmi_device *pdev)
|
static int hisi_regulator_probe_ldo(struct platform_device *pdev,
|
||||||
|
struct device_node *np,
|
||||||
|
struct hisi_pmic *pmic)
|
||||||
{
|
{
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct device_node *np = dev->of_node;
|
|
||||||
struct regulator_desc *rdesc;
|
struct regulator_desc *rdesc;
|
||||||
struct regulator_dev *rdev;
|
struct regulator_dev *rdev;
|
||||||
struct hisi_regulator *sreg = NULL;
|
struct hisi_regulator *sreg = NULL;
|
||||||
struct regulator_init_data *initdata;
|
struct regulator_init_data *initdata;
|
||||||
struct regulator_config config = { };
|
struct regulator_config config = { };
|
||||||
const struct of_device_id *match;
|
|
||||||
struct regulation_constraints *constraint;
|
struct regulation_constraints *constraint;
|
||||||
const char *supplyname = NULL;
|
const char *supplyname = NULL;
|
||||||
unsigned int temp_modes;
|
unsigned int temp_modes;
|
||||||
|
|
||||||
const struct hisi_regulator *template = NULL;
|
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
/* to check which type of regulator this is */
|
|
||||||
match = of_match_device(of_hisi_regulator_match_tbl, &pdev->dev);
|
|
||||||
if (!match) {
|
|
||||||
pr_err("get hisi regulator fail!\n\r");
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
template = match->data;
|
|
||||||
initdata = of_get_regulator_init_data(dev, np, NULL);
|
initdata = of_get_regulator_init_data(dev, np, NULL);
|
||||||
if (!initdata) {
|
if (!initdata) {
|
||||||
pr_err("get regulator init data error !\n");
|
pr_err("get regulator init data error !\n");
|
||||||
@@ -421,20 +397,25 @@ static int hisi_regulator_probe(struct spmi_device *pdev)
|
|||||||
}
|
}
|
||||||
constraint->valid_ops_mask |= temp_modes;
|
constraint->valid_ops_mask |= temp_modes;
|
||||||
|
|
||||||
sreg = kmemdup(template, sizeof(*sreg), GFP_KERNEL);
|
sreg = kzalloc(sizeof(*sreg), GFP_KERNEL);
|
||||||
if (!sreg)
|
if (!sreg)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
sreg->name = initdata->constraints.name;
|
sreg->name = initdata->constraints.name;
|
||||||
|
sreg->pmic = pmic;
|
||||||
rdesc = &sreg->rdesc;
|
rdesc = &sreg->rdesc;
|
||||||
|
|
||||||
rdesc->name = sreg->name;
|
rdesc->name = sreg->name;
|
||||||
|
rdesc->ops = &hisi_ldo_rops;
|
||||||
|
rdesc->type = REGULATOR_VOLTAGE;
|
||||||
rdesc->min_uV = initdata->constraints.min_uV;
|
rdesc->min_uV = initdata->constraints.min_uV;
|
||||||
|
|
||||||
supplyname = of_get_property(np, "hisilicon,supply_name", NULL);
|
supplyname = of_get_property(np, "hisilicon,supply_name", NULL);
|
||||||
if (supplyname)
|
if (supplyname)
|
||||||
initdata->supply_regulator = supplyname;
|
initdata->supply_regulator = supplyname;
|
||||||
|
|
||||||
/* to parse device tree data for regulator specific */
|
/* parse device tree data for regulator specific */
|
||||||
ret = sreg->dt_parse(sreg, pdev);
|
ret = hisi_dt_parse_ldo(sreg, pdev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(dev, "device tree parameter parse error!\n");
|
dev_err(dev, "device tree parameter parse error!\n");
|
||||||
goto hisi_probe_end;
|
goto hisi_probe_end;
|
||||||
@@ -465,7 +446,59 @@ hisi_probe_end:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void hisi_regulator_remove(struct spmi_device *pdev)
|
|
||||||
|
static int hisi_regulator_probe(struct platform_device *pdev)
|
||||||
|
{
|
||||||
|
struct device *pmic_dev = pdev->dev.parent;
|
||||||
|
struct device_node *np = pmic_dev->of_node;
|
||||||
|
struct device_node *regulators, *child;
|
||||||
|
struct platform_device *new_pdev;
|
||||||
|
struct hisi_pmic *pmic;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
dev_dbg(&pdev->dev, "probing hi6421v600 regulator\n");
|
||||||
|
/*
|
||||||
|
* This driver is meant to be called by hi6421-spmi-core,
|
||||||
|
* which should first set drvdata. If this doesn't happen, hit
|
||||||
|
* a warn on and return.
|
||||||
|
*/
|
||||||
|
pmic = dev_get_drvdata(pmic_dev);
|
||||||
|
if (WARN_ON(!pmic))
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
|
regulators = of_get_child_by_name(np, "regulators");
|
||||||
|
if (!regulators) {
|
||||||
|
dev_err(&pdev->dev, "regulator node not found\n");
|
||||||
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Parse all LDO regulator nodes
|
||||||
|
*/
|
||||||
|
for_each_child_of_node(regulators, child) {
|
||||||
|
dev_dbg(&pdev->dev, "adding child %pOF\n", child);
|
||||||
|
|
||||||
|
new_pdev = platform_device_alloc(child->name, -1);
|
||||||
|
new_pdev->dev.parent = pmic_dev;
|
||||||
|
new_pdev->dev.of_node = of_node_get(child);
|
||||||
|
|
||||||
|
ret = platform_device_add(new_pdev);
|
||||||
|
if (ret < 0) {
|
||||||
|
platform_device_put(new_pdev);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = hisi_regulator_probe_ldo(new_pdev, child, pmic);
|
||||||
|
if (ret < 0)
|
||||||
|
platform_device_put(new_pdev);
|
||||||
|
}
|
||||||
|
|
||||||
|
of_node_put(regulators);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int hisi_regulator_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct regulator_dev *rdev = dev_get_drvdata(&pdev->dev);
|
struct regulator_dev *rdev = dev_get_drvdata(&pdev->dev);
|
||||||
struct hisi_regulator *sreg = rdev_get_drvdata(rdev);
|
struct hisi_regulator *sreg = rdev_get_drvdata(rdev);
|
||||||
@@ -477,63 +510,26 @@ static void hisi_regulator_remove(struct spmi_device *pdev)
|
|||||||
devm_kfree(&pdev->dev, (unsigned int *)sreg->rdesc.volt_table);
|
devm_kfree(&pdev->dev, (unsigned int *)sreg->rdesc.volt_table);
|
||||||
|
|
||||||
kfree(sreg);
|
kfree(sreg);
|
||||||
}
|
|
||||||
|
|
||||||
static int hisi_regulator_suspend(struct device *dev, pm_message_t state)
|
|
||||||
{
|
|
||||||
struct hisi_regulator *hisi_regulator = dev_get_drvdata(dev);
|
|
||||||
|
|
||||||
if (!hisi_regulator) {
|
|
||||||
pr_err("%s:regulator is NULL\n", __func__);
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
|
|
||||||
pr_info("%s:+\n", __func__);
|
|
||||||
pr_info("%s:-\n", __func__);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hisi_regulator_resume(struct device *dev)
|
static const struct platform_device_id hi6421v600_regulator_table[] = {
|
||||||
{
|
{ .name = "hi6421v600-regulator" },
|
||||||
struct hisi_regulator *hisi_regulator = dev_get_drvdata(dev);
|
{},
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(platform, hi6421v600_regulator_table);
|
||||||
|
|
||||||
if (!hisi_regulator) {
|
static struct platform_driver hi6421v600_regulator_driver = {
|
||||||
pr_err("%s:regulator is NULL\n", __func__);
|
.id_table = hi6421v600_regulator_table,
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
|
|
||||||
pr_info("%s:+\n", __func__);
|
|
||||||
pr_info("%s:-\n", __func__);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct spmi_driver hisi_pmic_driver = {
|
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "hisi_regulator",
|
.name = "hi6421v600-regulator",
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.of_match_table = of_hisi_regulator_match_tbl,
|
|
||||||
.suspend = hisi_regulator_suspend,
|
|
||||||
.resume = hisi_regulator_resume,
|
|
||||||
},
|
},
|
||||||
.probe = hisi_regulator_probe,
|
.probe = hisi_regulator_probe,
|
||||||
.remove = hisi_regulator_remove,
|
.remove = hisi_regulator_remove,
|
||||||
};
|
};
|
||||||
|
module_platform_driver(hi6421v600_regulator_driver);
|
||||||
|
|
||||||
static int __init hisi_regulator_init(void)
|
MODULE_DESCRIPTION("Hi6421v600 regulator driver");
|
||||||
{
|
|
||||||
return spmi_driver_register(&hisi_pmic_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit hisi_regulator_exit(void)
|
|
||||||
{
|
|
||||||
spmi_driver_unregister(&hisi_pmic_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
fs_initcall(hisi_regulator_init);
|
|
||||||
module_exit(hisi_regulator_exit);
|
|
||||||
|
|
||||||
MODULE_DESCRIPTION("Hisi regulator driver");
|
|
||||||
MODULE_LICENSE("GPL v2");
|
MODULE_LICENSE("GPL v2");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user